From b2ade7e65220026613157f7ab9e074274b7a3ab8 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Fri, 15 Dec 2023 22:14:57 +0200 Subject: [PATCH 01/31] Testing git nix workflow --- .github/workflows/nix-build.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/nix-build.yml diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml new file mode 100644 index 00000000..8c1e10eb --- /dev/null +++ b/.github/workflows/nix-build.yml @@ -0,0 +1,18 @@ +name: "Test" +on: + pull_request: + push: +jobs: + tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: cachix/install-nix-action@v18 + with: + nix_path: nixpkgs=channel:nixos-unstable + - uses: workflow/nix-shell-action@v3 + with: + packages: hello,docker + script: | + nix-shell + sphinx --help From ea3bd77080e0294328a8217f4c076e1e0505f192 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Fri, 15 Dec 2023 22:19:22 +0200 Subject: [PATCH 02/31] Update nix-build.yml --- .github/workflows/nix-build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index 8c1e10eb..078bab32 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -15,4 +15,5 @@ jobs: packages: hello,docker script: | nix-shell - sphinx --help + scripts/pre_translate.sh + scripts/post_translate.sh From c2fe94b4a57fb33827e4085b6ab8d4e04ed8c28c Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Fri, 15 Dec 2023 22:26:13 +0200 Subject: [PATCH 03/31] Update nix-build.yml --- .github/workflows/nix-build.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index 078bab32..738b39f0 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -14,6 +14,4 @@ jobs: with: packages: hello,docker script: | - nix-shell - scripts/pre_translate.sh - scripts/post_translate.sh + nix-shell && scripts/pre_translate.sh && scripts/post_translate.sh From a92fad951b1669e9f4a2dda16c88dd499357736c Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Fri, 15 Dec 2023 22:31:21 +0200 Subject: [PATCH 04/31] Update nix-build.yml --- .github/workflows/nix-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index 738b39f0..56cdd580 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -12,6 +12,6 @@ jobs: nix_path: nixpkgs=channel:nixos-unstable - uses: workflow/nix-shell-action@v3 with: - packages: hello,docker + packages: sphinx script: | nix-shell && scripts/pre_translate.sh && scripts/post_translate.sh From 69fd3f56ea0f4c70bfb26b45c4e9a94b9ce48ecb Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Fri, 15 Dec 2023 22:34:55 +0200 Subject: [PATCH 05/31] Update nix-build.yml --- .github/workflows/nix-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index 56cdd580..99a547fd 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -12,6 +12,6 @@ jobs: nix_path: nixpkgs=channel:nixos-unstable - uses: workflow/nix-shell-action@v3 with: - packages: sphinx + packages: sphinx gettext script: | nix-shell && scripts/pre_translate.sh && scripts/post_translate.sh From ddac0822a8ca8e16fb1ad9042f5be9d23a84fd15 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Fri, 15 Dec 2023 22:52:46 +0200 Subject: [PATCH 06/31] Update nix-build.yml --- .github/workflows/nix-build.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index 99a547fd..f368312a 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -7,11 +7,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: cachix/install-nix-action@v18 + - uses: cachix/install-nix-action@v20 with: nix_path: nixpkgs=channel:nixos-unstable - - uses: workflow/nix-shell-action@v3 - with: - packages: sphinx gettext - script: | - nix-shell && scripts/pre_translate.sh && scripts/post_translate.sh + - uses: DeterminateSystems/magic-nix-cache-action@v2 + - run: nix-shell && scripts/pre_translate.sh && scripts/post_translate.sh From d7bc06d544c2469c530133ec187fbaf45fcf007f Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Fri, 15 Dec 2023 22:57:06 +0200 Subject: [PATCH 07/31] Update nix-build.yml --- .github/workflows/nix-build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index f368312a..d5c22576 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -11,4 +11,5 @@ jobs: with: nix_path: nixpkgs=channel:nixos-unstable - uses: DeterminateSystems/magic-nix-cache-action@v2 - - run: nix-shell && scripts/pre_translate.sh && scripts/post_translate.sh + - run: nix-shell --run "scripts/pre_translate.sh" + - run: nix-shell --run "scripts/post_translate.sh" From 633ca080cd6ce360f324582931043a37adc990f8 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 09:35:11 +0200 Subject: [PATCH 08/31] Testing git nix workflow --- .github/workflows/nix-build.yml | 1 + README.md | 3 +- clean.sh | 6 +- default.nix | 11 +- docs/i18n/en/LC_MESSAGES/contents.po | 23 - docs/i18n/en/LC_MESSAGES/index.po | 23 - docs/i18n/en/LC_MESSAGES/sphinx.po | 24 - .../training/curriculum/curriculum.po | 5591 --------------- .../LC_MESSAGES/training/curriculum/index.po | 46 - .../curriculum/osm-beginner-toolkit.po | 3409 ---------- .../curriculum/osm-intermediate-toolkit.po | 1959 ------ .../qgis-inasafe-beginner-toolkit.po | 3342 --------- .../qgis-inasafe-intermediate-toolkit.po | 1386 ---- docs/i18n/en/LC_MESSAGES/training/index.po | 72 - .../training/old-training/beginner/index.po | 41 - .../beginner/osm/100-introduction.po | 248 - .../osm/101-basic-concept-of-osm-website.po | 170 - .../beginner/osm/102-working-with-osm.po | 367 - .../beginner/osm/103-working-with-josm.po | 644 -- .../beginner/osm/104-using-gps.po | 846 --- .../beginner/osm/105-field-papers.po | 444 -- .../beginner/osm/106-editing-osm-with-josm.po | 691 -- .../beginner/osm/107-imagery-offset.po | 584 -- .../beginner/osm/108-getting-osm-data.po | 195 - .../old-training/beginner/osm/index.po | 23 - .../beginner/qgis-inasafe/200-introduction.po | 244 - ...201-gis-for-developing-contingency-plan.po | 134 - ...02-qgis-and-inasafe-in-contingency-plan.po | 208 - .../qgis-inasafe/203-the-basics-of-qgis.po | 608 -- .../beginner/qgis-inasafe/204-qgis-plugin.po | 264 - .../qgis-inasafe/205-map-projection-basics.po | 471 -- .../206-working-with-vector-data.po | 855 --- .../207-labels-and-classification.po | 543 -- .../208-working-with-raster-data.po | 571 -- .../209-create-a-new-vector-layer.po | 724 -- ...210-vector-analysis-for-problem-solving.po | 892 --- .../qgis-inasafe/211-using-map-composer.po | 556 -- .../qgis-inasafe/212-understanding-inasafe.po | 561 -- .../qgis-inasafe/213-getting-support.po | 89 - .../beginner/qgis-inasafe/index.po | 23 - .../training/old-training/index.po | 61 - .../old-training/intermediate/index.po | 41 - .../intermediate/osm/300-introduction.po | 226 - .../intermediate/osm/301-advanced-editing.po | 597 -- .../intermediate/osm/302-quality-assurance.po | 633 -- .../osm/303-dealing-with-conflicts.po | 273 - .../osm/304-creating-josm-file-presets.po | 819 --- .../osm/305-using-private-data-store.po | 353 - .../intermediate/osm/306-editing-wiki-osm.po | 1055 --- .../old-training/intermediate/osm/index.po | 23 - .../qgis-inasafe/400-introduction.po | 234 - .../qgis-inasafe/401-review-qgis.po | 388 -- ...preparing-data-and-keywords-for-inasafe.po | 560 -- .../403-determining-idp-camp-location.po | 585 -- .../404-planning-evacuation-route.po | 326 - .../405-calculating-damages-and-losses.po | 729 -- .../intermediate/qgis-inasafe/index.po | 23 - .../training/osm/Chapter-00-preface.po | 223 - .../training/osm/Chapter-01-introduction.po | 144 - .../osm/Chapter-02-getting-started.po | 363 - .../Chapter-03-introducing-the-id-editor.po | 598 -- .../Chapter-04-getting-started-with-josm.po | 817 --- .../osm/Chapter-05-editing-with-josm.po | 1415 ---- .../training/osm/Chapter-06-using-gps.po | 677 -- .../training/osm/Chapter-07-field-papers.po | 619 -- .../Chapter-08-conflict-resolution-in-osm.po | 361 - .../training/osm/Chapter-09-inserting-tag.po | 305 - .../training/osm/Chapter-10-imagery-offset.po | 192 - .../osm/Chapter-11-export-osm-data.po | 229 - .../i18n/en/LC_MESSAGES/training/osm/index.po | 23 - .../training/qgis/Chapter-00-Preface.po | 231 - .../Chapter-01-GIS_for_Disaster_Management.po | 134 - ...GIS_and_InaSAFE_for_Disaster_Management.po | 236 - .../training/qgis/Chapter-03-Basic_QGIS.po | 837 --- .../qgis/Chapter-04-Map_Projection_Basic.po | 574 -- .../Chapter-05-Working_with_Vector_Data.po | 1703 ----- .../Chapter-06-Working_with_Raster_Data.po | 522 -- .../qgis/Chapter-07-Using_Map_Composer.po | 559 -- .../training/qgis/Chapter-08-Using_InaSAFE.po | 1037 --- .../en/LC_MESSAGES/training/qgis/index.po | 23 - .../training/socialisation/datasets.po | 994 --- .../LC_MESSAGES/training/socialisation/faq.po | 268 - .../socialisation/inasafe_concepts.po | 995 --- .../training/socialisation/index.po | 85 - .../training/socialisation/introduction.po | 134 - .../socialisation/introduction_to_qgis.po | 843 --- .../training/socialisation/objective.po | 399 -- .../socialisation/run_basic_inasafe.po | 859 --- .../socialisation/run_intermediate_inasafe.po | 627 -- .../socialisation/run_other_hazards.po | 1246 ---- .../i18n/en/LC_MESSAGES/training/test_data.po | 149 - .../training/tot/501_adult_learning.po | 1434 ---- .../training/tot/502_communication_skills.po | 2494 ------- .../i18n/en/LC_MESSAGES/training/tot/index.po | 42 - .../application-help/batch_runner.po | 112 - .../user-docs/application-help/converter.po | 109 - .../application-help/data_driven_age.po | 196 - .../user-docs/application-help/dock.po | 532 -- .../application-help/impact_functions.po | 141 - .../impact_layer_merge_tool.po | 336 - .../user-docs/application-help/index.po | 30 - .../user-docs/application-help/keywords.po | 726 -- .../application-help/keywords_editor.po | 196 - .../application-help/keywords_wizard.po | 160 - .../application-help/minimum_needs.po | 113 - .../application-help/needs_manager.po | 298 - .../openstreetmap_downloader.po | 318 - .../user-docs/application-help/options.po | 281 - .../user-docs/application-help/reports.po | 275 - .../application-help/save_scenario.po | 60 - .../application-help/user_extents.po | 108 - .../en/LC_MESSAGES/user-docs/functionality.po | 296 - .../en/LC_MESSAGES/user-docs/getting_help.po | 104 - .../LC_MESSAGES/user-docs/getting_involved.po | 188 - ...CategoricalHazardBuildingImpactFunction.po | 122 - ...tegoricalHazardPopulationImpactFunction.po | 127 - ...tegorisedHazardPopulationImpactFunction.po | 127 - .../EarthquakeBuildingImpactFunction.po | 72 - .../FloodBuildingImpactFunction.po | 142 - .../FloodEvacuationFunction.po | 136 - .../FloodEvacuationFunctionVectorHazard.po | 127 - .../ITBFatalityFunction.po | 311 - .../PAGFatalityFunction.po | 128 - .../TsunamiEvacuationFunction.po | 136 - .../VolcanoBuildingImpact.po | 119 - .../VolcanoPolygonHazardPopulation.po | 119 - .../user-docs/impact_functions_doc.po | 31 - docs/i18n/en/LC_MESSAGES/user-docs/index.po | 30 - docs/i18n/en/LC_MESSAGES/user-docs/install.po | 289 - .../en/LC_MESSAGES/user-docs/issue_tracker.po | 144 - .../en/LC_MESSAGES/user-docs/lookup_table.po | 715 -- .../LC_MESSAGES/user-docs/postprocessors.po | 115 - docs/i18n/en/LC_MESSAGES/user-docs/toolbar.po | 199 - .../LC_MESSAGES/user-docs/troubleshooting.po | 71 - .../en/LC_MESSAGES/user-docs/using_qgis.po | 63 - .../user-docs/writing_documentation.po | 240 - docs/i18n/fr/LC_MESSAGES/contents.po | 23 - docs/i18n/fr/LC_MESSAGES/index.po | 23 - docs/i18n/fr/LC_MESSAGES/sphinx.po | 24 - .../training/curriculum/curriculum.po | 5593 --------------- .../curriculum/osm-beginner-toolkit.po | 3415 ---------- .../curriculum/osm-intermediate-toolkit.po | 1960 ------ .../qgis-inasafe-beginner-toolkit.po | 3344 --------- .../qgis-inasafe-intermediate-toolkit.po | 1387 ---- docs/i18n/fr/LC_MESSAGES/training/index.po | 74 - .../training/old-training/beginner/index.po | 41 - .../beginner/osm/100-introduction.po | 249 - .../osm/101-basic-concept-of-osm-website.po | 171 - .../beginner/osm/102-working-with-osm.po | 368 - .../beginner/osm/103-working-with-josm.po | 645 -- .../beginner/osm/104-using-gps.po | 847 --- .../beginner/osm/105-field-papers.po | 445 -- .../beginner/osm/106-editing-osm-with-josm.po | 692 -- .../beginner/osm/107-imagery-offset.po | 585 -- .../beginner/osm/108-getting-osm-data.po | 196 - .../beginner/qgis-inasafe/200-introduction.po | 245 - ...201-gis-for-developing-contingency-plan.po | 135 - ...02-qgis-and-inasafe-in-contingency-plan.po | 209 - .../qgis-inasafe/203-the-basics-of-qgis.po | 625 -- .../beginner/qgis-inasafe/204-qgis-plugin.po | 265 - .../qgis-inasafe/205-map-projection-basics.po | 472 -- .../206-working-with-vector-data.po | 856 --- .../207-labels-and-classification.po | 544 -- .../208-working-with-raster-data.po | 572 -- .../209-create-a-new-vector-layer.po | 725 -- ...210-vector-analysis-for-problem-solving.po | 893 --- .../qgis-inasafe/211-using-map-composer.po | 557 -- .../qgis-inasafe/212-understanding-inasafe.po | 562 -- .../qgis-inasafe/213-getting-support.po | 90 - .../beginner/qgis-inasafe/index.po | 24 - .../training/old-training/index.po | 61 - .../old-training/intermediate/index.po | 41 - .../intermediate/osm/300-introduction.po | 227 - .../intermediate/osm/301-advanced-editing.po | 598 -- .../intermediate/osm/302-quality-assurance.po | 634 -- .../osm/303-dealing-with-conflicts.po | 274 - .../osm/304-creating-josm-file-presets.po | 820 --- .../osm/305-using-private-data-store.po | 354 - .../intermediate/osm/306-editing-wiki-osm.po | 1056 --- .../old-training/intermediate/osm/index.po | 23 - .../qgis-inasafe/400-introduction.po | 235 - .../qgis-inasafe/401-review-qgis.po | 389 -- ...preparing-data-and-keywords-for-inasafe.po | 561 -- .../403-determining-idp-camp-location.po | 586 -- .../404-planning-evacuation-route.po | 327 - .../405-calculating-damages-and-losses.po | 730 -- .../intermediate/qgis-inasafe/index.po | 23 - .../training/osm/Chapter-00-preface.po | 224 - .../training/osm/Chapter-01-introduction.po | 145 - .../osm/Chapter-02-getting-started.po | 364 - .../Chapter-03-introducing-the-id-editor.po | 599 -- .../Chapter-04-getting-started-with-josm.po | 818 --- .../osm/Chapter-05-editing-with-josm.po | 1416 ---- .../training/osm/Chapter-06-using-gps.po | 678 -- .../training/osm/Chapter-07-field-papers.po | 590 -- .../Chapter-08-conflict-resolution-in-osm.po | 362 - .../training/osm/Chapter-09-inserting-tag.po | 306 - .../training/osm/Chapter-10-imagery-offset.po | 193 - .../osm/Chapter-11-export-osm-data.po | 286 - .../i18n/fr/LC_MESSAGES/training/osm/index.po | 23 - .../training/qgis/Chapter-00-Preface.po | 225 - .../Chapter-01-GIS_for_Disaster_Management.po | 135 - ...GIS_and_InaSAFE_for_Disaster_Management.po | 237 - .../training/qgis/Chapter-03-Basic_QGIS.po | 846 --- .../qgis/Chapter-04-Map_Projection_Basic.po | 572 -- .../Chapter-05-Working_with_Vector_Data.po | 1698 ----- .../Chapter-06-Working_with_Raster_Data.po | 522 -- .../qgis/Chapter-07-Using_Map_Composer.po | 558 -- .../training/qgis/Chapter-08-Using_InaSAFE.po | 1028 --- .../training/socialisation/datasets.po | 1037 --- .../LC_MESSAGES/training/socialisation/faq.po | 247 - .../socialisation/inasafe_concepts.po | 1089 --- .../training/socialisation/introduction.po | 134 - .../socialisation/introduction_to_qgis.po | 817 --- .../training/socialisation/objective.po | 386 -- .../socialisation/run_basic_inasafe.po | 845 --- .../socialisation/run_intermediate_inasafe.po | 605 -- .../socialisation/run_other_hazards.po | 1125 ---- .../i18n/fr/LC_MESSAGES/training/test_data.po | 150 - .../training/tot/501_adult_learning.po | 1435 ---- .../training/tot/502_communication_skills.po | 2495 ------- .../application-help/batch_runner.po | 135 - .../user-docs/application-help/converter.po | 114 - .../application-help/data_driven_age.po | 209 - .../user-docs/application-help/dock.po | 621 -- .../application-help/impact_functions.po | 150 - .../impact_layer_merge_tool.po | 349 - .../user-docs/application-help/index.po | 30 - .../user-docs/application-help/keywords.po | 735 -- .../application-help/keywords_editor.po | 209 - .../application-help/keywords_wizard.po | 181 - .../application-help/minimum_needs.po | 115 - .../application-help/needs_manager.po | 303 - .../openstreetmap_downloader.po | 323 - .../user-docs/application-help/options.po | 294 - .../user-docs/application-help/reports.po | 276 - .../application-help/save_scenario.po | 70 - .../application-help/user_extents.po | 109 - .../fr/LC_MESSAGES/user-docs/functionality.po | 297 - .../fr/LC_MESSAGES/user-docs/getting_help.po | 105 - .../LC_MESSAGES/user-docs/getting_involved.po | 251 - ...CategoricalHazardBuildingImpactFunction.po | 122 - ...tegoricalHazardPopulationImpactFunction.po | 127 - ...tegorisedHazardPopulationImpactFunction.po | 127 - .../EarthquakeBuildingImpactFunction.po | 72 - .../FloodBuildingImpactFunction.po | 142 - .../FloodEvacuationFunction.po | 136 - .../FloodEvacuationFunctionVectorHazard.po | 127 - .../ITBFatalityFunction.po | 311 - .../PAGFatalityFunction.po | 128 - .../TsunamiEvacuationFunction.po | 136 - .../VolcanoBuildingImpact.po | 119 - .../VolcanoPolygonHazardPopulation.po | 120 - .../user-docs/impact_functions_doc.po | 31 - docs/i18n/fr/LC_MESSAGES/user-docs/index.po | 32 - docs/i18n/fr/LC_MESSAGES/user-docs/install.po | 251 - .../fr/LC_MESSAGES/user-docs/issue_tracker.po | 145 - .../fr/LC_MESSAGES/user-docs/lookup_table.po | 716 -- .../LC_MESSAGES/user-docs/postprocessors.po | 120 - docs/i18n/fr/LC_MESSAGES/user-docs/toolbar.po | 250 - .../LC_MESSAGES/user-docs/troubleshooting.po | 72 - .../fr/LC_MESSAGES/user-docs/using_qgis.po | 64 - .../user-docs/writing_documentation.po | 241 - .../training/curriculum/curriculum.po | 5978 ----------------- .../LC_MESSAGES/training/curriculum/index.po | 56 - .../curriculum/osm-beginner-toolkit.po | 3779 ----------- .../curriculum/osm-intermediate-toolkit.po | 2173 ------ .../qgis-inasafe-beginner-toolkit.po | 3657 ---------- .../qgis-inasafe-intermediate-toolkit.po | 1496 ----- .../training/old-training/beginner/index.po | 53 - .../beginner/osm/100-introduction.po | 322 - .../osm/101-basic-concept-of-osm-website.po | 235 - .../beginner/osm/102-working-with-osm.po | 465 -- .../beginner/osm/103-working-with-josm.po | 819 --- .../beginner/osm/104-using-gps.po | 1082 --- .../beginner/osm/105-field-papers.po | 584 -- .../beginner/osm/106-editing-osm-with-josm.po | 937 --- .../beginner/osm/107-imagery-offset.po | 798 --- .../beginner/osm/108-getting-osm-data.po | 253 - .../old-training/beginner/osm/index.po | 25 - .../beginner/qgis-inasafe/200-introduction.po | 317 - ...201-gis-for-developing-contingency-plan.po | 175 - ...02-qgis-and-inasafe-in-contingency-plan.po | 277 - .../qgis-inasafe/203-the-basics-of-qgis.po | 751 --- .../beginner/qgis-inasafe/204-qgis-plugin.po | 355 - .../qgis-inasafe/205-map-projection-basics.po | 598 -- .../206-working-with-vector-data.po | 1118 --- .../207-labels-and-classification.po | 697 -- .../208-working-with-raster-data.po | 750 --- .../209-create-a-new-vector-layer.po | 890 --- ...210-vector-analysis-for-problem-solving.po | 1098 --- .../qgis-inasafe/211-using-map-composer.po | 702 -- .../qgis-inasafe/212-understanding-inasafe.po | 722 -- .../qgis-inasafe/213-getting-support.po | 106 - .../beginner/qgis-inasafe/index.po | 26 - .../training/old-training/index.po | 66 - .../old-training/intermediate/index.po | 53 - .../intermediate/osm/300-introduction.po | 285 - .../intermediate/osm/301-advanced-editing.po | 780 --- .../intermediate/osm/302-quality-assurance.po | 870 --- .../osm/303-dealing-with-conflicts.po | 356 - .../osm/304-creating-josm-file-presets.po | 1081 --- .../osm/305-using-private-data-store.po | 445 -- .../intermediate/osm/306-editing-wiki-osm.po | 1324 ---- .../old-training/intermediate/osm/index.po | 25 - .../qgis-inasafe/400-introduction.po | 297 - .../qgis-inasafe/401-review-qgis.po | 478 -- ...preparing-data-and-keywords-for-inasafe.po | 730 -- .../403-determining-idp-camp-location.po | 760 --- .../404-planning-evacuation-route.po | 421 -- .../405-calculating-damages-and-losses.po | 905 --- .../intermediate/qgis-inasafe/index.po | 26 - .../training/osm/Chapter-00-preface.po | 287 - .../training/osm/Chapter-01-introduction.po | 200 - .../osm/Chapter-02-getting-started.po | 465 -- .../Chapter-03-introducing-the-id-editor.po | 717 -- .../Chapter-04-getting-started-with-josm.po | 1067 --- .../osm/Chapter-05-editing-with-josm.po | 1851 ----- .../training/osm/Chapter-06-using-gps.po | 858 --- .../training/osm/Chapter-07-field-papers.po | 761 --- .../Chapter-08-conflict-resolution-in-osm.po | 481 -- .../training/osm/Chapter-09-inserting-tag.po | 342 - .../training/osm/Chapter-10-imagery-offset.po | 254 - .../osm/Chapter-11-export-osm-data.po | 398 -- .../i18n/id/LC_MESSAGES/training/osm/index.po | 25 - .../training/qgis/Chapter-00-Preface.po | 282 - .../Chapter-01-GIS_for_Disaster_Management.po | 172 - ...GIS_and_InaSAFE_for_Disaster_Management.po | 299 - .../training/qgis/Chapter-03-Basic_QGIS.po | 1055 --- .../qgis/Chapter-04-Map_Projection_Basic.po | 773 --- .../Chapter-05-Working_with_Vector_Data.po | 2154 ------ .../Chapter-06-Working_with_Raster_Data.po | 688 -- .../qgis/Chapter-07-Using_Map_Composer.po | 698 -- .../training/qgis/Chapter-08-Using_InaSAFE.po | 1403 ---- .../id/LC_MESSAGES/training/qgis/index.po | 25 - .../training/socialisation/datasets.po | 1168 ---- .../LC_MESSAGES/training/socialisation/faq.po | 318 - .../socialisation/inasafe_concepts.po | 1465 ---- .../training/socialisation/index.po | 112 - .../training/socialisation/introduction.po | 189 - .../socialisation/introduction_to_qgis.po | 1046 --- .../training/socialisation/objective.po | 465 -- .../socialisation/run_basic_inasafe.po | 1228 ---- .../socialisation/run_intermediate_inasafe.po | 871 --- .../socialisation/run_other_hazards.po | 1617 ----- .../i18n/id/LC_MESSAGES/training/test_data.po | 184 - .../training/tot/501_adult_learning.po | 1809 ----- .../training/tot/502_communication_skills.po | 3104 --------- .../i18n/id/LC_MESSAGES/training/tot/index.po | 57 - .../application-help/batch_runner.po | 165 - .../user-docs/application-help/converter.po | 144 - .../application-help/data_driven_age.po | 238 - .../user-docs/application-help/dock.po | 770 --- .../application-help/impact_functions.po | 206 - .../impact_layer_merge_tool.po | 433 -- .../user-docs/application-help/index.po | 34 - .../user-docs/application-help/keywords.po | 889 --- .../application-help/keywords_editor.po | 274 - .../application-help/keywords_wizard.po | 231 - .../application-help/minimum_needs.po | 137 - .../application-help/needs_manager.po | 366 - .../openstreetmap_downloader.po | 386 -- .../user-docs/application-help/options.po | 414 -- .../user-docs/application-help/reports.po | 353 - .../application-help/save_scenario.po | 90 - .../application-help/user_extents.po | 145 - .../id/LC_MESSAGES/user-docs/functionality.po | 310 - .../id/LC_MESSAGES/user-docs/getting_help.po | 129 - .../LC_MESSAGES/user-docs/getting_involved.po | 255 - ...CategoricalHazardBuildingImpactFunction.po | 144 - ...tegoricalHazardPopulationImpactFunction.po | 148 - ...tegorisedHazardPopulationImpactFunction.po | 135 - .../EarthquakeBuildingImpactFunction.po | 80 - .../FloodBuildingImpactFunction.po | 156 - .../FloodEvacuationFunction.po | 151 - .../FloodEvacuationFunctionVectorHazard.po | 135 - .../ITBFatalityFunction.po | 322 - .../PAGFatalityFunction.po | 132 - .../TsunamiEvacuationFunction.po | 165 - .../VolcanoBuildingImpact.po | 129 - .../VolcanoPolygonHazardPopulation.po | 132 - .../user-docs/impact_functions_doc.po | 34 - docs/i18n/id/LC_MESSAGES/user-docs/index.po | 47 - docs/i18n/id/LC_MESSAGES/user-docs/install.po | 325 - .../id/LC_MESSAGES/user-docs/issue_tracker.po | 174 - .../id/LC_MESSAGES/user-docs/lookup_table.po | 729 -- .../LC_MESSAGES/user-docs/postprocessors.po | 160 - docs/i18n/id/LC_MESSAGES/user-docs/toolbar.po | 294 - .../LC_MESSAGES/user-docs/troubleshooting.po | 98 - .../id/LC_MESSAGES/user-docs/using_qgis.po | 85 - .../user-docs/writing_documentation.po | 313 - .../source/training/curriculum/curriculum.rst | 3 - requirements.txt | 5 +- scripts/post_translate.sh | 4 +- 394 files changed, 18 insertions(+), 207936 deletions(-) delete mode 100644 docs/i18n/en/LC_MESSAGES/contents.po delete mode 100644 docs/i18n/en/LC_MESSAGES/index.po delete mode 100644 docs/i18n/en/LC_MESSAGES/sphinx.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/curriculum/curriculum.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/curriculum/index.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/curriculum/osm-beginner-toolkit.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/curriculum/osm-intermediate-toolkit.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/curriculum/qgis-inasafe-beginner-toolkit.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/curriculum/qgis-inasafe-intermediate-toolkit.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/index.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/index.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/100-introduction.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/101-basic-concept-of-osm-website.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/102-working-with-osm.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/103-working-with-josm.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/104-using-gps.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/105-field-papers.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/106-editing-osm-with-josm.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/107-imagery-offset.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/108-getting-osm-data.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/index.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/200-introduction.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/211-using-map-composer.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/213-getting-support.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/index.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/index.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/index.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/300-introduction.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/301-advanced-editing.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/302-quality-assurance.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/303-dealing-with-conflicts.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/304-creating-josm-file-presets.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/305-using-private-data-store.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/306-editing-wiki-osm.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/index.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/400-introduction.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/401-review-qgis.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/index.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/osm/Chapter-00-preface.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/osm/Chapter-01-introduction.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/osm/Chapter-02-getting-started.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/osm/Chapter-03-introducing-the-id-editor.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/osm/Chapter-04-getting-started-with-josm.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/osm/Chapter-05-editing-with-josm.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/osm/Chapter-06-using-gps.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/osm/Chapter-07-field-papers.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/osm/Chapter-08-conflict-resolution-in-osm.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/osm/Chapter-09-inserting-tag.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/osm/Chapter-10-imagery-offset.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/osm/Chapter-11-export-osm-data.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/osm/index.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-00-Preface.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-01-GIS_for_Disaster_Management.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-03-Basic_QGIS.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-04-Map_Projection_Basic.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-05-Working_with_Vector_Data.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-06-Working_with_Raster_Data.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-07-Using_Map_Composer.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-08-Using_InaSAFE.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/qgis/index.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/socialisation/datasets.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/socialisation/faq.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/socialisation/inasafe_concepts.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/socialisation/index.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/socialisation/introduction.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/socialisation/introduction_to_qgis.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/socialisation/objective.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/socialisation/run_basic_inasafe.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/socialisation/run_intermediate_inasafe.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/socialisation/run_other_hazards.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/test_data.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/tot/501_adult_learning.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/tot/502_communication_skills.po delete mode 100644 docs/i18n/en/LC_MESSAGES/training/tot/index.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/application-help/batch_runner.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/application-help/converter.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/application-help/data_driven_age.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/application-help/dock.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/application-help/impact_functions.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/application-help/impact_layer_merge_tool.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/application-help/index.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/application-help/keywords.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/application-help/keywords_editor.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/application-help/keywords_wizard.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/application-help/minimum_needs.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/application-help/needs_manager.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/application-help/openstreetmap_downloader.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/application-help/options.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/application-help/reports.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/application-help/save_scenario.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/application-help/user_extents.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/functionality.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/getting_help.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/getting_involved.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/FloodBuildingImpactFunction.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunction.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/ITBFatalityFunction.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/PAGFatalityFunction.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/TsunamiEvacuationFunction.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/VolcanoBuildingImpact.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/impact_functions_doc.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/index.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/install.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/issue_tracker.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/lookup_table.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/postprocessors.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/toolbar.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/troubleshooting.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/using_qgis.po delete mode 100644 docs/i18n/en/LC_MESSAGES/user-docs/writing_documentation.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/contents.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/index.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/sphinx.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/curriculum/curriculum.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/curriculum/osm-beginner-toolkit.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/curriculum/osm-intermediate-toolkit.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/curriculum/qgis-inasafe-beginner-toolkit.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/curriculum/qgis-inasafe-intermediate-toolkit.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/index.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/index.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/100-introduction.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/101-basic-concept-of-osm-website.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/102-working-with-osm.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/103-working-with-josm.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/104-using-gps.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/105-field-papers.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/106-editing-osm-with-josm.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/107-imagery-offset.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/108-getting-osm-data.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/200-introduction.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/211-using-map-composer.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/213-getting-support.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/index.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/index.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/index.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/300-introduction.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/301-advanced-editing.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/302-quality-assurance.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/303-dealing-with-conflicts.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/304-creating-josm-file-presets.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/305-using-private-data-store.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/306-editing-wiki-osm.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/index.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/400-introduction.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/401-review-qgis.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/index.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-00-preface.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-01-introduction.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-02-getting-started.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-03-introducing-the-id-editor.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-04-getting-started-with-josm.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-05-editing-with-josm.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-06-using-gps.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-07-field-papers.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-08-conflict-resolution-in-osm.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-09-inserting-tag.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-10-imagery-offset.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-11-export-osm-data.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/osm/index.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-00-Preface.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-01-GIS_for_Disaster_Management.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-03-Basic_QGIS.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-04-Map_Projection_Basic.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-05-Working_with_Vector_Data.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-06-Working_with_Raster_Data.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-07-Using_Map_Composer.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-08-Using_InaSAFE.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/socialisation/datasets.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/socialisation/faq.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/socialisation/inasafe_concepts.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/socialisation/introduction.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/socialisation/introduction_to_qgis.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/socialisation/objective.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/socialisation/run_basic_inasafe.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/socialisation/run_intermediate_inasafe.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/socialisation/run_other_hazards.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/test_data.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/tot/501_adult_learning.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/training/tot/502_communication_skills.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/application-help/batch_runner.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/application-help/converter.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/application-help/data_driven_age.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/application-help/dock.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/application-help/impact_functions.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/application-help/impact_layer_merge_tool.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/application-help/index.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/application-help/keywords.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/application-help/keywords_editor.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/application-help/keywords_wizard.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/application-help/minimum_needs.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/application-help/needs_manager.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/application-help/openstreetmap_downloader.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/application-help/options.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/application-help/reports.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/application-help/save_scenario.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/application-help/user_extents.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/functionality.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/getting_help.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/getting_involved.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/FloodBuildingImpactFunction.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunction.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/ITBFatalityFunction.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/PAGFatalityFunction.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/TsunamiEvacuationFunction.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/VolcanoBuildingImpact.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/impact_functions_doc.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/index.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/install.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/issue_tracker.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/lookup_table.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/postprocessors.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/toolbar.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/troubleshooting.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/using_qgis.po delete mode 100644 docs/i18n/fr/LC_MESSAGES/user-docs/writing_documentation.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/curriculum/curriculum.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/curriculum/index.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/curriculum/osm-beginner-toolkit.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/curriculum/osm-intermediate-toolkit.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/curriculum/qgis-inasafe-beginner-toolkit.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/curriculum/qgis-inasafe-intermediate-toolkit.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/index.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/100-introduction.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/101-basic-concept-of-osm-website.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/102-working-with-osm.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/103-working-with-josm.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/104-using-gps.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/105-field-papers.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/106-editing-osm-with-josm.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/107-imagery-offset.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/108-getting-osm-data.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/index.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/200-introduction.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/211-using-map-composer.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/213-getting-support.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/index.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/index.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/index.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/300-introduction.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/301-advanced-editing.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/302-quality-assurance.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/303-dealing-with-conflicts.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/304-creating-josm-file-presets.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/305-using-private-data-store.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/306-editing-wiki-osm.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/index.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/400-introduction.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/401-review-qgis.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/index.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/osm/Chapter-00-preface.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/osm/Chapter-01-introduction.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/osm/Chapter-02-getting-started.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/osm/Chapter-03-introducing-the-id-editor.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/osm/Chapter-04-getting-started-with-josm.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/osm/Chapter-05-editing-with-josm.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/osm/Chapter-06-using-gps.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/osm/Chapter-07-field-papers.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/osm/Chapter-08-conflict-resolution-in-osm.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/osm/Chapter-09-inserting-tag.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/osm/Chapter-10-imagery-offset.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/osm/Chapter-11-export-osm-data.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/osm/index.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-00-Preface.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-01-GIS_for_Disaster_Management.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-03-Basic_QGIS.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-04-Map_Projection_Basic.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-05-Working_with_Vector_Data.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-06-Working_with_Raster_Data.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-07-Using_Map_Composer.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-08-Using_InaSAFE.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/qgis/index.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/socialisation/datasets.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/socialisation/faq.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/socialisation/inasafe_concepts.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/socialisation/index.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/socialisation/introduction.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/socialisation/introduction_to_qgis.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/socialisation/objective.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/socialisation/run_basic_inasafe.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/socialisation/run_intermediate_inasafe.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/socialisation/run_other_hazards.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/test_data.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/tot/501_adult_learning.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/tot/502_communication_skills.po delete mode 100644 docs/i18n/id/LC_MESSAGES/training/tot/index.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/application-help/batch_runner.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/application-help/converter.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/application-help/data_driven_age.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/application-help/dock.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/application-help/impact_functions.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/application-help/impact_layer_merge_tool.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/application-help/index.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/application-help/keywords.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/application-help/keywords_editor.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/application-help/keywords_wizard.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/application-help/minimum_needs.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/application-help/needs_manager.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/application-help/openstreetmap_downloader.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/application-help/options.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/application-help/reports.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/application-help/save_scenario.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/application-help/user_extents.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/functionality.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/getting_help.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/getting_involved.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/FloodBuildingImpactFunction.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunction.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/ITBFatalityFunction.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/PAGFatalityFunction.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/TsunamiEvacuationFunction.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/VolcanoBuildingImpact.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/impact_functions_doc.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/index.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/install.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/issue_tracker.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/lookup_table.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/postprocessors.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/toolbar.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/troubleshooting.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/using_qgis.po delete mode 100644 docs/i18n/id/LC_MESSAGES/user-docs/writing_documentation.po diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index d5c22576..c19c3553 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -13,3 +13,4 @@ jobs: - uses: DeterminateSystems/magic-nix-cache-action@v2 - run: nix-shell --run "scripts/pre_translate.sh" - run: nix-shell --run "scripts/post_translate.sh" + - run: nix-shell --run "scripts/english_build.sh" diff --git a/README.md b/README.md index 0012df81..9c827e3a 100644 --- a/README.md +++ b/README.md @@ -102,12 +102,13 @@ We are now going to use that inasafe-doc directory as source and output director ``` scripts/pre_translate.sh scripts/post_translate.sh +scripts/english_build.sh ``` You can also build the docs for a single language: ``` -scripts/post_translate.sh en html +scripts/post_translate.sh id html ``` ## Viewing the docs diff --git a/clean.sh b/clean.sh index 05a5b682..d55a4f6a 100755 --- a/clean.sh +++ b/clean.sh @@ -1,3 +1,5 @@ #!/usr/bin/env bash - -rm -rf build i18n output source/api-docs source/user-docs/impact_functions_doc.rst +rm -rf .venv +rm -rf .direnv +rm -rf docs/build docs/i18n docs/output source/api-docs source/user-docs/impact_functions_doc.rst +touch default.nix diff --git a/default.nix b/default.nix index 69066815..9dc464d1 100644 --- a/default.nix +++ b/default.nix @@ -11,9 +11,12 @@ in pkgs.mkShell rec { buildInputs = [ # A Python interpreter including the 'venv' module is required to bootstrap # the environment. + pythonPackages.python + # This executes some shell code to initialize a venv in $venvDir before + # dropping into the shell + pythonPackages.venvShellHook # By preference, install packages from nixpkgs first, # falling back to requirements.txt if that is not possible - pythonPackages.python pythonPackages.six pythonPackages.jinja2 pythonPackages.markupsafe @@ -31,9 +34,6 @@ in pkgs.mkShell rec { # Simple http server to test the built docs pinnedPkgs.httplz - # This executes some shell code to initialize a venv in $venvDir before - # dropping into the shell - pythonPackages.venvShellHook ]; # Run this command, only after creating the virtual environment @@ -42,8 +42,9 @@ in pkgs.mkShell rec { pip install -r requirements.txt ''; + # Note!! Adding content to shellHook below will prevent requirements.txt + # being installed. shellHook = '' - export LC_ALL=C ''; # Now we can execute any commands within the virtual environment. # This is optional and can be left out to run pip manually. diff --git a/docs/i18n/en/LC_MESSAGES/contents.po b/docs/i18n/en/LC_MESSAGES/contents.po deleted file mode 100644 index 3561223a..00000000 --- a/docs/i18n/en/LC_MESSAGES/contents.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 8d1a51f58ced4c8ca9a90fe9f499aeac -#: ../../source/contents.rst:8 -msgid "|project_name| Documentation" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/index.po b/docs/i18n/en/LC_MESSAGES/index.po deleted file mode 100644 index 8e34d2a3..00000000 --- a/docs/i18n/en/LC_MESSAGES/index.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 45bb2925cd934434a52d929718f00dc1 -#: ../../source/index.rst:8 -msgid "|project_name| Documentation" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/sphinx.po b/docs/i18n/en/LC_MESSAGES/sphinx.po deleted file mode 100644 index f8657787..00000000 --- a/docs/i18n/en/LC_MESSAGES/sphinx.po +++ /dev/null @@ -1,24 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:30+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# b40d9c4a59c14de1b50de20422acff21 -# f0f414add6d44e7d9a68c77e42326dff -#: ../../templates/globaltoc.html:10 ../../templates/localtoc.html:11 -msgid "Table Of Contents" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/curriculum/curriculum.po b/docs/i18n/en/LC_MESSAGES/training/curriculum/curriculum.po deleted file mode 100644 index 7a49fd26..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/curriculum/curriculum.po +++ /dev/null @@ -1,5591 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# a73161ee5b81451fb825f5b3f26ff294 -#: ../../source/training/curriculum/curriculum.rst:6 -msgid "Contingency Planning with OpenStreetMap (OSM) and QGIS/|project_name|" -msgstr "" - -# 790c89dfaf48462bb9827cd0118a4741 -#: ../../source/training/curriculum/curriculum.rst:8 -msgid "**BADAN NASIONAL PENANGGULANGAN BENCANA**" -msgstr "" - -# d4f45d2d4fe94fbdae8880183cb9fca2 -#: ../../source/training/curriculum/curriculum.rst:10 -msgid "**2013**" -msgstr "" - -# eb1f7df45cc64b2083027bf5406e6b78 -#: ../../source/training/curriculum/curriculum.rst:14 -msgid "FOREWORD" -msgstr "" - -# 458752d709c14b6395ca00da7b6de830 -#: ../../source/training/curriculum/curriculum.rst:16 -msgid "" -"The Contingency Planning with OpenStreetMap (OSM) and |QGIS|/|project_name| " -"workshop program is designed to provide provincial and district disaster " -"management agency officials and staff with the knowledge and skills required " -"to handle emergencies during all stages of a disaster. The knowledge and " -"skills acquired through this workshop program will help them to reduce and " -"manage risks from natural disasters." -msgstr "" - -# 6d522d93ebff40ae91e5f8122d0d0d05 -#: ../../source/training/curriculum/curriculum.rst:23 -msgid "" -"Badan Nasional Penanggulangan Bencana (|BNPB|) has identified as a priority " -"the need to create improved methodology for contingency planning. This " -"methodology is focused on the use of realistic disaster scenarios as a " -"starting point for the new comprehensive process." -msgstr "" - -# b0a90a611dc34daa8022cd93a891ea75 -#: ../../source/training/curriculum/curriculum.rst:28 -msgid "" -"|BNPB| and |GoA| through Australia-Indonesia Facility for Disaster Reduction " -"(|AIFDR|) have worked together to create open source software tools for " -"realistic disaster scenario development as an input for contingency " -"planning. They are designed to help disaster managers improve their own " -"scenario analysis which can be used as an input for their disaster " -"contingency planning." -msgstr "" - -# cef26a5256894707b2a2a75c4eb841cf -#: ../../source/training/curriculum/curriculum.rst:35 -msgid "" -"To aid the |BNPB| workshop centre (Pusat Diklat BNPB) in developing " -"systematic workshops which cover all required competencies, this package of " -"training and curriculum materials was created. The workshop curriculum is " -"developed to be used as reference in workshop organisation, both for " -"national or provincial/district level." -msgstr "" - -# 3f488380d3d741fd8f745143c06952b4 -#: ../../source/training/curriculum/curriculum.rst:41 -msgid "" -"This curriculum will be enhanced through test and input from stakeholders, " -"both from government and non-government agencies." -msgstr "" - -# c36a9dd467e04a1b88e2b5f2382f5ed7 -#: ../../source/training/curriculum/curriculum.rst:46 -msgid "INTRODUCTION" -msgstr "" - -# fbde70c7553948ffaeb14b5f4e72ebb6 -#: ../../source/training/curriculum/curriculum.rst:48 -msgid "" -"As one of the most hazard-prone and densely populated countries in the " -"world, Indonesia faces significant risk of loss of life and challenges to " -"development progress as a result of natural disasters. This is why disaster " -"risk reduction has been recognised by the Government of Indonesia as one of " -"their top eleven priorities in the Medium-Term Development Plan (2010-2014). " -"In recognition of the impact of disasters on developing economies, AusAid’s " -"policy on disaster risk reduction highlights the importance of investing in " -"disaster reduction." -msgstr "" - -# 02020cc5c4114accbeb265a89ee1731b -#: ../../source/training/curriculum/curriculum.rst:58 -msgid "" -"|BNPB| has a mandate to increase the overall disaster management capacity of " -"Indonesia, including workshops for managers who handle disasters at the sub-" -"national level. To date, BNPB’s Education and Workshop Centre has been " -"developing a range of workshop curriculum and modules with specific focus on" -msgstr "" - -# 86376697523c46cfa6987f214223f0de -#: ../../source/training/curriculum/curriculum.rst:64 -msgid "Basic Disaster Management" -msgstr "" - -# dc7743571af6415d8c5ae1822dbffd37 -#: ../../source/training/curriculum/curriculum.rst:65 -msgid "Rapid Assessment and Coordination" -msgstr "" - -# df10838113dc4cfbb9845676f5fabad9 -#: ../../source/training/curriculum/curriculum.rst:66 -msgid "Contingency Planning" -msgstr "" - -# 199776b2118f4f839769f716e8fbe4dc -#: ../../source/training/curriculum/curriculum.rst:68 -msgid "" -"|BNPB| works with various actors and stakeholders on the development of " -"these workshop modules. |BNPB| has identified as a priority the need to " -"improve its methodology for contingency planning with an emphasis on the use " -"of realistic disaster scenarios as the starting point for this new " -"comprehensive process." -msgstr "" - -# 85081e84668e4b189891aa4691067257 -#: ../../source/training/curriculum/curriculum.rst:74 -msgid "" -"|BNPB| and |GoA| through the Australia-Indonesia Facility for Disaster " -"Reduction have worked together on a methodology and associated open source " -"software for developing realistic disaster scenarios for contingency " -"planning. This will enable emergency managers to develop their own scenario " -"assessments that can feed into their disaster contingency plans. Over the " -"last year three specific tools have been piloted in Indonesia with huge " -"success:" -msgstr "" - -# 16e5171c00c0427ca5c55a901ddd5ec5 -#: ../../source/training/curriculum/curriculum.rst:83 -msgid "" -"**InaSAFE**: a free and open source software that produces realistic natural " -"hazard impact scenarios for better planning, preparedness and response " -"activities. It is being developed by |AIFDR| in close consultation with |" -"BNPB|." -msgstr "" - -# 82f894341d1444b6af6f1a974eb435fa -#: ../../source/training/curriculum/curriculum.rst:88 -msgid "" -"**OpenStreetMap (OSM) tools**: OSM is a free map of the world that anyone " -"can add to and edit. Community mapping allows for more detailed information " -"to be collected that can be utilised for analysis in |project_name| (e.g. " -"How many houses will be affected by a specific hazard)." -msgstr "" - -# cac1209c2b8a47f8b9ab0fc9e7833439 -#: ../../source/training/curriculum/curriculum.rst:94 -msgid "" -"**QGIS**: open source Geographical Information System (GIS) software that " -"allows users to spatially analyse their data. It is also the platform on " -"which |project_name| is built." -msgstr "" - -# 5bbcfccc9e0b4aff9c4a03e84ae08486 -#: ../../source/training/curriculum/curriculum.rst:98 -msgid "" -"In order to ensure uptake, effectiveness and sustainability of these tools " -"it is necessary to develop and test a comprehensive workshop package for " -"each individual tool as well as create a pool of trainers across Indonesia." -msgstr "" - -# 1f98dde6313240dfb49a7c132c567f19 -#: ../../source/training/curriculum/curriculum.rst:102 -msgid "" -"This curriculum outline describes competencies to be achieved, the lists of " -"content required to achieve the competencies in the workshop package and the " -"program structure of the workshop course. The workshop consists of beginner, " -"intermediate and training of trainer levels. The beginner workshop is mainly " -"aimed to introduce participants to the concept of realistic disaster " -"scenario development and help them become socialised to the concepts and " -"explore all three of the open source tools. In contingency planning, having " -"realistic disaster scenarios contributes significantly to the reliability of " -"the created planning results. As complexity and uncertainty are common in " -"developing realistic disaster scenarios, advanced knowledge and skills in " -"mapping and impact calculations using OSM, QGIS and |project_name| are " -"required. For this reason, the intermediate level of the workshop on OSM, " -"QGIS and |project_name| is required to further participants' knowledge and " -"skills to work with the tools in anticipating possible disaster events and " -"impacts." -msgstr "" - -# d06c08886cbf4e1db60fec98eee2e096 -#: ../../source/training/curriculum/curriculum.rst:119 -msgid "" -"The beginner and intermediate workshops are expected to be continued with an " -"advanced level course for training of trainers." -msgstr "" - -# f3801267b17f49e98944722eeae87f5c -#: ../../source/training/curriculum/curriculum.rst:122 -msgid "" -"To gain the required competencies, the workshop course is expected to apply " -"andragogical principles (a learning approach for adults) with an emphasis on " -"real tasks in the field and various methods in engaging active participation " -"from the participants." -msgstr "" - -# d3aa1bdb5f3d483b9a23343cef9bd8d1 -#: ../../source/training/curriculum/curriculum.rst:128 -msgid "LEVELS OF WORKSHOP" -msgstr "" - -# 9deb10a5d8914a318e176adc9c702d0e -#: ../../source/training/curriculum/curriculum.rst:130 -msgid "The workshop consists of three levels:" -msgstr "" - -# 1e1b006437944083882dd6ea555529ce -#: ../../source/training/curriculum/curriculum.rst:132 -msgid "Beginner Workshop" -msgstr "" - -# 0e07460f65254482b4201f6655053319 -# ae8261aabb6341d989fde3624925d016 -#: ../../source/training/curriculum/curriculum.rst:134 -#: ../../source/training/curriculum/curriculum.rst:227 -msgid "Collecting Data Using OSM (Beginner)" -msgstr "" - -# ca5100224be24603a20c91451a048aa6 -#: ../../source/training/curriculum/curriculum.rst:135 -msgid "Data Analysis Using QGIS and |project_name| (Beginner)" -msgstr "" - -# 52b0b2f031f540d9a52b434d04f50081 -#: ../../source/training/curriculum/curriculum.rst:137 -msgid "Intermediate Workshop" -msgstr "" - -# f16e485886f94b26a8aee8231c8b9998 -# 503840b0aa9b415fb79697372c52776d -#: ../../source/training/curriculum/curriculum.rst:139 -#: ../../source/training/curriculum/curriculum.rst:260 -msgid "Collecting Data Using OSM (Intermediate)" -msgstr "" - -# 64af843be9e0407990f5d76adb0c53eb -#: ../../source/training/curriculum/curriculum.rst:140 -msgid "Data Analysis Using QGIS and |project_name| (Intermediate)" -msgstr "" - -# bbb364bdf094471095f995eb21de8775 -#: ../../source/training/curriculum/curriculum.rst:142 -msgid "Training of Trainer (ToT) Workshop" -msgstr "" - -# 0709ae3ad7e54b14ae8e0d3c9ca7abc6 -#: ../../source/training/curriculum/curriculum.rst:145 -msgid "CURRICULUM" -msgstr "" - -# 5ae17b194b7741e68f4ae7088d8f8fa8 -#: ../../source/training/curriculum/curriculum.rst:148 -msgid "A. Aims" -msgstr "" - -# c4f9311cc5ba44589926f19dc13f827c -#: ../../source/training/curriculum/curriculum.rst:150 -msgid "" -"The scheme of the curriculum on Scenario Development for Contingency " -"Planning by using OSM and QGIS/|project_name| is designed to provide a " -"reference to workshop organisers at national, provincial and district levels." -msgstr "" - -# 391a89150ac342ab8e61b038eccb8923 -#: ../../source/training/curriculum/curriculum.rst:154 -msgid "" -"The course consists of three separate workshops which cover four training " -"modules and a training for trainers. The objective of the first workshop is " -"to provide a complete, albeit beginner understanding of all components of " -"the scenario development process. The second workshop is intended to " -"continue on to more advanced topics in OSM and QGIS/|project_name|." -msgstr "" - -# af231e8bb10f492bae6910bec28c6d2b -#: ../../source/training/curriculum/curriculum.rst:160 -msgid "" -"The main objective of the ToT workshop is to train people to be leaders and " -"trainers in Scenario Development program for Contingency Planning (SD4CP) in " -"their respective regions." -msgstr "" - -# caf1ba47c09948af89f86396c983a12c -#: ../../source/training/curriculum/curriculum.rst:164 -msgid "" -"After completing the three workshops, participants will have the skills in " -"OSM / QGIS / |project_name| which are needed as a facilitator, to help train " -"others in developing realistic disaster scenarios that can be used in " -"contingency plans. This will lead to better decision making during the " -"process of making contingency plans. It is also expected that those who " -"reach the training of trainer level can provide technical assistance in " -"their respective regions." -msgstr "" - -# 9fb25652c5c944ab9176ad1303946f38 -#: ../../source/training/curriculum/curriculum.rst:175 -msgid "B. Target Audience and Qualifications" -msgstr "" - -# fc2fec111dac4cb0afc426c46598c732 -#: ../../source/training/curriculum/curriculum.rst:177 -msgid "" -"The target participants of the workshop courses, both at beginner and " -"intermediate levels are:" -msgstr "" - -# 941f61d3837e4f36b73a88057f5210b6 -#: ../../source/training/curriculum/curriculum.rst:180 -msgid "" -"Persons responsible in developing contingency plans at BPBD at provincial " -"and district levels. Priority is given to those working in the prevention " -"working unit" -msgstr "" - -# 810b41af1c8140ff8c660e801afbb823 -#: ../../source/training/curriculum/curriculum.rst:183 -msgid "" -"Lecturers and students from relevant departments such as Geography, Geodesy, " -"Geomatics, Information Technology and other earth-related sciences" -msgstr "" - -# 7f622b32563d450f934af1e80b488a14 -#: ../../source/training/curriculum/curriculum.rst:185 -msgid "Representatives from NGOs working in disaster risk reduction" -msgstr "" - -# 23c35f07adc9405b96b8599b4588b40b -#: ../../source/training/curriculum/curriculum.rst:186 -msgid "Other relevant organisations such as Army, Police, Red Cross and Scouts" -msgstr "" - -# 492ded1b2d0a4959b0e183b010b82718 -#: ../../source/training/curriculum/curriculum.rst:187 -msgid "Other relevant agencies" -msgstr "" - -# c53cd875307f4a52897ecad83d3fef57 -#: ../../source/training/curriculum/curriculum.rst:189 -msgid "Qualifications for participants at beginner level:" -msgstr "" - -# 8e5fe1129a0648b3807842f63c389b6b -# 647c813617f44cce8780bf26bb5742e5 -#: ../../source/training/curriculum/curriculum.rst:191 -#: ../../source/training/curriculum/curriculum.rst:202 -msgid "" -"Able to operate a computer (word processing, presentations, internet, " -"spreadsheets)" -msgstr "" - -# 03b20acf24564bd6a8be7ae0c6554858 -# 4916415b88d2493684227da3e46b4c2a -#: ../../source/training/curriculum/curriculum.rst:193 -#: ../../source/training/curriculum/curriculum.rst:204 -msgid "Have a laptop with minimum RAM of 2 GB (recommended 4 GB)" -msgstr "" - -# ba32c48a5cd148fb99b7ef48dcb9dc40 -# 33cbfc5c5dc941d4a860fc806ebdb8ae -#: ../../source/training/curriculum/curriculum.rst:194 -#: ../../source/training/curriculum/curriculum.rst:206 -msgid "Having a GPS unit and understanding of how it works is an advantage" -msgstr "" - -# e5ff99ac58aa498eb2f4519b32a86781 -#: ../../source/training/curriculum/curriculum.rst:195 -msgid "Having basic skills in Geographic Information Systems is an advantage" -msgstr "" - -# 840658c3b83d40b2a38927762cac4331 -#: ../../source/training/curriculum/curriculum.rst:197 -msgid "Qualifications for participants at intermediate level:" -msgstr "" - -# 96a615b5aa434e93a00bb57bccc55557 -#: ../../source/training/curriculum/curriculum.rst:199 -msgid "" -"MUST have attended the workshop at beginner level OR equivalent knowledge OR " -"have a background in Geographic Information Systems and have read through " -"the beginner manuals" -msgstr "" - -# fffd4d7e4fe4499c8f843d70e69d3d74 -#: ../../source/training/curriculum/curriculum.rst:205 -msgid "Have an understanding of Geographic Information Systems" -msgstr "" - -# 587adab1337f4f28b03e7a5ea2053d63 -#: ../../source/training/curriculum/curriculum.rst:208 -msgid "Qualifications for participants at Training of Trainer (ToT) level:" -msgstr "" - -# c2fbb7c6b4e34332af3286a6dfde129a -#: ../../source/training/curriculum/curriculum.rst:210 -msgid "" -"MUST have attended the workshop at both beginner and intermediate levels." -msgstr "" - -# 1e64562817f94bf1a6cddd188157f586 -#: ../../source/training/curriculum/curriculum.rst:212 -msgid "" -"Demonstrate the potential to be a key advocate, trainer and technical " -"resource for Scenario Development Contingency Planning in their region" -msgstr "" - -# fe09d9ee4f764d20a2443fadbdc0f0c1 -#: ../../source/training/curriculum/curriculum.rst:214 -msgid "Satisfactory completion of prerequisite tasks (as assessed by HOT)" -msgstr "" - -# 8b682d3c566d405284eecb6529aa49aa -#: ../../source/training/curriculum/curriculum.rst:217 -msgid "C. Map of Competencies" -msgstr "" - -# 40f1117c06bf4e58a4419d601a697071 -#: ../../source/training/curriculum/curriculum.rst:219 -msgid "" -"Note that the competencies map (and curriculum scheme below) are organised " -"by topic, rather than by workshop level." -msgstr "" - -# 06b5cd124be34671bc4c2502971951bb -#: ../../source/training/curriculum/curriculum.rst:222 -msgid "**1. Beginner Workshop**" -msgstr "" - -# b9ee1f2334634a95b0ccbe87ed1e49ab -# dfbd09552f824f449a72431b96624709 -#: ../../source/training/curriculum/curriculum.rst:225 -#: ../../source/training/curriculum/curriculum.rst:258 -#: ../../source/training/curriculum/curriculum.rst:281 -msgid "No." -msgstr "" - -# 33f512fb96af40049f820c045c0cfef4 -# 4c56cf448ef743f8b9c15f1670e903d8 -#: ../../source/training/curriculum/curriculum.rst:225 -#: ../../source/training/curriculum/curriculum.rst:258 -#: ../../source/training/curriculum/curriculum.rst:281 -msgid "Level" -msgstr "" - -# abcceb66c40b44c5bdfc830142a9e6ed -# 52fd606a9e8d407bb2c51ac335e0e3a6 -# c10a2a811cae4499b3c5c3fc866c1b52 -#: ../../source/training/curriculum/curriculum.rst:225 -#: ../../source/training/curriculum/curriculum.rst:258 -#: ../../source/training/curriculum/curriculum.rst:281 -msgid "Standard and Basic Competencies" -msgstr "" - -# e3d5edb02cb947109246cad34efd9c3e -#: ../../source/training/curriculum/curriculum.rst:227 -msgid "**Collecting Spatial Data with OSM**" -msgstr "" - -# a4414a68c97e4ef2a6222a697d8546aa -# 0a7b0e5d6f4d4f1b8580c953b7707bdf -# 9f793c407e514772850ebe5867e5e556 -#: ../../source/training/curriculum/curriculum.rst:229 -#: ../../source/training/curriculum/curriculum.rst:339 -#: ../../source/training/curriculum/curriculum.rst:907 -msgid "Draw paper maps to gain a basic understanding of OpenStreetMap" -msgstr "" - -# ba8e089f8e814c7d8ca4784d1137516a -# 56f73696228849cdb82c2ee55294cd17 -# 63c37dc2570b488ab961a981de857176 -#: ../../source/training/curriculum/curriculum.rst:230 -#: ../../source/training/curriculum/curriculum.rst:346 -#: ../../source/training/curriculum/curriculum.rst:916 -msgid "Navigate OpenStreetMap website" -msgstr "" - -# 67ec3ed9a8964728b2c0871292e5032f -# 00c6fcdadac449b9b9773c9fcbd8d21a -# 09b372f9e6604fc291f79dc50fe35caf -#: ../../source/training/curriculum/curriculum.rst:231 -#: ../../source/training/curriculum/curriculum.rst:354 -#: ../../source/training/curriculum/curriculum.rst:926 -msgid "Operate JOSM" -msgstr "" - -# c49534737c6d43b78d23d111eb37d69b -# ea9d43dea5d84dde86bc5215c9aabf06 -# b8c82035ee3047858a8e73795216ce57 -#: ../../source/training/curriculum/curriculum.rst:232 -#: ../../source/training/curriculum/curriculum.rst:372 -#: ../../source/training/curriculum/curriculum.rst:946 -msgid "Use GPS to add data to OSM" -msgstr "" - -# 8093f91064544d14a76849ba750115e4 -# 1fbf2a426c4d41ca8d3013606979f1bd -# bc9b6b54c666495e93fdd86a59e1d86a -#: ../../source/training/curriculum/curriculum.rst:233 -#: ../../source/training/curriculum/curriculum.rst:393 -#: ../../source/training/curriculum/curriculum.rst:969 -msgid "Use Field Papers to add data to OSM" -msgstr "" - -# 45c1555ecfd64dbcbd6de9c4d5615002 -# bd8dfcdebc9c41a89be5cc86d20eebc0 -# e544ad74378e4826bf45790dd14bcea5 -#: ../../source/training/curriculum/curriculum.rst:234 -#: ../../source/training/curriculum/curriculum.rst:402 -#: ../../source/training/curriculum/curriculum.rst:981 -msgid "Edit a map and add information to OSM using JOSM" -msgstr "" - -# 12e5bbf878b24283a8c24395cd8d6b02 -#: ../../source/training/curriculum/curriculum.rst:235 -#: ../../source/training/curriculum/curriculum.rst:411 -#: ../../source/training/curriculum/curriculum.rst:996 -msgid "Correct imagery offset" -msgstr "" - -# a948bcb631a44aeaacd4856bfd940cc9 -# e0cd95a2ae874a3ca7cf6188291a98ce -# 4cbd688beba240068335ca6b782fcdfc -#: ../../source/training/curriculum/curriculum.rst:236 -#: ../../source/training/curriculum/curriculum.rst:418 -#: ../../source/training/curriculum/curriculum.rst:1005 -msgid "" -"Get OSM data in a specific format to be analysed further in Geographic " -"Information System (GIS) software" -msgstr "" - -# 59c7214b8bc24727917d3e2c435a518b -#: ../../source/training/curriculum/curriculum.rst:238 -msgid "Data Analysis using QGIS and |project_name| (Beginner)" -msgstr "" - -# 8ed0fb40b801472fbe7c1ba1b53315c5 -#: ../../source/training/curriculum/curriculum.rst:238 -msgid "" -"**Managing Spatial Data using QGIS and Analysing Disaster Impact Scenarios " -"with** |project_name|" -msgstr "" - -# 8ce3b21e4d5f4e21890655c97cc65af2 -# aa046505d96648508d73f64fecd93125 -# e8570e3183694dab93f583014aa9f5ae -#: ../../source/training/curriculum/curriculum.rst:240 -#: ../../source/training/curriculum/curriculum.rst:434 -#: ../../source/training/curriculum/curriculum.rst:1024 -msgid "Use GIS to develop scenarios for contingency planning" -msgstr "" - -# e754f8acbf2f43509be5e5526458f016 -#: ../../source/training/curriculum/curriculum.rst:241 -msgid "" -"Understand the benefit of QGIS and |project_name| for developing realistic " -"scenarios for contingency planning" -msgstr "" - -# 20f1b8bc51d340f6a5072b0804f86516 -# 8de6e0c8d7ca4f51b348401bd2af5b5c -# 0a75b6e4fa7b4c7f826f059d465f3773 -#: ../../source/training/curriculum/curriculum.rst:242 -#: ../../source/training/curriculum/curriculum.rst:446 -#: ../../source/training/curriculum/curriculum.rst:1040 -msgid "Install QGIS and understand QGIS user interface" -msgstr "" - -# e010db310b0a4170834293c1085295d4 -# 5c852685509e4a9a85fb15d409f7eba8 -# e9b1aaa6c3c1427491587ee494ad25ba -#: ../../source/training/curriculum/curriculum.rst:243 -#: ../../source/training/curriculum/curriculum.rst:456 -#: ../../source/training/curriculum/curriculum.rst:1052 -msgid "Use QGIS plugins" -msgstr "" - -# 19fc82e33696470b8146cc8776350657 -# 70496e0b7fd14166a3a62bece5900e34 -# 4dfb16b6ed2e4b089b564bc9d6a9f1f3 -#: ../../source/training/curriculum/curriculum.rst:244 -#: ../../source/training/curriculum/curriculum.rst:463 -#: ../../source/training/curriculum/curriculum.rst:1061 -msgid "Understand projection systems and transformation in QGIS" -msgstr "" - -# 583888f49a364f3f8c9d29c4e70ac171 -# 87f396e9217e4b9fad12795f397c147c -# 10186d342f824004b1a23b8c81885d61 -#: ../../source/training/curriculum/curriculum.rst:245 -#: ../../source/training/curriculum/curriculum.rst:470 -#: ../../source/training/curriculum/curriculum.rst:1072 -msgid "Use and understand vector data" -msgstr "" - -# 453e9be71f984c24abebd5916e2fac13 -# b41203a753254e068f7205339f47f1f8 -# a5462ee01f354b54a258df9e2e74431e -#: ../../source/training/curriculum/curriculum.rst:246 -#: ../../source/training/curriculum/curriculum.rst:477 -#: ../../source/training/curriculum/curriculum.rst:1081 -msgid "Categorise and create labels from vector data" -msgstr "" - -# 45ec38c8c0ee4a00b987f3c84f9d406a -# 6e5f0bbbca7042169ad3559a432dfb5c -# bc00c456de244adf9cf2808a1050ba8b -#: ../../source/training/curriculum/curriculum.rst:247 -#: ../../source/training/curriculum/curriculum.rst:484 -#: ../../source/training/curriculum/curriculum.rst:1090 -msgid "Use and understand raster data" -msgstr "" - -# 58a09b2213ac4e66926e1ca75c094547 -# d8566a42eab4422fb070122d05a706c8 -# 7774c551cf554183b98152f3d114f44f -#: ../../source/training/curriculum/curriculum.rst:248 -#: ../../source/training/curriculum/curriculum.rst:491 -#: ../../source/training/curriculum/curriculum.rst:1099 -msgid "Create and edit new vector layers" -msgstr "" - -# e3d66c4e990f4d21bd2fe9688ca96502 -# aaf27fc6b0334c84995a0e7f5c3c93ca -# 57be375d775644b988f2c12e74c99d8a -#: ../../source/training/curriculum/curriculum.rst:249 -#: ../../source/training/curriculum/curriculum.rst:498 -#: ../../source/training/curriculum/curriculum.rst:1108 -msgid "Analyse vector data to solve problems" -msgstr "" - -# 829e2ebec5e849909301ae8996b00355 -# d17966f25eec4ce3b2b88e0878c649d6 -# 243a126f7a6b4eba93ebbb716a1a0e05 -#: ../../source/training/curriculum/curriculum.rst:250 -#: ../../source/training/curriculum/curriculum.rst:514 -#: ../../source/training/curriculum/curriculum.rst:1126 -msgid "Create maps with the Map Composer" -msgstr "" - -# f6674008504048a582e5dd547e32947f -# 6b4acba20a234deea78765c36fd316aa -#: ../../source/training/curriculum/curriculum.rst:251 -#: ../../source/training/curriculum/curriculum.rst:525 -msgid "Use |project_name|" -msgstr "" - -# a5be4fa3066a4663851f4b9a506edd22 -# f84fe67bbeb949a585d0dc8c36aeceb6 -# 515856ca16a0443fabcd4666843742a7 -#: ../../source/training/curriculum/curriculum.rst:252 -#: ../../source/training/curriculum/curriculum.rst:537 -#: ../../source/training/curriculum/curriculum.rst:1153 -msgid "Understand how to get support for QGIS and |project_name| in Indonesia" -msgstr "" - -# d38dc07882b04675b18f58f760d0950b -#: ../../source/training/curriculum/curriculum.rst:255 -msgid "**2. Intermediate Workshop**" -msgstr "" - -# 6be4699a88c14b66b6e0ff2608f3276d -#: ../../source/training/curriculum/curriculum.rst:260 -msgid "**Quality Assurance in OSM mapping**" -msgstr "" - -# ce44e3a2a137402ab557670605c85a34 -#: ../../source/training/curriculum/curriculum.rst:262 -msgid "" -"Apply better digitising techniques for improving quality of collected data" -msgstr "" - -# df04feb0480844fca7ca963f621b2b19 -# eb3a531112854a859309ca7fd60dd650 -# e3a51251a4d44eb0a5711735a7c53ed1 -#: ../../source/training/curriculum/curriculum.rst:263 -#: ../../source/training/curriculum/curriculum.rst:563 -#: ../../source/training/curriculum/curriculum.rst:1183 -msgid "Use JOSM validation tools to ensure the quality of map contributions" -msgstr "" - -# 9e9219e60f854d058aab3d65ce05050e -# e9b131f2c11141bd88947d494d0e1449 -# e4c04b1c562744799f8290c6150348ab -#: ../../source/training/curriculum/curriculum.rst:264 -#: ../../source/training/curriculum/curriculum.rst:573 -#: ../../source/training/curriculum/curriculum.rst:1195 -msgid "Resolve conflicts when uploading OSM data" -msgstr "" - -# a65985e62fa64832a1df47aa6b847553 -# e5a879f9fae34446b408ed23d0b77bfd -# e22dec55a8a94d278873f36a6415b075 -#: ../../source/training/curriculum/curriculum.rst:265 -#: ../../source/training/curriculum/curriculum.rst:579 -#: ../../source/training/curriculum/curriculum.rst:1204 -msgid "Create presets files in JOSM" -msgstr "" - -# 8da63a976bb843db9c48c36b13068dfc -# 60f4c98e7f104d02a44b686bde7ae216 -# 071990ca48934e908de8536558a3531a -#: ../../source/training/curriculum/curriculum.rst:266 -#: ../../source/training/curriculum/curriculum.rst:588 -#: ../../source/training/curriculum/curriculum.rst:1215 -msgid "Use private data store feature to keep private data" -msgstr "" - -# e698d50a666d46ea9d1155eeda7babe5 -#: ../../source/training/curriculum/curriculum.rst:267 -msgid "Create and edit pages in OSM Wiki" -msgstr "" - -# ffdebfb032a84cf3af9acf80798ebf6c -#: ../../source/training/curriculum/curriculum.rst:269 -msgid "Data Analysis using QGIS and |project_name| (Intermediate)" -msgstr "" - -# a9ab74cdea3a4984bf0bdc7bd97d8306 -#: ../../source/training/curriculum/curriculum.rst:269 -msgid "" -"**Spatial Data Analysis using QGIS and** |project_name| **for Contingency " -"Planning**" -msgstr "" - -# 0004a2ab8fcd40dcaa7065d1ef1ce9f4 -#: ../../source/training/curriculum/curriculum.rst:271 -#: ../../source/training/curriculum/curriculum.rst:617 -#: ../../source/training/curriculum/curriculum.rst:1253 -msgid "Understand QGIS concepts" -msgstr "" - -# 23580964352d4f66aa3f30ed321f8585 -# 27886bf7999848e1827ac4e39376de04 -# 793077f3ced24a92a00468d2e263fb66 -#: ../../source/training/curriculum/curriculum.rst:272 -#: ../../source/training/curriculum/curriculum.rst:623 -#: ../../source/training/curriculum/curriculum.rst:1261 -msgid "Prepare data and keywords for |project_name|" -msgstr "" - -# 3267ee6b46ac4420af2739a1e2964579 -# 78ca5399d5874320aaefd697ab6407ba -# 880b518484f549a882e229bad248b2c2 -#: ../../source/training/curriculum/curriculum.rst:273 -#: ../../source/training/curriculum/curriculum.rst:632 -#: ../../source/training/curriculum/curriculum.rst:1273 -msgid "Determine temporary IDP camp or evacuation locations" -msgstr "" - -# 78ace5d39192423ba1f696e0bb4bb607 -# ae35af561d3441f1ad4b0b8a8f5dccf0 -# f70f0a44f5b440698e43d750d0a073f1 -#: ../../source/training/curriculum/curriculum.rst:274 -#: ../../source/training/curriculum/curriculum.rst:644 -#: ../../source/training/curriculum/curriculum.rst:1287 -msgid "Plan evacuation routes based on hazard information" -msgstr "" - -# 05d566da8eb84459bd5589aa0169a467 -#: ../../source/training/curriculum/curriculum.rst:275 -#: ../../source/training/curriculum/curriculum.rst:651 -#: ../../source/training/curriculum/curriculum.rst:1296 -msgid "Calculate damage and losses" -msgstr "" - -# 4bdd65dae745404cad5ed12e474bd1de -#: ../../source/training/curriculum/curriculum.rst:278 -msgid "**3. Training of Trainers**" -msgstr "" - -# 1bf896b3f28b447d8234eb6ddcef34f2 -#: ../../source/training/curriculum/curriculum.rst:283 -msgid "Advanced" -msgstr "" - -# 1e72f82b56b04afdb799d16f6f3f6d8c -#: ../../source/training/curriculum/curriculum.rst:283 -msgid "" -"**Teaching data collection and analysis with OSM, QGIS and** |project_name| " -"**in their respective region**" -msgstr "" - -# 227d78d8c6d347bb8e16d64f164a63f8 -# 8b5bc0ec99bf47ad947aff7d7c1c920d -# 9ef578a5644240ccbabcf957b1ffe26a -#: ../../source/training/curriculum/curriculum.rst:285 -#: ../../source/training/curriculum/curriculum.rst:679 -#: ../../source/training/curriculum/curriculum.rst:1325 -msgid "Master how to implement adult learning" -msgstr "" - -# 3b8d3eaae64d499c9a7c71acdd007ae7 -# a8a4b0b02a26451aa654658ca85467b9 -# d1597108688e48c6ad93055772c0d4b4 -#: ../../source/training/curriculum/curriculum.rst:286 -#: ../../source/training/curriculum/curriculum.rst:688 -#: ../../source/training/curriculum/curriculum.rst:1336 -msgid "Demonstrate basic teaching skills" -msgstr "" - -# 1fb5f510125746268eefdba79a9b7ce4 -#: ../../source/training/curriculum/curriculum.rst:287 -msgid "" -"Practise data collection and analysis through OSM, QGIS and |project_name|" -msgstr "" - -# 4714c47262da42a282717dc7ec6654ad -#: ../../source/training/curriculum/curriculum.rst:292 -msgid "D. Curriculum Development Process" -msgstr "" - -# 59960ee466df4332b4fdad4a7cfa9a38 -#: ../../source/training/curriculum/curriculum.rst:294 -msgid "" -"The curriculum development process is ongoing, and involves the following " -"core components:" -msgstr "" - -# 4c5210e180a34907b104eaf7584d0d20 -#: ../../source/training/curriculum/curriculum.rst:297 -msgid "" -"Identify the exact competencies that have to be learned to collect spatial " -"data using OSM and analyse it using QGIS/|project_name|. Competencies are " -"described as standard and basic." -msgstr "" - -# 978a5df0f36143fc88ad2ef2f9da6490 -#: ../../source/training/curriculum/curriculum.rst:301 -msgid "" -"A standard competency, or workshop material competency, is the minimum " -"requirement of participants which encapsulates their knowledge, attitude, " -"and skill that need to be achieved." -msgstr "" - -# ea3394b211a54abd8df7cda3dcd8dea6 -#: ../../source/training/curriculum/curriculum.rst:305 -msgid "" -"A basic competency is an individual skill that needs to be mastered by the " -"participant in the workshop material as a reference for indicators." -msgstr "" - -# 2310b815a28f4fa6bd0acf092c5d445f -#: ../../source/training/curriculum/curriculum.rst:308 -msgid "Indicators are:" -msgstr "" - -# 3c4020937622466789cbb9632779b08d -#: ../../source/training/curriculum/curriculum.rst:310 -msgid "" -"Behavioral characteristics (measurable evidence) that indicate that workshop " -"participants have achieved basic competency" -msgstr "" - -# e535a11db1524b7aaa8d476ab8d0e367 -#: ../../source/training/curriculum/curriculum.rst:312 -msgid "" -"Basic competency achievement marks derived from measurable behavior such as " -"attitude, knowledge and skills" -msgstr "" - -# 89e051f2f38240efb8a8e69191bfe6b0 -#: ../../source/training/curriculum/curriculum.rst:314 -msgid "" -"Developed in accordance with the characteristics of the workshop " -"participant, conditions and workshop organiser" -msgstr "" - -# 6b7ee46cc2b3476ba049e7a49fb9a781 -#: ../../source/training/curriculum/curriculum.rst:316 -msgid "Measurable and/or observable" -msgstr "" - -# ff206cfefefb44b2a983293b98348b39 -#: ../../source/training/curriculum/curriculum.rst:317 -msgid "Used as a basis to develop an assessment tool" -msgstr "" - -# 905def27feaf4e71b6c8b3311fcd37f2 -#: ../../source/training/curriculum/curriculum.rst:319 -msgid "Compile all teaching and workshop materials to be used in the workshop." -msgstr "" - -# 4c600538166f40fb8f95619ecd69948e -#: ../../source/training/curriculum/curriculum.rst:320 -msgid "Solicit input from participants who have attended previous workshops." -msgstr "" - -# 3ec483d7add446efbca5aa491a00a3e9 -#: ../../source/training/curriculum/curriculum.rst:321 -msgid "Discuss with workshop trainers to make sure:" -msgstr "" - -# e5689755c01e4ee48e8363b45ac4b90f -#: ../../source/training/curriculum/curriculum.rst:323 -msgid "All necessary materials are included." -msgstr "" - -# a28cb7c790f141dfa6b390e1e4c9f72b -#: ../../source/training/curriculum/curriculum.rst:324 -msgid "" -"Depth of the material is in accordance with the competencies to be mastered." -msgstr "" - -# 7fae5eb84765411f86c535bcde82b713 -#: ../../source/training/curriculum/curriculum.rst:325 -msgid "Materials are organised systematically." -msgstr "" - -# 6d718d4b743246288da5b3b5feba41bd -#: ../../source/training/curriculum/curriculum.rst:329 -msgid "E. Curriculum Scheme" -msgstr "" - -# e1a71c8f85414038b425c75ce28ccc8a -#: ../../source/training/curriculum/curriculum.rst:331 -#: ../../source/training/curriculum/curriculum.rst:897 -msgid "**Data Collection Using OSM Beginner Level**" -msgstr "" - -# 4f308ed65312423aa9f7dd99f2d58eee -# 1ed6ee00aea6466a8af6b5541b7631e3 -#: ../../source/training/curriculum/curriculum.rst:333 -#: ../../source/training/curriculum/curriculum.rst:899 -msgid "**Standard Competency:** Collecting Spatial Data with OSM" -msgstr "" - -# 4d6a2134ba7a4d47ba189fd893096eaa -# 5a0d5122b29747cba3c5f92c6abbe6bb -# 0f2a7e4a775e442f82ea434aa5aed251 -# 155d4ce7299b40d69e06e0427335d519 -# 8c7f53cbac374088b987f39eaa7fefb2 -# 40db65ee83894f8a82d85cdfcbf22bc5 -# 40039cddf06f4f408a374cede37ecf86 -# c703f7d48f424c3b964ab5feb7b4d2a2 -# 81481f6fa1cc4fa5bb2c4754341c0905 -# 82585cb7d9e7402b959d8bf03e7df237 -#: ../../source/training/curriculum/curriculum.rst:337 -#: ../../source/training/curriculum/curriculum.rst:432 -#: ../../source/training/curriculum/curriculum.rst:549 -#: ../../source/training/curriculum/curriculum.rst:615 -#: ../../source/training/curriculum/curriculum.rst:677 -#: ../../source/training/curriculum/curriculum.rst:903 -#: ../../source/training/curriculum/curriculum.rst:1020 -#: ../../source/training/curriculum/curriculum.rst:1165 -#: ../../source/training/curriculum/curriculum.rst:1249 -#: ../../source/training/curriculum/curriculum.rst:1321 -msgid "Basic competency" -msgstr "" - -# fcac8992a1f241fe83cafc9de09957fa -# 58476340efc446a4bf2af478b6731cb7 -# 1f7531e8e33743a2ba8591ca035c5c99 -# 378d628167e24ffd802743c8706d325d -# 2eebea2e5b6e41e4a7ed0a04948fd71e -# d9e577cf5c264a80b6d2b322f6588a28 -# d79285d5e3b4417e971fb2eb0283280a -# 0a99050d76d8459181e229080c9632ec -# 41144a5a214c455594818489ec4c8197 -# 45ca96593e2f48958bba295a4711f5c7 -#: ../../source/training/curriculum/curriculum.rst:337 -#: ../../source/training/curriculum/curriculum.rst:432 -#: ../../source/training/curriculum/curriculum.rst:549 -#: ../../source/training/curriculum/curriculum.rst:615 -#: ../../source/training/curriculum/curriculum.rst:677 -#: ../../source/training/curriculum/curriculum.rst:903 -#: ../../source/training/curriculum/curriculum.rst:1020 -#: ../../source/training/curriculum/curriculum.rst:1165 -#: ../../source/training/curriculum/curriculum.rst:1249 -#: ../../source/training/curriculum/curriculum.rst:1321 -msgid "Indicator" -msgstr "" - -# 3145734418b745b0aa686214510438b7 -# 7801ac80e9ab40e68a0ed4ad78c53fbc -# 599b3ac86f0242e18ffdb9c039e87047 -# 97db8358e2694d7cbd148fd1b15e5abf -# 356a04f21f844009ac6032be4b051213 -# 72eb5a3ae34b4a1b989da5f0576bbf44 -# b2e1a8d0054042a58325d1864ae5947b -# 5ce9e84c75c14c8b845a9ea8660a4be1 -# 7b68272c251e48b9ae8174137795315f -# bfdb56b5faeb40c4809a220f421beb59 -#: ../../source/training/curriculum/curriculum.rst:337 -#: ../../source/training/curriculum/curriculum.rst:432 -#: ../../source/training/curriculum/curriculum.rst:549 -#: ../../source/training/curriculum/curriculum.rst:615 -#: ../../source/training/curriculum/curriculum.rst:677 -#: ../../source/training/curriculum/curriculum.rst:903 -#: ../../source/training/curriculum/curriculum.rst:1020 -#: ../../source/training/curriculum/curriculum.rst:1165 -#: ../../source/training/curriculum/curriculum.rst:1249 -#: ../../source/training/curriculum/curriculum.rst:1321 -msgid "Core material" -msgstr "" - -# 91ddd2a2b7c44b3ea8315d6187eaf617 -# a6914f6e80d64d59b334b2804d3c5cac -#: ../../source/training/curriculum/curriculum.rst:340 -#: ../../source/training/curriculum/curriculum.rst:908 -msgid "Understand the concept of OpenStreetMap" -msgstr "" - -# 7b4f739d82cc45beb99156316419775f -# 087692018eab4b65a423f14e7a2e8207 -#: ../../source/training/curriculum/curriculum.rst:341 -#: ../../source/training/curriculum/curriculum.rst:909 -msgid "Understand the definition and objectives of data collection" -msgstr "" - -# ee1c87d48df6487284eed4dd8c4c7c00 -# 01cfa43e8b814f0ebaeeafa9c9d74c7c -#: ../../source/training/curriculum/curriculum.rst:342 -#: ../../source/training/curriculum/curriculum.rst:910 -msgid "Understand the composition of a map" -msgstr "" - -# 50a1ad8545474b6189d4bdf6d093f8fa -# 1eeb1ee760984932a14025481ac199c0 -#: ../../source/training/curriculum/curriculum.rst:343 -#: ../../source/training/curriculum/curriculum.rst:911 -msgid "Make a hand-drawn sketch of an area" -msgstr "" - -# a107ee26bfa14522973e53be4c357a6c -# f813de7b4abb4b1ab253da754eb01214 -#: ../../source/training/curriculum/curriculum.rst:339 -#: ../../source/training/curriculum/curriculum.rst:907 -msgid "**The OpenStreetMap Website**" -msgstr "" - -# f750095634104b718c8c27e1be5bc66c -# 047cb467840e404eba5c8e3894b0ebeb -#: ../../source/training/curriculum/curriculum.rst:341 -#: ../../source/training/curriculum/curriculum.rst:909 -msgid "Concept of OpenStreetMap" -msgstr "" - -# d42c457fb8e34d1e8ce8d966c29d7c67 -# 0ed0c986aa1a49bb90accad732aa76da -#: ../../source/training/curriculum/curriculum.rst:342 -#: ../../source/training/curriculum/curriculum.rst:910 -msgid "Definition and objectives of data collection" -msgstr "" - -# 021cb7a32e634e69bfa4ee833a3061c2 -# 45403a7d4b784a43b9e2c79522f34add -#: ../../source/training/curriculum/curriculum.rst:343 -#: ../../source/training/curriculum/curriculum.rst:911 -msgid "Components of a map" -msgstr "" - -# 22815c0892df44f0a943939dc096ef75 -# 1f5c174781d3438ea9e42d5427b6e168 -#: ../../source/training/curriculum/curriculum.rst:344 -#: ../../source/training/curriculum/curriculum.rst:912 -msgid "Hand-drawn sketch of an area" -msgstr "" - -# 4583e0a23c204faa9cc994bdcbac946e -# 2197a7b7a52f4b589e20a1dde217ba01 -#: ../../source/training/curriculum/curriculum.rst:347 -#: ../../source/training/curriculum/curriculum.rst:917 -msgid "Visit OSM website" -msgstr "" - -# 71110957675b49c5bf080a5dbfea8584 -#: ../../source/training/curriculum/curriculum.rst:348 -msgid "Navigate map on OSM website" -msgstr "" - -# 62225ead60d74a92a227c94320850276 -# 07c71933eb1f4b438c019f1a44c4e2e7 -#: ../../source/training/curriculum/curriculum.rst:349 -#: ../../source/training/curriculum/curriculum.rst:919 -msgid "Save an image from OSM" -msgstr "" - -# d012ca09957842af8af7d27877f8a4c3 -# f62293fb2985477a88779c24cba8ed6b -#: ../../source/training/curriculum/curriculum.rst:350 -#: ../../source/training/curriculum/curriculum.rst:920 -msgid "Register an OSM account" -msgstr "" - -# ed5d22e98bda46798ed54dca82e5dc72 -# 60bbf3849f2b4f4db9427d38bc17f30e -#: ../../source/training/curriculum/curriculum.rst:351 -#: ../../source/training/curriculum/curriculum.rst:921 -msgid "Edit the OSM map" -msgstr "" - -# 9c55affb43c04f29915331dfccf327bb -# 6dd12a38a73a4eb4aa60c2590241fc6d -#: ../../source/training/curriculum/curriculum.rst:352 -#: ../../source/training/curriculum/curriculum.rst:922 -msgid "Save edits" -msgstr "" - -# 50632ea9183c411f93bd3ef1691f4f1b -# 022c2021192f4c21bc8a9cd011017621 -#: ../../source/training/curriculum/curriculum.rst:346 -#: ../../source/training/curriculum/curriculum.rst:916 -msgid "**Working with OSM**" -msgstr "" - -# a3051aa0a5504e0ca77bf54c67120634 -# 23691189c1d540d78d47d6de6e08bc10 -#: ../../source/training/curriculum/curriculum.rst:348 -#: ../../source/training/curriculum/curriculum.rst:918 -msgid "OSM website" -msgstr "" - -# 4687d50e0a344f778c795ce14d7ffa38 -# 2323aa85d7a44ca6b31b9b8e4b94ce9f -#: ../../source/training/curriculum/curriculum.rst:349 -#: ../../source/training/curriculum/curriculum.rst:919 -msgid "Navigating the OSM map" -msgstr "" - -# b960bf6cf38e41618fa2ba0d25971ee1 -# 307b0923ec234333a9073dac01099d99 -#: ../../source/training/curriculum/curriculum.rst:350 -#: ../../source/training/curriculum/curriculum.rst:920 -msgid "Saving images from OSM" -msgstr "" - -# ff4682897db3409489061172b32e0557 -# d92eb84cf5f2485ea8a754bf1608cbf7 -#: ../../source/training/curriculum/curriculum.rst:351 -#: ../../source/training/curriculum/curriculum.rst:921 -msgid "Creating an OSM account" -msgstr "" - -# b14b7b6197434053bbc2309db2f56f33 -# 98d7594dc7e74fcfa983db71ea63195d -#: ../../source/training/curriculum/curriculum.rst:352 -#: ../../source/training/curriculum/curriculum.rst:922 -msgid "Editing the OSM map" -msgstr "" - -# 61b7e1ff01344cf58899ecc542a63be2 -# 2018c7d0f5304b4cb2ada285ec58bfa1 -# 13fcf9947bc346b781403f72840f2251 -# 32472045eddb4c218c142e9f6b9640a6 -#: ../../source/training/curriculum/curriculum.rst:355 -#: ../../source/training/curriculum/curriculum.rst:927 -msgid "Download JOSM" -msgstr "" - -# adeb2acee96648f0a3cd2b7f4b47dd2a -# f8cd13bee0c34c11a5aab486a016888e -#: ../../source/training/curriculum/curriculum.rst:356 -#: ../../source/training/curriculum/curriculum.rst:928 -msgid "Install JOSM" -msgstr "" - -# dba5c23d5c9442bea82b627aa9a0198d -# 87274585ee51431b8601a5cee1c3f64b -#: ../../source/training/curriculum/curriculum.rst:357 -#: ../../source/training/curriculum/curriculum.rst:929 -msgid "Set JOSM preferences" -msgstr "" - -# f2f68642e5154c659c923ba264721812 -# 1cbe1b29f5f94e39899c0998b73398fc -#: ../../source/training/curriculum/curriculum.rst:358 -#: ../../source/training/curriculum/curriculum.rst:930 -msgid "Use basic tools" -msgstr "" - -# 630d51345f51475ab77479c67651076e -# 820e05f656dd406b925d30bf3f06227f -#: ../../source/training/curriculum/curriculum.rst:359 -#: ../../source/training/curriculum/curriculum.rst:931 -msgid "Draw nodes and ways in JOSM" -msgstr "" - -# f6b6235ac8f348c59587e31f1cacc589 -# 03dd00f3138a47129e7e79833fd0ab5d -# cbfbb7be6a6d4dfeba60975e39adcaac -#: ../../source/training/curriculum/curriculum.rst:360 -#: ../../source/training/curriculum/curriculum.rst:932 -msgid "Change objects" -msgstr "" - -# a57e912b4fe244afb2d211bf361bcb3c -# e37302b16ef34e16b0a70804657e381f -#: ../../source/training/curriculum/curriculum.rst:361 -#: ../../source/training/curriculum/curriculum.rst:933 -msgid "Add tags to objects using presets menu" -msgstr "" - -# 32f535ece9a04de38ef1f56d756c546c -# 6ae1b75035ec41a58c86cebdffdfe76b -#: ../../source/training/curriculum/curriculum.rst:354 -#: ../../source/training/curriculum/curriculum.rst:926 -msgid "**Working with JOSM**" -msgstr "" - -# d00f98a4c5cb49d682dec67a5a0e8764 -# 96e4d73473a74238b3deff34510b64af -#: ../../source/training/curriculum/curriculum.rst:356 -#: ../../source/training/curriculum/curriculum.rst:928 -msgid "Downloading JOSM" -msgstr "" - -# 22a9ac12271842b4b3ad384b03e36d54 -# 75a7287b94d44377b43b8367231d4aa5 -#: ../../source/training/curriculum/curriculum.rst:357 -#: ../../source/training/curriculum/curriculum.rst:929 -msgid "Installing JOSM" -msgstr "" - -# 5d86abb8c9d4433489e8e2342160480b -# 8c04cb36ae694f78b92e0a1bb9f7ae8f -#: ../../source/training/curriculum/curriculum.rst:358 -#: ../../source/training/curriculum/curriculum.rst:930 -msgid "Setting preferences in JOSM" -msgstr "" - -# e3f53a4bbec44ab1b00a7dbd204fbc8f -# 4bc9eff2bac74ff893f913d5affcb199 -#: ../../source/training/curriculum/curriculum.rst:360 -#: ../../source/training/curriculum/curriculum.rst:932 -msgid "Bing imagery" -msgstr "" - -# 8ed5b5ab12d948b6ac6adc8a51a6bd5d -# 6936e8a6e75245bfa55ea0123ff9eda8 -#: ../../source/training/curriculum/curriculum.rst:361 -#: ../../source/training/curriculum/curriculum.rst:933 -msgid "Presets" -msgstr "" - -# 0da4853ec19645c4bf2bc64dd9c67979 -# 7f90dafc48294bf3a746adb3fe58991f -# abcb42ea402542d28d71208112919896 -# 05ea8015c88b47808385c7eedea51d20 -#: ../../source/training/curriculum/curriculum.rst:362 -#: ../../source/training/curriculum/curriculum.rst:556 -#: ../../source/training/curriculum/curriculum.rst:934 -#: ../../source/training/curriculum/curriculum.rst:1174 -msgid "Plugins" -msgstr "" - -# 84c6645c5aec42198588e2b9d7b88b7f -# f9dea62439df4a569ea13db5d489f6f3 -#: ../../source/training/curriculum/curriculum.rst:363 -#: ../../source/training/curriculum/curriculum.rst:935 -msgid "Language settings" -msgstr "" - -# 6e0a3bd8108945c4b5f93ea891a64727 -# d585a19f39ff4cb187d1e000f2f2650f -#: ../../source/training/curriculum/curriculum.rst:365 -#: ../../source/training/curriculum/curriculum.rst:937 -msgid "Drawing maps using JOSM" -msgstr "" - -# 26654d9b58304988932742c805c5cadb -# 2dab82d75eac4653b0fb8801bd9ca8cd -#: ../../source/training/curriculum/curriculum.rst:367 -#: ../../source/training/curriculum/curriculum.rst:939 -msgid "Basic operation" -msgstr "" - -# 0f40a52316874caa94e32e2594cfe116 -# f33e14012bb74a20a38bd7736adf13a6 -#: ../../source/training/curriculum/curriculum.rst:368 -#: ../../source/training/curriculum/curriculum.rst:940 -msgid "Nodes, ways, and shapes" -msgstr "" - -# 9b5a4350b7f04e0396c07ea70cd92db5 -# d14da2fd92c24efa8627301efda9a56b -#: ../../source/training/curriculum/curriculum.rst:369 -#: ../../source/training/curriculum/curriculum.rst:941 -msgid "Changing objects" -msgstr "" - -# 1081c5b91e7e486985600ebf50549f34 -# 4d576a024f5345d9aa429ce058aa6c27 -#: ../../source/training/curriculum/curriculum.rst:370 -#: ../../source/training/curriculum/curriculum.rst:942 -msgid "Adding presets" -msgstr "" - -# 211c9e8d1a194cf8b00e5a022bb371c3 -# 4e2765297b694c35acbec5fec4ae4a2d -#: ../../source/training/curriculum/curriculum.rst:373 -#: ../../source/training/curriculum/curriculum.rst:947 -msgid "Understand GPS and the types of GPS" -msgstr "" - -# ed94ba8928c34ff1b28c4e1342c90b47 -# 1f7dec343c514fa2a817fc45f77849a5 -# ecd55c4bba864a029cbaa6b969315cfa -# d8de7aa91e524ae08e28a9c788cafbe1 -#: ../../source/training/curriculum/curriculum.rst:374 -#: ../../source/training/curriculum/curriculum.rst:948 -msgid "Turn on GPS" -msgstr "" - -# 52430844d61e4bc9a30c06fe5653527f -# 0d56486c17014e51b8b894d074f65b62 -#: ../../source/training/curriculum/curriculum.rst:375 -#: ../../source/training/curriculum/curriculum.rst:949 -msgid "Set up GPS" -msgstr "" - -# 5b2b665ff7b84fcba0fe826dcc5119b0 -# 05f121d48c4846c7be74febdef064618 -#: ../../source/training/curriculum/curriculum.rst:376 -#: ../../source/training/curriculum/curriculum.rst:950 -msgid "Understand factors that affect GPS accuracy" -msgstr "" - -# fb874e3f721044c9aa274226d72ef5d9 -# fc0a95b4109a4dab97637302953b6c84 -#: ../../source/training/curriculum/curriculum.rst:377 -#: ../../source/training/curriculum/curriculum.rst:951 -msgid "Understand tracks and waypoints" -msgstr "" - -# 7cb97594b76042418dee4cabd0cdb156 -# 13cf194390d2486482c0a30f269cdb9c -#: ../../source/training/curriculum/curriculum.rst:378 -#: ../../source/training/curriculum/curriculum.rst:952 -msgid "Collect data using GPS" -msgstr "" - -# 25e8bd8c9b8b4edebfb209ff296942dc -# f1d46a836b454fd8a2c615fa4de18cf2 -#: ../../source/training/curriculum/curriculum.rst:379 -#: ../../source/training/curriculum/curriculum.rst:953 -msgid "Copy GPS data (tracks and waypoints) to computer" -msgstr "" - -# 4ada26bff6dd4eecaa2172e163352bbb -# f3fa299efe794e25ab3837f8b5fa06f3 -#: ../../source/training/curriculum/curriculum.rst:380 -#: ../../source/training/curriculum/curriculum.rst:954 -msgid "Open waypoints and tracks in JOSM" -msgstr "" - -# 3ced463b273d4d2286b8dcd8e1465744 -#: ../../source/training/curriculum/curriculum.rst:381 -msgid "Upload GPS tracks using JOSM" -msgstr "" - -# c42dde4fe5cf451c83c6ba00d17f1f41 -# 0ad729ed3cee484f8e252f529d70eaa6 -#: ../../source/training/curriculum/curriculum.rst:382 -#: ../../source/training/curriculum/curriculum.rst:956 -msgid "Edit OSM based on GPS data in JOSM" -msgstr "" - -# f3625584d31348d4aa3c6c44526d56c8 -# 8313e566df384471b1c1bb14a93d1302 -#: ../../source/training/curriculum/curriculum.rst:372 -#: ../../source/training/curriculum/curriculum.rst:946 -msgid "**Using GPS**" -msgstr "" - -# 75a7ee51e5c6489b814a43cf5ea92ddc -# ad659c1ee03a4780ade985d4aa636beb -#: ../../source/training/curriculum/curriculum.rst:374 -#: ../../source/training/curriculum/curriculum.rst:948 -msgid "What is GPS" -msgstr "" - -# 64988ff75fb54cfb8e400b15705ce3f7 -# 16e0b322428440299cd652bcf6f2a450 -#: ../../source/training/curriculum/curriculum.rst:375 -#: ../../source/training/curriculum/curriculum.rst:949 -msgid "Turning on GPS" -msgstr "" - -# 7cf14611371047838a4b36cb168aec69 -# 15646caaac28481fb7fa12a37ccb3f2e -#: ../../source/training/curriculum/curriculum.rst:376 -#: ../../source/training/curriculum/curriculum.rst:950 -msgid "Navigating the GPS" -msgstr "" - -# f73db4c8a35d44cf8f375c9e38f155fc -# 3ee707642f1e4e869f50313299bb55bb -#: ../../source/training/curriculum/curriculum.rst:377 -#: ../../source/training/curriculum/curriculum.rst:951 -msgid "Tracks and waypoints" -msgstr "" - -# 7482c47e587844dab1e12bbb50bc9e51 -# 28c20b0b92fd4775be62230e7551d389 -#: ../../source/training/curriculum/curriculum.rst:378 -#: ../../source/training/curriculum/curriculum.rst:952 -msgid "Saving location (waypoint)" -msgstr "" - -# fbe1bef441124bffb46ddf5c231cfbcd -# 5912caac5d8249bb918bba577af489b5 -#: ../../source/training/curriculum/curriculum.rst:379 -#: ../../source/training/curriculum/curriculum.rst:953 -msgid "Turning on the Track Log" -msgstr "" - -# e3884d4186bb454c8c453051e389b7dd -# cad5d17a3fa346d688ea9d5226b76c83 -#: ../../source/training/curriculum/curriculum.rst:380 -#: ../../source/training/curriculum/curriculum.rst:954 -msgid "GPS settings" -msgstr "" - -# 6080a924347541bfbcddc314d67873ab -# 41ac78bd149442b59a0e718742dbf91d -#: ../../source/training/curriculum/curriculum.rst:381 -#: ../../source/training/curriculum/curriculum.rst:955 -msgid "How to copy waypoints and tracks to computer" -msgstr "" - -# d5a0f79711334a9eaa264a2b660696f8 -# cf63bc4c448041bab659aca0f5d78309 -#: ../../source/training/curriculum/curriculum.rst:383 -#: ../../source/training/curriculum/curriculum.rst:957 -msgid "Connecting GPS to computer" -msgstr "" - -# 6c7471632a90407a95a49a12c0eea7ce -# 9ea03d58271041fa91d4354d60a21389 -#: ../../source/training/curriculum/curriculum.rst:384 -#: ../../source/training/curriculum/curriculum.rst:958 -msgid "Installing GPS driver" -msgstr "" - -# 2df92862f82a46b4b27670ea5d6bf6ad -# 3550f8aa0a9d464fbde8220dc69251cf -#: ../../source/training/curriculum/curriculum.rst:385 -#: ../../source/training/curriculum/curriculum.rst:959 -msgid "GPSBabel program setup" -msgstr "" - -# bf4dd9abf9ad4c0eac975d52d990625b -# 52d7b5fe53c84966be68e0de318788b5 -#: ../../source/training/curriculum/curriculum.rst:386 -#: ../../source/training/curriculum/curriculum.rst:960 -msgid "GPSBabel installation" -msgstr "" - -# ac7ad176b2554dc3b0034085551498a3 -# 424d1332735547ed862692199bd3f49f -#: ../../source/training/curriculum/curriculum.rst:387 -#: ../../source/training/curriculum/curriculum.rst:961 -msgid "Copying tracks and waypoints" -msgstr "" - -# 24013d0ef4934f36a2a96f20487b3042 -# 2b1ea4d4cfa147cd940235eb9487c2f0 -#: ../../source/training/curriculum/curriculum.rst:388 -#: ../../source/training/curriculum/curriculum.rst:962 -msgid "GPS data in JOSM" -msgstr "" - -# 2169fc0af8ec441c858ed55627953f7a -# b35495c7dba2411a836eea9afea16fc7 -#: ../../source/training/curriculum/curriculum.rst:390 -#: ../../source/training/curriculum/curriculum.rst:964 -msgid "Uploading GPS tracks in JOSM" -msgstr "" - -# 7edf2d3868d64e0eacdf3655b140779a -# 6cd4a45c188144e8a9ec6ddb70f97f83 -#: ../../source/training/curriculum/curriculum.rst:391 -#: ../../source/training/curriculum/curriculum.rst:965 -msgid "Editing GPS data using JOSM" -msgstr "" - -# 1595149b26aa4ce4a306679fbefec77b -# 9582ed6a7d204acb84b38a1aef780fda -#: ../../source/training/curriculum/curriculum.rst:394 -#: ../../source/training/curriculum/curriculum.rst:970 -msgid "Understand how to use Field Papers" -msgstr "" - -# 7e684805ca6c4b38bd85b1e048089ac3 -# 85c045447ac14bbfb3b057be3e78bccd -#: ../../source/training/curriculum/curriculum.rst:395 -#: ../../source/training/curriculum/curriculum.rst:971 -msgid "Make and print Field Papers" -msgstr "" - -# bc5eff07faa945a7af1cea1351eb1451 -# 94f5c916983f4649a01741301f74d832 -#: ../../source/training/curriculum/curriculum.rst:396 -#: ../../source/training/curriculum/curriculum.rst:972 -msgid "Add information to Field Papers" -msgstr "" - -# f7f7c06174274000ba756feab740a5f8 -# cdd1c093fc7943f5995e14226a8b3f72 -#: ../../source/training/curriculum/curriculum.rst:397 -#: ../../source/training/curriculum/curriculum.rst:973 -msgid "Scan and upload Field Papers to fieldpapers.org" -msgstr "" - -# 8e4e0ae0c7e04df18a9e31992277f221 -# 9df2b5344c6a4a5a84a1a7d400b6280e -#: ../../source/training/curriculum/curriculum.rst:398 -#: ../../source/training/curriculum/curriculum.rst:974 -msgid "Open Field Papers in JOSM" -msgstr "" - -# 3ba6b9ce9f154629824597199c6c3ad2 -# 177678308eee4564871e074307b262d9 -#: ../../source/training/curriculum/curriculum.rst:393 -#: ../../source/training/curriculum/curriculum.rst:969 -msgid "**Field Papers**" -msgstr "" - -# 3196ecf7327f4ae0acecf179080dac39 -# d5136e77a07d4b33ae7a8305d169920f -#: ../../source/training/curriculum/curriculum.rst:395 -#: ../../source/training/curriculum/curriculum.rst:971 -msgid "What is Field Papers" -msgstr "" - -# 98d14fe49f8f43b1ad67623986086a1d -# e1dab9dcb083427682cb14cf58a9bfdc -#: ../../source/training/curriculum/curriculum.rst:396 -#: ../../source/training/curriculum/curriculum.rst:972 -msgid "Using Field Papers" -msgstr "" - -# ee9ce0ccddf9478a9b3ed79dbcb5cb43 -# 1bfecda7c4cc4dec9f4ebec3df76b32d -#: ../../source/training/curriculum/curriculum.rst:397 -#: ../../source/training/curriculum/curriculum.rst:973 -msgid "Making and printing Field Papers" -msgstr "" - -# 0a6e86edccd14b208ccdfb45607cb69f -# 666f0df5e0c74d16ad7bc71614ea8cbc -#: ../../source/training/curriculum/curriculum.rst:398 -#: ../../source/training/curriculum/curriculum.rst:974 -msgid "Mapping with Field Papers" -msgstr "" - -# 26c21e8797504e9c908b3b69550c3205 -# 17b30951e48e4bf89867b66ef987f0f6 -#: ../../source/training/curriculum/curriculum.rst:399 -#: ../../source/training/curriculum/curriculum.rst:975 -msgid "Scanning and uploading" -msgstr "" - -# 07a2704245cd4b1eaafcab6875c1e6a8 -# e89b856718c94ffd9dc11d35151b5d59 -#: ../../source/training/curriculum/curriculum.rst:400 -#: ../../source/training/curriculum/curriculum.rst:976 -msgid "Field Papers in JOSM" -msgstr "" - -# 3f830fde43364680811ccdeb5727a087 -# 84f7e0ea334941acbb776fed2651f429 -#: ../../source/training/curriculum/curriculum.rst:403 -#: ../../source/training/curriculum/curriculum.rst:982 -msgid "Download OSM data in the area you want to edit" -msgstr "" - -# f72ba0c913aa4370a74d608e061191c7 -# e34d95874dcd4a16b7b518a03a693d35 -#: ../../source/training/curriculum/curriculum.rst:404 -#: ../../source/training/curriculum/curriculum.rst:983 -msgid "Select layers" -msgstr "" - -# ef4c45bf06fc4e6291dbfc8e11a7d6ce -# 64a965b2a7904c69a3f970cd5006aae7 -#: ../../source/training/curriculum/curriculum.rst:405 -#: ../../source/training/curriculum/curriculum.rst:984 -msgid "Edit OSM data" -msgstr "" - -# b364cc46078745039a65aa13a65ad2b7 -# 6f3da830863d462f8cdb8f241be6a528 -#: ../../source/training/curriculum/curriculum.rst:406 -#: ../../source/training/curriculum/curriculum.rst:985 -msgid "Edit and understand tags" -msgstr "" - -# 3b983240c2d74cb88e2397717600935c -# a8681a839646431c886bc2ef5fb4a48e -#: ../../source/training/curriculum/curriculum.rst:407 -#: ../../source/training/curriculum/curriculum.rst:986 -msgid "Upload OSM data" -msgstr "" - -# 61419e7c54f5470ab0680d04409ed34b -# 630af23437714ff3a4c27f7a22ad8658 -# b532c1b2508740289f7c1a2823029024 -# c3e2cd79447b48838d9b17cd70498de8 -#: ../../source/training/curriculum/curriculum.rst:408 -#: ../../source/training/curriculum/curriculum.rst:987 -msgid "Save OSM files" -msgstr "" - -# 7f42948151e84717bcb59eb65c04093f -# 5910e5af0b304566b21d8b11cee132b6 -#: ../../source/training/curriculum/curriculum.rst:402 -#: ../../source/training/curriculum/curriculum.rst:981 -msgid "**Editing OpenStreetMap with JOSM**" -msgstr "" - -# 6a2d8b2775b9443ca6ad0626a883c35f -# 8687696b57ef49979d6cc05810de524d -#: ../../source/training/curriculum/curriculum.rst:404 -#: ../../source/training/curriculum/curriculum.rst:983 -msgid "Exploring JOSM" -msgstr "" - -# a5d06e00045f456e92dce85d6e994d36 -# 3227c4a08e0845d58236c8ce70603cef -#: ../../source/training/curriculum/curriculum.rst:405 -#: ../../source/training/curriculum/curriculum.rst:984 -msgid "JOSM layers" -msgstr "" - -# bcffa7ed67234959a20bc819c3be65a1 -# 0f9420447b0247faa248b056427496a9 -#: ../../source/training/curriculum/curriculum.rst:406 -#: ../../source/training/curriculum/curriculum.rst:985 -msgid "Editing OSM data" -msgstr "" - -# b1564c22c05b42bd84ffd04810481d19 -# d838b43c1718450f9567dceb68739cff -#: ../../source/training/curriculum/curriculum.rst:407 -#: ../../source/training/curriculum/curriculum.rst:986 -msgid "Tags" -msgstr "" - -# a8aba1e3b6c54100bbb9015f9eb9aafd -# 38a5c3bbd2f7453c954ec8976a7c5188 -#: ../../source/training/curriculum/curriculum.rst:408 -#: ../../source/training/curriculum/curriculum.rst:987 -msgid "Uploading changes" -msgstr "" - -# f35c11b70c2849238c2d4d9d68e7fb17 -# ea30735e9ad14ac085e25b08dd45bfea -#: ../../source/training/curriculum/curriculum.rst:409 -#: ../../source/training/curriculum/curriculum.rst:988 -msgid "Saving OSM files" -msgstr "" - -# 45d51eac93414f07a30bafecf4a6f6ee -# b0b490b93c1e488992f36fd1d82db8e1 -#: ../../source/training/curriculum/curriculum.rst:412 -#: ../../source/training/curriculum/curriculum.rst:997 -msgid "Understand the definition of imagery offset" -msgstr "" - -# 79067bfd0274445f8b14eb2a0a7f5d7e -# 47a7d0a2c41d41e5888987532d3f2b3d -#: ../../source/training/curriculum/curriculum.rst:413 -#: ../../source/training/curriculum/curriculum.rst:998 -msgid "Understand components of imagery (resolution and georeference)" -msgstr "" - -# dbe6ad310396409a99ba909d8865cd61 -# 94b9b3cf2d814afc82001f6fcbf1e437 -#: ../../source/training/curriculum/curriculum.rst:414 -#: ../../source/training/curriculum/curriculum.rst:999 -msgid "Explain how imagery offsets occur" -msgstr "" - -# 2db308fa161c4a599f761f04606402ab -# 2e14b8a3fa4c40c192a8d238aa84bff5 -#: ../../source/training/curriculum/curriculum.rst:415 -#: ../../source/training/curriculum/curriculum.rst:1000 -msgid "Fix imagery offset" -msgstr "" - -# 26d47a8b456b48b0a3cc649d6b53a033 -# eca792b95e7b4d95bb9222fa91410925 -#: ../../source/training/curriculum/curriculum.rst:411 -#: ../../source/training/curriculum/curriculum.rst:996 -msgid "**Imagery Offset**" -msgstr "" - -# 657ac7f4f6ca41659bfcff1b0ca2889f -# 2e958e0012a849ab8a14692f726a9f25 -#: ../../source/training/curriculum/curriculum.rst:413 -#: ../../source/training/curriculum/curriculum.rst:998 -msgid "Definition of imagery offset" -msgstr "" - -# 036c17d2906b49ac9dfb8ea3542221ed -# 172bc306d5834f08aad2ce7e8c2bdc2c -#: ../../source/training/curriculum/curriculum.rst:414 -#: ../../source/training/curriculum/curriculum.rst:999 -msgid "Imagery resolution and georeferencing" -msgstr "" - -# 8fd7b01700f048f39046fb8090a23780 -# 88ce884db2054b41bc8d6c04b672b986 -#: ../../source/training/curriculum/curriculum.rst:415 -#: ../../source/training/curriculum/curriculum.rst:1000 -msgid "Imagery offset" -msgstr "" - -# 559c78f81fcf44aeaf033cf067539a7f -# d8477cddf36f460fb2d3f4190e3bf641 -# 794227e9a11a4860a80506f357f8c756 -# 08531199689348a6ac6d5a2268a490ff -# 042646ba63d7447ab5106f8f9fece9c2 -# 58bc799ca3f24d3c9ba4c442f8c8d622 -#: ../../source/training/curriculum/curriculum.rst:416 -#: ../../source/training/curriculum/curriculum.rst:1001 -msgid "Fixing imagery offset" -msgstr "" - -# 7398f380e5e0429a9fd5f3bb3229e210 -#: ../../source/training/curriculum/curriculum.rst:419 -msgid "Download OpenStreetMap data from Geofabrik website" -msgstr "" - -# 18b33acecbfd40468eb1cce978f9f60d -# b8746f9220e9423793b6c17624352525 -#: ../../source/training/curriculum/curriculum.rst:420 -#: ../../source/training/curriculum/curriculum.rst:1007 -msgid "Download customised OpenStreetMap data using HOT Exports" -msgstr "" - -# d7d935574ec94638985e5c1e7348b350 -# 4b8c3160cc794e33b06684c7a6168485 -#: ../../source/training/curriculum/curriculum.rst:418 -#: ../../source/training/curriculum/curriculum.rst:1005 -msgid "**Getting OSM Data**" -msgstr "" - -# 901582467fff4732ba254c2cc4dc9b36 -# ba894bd59263471abf113dcaf2fef4c3 -#: ../../source/training/curriculum/curriculum.rst:420 -#: ../../source/training/curriculum/curriculum.rst:1007 -msgid "OpenStreetMap data from Geofabrik Website" -msgstr "" - -# ee80532725d846d599225640f4b754fd -# 8772bd8c92fc4ecfbf6bd6f25ae9c0f8 -#: ../../source/training/curriculum/curriculum.rst:421 -#: ../../source/training/curriculum/curriculum.rst:1008 -msgid "" -"OpenStreetMap data according to region and selecting attributes with HOT " -"export tool" -msgstr "" - -# 990237fd14964e0ba0e9eef463ad2b4d -#: ../../source/training/curriculum/curriculum.rst:426 -msgid "**Data Analysis using QGIS and** |project_name| **Beginner Level**" -msgstr "" - -# 1caa683b567a44588aee4ee12d4021f3 -# dd2fa00ceef24af4bb5179ce0d95bf4f -#: ../../source/training/curriculum/curriculum.rst:428 -#: ../../source/training/curriculum/curriculum.rst:1015 -msgid "" -"**Standard Competency:** Managing Spatial Data using QGIS and Analysing " -"Disaster Impact Scenarios with |project_name|" -msgstr "" - -# d25591bba0cc447bbb6d7fee88e53a42 -# 0b922d42d13b45bfb9a44023bd36d9c7 -#: ../../source/training/curriculum/curriculum.rst:435 -#: ../../source/training/curriculum/curriculum.rst:1025 -msgid "Distinguish between data and information" -msgstr "" - -# 9c54a069f4124f62991f74a241729684 -#: ../../source/training/curriculum/curriculum.rst:436 -msgid "Understand the concept of GIS" -msgstr "" - -# c5952e348d694b8d99a34ea6e20d16d9 -# e1f0e7956dd843f6b41d5bd0f8c4639a -#: ../../source/training/curriculum/curriculum.rst:434 -#: ../../source/training/curriculum/curriculum.rst:1024 -msgid "**GIS for Developing Contingency Plan**" -msgstr "" - -# e476eabe241b4cbc9e30aac8c2282c93 -# 83ca2a80f3e64622974cc0dd6a48f74f -#: ../../source/training/curriculum/curriculum.rst:436 -#: ../../source/training/curriculum/curriculum.rst:1026 -msgid "The difference between data and information" -msgstr "" - -# 30e83a8645a84ba8a2ba14af63b97593 -#: ../../source/training/curriculum/curriculum.rst:437 -msgid "Terminology of Geographic Information System (GIS)" -msgstr "" - -# 3515780277fd41b7a5c2af84899ef789 -# aaa702ed9d154aa295b19aa29cc405ad -#: ../../source/training/curriculum/curriculum.rst:440 -#: ../../source/training/curriculum/curriculum.rst:1032 -msgid "" -"Understand the benefit of QGIS and InaSAFE for developing realistic scenario " -"for contingency planning" -msgstr "" - -# fc80145e9fcc422bab6a822619da4e46 -# bdd6857576f14c05978e5647bb6b3639 -#: ../../source/training/curriculum/curriculum.rst:441 -#: ../../source/training/curriculum/curriculum.rst:1033 -msgid "Understand the role of GIS for preparing contingency planning" -msgstr "" - -# a1f7623eb27849549016613c6eb3cdf5 -# 5fb5ecb92e154ed98ec93eb31bc31240 -#: ../../source/training/curriculum/curriculum.rst:442 -#: ../../source/training/curriculum/curriculum.rst:1034 -msgid "Understand the importance of data" -msgstr "" - -# cd404b27c4414132bde79b418dadb560 -# 36912ca7725f4f9a9f9eb7cdb6ead009 -#: ../../source/training/curriculum/curriculum.rst:443 -#: ../../source/training/curriculum/curriculum.rst:1035 -msgid "" -"Understand the benefits of QGIS/|project_name| in the development of " -"scenarios for contingency planning" -msgstr "" - -# a6887a0a36674fd8b81b0f27b2354179 -# 027999285c694366a07631e08bf2d8f2 -#: ../../source/training/curriculum/curriculum.rst:440 -#: ../../source/training/curriculum/curriculum.rst:1032 -msgid "**QGIS and InaSAFE in Contingency Planning**" -msgstr "" - -# 157f3dfc81e145f1afb497ef5e4c6c36 -# 2831ba0611d44f869a3298192e9556e1 -#: ../../source/training/curriculum/curriculum.rst:442 -msgid "GIS for Preparing contingency Planning" -msgstr "" - -# 6c472c8b30054ddf8a6e6da611ad4d71 -# 16fa51c220924d9fbd1c776a907542c6 -#: ../../source/training/curriculum/curriculum.rst:443 -#: ../../source/training/curriculum/curriculum.rst:1035 -msgid "The Importance of Data" -msgstr "" - -# b53e08812a3d4ca3aad7d1047752006e -#: ../../source/training/curriculum/curriculum.rst:444 -msgid "QGIS and |project_name|" -msgstr "" - -# cf615fa7660b403f97309fee10882d0b -# 1bd618e8fcaf4bc4ba861d3a808b6387 -#: ../../source/training/curriculum/curriculum.rst:447 -#: ../../source/training/curriculum/curriculum.rst:1041 -msgid "Download QGIS" -msgstr "" - -# 6fbbdcfc09d34be1aa69afe4e8eccc59 -# f2e1d5003eae4e3ab9885a9b81212a5f -#: ../../source/training/curriculum/curriculum.rst:448 -#: ../../source/training/curriculum/curriculum.rst:1042 -msgid "Install QGIS" -msgstr "" - -# 610671d7c7874c41b1307afa5214085b -# 25077a907ee74082831d39a7e85c1eec -#: ../../source/training/curriculum/curriculum.rst:449 -#: ../../source/training/curriculum/curriculum.rst:1043 -msgid "Open a previously created QGIS project" -msgstr "" - -# 21f194bd0ee54cfda310c79011e0b391 -# 14e335fb81924a7eb0cbc7b301cb61af -#: ../../source/training/curriculum/curriculum.rst:450 -#: ../../source/training/curriculum/curriculum.rst:1044 -msgid "Understand the layers panel" -msgstr "" - -# e0b68f6b625b48febac6c612a2e43eca -# 183b83d0b6fa474c9272b977b12f2e3e -#: ../../source/training/curriculum/curriculum.rst:451 -#: ../../source/training/curriculum/curriculum.rst:1045 -msgid "Access basic tools through the toolbar" -msgstr "" - -# a87e72275f324d7eb096ca549c4ccf86 -# 86f7e4993790431ca8fccc7ca2985db1 -#: ../../source/training/curriculum/curriculum.rst:452 -#: ../../source/training/curriculum/curriculum.rst:1046 -msgid "Clean up the toolbar" -msgstr "" - -# 2fa6133502a147c1a4d63bca0c9491c6 -# ee6a107f0d16473490a949b7a855a334 -#: ../../source/training/curriculum/curriculum.rst:453 -#: ../../source/training/curriculum/curriculum.rst:1047 -msgid "Show a map in the map window" -msgstr "" - -# 10766af7edc14bf7abf43c5b31aba087 -# 5c12f979341c49e1820afdc8d7b4326c -#: ../../source/training/curriculum/curriculum.rst:454 -#: ../../source/training/curriculum/curriculum.rst:1048 -msgid "Get information on an active map through the status bar" -msgstr "" - -# 7c0cee161b2544e2856329a3076db0fc -# 01b74fab8e414d08b8c92013c52db835 -#: ../../source/training/curriculum/curriculum.rst:446 -#: ../../source/training/curriculum/curriculum.rst:1040 -msgid "**The Basics of QGIS**" -msgstr "" - -# 2e726cb91c864e55ba8a28c8ead7425e -# 766ab9dd5aa049328fd474b085b0e3b8 -#: ../../source/training/curriculum/curriculum.rst:448 -#: ../../source/training/curriculum/curriculum.rst:1042 -msgid "Getting QGIS" -msgstr "" - -# d7ed9086adf94758b083021ce8a8057b -# f3afabc08cb04aceba08622816019c4b -# 4b90915bde72411f9719592233ded20a -# 255d911b389b45808706b8c060e585c1 -#: ../../source/training/curriculum/curriculum.rst:449 -#: ../../source/training/curriculum/curriculum.rst:1043 -msgid "Installing QGIS" -msgstr "" - -# e5764df311a040029cc010dc73d684f5 -#: ../../source/training/curriculum/curriculum.rst:450 -msgid "QGIS user interface layout" -msgstr "" - -# a0d21b46576541358434a802c9fff46b -# 7689c2e375394dbd886b41d0ecb7157d -#: ../../source/training/curriculum/curriculum.rst:451 -#: ../../source/training/curriculum/curriculum.rst:1045 -msgid "Adding vector layer" -msgstr "" - -# 3d08ab2f210c453e9805f8a6fa553fcf -# 23d75468385c43b5b4afe78f723d7126 -#: ../../source/training/curriculum/curriculum.rst:452 -#: ../../source/training/curriculum/curriculum.rst:1046 -msgid "QGIS basic tool" -msgstr "" - -# 4e06a6926e3d4b41993adb0608fca981 -# 77ab8f6874e94af5b10e5b81b22ff616 -#: ../../source/training/curriculum/curriculum.rst:453 -#: ../../source/training/curriculum/curriculum.rst:1047 -msgid "Panning maps" -msgstr "" - -# f7f7c2613756466b85ae09285bb2443d -# 7685891513f7405285df0fec840630f2 -#: ../../source/training/curriculum/curriculum.rst:457 -#: ../../source/training/curriculum/curriculum.rst:1053 -msgid "Understand the concept of plugins" -msgstr "" - -# 0934d990516b489ea2cef0a044a5848e -# d3360a122e49404cbc71a8f0d271004d -#: ../../source/training/curriculum/curriculum.rst:458 -#: ../../source/training/curriculum/curriculum.rst:1054 -msgid "Install QGIS plugins" -msgstr "" - -# 607f1e36d64f4bcc9485b227bc64fd05 -# 931add4d2ad6442fa60fc601238eb566 -#: ../../source/training/curriculum/curriculum.rst:459 -#: ../../source/training/curriculum/curriculum.rst:1055 -msgid "Add satellite imagery via OpenLayers" -msgstr "" - -# 3aa109f13e204710a93c188b2384674f -# cff84dc7e4374155838e353fa543113e -#: ../../source/training/curriculum/curriculum.rst:456 -#: ../../source/training/curriculum/curriculum.rst:1052 -msgid "**QGIS Plugins**" -msgstr "" - -# b9316a5fb68a4e87b664d4bcd5760491 -# 55284d69b9514ba2845dc682664c0fda -#: ../../source/training/curriculum/curriculum.rst:458 -#: ../../source/training/curriculum/curriculum.rst:1054 -msgid "Plugin setup" -msgstr "" - -# d586093452cf4952b4d422bf020c4a1f -# 3a40420eaab240b2a5c75c9dd5f12c8b -#: ../../source/training/curriculum/curriculum.rst:459 -#: ../../source/training/curriculum/curriculum.rst:1055 -msgid "Installing plugin" -msgstr "" - -# 5d8a53f4f08c4b2ea562cea63c5b00ea -# 6bd03629757c49648eb766217d37aabc -#: ../../source/training/curriculum/curriculum.rst:460 -#: ../../source/training/curriculum/curriculum.rst:1056 -msgid "OpenLayers plugin" -msgstr "" - -# e8983cca47a74dd8ae02e1b9eca1ff6e -# 58816c7f0cf54bbbab8ce04c86596c2b -#: ../../source/training/curriculum/curriculum.rst:464 -#: ../../source/training/curriculum/curriculum.rst:1062 -msgid "Understand Coordinate Reference Systems (CRS)" -msgstr "" - -# 755e952ad70b40308c68e3d4c3ea2307 -# 15393c2c7ae8468ab5b4d99c818385c6 -#: ../../source/training/curriculum/curriculum.rst:465 -#: ../../source/training/curriculum/curriculum.rst:1063 -msgid "Identify the CRS of a vector dataset" -msgstr "" - -# df23a7f726ce462999730d0b6e5f3a07 -# 85aa6ba69bed49d0a91c44b5a6726f0e -#: ../../source/training/curriculum/curriculum.rst:466 -#: ../../source/training/curriculum/curriculum.rst:1064 -msgid "Do 'on the fly' reprojection" -msgstr "" - -# b865a507938b4b86b94735b1686a4453 -# 62a5031831a24257923ebdbba4d02b41 -#: ../../source/training/curriculum/curriculum.rst:467 -#: ../../source/training/curriculum/curriculum.rst:1065 -msgid "Save dataset with a different CRS" -msgstr "" - -# 1c88ce7044094fea9b6fff252137edab -# 44d8d9badb2c46abab470a7148a51f6a -#: ../../source/training/curriculum/curriculum.rst:468 -#: ../../source/training/curriculum/curriculum.rst:1066 -msgid "Create a custom projection" -msgstr "" - -# 5edf0d43e55a49e69efd63bd931f6246 -# 5b2ca9b0c4a44d368ce376db6170e2d3 -#: ../../source/training/curriculum/curriculum.rst:463 -#: ../../source/training/curriculum/curriculum.rst:1061 -msgid "**Map Projection Basics**" -msgstr "" - -# 0a26abdaac4641b5a20d35b82dde4e0f -# 4a616659e5394697bcb7995ef50a17d6 -#: ../../source/training/curriculum/curriculum.rst:465 -#: ../../source/training/curriculum/curriculum.rst:1063 -msgid "Coordinate Reference Systems (CRS)" -msgstr "" - -# 966f42406634430785df0bd75c1789b3 -# b873c5de85c04a16ad905f090cba2d81 -#: ../../source/training/curriculum/curriculum.rst:466 -#: ../../source/training/curriculum/curriculum.rst:1064 -msgid "“On the fly” reprojection" -msgstr "" - -# d7bb1e11b05545f2b7936e33ab56823a -# 0508712f7327469b9746d0cb4d19af3f -#: ../../source/training/curriculum/curriculum.rst:467 -#: ../../source/training/curriculum/curriculum.rst:1065 -msgid "Dataset with different CRS" -msgstr "" - -# 4d9ec6dea2d742abbbd81fb3e27d3ed3 -#: ../../source/training/curriculum/curriculum.rst:468 -msgid "Defining a custom projection" -msgstr "" - -# 1cb135635d034e2c8b6b80f9b4e49701 -# 30cb6086c5f848bf85f9344e520626af -#: ../../source/training/curriculum/curriculum.rst:471 -#: ../../source/training/curriculum/curriculum.rst:1073 -msgid "Understand vector data" -msgstr "" - -# b47c2fde2026499b8a4557b9c9aaac6a -# ccf373c234d94d909bdf3b1702e4f3b4 -#: ../../source/training/curriculum/curriculum.rst:472 -#: ../../source/training/curriculum/curriculum.rst:1074 -msgid "Identify attributes of vector data" -msgstr "" - -# 70bab1677e2c441399646787d76448e8 -# a1180679d29740f397e16d6afa0c9675 -#: ../../source/training/curriculum/curriculum.rst:473 -#: ../../source/training/curriculum/curriculum.rst:1075 -msgid "Add vector layers" -msgstr "" - -# 07db8257698c44a89d6ee640358c57b3 -# 682185d667c24bc69155d9402e9ac432 -#: ../../source/training/curriculum/curriculum.rst:474 -#: ../../source/training/curriculum/curriculum.rst:1076 -msgid "Symbolise vector layers" -msgstr "" - -# 9b26b088bca243da8f0911be497e248f -# 2e64029681e84e20baa699cefabd9266 -#: ../../source/training/curriculum/curriculum.rst:470 -#: ../../source/training/curriculum/curriculum.rst:1072 -msgid "**Working with Vector Data**" -msgstr "" - -# 546823747069464794aab1e5efb5182b -# 5a14f5d06e5641d3ba7e43ab6b6d5ab3 -#: ../../source/training/curriculum/curriculum.rst:472 -#: ../../source/training/curriculum/curriculum.rst:1074 -msgid "Vector data" -msgstr "" - -# ef92748b56bf433fbe679f1e277765ad -# c77e93908a4446c9b770a7909013accf -# 4b78f3b969374ab1804275f77a3096a0 -# 6228a37aa7ee4c96a48de6157ddecce0 -#: ../../source/training/curriculum/curriculum.rst:473 -#: ../../source/training/curriculum/curriculum.rst:1075 -msgid "Data attribute" -msgstr "" - -# 3d401c318eae443aad5a77701e6d672c -# 89a6557d386d474d844b2835a6acff9f -# 2fb9b69219a5411cb9de50adbe7c6a8d -# 20150bf037e145e180e3e0b33defadf5 -#: ../../source/training/curriculum/curriculum.rst:474 -#: ../../source/training/curriculum/curriculum.rst:1076 -msgid "Add vector data" -msgstr "" - -# 42583fdea8c146b0845b198664a04f98 -# 1d1b886d16ea49be826533363fea73ac -#: ../../source/training/curriculum/curriculum.rst:475 -#: ../../source/training/curriculum/curriculum.rst:1077 -msgid "Symbology" -msgstr "" - -# 5e032da65d24457c8226585a1385fa7e -# 2262a88b3bf242399f948bfad741a764 -#: ../../source/training/curriculum/curriculum.rst:478 -#: ../../source/training/curriculum/curriculum.rst:1082 -msgid "" -"Explore attribute data of an object attributes and understand the uses of " -"different types of data" -msgstr "" - -# 86a9c742e4df41818e3af48128e6b2f5 -# 814b11f08c4f427f918e55db7796c25a -#: ../../source/training/curriculum/curriculum.rst:480 -#: ../../source/training/curriculum/curriculum.rst:1084 -msgid "Add labels to vector layers" -msgstr "" - -# 8f5701a8335e4ae49baf3597548127f4 -# 5be6118cb80140279017edb35244a684 -#: ../../source/training/curriculum/curriculum.rst:481 -#: ../../source/training/curriculum/curriculum.rst:1085 -msgid "Symbolise vector data using categories" -msgstr "" - -# d13e62b561ba43a1954ffb85d96f09e7 -# e3114d5fd08449d9a95f413769c1a95b -#: ../../source/training/curriculum/curriculum.rst:477 -#: ../../source/training/curriculum/curriculum.rst:1081 -msgid "**Labels and Classification**" -msgstr "" - -# 36e9c6b3ddfa4e14ad81554e4068a0b8 -# dedc91630c984af8b728268e61372102 -#: ../../source/training/curriculum/curriculum.rst:479 -#: ../../source/training/curriculum/curriculum.rst:1083 -msgid "Data attributes" -msgstr "" - -# a2d7b14d3e6d46ffbbd146a5d051ac75 -# d1d2177de39549ebac705c662ec2825e -# 64738c089216450ca568b58f5248e21f -# 2a37d6125d074b659a2b9537f47f30fb -#: ../../source/training/curriculum/curriculum.rst:480 -#: ../../source/training/curriculum/curriculum.rst:487 -#: ../../source/training/curriculum/curriculum.rst:1084 -#: ../../source/training/curriculum/curriculum.rst:1093 -msgid "Tool label" -msgstr "" - -# b7235573d0ed4dfe9478ad4484a0ae0f -# 08baf47409dc458ab34fb9a0657307cc -# 0eea28653d2d4abda0dec6e4d337842e -# 9359558e2b8b4614966ccdea67b3f82c -#: ../../source/training/curriculum/curriculum.rst:481 -#: ../../source/training/curriculum/curriculum.rst:488 -#: ../../source/training/curriculum/curriculum.rst:1085 -#: ../../source/training/curriculum/curriculum.rst:1094 -msgid "Classification" -msgstr "" - -# 17acd1b79322444b94259a0df33d2bb8 -# 6ced88ad84b343008b813208132c0eac -#: ../../source/training/curriculum/curriculum.rst:485 -#: ../../source/training/curriculum/curriculum.rst:1091 -msgid "Create raster data" -msgstr "" - -# 732c8bcb809a4f2db424556fbfe02116 -# 06fe9de54e184f44b2bc945b8c328786 -#: ../../source/training/curriculum/curriculum.rst:486 -#: ../../source/training/curriculum/curriculum.rst:1092 -msgid "Change raster symbology" -msgstr "" - -# bb93ef1c030c4bcebce91af7907b0d35 -# 7e966334063c4ca0a1c53a123072f8d6 -#: ../../source/training/curriculum/curriculum.rst:487 -#: ../../source/training/curriculum/curriculum.rst:1093 -msgid "Perform terrain analysis" -msgstr "" - -# 5624c5542df946d88b8053e8dd72d9c7 -# 0f1e9acac03e4636b6a7466bf05707d2 -#: ../../source/training/curriculum/curriculum.rst:484 -#: ../../source/training/curriculum/curriculum.rst:1090 -msgid "**Working with Raster Data**" -msgstr "" - -# 5c206540e16c4810b4b6c22bce5588f9 -# 5f75a431949d4cdfac28bd35810733d4 -#: ../../source/training/curriculum/curriculum.rst:486 -#: ../../source/training/curriculum/curriculum.rst:1092 -msgid "How to load raster data" -msgstr "" - -# 385bd5ff639e48efa81eb912b6fb2bb5 -# 023b08617c704e2fbc4f727c5e36dc3a -#: ../../source/training/curriculum/curriculum.rst:492 -#: ../../source/training/curriculum/curriculum.rst:1100 -msgid "Add a raster layer for digitising" -msgstr "" - -# 469dd341dd7b4781beae7d7316f4166a -# e0efa1f2f6cc4a42b264cbee482bed96 -#: ../../source/training/curriculum/curriculum.rst:493 -#: ../../source/training/curriculum/curriculum.rst:1101 -msgid "Create new vector features (polygon, lines and points)" -msgstr "" - -# a8ca673bc850449da0785c7442a89c4c -# 138b97f9eadd40d1b7c0ebb7d10d5682 -#: ../../source/training/curriculum/curriculum.rst:494 -#: ../../source/training/curriculum/curriculum.rst:1102 -msgid "" -"Digitise new vector layers by tracing a raster layer, considering topology" -msgstr "" - -# e0f3c8b4e522455f9b624c29c67a5053 -# 7560c3d07af047a2860d4532b4554363 -#: ../../source/training/curriculum/curriculum.rst:496 -#: ../../source/training/curriculum/curriculum.rst:1104 -msgid "Georeference an image" -msgstr "" - -# 4c124ca2238341bab206595226c4b667 -# e3ecb0c799cc4f1ca223223f30092b58 -#: ../../source/training/curriculum/curriculum.rst:491 -#: ../../source/training/curriculum/curriculum.rst:1099 -msgid "**Creating Vector Layers**" -msgstr "" - -# 7bfd519a4f4348f7b7511348c6688987 -# f943cffd18e34f94b76cdb717c457306 -#: ../../source/training/curriculum/curriculum.rst:493 -#: ../../source/training/curriculum/curriculum.rst:1101 -msgid "Adding raster layer" -msgstr "" - -# 139f5d7c81334fab8f050809b8d747ca -# 92c1c28a6b564ac8a956da27990390fb -#: ../../source/training/curriculum/curriculum.rst:494 -#: ../../source/training/curriculum/curriculum.rst:1102 -msgid "Creating new vector feature" -msgstr "" - -# 9d68243d885e4be2a355a745878e2649 -# 552743c1f495440d8b4403ded9be37e2 -#: ../../source/training/curriculum/curriculum.rst:495 -#: ../../source/training/curriculum/curriculum.rst:1103 -msgid "Digitising new vector layer" -msgstr "" - -# 7bbb8d9f8d9b4972812b626de417d4ae -# 7d29065e01324a7db0d411005ced1319 -#: ../../source/training/curriculum/curriculum.rst:496 -#: ../../source/training/curriculum/curriculum.rst:1104 -msgid "Georeference" -msgstr "" - -# 4aa069df6944444c81310d47a97dd9b6 -# ccfb39901dce4f528d6d6c90c0ed1156 -#: ../../source/training/curriculum/curriculum.rst:499 -#: ../../source/training/curriculum/curriculum.rst:1109 -msgid "Understand the GIS process" -msgstr "" - -# 8ee837dacf9b4565949eb93e4d603e5c -# ebd9838933a5413db38e8096b65ef575 -#: ../../source/training/curriculum/curriculum.rst:500 -#: ../../source/training/curriculum/curriculum.rst:1110 -msgid "Identify addressable problems" -msgstr "" - -# ccbc74b197a34aa3bff53e57bcca1774 -# b568e4f981b7400cb6555fff2ebb55b5 -#: ../../source/training/curriculum/curriculum.rst:501 -#: ../../source/training/curriculum/curriculum.rst:1111 -msgid "Understand data needs" -msgstr "" - -# bd5c3a1ab90247a7a4a7cc15111d20c1 -# fdf4efeb239a44cda76d66f046f33253 -#: ../../source/training/curriculum/curriculum.rst:502 -#: ../../source/training/curriculum/curriculum.rst:1112 -msgid "Start a QGIS project" -msgstr "" - -# 6b683f71427a416ab61c326c9591a67f -# f737a4fba70842c582f696c3af41799e -#: ../../source/training/curriculum/curriculum.rst:503 -#: ../../source/training/curriculum/curriculum.rst:1113 -msgid "Analyse problems" -msgstr "" - -# abe349830df74777bd14e7d9e5fa65c0 -# 139f506131a843718003dd046f1f4903 -#: ../../source/training/curriculum/curriculum.rst:504 -#: ../../source/training/curriculum/curriculum.rst:1114 -msgid "Identify hazard zones" -msgstr "" - -# 99f9ffebd52642168b93c73197d0e45a -# c16f561b0b4d42de9c62af31a96f6f30 -#: ../../source/training/curriculum/curriculum.rst:505 -#: ../../source/training/curriculum/curriculum.rst:1115 -msgid "Look for important roads" -msgstr "" - -# 1ae0e322e8764fda940f6bd3f44eba9d -# a64fa4a18d9e4d8e90cf4b5177798eb6 -#: ../../source/training/curriculum/curriculum.rst:506 -#: ../../source/training/curriculum/curriculum.rst:1116 -msgid "Look for medical facilities" -msgstr "" - -# 3da580a68d274bd4a96854b8ec846d85 -# 9e11cfbaf1ab4b4b9125ffbdc2b1b122 -#: ../../source/training/curriculum/curriculum.rst:507 -#: ../../source/training/curriculum/curriculum.rst:1117 -msgid "Buffer roads" -msgstr "" - -# bd3385f686264085b7d8cbecacb27a75 -# 81d23b079dbc473ea8344a6db7383c72 -#: ../../source/training/curriculum/curriculum.rst:508 -#: ../../source/training/curriculum/curriculum.rst:1118 -msgid "Buffer medical facilities" -msgstr "" - -# 18f9429dab7e4b6fbce4c700d297069a -# b879115a73084d28b4fc0f85f0b9ef21 -#: ../../source/training/curriculum/curriculum.rst:509 -#: ../../source/training/curriculum/curriculum.rst:1119 -msgid "Analyse overlapped areas" -msgstr "" - -# d107ab0a55964266969c004559ae41ca -# 0ba14e7e0f544204b87d918d56c4b338 -#: ../../source/training/curriculum/curriculum.rst:510 -#: ../../source/training/curriculum/curriculum.rst:1120 -msgid "Choose features by landuse type" -msgstr "" - -# b07610abae4442acb15f2ce7c229d8d7 -# 60f78804f5ac42819105076afafce946 -#: ../../source/training/curriculum/curriculum.rst:498 -#: ../../source/training/curriculum/curriculum.rst:1108 -msgid "**Vector Analysis for Problem Solving**" -msgstr "" - -# 183736b97d484c48adbbf8b3b7db9716 -# 7f966219f3e24c56988a8029aee103c2 -#: ../../source/training/curriculum/curriculum.rst:500 -#: ../../source/training/curriculum/curriculum.rst:1110 -msgid "GIS Processes" -msgstr "" - -# 87c97fc1deee4b9c901fc741bbc78cac -# df44e5eab46348fe9a87570d01db71a4 -#: ../../source/training/curriculum/curriculum.rst:501 -#: ../../source/training/curriculum/curriculum.rst:1111 -msgid "Problems" -msgstr "" - -# 08899f64a9494fad89b29efae8370a92 -# e995a859f4dc4481b274d3241dd3849f -#: ../../source/training/curriculum/curriculum.rst:502 -#: ../../source/training/curriculum/curriculum.rst:1112 -msgid "Data" -msgstr "" - -# 16e61b136ab44c649376f2b515f30d11 -# 79e7bf27953440aeac6243a856c6971f -# 742a448e498c4fd9bdf445e3cc274743 -# 5b88ce20becf44f08d9ed738e140f5a9 -#: ../../source/training/curriculum/curriculum.rst:503 -#: ../../source/training/curriculum/curriculum.rst:1113 -msgid "Starting a project" -msgstr "" - -# 2e2b1e9a6b1d4bac9702e82ef0472e66 -# 607ef769726740098e521ab3a35ef3e9 -#: ../../source/training/curriculum/curriculum.rst:504 -#: ../../source/training/curriculum/curriculum.rst:1114 -msgid "Analysing problems: farms and moors" -msgstr "" - -# 152f420731fd4dbfb5bd885d232e7aca -# b0de35d2740c4a8cbf88dc96ac3c1c77 -#: ../../source/training/curriculum/curriculum.rst:505 -#: ../../source/training/curriculum/curriculum.rst:1115 -msgid "Hazard zone" -msgstr "" - -# 09c0b097c7e2476e9f9ab9b36e43a63c -# 6dc0ba46d7294681af4905920402b1f7 -#: ../../source/training/curriculum/curriculum.rst:506 -#: ../../source/training/curriculum/curriculum.rst:1116 -msgid "Searching for important roads" -msgstr "" - -# 677de4dffa9145b0974124c948fa26a1 -# 08c15f7d9622478fb7802c29d691a3f7 -#: ../../source/training/curriculum/curriculum.rst:507 -#: ../../source/training/curriculum/curriculum.rst:1117 -msgid "Searching for health facilities" -msgstr "" - -# 05a016a99ed74665886fd20d7ae96e94 -# 322be8d03ebd471a9f9cce4b54d32409 -#: ../../source/training/curriculum/curriculum.rst:508 -#: ../../source/training/curriculum/curriculum.rst:1118 -msgid "Road Buffer" -msgstr "" - -# 78335f1c7fce4c10b3871b74ba1d0ae4 -# 4baa7e31eab94544830405b0f9a00f7f -#: ../../source/training/curriculum/curriculum.rst:509 -#: ../../source/training/curriculum/curriculum.rst:1119 -msgid "Health Facilities Buffer" -msgstr "" - -# 1b7f8050ea5249a6b6753e771d8965d6 -# f6e4114c5c5e47a79c3a2e7d5a4c08d5 -#: ../../source/training/curriculum/curriculum.rst:510 -#: ../../source/training/curriculum/curriculum.rst:1120 -msgid "Overlapped area" -msgstr "" - -# 84d2cb3a27fe4eff9b2577dba7b4e274 -# 43f5cd2e68ab48e8b0760189ab63105c -#: ../../source/training/curriculum/curriculum.rst:511 -#: ../../source/training/curriculum/curriculum.rst:1121 -msgid "Choosing farms and moors" -msgstr "" - -# c6cff3a16c3d4ef0a7a75908dc5d524e -# 3bb9f7e448f7495bbe84589e0c7b4eeb -#: ../../source/training/curriculum/curriculum.rst:512 -#: ../../source/training/curriculum/curriculum.rst:1122 -msgid "Choosing land area with right size" -msgstr "" - -# 2de46997d08d4d65b245a7016ad0f9d6 -# 3f32e5a392bc467bbd05f028e5ff16d7 -#: ../../source/training/curriculum/curriculum.rst:515 -#: ../../source/training/curriculum/curriculum.rst:1127 -msgid "Arrange map layout" -msgstr "" - -# 8fe2336c65794c6fb60baf2893476452 -# 1dcaddecc7c844ab93613d1f22a43a9f -#: ../../source/training/curriculum/curriculum.rst:516 -#: ../../source/training/curriculum/curriculum.rst:1128 -msgid "Add a new map" -msgstr "" - -# 16b7d171da274f1e976baee95313006e -# 51c48d50638540488a8d727951a98afc -#: ../../source/training/curriculum/curriculum.rst:517 -#: ../../source/training/curriculum/curriculum.rst:1129 -msgid "Add title to a map" -msgstr "" - -# e13c4574c6644d65a5fb76067be0c427 -# 221ef3260b324857bd2f14ecac6cd63b -#: ../../source/training/curriculum/curriculum.rst:518 -#: ../../source/training/curriculum/curriculum.rst:1130 -msgid "Add graphic and numeric scales" -msgstr "" - -# 40bfb370995d4deaa36983bc1cd46e6d -# 9ebfdd1a3bbe48768e2c06d1aa2cc4b2 -#: ../../source/training/curriculum/curriculum.rst:519 -#: ../../source/training/curriculum/curriculum.rst:1131 -msgid "Add grid to a map" -msgstr "" - -# e8efa8572f604002892cc672e4ebe4e9 -# ea995947b44a4d67af3280efedc1ac96 -#: ../../source/training/curriculum/curriculum.rst:520 -#: ../../source/training/curriculum/curriculum.rst:1132 -msgid "Add an inset" -msgstr "" - -# 6d185d017dfd4a2a954a7c8d8518ff06 -# bc8e744d21f74f458d1d0a9285a58cd2 -#: ../../source/training/curriculum/curriculum.rst:521 -#: ../../source/training/curriculum/curriculum.rst:1133 -msgid "Customise the content of the legend" -msgstr "" - -# 2bc171b65ef749a096c9e17f70f2035a -# c63c727c4ce94805b60eebfb88de13c0 -#: ../../source/training/curriculum/curriculum.rst:522 -#: ../../source/training/curriculum/curriculum.rst:1134 -msgid "Export a map to different formats (pdf, jpeg, svg)" -msgstr "" - -# 01ed3d259f774d1f9bf36862881eebb6 -# 5eb64724505b4c82b3fc0f7de64a9d71 -#: ../../source/training/curriculum/curriculum.rst:514 -#: ../../source/training/curriculum/curriculum.rst:1126 -msgid "**Using Map Composer**" -msgstr "" - -# f2fa510d141442439b974c8a9cabb97f -# c6171a045b92482fa4fce88a2703d8e1 -#: ../../source/training/curriculum/curriculum.rst:516 -#: ../../source/training/curriculum/curriculum.rst:1128 -msgid "Map Composer" -msgstr "" - -# 7749feace0484821b1a9c0887ed56ad9 -# bc9911fdd5144405a02dd55ff736176d -#: ../../source/training/curriculum/curriculum.rst:517 -#: ../../source/training/curriculum/curriculum.rst:1129 -msgid "Adding new maps" -msgstr "" - -# a48d77c9ffe247fdbc58a070e6f1c461 -# 33a3a1b6d3664d1ba75c05fe99853cb7 -#: ../../source/training/curriculum/curriculum.rst:518 -#: ../../source/training/curriculum/curriculum.rst:1130 -msgid "Adding a title to the map" -msgstr "" - -# 181ec98cdfc6474d82f7fc2faa953901 -# 04dbc8fb95d342108b58f37ed658c4f0 -#: ../../source/training/curriculum/curriculum.rst:519 -#: ../../source/training/curriculum/curriculum.rst:1131 -msgid "Adding scale" -msgstr "" - -# 681e30d53e5d4dc1847372a3fd641c55 -# 8defa954f7e64d5ea5e36704bb419ecb -#: ../../source/training/curriculum/curriculum.rst:520 -#: ../../source/training/curriculum/curriculum.rst:1132 -msgid "Adding grids" -msgstr "" - -# d92131f0ed7441b6b4f6a6a3d21e045b -# b818e727dbe74cf9b29566f5c99b99ea -# 9a25a82615a0439fb27bda2c767846e5 -# 28a78ab768a04d3dbebf439e7d5c9e86 -#: ../../source/training/curriculum/curriculum.rst:521 -#: ../../source/training/curriculum/curriculum.rst:1133 -msgid "Adding inset" -msgstr "" - -# 2410ad61e6604eaa972c71f454a87b97 -# ef3373a8d2b5463998026c3d84e63e95 -#: ../../source/training/curriculum/curriculum.rst:522 -#: ../../source/training/curriculum/curriculum.rst:1134 -msgid "Adding legend" -msgstr "" - -# a226b3fb010e4ff4b1eff60de1fba944 -# 8325abdd73ef445691cb2bb503feea13 -#: ../../source/training/curriculum/curriculum.rst:523 -#: ../../source/training/curriculum/curriculum.rst:1135 -msgid "Printing the map" -msgstr "" - -# 4aa6da87d2c54f35a25e3c6f7a2cd78d -#: ../../source/training/curriculum/curriculum.rst:526 -msgid "Understand the concept of hazard, exposure and impact data" -msgstr "" - -# 613bf211cecb4e249bf93d30b12c74ee -# 375e3bb51f0f4287b3a293fc5b5495ff -#: ../../source/training/curriculum/curriculum.rst:527 -#: ../../source/training/curriculum/curriculum.rst:1141 -msgid "Understand how to determine impact" -msgstr "" - -# 11b75354eec04aa197edc9abcfdc0f09 -# 2604ec0096024b4cb248f110ec4013f5 -#: ../../source/training/curriculum/curriculum.rst:528 -#: ../../source/training/curriculum/curriculum.rst:1142 -msgid "Understand the |project_name| interface" -msgstr "" - -# e961d61089b041cb90c2b2f901b92d85 -# aef9b549b0a842c592c44b027dda1f2c -#: ../../source/training/curriculum/curriculum.rst:529 -#: ../../source/training/curriculum/curriculum.rst:1143 -msgid "Add hazard data" -msgstr "" - -# 493af21b3c0a4d72985588c330a611db -# 5f0af60021c748e1a44605fd5932b488 -#: ../../source/training/curriculum/curriculum.rst:530 -#: ../../source/training/curriculum/curriculum.rst:1144 -msgid "Add unprocessed exposure data (vector and raster)" -msgstr "" - -# c0aa1823572a451abab08efc2e784d97 -# de829272c9584bdcbbbd95d95854273a -#: ../../source/training/curriculum/curriculum.rst:531 -#: ../../source/training/curriculum/curriculum.rst:1145 -msgid "Use the keywords editor" -msgstr "" - -# 11095a7267a34837a21358776d892425 -# 0dd0b264fbdb43b289c5c324fa72f3a2 -#: ../../source/training/curriculum/curriculum.rst:532 -#: ../../source/training/curriculum/curriculum.rst:1146 -msgid "Analyse impact" -msgstr "" - -# 5ea89f839de944ce8319aacb5c0c2c86 -# d1941c06fc044abab1c62774719e4055 -#: ../../source/training/curriculum/curriculum.rst:533 -#: ../../source/training/curriculum/curriculum.rst:1147 -msgid "Improve |project_name| output map" -msgstr "" - -# 334a35b3f22044d482866e9a2c06c5d0 -# 739e995259e94fc2823e3412f4de2df2 -#: ../../source/training/curriculum/curriculum.rst:534 -#: ../../source/training/curriculum/curriculum.rst:1148 -msgid "Save and print scenario results" -msgstr "" - -# bc5c6b2566b84af6bfc5951b51782963 -# 124033ac80fd482db694833fa94e0e11 -#: ../../source/training/curriculum/curriculum.rst:525 -#: ../../source/training/curriculum/curriculum.rst:1139 -msgid "**Understanding InaSAFE**" -msgstr "" - -# c1a961c269d84e7194f10f8c841429f8 -# a864796154da4de5b7fbf2d61192d0ef -#: ../../source/training/curriculum/curriculum.rst:527 -#: ../../source/training/curriculum/curriculum.rst:1141 -msgid "Hazard, Exposure, Impact" -msgstr "" - -# 95340e1b319b4db8aa9f9d94453cd7b9 -#: ../../source/training/curriculum/curriculum.rst:528 -msgid "|project_name| interface" -msgstr "" - -# 8df4d136a93a4a02aff7e30138475859 -# d3e5fdd0b6034e2ea1cd72fa2e39dbd2 -# fdd0985fc2ba42d09bb3dffb30e50595 -# d942a7eefcf24e178d1bfce0ae616742 -#: ../../source/training/curriculum/curriculum.rst:529 -#: ../../source/training/curriculum/curriculum.rst:1143 -msgid "Adding hazard data" -msgstr "" - -# 3069efbb16394dd18d45673cead2399d -# c481671afaf64dacbfda2ec427987372 -#: ../../source/training/curriculum/curriculum.rst:530 -#: ../../source/training/curriculum/curriculum.rst:1144 -msgid "Adding exposure data" -msgstr "" - -# 7d4da674e85447a19649fe8b8b0a98ad -# e6d987daf89a42019b92f1ad812720dc -#: ../../source/training/curriculum/curriculum.rst:531 -#: ../../source/training/curriculum/curriculum.rst:1145 -msgid "Adding keyword in metadata" -msgstr "" - -# 3912894d792a4d3899dceb898f69e57b -# b5979a19efc346649e35993f3ee07f6b -#: ../../source/training/curriculum/curriculum.rst:532 -#: ../../source/training/curriculum/curriculum.rst:1146 -msgid "Impact analysis" -msgstr "" - -# 362c06d0eb2e4e9995d222cf63a6927b -#: ../../source/training/curriculum/curriculum.rst:533 -msgid "Improving |project_name| maps output" -msgstr "" - -# 43d5b2d8f1a1463c9bf3bff6f871e8b6 -# 4f8d05df19f94180ae375fb07da76f1f -#: ../../source/training/curriculum/curriculum.rst:534 -#: ../../source/training/curriculum/curriculum.rst:1148 -msgid "Using print button" -msgstr "" - -# 6972eded8aad4b1887601f3e45fef2e3 -# 93a78d5dbee04b4c97c301d966e71fee -#: ../../source/training/curriculum/curriculum.rst:535 -#: ../../source/training/curriculum/curriculum.rst:1149 -msgid "Saving your work" -msgstr "" - -# 0f7da12ce2b140a99ee71f94faedf7b1 -# e0b311fa2b3a4438a9690b86bd2a1847 -#: ../../source/training/curriculum/curriculum.rst:538 -#: ../../source/training/curriculum/curriculum.rst:1154 -msgid "Use social media to connect with |project_name| community" -msgstr "" - -# 4b843496972b4d0d88f6cef17e86d226 -# c463182e1fb14e4d9c56cb92273c57fe -#: ../../source/training/curriculum/curriculum.rst:539 -#: ../../source/training/curriculum/curriculum.rst:1155 -msgid "Access QGIS tutorial website" -msgstr "" - -# 39e6f9d0812e422f82b01462e40636dd -# 387730bece614b449455f255fc63cee3 -#: ../../source/training/curriculum/curriculum.rst:537 -#: ../../source/training/curriculum/curriculum.rst:1153 -msgid "**Getting Support**" -msgstr "" - -# cc128e2148f64e3da134c844094c837d -# 48a82a7986ef48178f05aa7b5b0366a9 -#: ../../source/training/curriculum/curriculum.rst:539 -#: ../../source/training/curriculum/curriculum.rst:1155 -msgid "Facebook" -msgstr "" - -# bc0dfd757f5844cdbeedbf3ca9b042aa -# 4ec37befd2e545e3978d7ce595fa93c2 -#: ../../source/training/curriculum/curriculum.rst:540 -#: ../../source/training/curriculum/curriculum.rst:1156 -msgid "QGIS tutorials" -msgstr "" - -# ca1ce8978ed748cb81f29f18e77b3152 -#: ../../source/training/curriculum/curriculum.rst:543 -msgid "**Data Collection Using OSM Intermediate Level**" -msgstr "" - -# cd275969251b477b9912b6fe214a208d -# 5fd83ba316cb4ceca2dbd1df3f638116 -#: ../../source/training/curriculum/curriculum.rst:545 -#: ../../source/training/curriculum/curriculum.rst:1161 -msgid "**Standard Competency:** Quality Assurance in OSM mapping" -msgstr "" - -# cd8066fe9be443c1a0ecdc7bb3c2b60b -# 14c10bae62d64c3ab305bf4e9e0e57ea -#: ../../source/training/curriculum/curriculum.rst:551 -#: ../../source/training/curriculum/curriculum.rst:1169 -msgid "" -"Apply better digitising technique for improving quality of collected data." -msgstr "" - -# d05f18fe7fac44b6930b24248e6e312c -# 740e0c96986b4fbfb4b7401ffecd83fd -#: ../../source/training/curriculum/curriculum.rst:552 -#: ../../source/training/curriculum/curriculum.rst:1170 -msgid "Use advanced editing tools in JOSM" -msgstr "" - -# 795a4d9e358f44df973a2ee772c00a68 -#: ../../source/training/curriculum/curriculum.rst:553 -msgid "Make relations among objects" -msgstr "" - -# 5246c9f110074fcd972b834faee1ba7d -# 10c282e6470a4c098bdb3234d258c5c4 -#: ../../source/training/curriculum/curriculum.rst:551 -#: ../../source/training/curriculum/curriculum.rst:1169 -msgid "**Advanced Editing**" -msgstr "" - -# b21fc4e56c474f69a2faae9ce0515e52 -# f186b143bc054a628850b9f166b3659c -#: ../../source/training/curriculum/curriculum.rst:553 -#: ../../source/training/curriculum/curriculum.rst:1171 -msgid "Advanced editing tools" -msgstr "" - -# 1d9b60c6bfff4e48adefed064c1e82b3 -# 16b05d33447e401d96e66dade1b4ff5f -#: ../../source/training/curriculum/curriculum.rst:555 -#: ../../source/training/curriculum/curriculum.rst:1173 -msgid "Default drawing tools" -msgstr "" - -# 09b3327038f7494a93c024490a05d863 -# 86a3f36310ce40098aea56df7360da26 -#: ../../source/training/curriculum/curriculum.rst:558 -#: ../../source/training/curriculum/curriculum.rst:1176 -msgid "Relations" -msgstr "" - -# 11e597fe745c4707a4d501f1c137d636 -# f6a7e88c4bf6468e81808f8dd9348e1b -#: ../../source/training/curriculum/curriculum.rst:560 -#: ../../source/training/curriculum/curriculum.rst:1178 -msgid "Editing relations" -msgstr "" - -# f88ea6fe23494dd9bcfb99a6d72d956b -# 524f7f15dbbb4dfe8f7b214a648baef8 -#: ../../source/training/curriculum/curriculum.rst:561 -#: ../../source/training/curriculum/curriculum.rst:1179 -msgid "Multipolygons and linestrings" -msgstr "" - -# 08e69597ef9c4663a8a3d2b1b64f9b61 -# 10748a28d2804956ab8193399a9ee62e -#: ../../source/training/curriculum/curriculum.rst:564 -#: ../../source/training/curriculum/curriculum.rst:1184 -msgid "Use validation tools in JOSM" -msgstr "" - -# fd2131cc0cbb4009930549922d038df7 -# 16489c5dac734bc29478718372916303 -#: ../../source/training/curriculum/curriculum.rst:565 -#: ../../source/training/curriculum/curriculum.rst:1185 -msgid "Use online validation tools" -msgstr "" - -# cebe36a471bc4952b0a1a7f613b118bb -# dce2200c41cd4870a195af5a65333b17 -#: ../../source/training/curriculum/curriculum.rst:563 -#: ../../source/training/curriculum/curriculum.rst:1183 -msgid "**Quality Assurance**" -msgstr "" - -# 3233012b11e64c20a83d927243541e3b -# b77a1d3410314d19a7cee7dd5eb59c84 -#: ../../source/training/curriculum/curriculum.rst:565 -#: ../../source/training/curriculum/curriculum.rst:1185 -msgid "Error and warnings" -msgstr "" - -# 3d478387ffda4cb6ad17541be35e5410 -# fb45c60ee57c43c7935d1d0b67e9418e -#: ../../source/training/curriculum/curriculum.rst:566 -#: ../../source/training/curriculum/curriculum.rst:1186 -msgid "Using the validation tool" -msgstr "" - -# 9b20dc9007514007b3f93e0a47f4a445 -# 3459c19b751942caabc34b3b780b7d15 -#: ../../source/training/curriculum/curriculum.rst:567 -#: ../../source/training/curriculum/curriculum.rst:1187 -msgid "Common validation warnings" -msgstr "" - -# 09c0b1693cba4da8804723ca39c7cd53 -# dfcdebf8d6974409b859fb92e05bd455 -#: ../../source/training/curriculum/curriculum.rst:568 -#: ../../source/training/curriculum/curriculum.rst:1188 -msgid "Using the tasking manager" -msgstr "" - -# 1047cf14c64e458ebce7111057f00113 -# 1c42776421b94791a4cc68fce2c08482 -#: ../../source/training/curriculum/curriculum.rst:569 -#: ../../source/training/curriculum/curriculum.rst:1189 -msgid "Editing tips" -msgstr "" - -# a74eca84448a42e7bb55f5634209a979 -# 95751db566c64eb6b2d36a726dafccdf -#: ../../source/training/curriculum/curriculum.rst:570 -#: ../../source/training/curriculum/curriculum.rst:1190 -msgid "Presets standardisation" -msgstr "" - -# 392085821b5243d9b831636069d935db -# 36db3614a29a48278a816cf933e1a9ad -#: ../../source/training/curriculum/curriculum.rst:571 -#: ../../source/training/curriculum/curriculum.rst:1191 -msgid "KeepRight" -msgstr "" - -# d5eaf7e38f3c498e994cf563febd6a08 -# d8e283a9c1624ee387bcbbfd96a2d2a6 -#: ../../source/training/curriculum/curriculum.rst:574 -#: ../../source/training/curriculum/curriculum.rst:1196 -msgid "Identify conflicts" -msgstr "" - -# 5a201aa344a844fc941ba83bdef3cecd -# f0d2924e903345bfbf14383a39d6bd89 -#: ../../source/training/curriculum/curriculum.rst:575 -#: ../../source/training/curriculum/curriculum.rst:1197 -msgid "Understand why conflicts occur" -msgstr "" - -# 9acbff585271481c8a95618517b9a1eb -# 41540c634bf9446193e67416e0c0f9f0 -#: ../../source/training/curriculum/curriculum.rst:576 -#: ../../source/training/curriculum/curriculum.rst:1198 -msgid "Solve conflicts" -msgstr "" - -# 3d809bec61f348c09c80d82b92bd1fc9 -# aae6536a26d740be9be0f819dc3ca376 -#: ../../source/training/curriculum/curriculum.rst:573 -#: ../../source/training/curriculum/curriculum.rst:1195 -msgid "**Dealing with Conflicts**" -msgstr "" - -# 7b674357ba68489e8e89b067d4b71a5b -# 27e3bd2ee2f7446f8c305d0ba7c01b00 -#: ../../source/training/curriculum/curriculum.rst:575 -#: ../../source/training/curriculum/curriculum.rst:1197 -msgid "Conflicts" -msgstr "" - -# c501640199b0407691471d42cc0b1f9c -# 436f1a38b4a446a59498e61b80e69676 -#: ../../source/training/curriculum/curriculum.rst:576 -#: ../../source/training/curriculum/curriculum.rst:1198 -msgid "Conflict resolution" -msgstr "" - -# caa656ef72984a72a142f7c159a7c1cc -# 8a059b43dfc649848c84b720dee2ed80 -#: ../../source/training/curriculum/curriculum.rst:577 -#: ../../source/training/curriculum/curriculum.rst:1199 -msgid "Ways to avoid conflicts" -msgstr "" - -# 54eadb22b9ad4dd49489895dd09246e2 -# c084e274049f47fb8ca764cabc1e4483 -#: ../../source/training/curriculum/curriculum.rst:580 -#: ../../source/training/curriculum/curriculum.rst:1205 -msgid "Understand tags" -msgstr "" - -# 64d1880dbd244700ae7d46c8a9bb8ef2 -# b6bc41c784574f41ad0ca7b2472163e1 -#: ../../source/training/curriculum/curriculum.rst:581 -#: ../../source/training/curriculum/curriculum.rst:1206 -msgid "Understand XML" -msgstr "" - -# 8bf5b6a432264c48907d4c3779ba82ea -# 9106ddfd576c42e8988211dafe721f20 -#: ../../source/training/curriculum/curriculum.rst:582 -#: ../../source/training/curriculum/curriculum.rst:1207 -msgid "Understand keys and values" -msgstr "" - -# c92dded439164fecb5f445be621bf77e -# 6d09e4bdcb9c49ad99dd9a0fd22c0344 -#: ../../source/training/curriculum/curriculum.rst:583 -#: ../../source/training/curriculum/curriculum.rst:1208 -msgid "Make presets" -msgstr "" - -# 9fae4d200658451d984f2f26451b27aa -# d3802c5708e04f1ca21b582bc3a3d5c0 -#: ../../source/training/curriculum/curriculum.rst:584 -#: ../../source/training/curriculum/curriculum.rst:1209 -msgid "Put preset files into JOSM" -msgstr "" - -# e1d736e897a947d7a8781c6943f3535c -# 659da0151007474b83650bf5dccc4035 -#: ../../source/training/curriculum/curriculum.rst:585 -#: ../../source/training/curriculum/curriculum.rst:1210 -msgid "Apply new presets to an object" -msgstr "" - -# 40ef1236d9e9486980f5f3bb69e69c19 -# 1816b0ceee444fe6a0688be22664de85 -#: ../../source/training/curriculum/curriculum.rst:579 -#: ../../source/training/curriculum/curriculum.rst:1204 -msgid "**Creating JOSM File Presets**" -msgstr "" - -# 1004a06e12064848a3a246e867f7a986 -# e5d234a50af247d1a163477af2005614 -#: ../../source/training/curriculum/curriculum.rst:581 -#: ../../source/training/curriculum/curriculum.rst:1206 -msgid "Tags and presets" -msgstr "" - -# 4e4a7f7f85314499b5218f5bf5946933 -# 340f88c264eb43eb8cb3984484dc40a4 -#: ../../source/training/curriculum/curriculum.rst:582 -#: ../../source/training/curriculum/curriculum.rst:1207 -msgid "Introduction to XML" -msgstr "" - -# e9bba647a9d24d7caedad2c4c579e08b -# ffd4c19daf984aefa3b91620c3dcbe59 -#: ../../source/training/curriculum/curriculum.rst:583 -#: ../../source/training/curriculum/curriculum.rst:1208 -msgid "JOSM presets files" -msgstr "" - -# 28b0894ac42d423bb8319d878dca0723 -# cd59f322636442d0ac89128a334a4474 -#: ../../source/training/curriculum/curriculum.rst:589 -#: ../../source/training/curriculum/curriculum.rst:1216 -msgid "Understand the functions of the Separate Data Store (SDS)" -msgstr "" - -# 72bc5b3958cd4d8aa0465c79d4b3d263 -# e68d25b7727143b1b9ba4eefdffadacf -#: ../../source/training/curriculum/curriculum.rst:590 -#: ../../source/training/curriculum/curriculum.rst:1217 -msgid "Understand what data should be kept publicly and what should be private" -msgstr "" - -# 819b4fbd217243c4991840e5508769a8 -# 20d03003ba9d40e5929aeba217f5de86 -#: ../../source/training/curriculum/curriculum.rst:592 -#: ../../source/training/curriculum/curriculum.rst:1219 -msgid "Install SDS plugin in JOSM" -msgstr "" - -# c4ac1741dd244b619e194f8bc77231ac -# ef6c76ca302740a987216d0ac1577fd2 -#: ../../source/training/curriculum/curriculum.rst:593 -#: ../../source/training/curriculum/curriculum.rst:1220 -msgid "Use SDS presets" -msgstr "" - -# 17f4a94c5d9e44039817d835e11d82b0 -# 004a7ca249da460da8ede26b40923ce0 -#: ../../source/training/curriculum/curriculum.rst:594 -#: ../../source/training/curriculum/curriculum.rst:1221 -msgid "Use SDS plugin for selecting public and private data" -msgstr "" - -# c462bdb447214e05af523e3f0328aefd -# 3efce36e54034191b645cd90fcefd91e -#: ../../source/training/curriculum/curriculum.rst:595 -#: ../../source/training/curriculum/curriculum.rst:1222 -msgid "Access online datastore" -msgstr "" - -# acc81e4bb1c34ad58cc2b7fa6232120e -# ab0de8293b0a4116bb2749a467c5f9d5 -#: ../../source/training/curriculum/curriculum.rst:588 -#: ../../source/training/curriculum/curriculum.rst:1215 -msgid "**Using the Separate Data Store**" -msgstr "" - -# 2947179b1d4047bca1c24fb9e0fa554f -# 944e43880d084f70bda2868b97b25c86 -#: ../../source/training/curriculum/curriculum.rst:590 -#: ../../source/training/curriculum/curriculum.rst:1217 -msgid "Installing the SDS plugin" -msgstr "" - -# 3fc0322ecffd4694be79b6d8b37190bc -# 093912413a7849f9bda1ee782cf34164 -#: ../../source/training/curriculum/curriculum.rst:591 -#: ../../source/training/curriculum/curriculum.rst:1218 -msgid "Using the plugin" -msgstr "" - -# 9552df195e724ad0a9c7cb3e2be58b62 -# b94d8062e3214ceea8b4131916679ba3 -#: ../../source/training/curriculum/curriculum.rst:592 -#: ../../source/training/curriculum/curriculum.rst:1219 -msgid "How it works" -msgstr "" - -# bfca6809c6b6443a88f292832b252033 -# f89b161765194e31a2d460acac511747 -#: ../../source/training/curriculum/curriculum.rst:593 -#: ../../source/training/curriculum/curriculum.rst:1220 -msgid "Accessing the datastore online" -msgstr "" - -# ba007549dc5241979e28be0dad7f34cc -# 33d858216d824476b7276539e9c76dfe -#: ../../source/training/curriculum/curriculum.rst:597 -#: ../../source/training/curriculum/curriculum.rst:1231 -msgid "Create and edit pages in OSM wiki" -msgstr "" - -# 9e0ba16c1f43466cbd944e46c2f8271d -# bff14c3bb703471682277ffe82dcc0dd -#: ../../source/training/curriculum/curriculum.rst:599 -#: ../../source/training/curriculum/curriculum.rst:1233 -msgid "Make an account on the OpenStreetMap wiki" -msgstr "" - -# 910b3617d3804ac68473fd1e9ef36ad2 -# 294a82e0872340a7acd3507633d38b90 -#: ../../source/training/curriculum/curriculum.rst:600 -#: ../../source/training/curriculum/curriculum.rst:1234 -msgid "Understand conventions and rules in developing a wiki page" -msgstr "" - -# 7c5d9cfd687f4faa85a03b3bf37df98d -# 3b93fe947da949b79ca3abc794258b04 -#: ../../source/training/curriculum/curriculum.rst:601 -#: ../../source/training/curriculum/curriculum.rst:1235 -msgid "Edit the wiki" -msgstr "" - -# 9f9b18833f9a42b3ac92208e1ba28154 -# d268be6ababf41d9bbdd13314c6637ed -#: ../../source/training/curriculum/curriculum.rst:602 -#: ../../source/training/curriculum/curriculum.rst:1236 -msgid "Upload files and images" -msgstr "" - -# e56885924dc94fb0a0b4dc5bc6c4e5ed -# 60be66ccac19449ba28d99a824b4025b -#: ../../source/training/curriculum/curriculum.rst:603 -#: ../../source/training/curriculum/curriculum.rst:1237 -msgid "Translate and revise wiki" -msgstr "" - -# eeb51b222ded4b58b1c9a506cc0836e1 -# ae444569ad7d40cc8856e3c0823e7ca2 -#: ../../source/training/curriculum/curriculum.rst:597 -#: ../../source/training/curriculum/curriculum.rst:1231 -msgid "**Editing the OpenStreetMap Wiki**" -msgstr "" - -# 763aafb408fd4cfb983fa5be3191b103 -# 3170bfabd2994c39a35f5ca34e49e9c7 -#: ../../source/training/curriculum/curriculum.rst:599 -#: ../../source/training/curriculum/curriculum.rst:1233 -msgid "OSM wiki" -msgstr "" - -# a1b5b714e6c9427b93826b93c6249439 -# ba2da2abb08e4ced8bd89c7fe3a4f10a -#: ../../source/training/curriculum/curriculum.rst:600 -#: ../../source/training/curriculum/curriculum.rst:1234 -msgid "Signing up" -msgstr "" - -# 3035d99b52e94ac3ad135a6e91d9b113 -# d64628f3ff7a4f11a9b81910fc540268 -#: ../../source/training/curriculum/curriculum.rst:601 -#: ../../source/training/curriculum/curriculum.rst:1235 -msgid "Editing" -msgstr "" - -# 81361ee6ddbe4d118275517b91e92707 -# 1a1bfd18ce9f42a59d6ea0f587e87ea2 -#: ../../source/training/curriculum/curriculum.rst:602 -#: ../../source/training/curriculum/curriculum.rst:1236 -msgid "Wiki formatting" -msgstr "" - -# 3b43dc70f0c6426eabbdb93f2682dc9e -# b1d97126857041dd873dfa4248fc1b1d -#: ../../source/training/curriculum/curriculum.rst:603 -#: ../../source/training/curriculum/curriculum.rst:1237 -msgid "Creating a new page" -msgstr "" - -# 8019184597674c4ea7d0ea8ca4523e5f -# 82c38052ceab4876be9a3c36225f5226 -#: ../../source/training/curriculum/curriculum.rst:604 -#: ../../source/training/curriculum/curriculum.rst:1238 -msgid "Uploading files and images" -msgstr "" - -# ac3f154dda8845e4b2f6f142bdc00e5b -# d8105d3985a64867b10689bf180c30f4 -#: ../../source/training/curriculum/curriculum.rst:605 -#: ../../source/training/curriculum/curriculum.rst:1239 -msgid "Translating pages" -msgstr "" - -# aeacf0ad872b4c61bdf95d44073c66b8 -# 0024489df59c4068b33572bb2731f444 -#: ../../source/training/curriculum/curriculum.rst:606 -#: ../../source/training/curriculum/curriculum.rst:1240 -msgid "Watching pages" -msgstr "" - -# 31db926fa4154ccfaa816bf575498876 -#: ../../source/training/curriculum/curriculum.rst:609 -msgid "**Data Analysis using QGIS and** |project_name| **Intermediate Level**" -msgstr "" - -# ec54fb1adcbf4638b0cbd57637da2a16 -# e5a43c4df4c044d686d7ab72a237d755 -#: ../../source/training/curriculum/curriculum.rst:611 -#: ../../source/training/curriculum/curriculum.rst:1245 -msgid "" -"**Standard Competency:** Spatial Data Analysis using QGIS and |project_name| " -"for Contingency Planning" -msgstr "" - -# a7cd8bc9e6a446c3995bdc0620293a2d -# d488604501e0408da2245cdc263e3309 -#: ../../source/training/curriculum/curriculum.rst:618 -#: ../../source/training/curriculum/curriculum.rst:1254 -msgid "Identify data types in QGIS" -msgstr "" - -# ff97f75ce1d54ff38ad168f2a2696d51 -# 82da06bc0a6e45a4bbd88902082333c6 -#: ../../source/training/curriculum/curriculum.rst:619 -#: ../../source/training/curriculum/curriculum.rst:1255 -msgid "Understand symbology" -msgstr "" - -# f478d7ac3cf94169b6ebc9b2b21474df -# 7c476998ab0341318fceaa4401229a11 -#: ../../source/training/curriculum/curriculum.rst:620 -#: ../../source/training/curriculum/curriculum.rst:1256 -msgid "Understand map layout" -msgstr "" - -# 2fcfc1f820a048f6bb36dfe4eb4f995d -# 36430b77d39c43acbdaf6fc50b643716 -#: ../../source/training/curriculum/curriculum.rst:617 -#: ../../source/training/curriculum/curriculum.rst:1253 -msgid "**QGIS Review**" -msgstr "" - -# c5e201797d0a4136928d3cb715404a27 -# 4a10e44a854743e795fab86fd21fa6fb -#: ../../source/training/curriculum/curriculum.rst:619 -#: ../../source/training/curriculum/curriculum.rst:1255 -msgid "Data types in QGIS" -msgstr "" - -# b029c2b262d24ea2bd6fde93cbef743d -# 9258913713b54234a73031e37f771713 -#: ../../source/training/curriculum/curriculum.rst:620 -#: ../../source/training/curriculum/curriculum.rst:1256 -msgid "Symbolising data" -msgstr "" - -# 82c146adddd74177ae4db0bc6e88db87 -# c6fb2af07ee14d958c67a98d7b99d5e4 -#: ../../source/training/curriculum/curriculum.rst:621 -#: ../../source/training/curriculum/curriculum.rst:1257 -msgid "Map layout" -msgstr "" - -# f7fe888ed64d45f7b18b820f29067bf7 -# f008118a08e5487d850a79442130487b -#: ../../source/training/curriculum/curriculum.rst:624 -#: ../../source/training/curriculum/curriculum.rst:1262 -msgid "Understand |project_name| inputs" -msgstr "" - -# d0fd6d604a944283b8bcb5d5390f16f0 -# 755a728ca2b14d1ea8e7de2ef2d1dd95 -#: ../../source/training/curriculum/curriculum.rst:625 -#: ../../source/training/curriculum/curriculum.rst:1263 -msgid "Get OSM data from the HOT export server" -msgstr "" - -# b2a381afe1bc42949e6a266544113a2a -# fe65f99cda4a43a3aa68222724e6394b -#: ../../source/training/curriculum/curriculum.rst:626 -#: ../../source/training/curriculum/curriculum.rst:1264 -msgid "Load data into |project_name|" -msgstr "" - -# 8afebf58ae65438fae8648acc4c756ae -# b352c56e4a854afd845dd51803b8b42f -# e24b58c2a29f44be9845506ffb771a9c -# 20c2efdf40de4173b73caec4ee5f600b -#: ../../source/training/curriculum/curriculum.rst:627 -#: ../../source/training/curriculum/curriculum.rst:1265 -msgid "Add keywords" -msgstr "" - -# 2fdbd9a57cd042e79f2eca1cf6251032 -# 7807ccf0dd494438898f935a39ea6d20 -#: ../../source/training/curriculum/curriculum.rst:628 -#: ../../source/training/curriculum/curriculum.rst:1266 -msgid "Prepare the hazard layer" -msgstr "" - -# 72aeba45cca64d98a10f767377b4de6c -# 70acc39e9b7c4f0084d53e34e12e8175 -#: ../../source/training/curriculum/curriculum.rst:629 -#: ../../source/training/curriculum/curriculum.rst:1267 -msgid "Run |project_name|" -msgstr "" - -# 8e370edc7fae4ae08c90e6e9786a8d06 -#: ../../source/training/curriculum/curriculum.rst:623 -msgid "**Preparing data and keywords for** |project_name|" -msgstr "" - -# 71bf079d4233440ba2d7e3426691760f -# a1f6b5eaf5694f4d8f6bc8fe8b05e4d4 -#: ../../source/training/curriculum/curriculum.rst:625 -#: ../../source/training/curriculum/curriculum.rst:1263 -msgid "|project_name| inputs" -msgstr "" - -# 8d700546d3c148c98da45bf887ca4b87 -# 92e50fe3db5d4ba5825fdaa2e165170e -#: ../../source/training/curriculum/curriculum.rst:626 -#: ../../source/training/curriculum/curriculum.rst:1264 -msgid "Getting OSM data from HOT Exports" -msgstr "" - -# 3273475aeb614cc38f63899d8a86bc10 -# 6686d792f29a482093f44a35405918c6 -#: ../../source/training/curriculum/curriculum.rst:627 -#: ../../source/training/curriculum/curriculum.rst:1265 -msgid "Loading data" -msgstr "" - -# 5788b896442e4119be144aae59cbb839 -# fe0c4a41f40c4e51bae7e7981ff9788e -#: ../../source/training/curriculum/curriculum.rst:628 -#: ../../source/training/curriculum/curriculum.rst:1266 -msgid "Adding keywords" -msgstr "" - -# 77d525db785c4010a40f70d4a30b448a -# 8035ac61ba734534a22a678e20ac0eeb -#: ../../source/training/curriculum/curriculum.rst:629 -#: ../../source/training/curriculum/curriculum.rst:1267 -msgid "Preparing a hazard layer" -msgstr "" - -# a238537f6c884de19cf53f044893ec05 -# 69611ce691b44da4a0149eb935b90d72 -#: ../../source/training/curriculum/curriculum.rst:630 -#: ../../source/training/curriculum/curriculum.rst:1268 -msgid "Running |project_name|" -msgstr "" - -# 445a6f7a5b5948fda78765d979b8e3ea -# 86bbddee39fb4e74a1ee547920abbe7b -#: ../../source/training/curriculum/curriculum.rst:633 -#: ../../source/training/curriculum/curriculum.rst:1274 -msgid "Develop criteria for determining an ideal IDP camp location" -msgstr "" - -# c69594daa63e44e59d321de5686eb693 -# ba67a89a20714d459304014661e9cf31 -#: ../../source/training/curriculum/curriculum.rst:635 -#: ../../source/training/curriculum/curriculum.rst:1276 -msgid "Use geoprocessing tools" -msgstr "" - -# f3c9b3d1d47948a3809ee2849d06f82b -# 11f6bd8867694046aa39e277ee9169fc -#: ../../source/training/curriculum/curriculum.rst:636 -#: ../../source/training/curriculum/curriculum.rst:1277 -msgid "" -"Use various spatial queries: contains, within, equal, intersect and is " -"disjoint" -msgstr "" - -# 9ab639b0e9a044839e05c6264b2f521c -# 7ac13e77a3f94771abbe3db13c8e1471 -#: ../../source/training/curriculum/curriculum.rst:638 -#: ../../source/training/curriculum/curriculum.rst:1279 -msgid "" -"Combine geoprocessing tools and spatial queries to select building(s) for " -"temporary IDP camps" -msgstr "" - -# 20eb38a5cb5143c9b1605814bfb2ed56 -# 400d1927c666455193d6a1dd63a57bee -#: ../../source/training/curriculum/curriculum.rst:632 -#: ../../source/training/curriculum/curriculum.rst:1273 -msgid "**Determining IDP Camp Location**" -msgstr "" - -# 850278cf72ce44d1b9b713f8493773f4 -# a9b5e8296f74446ea06bbaa64d4675fd -#: ../../source/training/curriculum/curriculum.rst:634 -#: ../../source/training/curriculum/curriculum.rst:1275 -msgid "Geoprocessing tools" -msgstr "" - -# 0b770fcf10854d86a0f8e6dc31f66372 -# f2722f7739c04799b07b5d1072474e5c -#: ../../source/training/curriculum/curriculum.rst:635 -#: ../../source/training/curriculum/curriculum.rst:1276 -msgid "Spatial queries" -msgstr "" - -# fdd416da85aa49f2a800222c10263212 -# 3caf43ee504045fe840eb3c40a9cff4e -#: ../../source/training/curriculum/curriculum.rst:636 -#: ../../source/training/curriculum/curriculum.rst:1277 -msgid "IDP camp criteria and data" -msgstr "" - -# d512e90f10d9466c975f01754658e133 -# 3a7074f37269496cbab3e9dd8d2a0a01 -#: ../../source/training/curriculum/curriculum.rst:637 -#: ../../source/training/curriculum/curriculum.rst:1278 -msgid "Criteria #1: building must be outside affected area" -msgstr "" - -# 18fe209458be409d8fcd15f2310a882c -# e4097b1cc8f04e34a190eb5333b666f2 -#: ../../source/training/curriculum/curriculum.rst:639 -#: ../../source/training/curriculum/curriculum.rst:1280 -msgid "" -"Criteria #2: location must have direct access to a primary/secondary road " -"within 20 metres" -msgstr "" - -# 612026d51e8e4b8a90843b34a45a75df -# 942eae00e05e43f09158ad92b045898c -#: ../../source/training/curriculum/curriculum.rst:641 -#: ../../source/training/curriculum/curriculum.rst:1282 -msgid "Criteria #3: building must have an area of at least 225 square metres" -msgstr "" - -# 3888c2ebd66c4f76bad44b2c809d1853 -# 67922ddcbe3f4031ba0ec851ac95e9ac -#: ../../source/training/curriculum/curriculum.rst:645 -#: ../../source/training/curriculum/curriculum.rst:1288 -msgid "Understand the concept of shortest path and fastest route" -msgstr "" - -# 34580bcdc8e045f6ab9f006f6f465195 -# 464b1c0dfe0c46b3b0e943995151957d -#: ../../source/training/curriculum/curriculum.rst:646 -#: ../../source/training/curriculum/curriculum.rst:1289 -msgid "Use the Road Graph plugin" -msgstr "" - -# 942bb980ae8c4b5ea45ac4e949ba71b2 -# f70fa44194de418d9283acb63f2425c2 -#: ../../source/training/curriculum/curriculum.rst:647 -#: ../../source/training/curriculum/curriculum.rst:1290 -msgid "Set up speed and road direction" -msgstr "" - -# 3210ff2239df45e291a44b22ae0bf1ec -# e1bb173536ad4abd8ce84258cb770fca -#: ../../source/training/curriculum/curriculum.rst:648 -#: ../../source/training/curriculum/curriculum.rst:1291 -msgid "Determine start and destination points" -msgstr "" - -# a8be621f9f0b45a78f2551fe77184e3c -# fe1acd4bec0d4a3e88d8ead299c58dc4 -#: ../../source/training/curriculum/curriculum.rst:649 -#: ../../source/training/curriculum/curriculum.rst:1292 -msgid "Conduct route analysis and selection" -msgstr "" - -# 5c1466d81d7a45269b31d6f19106019b -# ce1177ef64c2413bb963a82fb2a9d853 -#: ../../source/training/curriculum/curriculum.rst:644 -#: ../../source/training/curriculum/curriculum.rst:1287 -msgid "**Planning an Evacuation Route**" -msgstr "" - -# 4066ad16d6944b19b50f484f0f899ccd -# 059812aa5455473fb32f6249bcec641d -#: ../../source/training/curriculum/curriculum.rst:646 -#: ../../source/training/curriculum/curriculum.rst:1289 -msgid "Road graph plugin" -msgstr "" - -# 702089ef9a7f4f03bfa6fc73911098a1 -# 8e2a171351f54baeafbb3bea7c4dd109 -#: ../../source/training/curriculum/curriculum.rst:647 -#: ../../source/training/curriculum/curriculum.rst:1290 -msgid "Editing plugin settings" -msgstr "" - -# c642a9f7b26d4b1c8c33704fb6ab4a84 -# 83663386945f444bae9217c8ad0cf241 -#: ../../source/training/curriculum/curriculum.rst:648 -#: ../../source/training/curriculum/curriculum.rst:1291 -msgid "Choosing start and destination points" -msgstr "" - -# 6b93c93b654943e6b9e3b36e4eefb057 -# eb610c4a7759464097357540deb329df -#: ../../source/training/curriculum/curriculum.rst:652 -#: ../../source/training/curriculum/curriculum.rst:1297 -msgid "" -"Understand the definition of damages, losses and their calculation based on " -"community exposure data" -msgstr "" - -# 91ed60e43041491c886a954000969153 -# 42e7fc6360da43ea953971a0b5e8f2b9 -#: ../../source/training/curriculum/curriculum.rst:654 -#: ../../source/training/curriculum/curriculum.rst:1299 -msgid "Understand damage and losses assessment values based on BNPB and BPBD" -msgstr "" - -# 559347b346b14512979bd5c0de427c5d -# fe0de1d4d425477da0436d30272c874f -#: ../../source/training/curriculum/curriculum.rst:656 -#: ../../source/training/curriculum/curriculum.rst:1301 -msgid "Make a damage and losses map" -msgstr "" - -# df4c9f6169e443ada4631d310bcbef39 -# 40452bab0d464aebb6b6f6ae6bc83db4 -#: ../../source/training/curriculum/curriculum.rst:657 -#: ../../source/training/curriculum/curriculum.rst:1302 -msgid "Calculate damage area" -msgstr "" - -# 55e8a58410394fd68afca5e60b68ef6f -# 1dbf6c68d9e54b118fb51af31e50d36a -#: ../../source/training/curriculum/curriculum.rst:658 -#: ../../source/training/curriculum/curriculum.rst:1303 -msgid "" -"Manipulate attribute data of affected features to obtain damage values for " -"each object" -msgstr "" - -# a19d05e4622d4e7bb7d0eb796d2645e2 -# b0d6c60530dc4a2c8bd18a852ffdfde1 -#: ../../source/training/curriculum/curriculum.rst:660 -#: ../../source/training/curriculum/curriculum.rst:1305 -msgid "" -"Manipulate attribute data of affected features to obtain loss values for " -"each object" -msgstr "" - -# d366c25738694e4ea01d254b4359e850 -# d51a1d7cb8aa4a8fba12b79b78943962 -#: ../../source/training/curriculum/curriculum.rst:662 -#: ../../source/training/curriculum/curriculum.rst:1307 -msgid "" -"Group attribute data for administrative areas (hamlet village, subdistrict)" -msgstr "" - -# 8e665255b38644ae8e1483801e4cbf73 -# 10541f1ef3a84874869644888998616c -#: ../../source/training/curriculum/curriculum.rst:664 -#: ../../source/training/curriculum/curriculum.rst:1309 -msgid "" -"Combine attribute data for administrative areas (hamlet village, subdistrict)" -msgstr "" - -# 8c39d1adf791404e981a05aa6c1a249c -# 49782cfdb4b7407f94a35f4ba87553de -#: ../../source/training/curriculum/curriculum.rst:666 -#: ../../source/training/curriculum/curriculum.rst:1311 -msgid "Present damage and loss values using charts" -msgstr "" - -# 533b338a09374f0f810c63c1fa360d26 -# 393b978e8baf4b369d46b21c105e6dc8 -#: ../../source/training/curriculum/curriculum.rst:651 -#: ../../source/training/curriculum/curriculum.rst:1296 -msgid "**Calculating Damages and Losses**" -msgstr "" - -# 364336fd09eb41c1861c8992cfc00bf8 -# e6895cb76f834ef5976d6641bf9dce52 -#: ../../source/training/curriculum/curriculum.rst:653 -#: ../../source/training/curriculum/curriculum.rst:1298 -msgid "BPBD damage assessment guide" -msgstr "" - -# 635a04da06404622af0f0cdc5afe5ea7 -# 2972aa6f53904f4586f8f9a524f545ab -#: ../../source/training/curriculum/curriculum.rst:654 -#: ../../source/training/curriculum/curriculum.rst:1299 -msgid "Damage and losses assessment map" -msgstr "" - -# 6dbb6dcab2b74e63b6f15989836c16fb -# d42c57bc783547b2b4ac3f9ddc12f51e -#: ../../source/training/curriculum/curriculum.rst:655 -#: ../../source/training/curriculum/curriculum.rst:1300 -msgid "Calculating damage area" -msgstr "" - -# e1762befcf9c48ba8713049695fb3a6e -# 3c02e7c6e99a41a694f504bd4c255f03 -#: ../../source/training/curriculum/curriculum.rst:656 -#: ../../source/training/curriculum/curriculum.rst:1301 -msgid "Calculating damages using the Group Stats plugin" -msgstr "" - -# 6a21e216980042089636bea72091fe22 -# ebb738fe28d24d87ac5e08d06cd27dcf -#: ../../source/training/curriculum/curriculum.rst:657 -#: ../../source/training/curriculum/curriculum.rst:1302 -msgid "Calculating losses" -msgstr "" - -# da4484316cee43bdac1d17f8b49a4bdf -# d5a5a2673fc143ea8dc5006456a35306 -#: ../../source/training/curriculum/curriculum.rst:658 -#: ../../source/training/curriculum/curriculum.rst:1303 -msgid "Calculating losses using the Group Stats plugin" -msgstr "" - -# 52b14913314f476dae69d2ff889b8f6e -# 4bb395b31ff84a15ac98d791bff3b457 -#: ../../source/training/curriculum/curriculum.rst:659 -#: ../../source/training/curriculum/curriculum.rst:1304 -msgid "Joining data" -msgstr "" - -# 1de5f6641bd04dcb989c44ffb827b141 -# 1082c617d3d74cc1b3a7cab524eac3a2 -#: ../../source/training/curriculum/curriculum.rst:660 -#: ../../source/training/curriculum/curriculum.rst:1305 -msgid "Creating a chart" -msgstr "" - -# 16ea61af853c44f3a34845594dcf6fcd -#: ../../source/training/curriculum/curriculum.rst:669 -msgid "" -"**Training of Trainer Workshop for Contingency Planning using OSM, QGIS,** " -"**and** |project_name|" -msgstr "" - -# e638ef6fca504114ba439789c487a5f3 -#: ../../source/training/curriculum/curriculum.rst:672 -msgid "" -"**Standard Competency:** Participant can be a workshop facilitator to teach " -"Data collection and Data Analysis through OSM, QGIS and |project_name| in " -"their respective region." -msgstr "" - -# 3e3dc69a9a724b05a1a43a87760e1998 -# 7318aa448a5e4eb186a72bd455a91ad2 -#: ../../source/training/curriculum/curriculum.rst:680 -#: ../../source/training/curriculum/curriculum.rst:1326 -msgid "Explain the principles of adult learning" -msgstr "" - -# 300061975b5d46929f23b28936caa7bd -#: ../../source/training/curriculum/curriculum.rst:681 -msgid "Analyse the characteristics of adult learning" -msgstr "" - -# 7e6c84c96af04ed3b1a9cd47629729aa -#: ../../source/training/curriculum/curriculum.rst:682 -msgid "" -"Determine strategies, teaching methods or techniques that apply in adult " -"learning" -msgstr "" - -# 057468bedcf74c3fa8adf9eea3b4b0db -#: ../../source/training/curriculum/curriculum.rst:684 -msgid "Evaluate adult learning" -msgstr "" - -# 5fa27af057164b97b92bb6037140a393 -# 5c23680828d944b58218b9f4bab85cf1 -#: ../../source/training/curriculum/curriculum.rst:679 -#: ../../source/training/curriculum/curriculum.rst:1325 -msgid "**Adult Learning**" -msgstr "" - -# 8f1ac78bef264ec780dbc1570da281bf -# b7c50b3dd025466d907b942dac394e95 -#: ../../source/training/curriculum/curriculum.rst:681 -#: ../../source/training/curriculum/curriculum.rst:1327 -msgid "Principles of adult learning" -msgstr "" - -# 4f71e488c3e14c6a874f8b093aa7ea3b -# 78b49a10178e49169a7d2e2bee527e63 -#: ../../source/training/curriculum/curriculum.rst:682 -#: ../../source/training/curriculum/curriculum.rst:1328 -msgid "Characteristics of adult learning" -msgstr "" - -# c78abbdbabe746eea9f781ec6315bc54 -# 0aad13157ff246b9ac2f314c43c3aba3 -#: ../../source/training/curriculum/curriculum.rst:683 -#: ../../source/training/curriculum/curriculum.rst:1329 -msgid "Strategies, teaching methods or techniques that apply adult learning" -msgstr "" - -# e33e9ff567cd4b008edda0545863e6dc -# f16de883429e48c1970c9ba5bf0210f6 -#: ../../source/training/curriculum/curriculum.rst:685 -#: ../../source/training/curriculum/curriculum.rst:1331 -msgid "Adult learning evaluation" -msgstr "" - -# b4908eda0ba34d32aec4bb184a3c555e -# d05e8e8cadb14c7495768ed814befb4c -#: ../../source/training/curriculum/curriculum.rst:689 -#: ../../source/training/curriculum/curriculum.rst:1337 -msgid "Describe the principles of effective communication" -msgstr "" - -# dfce7d1edba44897921415826247aa90 -#: ../../source/training/curriculum/curriculum.rst:690 -msgid "Describe the communication models in workshops" -msgstr "" - -# f19a938c387843e5aae06643bb24407e -#: ../../source/training/curriculum/curriculum.rst:691 -msgid "Demonstrate the basic skills component of teaching workshops" -msgstr "" - -# 906f18c1507143abb138980bfe7375af -# 5a467946e55347408ac9e96f3a289cd0 -#: ../../source/training/curriculum/curriculum.rst:688 -#: ../../source/training/curriculum/curriculum.rst:1336 -msgid "**Communication skills**" -msgstr "" - -# 1061f8cb0f62422890b36c67d14be9a5 -# b7e131e6bc284b30be643acfd8d12856 -#: ../../source/training/curriculum/curriculum.rst:690 -#: ../../source/training/curriculum/curriculum.rst:1338 -msgid "Principles of effective communication" -msgstr "" - -# a72a05147ce84788af3dffa1022d0a43 -# 9c82df1a30214f1ab5dfffc78f6b2edb -#: ../../source/training/curriculum/curriculum.rst:691 -#: ../../source/training/curriculum/curriculum.rst:1339 -msgid "Communication models in workshop" -msgstr "" - -# b6ffd9f5fe4544dab5380a5e4bb4c954 -# 7ec5c3d4679d4b8a95a42f2a20dc5017 -#: ../../source/training/curriculum/curriculum.rst:692 -#: ../../source/training/curriculum/curriculum.rst:1340 -msgid "Basic teaching skills component" -msgstr "" - -# e293698b7ecf41579c36584fdbd8ab91 -#: ../../source/training/curriculum/curriculum.rst:694 -msgid "" -"Practise Data Collection and Analysis through OSM, QGIS, and InaSAFE workshop" -msgstr "" - -# 3c1ca7e887104b65b27ccdf467d2e48d -# f913f569c7774d3c999c802219dcd543 -#: ../../source/training/curriculum/curriculum.rst:697 -#: ../../source/training/curriculum/curriculum.rst:1347 -msgid "" -"Practise data collection and analysis through OSM, QGIS and InaSAFE workshop " -"using adult learning" -msgstr "" - -# 311ab8d4731a473dadc1f6bef57700d0 -#: ../../source/training/curriculum/curriculum.rst:699 -msgid "" -"Practise communication skills in data collection and analysis through OSM, " -"QGIS and InaSAFE workshop" -msgstr "" - -# a466edbdff7d433ab418d24556252d7c -#: ../../source/training/curriculum/curriculum.rst:694 -msgid "" -"**Facilitator Skills for Data Collection and Analysis through OSM, QGIS, and " -"InaSAFE workshop**" -msgstr "" - -# 9a6f0112bb1847c1821ebc086335d6d7 -# 42949cbf46404785a62aca2f99f1afc5 -#: ../../source/training/curriculum/curriculum.rst:697 -#: ../../source/training/curriculum/curriculum.rst:1347 -msgid "" -"Implementation of adult learning in data collection and analysis through " -"OSM, QGIS, and InaSAFE workshop" -msgstr "" - -# 4adada567ec54ceebe19ebd9a1e20beb -# 9b6afee56ebc49238b210873da15c1c4 -#: ../../source/training/curriculum/curriculum.rst:699 -#: ../../source/training/curriculum/curriculum.rst:1349 -msgid "" -"Implementation of communication skills data collection and analysis through " -"OSM, QGIS, and InaSAFE workshop" -msgstr "" - -# b98bacc1724343f998ca2b45394b265a -#: ../../source/training/curriculum/curriculum.rst:704 -msgid "F. Curriculum Structure" -msgstr "" - -# 6571b6b97012479eb5457fc0522d689a -#: ../../source/training/curriculum/curriculum.rst:706 -msgid "Based on the curriculum, program structure is designed as follows." -msgstr "" - -# e0904d946e344f2088eafbd44b1d5b91 -#: ../../source/training/curriculum/curriculum.rst:708 -msgid "**1. Data Collection Using OSM Beginner Level**" -msgstr "" - -# e0c637e8ce184a18bd7db33ceabc59f6 -# 2ffeee84f7b049ae98b3cdd874bd0db3 -# da7283093673477f9950dc1c84c9c4a7 -# ae1a6543ee5f4f0a8c8bd67f40e324ec -# e3a703f315ea4c95b31168004cee0142 -#: ../../source/training/curriculum/curriculum.rst:711 -#: ../../source/training/curriculum/curriculum.rst:747 -#: ../../source/training/curriculum/curriculum.rst:793 -#: ../../source/training/curriculum/curriculum.rst:825 -#: ../../source/training/curriculum/curriculum.rst:858 -msgid "No" -msgstr "" - -# 241363cc731f45b29d99d40144d717eb -# c0c4515a945a42b88551ea8f5af08176 -# 5e366f8d1fe4478081d686130448213f -# 6451e0ab18494e78b0dc4536edb556e1 -# 1fa4628a32204b39827fdd3cd9719f1f -#: ../../source/training/curriculum/curriculum.rst:711 -#: ../../source/training/curriculum/curriculum.rst:747 -#: ../../source/training/curriculum/curriculum.rst:793 -#: ../../source/training/curriculum/curriculum.rst:825 -#: ../../source/training/curriculum/curriculum.rst:858 -msgid "Workshop Material" -msgstr "" - -# 927d2d6b42534bcb9e3ce4069f6543c3 -# 6534ac2cec1a4ea2824febadbd6a5d84 -# a201f548f8464fa7815ce08e1fdef1f9 -#: ../../source/training/curriculum/curriculum.rst:711 -#: ../../source/training/curriculum/curriculum.rst:825 -#: ../../source/training/curriculum/curriculum.rst:858 -msgid "Time (learning hour) @ 45Minutes" -msgstr "" - -# f0165b592cac47eb94bc24f8f3d931e1 -# 3980dde52e924edb88e4717a3226e21d -# 37922806efbd4a79a9b6485b4f80bb13 -# e41d9acf5fc0472fba7adbd40cecebac -# 7a9ce82d7da6468abc4e8049144a83fc -#: ../../source/training/curriculum/curriculum.rst:713 -#: ../../source/training/curriculum/curriculum.rst:749 -#: ../../source/training/curriculum/curriculum.rst:795 -#: ../../source/training/curriculum/curriculum.rst:827 -#: ../../source/training/curriculum/curriculum.rst:860 -msgid "**General Program**" -msgstr "" - -# b06b981385bd464eb95ceea31c193cba -# b4bb43804e9043bc9cee49066f3d98c0 -# a919c80521c64be19922835ef3ab1345 -# 503cf377bb114d14a9ada5f7125f27de -# 0742df8adbc947ea924d891780b1ffea -#: ../../source/training/curriculum/curriculum.rst:713 -#: ../../source/training/curriculum/curriculum.rst:749 -#: ../../source/training/curriculum/curriculum.rst:795 -#: ../../source/training/curriculum/curriculum.rst:827 -#: ../../source/training/curriculum/curriculum.rst:860 -msgid "**1**" -msgstr "" - -# 7d7bc2fbbe394c4095bd198e0f400570 -#: ../../source/training/curriculum/curriculum.rst:715 -msgid "BNPBPolicy" -msgstr "" - -# 3b8de8a43d624b83a51b277316e88e08 -# 3e5d7423517f47d48017fb7035eb9349 -# fc96f64f2a7f4049abb544b57e00e6d1 -# 898e7580541a4c6c8ce684004e8ef603 -# 34be3fe2127c4fc88c2b75c7d1ce9c15 -# ef1c76adf2ac4868874aaace846803f8 -# a1ab7d7151c64a85afb101f18212b6ad -# cd51f120512442cf871d8af3789408cf -# 869bc63032ff4ea69a83029bc1bb6dfd -# 844d907505504899b25a090aae2e910c -# 7255b05cd5a8474fae1ee67bb6f8ebec -# 6986bd45c4e649c38695b7a9a3c91eed -# 2c90c5cf6fa74c51840d40a06a12d1f1 -# f7e291694cbe481280d440da0f682db5 -#: ../../source/training/curriculum/curriculum.rst:715 -#: ../../source/training/curriculum/curriculum.rst:739 -#: ../../source/training/curriculum/curriculum.rst:751 -#: ../../source/training/curriculum/curriculum.rst:755 -#: ../../source/training/curriculum/curriculum.rst:757 -#: ../../source/training/curriculum/curriculum.rst:779 -#: ../../source/training/curriculum/curriculum.rst:785 -#: ../../source/training/curriculum/curriculum.rst:797 -#: ../../source/training/curriculum/curriculum.rst:817 -#: ../../source/training/curriculum/curriculum.rst:829 -#: ../../source/training/curriculum/curriculum.rst:849 -#: ../../source/training/curriculum/curriculum.rst:862 -#: ../../source/training/curriculum/curriculum.rst:875 -#: ../../source/training/curriculum/curriculum.rst:877 -msgid "1" -msgstr "" - -# bd56abb246bb4ca083bfba7513f07946 -# dd890256b8ae4f96ba03dc868436241a -# b3af90d681ab49d883f99a27b53b37e1 -# 577e471ea33a4c9ba5d14bd7b7589641 -# 70e0a8d1b90747b99ca363ca616f0d7b -#: ../../source/training/curriculum/curriculum.rst:717 -#: ../../source/training/curriculum/curriculum.rst:753 -#: ../../source/training/curriculum/curriculum.rst:799 -#: ../../source/training/curriculum/curriculum.rst:831 -#: ../../source/training/curriculum/curriculum.rst:864 -msgid "**Main Program**" -msgstr "" - -# 020703f479e048f89af03555f4399e24 -# 226bf9c806be445e8eaa7cb328f4efc6 -#: ../../source/training/curriculum/curriculum.rst:717 -#: ../../source/training/curriculum/curriculum.rst:753 -msgid "**46**" -msgstr "" - -# 040832fd86cf48508d1714bb4ed83ccf -#: ../../source/training/curriculum/curriculum.rst:719 -msgid "The OpenStreetMap website" -msgstr "" - -# 9626145e1ee34915b104de8f7f32df91 -# af78f45ca5ac41c9ad6f982e4a75b301 -# b51790b049114070a0a3a3a5d294001e -# bff41b143de7430595663310d368f64b -# caa1f1047ba64a02807058985ca773ef -# 8e65b4e3a25041da9b8b01186a76c75f -# 031ccfcd81a54844b5189681c8904140 -# 0e07585a726440af8c10399cb930a005 -# 5af61b2b176547b38ececc222170e050 -# d5159ce5f2694a698838bfbcdc67c935 -# 9a2b7561dce44cf194999a0a7d323802 -# d5693a0b4f184958a706409310d2cee8 -#: ../../source/training/curriculum/curriculum.rst:719 -#: ../../source/training/curriculum/curriculum.rst:731 -#: ../../source/training/curriculum/curriculum.rst:733 -#: ../../source/training/curriculum/curriculum.rst:737 -#: ../../source/training/curriculum/curriculum.rst:761 -#: ../../source/training/curriculum/curriculum.rst:763 -#: ../../source/training/curriculum/curriculum.rst:783 -#: ../../source/training/curriculum/curriculum.rst:815 -#: ../../source/training/curriculum/curriculum.rst:847 -#: ../../source/training/curriculum/curriculum.rst:866 -#: ../../source/training/curriculum/curriculum.rst:868 -#: ../../source/training/curriculum/curriculum.rst:870 -msgid "2" -msgstr "" - -# dcf79fc423eb45fb9efc50d114bec57b -#: ../../source/training/curriculum/curriculum.rst:721 -msgid "Working with OSM" -msgstr "" - -# 438c4b06ca384084ae227663a1d1ece5 -# 29766307dffb4f7688b959c28c3dcb80 -# ee5e7cdb510746abb86d339b77b6d874 -# 70db779ba8a94f53adfbcc1beaa6a79d -# 6acf5a93839348729ef847b0764b30ed -#: ../../source/training/curriculum/curriculum.rst:721 -#: ../../source/training/curriculum/curriculum.rst:723 -#: ../../source/training/curriculum/curriculum.rst:759 -#: ../../source/training/curriculum/curriculum.rst:771 -#: ../../source/training/curriculum/curriculum.rst:835 -msgid "4" -msgstr "" - -# 103a7a4da5464e409c7012ff33ac9693 -# 31014b1e248443fd8e74002c73607fbb -# 35b926017a80451b9635693a483e9a9d -#: ../../source/training/curriculum/curriculum.rst:723 -msgid "Working with JOSM" -msgstr "" - -# 238d16e6a8d441009fc1793057d85d70 -#: ../../source/training/curriculum/curriculum.rst:725 -msgid "Using GPS" -msgstr "" - -# 40bceda817714145ab29f5f7603ceb67 -# 0ea4208c6f4e42c6903927e69adf0f68 -#: ../../source/training/curriculum/curriculum.rst:725 -#: ../../source/training/curriculum/curriculum.rst:727 -msgid "10" -msgstr "" - -# 276d506c14764ba7abe8e4ab2e979705 -#: ../../source/training/curriculum/curriculum.rst:727 -msgid "Field Papers" -msgstr "" - -# 6bc1469fd75345a7bae735b858dd3f0f -#: ../../source/training/curriculum/curriculum.rst:729 -msgid "Editing OpenStreetMap with JOSM" -msgstr "" - -# 2760321161f941ba9d9ca3e5d50888c4 -#: ../../source/training/curriculum/curriculum.rst:729 -msgid "12" -msgstr "" - -# e9f03ed9fdd94521952afec6ad1401fb -#: ../../source/training/curriculum/curriculum.rst:731 -msgid "Imagery Offset" -msgstr "" - -# a5b9bb00de124fb591e108cf72d3db14 -#: ../../source/training/curriculum/curriculum.rst:733 -msgid "Getting OSM Data" -msgstr "" - -# ce08fef6928141feb0f2aec64948afa0 -# e1fe04d7f1bd4362b9122d79cb94082a -# feb11a24d9e64a6d8e0b2dbb6ba037c7 -# b8c8273f90f44148976f01083b82e0a7 -# 0416a582aca4492bb6a4bb67e858468f -#: ../../source/training/curriculum/curriculum.rst:735 -#: ../../source/training/curriculum/curriculum.rst:781 -#: ../../source/training/curriculum/curriculum.rst:813 -#: ../../source/training/curriculum/curriculum.rst:845 -#: ../../source/training/curriculum/curriculum.rst:873 -msgid "**Supporting Program**" -msgstr "" - -# 11c5cc1abc0a42eab75a8ed2d3b657e4 -# adec88dcd9a743aea55b81d2f6064e1c -# 5b78015684594ef091fe91b104c038d4 -# d8948261e62c4fd1801ea0cca24c3526 -#: ../../source/training/curriculum/curriculum.rst:735 -#: ../../source/training/curriculum/curriculum.rst:781 -#: ../../source/training/curriculum/curriculum.rst:813 -#: ../../source/training/curriculum/curriculum.rst:845 -msgid "**3**" -msgstr "" - -# 815c641cc9f14614ab2385bf7be56ca3 -# 8677e547972e4c37bb2594a248a5ba4f -# e499edb1aaad455a9fd4621469039cae -# e912a35b36fd4d919e549b0b62affd5a -# d256d22e206a48f8a6c40512ea62b7df -#: ../../source/training/curriculum/curriculum.rst:737 -#: ../../source/training/curriculum/curriculum.rst:783 -#: ../../source/training/curriculum/curriculum.rst:815 -#: ../../source/training/curriculum/curriculum.rst:847 -#: ../../source/training/curriculum/curriculum.rst:875 -msgid "Opening and Closing" -msgstr "" - -# 9542fcb23164476da1e20152753138d8 -# 0049e5914127412695ed49cd5137cf8e -# a4e7f500ee5e48c79e9b880ee19244ba -# 0fcf66e9842d43a7bcc72399cc207783 -# 8482482c31934b868cd33f7799945b49 -#: ../../source/training/curriculum/curriculum.rst:739 -#: ../../source/training/curriculum/curriculum.rst:785 -#: ../../source/training/curriculum/curriculum.rst:817 -#: ../../source/training/curriculum/curriculum.rst:849 -#: ../../source/training/curriculum/curriculum.rst:877 -msgid "Workshop Evaluation" -msgstr "" - -# 80376da93db84f63b55305e4f2db351a -# 4640b471febd4c369888ade6539f4fed -# c5f600283aa14b9fab8c0c247e8d8eac -# b7c8e1d1b9da4da7bfc24f1d0e91da86 -# 5774280d79cf455b8d2183a4f68b190a -#: ../../source/training/curriculum/curriculum.rst:741 -#: ../../source/training/curriculum/curriculum.rst:787 -#: ../../source/training/curriculum/curriculum.rst:819 -#: ../../source/training/curriculum/curriculum.rst:851 -#: ../../source/training/curriculum/curriculum.rst:879 -msgid "Total" -msgstr "" - -# 307f14dc7bb1409389c77a087b19785a -# dfd5ec05e0c842aa9d41976624d8b085 -# 66ffc2b4685d45d994d71dc7b9c9247d -#: ../../source/training/curriculum/curriculum.rst:741 -#: ../../source/training/curriculum/curriculum.rst:787 -#: ../../source/training/curriculum/curriculum.rst:851 -msgid "50" -msgstr "" - -# 51b068e863634e19aed12ef3a2ee19c1 -#: ../../source/training/curriculum/curriculum.rst:744 -msgid "**2. Data Analysis Using QGIS/** |project_name| **Beginner Level**" -msgstr "" - -# b30eed77ddaf47cc903411ef0d1e68e3 -# c1c38afc52564483962a342e899b4a06 -#: ../../source/training/curriculum/curriculum.rst:747 -#: ../../source/training/curriculum/curriculum.rst:793 -msgid "Time (learning hour) @ 45 Minutes" -msgstr "" - -# 150e61da468446f59a541db6793a58fe -# be216eaacb1e428bbabb4eca2bb736b4 -# 6b83fc58f8fb461db0730529ab9c60df -# 42d3cf0db8b44fd394451b7418bcaa22 -#: ../../source/training/curriculum/curriculum.rst:751 -#: ../../source/training/curriculum/curriculum.rst:797 -#: ../../source/training/curriculum/curriculum.rst:829 -#: ../../source/training/curriculum/curriculum.rst:862 -msgid "BNPB Policy" -msgstr "" - -# ac2ec09920484a3a80a39b22bc923305 -# 947e552a332044deb92314a45392be6f -# e54fa4f364a84311afa7798113fd1f8b -# e233a170f6524642b0e5003719d32f6b -#: ../../source/training/curriculum/curriculum.rst:755 -msgid "Using GIS to develop scenario for contingency planning" -msgstr "" - -# 870d72ec9e9b48e9bad10185e715391d -# 41f294b3e27140d09b3eba0073f132b5 -#: ../../source/training/curriculum/curriculum.rst:757 -msgid "" -"Explaining the benefit of QGIS and InaSAFE for developing realistic scenario " -"for contingency planning" -msgstr "" - -# 682777357c95417bbaf0835024fdd457 -# 45f647449d8f436d856f60cccc436d53 -# b130fbaddb484281b76c728504206878 -# 735457d52a7e415fb266d3548060ad11 -#: ../../source/training/curriculum/curriculum.rst:759 -msgid "Installing QGIS and explaining QGIS user interface" -msgstr "" - -# 34eeca35a358433b95d4ff40e3712b49 -# fca4cb5e510f44fcb8fd537b199807c9 -#: ../../source/training/curriculum/curriculum.rst:761 -msgid "Using QGIS plugins" -msgstr "" - -# 1fd9feb07fbe427c84e6c0c715825559 -# edaa75e384ac4767acf2e27ed01f7f71 -#: ../../source/training/curriculum/curriculum.rst:763 -msgid "Determining projection system and transformation in QGIS" -msgstr "" - -# b95079cbcde64f1c8b64bf954d635bce -# 2fbfab94bd804d4492d2794b255db6b0 -# 82fb5a752bd64a618ee830e3f1d86bd0 -# dce8de4b51a94bc79d048d9308b4b35a -#: ../../source/training/curriculum/curriculum.rst:765 -msgid "Working with vector data" -msgstr "" - -# 87f7b6e688e04f829f45c92b10f61bca -# 7db290b6a7b54c6ab433aee34e6c6b9e -# 642be0225c184554b6d4bb2af413d11a -# e0f32ffb0c8f416bbf638fcf1c963644 -# 1e18ee72bc724b44b2176360ba16920f -# 9f74f162f2934ee9a08b2adf3bddded5 -# 446bec96379f43b7bed9f7957829f869 -# a3459c4e61544878929ea3e6b2ba2881 -#: ../../source/training/curriculum/curriculum.rst:765 -#: ../../source/training/curriculum/curriculum.rst:767 -#: ../../source/training/curriculum/curriculum.rst:769 -#: ../../source/training/curriculum/curriculum.rst:805 -#: ../../source/training/curriculum/curriculum.rst:809 -#: ../../source/training/curriculum/curriculum.rst:811 -#: ../../source/training/curriculum/curriculum.rst:833 -#: ../../source/training/curriculum/curriculum.rst:839 -msgid "3" -msgstr "" - -# 52b2f6dfd32c49cca754fee0ef3931bb -#: ../../source/training/curriculum/curriculum.rst:767 -msgid "Categorising and creating label from vector data" -msgstr "" - -# db5ab23971ca4d858a06fe619ea38b88 -# 58e5bc2856ab4054912045781c826173 -# ce41cfc55ac647fdab1a8dcae1612d7c -# 9fc97ae6270943d7a81e96a404884a84 -#: ../../source/training/curriculum/curriculum.rst:769 -msgid "Working with raster data" -msgstr "" - -# 5764776fba814b738a35934f9e1492d1 -# 8e566e89c1204f2f8a2aac5620c30958 -# df6905a4db644cd19cadae9160825551 -# e31cf61c77ec4e2a820b9fbd4771a3a7 -#: ../../source/training/curriculum/curriculum.rst:771 -msgid "Creating and editing new vector layer" -msgstr "" - -# 40944623904948ac820ac850ce6402f5 -#: ../../source/training/curriculum/curriculum.rst:773 -msgid "Analysing vector data to solve problem" -msgstr "" - -# 280c48cb9c4e4721bab859f5edbec1d8 -# d2660d8aa5d94eeda907207885873812 -# 789d20b7d90b407dae85b343faa407c6 -# 8ec8f53781f945938eab9d2200de0d3d -#: ../../source/training/curriculum/curriculum.rst:773 -#: ../../source/training/curriculum/curriculum.rst:801 -#: ../../source/training/curriculum/curriculum.rst:803 -#: ../../source/training/curriculum/curriculum.rst:843 -msgid "6" -msgstr "" - -# 1f90e4da1181494dbe8c1f0c5fbe7246 -#: ../../source/training/curriculum/curriculum.rst:775 -msgid "Creating maps with Map Composer" -msgstr "" - -# 6daae4446aaa40b0a99d6e044855c352 -# d4f7f6502a0442b39d2be1d2db77b0b1 -#: ../../source/training/curriculum/curriculum.rst:775 -#: ../../source/training/curriculum/curriculum.rst:777 -msgid "8" -msgstr "" - -# e3b3d49200b94a5db8ac1ab8b60aea59 -# 93c256d45235434f8c37a4dd85355bfb -#: ../../source/training/curriculum/curriculum.rst:777 -msgid "Using InaSAFE" -msgstr "" - -# d3da91052d5540d8a96456b2f3f9d3a7 -#: ../../source/training/curriculum/curriculum.rst:779 -msgid "" -"Keeping interaction and communication to support QGIS and InaSAFE in " -"Indonesia" -msgstr "" - -# be9b70e6f82345adae8d3d8726543d4c -#: ../../source/training/curriculum/curriculum.rst:790 -msgid "**3. Data Collection Using OSM Intermediate Level**" -msgstr "" - -# ed2bf86b0a9c4a69b3f28b502c877a28 -# 9bf4f94fcb9741ecbd7f1409b3027042 -#: ../../source/training/curriculum/curriculum.rst:799 -#: ../../source/training/curriculum/curriculum.rst:831 -msgid "**26**" -msgstr "" - -# 808bf48a540d4b30943587ad3af696a5 -#: ../../source/training/curriculum/curriculum.rst:801 -msgid "Advanced Editing" -msgstr "" - -# ef3cecd88ff6435e9f6ec62d1f041f3e -#: ../../source/training/curriculum/curriculum.rst:803 -msgid "Quality Assurance" -msgstr "" - -# fd386cec97cd4b25ab371bbd1f852b3d -#: ../../source/training/curriculum/curriculum.rst:805 -msgid "Resolving conflicts when uploading OSM Data" -msgstr "" - -# 9e3231cc2bfd4a09bfda269a5881952b -#: ../../source/training/curriculum/curriculum.rst:807 -msgid "XML and Presets in JOSM" -msgstr "" - -# eed055c295254d099f22505984be48c0 -# b004367a8ccc413fafad86d7f3794175 -# e474e7314f93402f95f0e09ca5793426 -#: ../../source/training/curriculum/curriculum.rst:807 -#: ../../source/training/curriculum/curriculum.rst:837 -#: ../../source/training/curriculum/curriculum.rst:841 -msgid "5" -msgstr "" - -# 715fc1b5928a4d179d610e6efcd781b8 -#: ../../source/training/curriculum/curriculum.rst:809 -msgid "Using Private Data Store" -msgstr "" - -# 617772f1f8a3419ca46ebba5964851cd -#: ../../source/training/curriculum/curriculum.rst:811 -msgid "OpenStreetMap Wiki" -msgstr "" - -# 1203f7eb48884686a77e145c2ed8ddc3 -#: ../../source/training/curriculum/curriculum.rst:819 -msgid "30" -msgstr "" - -# 7bdfab616d8a4f11a5f3b31721a49e60 -#: ../../source/training/curriculum/curriculum.rst:822 -msgid "**4. Data Analysis Using QGIS/** |project_name| **Intermediate Level**" -msgstr "" - -# 5aee4f6d61a344b0a94a5e37da32bf9a -#: ../../source/training/curriculum/curriculum.rst:833 -msgid "QGIS Review" -msgstr "" - -# 2f2b3c41e6b140d7a9d2f2ae0d5235f3 -# 6c46293e11b44d25a9bd98cabdb92e1e -# f32e91b52fd0479692445e58db602120 -#: ../../source/training/curriculum/curriculum.rst:835 -msgid "Preparing data and keywords for InaSAFE" -msgstr "" - -# 6baad7609cd94cfe9ed0db121c1b0c63 -#: ../../source/training/curriculum/curriculum.rst:837 -msgid "Planning temporary shelter" -msgstr "" - -# 462b52c558ef4b88bbb38d3f7f9e36a4 -#: ../../source/training/curriculum/curriculum.rst:839 -msgid "Planning evacuation route" -msgstr "" - -# 49bee58ef7d04bd0825922ba882156f5 -#: ../../source/training/curriculum/curriculum.rst:841 -msgid "Calculating damage and losses" -msgstr "" - -# 898c92fdb8504605a5b1389267cd2aa7 -# 59435f229c5e4307b986349408506f2d -# 50473fa867bb4eb4a99cd2739cfc893a -# 29380ebc62124249a41b6233435305be -# e4caa5be10394cafb1b21e689d0f1ffb -# bfc3e291b1c4478ea1a2aefe2dbe1f42 -# 5ff304c481d547da8ca6780df239c3d8 -# de0c789dce1c491db19a239533d03514 -# c9f44211e348454ea1230f2c788c403f -# 4eadba21c9814774888bdbc451d4fd1a -# d088e7f126f8464eb1e9cb7b49720d0e -# 94ff300e1d634bdab8c43c0c7c5a4f51 -# 9e4f34bdde1041e1a32fc8f4c7df9370 -# 39f6366addfd406d8ef8ee08937771e3 -#: ../../source/training/curriculum/curriculum.rst:843 -#: ../../source/training/curriculum/curriculum.rst:916 -#: ../../source/training/curriculum/curriculum.rst:926 -#: ../../source/training/curriculum/curriculum.rst:946 -#: ../../source/training/curriculum/curriculum.rst:981 -#: ../../source/training/curriculum/curriculum.rst:1040 -#: ../../source/training/curriculum/curriculum.rst:1081 -#: ../../source/training/curriculum/curriculum.rst:1090 -#: ../../source/training/curriculum/curriculum.rst:1099 -#: ../../source/training/curriculum/curriculum.rst:1126 -#: ../../source/training/curriculum/curriculum.rst:1141 -#: ../../source/training/curriculum/curriculum.rst:1169 -#: ../../source/training/curriculum/curriculum.rst:1183 -#: ../../source/training/curriculum/curriculum.rst:1344 -msgid "Practice" -msgstr "" - -# 1ad1ebe7519341eb888252da893e7110 -#: ../../source/training/curriculum/curriculum.rst:854 -msgid "" -"**5. Training of Trainer for Contingency Planning Using OSM, QGIS, and** |" -"project_name|" -msgstr "" - -# edde081661844f3fb1ef46efac07b91a -#: ../../source/training/curriculum/curriculum.rst:864 -msgid "**6**" -msgstr "" - -# 3719156645b546a38627244433bcfec0 -#: ../../source/training/curriculum/curriculum.rst:866 -msgid "Adult learning" -msgstr "" - -# 2e78b199aa2942cb80867c00e66b0e65 -#: ../../source/training/curriculum/curriculum.rst:868 -msgid "Communication skills" -msgstr "" - -# 2ee5047757cd4cc7b759301dd439ef9e -# c76f92ad5ab542cd9f381b392c2d4f9d -#: ../../source/training/curriculum/curriculum.rst:870 -msgid "" -"Practising Data Collection and Analysis through OSM, QGIS, and InaSAFE " -"workshop" -msgstr "" - -# 4e51961aa7984c0399cbbe5ff835889c -#: ../../source/training/curriculum/curriculum.rst:873 -msgid "**2**" -msgstr "" - -# f2a6e42568dd42e18206307f13e9247f -#: ../../source/training/curriculum/curriculum.rst:879 -msgid "9" -msgstr "" - -# 46067fe752c54c639c110d87d2c9f093 -#: ../../source/training/curriculum/curriculum.rst:883 -msgid "Syllabus" -msgstr "" - -# 33dedc76ab71474d8f1b50aa81c306fd -#: ../../source/training/curriculum/curriculum.rst:885 -msgid "" -"The syllabus is a learning plan for the workshop material that includes " -"basic competencies, indicators, core material, learning activity, " -"assessment, allocation of time and learning resources. The syllabus is based " -"on the structure of the program and allocation of a predetermined time." -msgstr "" - -# 2b46017b6b614c71ad200a9d683d39af -#: ../../source/training/curriculum/curriculum.rst:891 -msgid "" -"This syllabus is described in more detail in the toolkit/workshop manuals " -"separate from this curriculum. Therefore, the syllabus may be more easily " -"understood by reading the prepared toolkit." -msgstr "" - -# ceb672ef3f9c4da7aa69ff776423e1d5 -# 298b943c362e407a84275785fabdabbf -# 3aed3099e25644c883d91457fe8ca56b -# 4df9c064873b42dbaa8232879b26e386 -# cbcbd7003a654811aa63dabdd389b850 -#: ../../source/training/curriculum/curriculum.rst:903 -#: ../../source/training/curriculum/curriculum.rst:1020 -#: ../../source/training/curriculum/curriculum.rst:1165 -#: ../../source/training/curriculum/curriculum.rst:1249 -#: ../../source/training/curriculum/curriculum.rst:1321 -msgid "Learning Activity" -msgstr "" - -# 516eee4d0bf04c419f476975ed6ee686 -# 41ab9b2f83364c1892c982cde4ba2760 -# b8aa920679b141b586b4b4b5846decbc -# 514eed2297cb4b96b43f01ed2c68c431 -# 7b5a1d1589594756b248377e25fb5b2b -#: ../../source/training/curriculum/curriculum.rst:903 -#: ../../source/training/curriculum/curriculum.rst:1020 -#: ../../source/training/curriculum/curriculum.rst:1165 -#: ../../source/training/curriculum/curriculum.rst:1249 -#: ../../source/training/curriculum/curriculum.rst:1321 -msgid "Time Allocation" -msgstr "" - -# 96e9b2a7cb38486fa90b954e531a0439 -# a292645f196c405ea66f5786ad68457b -# 7806d92f91ba433aa552b7e2c3b80b51 -# 61d9cfa27a0c4808ae4ffaae9ad9ecb7 -# f538236e034c45bdac66285700e1e017 -#: ../../source/training/curriculum/curriculum.rst:903 -#: ../../source/training/curriculum/curriculum.rst:1020 -#: ../../source/training/curriculum/curriculum.rst:1165 -#: ../../source/training/curriculum/curriculum.rst:1249 -#: ../../source/training/curriculum/curriculum.rst:1321 -msgid "Assessment" -msgstr "" - -# 7c0a7c0972eb420fbaebeb2b9adb0765 -# 8162cd938fae48e1ad1b0c7073ad8b93 -# aea6b72092354402969a6c0c9dad0d32 -# 42b267769abf4eebb00d797c3a417955 -# 8babe2de55e04bddb0942f66e376de45 -#: ../../source/training/curriculum/curriculum.rst:903 -#: ../../source/training/curriculum/curriculum.rst:1020 -#: ../../source/training/curriculum/curriculum.rst:1165 -#: ../../source/training/curriculum/curriculum.rst:1249 -#: ../../source/training/curriculum/curriculum.rst:1321 -msgid "Learning Sources" -msgstr "" - -# 7148c607ffa548d1be3d5ed315227761 -#: ../../source/training/curriculum/curriculum.rst:905 -msgid "**1. Basic Concept of OpenStreetMap Website (2 Hours)**" -msgstr "" - -# 5a150e1fd68549b1913cece8e5cd1295 -#: ../../source/training/curriculum/curriculum.rst:907 -msgid "Quiz about OSM, data, and map" -msgstr "" - -# 82f90f26bd9d4d51b96fb2ac420b14b6 -#: ../../source/training/curriculum/curriculum.rst:909 -msgid "Make a hand-drawn sketch of an area (individually)" -msgstr "" - -# afea0adcaa994ad2910d68ce63e9f8de -# 284342d00c0848fcba7ca8d83ef2b94d -# fab9b0d8a1294d378b6ffa1223c546fb -# caeb4789dc1b4fc494c16f3f6e24eea2 -#: ../../source/training/curriculum/curriculum.rst:907 -#: ../../source/training/curriculum/curriculum.rst:996 -#: ../../source/training/curriculum/curriculum.rst:1005 -#: ../../source/training/curriculum/curriculum.rst:1061 -msgid "90 Minutes" -msgstr "" - -# 16d98f84d1df40a2b144d6b6e32e01bf -#: ../../source/training/curriculum/curriculum.rst:907 -msgid "Test/Practice" -msgstr "" - -# b6330ea49c6e4ddca550cf00bfa2b250 -#: ../../source/training/curriculum/curriculum.rst:907 -msgid "Projector Slide PPT Module 1 Paper and pen" -msgstr "" - -# 276b693a671440a7b6655906c04661e6 -#: ../../source/training/curriculum/curriculum.rst:914 -msgid "**2. Working with OSM (4 Hours)**" -msgstr "" - -# f50b6b8d23c24f01b19a9254c6ee4986 -#: ../../source/training/curriculum/curriculum.rst:918 -msgid "Navigate map on OSM Website" -msgstr "" - -# 2be1be3d556744adb893d955864f63b4 -#: ../../source/training/curriculum/curriculum.rst:916 -msgid "" -"Participants visit the OSM website, navigate the map, save OSM map as an " -"image, create an OSM account, and edit the OSM map after demonstrated by " -"Facilitator" -msgstr "" - -# abe43010ff3540468cc75f839fe079e9 -# b2b6a6f3557541f99d235bbc3b3dd141 -# aa4fe24ff3404d7e96500bfb81411f4b -# 64f86b9a65b140b6acf6c32c25b8d2ec -#: ../../source/training/curriculum/curriculum.rst:916 -#: ../../source/training/curriculum/curriculum.rst:926 -#: ../../source/training/curriculum/curriculum.rst:1040 -#: ../../source/training/curriculum/curriculum.rst:1261 -msgid "180 Minutes" -msgstr "" - -# 530d4d1237ac493da1077d7edac019ea -#: ../../source/training/curriculum/curriculum.rst:916 -msgid "Participant's computer Projector Slide PPT Module 2" -msgstr "" - -# eb679d7640734558abb7f750e18207a5 -#: ../../source/training/curriculum/curriculum.rst:924 -msgid "**3. Working with JOSM (4 Hours)**" -msgstr "" - -# 9985b9d02db8420f9520b85717e1be18 -#: ../../source/training/curriculum/curriculum.rst:926 -msgid "" -"Participants practise how to download and install JOSM, change JOSM " -"preferences, learn basic map drawing in jOSM, and add presets after " -"demonstrated by facilitator" -msgstr "" - -# 19deafc6a9a44e5ab69ce459a0c0fca2 -# 7660b5949f9f47e9937864e9b2abdb17 -# 82613f1c1a8c4cc69dc935077b049562 -# e732b162d35f4ae197d61c91e0c8bf5f -#: ../../source/training/curriculum/curriculum.rst:926 -#: ../../source/training/curriculum/curriculum.rst:1195 -#: ../../source/training/curriculum/curriculum.rst:1273 -#: ../../source/training/curriculum/curriculum.rst:1287 -msgid "Projector Slide PP Module 3 Participant's computer" -msgstr "" - -# 2b6369350bce4f6ea78ea0e88849c814 -#: ../../source/training/curriculum/curriculum.rst:932 -msgid "All required software that is distributed to participant on USB stick" -msgstr "" - -# 7ea0ee04d5a947628c56eeedd7048e78 -#: ../../source/training/curriculum/curriculum.rst:944 -msgid "**4. Using GPS (10 Hours)**" -msgstr "" - -# 3550414fd647417da13cdf9b7d9b3063 -#: ../../source/training/curriculum/curriculum.rst:955 -msgid "Upload GPS tracks in JOSM" -msgstr "" - -# 4c58889939b245a585e9d027f09b1be2 -#: ../../source/training/curriculum/curriculum.rst:946 -msgid "Participants are asked about and discuss GPS." -msgstr "" - -# 58688fd074934126a1c183b4424bdfc3 -#: ../../source/training/curriculum/curriculum.rst:949 -msgid "" -"Participants practise how to turn on GPS, set up GPS for the first time, " -"navigate with GPS, save tracks and waypoints, turn on track log, and " -"transferr waypoints and tracks to computer after demonstrated by facilitator" -msgstr "" - -# 78775ec373a5454395425992e9a7ef39 -#: ../../source/training/curriculum/curriculum.rst:946 -msgid "5 hours and 30 minutes" -msgstr "" - -# b91bb2102193407e91731faa93659959 -#: ../../source/training/curriculum/curriculum.rst:946 -msgid "Projector Slide PP Module 4 Participant's Computer" -msgstr "" - -# daab416408dc409fb0ac70914e5b6783 -#: ../../source/training/curriculum/curriculum.rst:951 -msgid "" -"GPS Device (ideally minimum one GPS for two or three participants) Pen and " -"Paper" -msgstr "" - -# 1e629061f3f74589a9b6b34344689b42 -#: ../../source/training/curriculum/curriculum.rst:967 -msgid "**5. Field Papers (10 Hours)**" -msgstr "" - -# d9237473a92842a082ee6bf988f2a25c -#: ../../source/training/curriculum/curriculum.rst:969 -msgid "Participants are asked about and discuss Field Papers." -msgstr "" - -# a7dca99fa43c4c9294a773010b0f5aa5 -#: ../../source/training/curriculum/curriculum.rst:972 -msgid "" -"Participants practise how Field Papers works, how to create and print Field " -"Papers, how to map with Field Papers, scan and upload, and how to to open " -"scanned Field Papers in JOSM after demonstrated by Facilitator" -msgstr "" - -# 64f6c876e9da490e83b0d457b3a9fcd6 -#: ../../source/training/curriculum/curriculum.rst:969 -msgid "5 hours and 30 Minutes" -msgstr "" - -# 4f2ed8f9a9084bc1b6010beb013ee12c -# b727de6077394f97a0f452ec2f62fc50 -# ab4385a497c34d638630794d05beea31 -# 0f79717f911e4a56a189705d0c540a3e -# ab27da6978344470aaae83f1d5c13de0 -# d1df68df76e0435abde012fba64c322e -# 6d42b004e9954db1a1dc140325d344e6 -# 2b78ea1b1533411caf4993690b9f226c -# 893b50b4cd7b4d2eb72938e5e8d9a28d -# 9d83692b6fde45d594b62e1d93fdc3f3 -# 371d82df66f84b86bc8c16e6f182f856 -# dc6cca07dca74510ae5e08a093fd997f -# a173912dd8224723b93daf10d29087d6 -# 7bbf9e96398744ba803ca66dec7baa42 -# 30dcd7c354974e0baf94c982544c9d43 -# be6314c9729242eb8ae9096bd8bfcf98 -# fcfeadd7924c4d24b1c3b8dd5e326866 -#: ../../source/training/curriculum/curriculum.rst:969 -#: ../../source/training/curriculum/curriculum.rst:996 -#: ../../source/training/curriculum/curriculum.rst:1005 -#: ../../source/training/curriculum/curriculum.rst:1061 -#: ../../source/training/curriculum/curriculum.rst:1072 -#: ../../source/training/curriculum/curriculum.rst:1108 -#: ../../source/training/curriculum/curriculum.rst:1153 -#: ../../source/training/curriculum/curriculum.rst:1195 -#: ../../source/training/curriculum/curriculum.rst:1204 -#: ../../source/training/curriculum/curriculum.rst:1215 -#: ../../source/training/curriculum/curriculum.rst:1231 -#: ../../source/training/curriculum/curriculum.rst:1253 -#: ../../source/training/curriculum/curriculum.rst:1261 -#: ../../source/training/curriculum/curriculum.rst:1273 -#: ../../source/training/curriculum/curriculum.rst:1287 -#: ../../source/training/curriculum/curriculum.rst:1296 -#: ../../source/training/curriculum/curriculum.rst:1336 -msgid "Test Practice" -msgstr "" - -# 2e1803c1ce68482eb294886a50084caa -#: ../../source/training/curriculum/curriculum.rst:969 -msgid "" -"Projector Slide PP Module 5 Participant's computer Example of Field Papers" -msgstr "" - -# c03b9cf11fcf4a94bf86ecf45ea3ce08 -#: ../../source/training/curriculum/curriculum.rst:979 -msgid "**6. Editing OpenStreetMap with JOSM (12 Hours)**" -msgstr "" - -# ee17573211354b96a1fd6999382b85aa -#: ../../source/training/curriculum/curriculum.rst:981 -msgid "" -"Participants learn JOSM user interface, JOSM layers, and practise how to " -"edit OSM data, tags, upload changes, and saving OSM files, and using " -"keyboard shortcuts after demonstrated by Facilitator" -msgstr "" - -# b745000519544400a1549d98610208b1 -#: ../../source/training/curriculum/curriculum.rst:981 -msgid "7 Hours" -msgstr "" - -# cff409dbfd8543c69faec3fd8d661407 -#: ../../source/training/curriculum/curriculum.rst:981 -msgid "Projector Slide PP Module 6 Participant's computer" -msgstr "" - -# 725222902a91450cabb56ab702ee8007 -#: ../../source/training/curriculum/curriculum.rst:994 -msgid "**7. Imagery Offset (2 Hours)**" -msgstr "" - -# 5a6e36647336465391b05e478205e1c9 -#: ../../source/training/curriculum/curriculum.rst:996 -msgid "" -"Participants watch demo from facilitator and learn about imagery offset, " -"imagery components (resolution and georeference), then practise how to fix " -"imagery offset" -msgstr "" - -# d0d1fca313a949a1a1981c26f09014d6 -#: ../../source/training/curriculum/curriculum.rst:996 -msgid "Projector Slide PP Module 7 Participant's computer" -msgstr "" - -# 61efb494e0fe4fa89e685998974f97ae -#: ../../source/training/curriculum/curriculum.rst:1003 -msgid "**8. Getting OSM data (2 Hours)**" -msgstr "" - -# 639f90f155b9456fb98189fe0934af64 -#: ../../source/training/curriculum/curriculum.rst:1006 -msgid "Download OpenStreetMap data from Geofabrik Website" -msgstr "" - -# bb495d7568b844fabd1cccd010232eca -#: ../../source/training/curriculum/curriculum.rst:1005 -msgid "" -"Participants practise how to download OSM data from Geofabrik website, and " -"download OSM data based on area and tags needed using Hot export tool" -msgstr "" - -# fd23d4b87f6e4be49bb4a83dc1d83f6e -#: ../../source/training/curriculum/curriculum.rst:1005 -msgid "Projector Slide PP Module 9 Participant's computer" -msgstr "" - -# 7b222ed738544161862ee94e4a51ab0a -#: ../../source/training/curriculum/curriculum.rst:1013 -msgid "" -"**Data Analysis using QGIS and** |project_name| **Beginner Level Workshop**" -msgstr "" - -# 6ddc6914861042efbd85325d684aad3d -#: ../../source/training/curriculum/curriculum.rst:1022 -msgid "**1. Using GIS to develop scenario for contingency planning (1 Hour)**" -msgstr "" - -# 3fb6e71bc6774df8ac4c25b370fb5bca -#: ../../source/training/curriculum/curriculum.rst:1026 -msgid "Explain GIS terminology" -msgstr "" - -# 50725d9c4eb64c8eb967ced4ab5080e6 -# d76429b19a314c9985c038b73604af87 -#: ../../source/training/curriculum/curriculum.rst:1027 -msgid "Terminology of Geographic information System (GIS)" -msgstr "" - -# 3be08f6f55af44919f4f0d015a2d1569 -#: ../../source/training/curriculum/curriculum.rst:1024 -msgid "" -"Participants watch presentation from facilitator and discuss about the " -"difference between data and information, and Geographic Information System " -"(GIS) terminology" -msgstr "" - -# 505e977065484fe9b3a49174aa232fa5 -# 5c938589e74a4af1896a07fd619c8806 -#: ../../source/training/curriculum/curriculum.rst:1024 -#: ../../source/training/curriculum/curriculum.rst:1032 -msgid "45 Minutes" -msgstr "" - -# b4a3e1ddc3c34de4b29887a87c922d42 -# b7317a30756f49d2b88a6c12a9da101d -# b06b0416921648528f917b154cb4dfb3 -# 652bc475249a422395b0321c4d5be131 -#: ../../source/training/curriculum/curriculum.rst:1024 -#: ../../source/training/curriculum/curriculum.rst:1032 -#: ../../source/training/curriculum/curriculum.rst:1139 -#: ../../source/training/curriculum/curriculum.rst:1325 -msgid "Test" -msgstr "" - -# aac179a040184cb5ae95b2ce1d1a7d4c -# 0505998b2d184e949aa6544718ac5a52 -#: ../../source/training/curriculum/curriculum.rst:1024 -#: ../../source/training/curriculum/curriculum.rst:1169 -msgid "Projector Slide PP Module 1" -msgstr "" - -# 294fd22d98794107beb8fcee3c1d7def -#: ../../source/training/curriculum/curriculum.rst:1030 -msgid "**2. InaSAFE for Contingency Planning (1 Hour)**" -msgstr "" - -# f4edb18f5e634f5abe701d2774f5749d -#: ../../source/training/curriculum/curriculum.rst:1034 -msgid "GIS for Preparing contingency planning" -msgstr "" - -# 0b02848deee84308a0bf2d9e39851b80 -#: ../../source/training/curriculum/curriculum.rst:1036 -msgid "QGIS and InaSAFE" -msgstr "" - -# e3c120f96d1944258db14505f2889850 -#: ../../source/training/curriculum/curriculum.rst:1032 -msgid "" -"Facilitator explains about GIS for contingency planning and the importance " -"of data in QGIS and InaSAFE" -msgstr "" - -# 35b7282c7f914a0798d3b446760355ca -# 181cf551138141948c280208fe9627f5 -#: ../../source/training/curriculum/curriculum.rst:1032 -#: ../../source/training/curriculum/curriculum.rst:1336 -msgid "Projector Slide PP Module 2" -msgstr "" - -# 24ca8a34273b4e8e99850d6951970dbd -#: ../../source/training/curriculum/curriculum.rst:1038 -msgid "**3. QGIS Installation and QGIS User Interface Layout (5 Hours)**" -msgstr "" - -# 296626e2ee5c4b03ad24e4bdab376411 -# 0d58a16209cc4935a1ee55747343e795 -#: ../../source/training/curriculum/curriculum.rst:1044 -msgid "QGIS User interface layout" -msgstr "" - -# f2d4a96bfc564e51921b6af3415db4ca -#: ../../source/training/curriculum/curriculum.rst:1040 -msgid "" -"Participants practise how to get QGIS, install QGIS, set up QGIS, add vector " -"layers, basic QGIS tools, panning map" -msgstr "" - -# 799eac5d83124e73bbc0c96be72fdd09 -#: ../../source/training/curriculum/curriculum.rst:1040 -msgid "" -"Projector Slide PP Module 3 Participant's computer QGIS Installation file" -msgstr "" - -# cda0e485a41d48e49125265768d32803 -#: ../../source/training/curriculum/curriculum.rst:1050 -msgid "**4. QGIS Plugin (2 Hours)**" -msgstr "" - -# 480c384f67f84e57ac9c6ca85180ab7c -#: ../../source/training/curriculum/curriculum.rst:1052 -msgid "" -"Participants learn how to manage plugins, install new plugins, and OpenLayer " -"plugin" -msgstr "" - -# cc490d63b8a14b0f952e5f9c372281a1 -# 1396ba25fec64def8ac2c7407285508f -#: ../../source/training/curriculum/curriculum.rst:1052 -msgid "105 Minutes" -msgstr "" - -# 25c59d982c0544d8892cab3c0991e70c -# c2d935b949d740da8bae0dd07175afd2 -#: ../../source/training/curriculum/curriculum.rst:1052 -#: ../../source/training/curriculum/curriculum.rst:1204 -msgid "Projector Slide PP Module 4 Participant's computer" -msgstr "" - -# cb89a0f5eb884a33ab7191a8be5d6640 -#: ../../source/training/curriculum/curriculum.rst:1059 -msgid "**5. Projection systems and Transformation (2 Hours)**" -msgstr "" - -# 783f4c2adbaa45e2b2a2f17e3b6ed6aa -# 79e67b35a31841eebcbd9c9927194bb9 -# 3377ce0352314e518da1dc2759146b01 -# 19ab1a228ea74e6880d70e45d1e5b884 -#: ../../source/training/curriculum/curriculum.rst:1066 -msgid "Making its own projection" -msgstr "" - -# a866be4b27a24a1abb4f643f9c2935ef -#: ../../source/training/curriculum/curriculum.rst:1061 -msgid "Participants learn about Coordinate Reference System (CRS)" -msgstr "" - -# 905b4279c0e64d699ab4c3c5527ddb87 -#: ../../source/training/curriculum/curriculum.rst:1064 -msgid "" -"Participants practise how to reproject with \"on the fly\" projection, how " -"to deal with different CRS, and how to set custom projection" -msgstr "" - -# f2eabc0145b64649b1b668f4515d214b -# d65fa544a64345a7bbf2523ad8f24057 -# 345df94756af43e0b850fe1d70d2e05d -#: ../../source/training/curriculum/curriculum.rst:1061 -#: ../../source/training/curriculum/curriculum.rst:1215 -#: ../../source/training/curriculum/curriculum.rst:1296 -msgid "Projector Slide PP Module 5 Participant's computer" -msgstr "" - -# d563c06a6c474913a172b4c35a9a7f2f -#: ../../source/training/curriculum/curriculum.rst:1070 -msgid "**6. Vector Data (3 Hours)**" -msgstr "" - -# 7e86c5f035d64169a864de8cda2cc1a4 -#: ../../source/training/curriculum/curriculum.rst:1072 -msgid "" -"Participants learn from facilitator about vector data and its attributes" -msgstr "" - -# fd3eccee269243d59218fa234e8710e8 -#: ../../source/training/curriculum/curriculum.rst:1076 -msgid "Participants practise how to add vector layers and do symbology" -msgstr "" - -# 9e927e1543374ee381b894fd2c40f5af -# a89f7a38978447ca8df2aae6d1e22ba6 -# d125e7ca9ef344ad97efea0e447ef93d -# 626b62e14ac040c18bad536363eb836d -#: ../../source/training/curriculum/curriculum.rst:1072 -#: ../../source/training/curriculum/curriculum.rst:1081 -#: ../../source/training/curriculum/curriculum.rst:1090 -#: ../../source/training/curriculum/curriculum.rst:1099 -msgid "135 Minutes" -msgstr "" - -# 440aebb098e3420fae8706c2cff70331 -#: ../../source/training/curriculum/curriculum.rst:1072 -msgid "" -"Projector Slide PP Module 6 Participant's computer Example file contain " -"vector data" -msgstr "" - -# 47d7451186444215b744859e4157bc41 -#: ../../source/training/curriculum/curriculum.rst:1079 -msgid "**7. Label and classification (3 Hours)**" -msgstr "" - -# 753efa41b48f4ef697550639ffe276bf -#: ../../source/training/curriculum/curriculum.rst:1081 -msgid "" -"Participants learn about attribute data, labeling tools, and classifying " -"attributes" -msgstr "" - -# 1f064b0f0de74f6bac0bc04c5dfebad2 -#: ../../source/training/curriculum/curriculum.rst:1081 -msgid "" -"Projector Slide PP Module 7 Participant's computer Example file contain " -"vector data" -msgstr "" - -# 3f0e00b7008a45d18139c95d19188d6c -#: ../../source/training/curriculum/curriculum.rst:1088 -msgid "**8. Raster data (3 Hours)**" -msgstr "" - -# 38790cb0bd4940cfb2c0a449ddcacfdd -#: ../../source/training/curriculum/curriculum.rst:1090 -msgid "" -"Participants learn and practise how to add raster layer, change its symbol, " -"and doing simple terrain analysis." -msgstr "" - -# ddd21a0e16fe43a38c79e9dc0214fae4 -#: ../../source/training/curriculum/curriculum.rst:1090 -msgid "" -"Projector Slide PP Module 8 Participant's computer Example file contain " -"Raster" -msgstr "" - -# 926eda9ba0e4481b9a3a98d2251b6d8d -#: ../../source/training/curriculum/curriculum.rst:1097 -msgid "**9. Creating new Vector data (3 Hours)**" -msgstr "" - -# c4bea7e17c0d43019f636efcd8a46946 -#: ../../source/training/curriculum/curriculum.rst:1099 -msgid "" -"Participants learn and practise how to add raster layers, change its " -"symbology, and do simple terrain analysis" -msgstr "" - -# 0652ec97090745219e38673b90aab59b -#: ../../source/training/curriculum/curriculum.rst:1099 -msgid "" -"Projector Slide PP Module 8 Participant's computer Example file contain " -"raster" -msgstr "" - -# 4a77c80e9b2c456688ed96fa21bfcb43 -#: ../../source/training/curriculum/curriculum.rst:1106 -msgid "**10. Vector analysis (6 Hours)**" -msgstr "" - -# 37599a4f73854164ba035db4e5d39807 -#: ../../source/training/curriculum/curriculum.rst:1108 -msgid "Participants discuss about GIS process, problems, and data" -msgstr "" - -# e08789d2b1894bd889532c7480d57755 -#: ../../source/training/curriculum/curriculum.rst:1111 -msgid "" -"Participants learn and practise how to start a project, analyse problems, " -"determining hazard zone, search for important roads and health facilities, " -"buffering, and choosing right size for land area" -msgstr "" - -# 14d569dcefef438087dfb859c478fd9c -#: ../../source/training/curriculum/curriculum.rst:1108 -msgid "210 Minutes" -msgstr "" - -# dfe449da1b56419499699899880bc599 -#: ../../source/training/curriculum/curriculum.rst:1108 -msgid "Projector Slide PP Module 9 Module 10 Participant's computer" -msgstr "" - -# 85ea8c07c3534af9b6a6d19287e77085 -#: ../../source/training/curriculum/curriculum.rst:1124 -msgid "**11. Map Layout with Map Composer (8 Hours)**" -msgstr "" - -# eb8905dc771e496eae41705bf8d8baaa -#: ../../source/training/curriculum/curriculum.rst:1126 -msgid "" -"Participants practise how to lay out a map in Map Composer: add a new map, " -"add a title, add scale, add a grid, add an inset, add a legend, and print map" -msgstr "" - -# 90e4b67f7dac401a977021ec1da3841c -#: ../../source/training/curriculum/curriculum.rst:1126 -msgid "4 hours 30 minutes" -msgstr "" - -# 9e8dc8dee0934513951200655d777b2a -#: ../../source/training/curriculum/curriculum.rst:1126 -msgid "Projector Slide PP Module 11 Participant's computer" -msgstr "" - -# 71f0da6a58794497ad05bae113c3099a -#: ../../source/training/curriculum/curriculum.rst:1137 -msgid "**12. Working with InaSAFE (8 Hours)**" -msgstr "" - -# 260776b3421a41bd8217bdb46debfd22 -#: ../../source/training/curriculum/curriculum.rst:1139 -msgid "Use InaSAFE" -msgstr "" - -# cc5101f9665f4172af698e1749eb8cf7 -#: ../../source/training/curriculum/curriculum.rst:1140 -msgid "Understand the concept of hazard, exposure, and impact data" -msgstr "" - -# 26a03fa4803f430f87a102a0fb46eeb9 -#: ../../source/training/curriculum/curriculum.rst:1142 -msgid "InaSAFE interface" -msgstr "" - -# 6493deb9b8714797ae8f4fa9b11ee908 -#: ../../source/training/curriculum/curriculum.rst:1147 -msgid "Improving InaSAFE maps output" -msgstr "" - -# 6bb098b0fb7d4084a6b6cab1be187ed2 -#: ../../source/training/curriculum/curriculum.rst:1139 -msgid "" -"Participants discuss about hazard, exposure, impact and InaSAFE user user " -"interface." -msgstr "" - -# e0bb3a6fd10649fd903a0074fdf2cb01 -#: ../../source/training/curriculum/curriculum.rst:1139 -msgid "4 Hours 30 Minutes" -msgstr "" - -# f4fe0c3bd3974866958b66f3af1da82c -#: ../../source/training/curriculum/curriculum.rst:1139 -msgid "Projector Slide PP Module 12 Participant's computer" -msgstr "" - -# 5c4ba46b511a4834803c38b980ad64e7 -#: ../../source/training/curriculum/curriculum.rst:1151 -msgid "**13. Social media to keep QGIS and InaSAFE interaction (1 Hours)**" -msgstr "" - -# c1a2fe2ab2294cbf822bf69341a788a9 -#: ../../source/training/curriculum/curriculum.rst:1153 -msgid "" -"Participants are expected to keep up to date with social media through " -"Facebook or QGIS forum." -msgstr "" - -# db6640e91fe240b8b804afb9fcf7f2c9 -#: ../../source/training/curriculum/curriculum.rst:1153 -msgid "60 Minutes" -msgstr "" - -# d2aecdb7a8a042298b674ab00c7e5476 -#: ../../source/training/curriculum/curriculum.rst:1153 -msgid "Projector Slide PP Module 13 Participant's Computer" -msgstr "" - -# 163f31edefa9410da9878585e5089014 -#: ../../source/training/curriculum/curriculum.rst:1159 -msgid "**Data collection using OSM Intermediate Level Workshop**" -msgstr "" - -# ee9e99cbd5d147d4ae9dd879a266038e -#: ../../source/training/curriculum/curriculum.rst:1167 -msgid "**1. Advanced Editing (6 Hours)**" -msgstr "" - -# 0c34d268e34f487a88dc49d15ea04bb8 -#: ../../source/training/curriculum/curriculum.rst:1171 -msgid "Make relations between objects" -msgstr "" - -# cadef9742a104835a91492be3d760319 -#: ../../source/training/curriculum/curriculum.rst:1169 -msgid "" -"Participants practise using more editing tools in JOSM and create relations " -"between objects" -msgstr "" - -# d7456a38e1414454bd9dbb14fb91d530 -#: ../../source/training/curriculum/curriculum.rst:1169 -msgid "4 Hours" -msgstr "" - -# 1868c7364b2b4f779408f9388eaa4fdf -#: ../../source/training/curriculum/curriculum.rst:1173 -msgid "Participant's computer" -msgstr "" - -# 837ba6643ef34d4bba83656a586b5071 -#: ../../source/training/curriculum/curriculum.rst:1176 -msgid "Exercise file in USB stick" -msgstr "" - -# b9f05be2af4a4311aecafb895f70e507 -#: ../../source/training/curriculum/curriculum.rst:1178 -msgid "(tools_menu_sample.osm and utilsplugin2_sample.osm)" -msgstr "" - -# 8da2546a0a73410eb199176ef976c5a7 -#: ../../source/training/curriculum/curriculum.rst:1181 -msgid "**2. Quality Assurance (6 Hours)**" -msgstr "" - -# c442add54aac4109b0517b6e97a6efb6 -#: ../../source/training/curriculum/curriculum.rst:1183 -msgid "" -"Participants practise editing tips and giving presets based on standard to " -"improve the quality assurance of OSM data by using validation tools in JOSM, " -"and online validation tools (KeepRight)" -msgstr "" - -# 20c38e6ddc6d4c5e80eabad119cdf3f4 -#: ../../source/training/curriculum/curriculum.rst:1183 -msgid "4 Hours 15 Minutes" -msgstr "" - -# b7858e1e2fb34be89d086373f3b0bb90 -# 6a028255f5384a48831a4b8f0f5458fe -#: ../../source/training/curriculum/curriculum.rst:1183 -#: ../../source/training/curriculum/curriculum.rst:1261 -msgid "Projector Slide PP Module 2 Participant's computer" -msgstr "" - -# 80da76844de94bd98924b7532960e659 -#: ../../source/training/curriculum/curriculum.rst:1193 -msgid "**3. Resolving conflicts when uploading OSM data (3 Hours)**" -msgstr "" - -# e9077ab263604da19a54f040df85ab84 -#: ../../source/training/curriculum/curriculum.rst:1195 -msgid "Participants discuss how conflicts can happen when uploading OSM data" -msgstr "" - -# 516b0e5a28304d3e80b87dda7b96d350 -#: ../../source/training/curriculum/curriculum.rst:1198 -msgid "" -"Participants practise conflict resolution and how to avoid conflicts when " -"uploading OSM data" -msgstr "" - -# 3a73f82baa8d4350bb6a59e84d7465cb -#: ../../source/training/curriculum/curriculum.rst:1195 -msgid "2 Hours" -msgstr "" - -# fd1030c7c39e46ef8c3c2206f49aa548 -#: ../../source/training/curriculum/curriculum.rst:1202 -msgid "**4. XML and presets in JOSM (5 hours)**" -msgstr "" - -# ed54e84ab65f44cf919ca8583ee6ddca -#: ../../source/training/curriculum/curriculum.rst:1204 -msgid "Participants learn from facilitator about tags, XML, keys and values." -msgstr "" - -# 46f1f1a07c194214baec36b2d8e8dc56 -#: ../../source/training/curriculum/curriculum.rst:1208 -msgid "" -"Participants practise making their own preset file, setting up preset files " -"in JOSM, and applying a new preset to some objects." -msgstr "" - -# 637c2954103d44678aa4676a2286be96 -#: ../../source/training/curriculum/curriculum.rst:1204 -msgid "150 Minutes" -msgstr "" - -# 7f6577456b834291a2444bdb50440179 -#: ../../source/training/curriculum/curriculum.rst:1213 -msgid "**5. Using Private Datastore (3 Hours)**" -msgstr "" - -# 5e8ca7d2e0e6457ca735fb5b13d48e4a -#: ../../source/training/curriculum/curriculum.rst:1215 -msgid "" -"Participants watch presentation from facilitator about private data store " -"function and discuss about the kind of data that can go public and should go " -"private." -msgstr "" - -# 393c6b64eaca4bf2a73d15bdfbccb4c5 -#: ../../source/training/curriculum/curriculum.rst:1221 -msgid "Participants practise installing" -msgstr "" - -# 92dc43201ce844c6a5fd431bc4cfdd4b -#: ../../source/training/curriculum/curriculum.rst:1223 -msgid "" -"private data store plugin in JOSM and how to use the plugin also how the " -"plugin works, and accessing the data store via web." -msgstr "" - -# d502f3627d0a4c42a40709a5268a52d5 -#: ../../source/training/curriculum/curriculum.rst:1215 -msgid "120 Minutes" -msgstr "" - -# 3d2a41cfd69f4daa94529abe5594f2f5 -#: ../../source/training/curriculum/curriculum.rst:1229 -msgid "**6. OpenStreetMap Wiki (3 Hours)**" -msgstr "" - -# aaf3386446544f0fb2095a1b496c0db0 -#: ../../source/training/curriculum/curriculum.rst:1231 -msgid "Participants do a FGD about OpenStreetMap Wiki." -msgstr "" - -# 154ba84d6fb5440aaf4064de1cac8233 -#: ../../source/training/curriculum/curriculum.rst:1234 -msgid "" -"Participants practise how to create OSM wiki account, edit wiki, learning " -"about wiki format, create new wiki page, upload images, translate pages, and " -"view the changelog." -msgstr "" - -# 8e56ebec7d714aa3b6beaa1af5f9279d -#: ../../source/training/curriculum/curriculum.rst:1231 -msgid "2 hours" -msgstr "" - -# a9a387fa8e604b4a829b1fa86a2f87b3 -#: ../../source/training/curriculum/curriculum.rst:1231 -msgid "Projector Slide PP Module 6 Participant's Computer" -msgstr "" - -# 4c5f6c04e96940a8b9e5907a7b348ba1 -#: ../../source/training/curriculum/curriculum.rst:1243 -msgid "**Data Analysis using QGIS and InaSAFE Intermediate Level Workshop**" -msgstr "" - -# 27db4225ca964232a55048dfcc3398b8 -#: ../../source/training/curriculum/curriculum.rst:1251 -msgid "**1. QGIS Review (3 Hours)**" -msgstr "" - -# 7889234eb84c4675b0ba8bf5a7aa4f8c -#: ../../source/training/curriculum/curriculum.rst:1253 -msgid "Participants discuss about QGIS data type, symbology, and map layout." -msgstr "" - -# 773cf317af4f4fa9afed7f015a49849f -#: ../../source/training/curriculum/curriculum.rst:1253 -msgid "135 minutes" -msgstr "" - -# 4010a5adbf5346859dd7ef6bfb3ab29a -#: ../../source/training/curriculum/curriculum.rst:1253 -msgid "Projector Slide PP Module 1 Participant's computer" -msgstr "" - -# b6f801c023d24d2da2496f86e05e2f78 -#: ../../source/training/curriculum/curriculum.rst:1259 -msgid "**2. Preparing data and keywords for InaSAFE (4 Hours)**" -msgstr "" - -# 38f69e253b1a43e58de575dbfb710b7f -#: ../../source/training/curriculum/curriculum.rst:1261 -msgid "**Preparing Data and keywords for** |project_name|" -msgstr "" - -# 5916ff18483e497c85302e27ae47abeb -#: ../../source/training/curriculum/curriculum.rst:1261 -msgid "" -"Participants watch explanation about input data in InaSAFE from facilitator" -msgstr "" - -# 931b590526f34b48bda9d54c926a260a -#: ../../source/training/curriculum/curriculum.rst:1265 -msgid "" -"Participants learn to get exposure data from HOT Exports, input data, add " -"keywords, prepare hazard layer, and run InaSAFE" -msgstr "" - -# 0488d97d918348649972a94c5f28621c -#: ../../source/training/curriculum/curriculum.rst:1271 -msgid "" -"**3. Temporary IDP (Internally Displaced Persons) camps planning (4 Hours)**" -msgstr "" - -# 8c413591377a4be79e676bd7f009e698 -#: ../../source/training/curriculum/curriculum.rst:1273 -msgid "Participants practise QGIS analysis to determine temporary IDP camps" -msgstr "" - -# 11044cc7bca0432aa978aa0fe083c958 -# 57f886f577c54be082d746d3585113fc -#: ../../source/training/curriculum/curriculum.rst:1273 -#: ../../source/training/curriculum/curriculum.rst:1287 -msgid "225 minutes" -msgstr "" - -# 5c15774ce1f54bce9e7977d5af841d16 -#: ../../source/training/curriculum/curriculum.rst:1285 -msgid "**4. Evacuation route planning (3 Hours)**" -msgstr "" - -# c185a17a5b964ff7bac5708551046a3c -#: ../../source/training/curriculum/curriculum.rst:1287 -msgid "Participants learn about road graph plugin in QGIS." -msgstr "" - -# f2459ae28ba44d44bfee825d886b445f -#: ../../source/training/curriculum/curriculum.rst:1290 -msgid "" -"Participants practise how to set up road graph plugin, and choose start and " -"end points" -msgstr "" - -# 3d9c20bc030a4801b2ab592dcfa2c468 -#: ../../source/training/curriculum/curriculum.rst:1294 -msgid "**5. Damages and losses assessment (4 Hours)**" -msgstr "" - -# 026d62ce7883452da4fef78e72e0c2d8 -#: ../../source/training/curriculum/curriculum.rst:1296 -msgid "Participants discuss about BPBD's damage and losses assessment guide." -msgstr "" - -# d797724e094c48a5971a40991a1bc662 -#: ../../source/training/curriculum/curriculum.rst:1300 -msgid "" -"Participants learn how to calculate damage and losses using group stat " -"plugin, join data, and create a diagram." -msgstr "" - -# f76bf1fd8cca484894846e2af44584d9 -#: ../../source/training/curriculum/curriculum.rst:1296 -msgid "210 minutes" -msgstr "" - -# af524a1ed2fc40d0b20ce7e3b0a2e8f9 -#: ../../source/training/curriculum/curriculum.rst:1314 -msgid "" -"**Training of Trainer workshop for contingency planning using OSM, QGIS, and " -"InaSAFE**" -msgstr "" - -# dc51f2fb98414e3ca19cd9a7be37d9ba -#: ../../source/training/curriculum/curriculum.rst:1316 -msgid "" -"**Standard Competency:** Teaching data collection and analysis with OSM, " -"QGIS and |project_name| in their respective region" -msgstr "" - -# 1562267bcacd4307ad74ce496794fe16 -#: ../../source/training/curriculum/curriculum.rst:1323 -msgid "**1. Adult Learning (2 Hours)**" -msgstr "" - -# f0809e1f75fd421382b5b2534f52d85f -#: ../../source/training/curriculum/curriculum.rst:1327 -msgid "Analysing the characteristics of adult learning" -msgstr "" - -# 65c1f6047abe4bdeafd153d4ed09d710 -# c4b489f06ff342bfbe98dc46e473abea -#: ../../source/training/curriculum/curriculum.rst:1328 -msgid "" -"Determining strategies, teaching methods or techniques that apply adult " -"learning" -msgstr "" - -# e1e63132614b49cd85059acf94abe4d2 -# bd860a5b9b1b4e1fbc8b81c9d62bc207 -#: ../../source/training/curriculum/curriculum.rst:1330 -msgid "Evaluating adult learning" -msgstr "" - -# 6a35d892fbaf4217a7a4ba630f732ec7 -#: ../../source/training/curriculum/curriculum.rst:1325 -msgid "" -"Participants learn about characteristics and principles of adult learning" -msgstr "" - -# 1d68b78a1b074b6cba4a15701a2845b3 -#: ../../source/training/curriculum/curriculum.rst:1328 -msgid "Participants discuss about strategy of adult learning" -msgstr "" - -# 13a492ed3eaa429a80c43efddd2f5863 -#: ../../source/training/curriculum/curriculum.rst:1330 -msgid "Participants discuss in pairs about how to evaluate adult learning" -msgstr "" - -# 7d599c94efc044e3a3f56e6faf8f54ff -# 63afd7594dbc461ba07e09a4e46296ff -# 61c791a776524e21922b8cbf1308e8d0 -#: ../../source/training/curriculum/curriculum.rst:1325 -#: ../../source/training/curriculum/curriculum.rst:1336 -#: ../../source/training/curriculum/curriculum.rst:1344 -msgid "90 minutes" -msgstr "" - -# 497feb1212794f9abbfd3f82a88e3e68 -#: ../../source/training/curriculum/curriculum.rst:1325 -msgid "Projector Slide PPT Module 1 Plano Paper HVS Paper Small ball Music" -msgstr "" - -# 5caa8d5f280d49f38766d83d89dc30da -#: ../../source/training/curriculum/curriculum.rst:1334 -msgid "**2. Communication skill (2 Hours)**" -msgstr "" - -# ca0a6433f8ad475c89179a75079b6579 -# 52dba535f5754dee96affc636e328268 -#: ../../source/training/curriculum/curriculum.rst:1338 -msgid "Describing the communication models in workshop" -msgstr "" - -# f29d6c2164ce4b6ebf05f0300c6ed5a4 -# b123e38f556a418298d4267691f22bd0 -#: ../../source/training/curriculum/curriculum.rst:1339 -msgid "Demonstrate the basic skills component of teaching / workshop" -msgstr "" - -# 3810bfa73d5844bd9cb7ed1b6c95fc7e -#: ../../source/training/curriculum/curriculum.rst:1336 -msgid "Participants learn about effective communication" -msgstr "" - -# f959454e2ecb48c0808b67a1529736db -#: ../../source/training/curriculum/curriculum.rst:1338 -msgid "Participants discuss about communication models in the workshop setting" -msgstr "" - -# fe55b75063624970b2bb890e18951fc4 -#: ../../source/training/curriculum/curriculum.rst:1342 -msgid "" -"**3. Facilitator skills for data collection and analysis through OSM, QGIS," -"and** |project_name| **workshop (2 hours)**" -msgstr "" - -# 505455d1d4f840aca19af997cd5e1dd4 -#: ../../source/training/curriculum/curriculum.rst:1344 -msgid "" -"Practise data collection and analysis through OSM, QGIS, and InaSAFE workshop" -msgstr "" - -# 24f07fb51e2b40b69fba19e39b29de04 -#: ../../source/training/curriculum/curriculum.rst:1349 -msgid "" -"Practise communication skills in data collection and analysis through OSM, " -"QGIS, and InaSAFE workshop" -msgstr "" - -# aee32e97a6f34a5fb9655e75cfec53fd -# 89cd4a5ffa174171ad9b0b9396caa2ae -#: ../../source/training/curriculum/curriculum.rst:1344 -msgid "" -"** Facilitator Skills for Data Collection and Analysis through OSM, QGIS, " -"and InaSAFE workshop" -msgstr "" - -# 7179142ad3d14a0495f98e4ad4e72bbe -#: ../../source/training/curriculum/curriculum.rst:1344 -msgid "" -"Participants practise their facilitating skill for data collection and " -"analysis using OSM, QGIS, and InaSAFE Workshop" -msgstr "" - -# 7d5145e928c24018a573aa6d718d6c4c -#: ../../source/training/curriculum/curriculum.rst:1344 -msgid "Projector Slide PPT" -msgstr "" - -# 079445340e5b4a49900f47484eda1a81 -#: ../../source/training/curriculum/curriculum.rst:1354 -msgid "Summary" -msgstr "" - -# 54d9f17fe5f3403784c4b3fb8c927aa0 -#: ../../source/training/curriculum/curriculum.rst:1356 -msgid "" -"After completing the three trainings, including the Training of Trainers for " -"Scenario Development for Contingency Planning using OSM and QGIS/|" -"project_name|, it is expected that workshop organisers from national or " -"province/district level can use this document as reference in order to " -"create the same output." -msgstr "" - -# 27d23afbeb3a4553ac6e7ef780a8a255 -#: ../../source/training/curriculum/curriculum.rst:1362 -msgid "" -"This curriculum is continually augmented and improved through input from " -"stakeholders, such as government officials or non-government who are " -"included in the working group." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/curriculum/index.po b/docs/i18n/en/LC_MESSAGES/training/curriculum/index.po deleted file mode 100644 index 5625b17f..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/curriculum/index.po +++ /dev/null @@ -1,46 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 487aaf127a1d44c98ca376a34f26ff6f -#: ../../source/training/curriculum/index.rst:8 -msgid "Curriculum and Guide for Facilitator" -msgstr "" - -# 79f2d00cf34f48fe87edc806e43c4888 -#: ../../source/training/curriculum/index.rst:10 -msgid "" -"This section contains the standard curriculum and facilitator guide for the |" -"project_name| training course designed by Badan Nasional Penanggulangan " -"Bencana (BNPB), Humanitarian OpenStreetMap Team (HOT) and Australia-" -"Indonesia Facility for Disaster Reduction (AIFDR). The training course " -"consists of four units which provide hands-on experience with |" -"project_name|, |QGIS| and |OSM|." -msgstr "" - -# c48a250daf014b7aa8535c27602aa926 -#: ../../source/training/curriculum/index.rst:16 -msgid "" -"The training modules to be used with this curriculum are available in :ref:" -"`beginner` and :ref:`intermediate`." -msgstr "" - -# 4f4d137a228f43a793d197bb7bcfe909 -#: ../../source/training/curriculum/index.rst:19 -msgid "**Curriculum Table of Contents**" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/curriculum/osm-beginner-toolkit.po b/docs/i18n/en/LC_MESSAGES/training/curriculum/osm-beginner-toolkit.po deleted file mode 100644 index 5d5738da..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/curriculum/osm-beginner-toolkit.po +++ /dev/null @@ -1,3409 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 346922cac34e4e949958be4f1f776ae7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:6 -msgid "Unit 1 Facilitator Guide" -msgstr "" - -# b2254165414d4f4abfca1558998d8748 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:9 -msgid "Beginning OpenStreetMap Trainer Toolkit - (A Guide for Facilitators)" -msgstr "" - -# b520b3f5ccdb48ef961fc2368b0e3794 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:11 -msgid "**BADAN NASIONAL PENANGGULANGAN BENCANA**" -msgstr "" - -# d4113babf1e046d59d663ec731beb943 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:13 -msgid "**2013**" -msgstr "" - -# e8ccdbc712604f72aa1348ec98584592 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:16 -msgid "About Toolkit" -msgstr "" - -# bf051978b36b402c9babd41729d947ec -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:18 -msgid "" -"**The Beginning OpenStreetMap Trainer Toolkit** is designed to prepare " -"trainers to deliver an introductory training course to new users of OSM. The " -"materials included will prepare trainers to conduct trainings with a variety " -"of audiences and to cover common problems and pitfalls, and also provide " -"trainers with the best methodologies to engage new mappers." -msgstr "" - -# b451fa6d38e5420b9aa3424745770519 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:24 -msgid "" -"When organising an OpenStreetMap workshop, numerous factors must be " -"considered, including the length of time you have to train, available " -"resources, number of trainees and their technical skills. This toolkit will " -"help trainers prepare trainings for different types of participants, but it " -"will primarily focus on educating those with little or no experience with " -"GPS, map-making and computers." -msgstr "" - -# 0fd816fde95845b2b95f0a8a772b9ab5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:31 -msgid "" -"The purpose of this toolkit is to prepare the trainer to successfully train " -"workshop participants in adding spatial data to OpenStreetMap." -msgstr "" - -# 41e1803e4c354ab78af39e4fec34523b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:35 -msgid "Purpose of Workshop" -msgstr "" - -# ede9e20368cc416b99caf357e66b999d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:36 -msgid "" -"This workshop is intended to achieve the following standard and basic " -"competencies:" -msgstr "" - -# 67c3e528c8c8437bba7dc57c82465205 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:40 -msgid "Standard Competency" -msgstr "" - -# 084d12b6b03849b380b0763298d7d808 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:41 -msgid "Collecting Spatial Data with OSM" -msgstr "" - -# 75570bd8566a442ba45de9e1a08c15e7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:44 -msgid "Basic Competencies" -msgstr "" - -# 07647e4a0a294b4abe5701c62bfe4a90 -# 762db927abed4462a680289b840a5448 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:45 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:232 -msgid "Draw paper maps to gain a basic understanding of OpenStreetMap" -msgstr "" - -# 1cd6ae4f952b43d5a2a3788dada57bb0 -# fb0826f9007944f7b6f488b3ff08f9eb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:46 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:362 -msgid "Navigate OpenStreetMap website" -msgstr "" - -# 050261816609423190091c0907dc7ed6 -# bb2479dc935a42bab569d626b039c762 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:47 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:484 -msgid "Operate JOSM" -msgstr "" - -# 3675972f2d7f40ffb369aa829039b7c0 -# 0c2a0f0084ea4715a3d0662fc5039cb1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:48 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:660 -msgid "Use GPS to add data to OSM" -msgstr "" - -# 1fd4785ce0f34f3688f3d8327ae974ef -# f718b64fe65c4de8889f82a7733b9826 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:49 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:830 -msgid "Use Field Papers to add data to OSM" -msgstr "" - -# 3fdcbadacda2453cb1e4a3d6f26821f4 -# 6e1d7116f80e41eda3b2bbe99defee80 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:50 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:963 -msgid "Edit a map and add information to OSM using JOSM" -msgstr "" - -# be935e03f9a64cd388b3b1fbaa4da67c -# 10d7d23f5e484d01a1969fdb13247ef8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:51 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1110 -msgid "Correct imagery offset" -msgstr "" - -# 319412bebd9a4eec9fd52e9283332e0e -# a1c9433c65494466aeaa3af308b07e71 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:52 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1169 -msgid "" -"Get OSM data in a specific format to be analysed further in Geographic " -"Information System (GIS) software" -msgstr "" - -# 429d7c20a3ca4c7698cbe3c6560848dc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:55 -msgid "Workshop Materials" -msgstr "" - -# f967bfb0aa3c41c4b3d223c039b27b65 -# 1353088cdab54b6082f0ebc80d7caa93 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:56 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:116 -msgid "The OpenStreetMap website" -msgstr "" - -# cc4e3555d38f452a9333e97ce3c37c60 -# 42f730cac3194c9db5201ea667d11131 -# 16681e76e0ce4440819c2007052b995d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:57 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:120 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:124 -msgid "Working with OSM" -msgstr "" - -# 98906073487742258069f53cbfa03d50 -# 12684bc6c9ba4b3d8b2870b7d51a9e9d -# dcff32af35d2407ebd89a502c83c47b1 -# 506722b6fca849578a09f5d9e623bbf4 -# b5e5265e09634ae3b0cb3cdf6fa305df -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:58 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:126 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:134 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:138 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:479 -msgid "Working with JOSM" -msgstr "" - -# ea295e35d4e842a1954bec21639ae31f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:59 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:140 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:144 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:148 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:156 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:655 -msgid "Using GPS" -msgstr "" - -# ec2d758ff3aa470b9dd1e3e495f933a9 -# 3adb680855c94ccb92ea299ee5ee4370 -# 10680632c98149c696e0509bad6dbb24 -# 5a9efc5a36c249bdaebb61c32b48394e -# 034151d0611d49d095b608f7f47796d0 -# 3b6a5223444d42e6a0f86dcb89ef0522 -# f95d06aecb494a6e988a32178e905906 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:60 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:160 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:164 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:168 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:170 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:825 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:912 -msgid "Field Papers" -msgstr "" - -# 2f793db50aef40e6bdc259c0a4147ee0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:61 -msgid "Editing OpenStreetMap through JOSM" -msgstr "" - -# 32b60cc007004260b9b1dc30da3ba93a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:62 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:192 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:194 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1129 -msgid "Imagery offset" -msgstr "" - -# e0611aa17316420da4cd61d29bef6d91 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:63 -msgid "Getting OSM data" -msgstr "" - -# 5a43f59837ad438c81242996040cdfc1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:66 -msgid "Workshop Strategies" -msgstr "" - -# 2cf179aee3bb4825a751c7c181f59464 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:67 -msgid "" -"Methods emphasised in this workshop are participatory teaching and active " -"participation in all sections and activities, rather than lecture method." -msgstr "" - -# 9feaeccfc2ce465882b942f0ab99741e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:70 -msgid "" -"**Participant oriented.** Participants are encouraged to find and gain " -"knowledge and skills by themselves." -msgstr "" - -# fd4662064d5e4d15a42f210c13d772f2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:73 -msgid "" -"**Trainers serve as facilitators.** Trainers facilitate to help ideas in the " -"workshop emerge from the participants, not only from trainers. However, " -"trainers must be ready to provide necessary information when the " -"participants need any assistance." -msgstr "" - -# 84c39ab0a02447f1926a9d3a66121c53 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:78 -msgid "" -"**Outcome oriented.** Workshop must produce the outcomes mentioned " -"previously." -msgstr "" - -# d12292b2ae1d407799988296a2d7c5e8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:82 -msgid "Tools" -msgstr "" - -# fb7ef62491db4c1ab305afeb6bcdf465 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:84 -msgid "" -"Copy of :ref:`Data Collection Using OpenStreetMap Beginner Level ` for participants" -msgstr "" - -# ab420143f8bd4451a3d186a784d91807 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:86 -msgid "A workshop space with tables and seats" -msgstr "" - -# 201d361c3f7543feb4e06c28bea80a00 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:87 -msgid "" -"Computers (one computer may be used by two participants, but it is better if " -"one computer is used by one participant)" -msgstr "" - -# e25c7112ddd34453b06481064a8b4868 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:89 -msgid "A Printer (to print out Field Papers)" -msgstr "" - -# aba8146df23942df89057be9906797a8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:90 -msgid "" -"A Projector (to present slide and demonstrate technical instructions and " -"software)" -msgstr "" - -# b50f3cbe91444813b2e04f2124e21ac3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:92 -msgid "" -"GPS devices (ideally, one GPS is used by two or three participants in a " -"group)" -msgstr "" - -# 5cb41cb6a0df4deea1c51fc23ca617eb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:94 -msgid "Batteries for GPS devices" -msgstr "" - -# 7cb941032717410e8c5bad9fcbc774f3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:95 -msgid "USB cable to connect GPS devices to computer" -msgstr "" - -# ec7fb78cbd2942678298f902e30878b8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:96 -msgid "USB Flash drive(s) to transfer files and software" -msgstr "" - -# 192e51dda07f47b8a75017f3c57482e9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:97 -msgid "Good internet connection" -msgstr "" - -# c1f53a4dc58248f2b020bf4cebc4728c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:98 -msgid "Snacks and coffee for breaks" -msgstr "" - -# 860474f58550449f9bfbdccec2e26ff4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:101 -msgid "Schedule" -msgstr "" - -# 7096ce89edb04de3a37779b7b3115b90 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:103 -msgid "" -"Below is an outline of a schedule for a five day workshop that has been " -"tested with several groups in Indonesia. You may choose to adapt and change " -"this workshop schedule to meet your needs." -msgstr "" - -# 7fcdd36269934f02afeeb1c1a14832a9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:108 -msgid "Day I:" -msgstr "" - -# 2a29c018b87646fd9435b114084529e6 -# bbc8e67023364fea89e86a2a0a2d19f9 -# 4b9f60152d6c47e3827d93fb0d7706d5 -# b458e7acfb5d4bc199dbada784f9dc83 -# 3e1a4ab8e3d645cb9a7e733c3636c0fc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:110 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:132 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:154 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:176 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:200 -msgid "**Time**" -msgstr "" - -# ff3d9cc24d47411fb1ceceb80d4effef -# 1bae1374e7724ff48a0204569047bedd -# 34dfc0ee355c45de856871ef7b3ee81e -# c5ee2717bbef48f3adadc0926e51884e -# f045f685076c41c5ac5d0406a9800732 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:110 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:132 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:154 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:176 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:200 -msgid "**Materials**" -msgstr "" - -# efdeba28e0d8497fb2c876f9ced7a802 -# 9f57f0f68dc7464baecbb55f345e0054 -# b184022e32ec43079983d9299c083b77 -# 9096e3dbab6647838d51a806a6193e1b -# db33fb57424a4b35965291713ceaec93 -# f74f89c359fa44838933ab298415e7e8 -# 121fc950d1be46839ee006c2c02172e6 -# f568011f7a4c411285b63d173c10828a -# 371ed1177bef4a4d9694dc1e52d59bd3 -# caf737153a524f178a25698071a866f6 -# 736fe271bd6c4288aa4a023c9079a6bd -# f7dcc27c30c647ba9de9777adb7cee80 -# 77c37fca9b5645a88715205d94725dd3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:110 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:132 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:154 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:176 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:200 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:258 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:391 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:524 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:705 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:859 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:992 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1135 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1192 -msgid "**Activities**" -msgstr "" - -# 045ecdfeaece42ce924e4c8ba5f73850 -# a0e591d8111843428ef203a8dc0fe295 -# 3af869fba73f4c2084cff2bce2c25edd -# 239a26487aa44d4e984c95904f7a671e -# 6a64688191664a3980b629fe7a6658a9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:112 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:134 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:156 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:178 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:202 -msgid "09.00 - 10.00" -msgstr "" - -# 7da536612b674882be052713db28a79c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:112 -msgid "Opening and Introductions" -msgstr "" - -# daa175a4c72843a9884798448556ccb0 -# a826262439144f0488ad4483bc2125da -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:112 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:216 -msgid "Plenary Session" -msgstr "" - -# 3d6e9504bd8e45bfbb08484792f99428 -# d20eed619c46452bb6cf39306ceeb831 -# 08bf54e0d7c44263866cbb00d3620a11 -# 830f32885b414afdb51819d80dbd2f17 -# 8606f64d17634f28ab33fb9e1baef24e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:114 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:136 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:158 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:180 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:204 -msgid "10.00 - 10.15" -msgstr "" - -# 3638944f1b494d7d90874b1a1e455984 -# 2d7094d1d7e140d49613e00c1626e120 -# 8d58e6e7fa1447c491840e7c87635025 -# 190092b44b724a12b3d69de75f9cff52 -# cdc9b2f68beb442ba8e2e2d7b3b8d39d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:114 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:136 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:158 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:180 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:204 -msgid "Break 1" -msgstr "" - -# 4ad19f0199e94ccfb14eefdede5e5894 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:116 -msgid "10.15 - 11.45" -msgstr "" - -# 0e272ae82d9d428593973e2da6286c0b -# 677e32fbeb6b476eaf81e9c291c0ae1a -# ef0eba17c0854827af3b6ae52beaf2c3 -# e6d87e480f8d4a42bca40b419bfd54b9 -# d888c6648f624e69bada7e36353fdc96 -# fc4e0e55ea65424c9763529e883d00f4 -# 1f88e396505e40728caf3b2e898f3349 -# f6a251713cc3429a8377694225191860 -# 53c490aa59ef4607a76ca25ffa8312a0 -# 25e1c87f479d4dccae285cd8444435e5 -# 6cd5c5287720460e9761125a6bda310f -# a54d9fcbda794d529effb2792e1e20c7 -# e5ce4b591d79430f8d49c9d1f5df5445 -# ec04ee2f1d4f47238bf50fc6580b3f75 -# 59b52750b47749feb1994150d680b7cf -# 072d78b97aa640c7bfd86c14e6ccfc27 -# f26c0f241e5c441683f2765c4a84c340 -# 821ce76ee5304a3c841844ed6a1186c6 -# 5ff700feb1264433832c63d79521f171 -# b7d5be12ecff4c8dbb8df6f7345118a2 -# e3f69ca9a33849da9e5287dd10d6c535 -# c73c2c7c9f60458cac2fec4e4aef80b9 -# 789a1accf2e24e1f9093a0bacba41aea -# 318d5253125d4e21be307af5e851c01a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:116 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:120 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:124 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:126 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:134 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:138 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:140 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:144 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:148 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:156 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:160 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:164 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:168 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:170 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:178 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:182 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:186 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:188 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:192 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:194 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:202 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:206 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:210 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:212 -msgid "FGD and Plenary Session" -msgstr "" - -# 2a8fed9a4a994cd4b5357f164b55ebf4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:118 -msgid "11.45 - 12.45" -msgstr "" - -# f3e82ba99ae84d1db73572ff80d9c2e7 -# 0c7b3bc0e7264e1c9165ccb72e2e2770 -# 8304809c08904230aa40e66ef16713d6 -# 5821d2958c6044beb0915d294f062ef1 -# 147ffdd3f6e944b1a77fed43ca89c450 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:118 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:142 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:162 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:184 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:208 -msgid "Lunch break" -msgstr "" - -# 0423d213289c4bd38b4a94170a8a7e5e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:120 -msgid "12.45 - 14.45" -msgstr "" - -# 5037977e14d7459c982671cf56e097ed -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:122 -msgid "14.45 - 15.00" -msgstr "" - -# b7c1ce2ad92547b2b3386a73b2a58bb2 -# 2c1a2ff2140d4c899dbd2df55bc22934 -# 87d4555b67ca43fa90063d8cccb42acf -# d709f81611a848afb52f456e5c1d2341 -# 0e2fbd30f9e14952968ea6bc9e5ecb8a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:122 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:146 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:166 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:190 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:214 -msgid "Break 2" -msgstr "" - -# caea5143fd6b4785be5f031f89f93b57 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:124 -msgid "15.00 - 16.00" -msgstr "" - -# 3d78d707fbd443f5b6d8ba9012c92c30 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:126 -msgid "16.00 - 17.00" -msgstr "" - -# 353fceffcc5742d6a234b0cd6f7ba7b4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:130 -msgid "Day II:" -msgstr "" - -# 10bf57bb385a42c09f929f1ae824342c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:138 -msgid "10.15 - 11.15" -msgstr "" - -# c01eb866598545a69533b0a422c6cb19 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:140 -msgid "11.15 - 12.15" -msgstr "" - -# 5e6f4e5de48d4a45899e3ac13888692d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:142 -msgid "12.15 - 13.15" -msgstr "" - -# 10a9897e6c1a4ed68cf85734a293db54 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:144 -msgid "13.15 - 15.15" -msgstr "" - -# 0bff83e7842c46dea45c1605b6dae750 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:146 -msgid "15.15 - 15.30" -msgstr "" - -# 2a9d4668e3b34970abe3d9d845bd9073 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:148 -msgid "15.30 - 17.00" -msgstr "" - -# 8959cd4e24e2496b9696100f7c6018b7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:152 -msgid "Day III:" -msgstr "" - -# 288e13db66714823b34d9d9e7411e62f -# 4cbb0ba5e7d945cb9aebb030a9df2a0a -# e75ce7ef5d84452fac33cffab9c18406 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:160 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:182 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:206 -msgid "10.15 - 12.00" -msgstr "" - -# 4574775b46734eddb4f80d4f7c5724fb -# d9757350e07c4384905a7203f9dfd88b -# aeefae83edf048538d6ba875ba38bb5a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:162 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:184 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:208 -msgid "12.00 - 13.00" -msgstr "" - -# 4d7e453f846d4524aadeed4fb5810e40 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:164 -msgid "13.00 - 15.00" -msgstr "" - -# b55292568e9348338e705a70bf66eee6 -# 1d07ba3eed614db9894176affad648a3 -# 08b0a7d4dac74d85a36c5c79f31f3a49 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:166 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:190 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:214 -msgid "15.00 - 15.15" -msgstr "" - -# 0407466ae58644eeb53171b450ffaa4e -# e9a24117679046df9c96d35523b5f28a -# 459a14bfebea403485809b2372ff66b0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:168 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:192 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:216 -msgid "15.15 - 16.15" -msgstr "" - -# ab13a0afd35b428f819edcef20a9fa12 -# 9e29ad04cf5f4637bd8aeb6b2b4bdc94 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:170 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:194 -msgid "16.15 - 17.15" -msgstr "" - -# f6234b530a4e4fc2ab1218630d9f6504 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:174 -msgid "Day IV:" -msgstr "" - -# 72a7d3746d824db59aab912a1535fb68 -# 89d1ad69acbb4741b7882e6546b60c1d -# 69d6dcc20492485f8244c3ce1604c7ce -# b7b7c8173f744716a73268961b00ec1a -# 595540b4c1e942c6835fa1f6953f1d94 -# e59cbbafd03c473482fb2104c7d21651 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:178 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:182 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:186 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:188 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:202 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:206 -msgid "Editing OpenStreetMap with JOSM" -msgstr "" - -# ede7beba7993403fb00e490196b868ba -# 5e76c0f442ca48288bd5d3e3e4e9ed66 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:186 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:210 -msgid "13.00 - 14.30" -msgstr "" - -# 4bce0ce384a64be2adafa9c259a33277 -# dc690a3c2a1440d9a9919da27889321b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:188 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:212 -msgid "14.30 - 15.00" -msgstr "" - -# 487713d3f1124ec992b3431fc296381c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:198 -msgid "Day V:" -msgstr "" - -# 1fc395ff976042758f0a2efbeaad8bf3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:210 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:212 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1164 -msgid "Getting OSM Data" -msgstr "" - -# bd1a339978c945269c77c1896eb22067 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:216 -msgid "Workshop Evaluation and Closing" -msgstr "" - -# 4c7c09215f8947fc96f0e92f25baa40d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:221 -msgid "Workshop Plan" -msgstr "" - -# 4be66d758e874764943d71b663e6050f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:224 -msgid "Session 1" -msgstr "" - -# 19713d21288741da9733015f1a9748f9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:227 -msgid "The OpenStreetMap Website" -msgstr "" - -# d5ec2a2d545940a9a40f863075804891 -# 10786bec6b804173b2c590514604811c -# ee73d536e3cc4139a98a6994bfd134bb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:228 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1106 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1165 -msgid "Time : 90 minutes" -msgstr "" - -# 62776fb451c64dc7b5b100307fa1195a -# 9611cde4ce68442f9359137a83822306 -# 0fd1c097e1ef4c49881947dcd2334d75 -# f3fd7b24ce554f68b078f1b4ac425039 -# e89b2b8eca7c4b0fb548e708a6e336b1 -# 278acd87f1f848d5bd9bbe45267c508d -# 447648b213ab4ef59a2daf7d82cd3b7b -# 58fe2a54931d47f1b0e8e030974902ac -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:231 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:361 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:483 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:659 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:829 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:962 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1109 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1168 -msgid "Basic Competency" -msgstr "" - -# 7d6c43c21e6a42b1867654019770c5b4 -# e6d889b202fc4ebea1dc522aca8bdb91 -# bcf515fc57a548188331212afa1db30c -# 136de915c0dd4c038b51d957c82c5701 -# 31d58b2dbdff477aac07018de070a9f7 -# 7489ece9fbb54bd3ae6209157e4f36dd -# 08524299193843a79978c4c78ae849b5 -# a24181e17df54753afad78d393a1f3cd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:235 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:365 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:487 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:663 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:833 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:966 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1113 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1173 -msgid "Indicators" -msgstr "" - -# 3771ff74bde94037884bed73e37f15f5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:236 -msgid "Understand the concept of OpenStreetMap" -msgstr "" - -# 163513228cf14450a923c982033f98e4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:237 -msgid "Understand the definition and objectives of data collection" -msgstr "" - -# e822cfb54a08490d9dc8032563f06c10 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:238 -msgid "Understand the composition of a map" -msgstr "" - -# 3230473b5b1d47748f068145df4fa0ba -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:239 -msgid "Make a hand-drawn sketch of an area" -msgstr "" - -# 674c06f516e94674bcf6d6fd4dc35376 -# b6bbeba16dca4ee4b940693b19be6f7e -# 04ca0d9601fb466db79ddbd3f2e191a4 -# 010d84ef20b249fb981917a18679b724 -# 3a35dc3e1bc847438b4f5f37418fa71e -# 324d9328dff64320a9105154f1a85884 -# 4b56c9fb577b4b1987fe7b0d230d8be2 -# 56fc81d1d58f43669482e4f1c2543871 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:242 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:374 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:497 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:676 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:841 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:975 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1120 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1178 -msgid "Outcomes" -msgstr "" - -# 9547f860879047cfacfa3e5172d8529e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:243 -msgid "Questions and comments about OSM, data and maps" -msgstr "" - -# 52b4c03b247a4256ba7f7eb15e38d960 -# a2e5cfacf6f74d1399d4596a589f05db -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:244 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:253 -msgid "Hand-drawn sketch of an area" -msgstr "" - -# f9fc964031064b0782b19b7a84df9bf9 -# be1ca5a578d945f281b9d402d5420a5b -# 9b0d61243c9149829055c09b4955c67a -# afba1ffe9ea049c098e865728f80a488 -# 406923602fe74cbda1386374749766f7 -# 3aaec45a64e14becb7d8eeb06faaca72 -# d0216f75d4b14156ba74c9cefbae03a2 -# bdc1ad3753f74338a84d606863915aaf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:247 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:379 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:501 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:680 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:846 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:979 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1124 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1182 -msgid "Core Material" -msgstr "" - -# 2fd1aabb83ab4c0a9e52f7a1af8825ed -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:248 -msgid "**The OpenStreetMap Website**" -msgstr "" - -# f5edfe53966348c08e584091a6b9131b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:250 -msgid "Concept of *OpenStreetMap*" -msgstr "" - -# c6640e4e8c74459fabcb842418189428 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:251 -msgid "Definition and objectives of data collection" -msgstr "" - -# 1269b87de0b84d61a3cd1fe1fcff33b6 -# a5fbfdde03114ea8b0c624eadae636b8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:252 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:288 -msgid "Components of a map" -msgstr "" - -# 450ea0034ad047e5a3b7b6b8a748baf3 -# 704c371050344cdb830961f5d1b1b1ac -# 44b178f99a36476e97e6c72c8d93b884 -# 6c5019df5d3c4b48ad40bc1924da1c6d -# 91b7aba3d538492a876ff340ba84ec83 -# 3d2de5a8842042aaba842f0db52f1a56 -# 37c552d887d649e19b04393b3b5a8a68 -# e93867956ade4c42930d0cc24c03d042 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:256 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:389 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:522 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:703 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:857 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:990 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1133 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1190 -msgid "Activities" -msgstr "" - -# 8938d297ffe448febd0ead157e6f65f5 -# 1d0d5c2cea7f466ca73333952d6b518b -# c3dc0d0c90714eaeac29b4cd2af4ab68 -# 2095f9470acc4a0fa83677c3dac52d39 -# 8a45d401e1f041efa6140dfa1daddaea -# d423808380844a1e965ad0ac62e6dee4 -# 82dbcb4cca434c0d954f7bf497f873f8 -# 788c6d0a635f4025922a2b512866d67a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:258 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:391 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:524 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:705 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:859 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:992 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1135 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1192 -msgid "**Methods**" -msgstr "" - -# f640d4110395474995a1858a5e7ae161 -# 5f7db920efa24d0992cb39f3347e3452 -# a66e639221f64c88a0e8a536a61d8eb2 -# e90410316ef640b7b1dcca4f6b3478d2 -# 0727450771ad4c1a95608ecaad494aec -# 9d01487258f74810ac705fc22a473330 -# fc85147f8b5947668bcc6b7cdcbe0618 -# 28289d211bc84dad8c9f84e0da0d70dd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:258 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:391 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:524 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:705 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:859 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:992 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1135 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1192 -msgid "**Tools**" -msgstr "" - -# ec4e026a103f4876874221c26e04c06e -# 5ceee3d4ee2a4bde83eb849382e16285 -# c3b8065d8ca649f4aa92672841eb1028 -# 3813d72259f14ebb8eb8e4f4e920fc26 -# 04f806fa41f14c38977c59575c3ef902 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:260 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:393 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:994 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1137 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1194 -msgid "**Introduction 5'**" -msgstr "" - -# 7d43f3b2373b4626bf0934b39afed1f3 -# 7d640100e3ca466ab0ac36829ce49f08 -# a1edfd2411ab4c72a334dc325c53e5d6 -# 3183ef8656aa4a0b9ba56dd73238398b -# 9b927d90426e4548bdca60b06fdba360 -# 9bd6c264dea340e9a5489e0543bef4bd -# 9bec5ee733bb4f96b78de431b7455def -# 966768ff078446eaaed185cc1ad8a818 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:262 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:395 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:528 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:709 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:863 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:996 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1139 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1196 -msgid "" -"Explain the importance of the session, objectives, outcomes and activities " -"of the session." -msgstr "" - -# 4e1b2523cbae4638b45b75df02f6510d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:260 -msgid "Lecture *Slide*" -msgstr "" - -# bf0c5bf43b4f4534b092c8e4abb1aaed -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:260 -msgid "*Powerpoint*" -msgstr "" - -# a0bc321ce5554e958370f6c40be97aa1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:265 -msgid "**Quiz 15'**" -msgstr "" - -# 00aa12efcfa74c48aa0b259b453da9bc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:267 -msgid "Ask questions to be answered by participants, such as:" -msgstr "" - -# db20865c67044a168348b8d33c420bfa -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:270 -msgid "What is OpenStreetMap?" -msgstr "" - -# b5752780a867418cb4f846140a571ee1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:271 -msgid "What is data?" -msgstr "" - -# 2be9958573484e0a93b7f172d9f3a0f6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:272 -msgid "What are the components of a map?" -msgstr "" - -# 89f8069c2112468e8f7771e5a769b5a8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:265 -msgid "Quiz" -msgstr "" - -# 76397ecb5a874a018944c7ebed2517c2 -# ca9b4b2161ed43c5aa991815786fb859 -# 213455a571524b8d9840bdbf85611c9b -# 1e2a049e7ab3456b98d629ebe9a52cf0 -# 3e81428c6d034e99a4c1d406b1f6c368 -# 0c8fd6c70e004a45af12023d42cb3e4a -# cede5d36483c4f3cb13283468a5275ee -# f666db275fd54bbda11a1c0e3196fd6b -# a793929547e640acaa69c2255f31a676 -# a845c618ee8e476f9707a64fcc67c2f1 -# d423df969fc3447ca8de1a82eb3ddb4c -# 16e10d33186840efb895d9580f1b88f4 -# 404c08331e1b44c39fdfe27f5e7411f7 -# 0cf8ca05b3724d57b3d75b210a831c7f -# bce7a727462245a4ae75dc93a625cdb2 -# e84d810d0410429f8f425ec94d160a7d -# 295af7bf00a34ae0b40434d2f6b8066f -# 33fbe1e520174b26bc57ef4257667a58 -# 10f827d7e6004b749abf42ac6ced36c0 -# cd7e30b4acb04fa3ad3c9f373614a271 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:265 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:393 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:402 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:414 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:424 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:438 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:447 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:526 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:534 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:707 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:712 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:720 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:861 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:866 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:876 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:994 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:999 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1137 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1142 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1194 -msgid "*Powerpoint* *presentation*" -msgstr "" - -# f514ec051e804f8db9acb037b8e55d70 -# 364d973b1a14487b858c4fc449e49897 -# f12e53a13a0c4fdd9763c62a0897d747 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:268 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:277 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:295 -msgid "Module 1" -msgstr "" - -# 001a2aab436345c8ab4d5c5822a74a9b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:274 -msgid "**Explanation 30'**" -msgstr "" - -# 9e4506cdb8e94f189510758dc8ddaf48 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:276 -msgid "Definition of OpenStreetMap" -msgstr "" - -# b1fda01c302d4f2c97de3bfa6d8b08bf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:278 -msgid "Data:" -msgstr "" - -# 22905ff7aee2472d9e20ce5601e2c32b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:280 -msgid "Definition of data" -msgstr "" - -# 4094e651ecf64366a326ed8e3fe797e9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:281 -msgid "Objectives of data collection" -msgstr "" - -# 65b621ba09724d019fef44991629aaa0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:282 -msgid "How to add data" -msgstr "" - -# 21e187ed7478445c8d93e7b5fa67d221 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:283 -msgid "How to save data" -msgstr "" - -# 590302c7c92641a3b4fe80c7450f535a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:285 -msgid "Map:" -msgstr "" - -# 40e87c8d970a47c998f1ac8765312e83 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:287 -msgid "Definition of a map" -msgstr "" - -# 26c63b24b78e4e1f824bf05434a71727 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:289 -msgid "How can a map show us information?" -msgstr "" - -# d46c85ef4770440d957a455c378bc245 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:290 -msgid "How to connect attributes to a map?" -msgstr "" - -# 2b730981e9aa4697968bc6b045e03daf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:291 -msgid "Mapping process" -msgstr "" - -# 7976d6c87bc94d7abccabb905cd89c5a -# 12345f3d57984f778cacce26d0335553 -# dcdd68389fba46ef8e60b9f32561fb79 -# 5dfe3eee222a421f864b6e433c218fa1 -# 4aec9f27aef34e9ca0dea2c85ad17f9f -# 01333460ab8b41788aae4cb412ece17a -# b18f477bad864fe896d6ad120a817678 -# 888c60b6ca4e476393b1d8bddc738e87 -# 14c548bd1bd74455934a96d01f463e5d -# ecfa6b2e1a17444c91b0fc1cda964557 -# 4a724514a54046b6bfb30f4ed0c62cdf -# 71c9ea2e097e4273801b543e6ef4ef6e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:274 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:303 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:393 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:422 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:994 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:999 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1137 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1142 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1194 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1199 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1208 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1220 -msgid "Lecture" -msgstr "" - -# ce3ad911306c4289b09b25f359c091b7 -# bc23fd2decf441f2b5b9517014f32c1b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:274 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:303 -msgid "*Powerpoint* *Slide*" -msgstr "" - -# db86ccb5e67642d9b3da528dbf085bc0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:293 -msgid "**Individual Work 10'**" -msgstr "" - -# 670d0c37997e449488304e2741cbcd65 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:295 -msgid "" -"Ask each participant to draw a map, complete with its information such as " -"the name of streets or districts" -msgstr "" - -# 0875fa4d907d474ea3824ae6279e3e2a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:293 -msgid "Individual work" -msgstr "" - -# 4d26eee54eca4132a7d1398c5e5cccf2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:293 -msgid "Paper and pen" -msgstr "" - -# 2425e704261f40f9a5f42ac3b2e5d60b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:298 -msgid "**Presentation 15'**" -msgstr "" - -# 63c156573fd24839833f5443d665ade8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:300 -msgid "" -"Ask the participants to show their maps and explain what they have drawn" -msgstr "" - -# 6dbb2b2fc8f64bc6a6b2ede1aca5dfe3 -# e6361017508249a09f6d2717f4c5e82e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:298 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:769 -msgid "Presentation" -msgstr "" - -# 93958e9f36b24196ace90b2fbc26a3f5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:303 -msgid "**Emphasis 10'**" -msgstr "" - -# 8d5c1c60538749069bcc710c5d3d3e84 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:305 -msgid "Emphasise some points:" -msgstr "" - -# b1ee6811f0a046cf9e47a39bbb09d91b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:307 -msgid "A map represents places/objects with different symbols" -msgstr "" - -# 210b67a4d4fd42ab97c3b2195106372d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:309 -msgid "" -"There are three ways to represent an object: as point, line and polygon " -"(area)." -msgstr "" - -# e817c3d174ae4b5eaf5181e49fada665 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:311 -msgid "Objects on a map represent objects from the real world" -msgstr "" - -# 910bded03f524fd79e4af246d11edb58 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:312 -msgid "" -"Digital maps are composed of shapes similar to real objects and the shape is " -"composed from points, lines and polygons (area)." -msgstr "" - -# d3caf8a4d40f4202b70dfb2e1521271e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:316 -msgid "" -"Ask the participants to give examples about objects that can be represented " -"as point, line and polygon (area)." -msgstr "" - -# fcf020cda29f48ab885a16aa3def11e7 -# 594087b1741440a08df6930f64b60b71 -# 3b2bc1f696174dd1ad3034baf55b7b1c -# 5738f05acceb402eb41ee11615421cd2 -# 02f92d71a40c45eeab8e2a08bb8d01a7 -# 7483e75e3df34bdfbdf64fcf7c6dbb84 -# 3eb48b47377e441a8d7c49bbdf595b41 -# fa2e93c5d0074f0cb87b9b521b791226 -# a1d1146159b84de9825c1db9cfe2b24c -# 269202fe108746b3a41f74f5d8e2df3f -# 7418916667814e4f85e6893dbea2707a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:305 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:319 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:424 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:452 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:569 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:722 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:774 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:866 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:919 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1001 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1154 -msgid "Q & A" -msgstr "" - -# f4cb2c542c4c4f509ad48783db3744fa -# 05a4adfa9aa14957a4ba83d876df78c1 -# 420fce2c07fb4131ac8f1d497396ea68 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:319 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:452 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1154 -msgid "**Closing 5'**" -msgstr "" - -# 0ca3d6d09ea9478aa047708cc964b02a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:321 -msgid "" -"Ask the participants to give their opinion and feedback about what they have " -"learned in Session 1." -msgstr "" - -# f6d4a1899d33482a8a5e6dc847d4ddad -# aad3c244a66845f384751cf53651247f -# 94ee08f36d1f42688ca66665b6b94f14 -# 98e52bd58a81481d825e0e8a14c29e9a -# 6f3da59e61b14be7998c7ab824621040 -# 21fe51ba801e455c8aa1ed9ee7c8888e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:326 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:459 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:606 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:806 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:932 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1061 -msgid "FAQ (Frequently Asked Questions)" -msgstr "" - -# e581964843164ac0b5ced1b4eac4ee31 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:328 -msgid "**How did the UK begin mapping? How did OpenStreetMap start?**" -msgstr "" - -# ce88cfe6946f4deab371326f732ced0a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:330 -msgid "" -"OpenStreetMap started with just a handful of volunteers who had GPS devices. " -"They went out, collected data on their GPS and made sketches of maps and " -"took notes, and then added the data into the OSM database at home. These " -"initial volunteers hosted \"Mapping Parties\" in different towns, in which " -"anybody could come out with them one day and go mapping. These parties " -"helped expand the network of volunteers, get more people involved, and " -"create great maps of different towns." -msgstr "" - -# 76bb6fe325764e8dadcf97a852d15bac -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:338 -msgid "" -"**How did they create maps so thoroughly? What technologies did they use?**" -msgstr "" - -# d11858b20b13422a96da4b9e87a0780e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:340 -msgid "" -"At the beginning, mappers only had GPS to work with, and any map data that " -"was freely given to the OpenStreetMap community. Later, OSM made a deal with " -"Yahoo! to be able to use their satellite imagery to digitise maps with. More " -"recently, Microsoft and Mapbox have made imagery available to OSM." -msgstr "" - -# f84801ae5cb74caab4368c76b05ce082 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:346 -msgid "**Can we use OSM with Google Maps?**" -msgstr "" - -# b1245004996943e2b78cddf5051712a3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:348 -msgid "" -"It is not legal to use Google Maps as a resource when editing OpenStreetMap. " -"Google has not given permission for this like Microsoft has, and so it is " -"not acceptable to use." -msgstr "" - -# 2aca0a2f74a44af79e16c70a6f601f44 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:354 -msgid "Session 2" -msgstr "" - -# 9af824c11e1d432e9d87f43a061ba135 -# 6ed36eff0da54904b8c96e0b0892e43f -# b1dc276951804e7cbec2d0de8eb0d73d -# 4c8acf8cf676434fa2d3adfb70fef553 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:357 -msgid "Working with *OSM*" -msgstr "" - -# f0983bd14d5d49959f3662a67be738c4 -# 9b522a7a3bf7411ca7b0b952c6fc17bf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:358 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:480 -msgid "Time : 180 minutes" -msgstr "" - -# 0c5b6fe8dc2245d3be7db6a26ed4dde4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:366 -msgid "Visit OSM website" -msgstr "" - -# 7b97e3958e474fcc8e3258be537f43fc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:367 -msgid "Navigate map on OSM website" -msgstr "" - -# a9043c6c8b1d4c18a2fadd2b2722d709 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:368 -msgid "Save an image from OSM" -msgstr "" - -# 40be43e3bfa24b9281a1fb7662fa701f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:369 -msgid "Register an OSM account" -msgstr "" - -# a727eee09d9143faaf8000081faac1d3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:370 -msgid "Editing a map" -msgstr "" - -# a5c7667df15e4f05a39fa416fab39028 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:371 -msgid "Save edits" -msgstr "" - -# e4fa52fe2403454db0593d5895522020 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:375 -msgid "Participants sign up for an OSM account" -msgstr "" - -# c10807e1aeed4240b2551567fe8c97b8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:376 -msgid "Map images created from OSM website" -msgstr "" - -# 9f8211d5ce8c4c7da782be7347cafa3b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:380 -msgid "**Working with OSM**" -msgstr "" - -# 3565b58fd7f845f5b8bd5048897eb4b4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:382 -msgid "OSM website" -msgstr "" - -# d12a1bd0140840748d9efef5dfd93e23 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:383 -msgid "Navigating the OSM map" -msgstr "" - -# 787b09a500de4d28b4652bae41ee4e48 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:384 -msgid "Saving images from OSM" -msgstr "" - -# 735cf89d4e0a48268d09b8e5e92848da -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:385 -msgid "Creating an OSM account" -msgstr "" - -# 747b5af199864ed49cadb669d2469a10 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:386 -msgid "Editing the OSM map" -msgstr "" - -# e2ee4e8d90c045e6b00e94b1ec9951b9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:398 -msgid "**Demonstration 20'**" -msgstr "" - -# 6cf6465bd2f24c9cb0d3e81ec33b46e1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:400 -msgid "Ask participants to pay attention to a demonstration about:" -msgstr "" - -# 859919052d544097ac8b49f70a1b4fc8 -# f51f0aaeabf9483c8167249a726d4271 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:403 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:416 -msgid "Main functions of OpenStreetMap website" -msgstr "" - -# c4afb0b529fc4ab9b47669810fd10c0d -# 0ff0a56cf7bd4cc4baeaadfc401e7bdf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:404 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:417 -msgid "Zoom in and zoom out the map" -msgstr "" - -# 24937d32aa4c40b1b8e06af72db4ee7a -# 55feef4c0ff7478c9a58fa60ed3b7749 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:405 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:418 -msgid "Pan the map" -msgstr "" - -# 8b8f1e98f587437eaeb932d0b5966358 -# 0fa0bde3bbbd45abb74a02b564485adf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:406 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:419 -msgid "Find a place" -msgstr "" - -# 7e5614681ce74a8f90878a1aa8af50ef -# 0aadea45a8164130bd826fae4bd53dab -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:407 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:420 -msgid "Save image from OSM website" -msgstr "" - -# b926663d503541f597fe00c1a9e14554 -# bea20fb683c3489f860e863968d91e34 -# c2e57161977d4b19a6d617327b911894 -# 05fc7aee60394cfdb4e395852ffb7591 -# 09dec8fea806482093c80397bb282201 -# 8bda86af7be84404a6c4b87833b178f0 -# b65b08e584054cb8b87b285027c586d4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:398 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:434 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:443 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:534 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:544 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:731 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:879 -msgid "Demo" -msgstr "" - -# f9f98fd110804debaf176e5a1caa1aa1 -# f7282522687048a6a0b5ea21bc003c88 -# b23a0fb668fc4166ba2834519184ba8c -# 2fc1556b17134c5c86b8174c4e878403 -# 13a6327c11e84eca8fa6b3ab50582b5e -# 0144febc02b64e5cb99963baf604bcd8 -# 252d3b3d3018430f8ce3d8f8a4c8b93e -# 29f2724f97a74be5b51da94d631798d2 -# 07cda613914d42d39a9fe57ea93d6ca9 -# 2d23aac2070c4546a39b118d70a900c9 -# aa6a9b569b1846c8bf9aeb6d42b46af2 -# 7834c25eee9340acbf30eb1ac74bec21 -# 3662ac82e9984567bc8931d9b3c8cdd4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:398 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:410 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:434 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:443 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:886 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1015 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1027 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1035 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1043 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1052 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1147 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1208 -msgid "Computer" -msgstr "" - -# 4c448a9961aa4aa7b0805fc1d43fab3f -# f91a59453bdb405387cebc90412f32ea -# 9fc7612fced64df39960ae2560503d58 -# e0c488305f764ea494923004dbd65319 -# 9b48ea934400411cb640b6f105d203da -# ea805b84a69b42399d12a06e01dcbe67 -# 1d0f3419b36d48ee8ce568e6fccfcd5f -# adbd3d805632414eb9035da6979213e6 -# 6e590383598e46708961166d52808926 -# 225fdddd80c0434d864a6965eb44a7bd -# db20de20f6ac43ba9310bfa31f13e9fc -# 97bc5f775fef4ddcbcb1935b01f73487 -# 7a1efe61135e40d3b421248b451343c5 -# 169fd2f7b8ab449fb9137620ef5e8346 -# cefa2b628c9d4b94bc9029dc9ad34b57 -# e1689cd651dd4c6a96cbceaccf898b42 -# cf07a3aafc6d468eb0c5df8c77e03c6a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:400 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:412 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:422 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:436 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:445 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:874 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:879 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:900 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1019 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1031 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1039 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1047 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1056 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1151 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1202 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1212 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1220 -msgid "Projector" -msgstr "" - -# b62d60f97f6c4be699bf57c182aa3e2e -# ff6529e8fcb94ec3b3ec1c10e03c28d2 -# 5ccafa87a4884acb9e472389eb1356ca -# b6b564f44d354fdbb2e3aa45da7b59ea -# 280b97241ac14264bb6632f577c6f1c9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:405 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:417 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:427 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:441 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:450 -msgid "Module 2" -msgstr "" - -# ae538ad996da4891935c447bfc328377 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:410 -msgid "**Practice 40'**" -msgstr "" - -# 90799ac1e77d442591682cc0a1745506 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:412 -msgid "" -"On the projector, show participants openstreetmap.org and ask participants " -"to follow these activities:" -msgstr "" - -# 86c23d01d2454321bdaef6c36b842e62 -# ad2cefb61ed54a3fbb04177db19cbaf6 -# 88b32068b8e54e06b66ad63e44617f7e -# 0fa914795359431a94487b1ce8f8b20d -# aeea2dfc40574f9fbf94f8321443da4f -# f31766705bf847608811760c6c392894 -# c12070d4c12c48cebdcbe322a7424099 -# dac8ba76700d4508acd54627c21ef382 -# f76b4aa58d9e426ba9de29fa53ebdf65 -# 64c3ec47e56c4e8dbf502ebb85ac1e3d -# 55f331ee518f4cf0a98acf4a81d266d6 -# 585f14b7d24444489f83930e6e1a090f -# 4077245e63a84e1ba0d205eef679c4f4 -# a5dd08fb03534b34bdf8b0840b52e28e -# 63e0a597de424f45ace564f7297f3940 -# be0b496275b34cb3aea1a2c753624e3d -# a6efebe34bd14a909cd4e757fa6aefc6 -# fb122395a38b459b91e79266da68a6d0 -# b1165859e5c049b2ab6777d9aae4ea4c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:410 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:436 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:445 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:536 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:546 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:733 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:755 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:881 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:888 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:894 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1008 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1018 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1027 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1038 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1046 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1055 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1147 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1201 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1211 -msgid "Practice" -msgstr "" - -# da6d3df826e442cc8baf888e22738e22 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:422 -msgid "**Input 20'**" -msgstr "" - -# 43f9485881f348fcbee3b09bb4018d8b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:424 -msgid "Explain:" -msgstr "" - -# b0f2be6ce610459cbeef8f31a726cf31 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:426 -msgid "" -"The OpenStreetMap licence. ODbL is a licence in which all of the data in " -"OpenStreetMap can be used by everyone freely, but the user must add " -"OpenStreetMap attribution and contribute back to OpenStreetMap" -msgstr "" - -# 1ff848c1f5314ef08e08d7b340c088cd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:430 -msgid "" -"If users choose public domain when they sign up, it means that they consider " -"their edits to be freely usable with no licence whatsoever" -msgstr "" - -# 21628d26d4d44e8a883dd26ed1e5c316 -# 041f2168d52748aa99305cdf529b9a29 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:434 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:443 -msgid "**Demo and Practice 45'**" -msgstr "" - -# db5415b9f3e24dbb808de513e7a590d3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:436 -msgid "" -"Show the participants how to sign up or register an OpenStreetMap account " -"(problems: some participants might not have email accounts, some " -"participants might forget their email passwords)" -msgstr "" - -# a332875c54dc4827959509b9fceaec2b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:440 -msgid "" -"When everyone is signed up, show participants how to log in to their OSM " -"account" -msgstr "" - -# 923bfe63c0394e1690de649e64a07ad4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:445 -msgid "" -"Show participants how to edit the map on the OpenStreetMap website and save " -"their edits." -msgstr "" - -# ee1bf9431c12472fb357ede67316bd99 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:448 -msgid "How to add and remove objects in the iD editor" -msgstr "" - -# bda708037dae471980d3ecf96fbf780d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:449 -msgid "How to save edits in the iD editor" -msgstr "" - -# 177753b13e234500a27abb34a9ce5847 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:454 -msgid "" -"Ask the participants to give their opinion and feedback about what they have " -"learned in Session 2." -msgstr "" - -# c9e06715cacb4a5fa587404b3f7f07ab -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:452 -msgid "Projector *Powerpoint* *presentation* Module 2" -msgstr "" - -# 9217592194634038b885e61fc40ca405 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:461 -msgid "**Forgot Password**" -msgstr "" - -# 175a9ad41916452a86ba2eca2b64db23 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:463 -msgid "" -"Sometimes participants forget their password. In this case, you will need to " -"help them to reset or create a new password. If that is not possible they " -"may need to open a new email account. If the participants already have an " -"OpenStreetMap account but forget the password, help them to reset their " -"password." -msgstr "" - -# 501c657f075448f4b75104bda3a6828a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:469 -msgid "**Do not have email**" -msgstr "" - -# 6174cbf96ce940f481df8e47f035c352 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:471 -msgid "" -"If participants do not have an email account, help them create a new one." -msgstr "" - -# ca5c1770aeeb4134b05d8b8f692b2ae2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:476 -msgid "Session 3" -msgstr "" - -# 3e44e95304c54a17829cc0d633ec11b0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:488 -msgid "Download JOSM" -msgstr "" - -# e41fb196813748f68a6f246f39fcc626 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:489 -msgid "Install JOSM" -msgstr "" - -# f0ee9cb7dedd4fdf9bfa4f6373be49e4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:490 -msgid "Set JOSM preferences" -msgstr "" - -# 7841497280ad4f74a6cd35a0585157b2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:491 -msgid "Use basic tools" -msgstr "" - -# b6f85817bdab474f8c4553428ac9034a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:492 -msgid "Draw nodes and ways in JOSM" -msgstr "" - -# 6a552502227b4dd29bd2ba123d3c5a60 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:493 -msgid "Change objects" -msgstr "" - -# c1b7a38d68174d2d9897fcc2c307cb04 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:494 -msgid "Add tags to objects using presets menu" -msgstr "" - -# e4b4941a98a441beaf163d5ad04e2e9f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:498 -msgid "JOSM is ready to use for OSM mapping" -msgstr "" - -# 36d7538f731a4083abef6412417d78f5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:502 -msgid "**Working with JOSM**" -msgstr "" - -# 7e4297fa6e25472cacf6969ce9ad32da -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:504 -msgid "Downloading JOSM" -msgstr "" - -# 3734e4c7385c42c198571ccd751489c0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:505 -msgid "Installing JOSM" -msgstr "" - -# 1edb28d775e2464ca99b95de42c3b0b7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:506 -msgid "Setting preferences in JOSM" -msgstr "" - -# d66b46cd0bc54f9db74e4db18a0dbf66 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:508 -msgid "Bing imagery" -msgstr "" - -# a2ab429de16d45e0a350d6b4d7601e8d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:509 -msgid "Presets" -msgstr "" - -# d3b4bb8a89f84febbc4cf1ea20569420 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:510 -msgid "Plugins" -msgstr "" - -# c56bdfb674204888bc02d0168263b9c2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:511 -msgid "Language settings" -msgstr "" - -# b3bc6c2d89f34e59a1020a0032a3daa7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:513 -msgid "Drawing maps using JOSM" -msgstr "" - -# 0289c31214d14a1fa477bfd4343e235e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:515 -msgid "Basic operation" -msgstr "" - -# ffaa245bdb904eebbaf6057625db5dda -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:516 -msgid "Nodes, ways, and shapes" -msgstr "" - -# f156318daece4d4c82e300a6b2a823a4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:517 -msgid "Changing objects" -msgstr "" - -# eb6b6cbab54f4b0c888097e960c0081a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:518 -msgid "Adding presets" -msgstr "" - -# 7ddfa2f8e40c404898f6b6edbeaaa630 -# 5e5c39f3de1542a7a230c15874cca009 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:526 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:861 -msgid "**Introduction 15'**" -msgstr "" - -# 4e8abdad681f4f6b882f8761f346b363 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:531 -msgid "" -"Ensure that JOSM, GPSBabel and GPS drivers are installed on the computers of " -"participants" -msgstr "" - -# 4ce6e7924e4740b5a6b304da802c14a6 -# 984779e47d8c44bbbb91f697ff22140e -# f82899a82e8b444f846cba17f2f2e1be -# 0d674c9175ea4376b565fe2e8e6881e6 -# d2b002032eaf4c8bb49a67477c6f80c8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:526 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:707 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:720 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:861 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:874 -msgid "Talk" -msgstr "" - -# 81b50e225eb140ff8da5078d16dbbac6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:534 -msgid "**Demonstration and Practice 1: 45'**" -msgstr "" - -# 774ed06491604937a0479246ba42365d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:536 -msgid "Demonstrate how to install software using projector" -msgstr "" - -# dd4f0da8aed74655b1582fabc3c9a411 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:538 -msgid "Ask participants to follow along" -msgstr "" - -# ec928e64f23949028dc460d29654f42f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:540 -msgid "" -"Help participants if they have problems with the steps like installing " -"software or computer system configuration" -msgstr "" - -# 2ab3302535004dcda1f44e744207e5fb -# 94b510cba7cf431fa3f42caed566f448 -# 1e6cbfcf3d674b30b64fc6069e8eb5e4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:537 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:881 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1210 -msgid "Participants" -msgstr "" - -# f81e80aee6054b3d9502dc00670cc28a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:539 -msgid "Computer software on USB Projector" -msgstr "" - -# 699c08f203dc44e9b45e7bf964b1cd59 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:544 -msgid "**Demonstration and Practice 2: 90'**" -msgstr "" - -# fdf6413270e0405086f1185bb4cad9db -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:546 -msgid "If software is already installed, ask participants to open JOSM" -msgstr "" - -# 0921a8eadb184ff981cc21da3f1ba5a7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:548 -msgid "Demonstrate the basic features of drawing a map" -msgstr "" - -# a6d353fad4bf4ed2a260ef3a2c719f10 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:549 -msgid "Ask participants to follow the steps shown about:" -msgstr "" - -# ea483b1542ec414b93b19d85aa647722 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:552 -msgid "Setting language to Bahasa Indonesia" -msgstr "" - -# faac26f916374f1bbfae705132b5c301 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:553 -msgid "Drawing nodes, ways and shapes" -msgstr "" - -# 9a406140481a4aa68e716c8b704cc1bc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:554 -msgid "Selecting nodes and ways" -msgstr "" - -# c83d27b3c6ed4d2480f44f8b40870233 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:555 -msgid "" -"Understanding that a way consists of nodes, and a shape is a way that is " -"finishes where it begins" -msgstr "" - -# 54d94a2f81de45fda360debad166afb7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:557 -msgid "Adding custom presets to the menu" -msgstr "" - -# e41c60e68b964c76baff46aa2d9d938a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:559 -msgid "" -"Explain how the data is added to objects in tag format. A good way to " -"explain a tag is to describe it as a label which is put on the objects and " -"each label describes different attributes about that object" -msgstr "" - -# 0328d4732a784703ab4fc3afdb17c59e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:563 -msgid "" -"Show that there are many types of tags for different attributes, and the " -"easiest way to add them to objects is by using the presets menu" -msgstr "" - -# bea57b2b528741ec9d79caecf9bc9b7d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:566 -msgid "" -"Ask participants to draw their paper maps using JOSM to create nodes, ways " -"and shapes" -msgstr "" - -# 91353a6e85c541448e99cefa2d602b51 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:544 -msgid "Computer with installed software" -msgstr "" - -# 17dfdfe7b57c4e75ae7b4883dbec5fb4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:548 -msgid "Paper Map" -msgstr "" - -# 66adb1e4af2441a99fac9b762299d1f8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:569 -msgid "**Closing 30'**" -msgstr "" - -# f29c890efef345febfb82e56818b2970 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:571 -msgid "One or several participants are asked to summarise Session 3" -msgstr "" - -# 3ffa630749a24653a67a470338421a8c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:576 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:781 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1245 -msgid "Common Problems" -msgstr "" - -# fb69abd5cda346e081ba2442d09f0a8f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:578 -msgid "**Setting up on Mac and Ubuntu**" -msgstr "" - -# 23815460d7114d67af2174aaa7866e33 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:580 -msgid "" -"The steps to install on Mac and Ubuntu are quite easy. JOSM is a software " -"based on Java so it is platform independent, but you have to make sure Java " -"is already installed on your computer system. GPSBabel does not have a GUI " -"for Linux, so it would be harder to use on Linux, especially for newbie " -"users." -msgstr "" - -# b20d4d8b1ff946eaa3f70fc62b19a448 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:587 -msgid "**JOSM runs out of memory**" -msgstr "" - -# f57c74b5636f480e9319e98e1cf67ace -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:589 -msgid "" -"Sometimes if someone downloads a lot of imagery and data on JOSM, the " -"computer runs out of memory and crashes. The solution is to start JOSM with " -"a batch file that will tell JOSM to add extra memory. An example batch file " -"is provide in this toolkit, but you have to edit it using a text editor to " -"put the correct location of the josm.jar file." -msgstr "" - -# 522c8a515ea54c4089220065fc71965f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:596 -msgid "**Participants add tags on nodes rather than the ways**" -msgstr "" - -# 75d52c6cda2b415586a18a8073eb484e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:598 -msgid "" -"Sometimes it is difficult for new OSM users to understand that a way " -"consists of several nodes. Often a tag that is supposed to be put on a way " -"is accidentally put on the nodes that make up that way. This can happen when " -"a user draws a selection box that selects all the nodes on an object. This " -"is an important problem to correct from the beginning, to train good mappers." -msgstr "" - -# 04e523ac69904080b97df3135c9fbc9c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:608 -msgid "" -"**Is there an easy way to restart JOSM after we finish installing plugins?**" -msgstr "" - -# 0657a9b5edf644c68ccb25ece02c968b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:610 -msgid "" -"Yes, there is a plugin that you can add which allow you to restart JOSM by " -"clicking a button. To activate it, install it in the Preferences menu." -msgstr "" - -# c72a5aa742524793b66de078031bebac -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:614 -msgid "**Could we make tags in Bahasa Indonesia?**" -msgstr "" - -# 37aa9153a2d94160a6c4d993655e6175 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:616 -msgid "" -"Theoretically, you can add any tag to nodes, ways or shapes on OSM. But " -"because all of the objects on OSM are saved in international databases and " -"cover the whole world, we need a consensus about how to make a tag. As an " -"example, a hospital is still a hospital in England, France and even in " -"Indonesia. If every country gives a tag with their own language it will be " -"difficult and confusing to show the icon or symbol for different locations. " -"Because OSM originated in England and English is a very common language all " -"over the world, the English language is the language which is accepted for " -"tagging in OpenStreetMap. However if you want to alter the presets menu to " -"use your own language it is still possible." -msgstr "" - -# 9ddba8ede62e4597a79f09637e6a6e2a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:629 -msgid "" -"**Can we change the colour of nodes and ways and can we change the icons? " -"How can we print?**" -msgstr "" - -# 45af91951f374ae39981619f35c2fbf1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:632 -msgid "" -"You can change the colour of the objects in the Preferences menu. This is " -"very useful especially when it is hard to see nodes on ways and shapes " -"against a background. When participants ask about how to change the symbol " -"or show the name of objects, you need to tell them that this program is for " -"editing data and not to see the preview or result and print a map. All of " -"the nodes and tags will be saved in a database, but you can use some other " -"software to render your map to look better. For example, the map on " -"openstreetmap.org is rendered, although there are many more examples. The " -"difference between editing data and rendering on another software might be " -"quite hard to understand by participants in the beginning." -msgstr "" - -# 39ee3731536d46fab203e2e22bbb8f5d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:645 -msgid "**What is the difference between presets and tags?**" -msgstr "" - -# 97804e70ad004f19932fc8dc28d9848c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:647 -msgid "" -"A tag is a piece of information that you attach to nodes, ways or shapes " -"(polygon) to describe one of the attributes. Presets are a menu that " -"simplifies the task of applying tags to an object." -msgstr "" - -# cfd81bad7d934c7fadc164e348ec587b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:652 -msgid "Session 4" -msgstr "" - -# 5c8a1cdccd704acd943e026c355632f3 -# 2248cc62f1334849ba221c2b641e9068 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:656 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:826 -msgid "Time : 6 hours 15 minutes" -msgstr "" - -# 2d31c9aa92aa432596db080b46cd857b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:664 -msgid "Understand GPS and the types of GPS" -msgstr "" - -# 9a6dce930f09482fbbc01d6553d96e26 -# 2c5c217ba5d14a58a8c8f8309f7f2e22 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:665 -msgid "Turn on GPS" -msgstr "" - -# 7a9e3b88da63430a925ac409cf184071 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:666 -msgid "Set up GPS" -msgstr "" - -# 6f48c092a4bf480388404fa5f9c1cff8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:667 -msgid "Understand factors that affect GPS accuracy" -msgstr "" - -# a4f6a443ff8046b0ac3405552ad49e0c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:668 -msgid "Understand tracks and waypoints" -msgstr "" - -# f32b7edd75514b4ab88edbe55774dfbc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:669 -msgid "Collect data using GPS" -msgstr "" - -# e5d0a846f1fd442083dc963b9d9de44d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:670 -msgid "Copy GPS data (tracks and waypoints) to computer" -msgstr "" - -# 8a46fc77f78c40c1b99737977cd6fa87 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:671 -msgid "Open waypoints and tracks in JOSM" -msgstr "" - -# 0bcbba1c89a349f38b36471602dc1d62 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:672 -msgid "Upload GPS tracks using JOSM" -msgstr "" - -# 68dc3fd519984ffd92929f2ce906a638 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:673 -msgid "Edit OSM based on GPS data in JOSM" -msgstr "" - -# da855f00254c41e49cb51bae1ba19409 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:677 -msgid "Collect GPS field data in gpx format" -msgstr "" - -# acfa94365aa24d06b670d3266973be39 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:681 -msgid "**Using GPS**" -msgstr "" - -# ed75184a38b34776b2e000b60be837b3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:683 -msgid "What is GPS" -msgstr "" - -# 3f552683a45f45c1b5349c335fa88d6b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:684 -msgid "Turning on GPS" -msgstr "" - -# 598192a195f7466a9e11bfb0cbbe831b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:685 -msgid "Navigating the GPS" -msgstr "" - -# 4191fe29b9914b66a01a1ea453f53484 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:686 -msgid "Tracks and waypoints" -msgstr "" - -# 92c7b76524104a8992f03e9d313bdcc1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:687 -msgid "Saving location (waypoint)" -msgstr "" - -# 78dd6cf47a924191a98b9394e9edad68 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:688 -msgid "Turning on the Track Log" -msgstr "" - -# 371df47df3b34098b02642a8c4d1552d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:689 -msgid "GPS settings" -msgstr "" - -# 141a66241b594aa695cb46bfec4e11b7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:690 -msgid "How to copy waypoints and tracks to computer" -msgstr "" - -# 2df9578fa3c04f64bc732af7a05aebaf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:692 -msgid "Connecting GPS to computer" -msgstr "" - -# 08281a41643e41d79b0e04572453ed77 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:693 -msgid "Installing GPS driver" -msgstr "" - -# b0733a7ffe2b488aa50295a00750fbed -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:694 -msgid "GPSBabel program setup" -msgstr "" - -# 2ce1639aa0864f3bbed6868a88bbbab1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:695 -msgid "GPSBabel installation" -msgstr "" - -# cf5692cfb607475e866ba8e70ed2880c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:696 -msgid "Copying tracks and waypoints" -msgstr "" - -# 3b74da5dbb9b4035a1c34e61077dc6c9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:697 -msgid "GPS data in JOSM" -msgstr "" - -# 29f2a4232e4347cf8c37128e8dff5b2a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:699 -msgid "Uploading GPS tracks in JOSM" -msgstr "" - -# f1e478a12a5a42e395ed2492498b3b7a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:700 -msgid "Editing GPS data using JOSM" -msgstr "" - -# de7b11d323e440fca310fe4f2133b997 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:707 -msgid "**Introduction 10'**" -msgstr "" - -# ce15eb11fbbe40a69cde440d1760fe6a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:712 -msgid "**Sharing 15'**" -msgstr "" - -# 493a57a80c5e40ca8aaa9cb21e3a3c67 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:714 -msgid "" -"Any participants who have experience using smartphones may share with others " -"their experience using GPS on their smartphone." -msgstr "" - -# 8b4706d4685648d9a837d34bf01f27ed -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:717 -msgid "" -"Other participants respond and ask about experiences using GPS in smartphone." -msgstr "" - -# 8ff20753ebd14c83a80de9b55ff087e2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:712 -msgid "Discussion" -msgstr "" - -# 164cc5d5b0e645ab808d3f348a867453 -# cb2d8972b3a9464aba98274f7b71dde3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:715 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:723 -msgid "Module 4" -msgstr "" - -# bc5f81c3587a4fd894ba5da36849c660 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:720 -msgid "**Advice 20'**" -msgstr "" - -# 1223fdb3d7d247899f51da1bc466989c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:722 -msgid "Present what GPS does and how it works on the smartphone. For example:" -msgstr "" - -# cb060285de174a9cb9f499d3279023ba -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:726 -msgid "" -"Phone receives signals from radio towers, GPS receives signals from " -"satellites orbiting in space." -msgstr "" - -# 886be244004c40a79ecc356f4c18a62a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:728 -msgid "When receiving a signal, GPS can track absolute locations on earth." -msgstr "" - -# 2f18da5116d84cd1b58e06de343674d9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:731 -msgid "**Demonstration and Practice 180'**" -msgstr "" - -# d0cca3896559491b9b3753c80163c93b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:733 -msgid "" -"Give a GPS to each pair of participants (if there are enough GPS). Go " -"outside away from buildings to make sure the satellite signal is good." -msgstr "" - -# c7013062344541cf84ed9e353af6c1bf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:736 -msgid "Participants should follow the following demonstrations:" -msgstr "" - -# bb71b139ce2d47d6a447c289c183be7e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:739 -msgid "How to turn on the GPS" -msgstr "" - -# 3c307c11fa8f4eef9dd2856fed2c2381 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:740 -msgid "" -"Satellite page. Give brief explanation that when GPS is connected with three " -"or more satellite you can know your current location. It is usually takes 30 " -"seconds." -msgstr "" - -# baeec45355ff4eedabc157f06aef0306 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:743 -msgid "Go to other pages on GPS. Use :kbd:`X` button to move to other pages." -msgstr "" - -# 288f395f8c78440eb581cd7a33699b6c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:745 -msgid "Create a waypoint and explain what it is." -msgstr "" - -# 6b41145cee9d4c01b15944af7ad80779 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:746 -msgid "Look to the map page, try to zoom in and zoom out." -msgstr "" - -# 6295b4e178df4e6fa1682aa0fb958ae4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:747 -msgid "Turn on track log and explain how the track log works." -msgstr "" - -# 0268dfc1096149378d1b5d6e5646aff9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:748 -msgid "Look at the map page and walk so the participants can see the track." -msgstr "" - -# c80d691d32864041b0b1c50f73889a42 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:750 -msgid "Make another waypoint." -msgstr "" - -# 91082bff288f4728b17765950d0df4bd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:752 -msgid "Ask participants to practice using GPS in groups." -msgstr "" - -# 20e073377e7149538706483ac3ce92a4 -# f89f4badccc8455682b5d4373bf269af -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:731 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:755 -msgid "GPS (ideally one GPS for every two or three participants)" -msgstr "" - -# bd799894715e46c8a8a611ed1cc31b60 -# 4aba4eaffe1d491da349750996b865a2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:737 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:761 -msgid "Paper and Pen" -msgstr "" - -# e3355766a0a040629887b93dbb849291 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:755 -msgid "**Second Practice 120'**" -msgstr "" - -# 6c8407355b524238bb184fa0166c6504 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:757 -msgid "" -"Ask participants to walk to some roads around the training location in " -"groups. Participants should collect waypoints and tracks correctly, make " -"notes for waypoints in diaries or survey forms and make sketches of the area." -msgstr "" - -# d924c3d53e524770b0b5671f6af280d2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:763 -msgid "Instruct every group of participants to follow the steps." -msgstr "" - -# 8064b94c5ab949e3aef8bca06c59c9bc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:764 -msgid "" -"After each group understands how to save the information, send each group to " -"a different direction" -msgstr "" - -# e963028d8ee84abea6ae30bf0b6c7d8a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:766 -msgid "" -"Ask every group to collect at least ten waypoints before returning to the " -"training location." -msgstr "" - -# 79e45bfb9eb84e9999a54a49fa6f6341 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:769 -msgid "**Presentation 60'**" -msgstr "" - -# bb876c8a3a2149ba84fa80ec2cbf3640 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:771 -msgid "Participants are asked to share their experience doing field practice." -msgstr "" - -# e95fcdbedd334a76982cbd6c7c078c17 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:774 -msgid "**Closing 15'**" -msgstr "" - -# ffbe61c44bb54e58a572757cce9174ee -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:776 -msgid "Q & A about experiences and problems in the field when using GPS." -msgstr "" - -# 9af8d19a754c41b2a92ea1eb5d1de619 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:783 -msgid "**Make sure you have batteries and extra USB cables**" -msgstr "" - -# c0741e9bd2f44e3888692982bf06c0ce -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:785 -msgid "" -"GPS devices burn through batteries relatively quickly, so it is a good idea " -"to make sure every group has extra batteries when they go out mapping. Then " -"when they return, they will need to move the data from GPS to the computer. " -"It is best if every group has its own USB cable, which will enable faster " -"copying of data to the computers." -msgstr "" - -# 3ffd2e6ab3f54dca8c76c7ae5c74d986 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:791 -msgid "**All GPSes should be formatted the same**" -msgstr "" - -# dba99e3f690d422897ae2d6d2ba00709 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:793 -msgid "" -"Before the training, make sure all GPS devices are formatted in the same " -"way, which will prevent participants from getting confused. Many GPS " -"settings can be changed, but when teaching a group it is best if they all " -"look the same." -msgstr "" - -# dbfd94585a8046dc9f4c17b09a07e8f4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:797 -msgid "The key things to make sure of are that:" -msgstr "" - -# 41856305f32b4d2b8e41bb99e34eae10 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:799 -msgid "" -"Page arrangement is same and in the same order: Main Menu, Track page, Map " -"page, Satellite page" -msgstr "" - -# 1407275f859545da985b71cbe1281863 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:801 -msgid "Coordinates are saved in decimal degrees" -msgstr "" - -# c65578f05fdc45e6bb427a6779eccc72 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:802 -msgid "Units are in metres" -msgstr "" - -# 4f6a3dceb5514e3581d7066a7771b57c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:803 -msgid "Elevation has been calibrated correctly" -msgstr "" - -# 7c471097551d4bd79655dac41cc80df9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:808 -msgid "**What projection does the GPS use for collected data?**" -msgstr "" - -# 172091ea646e482aafa592bca946c56f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:810 -msgid "" -"A GPS can be set to record in different projections, but for our needs, the " -"GPS must be set to record coordinates in geographic projection WGS84 " -"(EPSG:4326)." -msgstr "" - -# b7299d9549fe466fba3362c73c949af5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:814 -msgid "**How accurate is the GPS? How can the accuracy affect the data?**" -msgstr "" - -# f1e1bec090b446cf8942fc45c5b6cff0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:816 -msgid "" -"Consumer-grade GPS devices (such as the Garmin eTrex line) typically have an " -"accuracy of between three and 15 metres. The Satellite page on the GPS " -"indicates the accuracy when it is in use. For our mapping needs, inaccuracy " -"less than 15 metres can be ignored." -msgstr "" - -# f227bddf7f15440cac99f9d9686eb07f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:822 -msgid "Session 5" -msgstr "" - -# f80e8be8685d4bf4a0eaa34eed99c4aa -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:834 -msgid "Understand how to use Field Papers" -msgstr "" - -# b78aad207bf3478db23668458634d273 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:835 -msgid "Make and print Field Papers" -msgstr "" - -# bcbac682f99949c6af2acaf667faebd5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:836 -msgid "Add information to Field Papers" -msgstr "" - -# 299f5228df824eacab63c9e55084fcf8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:837 -msgid "Scan and upload Field Papers to fieldpapers.org" -msgstr "" - -# 2ff1480ea71046f49b810d0369ee564d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:838 -msgid "Open Field Papers in JOSM" -msgstr "" - -# 4c201eb7674a422ca404f424f71b9026 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:842 -msgid "Print Field Papers as PDF for surveying" -msgstr "" - -# 534d26bedafc406b82e7f567a01395c8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:843 -msgid "Add field data to Field Papers" -msgstr "" - -# 0b3c011a6ef6470d96b69419a2e99fcc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:847 -msgid "**Field Papers**" -msgstr "" - -# d67535c448eb454988d6295d374c0073 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:849 -msgid "What is Field Papers" -msgstr "" - -# de829af4d1824e3c9f9c441817e3a2d1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:850 -msgid "Using Field Papers" -msgstr "" - -# 9e41c7f8260f4405a43879c24edc4190 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:851 -msgid "Making and printing Field Papers" -msgstr "" - -# 47272d5b5d9d4ed999a480fbeb675308 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:852 -msgid "Mapping with Field Papers" -msgstr "" - -# 0699fc8f103f44deb0a6d49b179a9482 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:853 -msgid "Scanning and uploading" -msgstr "" - -# c5cedebc5b504940b711344b6b357b3a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:854 -msgid "Field Papers in JOSM" -msgstr "" - -# e86b632a5f454be1ac5275fa4f2467c9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:866 -msgid "**Q & A 15'**" -msgstr "" - -# 8cb93779931c488fabafaaf82c1231c6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:868 -msgid "" -"Ask if participants have any experience using Field Papers and how they work" -msgstr "" - -# 198c8bd13c9141bcb1a23569c9fbc5cd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:870 -msgid "Participants ask about how Field Papers works" -msgstr "" - -# eb641b8b325c48be89293ca4461a59a6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:871 -msgid "Show participants Field Papers website" -msgstr "" - -# 735239751d504c7d8404b49b2f4e82d3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:869 -msgid "*Field Papers* examples" -msgstr "" - -# a38d5e0b5d5743348b37fd40c1e897a2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:872 -msgid "Module 5" -msgstr "" - -# 057909fc1c9d408692b4980e507cba4e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:874 -msgid "**Explanation 15'**" -msgstr "" - -# ae7d44191fd54073925598908daaf3d3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:876 -msgid "Explains Field Papers, why it is useful and how it works." -msgstr "" - -# 98144b240c7e4869ad17bd6e495c6c0a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:879 -msgid "**Demonstrate and Practice 105'**" -msgstr "" - -# ac2a3c255ee24ac1bfb4011a61c92a43 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:881 -msgid "Demonstrate: (and participants practice)" -msgstr "" - -# 4477f0b1863c41a7bb3024187822b06c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:883 -msgid "Mapping using Field Papers" -msgstr "" - -# 54d49c9450034de1842f07d8241ad617 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:884 -msgid "Scanning and Uploading" -msgstr "" - -# 7ccbeba854194eae8fdbb6c1607343a7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:885 -msgid "Opening Field Papers in JOSM" -msgstr "" - -# d92c289882894ad49f7da66920516ddf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:888 -msgid "" -"Guide teams to make their own Field Papers, and then collect Field Papers " -"from each team as PDF and print them." -msgstr "" - -# 426e2c7d10334441b55258e8b7e74c5a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:888 -msgid "Participants Computers Projector Printer Papers" -msgstr "" - -# 64a7f84152ae427288dfd516da89a68e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:894 -msgid "**Big Practice 225'**" -msgstr "" - -# 4f52e958f4a14c1db587bdf9954be4b9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:896 -msgid "**Divide area among groups**" -msgstr "" - -# 862b85b9505341979e3f36826c33bb13 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:898 -msgid "" -"Show participants a satellite picture of the area to be mapped today, over " -"which you’ve drawn lines dividing it into sections." -msgstr "" - -# 008d174123b149e08352a226375f5be2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:900 -msgid "" -"Do not create very large areas. The focus of this exercise is simply to " -"introduce the survey method." -msgstr "" - -# cd1c246581534ac3b534920b790872b3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:902 -msgid "" -"Explain that together you will all make a fantastic map of this area today. " -"Each team (partners) will be assigned one of these areas to map, and they " -"will all go out to collect data, and later will add it to OpenStreetMap" -msgstr "" - -# 9948d0d8506c4cbe9967622e92344e3b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:906 -msgid "" -"Teams will be equipped with a GPS, as well as one or two Field Papers for " -"their area, which they can use to write on and take notes." -msgstr "" - -# 47329ad26c284740ac26ff68f2d9711b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:910 -msgid "" -"Each group goes out to map their area. Make sure all problems and questions " -"about GPS and Field Papers have been answered and the participants " -"understand what they should do. When they finish collect their Field Papers " -"and add them to the website during the break." -msgstr "" - -# 23ff08b54334460fb03a03470f904d13 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:916 -msgid "" -"The easiest way to do this is to take photos of the Field Papers and upload " -"them to the fieldpapers.org website." -msgstr "" - -# 0c4b78249a6c430ab12e0568e21dd5d0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:910 -msgid "GPS" -msgstr "" - -# 5df0889ed1404d77841489bf8433c587 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:914 -msgid "Pen and Papers" -msgstr "" - -# 9b219d8c8b404653802024874cb0ca4e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:919 -msgid "**Review/Q & A**" -msgstr "" - -# be71f1fbb1f64f6f8422ac414a5d6056 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:921 -msgid "Ask one participant from each team to tell how the survey went:" -msgstr "" - -# 0c7edea22466429bb5dd07092d04beec -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:923 -msgid "Their survey strategy" -msgstr "" - -# 856d074094d94ab983bf003db27370dd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:924 -msgid "Benefits and weaknesses of their strategy" -msgstr "" - -# 9e9d9fc874974eb1bfda2bbba344d411 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:925 -msgid "Problems or challenges that come from doing field surveys" -msgstr "" - -# 2155b2ea847c425e9d9ec430ac433897 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:927 -msgid "" -"After identifying common problems, discuss solutions for them to minimise " -"participant problems." -msgstr "" - -# 0a2f2748cc3248cf89a6048a63da7db3 -# 1d827a08065746b2a2f2b0db64bf87e7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:919 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1222 -msgid "Microphone" -msgstr "" - -# c3af53b833264106b9e7d9473707bd9f -# e5da9e6b1d5242d395967376cadb353e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:921 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1224 -msgid "Speaker" -msgstr "" - -# 76603db5c0824e898a8ae2e9c3e3fadd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:934 -msgid "" -"**How can we print large size maps, such as a poster for a community mapping " -"project?**" -msgstr "" - -# 9eb858efb5bc4eb5a83b5efa945c1e09 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:936 -msgid "" -"One way of doing this is by using |QGIS|, though the topic is not covered " -"during this session. Basic QGIS training is provided in the next unit of " -"this training, and from there users may be able to learn how to format and " -"print large maps." -msgstr "" - -# a2cfdfb2119f470b8c7afca4dde907f6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:941 -msgid "**How do we scan Field Papers?**" -msgstr "" - -# 4a23c39bf76947ebbc6d7791471d15f3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:943 -msgid "" -"You can use a scanner, a mobile (smartphone) or a camera to take photos of " -"Field Papers and then upload them to fieldpapers.org." -msgstr "" - -# ca1ff5a17e8b4f1c8c95c0977fb2cd7b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:946 -msgid "" -"**What should we do if uploading Field Papers is really slow or does not " -"work at all?**" -msgstr "" - -# 67df2b0d3b2d449cbe32602d6cc0cfbd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:948 -msgid "" -"Unfortunately, the Field Papers website is not always 100% working, " -"especially when many people are using it as once. The process of uploading " -"may take longer than your lunch break. If this becomes a problem during " -"training, participants may simply use their Field Papers as handheld notes " -"and you may show them how to use imagery and GPS data as reference layers." -msgstr "" - -# 9e6f39d8ff6c4722ab84e8fb03ff97f7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:955 -msgid "Session 6" -msgstr "" - -# d22bdfda71a94a88a82b66cecf26b942 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:958 -msgid "Editing *OpenStreetMap* with *JOSM*" -msgstr "" - -# df6ae3d851d5487fb744c15851a55ef6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:959 -msgid "Time : 7 hours 45 minutes" -msgstr "" - -# 575602b93d914ea7b5200daf3aa7fe69 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:967 -msgid "Download OSM data in the area you want to edit" -msgstr "" - -# 5642594d0f174e1ea77cba583db52ff1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:968 -msgid "Select layers" -msgstr "" - -# d7823fe33f474aa8a795f1737707f162 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:969 -msgid "Edit OSM data" -msgstr "" - -# 2b6b9565614d487a8ead2dd55a97fe50 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:970 -msgid "Edit and understand tags" -msgstr "" - -# 0c798ef65e4f49e19e36b8ea106b275d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:971 -msgid "Upload OSM data" -msgstr "" - -# 7440e4375c9c422f99831e092fe0e50b -# bf5322ec16964a8b9f4a24ad3a8556c7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:972 -msgid "Save OSM files" -msgstr "" - -# 2eeb67e3558f47ffb4585cfffc12a53f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:976 -msgid "Survey area mapped in OSM" -msgstr "" - -# 8edadbdabf5c4087970f76ba5a442f4f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:980 -msgid "**Editing OpenStreetMap with JOSM**" -msgstr "" - -# 1f936156afdf4f26bee3c4cb4194af84 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:982 -msgid "Exploring JOSM" -msgstr "" - -# a4d041893cac4e74833ae6d451e390dc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:983 -msgid "JOSM layers" -msgstr "" - -# b5834b76739f4ab0b2d1586e37ab9ead -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:984 -msgid "Editing OSM data" -msgstr "" - -# b194e10eb07b496dbafaab5ffca98b82 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:985 -msgid "Tags" -msgstr "" - -# f797e505103146de8fc07e3300924c18 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:986 -msgid "Uploading changes" -msgstr "" - -# df4a9a2c39d3458d889b392a1894d506 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:987 -msgid "Saving OSM files" -msgstr "" - -# a1667b1a32294658a926980cdcb925d2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:999 -msgid "**Review 20'**" -msgstr "" - -# 5cfe1a4310d243bfbd674cb987cae4de -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1001 -msgid "Remind participants of the basic operations in JOSM." -msgstr "" - -# 6df9ee8d01e44e4994f767c6fdc3fb24 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1004 -msgid "" -"Ask participants about basic operations such as how to zoom in and out on " -"the map and how to draw points, lines and polygons." -msgstr "" - -# cc0717dd43cc4793a4493c95f5a58b4d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1002 -msgid "Module 6" -msgstr "" - -# 956abc5829c84077b4d955673662d1b0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1008 -msgid "**Download current OSM data of the area you want to edit 20'**" -msgstr "" - -# 5137445294cf4d6d9cfd5e46352157c0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1010 -msgid "" -"Instruct the participants to download OpenStreetMap data according to the " -"region to be edited." -msgstr "" - -# e2c070e19bba4ea0b4c8d8f23eb73cf0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1008 -msgid "Computer Participant" -msgstr "" - -# 12df5f17c5774871826a247fbfd2e428 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1011 -msgid "*Powerpoint* *presentation* and projector" -msgstr "" - -# 608819f443854cff8032a15c77249767 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1015 -msgid "**Setting layer JOSM 20'**" -msgstr "" - -# 34c1a845da674f7a8581cf34bed975df -# 5c2c52c9a7ec4d84adab8045765fe4a8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1017 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1237 -msgid "Demonstrate:" -msgstr "" - -# 04cf2df64f5e452188d5a9e5eb21cc59 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1019 -msgid "Moving JOSM layers above and below one another" -msgstr "" - -# b36eba4bc2414469be10ddd6e2d3c05a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1020 -msgid "Hiding and showing layers" -msgstr "" - -# 89c32c9be0744195a405c3828542d762 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1021 -msgid "Enabling and disabling layers" -msgstr "" - -# cea05a3180de41f4a291051b7acc51e9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1022 -msgid "Removing a layer" -msgstr "" - -# af79fb0b6f324db4b30c0b668a53be56 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1023 -msgid "Setting layer transparency" -msgstr "" - -# a37bf97ba5c24b318dcafabf8dd62ccf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1025 -msgid "Participants should practice after these tasks are demonstrated." -msgstr "" - -# a2fefa77102c4cc1b772926ca1d7307f -# 6d5c7f337f2047138c2be969e185e92f -# 4d8b47084b144ab18d742581e2043ac2 -# 1fe231cd40334ed49a8dbcf7a3b96092 -# 3b3dc38b37eb449d8ca665acff4ac1f5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1015 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1035 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1043 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1052 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1235 -msgid "Demonstration" -msgstr "" - -# 070d8e85344e4630be9b86fa7a179970 -# 479936fe334247878899db9b9a1a0188 -# 496d68f3f1a14a41895d7e52ef16e3cf -# 301f721d988844c9a889bb4f5e7ef3a6 -# 019906e7a91c456c81b468a3b20b2663 -# 74edcc3a1f2c463e919120869a1defc7 -# a983da63496746b8ad36139d4d1813af -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1017 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1029 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1037 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1045 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1054 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1149 -msgid "Participant" -msgstr "" - -# be419d1fcc6d437584d6b8f0582ea225 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1027 -msgid "**Editing OSM data 180'**" -msgstr "" - -# c7e948e1c79748069776ebaf7a542502 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1029 -msgid "" -"Ask participants to edit their respective regions, according to the " -"information they collected." -msgstr "" - -# febd836350bb40c98b453d73593750b7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1031 -msgid "" -"Continually walk around to each group to observe participants' work, help " -"answer questions and catch mistakes." -msgstr "" - -# ca114c0a70fd4c58b88c0dc366feffbb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1035 -msgid "**Tags 150'**" -msgstr "" - -# 19dfe317694c467d872af83033dc2464 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1037 -msgid "" -"Show participants how to enter information (tags) to the objects instead of " -"through presets in JOSM." -msgstr "" - -# 166e228e0278476fa8ae0267ab0e089c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1040 -msgid "Ask participants to practice adding tags directly" -msgstr "" - -# 6760b4f5b4b840619ba40c035ced849c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1043 -msgid "**Upload OSM Data 45'**" -msgstr "" - -# 2a514fe5405a4684b35a9a04a10107fe -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1045 -msgid "Show participants how to upload the data that they have added to OSM." -msgstr "" - -# d86cd035dfe04646ad94cbb3b89fc6d1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1047 -msgid "" -"Ask participants to upload their data in accordance with their respective " -"working areas. Each group is allowed one person only to upload to avoid " -"conflicts that otherwise might occur." -msgstr "" - -# 3ab5f12e6518452192df6bed3903bac2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1052 -msgid "**Save OSM file 25'**" -msgstr "" - -# 5dcceed592d34bd492b4733a0f32aac2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1054 -msgid "" -"Show participants how to save OpenStreetMap files on their laptops. " -"Participants should be reminded not to let too much time pass between " -"downloading and uploading OSM data." -msgstr "" - -# f261dc0f898349bf8d3bf4bb1f46cb10 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1063 -msgid "" -"**Should we use a point or a polygon to identify a restaurant in a mall?**" -msgstr "" - -# 4a1244d9ca89435c9145b4909bef1d22 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1065 -msgid "" -"You should use a point. Polygons are used if you clearly know the shape of a " -"building or area. If you want to identify a landmark inside a larger " -"polygon, such as a building it is better to use a point." -msgstr "" - -# 9d25874e96a4455a9841f05e25dc224f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1070 -msgid "**How do we map a bridge in JOSM?**" -msgstr "" - -# f9d4bd2e249a4ce99c129cab841138e9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1072 -msgid "" -"To mark a bridge, you need to split the lines which marks the bridge " -"(usually a way) on both sides of the bridge. If you have a road that crosses " -"a river, you can click on the dots on the side of the river and press 'P' on " -"the keyboard to split the line at that point. Then the selected line can be " -"tagged as bridge using the presets menu." -msgstr "" - -# 54d7996910004e2f94c459553fc474da -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1079 -msgid "**How do we digitise a building to have a perfect rectangle shape?**" -msgstr "" - -# ca6bcd6064d6472d975fae91ae73b5d6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1081 -msgid "" -"It is not easy to make a perfect rectangle only using your hand. Luckily " -"there are tools that can make the proper angle at each corner of a polygon. " -"Select the polygon (building) and press :kbd:`Q` on the keyboard to shape " -"that polygon." -msgstr "" - -# 9f690bdc0a484b49b1b98ad5e437f633 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1087 -msgid "" -"**The map on OpenStreetMap does not show edits immediately. What can we do?**" -msgstr "" - -# 908d75c7cdc84def83d4c10ae828c409 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1089 -msgid "" -"Usually it will take about 5-10 minutes to see your changes appear on the " -"OpenStreetMap website. If you can not see the changes on OpenStreetmap after " -"that time it may be because your browser is still caching the old map. In " -"this case you should reload the page in your browser. If this is not " -"successful you may need to delete the cache in your browser. For example, in " -"Google Chrome go to :menuselection:`Tools ‣ Clear Browsing Data`. Click :" -"guilabel:`Empty the cache` and click :guilabel:`Clear browsing data`. Then " -"refresh the page again and your edits should appear. Sometimes it still can " -"take a while until changes to OpenStreetMap appear on the main page." -msgstr "" - -# 75ba9db3d559435b843c37c94b7b2275 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1102 -msgid "Session 7" -msgstr "" - -# 7fdb8ca9cdf14c2e8970c3f7f9da87a6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1105 -msgid "Imagery Offset" -msgstr "" - -# 6f34b0445fe54a508b00ba3c19c8e5f5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1114 -msgid "Understand the definition of imagery offset" -msgstr "" - -# 3fb598ed530a4234b3d93e8e1180e0b0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1115 -msgid "Understand components of imagery (resolution and georeference)" -msgstr "" - -# 29b2244d17c44b5fa5bce87e07b3940e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1116 -msgid "Explain how imagery offsets occur" -msgstr "" - -# e55013ea35a04a0980fe4560c0c52102 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1117 -msgid "Fix imagery offset" -msgstr "" - -# fc7ac106f29b4b3ab82d94cb55bdb9f8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1121 -msgid "Able to correct imagery offset" -msgstr "" - -# 9ac4e998f0124423b2ef06e6b1d8017e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1125 -msgid "**Imagery Offset**" -msgstr "" - -# 89ad87234b234465a38dfd862b3008cf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1127 -msgid "Definition of imagery offset" -msgstr "" - -# 949042649fbd42a3b86f0e2850417408 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1128 -msgid "Imagery resolution and georeferencing" -msgstr "" - -# dbc0e6bc10b24eb1bcc39d16eb669fdb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1130 -msgid "Fixing imagery offset" -msgstr "" - -# ceea67794d484593a5d4f3805586aede -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1142 -msgid "**Explain Imagery 60'**" -msgstr "" - -# 140290745e6241cb845fe12109b52c77 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1144 -msgid "" -"Explains about imagery, including resolution, georeference, why imagery " -"offset occurs and how to fix it." -msgstr "" - -# 6b524815df58490e8d10ad7d71c762b9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1145 -msgid "Module 7" -msgstr "" - -# 47ce8d1be7494eceab278d2fb39e6ccb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1147 -msgid "**Add plugin imagery_offset_db in JOSM 20'**" -msgstr "" - -# 8c78043118174b33af6462c85ed13554 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1149 -msgid "" -"Ask participants to add imagery_offset_db plugin from the Plugins list in " -"the Preferences menu." -msgstr "" - -# 2d48c4c6f8d64466afbb7f8cf9b4a511 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1151 -msgid "Guide the participants step-by-step on how to utilise the plugin." -msgstr "" - -# 3077352856ed4b94afcc2b6e8547e4ac -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1156 -msgid "Discussion and Questions" -msgstr "" - -# c657b733a37a4ac2a3b3efeed7ae291e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1161 -msgid "Session 8" -msgstr "" - -# 08c5515c0486439c9a665530bfe2754c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1174 -msgid "Download OpenStreetMap data from Geofabrik website" -msgstr "" - -# 64840b730d4a44dbafa8086e9889e8d6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1175 -msgid "Download customised OpenStreetMap data using HOT Exports" -msgstr "" - -# 8e1f838746824d45a13f58c18a13a09f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1179 -msgid "" -"Able to access pre-processed vector files for use in Beginner QGIS training" -msgstr "" - -# 82ae0426f39548f7a1ce8be672bcf0eb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1183 -msgid "**Getting OSM Data**" -msgstr "" - -# 760c178382644a9c95a4ffc780844437 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1185 -msgid "OpenStreetMap data from Geofabrik Website" -msgstr "" - -# 682b85f4ded94fdea81062464ccd58cd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1186 -msgid "" -"OpenStreetMap data according to region and selecting attributes with HOT " -"export tool" -msgstr "" - -# a44d8222b8f34d51a78f099dbddfd47a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1197 -msgid "Module 9" -msgstr "" - -# 8b255666201d47df9c4e928500be4b39 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1199 -msgid "**Download OSM vector files from Geofabrik website 20'**" -msgstr "" - -# c450497f8ea34aa8ae7cfb49e9943756 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1201 -msgid "" -"Shows how participants can get OSM data in shapefile format through the " -"Geofabrik website that can be processed by QGIS and InaSAFE." -msgstr "" - -# e78979c2695946e1a9533a4917de9586 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1205 -msgid "" -"Ask participants to download vector files themselves via the Geofabrik " -"website." -msgstr "" - -# 814010a0be604a29bc72719c1e130e07 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1199 -msgid "Computer Participants" -msgstr "" - -# b2c8b36e85a94b1daa6fa96b17d49734 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1208 -msgid "**Download OSM vector files via HOT Export website 30'**" -msgstr "" - -# 27c81dd9384a4299ae9f1260654a9eeb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1210 -msgid "Demonstrate" -msgstr "" - -# 8305063f1f5142a5b077c7c59d5c91ff -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1212 -msgid "" -"How participants can get OSM data in shapefile format through the HOT Export " -"website that can be processed by QGIS and InaSAFE software" -msgstr "" - -# 1502434a24904ce38944c8a73ada87b1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1215 -msgid "The difference between Geofabrik and HOT Export websites" -msgstr "" - -# 9af8cf9c55e74ead8afb69ccc1eff361 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1217 -msgid "" -"Ask participants to download vector files themselves via the HOT Export " -"website." -msgstr "" - -# 45f27cd08bfc48269fb20992b93b0c89 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1220 -msgid "**FGD 20'**" -msgstr "" - -# 99de7e0bcffb493f918f88991ea02509 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1222 -msgid "Topics for discussion are:" -msgstr "" - -# f4e5041fa211486888a44acff64fe79b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1224 -msgid "How will OSM will be useful for participant activities?" -msgstr "" - -# 32a366cca9fa44108e00939bd85effad -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1225 -msgid "" -"Difficulties in using OSM for participants. For example, some common " -"difficulties are the unavailability of GPS devices and satellite imagery or " -"slow internet." -msgstr "" - -# 7b728c8333d44d2cb637f21c6dcb3dea -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1229 -msgid "" -"Do not provide solutions directly to the participants. Note the comments and " -"needs of the participants so that it can be submitted to the training " -"organiser or relevant partner to be followed up on (for example, set aside a " -"budget for the procurement of GPS)." -msgstr "" - -# 285d594be22d4051bcfc93e23a933d39 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1222 -msgid "FGD" -msgstr "" - -# 0133e03cca9c419499ad036f2887d050 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1235 -msgid "**Closing and Follow-up 15'**" -msgstr "" - -# ede2279377504321b2ad0019d62c7230 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1239 -msgid "" -"How participants can discuss through social media such as Facebook or Twitter" -msgstr "" - -# 3418853f41524c67bb6c915d1f61f085 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1241 -msgid "How participants can join the talk-id mailing list" -msgstr "" - -# 55aea444ffc943d7957e7f1d1d58aa2d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1247 -msgid "**HOT Exports takes a long time to process a job**" -msgstr "" - -# b51796885639434b8a7cd74ed6965fbf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1249 -msgid "" -"The HOT Export server uses a first come - first serve strategy. That means " -"the server serves the user who executes the first data request first. The " -"size of the desired area also affects the processing time. The greater the " -"total area the longer the process will take." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/curriculum/osm-intermediate-toolkit.po b/docs/i18n/en/LC_MESSAGES/training/curriculum/osm-intermediate-toolkit.po deleted file mode 100644 index 8b26308e..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/curriculum/osm-intermediate-toolkit.po +++ /dev/null @@ -1,1959 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# c879a8e530094718a98c82cfa97833c5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:6 -msgid "Unit 3 Facilitator Guide" -msgstr "" - -# 10a6a4ad42a2448893ac6660bbdf92de -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:9 -msgid "" -"Intermediate OpenStreetMap Trainer's Toolkit - (A Guide for Facilitators)" -msgstr "" - -# 22d68d93199348ec8481c6761563f74c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:11 -msgid "**BADAN NASIONAL PENANGGULANGAN BENCANA**" -msgstr "" - -# feb2a4ee7cde4d67ac2a0880936ba024 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:13 -msgid "**2013**" -msgstr "" - -# 1dea0965db7f462aab10552a79a94dc9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:16 -msgid "About Toolkit" -msgstr "" - -# 95694f3ae8514f81919af21f5a571422 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:18 -msgid "" -"**The Intermediate OpenStreetMap Trainer Toolkit** is designed to prepare " -"trainers to deliver an intermediate training course to users of OSM. The " -"materials included are designed to continue from the **Beginner " -"OpenStreetMap Training**." -msgstr "" - -# acb31e4e734b4510a77d09c0444f792a -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:23 -msgid "" -"When organising an OpenStreetMap workshop, numerous factors must be " -"considered, including the length of time you have to train, available " -"resources, number of trainees and their technical skills. This toolkit will " -"help trainers prepare trainings for different types of participants, but it " -"will primarily focus on educating those with little or no experience with " -"GPS, map-making and computers. Participants of this training should have " -"experience already working with OSM." -msgstr "" - -# 777b3e45c07648b5a225def0c3a1b7a8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:31 -msgid "" -"The purpose of this toolkit is to prepare the trainer to successfully train " -"workshop participants in adding spatial data to OpenStreetMap." -msgstr "" - -# 5cd9a7e4119a46228cbe2ada6984a92b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:35 -msgid "Purpose of Workshop" -msgstr "" - -# 6eea384123ff4fd18c6a7b36cca8c911 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:36 -msgid "" -"This workshop is intended to achieve the following standard and basic " -"competencies:" -msgstr "" - -# c0a6a9f9ad0a4b1c8d7be2fc8aba02ce -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:40 -msgid "Standard Competency" -msgstr "" - -# df8f45fa535f42b9bca8d3cd8f0752aa -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:41 -msgid "Quality Assurance in OSM mapping" -msgstr "" - -# 170217ffb43d4aa6862a78fda7e92b37 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:44 -msgid "Basic Competencies" -msgstr "" - -# f4f74e88683f452b91c2624da081bf6f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:45 -msgid "" -"Apply better digitising techniques for improving quality of collected data" -msgstr "" - -# beada5c1755045fb9ce4cbf6c4dfa97f -# b2cdeaf4706645bf9b02639a3cef8f7c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:46 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:302 -msgid "Use JOSM validation tools to ensure the quality of map contributions" -msgstr "" - -# b90451bb6052478fae5e9781acd41dc6 -# cc2e6338dc0b4dd98439aae71ca4e356 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:47 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:380 -msgid "Resolve conflicts when uploading OSM data" -msgstr "" - -# 8880afc9a24f4b7c9aab5222e29049e9 -# e0fbaeb7dc42458c9a1f83ad0b003e8e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:48 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:465 -msgid "Create presets files in JOSM" -msgstr "" - -# 836539cfc4814e6da84d0be10009dcb7 -# 22540c31e73a4ba1867b44a50d352cc2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:49 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:569 -msgid "Use private data store feature to keep private data" -msgstr "" - -# 2004c899a99a435e93a883ca68681141 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:50 -msgid "Create and edit pages in OSM Wiki" -msgstr "" - -# afe28f6f554240458a6a886bf0d87c6c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:53 -msgid "Workshop Materials" -msgstr "" - -# 6b3d03b8102246cda7b8414237ea603b -# 0d8bace48bf1480dbaa501a327a2fa7b -# c7d2dc1d70b84d71a71e0686557773ca -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:54 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:106 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:110 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:165 -msgid "Advanced Editing" -msgstr "" - -# 03bf9150eaf94772a4e5a57a9b961833 -# fa0a08676cec461982bdae3d5d120caf -# b71e6eb1abb64c69bd8edeeed8661648 -# 7c29d918d30e405484a259a6a9aab7f1 -# 3fca2438f6b140c5b5bd1b876dfa944b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:55 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:114 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:122 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:126 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:297 -msgid "Quality Assurance" -msgstr "" - -# 4bb620bd46f14bbfa9d086e236d3bc1c -# daa05cc102c6403aaf0e444ed655b6c7 -# 9742291859f74f62b4a3200a94ade00b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:56 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:130 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:375 -msgid "Dealing with Conflicts" -msgstr "" - -# d09d660fe3fb4520aadd77373fd61b81 -# 88aa628849ce479e97f9d751ebbd39f2 -# 39d60411aa994bb6b189cdfc45f4891d -# fac7fb3397254dffbd94915a3dfffbf9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:57 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:134 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:142 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:460 -msgid "Creating JOSM File Presets" -msgstr "" - -# 845cf60696fa4e1584ef56e107721f31 -# 971421161d21416fa3b7edea005c918e -# f6b7f15ce730475586468e76fb5ffaba -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:58 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:146 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:564 -msgid "Using the Separate Data Store" -msgstr "" - -# 7a124bdd41fb4214a8dbbd85764e8a48 -# a4b964ece2a94b598d60e6e1f21a683b -# b7f5bcbf995348a183a518b3a9fffa7e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:59 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:150 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:653 -msgid "Editing the OpenStreetMap Wiki" -msgstr "" - -# 137083d7eb8c45349f002be9556ba092 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:62 -msgid "Workshop Strategies" -msgstr "" - -# 0f43d50c1af04a54ade07dc1b132f4f9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:63 -msgid "" -"Methods emphasised in this workshop are participatory teaching and active " -"participation in all sections and activities, rather than lecture method." -msgstr "" - -# d584d1017a304736b744f53f947a9a19 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:66 -msgid "" -"**Participant oriented.** Participants are encouraged to find and gain " -"knowledge and skills by themselves." -msgstr "" - -# c4241477e15849c09c23e6982c27662e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:69 -msgid "" -"**Trainers serve as facilitators.** Trainers facilitate to help ideas in the " -"workshop emerge from the participants, not only from trainers. However, " -"trainers must be ready to provide necessary information when the " -"participants need any assistance." -msgstr "" - -# f04e8ea60b1c42d19de0a013e4a43d49 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:74 -msgid "" -"**Outcome oriented.** Workshop must produce the outcomes mentioned " -"previously." -msgstr "" - -# 7493693f9cc94493bb28f40d8ec92d30 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:78 -msgid "Tools" -msgstr "" - -# 2a3247d5fde54c8b805692a188262b16 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:79 -msgid "" -"Copy of :ref:`Data Collection Using OSM Intermediate Guide ` for " -"participants" -msgstr "" - -# ba6f6cf905e74441abc844df916e3d31 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:81 -msgid "A workshop space with tables and seats" -msgstr "" - -# 904a8c1cea474fb3bfcbdf7979d49889 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:82 -msgid "" -"Computers (one computer may be used by two participants, but it is better if " -"one computer is used by one participant)" -msgstr "" - -# 9f7d031a88bd4cfd950860fbdb662fdb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:84 -msgid "" -"A Projector (to present slide and demonstrate technical instructions and " -"software)" -msgstr "" - -# 6e9386c6dce84aac9679603b964215a3 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:86 -msgid "USB Flash drive(s) to transfer files and software" -msgstr "" - -# 62a8fa55a58e47bb99dd5b96398e05bf -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:87 -msgid "Good internet connection" -msgstr "" - -# 0aff55af4dae4ff2adc613ee82287fd7 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:88 -msgid "Snacks and coffee for breaks" -msgstr "" - -# 5c643723031648d4ad4ce7238293bd73 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:91 -msgid "Schedule" -msgstr "" - -# aff716d82d4e4ea3a59d152a4fe9415b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:93 -msgid "" -"Below is an outline of a schedule for a three day workshop that has been " -"tested with several groups in Indonesia. You may choose to adapt and change " -"this workshop schedule to meet your needs." -msgstr "" - -# 7bed663d83b34e949a40b0bdfa086dcc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:98 -msgid "Day I:" -msgstr "" - -# 9ca1aeee76d547a990f3d7c37479a257 -# aeed14199bc34fa78335bad25f531c05 -# a7c1944dbddc41e399d8452d0e5b4148 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:100 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:120 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:140 -msgid "**Time**" -msgstr "" - -# ec093a35ef92423c9723e560324a1ee1 -# 44a2e9c884304e50a827bc1c3e8edd8a -# 27c56dc95c074cf7b157407eb4eabbc5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:100 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:120 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:140 -msgid "**Materials**" -msgstr "" - -# 68d1bd38176c455db5655f5b99b905bc -# 97f708571bf2435686b9988aed76313d -# fa87d19562744a38954c80725e482360 -# a62782183a8c4d3686a19ab653f1e7ab -# 222731ca9e934796ac9ad3d6096b8041 -# be215b9a1b754a2cbfb1acc51f029454 -# 15145867946949e594295587e3cd95e2 -# 749d362fa91a46888e08f5dca0350405 -# b8f132387e354ce19c98281e152e9adc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:100 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:120 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:140 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:200 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:330 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:405 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:492 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:599 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:690 -msgid "**Activities**" -msgstr "" - -# 8b22ca7b80434b208f6cea339af7fdba -# 1f3f39257fca491ab99f6b516457712a -# 8fb81758007444f185eddbb1344b29a0 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:102 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:122 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:142 -msgid "09.00 - 10.00" -msgstr "" - -# bb6850ff01f843d2a7b2e2d95466ae24 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:102 -msgid "Opening and Introductions" -msgstr "" - -# 96f28096bd754d7f89bfa411736e3213 -# 77f0c882f5c5494db0b36ba58296fc52 -# 9f4387ec915342008bc1ef5cc894f802 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:102 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:122 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:142 -msgid "Plenary Session" -msgstr "" - -# 900af9c31e72497bb2b31d4f00f7d6e3 -# f7eb5d9b5b674f209df0170e6076ccd7 -# 2d279c6c53c14ed3af20712c08371ae9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:104 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:124 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:144 -msgid "10.00 - 10.15" -msgstr "" - -# 3fa8061fd5d142e3aff73da0221c0147 -# 0d94b385002c448283b1d412c6b4bbe5 -# 70c5b18c76264186b7b99d41686f1463 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:104 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:124 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:144 -msgid "Break 1" -msgstr "" - -# 9ae378ea9c6645b68a84770c675ca8d0 -# a333d2ac086a441c9dc47dcbbd061f16 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:106 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:146 -msgid "10.15 - 12.15" -msgstr "" - -# 4c008487e9ec460a8f5e3734ad25e72e -# e23a3334f3354edd8df8e4b8977c2b9e -# 9ea698a232f948878ab1ec2eb623597f -# 8492b2c9c5f440978f5d8c1bf2cf4df1 -# 9b4ea521cdfd4409aa5e83ea68e29ce8 -# 00a288a3a3af45e9b8b6ac20358be401 -# b403277be2034215a3465d0496ffa68a -# 0c486d3889d04500afa025e40894a2af -# 19e9fe66eda241dbb7d82223bb73492b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:106 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:110 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:114 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:126 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:130 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:134 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:146 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:150 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:154 -msgid "FGD and Plenary Session" -msgstr "" - -# 499cdd6f70354eaeb9fd56e69348a22e -# 2df64d9cc65b422dbe6d39e01d82b7ad -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:108 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:148 -msgid "12.15 - 13.15" -msgstr "" - -# f53a84a089b74911bd78c81dd3d0c78e -# 310b3d98d8d849009664833f55de0a03 -# e400df7d073548a98fc6caad036c36a6 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:108 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:128 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:148 -msgid "Lunch break" -msgstr "" - -# fac96a48cd4d46efaa48885b9112ee89 -# 5ecb88da398a44cb8702ef6937640a8f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:110 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:150 -msgid "13.15 - 15.15" -msgstr "" - -# 38b8630760594156a4de170f35d060d0 -# eb0e02255d8842e780cefca5ea294bc2 -# d19f1d6d32d745a5af72874f6c96ffb5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:112 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:132 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:152 -msgid "15.15 - 15.30" -msgstr "" - -# 19ce7de51e2f4086997883841033e518 -# ed9e6e0e369b470aa4e4a55ede300c56 -# f596d0a00d824c00b3831edf290d48b5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:112 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:132 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:152 -msgid "Break 2" -msgstr "" - -# a57c507e78dd4329add9f68d1bfad780 -# a9441d72c290458280e67f30d932b4f1 -# 0ea6d8b97e624ae0970d8766600f744d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:114 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:134 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:154 -msgid "15.30 - 17.00" -msgstr "" - -# ab9d92e1f1eb4ea18167bfdb93b0bc1f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:118 -msgid "Day II:" -msgstr "" - -# 5828f2b1666946198169d0f1b163b0ef -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:126 -msgid "10.15 - 12.00" -msgstr "" - -# cdf02b7787394c3099fb926dc8a9dab2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:128 -msgid "12.00 - 13.00" -msgstr "" - -# 5fbb4e526d5940f28992248f40502590 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:130 -msgid "13.00 - 15.15" -msgstr "" - -# 92ddd0f2f1b14c2d9c91e460b0a4aba9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:138 -msgid "Day III:" -msgstr "" - -# 13174aa00cb0446b89b657398a9920c8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:154 -msgid "Evaluation and Closing" -msgstr "" - -# ebc477fd4d3d49e19fb0574ccf5136ac -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:159 -msgid "Workshop Plan" -msgstr "" - -# bdd8ecf420934beb808efed4da50d738 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:162 -msgid "Session 1" -msgstr "" - -# 1ddc8e20cfa84a9ea42647cf71fd582e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:166 -msgid "Time : 4 hours" -msgstr "" - -# c696ceb169534dc7bde06475d2bca697 -# 925a9ef5761241a1832173c11369f284 -# a65b89492bc64bb9b876d83c422a7d96 -# defd5d17b46e4101b5ce76e9003a783d -# 3288743415bd4e4a8ba66eb748b676a4 -# 0f468357a0c54a849e044c684cef8cf5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:169 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:301 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:379 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:464 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:568 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:657 -msgid "Basic Competency" -msgstr "" - -# 34ff19d33b5644c99cbe02220b19705b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:170 -msgid "" -"Apply a better digitising technique for improving quality of collected data" -msgstr "" - -# 40110d097d03431b9b07869135bc3bb5 -# ca8774e3b094428f99cea8bb92823e0a -# 5aabc80acd76419ca1b70d08e9587949 -# 5f7d7967967d443d9a9aa58c66099bee -# a12359f055784005b6ab4c93bb97fea9 -# d9adf9fbff4f4855b95dda0ffe76eca8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:174 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:306 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:383 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:468 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:572 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:661 -msgid "Indicators" -msgstr "" - -# 0193f9b4f65a4b08ac72863ad0b4678b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:175 -msgid "Use advanced editing tools in JOSM" -msgstr "" - -# 15655bf81cea41f6a7c53fff337b3abd -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:176 -msgid "Make relations among objects" -msgstr "" - -# 582036d6ecbf45b3ac5d7aa0e2c57f1d -# d7402400a38241a9b1a7f83df85f3235 -# c9d6cb491d834f73956e951847c63432 -# 648f699bceb54cad85d1c1fd27679237 -# 526d53f93e7f42d485f0193467954016 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:179 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:311 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:477 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:582 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:669 -msgid "Outcomes" -msgstr "" - -# 6bbc698071ae40f18a59a36396ecaf8a -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:180 -msgid "Make data in OpenStreetMap better" -msgstr "" - -# ec16cfbfbe4f48e59110a0d08ecaf01d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:181 -msgid "Understand relations" -msgstr "" - -# 1c329357b2444512963b6c1772046363 -# 427690d3ed97429cb0b71895ffbf6e6d -# 40e1e73a21254a1eaa8065aa6acafb55 -# 07cd3a863e6843f693983782248a2620 -# 7ae9f6549edb437eb839e33ad28403b5 -# 0dfa7efd33c7435f9c316169abe34db5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:184 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:315 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:394 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:481 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:586 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:674 -msgid "Core Material" -msgstr "" - -# 082ad1a7785e4031816f6457f82c89f2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:185 -msgid "**Advanced Editing**" -msgstr "" - -# a8853f6452e947a8b34591b4c25996b9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:187 -msgid "Advanced editing tools" -msgstr "" - -# 115efa5c844a44778cbf3ca11fd56990 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:189 -msgid "Default drawing tools" -msgstr "" - -# 6866e6ead2a34324a5be2515ebf4457b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:190 -msgid "Plugins" -msgstr "" - -# 9c37de541c3443dc9aca83694771d3d9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:192 -msgid "Relations" -msgstr "" - -# 2bffc2b9adc44c8f95a24423fc6aa5bb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:194 -msgid "Editing relations" -msgstr "" - -# 4ad6a62229a04ccf97d7ab87ef85b10b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:195 -msgid "Multipolygons and linestrings" -msgstr "" - -# 1e4ea9cec6a9471fbc6cb940a3975920 -# 39eeffd127374ba9aa9ddc534d2fcafb -# bf85d54b108c486f847dc5d58bd58352 -# af83ca8344d744ac8f6f8d3011b16759 -# 6621f11fd0b14b4d9d12490433e804a2 -# 96c9526ff72d4377a7f499dd28b2fd7a -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:198 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:327 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:402 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:489 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:596 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:687 -msgid "Activities" -msgstr "" - -# f982e7d2fc9f43c5a8be11321d1e5537 -# 7a84d40f764e4f2aac70b6da74371fe7 -# 326799938cdf48138430c8ec78d6e6dc -# 259535f90875479dbeacab998ad181b3 -# dd69db42e1ff4febaaa145369707c1d5 -# fe587e99bb964b62acb97c05f5910b78 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:200 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:330 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:405 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:492 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:599 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:690 -msgid "**Methods**" -msgstr "" - -# 9db939fbfdb445e8a4d7a8431b95c340 -# c6e7cf7d781f4c1e996fa1314d09ca8c -# d661aef44ecc421aa17a9ea2eb6d51f0 -# ea4dfa1de95048d88526f23ab6206723 -# 8fe3b199a5ba46cba7370d01cc7b1f54 -# 196957e69c0d4a15849ca20e1b746494 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:200 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:330 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:405 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:492 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:599 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:690 -msgid "**Tools**" -msgstr "" - -# 79c11793685249d1be1162b0cbc8fab6 -# eea2bc5ebe7748cd90bfdb700b497d00 -# 8a68bc69015b48c7bd5db08e79b245bb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:202 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:332 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:407 -msgid "**Introduction 5'**" -msgstr "" - -# 2f4dbf9f9ebb4cedb14f6c696b77adc4 -# eede0d971c2b4c00ad256c91e6173d6a -# a1e00ba5cd544b3d88869a50c0d602d0 -# a6b2cc27cc2147a0a5f3f449da4c08aa -# d79e38a98cde4ef0b0c371771be65c7c -# eb9592a81edb4bbcb5c8870c4d3fdf33 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:204 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:334 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:409 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:496 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:603 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:694 -msgid "" -"Explain the importance of the session, objectives, outcomes and activities " -"of the session." -msgstr "" - -# df7439ce74884456abff55d85306a9d7 -# aaeeb1b80a104061b4dacc38f69e4193 -# 9b045ddea04c43de921103d465d150ae -# aa7ceb9694394b358b36622fac2257bb -# 4595ebce9836443887232127536b581e -# 2eed5dc864fd4cbfaef9df5462aca5ce -# 31d682dab2874b64b7b01613ab066cd5 -# 6bc8aff24b644440931ecadcac4b0e66 -# 797c6922dbe9460c9f79767ba0aefb74 -# 0947e37c2aab40f5a9c8176a7438efb9 -# 1f594de687774edbbe125ef6ec9cfbad -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:202 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:332 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:407 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:416 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:424 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:494 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:504 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:601 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:610 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:692 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:697 -msgid "Lecture" -msgstr "" - -# 685a8bbd636b4150b550236da2a42ad2 -# 8c25c6c701f64d7098ca7b33f12104e7 -# 705547966f524c21b19c6f3cd9fe1ce4 -# 91bedc1f527344e8860c572a396893d0 -# e2fece433faa4e8dad8cf1d66adf4f4f -# 201e36a764d24f459919e710fb6f8b2e -# aef716b1ea4c481a92596ed4a8584a42 -# e066c4f9b434464fb496cedb0b711510 -# 033a2c0b84a1422ebd0a9f807cf9ada3 -# 190d9e7112384991a7a84e60cd0a11a2 -# 86e3bd35ff9a49128309fe3524e014ae -# a6ad00d4ade64585800391902bc7376d -# 4c14e463c78e4db4ba710bbd5918fe9c -# 56e671339a7745e485b1bfc5aaccda84 -# 5c90d80f91004a4486d1e5939f7c46fa -# 879488fac3f8462695b7a9c8d6982e1f -# 9d06d200118a462a92c2e587e78a300d -# c6688d8b0978465880550661bc2062aa -# 694a4c52890e406b87252ef067a92108 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:202 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:226 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:239 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:255 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:267 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:332 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:339 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:346 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:407 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:414 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:494 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:504 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:531 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:601 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:610 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:692 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:697 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:715 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:726 -msgid "Powerpoint" -msgstr "" - -# 26644c14178c4df08d799d674d7767f3 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:204 -msgid "Slide" -msgstr "" - -# 2f7f691039274c5fa948d2c878e3aa83 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:207 -msgid "**Review OSM Materials for Beginners 30'**" -msgstr "" - -# f19fce5dfff54195adeef3d95ed7a2ac -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:209 -msgid "" -"Request participants to discuss what they have done with OpenStreetMap (OSM) " -"since the first workshop (beginner training)" -msgstr "" - -# 4a20f6a221194022b9499cc3fd0482a1 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:212 -msgid "" -"Create a questions list from participants, showing them all on the projector." -msgstr "" - -# 13d84a96f38e4d84a55f8ca5bac9ba12 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:214 -msgid "" -"If the questions are simple, answer them directly. But if the questions are " -"outside workshop material, give the other references or do an individual " -"session outside the workshop, for example at lunch break." -msgstr "" - -# 4e1bb455b0d04fb6ad0008ac67a66904 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:219 -msgid "" -"Explain what participants will get from this workshop (intermediate " -"workshop). Separate participants into two sides, asking more details about " -"their experience using computers and OSM. Pair the participants so that " -"there is a good balance of skill in each pair. Less experienced participants " -"should be paired with more advanced users." -msgstr "" - -# f6c1ec602b3843ea88718e93a920c56a -# 8ba0905bcc9e45ada58dc642db386232 -# 03a37ecbe38a4a5984d7fcad28246faa -# caf6ad35c35b4d16997c200aa409050f -# eaeb55c9119f445499c628a416c8fe65 -# e08c16a479ba4f5db2d1a26f41ffc9f6 -# 619802b783494709a9d1040c91a98671 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:207 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:226 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:239 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:255 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:267 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:414 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:517 -msgid "Discussion" -msgstr "" - -# 481c51f6e6f340069081ee6b54227969 -# d915eabc328c4d4a89ef2cfb6702341e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:209 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:228 -msgid "Q & A Session Lecture" -msgstr "" - -# 09acab2237244a4c986ca90525880707 -# afa7954747584aa4b2da70f0098b33ae -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:207 -msgid "Schedules" -msgstr "" - -# cdc057c5ee1549729d8f17bba05c7f51 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:209 -msgid "Microphone Speakers Projector" -msgstr "" - -# 2a8cb5ae490847a1bf9c3b248d9b5b98 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:226 -msgid "**Shortcuts in JOSM 20'**" -msgstr "" - -# eeefb6c1c15a4c099daa4e2b98e631e8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:228 -msgid "" -"Ask participants to discuss in brief about the shortcuts (shortcut keys on " -"your keyboard) to activate tools in JOSM." -msgstr "" - -# b62f6332ea284b35b6e3f2e4cef872ab -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:231 -msgid "" -"Demonstrate how shortcut keys can make the job of editing easier by saving a " -"lot of time." -msgstr "" - -# d6a095fdff89428f9c5961c6d4dd162b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:234 -msgid "" -"Ask participants to practise by following the demonstration in the use of " -"shortcuts." -msgstr "" - -# 3c6a7491a4184c31946c8c961af9d476 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:228 -msgid "" -"Presentation Projector Computer Laptop Sample files in USB drive (tools_menu " -"_sample.osm utilplugin2 _sample.osm)" -msgstr "" - -# 9bc2252e935a4f1b8dbbf75c4d8d8b71 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:239 -msgid "**Building tools plugin 30'**" -msgstr "" - -# 489e37ba04134ed3a6047d8840699a94 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:241 -msgid "" -"Make sure all the participants have installed the **building_tools** and " -"**utilsplugin2** plugins. Make sure that participants remove the previous " -"training files and ask them to create new layer. Use that layer to practice " -"with the **buildings_tool** plugin. Demonstrate:" -msgstr "" - -# 3a3f3b94f59d4eff8f80278b42872019 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:247 -msgid "How building tools works" -msgstr "" - -# a4756bf202ed4a18bf93f1a83eee7fed -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:248 -msgid "Make sure that they don't select any object when using building tools." -msgstr "" - -# 41938f531cf04507ac69b428eb20a47e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:250 -msgid "Teach how to set the building size (for example 10 m x 10 m)" -msgstr "" - -# a148d0c3582046269746fb20d28aacd6 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:252 -msgid "How to automatically add tags other than building=yes" -msgstr "" - -# 0d15604476584ee79f55b5b533f082fa -# 8270c5833be14cd8b10be352a75f14d4 -# 9abc376359b94b08a293888dd4f39b5f -# 99e87eff77674f99a1abec8f1da44ce8 -# 2745b0cff9764fbba40766919c89f3bd -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:241 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:257 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:269 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:426 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:519 -msgid "Demonstration Practice" -msgstr "" - -# 88c64586190f4669aa14d6e142fe1a87 -# f5bbaa0e262246c99af124bd9b35ad12 -# 4b57c8973b294aa7afb14dec68798a46 -# 3a52fb1bc0f94f0ea24918d2877826e7 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:241 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:257 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:341 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:348 -msgid "Presentation Projector Computer/ Laptop" -msgstr "" - -# e4f9cef5293a4df4bedd72490d374dc3 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:255 -msgid "**Utilplugin2 60'**" -msgstr "" - -# a402bd853ebf40d2b9ac818674dbbc43 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:257 -msgid "" -"After the **building_tool** plugin, ask participants to close the layer and " -"open the training file **utilsplugin2_sample.osm**. With this file, " -"participants practise using new tools." -msgstr "" - -# b3955279c2064658ab8e52f26ae7c623 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:261 -msgid "" -"Explain new tools in utilplugin2 plugin such as *add source tag, select way " -"nodes, replace geometry*. Give examples of situations when these will be " -"used." -msgstr "" - -# 70bfe0578721498da5c959ae6ded1428 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:264 -msgid "Participants should practise the tools as they are explained." -msgstr "" - -# 08bb2f0f5a0048be88ef32a58cb9c841 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:267 -msgid "**Create relations between objects 35'**" -msgstr "" - -# ae7b83455ca94511a4394758c3f496e8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:269 -msgid "Explain relations and show an example in JOSM and on the OSM website." -msgstr "" - -# 3a268e488a2f4d218c90e19011d5394e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:271 -msgid "" -"Have participants create two polygons with one inside the other (to " -"demonstrate making a building with a courtyard)" -msgstr "" - -# 9e0da0be0d204ecc9bab7367ccd3930c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:273 -msgid "Explain relation attributes, and the \"inner\" and \"outer\" roles." -msgstr "" - -# b81a085908d8491a9451120efa36f33e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:269 -msgid "Presentation Projector Computer Laptop" -msgstr "" - -# 786b73958c684686bb7d0deba46f04c3 -# 382526df55a540bb95101aff7685ba06 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:277 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:436 -msgid "FAQ (Frequently Asked Questions)" -msgstr "" - -# 942f6994f2844c658941b45fa65a742e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:279 -msgid "" -"**I have set the building size in the building tools plugin. Why do " -"buildings show as a line, not as a polygon?**" -msgstr "" - -# ae798eb021804d23af291b6cfdd6eb96 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:282 -msgid "" -"It may look this way if you are not zoomed in far enough. Zoom in further to " -"see the building properly." -msgstr "" - -# 1bcbddfa5e3542f7a621520d8c287773 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:285 -msgid "" -"**I want to create a circle. Why do I get a very large circle with the " -"'create a circle' tool in utilsplugins2?**" -msgstr "" - -# 27006544f79a4bf19f3fb4e17e2867ef -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:288 -msgid "" -"Before using this tool, first create a way with exactly two nodes. If you " -"create a way with more than two nodes, the resulting circle made from this " -"tool can end up very large." -msgstr "" - -# c661994dc14847e290356d769ed0efbc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:294 -msgid "Session 2" -msgstr "" - -# 33aec73491864f8d9815783453e3456d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:298 -msgid "Time : 4 Hours 15 minutes" -msgstr "" - -# e4e80caa8b2e47718309cbe2009aae65 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:307 -msgid "Use validation tools in JOSM" -msgstr "" - -# 7e6af44b2e2f4ba1a0b92f450ff3b1d1 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:308 -msgid "Use online validation tools" -msgstr "" - -# 5be49e26d2de40d59eb891abbf4cab11 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:312 -msgid "Use validation tools to make OSM data better" -msgstr "" - -# 9c484f31661c48bebdcf899ca980b0f8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:316 -msgid "**Quality Assurance**" -msgstr "" - -# 1ba053d703084e4790e53cacdfda6d79 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:318 -msgid "Error and warnings" -msgstr "" - -# 24f8dd8822c74156a860862348ca809d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:319 -msgid "Using the validation tool" -msgstr "" - -# f3d1b4a37ddc458e9c73dcd0dd8f07fc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:320 -msgid "Common validation warnings" -msgstr "" - -# c7a9fe6ab84b4844a91246321906c785 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:321 -msgid "Using the tasking manager" -msgstr "" - -# ea751b14c1ac4a5892b4a7a5d234178d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:322 -msgid "Editing tips" -msgstr "" - -# dcd9a638c1534ff4a827f50690bc0780 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:323 -msgid "Presets standardisation" -msgstr "" - -# c971767eb04b4fac800aef437a45335e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:324 -msgid "KeepRight" -msgstr "" - -# 1429ea9d3814494bbceacf95869861a0 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:336 -msgid "Answer any participant questions about editing OSM data" -msgstr "" - -# da22095bbbed458ea4d24c52740a9e0e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:334 -msgid "Q & A Session" -msgstr "" - -# a8620c009a4747c3ac8a480abc5a32ea -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:334 -msgid "Presentation Projector" -msgstr "" - -# 0a78e302ef3b4816a081b0db1ec43709 -# f00e73572aa3482aa7017d0874921879 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:339 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:504 -msgid "**Input 45'**" -msgstr "" - -# bc3be8160b634d1bb70882defe6bf34e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:341 -msgid "" -"Explain quality assurance. Show a few common errors that occur when editing " -"in OSM." -msgstr "" - -# b734de3e05bc4c0d9b661af49010f0f2 -# 823efa86ba8a41488dc07d055fee42a3 -# 6412ba2018e149628a6e2d411537044c -# 36fbcdc3e5704770b042ee9106e0e59a -# 5324a1e104f3403b930ff11cd3d6dc0b -# e0bda7be632c40ea8fde5c9725c48b56 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:339 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:346 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:531 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:549 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:618 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:715 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:726 -msgid "Practice" -msgstr "" - -# 5c8b670fe6bd4b9aaf77a18b27d70e59 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:346 -msgid "**Practice 150'**" -msgstr "" - -# 38a5041e3d7f45739108bf38fe20e231 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:348 -msgid "Show the proper way to digitise with JOSM." -msgstr "" - -# b3da8d6826ae486dba758c860ab50c07 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:349 -msgid "Show how to fix errors or warnings." -msgstr "" - -# 3d791878128046c498b6233d77fbf4fa -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:350 -msgid "" -"Find and fix errors in JOSM using two validation tools, JOSM validator and " -"KeepRight." -msgstr "" - -# 7617eb16ca834f70890792e7ba141bdc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:352 -msgid "" -"Remind participants of the tools from the previous session such as those on " -"the tools menu and more tools." -msgstr "" - -# 5c0d7409f24a4e36aed423104e2df651 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:355 -msgid "" -"Use the tools to correct existing mistakes, according to the functions of " -"each tool (like split, merge nodes, add intersection, etc.)" -msgstr "" - -# 3726dcf13c784988841a5a57b716aa00 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:358 -msgid "" -"Participants should practise using the JOSM validation tool and KeepRight." -msgstr "" - -# 28bacdf67c7b46779cd96df11ea3653d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:360 -msgid "" -"Let participants practise validation in an area, using the tasking manager " -"to arrange tasks so that upload conflicts do not occur." -msgstr "" - -# 734f53b44ecd4344bb6c6c9c26235b35 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:364 -msgid "**Closing 30'**" -msgstr "" - -# 216d23765bc144a8bbfaefb5ef0749ff -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:366 -msgid "" -"Q & A about problems that may happen when using validation tools in JOSM or " -"online" -msgstr "" - -# 56a051e546c44e89940b4a9ce0c546ee -# 5f1cfb04afa849a89ceaf4174116bc04 -# b7f04e74cc454cf78a4fd5310f84504a -# fb39d41bf714437db70fd5d0e9e44432 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:364 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:547 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:612 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:632 -msgid "Q & A" -msgstr "" - -# e8bb13f0a10f49a28bfe2188ac6ae1ae -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:366 -msgid "Session" -msgstr "" - -# f90580df110749cca4c543483c24445d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:372 -msgid "Session 3" -msgstr "" - -# a57d84fbc83c4f40b805ffc0e4e29621 -# 508dc27db8504f3aacc8a8b9f51f855a -# 903135861cfc4bf0a00e36bf5f805c78 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:376 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:565 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:654 -msgid "Time : 2 Hours" -msgstr "" - -# f2c371c2afb84c04a53a320100646acb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:384 -msgid "Identify conflicts" -msgstr "" - -# f2712da0f84747bab7beae0c82098cfd -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:385 -msgid "Understand why conflicts occur" -msgstr "" - -# 34c03db2c25241fab79cddd6c5a0caff -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:386 -msgid "Solve conflicts" -msgstr "" - -# 737e66eff0c64e9c951181739f89c571 -# d3a78f24c70d4e67b58e20eb16abf78d -# 3fb983e19bd64ff69004eda2d5ef9cec -# 6d583f2c922f43698ffc588975a62ecd -# 64827bc717a346e487f031a7ab996d82 -# 3366c053d608410789cd2129b8132158 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:389 -msgid "Outcome" -msgstr "" - -# 46ad6e2b289249f3a5dc571e6cb604b2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:390 -msgid "Conflicts occur less" -msgstr "" - -# b349c63d77ee48c3bc7f0b6228c3933f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:391 -msgid "Able to resolve conflicts in JOSM" -msgstr "" - -# 99c83b94e83a4618abf567fd3edf24e6 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:395 -msgid "**Dealing with Conflicts**" -msgstr "" - -# 380aa5356a594e579b20eee0f572a8bc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:397 -msgid "Conflicts" -msgstr "" - -# 3a1a4bf8258048c2940da459a1942b6b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:398 -msgid "Conflict resolution" -msgstr "" - -# 284c32d630c340b7ac4631ef36da0eea -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:399 -msgid "Ways to avoid conflicts" -msgstr "" - -# 4481ec135b734a3dbd39e66ad585d841 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:409 -msgid "Presentations Projector (get there are two projector)" -msgstr "" - -# d12f40bc7cf7426392d27bf64509fa5d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:414 -msgid "**Group Discussion 15'**" -msgstr "" - -# 5f2fe44d607b411c83969e150ed097a0 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:416 -msgid "" -"Ask participants to form groups and discuss the causes of conflicts and how " -"to solve them." -msgstr "" - -# 29756c6c54d54bf8b384428f6146a01f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:418 -msgid "One group can present their discussion results and others respond." -msgstr "" - -# 4e1042edc63a43fd930752cbe71fa35d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:420 -msgid "" -"Reinforce the discussion by showing on the projector how a conflict occurs, " -"by downloading some area around the training location." -msgstr "" - -# 6446a7707a7a4aaa88a520fec2d8a178 -# 673b06b62bb64a7ebb976f416af35d85 -# c760e85027f244d2b90f63d0c115fdcb -# 3d851548306645e684f369c61232b58b -# 4cf5ef973098485a8cf3ef6636f6a720 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:416 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:496 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:506 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:603 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:694 -msgid "Presentations Projector" -msgstr "" - -# 9b8b1966ac384d55873f87d64d381e83 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:424 -msgid "**Demonstration and practice 100'**" -msgstr "" - -# ab84e97505464b59b4485b3c7074c817 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:426 -msgid "Before demonstrating a conflict, first create a sample conflict." -msgstr "" - -# 461061fab4cb4dd599dd67755aa1b639 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:428 -msgid "" -"Explain the three type of conflict that arise when uploading JOSM data. " -"Describe the cause of each, show an example and how to handle it." -msgstr "" - -# 3d148397b163454cac0da89390584830 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:431 -msgid "" -"Ask participants to demonstrate to the others on the projector how to solve " -"a given conflict." -msgstr "" - -# 4b3423400d9645968eed50eaba8e8b3c -# dfa5a2d790ed407ca2640ef8ac434e73 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:424 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:517 -msgid "Computer/" -msgstr "" - -# 5afc0d62730f441dae867521699056c8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:426 -msgid "Laptop" -msgstr "" - -# 90159ea4b0bb46b39da74e8cd9a41e4d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:438 -msgid "**How do we avoid conflicts?**" -msgstr "" - -# 87b58f8ade4c450fa1fa14e2fb4a4cdc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:440 -msgid "" -"If you are working with other mappers, divide the work area so that your " -"efforts do not overlap." -msgstr "" - -# ee79e2e42cb04c62b6f9e1852c2db577 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:443 -msgid "" -"It is also wise to upload your edits regularly. Fewer conflicts will occur " -"if you upload changes soon after downloading data." -msgstr "" - -# da0a895a340142ca883801a0a004e359 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:446 -msgid "" -"**What is the meaning of the green, yellow and red colours in the conflict " -"dialog?**" -msgstr "" - -# 76d2bbb85fa945a69599fe061db185dc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:449 -msgid "" -"The green colour means that the nodes are also in the OSM server and in the " -"same order. The yellow colour means that the nodes are also in the OSM " -"server but not the same order. The red colour means that the nodes exist " -"just in one version, whether it is the working version or on the OSM server." -msgstr "" - -# e27c846cfb35409a92ebfe8243c1f778 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:457 -msgid "Session 4" -msgstr "" - -# fedcfa5fa45d4084bd2334f37483840b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:461 -msgid "Time : 150 minutes" -msgstr "" - -# 10dbb4002f2c40628cc8a3317a54fb49 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:469 -msgid "Understand tags" -msgstr "" - -# bde55bfa76544d80b18629918fb216bd -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:470 -msgid "Understand XML" -msgstr "" - -# 4d0f7d6a8289420b9f9fa951aadc3307 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:471 -msgid "Understand keys and values" -msgstr "" - -# ada290812c014f1eb231941470d0c29f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:472 -msgid "Make presets" -msgstr "" - -# d5a2c86069ab46aca4b13381c5428187 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:473 -msgid "Put preset files into JOSM" -msgstr "" - -# afac5313a14a4aef864c4f04bc41ebeb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:474 -msgid "Apply new presets to an object" -msgstr "" - -# 5ff62ab4cd5548cfacaf4b7fc0bdaaf0 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:478 -msgid "Presets can be used to ease and standardise editing process" -msgstr "" - -# a8566f2c832f47a79c4d887a0d2b5483 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:482 -msgid "**Creating JOSM File Presets**" -msgstr "" - -# 4544ce8280fd4ce3a0acc65463dcf214 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:484 -msgid "Tags and presets" -msgstr "" - -# 1d86b1bb7a6a445e8718934fc96d2c63 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:485 -msgid "Introduction to XML" -msgstr "" - -# 001967c271004c44b4c0a52a7e1a3d00 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:486 -msgid "JOSM presets files" -msgstr "" - -# f58937de6d0b4515a91bcca74eda0158 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:494 -msgid "**Introduction 10'**" -msgstr "" - -# 2e93e0df536e4a33a2d9f1e7f361d87c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:498 -msgid "" -"Give questions to make sure that the participants still remember what are " -"presets and tags." -msgstr "" - -# 81fc3c1b2bef404eb0ed53ff5b988264 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:500 -msgid "" -"Make sure that the participants understand commonly accepted tags in OSM " -"(remind about Map Features page on OSM wiki)." -msgstr "" - -# 2b4c5dbb67a84e7494e2c4d517e0ceaf -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:496 -msgid "Q & A Discussion" -msgstr "" - -# 0a022c0fdaa6419cb90b504ba7db0065 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:506 -msgid "Explain presets, different tags, keys and values." -msgstr "" - -# 2772463bcd48457584b083cf1d4b63bc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:508 -msgid "Introduce the XML language which is used to create a presets file." -msgstr "" - -# 5805e2d7bc104b5fa48b5e88e790ab2f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:510 -msgid "" -"Explain the various elements that can be added to a presets menu through the " -"XML code. Explain each element carefully, so that participants understand " -"the relationship between their code and how results appear in the preset " -"menu." -msgstr "" - -# c931c7a50d144feabb6c442709235127 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:517 -msgid "**Making Your Own Preset File 30'**" -msgstr "" - -# 54675c3e97a84ed282e415efa9b56e84 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:519 -msgid "" -"Invite participants to discuss presets that you want to make together. Make " -"sure the ideas include all types of preset menu items, such as text box, " -"check box and multiselect." -msgstr "" - -# 1a98923f0d3e4558aaf6fab480bf838f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:524 -msgid "" -"Ask participants to visit the Map Features page on the OSM wiki and the " -"taginfo.openstreetmap.org website to see what keys and value are already " -"available in OpenStreetMap. They should try to use keys and values that " -"exist or once existed. If they have not been created before, they may invent " -"keys and values of their own." -msgstr "" - -# cc5538eae0fd4e9fa23cff84a2a5a750 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:519 -msgid "Laptop Module 4" -msgstr "" - -# 8f7e25ebcb4f4bb3a9d332c1cca00d68 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:531 -msgid "**Making Your Own Preset File 45'**" -msgstr "" - -# 6d4dc3ee3c45424d87100150cfa39d72 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:533 -msgid "Help participants install Notepad++ for use in this session." -msgstr "" - -# 15155a51bb7246729fe3a2b28aa0f6a0 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:535 -msgid "" -"Ask participants to open the *presets_sample.xml* file that has been " -"provided on USB flash disk. This file is an empty preset file provided as " -"the starting point for writing custom XML." -msgstr "" - -# 11cea4ee6e6f4740b484501fa1e2b2a3 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:539 -msgid "" -"Guide participants to make together the presets file that was previously " -"discussed. Go around and check how the participants write XML code. Fix " -"mistakes and explain them to participants. When they finish writing their " -"XML file, show how to save it and add into JOSM." -msgstr "" - -# 1e0d1f68f14446ed9d97e33c87934dae -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:533 -msgid "" -"Presentations Projector Computer/ Laptop USB Flash disk Installer Notepad ++ " -"a XML file example Module 4 XML and Presets in JOSM" -msgstr "" - -# 3cc8ee668b6942388cd74f13b8639dd8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:547 -msgid "**Adding new presets file to JOSM 15'**" -msgstr "" - -# 9fdd0283816a4a9ea11bea0672d20963 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:549 -msgid "Add presets through the \"Preferences\" menu." -msgstr "" - -# 7e42593276f84cc79485907d2c4cdec6 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:550 -msgid "" -"If participants get an error after adding their presets file into JOSM, help " -"them correct it. Usually errors happen when participants make mistakes with " -"their XML. Make sure participants are able to succesfully correct and add " -"into JOSM. Then practise tagging objects with the new menu." -msgstr "" - -# e06da0139b5445fe9c55fd87dbf154a8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:561 -msgid "Session 5" -msgstr "" - -# dad19db64d084cda85ff67f4d53eee3b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:573 -msgid "Understand the functions of the Separate Data Store (SDS)" -msgstr "" - -# 99afbe35a6ca46e2a4c5b856ea066a30 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:574 -msgid "Understand what data should be kept publicly and what should be private" -msgstr "" - -# 43491eb24b6e4842a1bf88f667310514 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:576 -msgid "Install SDS plugin in JOSM" -msgstr "" - -# 3ac5fa7df46d4a44a9cc9a3ae9aa5da3 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:577 -msgid "Use SDS presets" -msgstr "" - -# 3856eb9d60134ed58f0812dd084bc67f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:578 -msgid "Use SDS plugin for selecting public and private data" -msgstr "" - -# 02e4d70217e449d69bd30193501f5c3d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:579 -msgid "Access online datastore" -msgstr "" - -# 21ff27380d1146ac842b17bb0fb2968c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:583 -msgid "Understand how to use the SDS" -msgstr "" - -# bf603b27582f42ddb13f3af28db56e8f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:588 -msgid "**Using the Separate Data Store**" -msgstr "" - -# 442962596f104211adc7531838a967ce -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:590 -msgid "Installing the SDS plugin" -msgstr "" - -# 6a5e4ad1ebbe4b44b186e349859306e5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:591 -msgid "Using the plugin" -msgstr "" - -# 8bd8073fac1b4e1fbe4e663bb1f387d7 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:592 -msgid "How it works" -msgstr "" - -# e629db1fce5b4631982225b8edac46ff -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:593 -msgid "Accessing the datastore online" -msgstr "" - -# c5dad288e8b341699f5e8f919c06eb8b -# b3cdd8d171d5426cba83c39d6f519099 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:601 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:692 -msgid "**Introduction 15'**" -msgstr "" - -# 6edb9775481442489dbe4c29033b1be9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:605 -msgid "" -"Through games, participants should list what kind of data can be mapped " -"using a private datastore." -msgstr "" - -# b73955672c03498d8874b5b0d2e51518 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:607 -msgid "Explain reasons why data might be better as private or public data." -msgstr "" - -# 0d1dc869a24c454c93646897fdac996e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:610 -msgid "**Input 30'**" -msgstr "" - -# 62b38b8536d64a3ebeefffc8565588ad -# ae9cc7a2cbc24b7096e1d6d261d6dc76 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:612 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:699 -msgid "Explain:" -msgstr "" - -# c8a360dc7a374230a9ecbdf87b955890 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:614 -msgid "How Separate Data Store (SDS) works" -msgstr "" - -# 7dcac3cea7994925ac86539f83d46592 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:615 -msgid "The purpose of using the SDS" -msgstr "" - -# 19b181505f2e469290c0156fb9c461f2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:616 -msgid "Applications of the tool" -msgstr "" - -# 2538fac353974905a72c4fc90919071f -# 3eade64c42624fe896cc3126b4e4ae4d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:612 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:699 -msgid "Presentations" -msgstr "" - -# 0e9d305651cc49ce8c1837b30d039615 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:614 -msgid "Projector Computer/ Laptop" -msgstr "" - -# bc267263b8814f92916c823f14b774ea -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:618 -msgid "**Practice 60'**" -msgstr "" - -# 082701a93d46467f8e32703a17084d9f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:620 -msgid "" -"Show how to install the plugin and ask participants to install on their " -"computer/laptop. Edit the settings so that the SDS points to HOT's demo " -"server (sds.dev.hotosm.org)." -msgstr "" - -# a7c12fe500cb4b29ac7ef2072a2c424a -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:624 -msgid "" -"Demonstrate how to add tags to objects which will be redirected to the " -"private demo server. Participants should download a small area and practise " -"adding custom tags. Upload the edits." -msgstr "" - -# 009d871e6c6b4d0a86147370c9a07dcf -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:628 -msgid "" -"Use the sample account to access the demo data store. Allow participants to " -"explore the SDS and see the private data which they uploaded in JOSM." -msgstr "" - -# adc0322c5e1446f794e599d7f1be1331 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:632 -msgid "**Closing 15'**" -msgstr "" - -# 3d1935de9f0142ebb846053cb6f7e7f0 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:634 -msgid "" -"Discuss the session. Explain how the SDS can be set up privately for " -"organisations and users that want to maintain their own private data store." -msgstr "" - -# 1b07f28025c544cea756528d837a6397 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:640 -msgid "Common Problems" -msgstr "" - -# f69b7c0897404eef8b9780f47df586e1 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:642 -msgid "**Internet connection**" -msgstr "" - -# fb7b2e7e07cc448d9404f157c55192e8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:644 -msgid "" -"Sometimes the demo SDS has problems when many people are using it because of " -"limited bandwidth. You may need to ask participants to watch demonstration " -"rather than practising all on their own." -msgstr "" - -# 967bd0177142482e911c348d7bd40516 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:650 -msgid "Session 6" -msgstr "" - -# 8a8566644c094f0cb8d3e03c9bba12ea -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:658 -msgid "Create and edit pages in OSM wiki" -msgstr "" - -# 8cd9826ad2224844b849d5ba4f02b3de -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:662 -msgid "Make an account on the OpenStreetMap wiki" -msgstr "" - -# e1434050c15646fe989ddcda92960e25 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:663 -msgid "Understand conventions and rules in developing a wiki page" -msgstr "" - -# f357abacec0a4aa6b1fc2983c006e654 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:664 -msgid "Edit the wiki" -msgstr "" - -# f70d90f6c16c41b78faffe30893632b7 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:665 -msgid "Upload files and images" -msgstr "" - -# c0b8eeffd18e41128c7e2bff179431e1 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:666 -msgid "Translate and revise wiki" -msgstr "" - -# ae77bf4888ef441e860d56b998faad1c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:670 -msgid "Edit the OpenStreetMap wiki" -msgstr "" - -# 82043b3c7414406f9aec0336e20503bb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:671 -msgid "Understand how to contribute to OSM wiki" -msgstr "" - -# 189275f6939b4fc9808674ec74f91a56 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:675 -msgid "**Editing the OpenStreetMap Wiki**" -msgstr "" - -# f7448d0774034911b3d7b0f4e3ffd82d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:677 -msgid "OSM wiki" -msgstr "" - -# 5d01c5be07e64afa93b772d8719e1f38 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:678 -msgid "Signing up" -msgstr "" - -# 3ac96e87cc50432d9734e76743c5d8bc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:679 -msgid "Editing" -msgstr "" - -# bcdcad5c50d34bdc899d809a271a5eed -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:680 -msgid "Wiki formatting" -msgstr "" - -# 4401c29d460e4f7989932a8c18408bf9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:681 -msgid "Creating a new page" -msgstr "" - -# 9fabe773e2354af28d46b0ff7cf2c777 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:682 -msgid "Uploading files and images" -msgstr "" - -# 9590dac58b8a4ad7a039763dc5f84de2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:683 -msgid "Translating pages" -msgstr "" - -# 138d7d5262b34b659c6d786fd82cdb20 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:684 -msgid "Watching pages" -msgstr "" - -# dc2cb41dcf064ff9ae1fc9b135fcefe8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:697 -msgid "**Explain OpenStreetMap Wiki 25'**" -msgstr "" - -# 36425612feb94993b7840dbaac652c38 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:701 -msgid "What is the OSM wiki and how it can be used" -msgstr "" - -# 3486f4ec546c48cda1c550796d960338 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:702 -msgid "" -"The importance of the wiki as the main information source about anything " -"related to OSM" -msgstr "" - -# 0e31336660eb4ab7b1c36f56fd81c21f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:705 -msgid "" -"How the wiki works similar to OSM, where all users can add and edit the wiki " -"pages" -msgstr "" - -# c61b597d544b414d92d38b7247e8b0f2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:707 -msgid "" -"The importance of posting projects related to OSM and also various kinds of " -"OSM tags" -msgstr "" - -# 7778153caab345cca9d69a82403b9177 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:710 -msgid "" -"Show some important wiki pages, such as *Map Features* and *Basics of JOSM* " -"(JOSM Basic). Show how to translate pages to improve the accessibility of OSM" -msgstr "" - -# cb4223e55798482385be84de18b4098c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:699 -msgid "FGD" -msgstr "" - -# 59fb97ffa2e7481088c360faf5f2ae0e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:701 -msgid "Projector Module 6" -msgstr "" - -# beb2fd6cbc564368904cdc3f19fa4234 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:715 -msgid "**Create Wiki Accounts 30'**" -msgstr "" - -# ec42ed4d854b4e7f8f0bdaa988d868ad -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:717 -msgid "" -"Help participants to register on OSM wiki, so they can log in and contribute." -msgstr "" - -# 4991a549eded46b894bf8caf1beb2d52 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:720 -msgid "" -"Tell participants that they should sign up with the same name (account), " -"because it will help them remember their login info (which often confuses " -"users and prevents them from logging in) and it makes it easier for other " -"users to find them both on OSM and the wiki." -msgstr "" - -# 61fdd785d5b2480ebf56e83bbad23b77 -# cde2783d0cf4411caf99dae289b3595d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:717 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:728 -msgid "Presentations Projector Computer connected internet Module 6" -msgstr "" - -# c992f46c3664430382b7746e9a8447ea -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:726 -msgid "**Create and Edit OSM Wiki Page 60'**" -msgstr "" - -# dc01fd39ceb0401a922b68370165d474 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:728 -msgid "" -"Ask participants to access their user page to practise adding to the wiki." -msgstr "" - -# 9c524562ea704f6cb49d35f8b3e2100d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:730 -msgid "" -"Show how the editor works, and ask the participants to add basic information " -"about themselves to their user page." -msgstr "" - -# 3da4a9039fe24f16a21eb44c0657d112 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:732 -msgid "" -"Demonstrate how to use the buttons at the top of the editor to make the " -"formatting look better." -msgstr "" - -# 065cd674690646d889f139a8db2ad7fb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:734 -msgid "" -"Teach basic formatting. It does not need to be commplex. The important thing " -"is for participants to understand the basic concepts." -msgstr "" - -# 043d0219dd084f66ad5fd4e737ed9a5a -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:737 -msgid "Have participants create a new page entirely on their own." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/curriculum/qgis-inasafe-beginner-toolkit.po b/docs/i18n/en/LC_MESSAGES/training/curriculum/qgis-inasafe-beginner-toolkit.po deleted file mode 100644 index d129b89d..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/curriculum/qgis-inasafe-beginner-toolkit.po +++ /dev/null @@ -1,3342 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 5af1ef867e6e441487627ac869d30d88 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:6 -msgid "Unit 2 Facilitator Guide" -msgstr "" - -# de92166752214aa79c790a156cd0eff9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:9 -msgid "" -"Beginning QGIS-|project_name| Trainer's Toolkit - (A Guide for Facilitators)" -msgstr "" - -# 42d09b838ac947eabf198b07ab71f4b7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:11 -msgid "**BADAN NASIONAL PENANGGULANGAN BENCANA**" -msgstr "" - -# 320cfb221446433c84a0ef3e8337d9a8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:13 -msgid "**2013**" -msgstr "" - -# abef6f409e124da38cd408f6199d4a8a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:16 -msgid "About Toolkit" -msgstr "" - -# f848c542efc54144a682298c28dbfc09 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:18 -msgid "" -"**The Beginning QGIS-** |project_name| **Toolkit** is designed to prepare " -"trainers to deliver training for new QGIS users. The materials included will " -"prepare trainers to conduct trainings with a variety of audiences and to " -"cover common problems and pitfalls, and also provide trainers with the best " -"methodologies." -msgstr "" - -# d305ff3364ef4b399652a01d05372201 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:24 -msgid "" -"When organising a QGIS-|project_name| training, numerous factors must be " -"considered, including the length of time you have to train, available " -"resources, number of trainees and their technical skills. This toolkit will " -"help trainers prepare trainings for different types of participants, but it " -"will primarily focus on educating those with little or no experience with " -"GPS, map-making and computers." -msgstr "" - -# 43da71ea32374b2ca9702efc2968e7c2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:31 -msgid "" -"The purpose of this toolkit is to prepare the trainer to successfully train " -"workshop participants in using QGIS and analysing hazard and exposure data " -"with |project_name|." -msgstr "" - -# 1a75cf3963ea4082a303be9252860c84 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:36 -msgid "Purpose of Workshop" -msgstr "" - -# f3d00dbe71464e4d96f805a1d17e2dd9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:37 -msgid "" -"This workshop is intended to achieve the following standard and basic " -"competencies:" -msgstr "" - -# f82a11ba67814c92a45cbfac97d8f4e2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:41 -msgid "Standard Competency" -msgstr "" - -# 90ea0d442d4143a18de90c36912af245 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:42 -msgid "" -"Managing Spatial Data using QGIS and Analysing Disaster Impact Scenarios " -"with |project_name|" -msgstr "" - -# dcbd2965ac034ab1b6a1652072d1e12f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:46 -msgid "Basic Competencies" -msgstr "" - -# 4959ad2d6c834a688191b5c5eacadbae -# c4051e8697ef4361866a7b46c302d619 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:47 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:238 -msgid "Use GIS to develop scenarios for contingency planning" -msgstr "" - -# a7e78577c72a4fb3ba599310dc783c80 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:48 -msgid "" -"Understand the benefit of QGIS and |project_name| for developing realistic " -"scenarios for contingency planning" -msgstr "" - -# 2f75a7802ba64ffe8cfda3dad13346f9 -# ec136a7761c144ae90e489760a7dd1ab -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:50 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:367 -msgid "Install QGIS and understand QGIS user interface" -msgstr "" - -# db83854f89c04793b1b9cb9aa7cde66b -# 33ba9da290a842bd8f2171f58e36268c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:51 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:443 -msgid "Use QGIS plugins" -msgstr "" - -# ca2c133f0a7646248abe5f0850c74cdd -# e26d9a320f694e4b9581afb880251898 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:52 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:523 -msgid "Understand projection systems and transformation in QGIS" -msgstr "" - -# f09c3b7a06d348558f210896d171935e -# dce67955aaa947669a54035cfae0af48 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:53 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:593 -msgid "Use and understand vector data" -msgstr "" - -# 9f2bb43386dd4413b5a54adfa76d47c9 -# b5e423166ebf47a788d64d5be5f079d0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:54 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:696 -msgid "Categorise and create labels from vector data" -msgstr "" - -# 2c28d09f89fa4665b25b011dfb3b73e9 -# eb720267e1704c6a85dfc495ba1b7c94 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:55 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:756 -msgid "Use and understand raster data" -msgstr "" - -# db5f6cee48a0405d803d88841b12da1b -# 95b55294daf84110bb01e892fc255744 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:56 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:834 -msgid "Create and edit new vector layers" -msgstr "" - -# bbd14e2d0c5b426a9cb08a47e34e28ca -# 14476fec1149467694723461be0a98a2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:57 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:921 -msgid "Analyse vector data to solve problems" -msgstr "" - -# 5dc629b9b4de461fb9070430b9e66897 -# 3754d9854dee4a2bbce875de47d5bed3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:58 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1040 -msgid "Create maps with the Map Composer" -msgstr "" - -# 6292e43290a14ce88aea8cda337cd5c1 -# a9a9d9318f4f4701b392b2f674e7763e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:59 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1144 -msgid "Use |project_name|" -msgstr "" - -# 6782260831204533ad75685f0a8eb00f -# f281370abf97407dbf0db59a4a1cc5af -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:60 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1264 -msgid "Understand how to get support for QGIS and |project_name| in Indonesia" -msgstr "" - -# c69fc5d4a79e45509fe1e7ebfee8345c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:63 -msgid "Workshop Materials" -msgstr "" - -# 8e39f38ce79044338b6456fdc739ce18 -# e8988af2dd6b4f008a92ef1c3192c240 -# c456aea56d0d47e4a2fb1c1b513e5a46 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:64 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:122 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:233 -msgid "GIS for Developing Contingency Plan" -msgstr "" - -# aa5716003d5842a6b2778c4c944ca73c -# 7b12473c23234f47ab9df2e3a6ced993 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:65 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:124 -msgid "QGIS and InaSAFE in Contingency Planning" -msgstr "" - -# 77b2c0b49ab34d1f9d8fc571c13a1985 -# 088e4ca878db440b8717872d49766def -# 8057b4b249764e698b6ce096ee398417 -# ac5198d05af747cebedbac5f991f11c9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:66 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:128 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:132 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:362 -msgid "The Basics of QGIS" -msgstr "" - -# 809dfddc955b41bf968a376ef3ae480e -# 57b70abec3924cabad7ea60c59b1e1ad -# 6c0cc3d451214ed3a4a80207ef8dd2f4 -# 3da029b87d214e928c9cdf16ef135d2d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:67 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:134 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:142 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:438 -msgid "QGIS Plugins" -msgstr "" - -# cfad76fddcff4cbdab9400763405a233 -# 6f3013e9ddfb48259f6183e885cfe33b -# 54416692222245f1b093560e1f93a126 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:68 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:146 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:518 -msgid "Map Projection Basics" -msgstr "" - -# 6d0f6a3c6cc7424b95df29b2fda85fde -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:69 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:150 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:588 -msgid "Working with Vector Data" -msgstr "" - -# 884cf1faeca84ef7887489f76ead3846 -# 3c37ec70191e4c8cbfeef1dade918202 -# dd7f56181b444e3e8fc34d9a26438870 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:70 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:154 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:691 -msgid "Labels and Classification" -msgstr "" - -# ae3c074ba7d144509f5b4811b1ef65fb -# 1fe61c37484c44618cc959a17ccf5f4b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:71 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:162 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:166 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:751 -msgid "Working with Raster Data" -msgstr "" - -# d5eb27cb480c48c79b2c86ac43234259 -# 4bf05bc918134296b68f1b7bc43693e5 -# 5d5a0df1d7d14d67908245c32cf27ccb -# 839ede5a1d314d7fa5ac370e738d6029 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:72 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:168 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:172 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:829 -msgid "Creating Vector Layers" -msgstr "" - -# b51e38c104364f6cbe658a92834996c1 -# 00334b75cae1461d981643aaed3cc0bd -# 9a3e36bd87ec48e9a6eac72d3b621f43 -# 9df472f5dfe944ef9e547b07dd6a5851 -# d52e692f46624b1aa0c78fa3ef7d6a28 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:73 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:174 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:178 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:186 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:916 -msgid "Vector Analysis for Problem Solving" -msgstr "" - -# 5f7208f328f74c7583e6b4989410cdb9 -# 77dd0b2f81934fda8e22e3ac95ffa7fd -# 27223016f04344019821167061c636ed -# d668c4895fb14754916224533e2c6a17 -# 622fe54b38ba43e78de09debdc3d7b67 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:74 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:190 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:194 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:198 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1035 -msgid "Using Map Composer" -msgstr "" - -# a6ff306ea57141a380def7040f53e1c1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:75 -msgid "Understanding |project_name|" -msgstr "" - -# 6e31db17a6834255bb54cd3ebe8da0d3 -# 20f5db1e74154f8fbdde89f8417124a6 -# 37653d327d774684a12c0e2331c2f1ce -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:76 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:218 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1259 -msgid "Getting Support" -msgstr "" - -# fe35d69b66a04ca68ff7b073954dd79a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:79 -msgid "Workshop Strategies" -msgstr "" - -# ae2c61471b194e47a6d5d6c662e8f2dd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:80 -msgid "" -"Methods emphasised in this workshop are participatory teaching and active " -"participation in all sections and activities, rather than lecture method." -msgstr "" - -# 49623376c1a94efa861c70ec01f53650 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:83 -msgid "" -"**Participant oriented.** Participants are encouraged to find and gain " -"knowledge and skills by themselves." -msgstr "" - -# 7f20bbe61e5c4645b75d89abf9b49b3b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:86 -msgid "" -"**Trainers serve as facilitators.** Trainers facilitate to help ideas in the " -"workshop emerge from the participants, not only from trainers. However, " -"trainers must be ready to provide necessary information when the " -"participants need any assistance." -msgstr "" - -# 31309fb8ed87435bb560cc84e56fc4ab -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:91 -msgid "" -"**Outcome oriented.** Workshop must produce the outcomes mentioned " -"previously." -msgstr "" - -# 38cbad4c6cbb42a7ad4fc7b09ae43b5a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:95 -msgid "Tools" -msgstr "" - -# 0beee95c002241359bc59c173dae87d4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:96 -msgid "" -"Copy of :ref:`Data Analysis using QGIS and InaSAFE Beginner Level ` for participants" -msgstr "" - -# 58cf5d36d5e543b0be3a4dcd00a3c257 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:98 -msgid "A workshop space with tables and seats" -msgstr "" - -# 8a96336a851542a59e50f925b0f4eb7a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:99 -msgid "" -"Computers (one computer may be used by two participants, but it is better if " -"one computer is used by one participant)" -msgstr "" - -# a9c1cde3cadc4fd4948e30e04b485f35 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:101 -msgid "" -"A Projector (to present slide and demonstrate technical instructions and " -"software)" -msgstr "" - -# ddd7a506719e4ef6ba42bd156608668e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:103 -msgid "USB Flash drive(s) to transfer files and software" -msgstr "" - -# 29f070d4b8044921a0e4835463473410 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:104 -msgid "Good internet connection" -msgstr "" - -# 616b188db20d4cdeaf1722ad69ad16c2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:105 -msgid "Snacks and coffee for breaks" -msgstr "" - -# ca68c3c3151d498e8926910a564ac1c6 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:108 -msgid "Schedule" -msgstr "" - -# f89852e36ca54329ae85b6ec439c866d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:109 -msgid "" -"Below is an outline of a schedule for a five day workshop that has been " -"tested with several groups in Indonesia. You may choose to adapt and change " -"this workshop schedule to meet your needs." -msgstr "" - -# 7ff10021eeba43c9bd96fc21e7ed54a0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:114 -msgid "Day I:" -msgstr "" - -# 2f6b48affece433e9c2389c38298fdbc -# bf0c5a1c3aa947cc91bec1ba51f568d9 -# 9667e2bc3d22420d9f163e5428bb4693 -# fe70de206bbc4d21a5433f3a253998d2 -# 941bfdc9f5a44f928b9eb24d31922e3b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:116 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:140 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:160 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:184 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:206 -msgid "**Time**" -msgstr "" - -# 5f6eecac931c4540a5f37c8be26201f9 -# b72aff09dc314c87b296f8921ccaeb9d -# d0f506cfef3648e49a7e56a5028b6c02 -# 2bf87fbcddd34cad8c794cf179d65f28 -# 9a07b3b83fa045e089ae14fcd16974d5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:116 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:140 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:160 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:184 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:206 -msgid "**Materials**" -msgstr "" - -# 8265431e2eb94f1d8248418df29927ec -# a8a0075b89954d198bf6aa149dcaf2c1 -# 26b411ae7c3c43288c2c5272bbd8e58a -# e89c2256c6aa4c5982cd7bc1311b5310 -# 1685533f28324c9e96f33704ab5ec6b1 -# 95758f02545a4150998633211737b0f7 -# 32fab7343e304a3b815337c22fade8a7 -# 2c82f49410e34f9b989286086a599227 -# 33c976fd8af146769c00ea99c335118f -# a4dd83e7694d43f4ad838b8199fd9963 -# 47132745ae4f4a3b8422f9b5f9e0f8b3 -# 71d506b543b843b1b3272d42fd4c7bb5 -# 771c4aaeeaba405496c9451ac523b9c9 -# 30f110e6800c4e8c86151920935d6b54 -# 0f61e2bd54ee4f38abf5113139a00238 -# 5f7bb88eb7724e36892ddd467362300b -# b3d53e911a9e4258869a67df07fe2660 -# 25aa02b42be14501b84954048c0eec71 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:116 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:140 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:160 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:184 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:206 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:259 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:327 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:399 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:467 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:549 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:619 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:721 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:780 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:862 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:963 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1073 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1181 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1286 -msgid "**Activities**" -msgstr "" - -# 9c04448b98b9407da58710799d758e85 -# c58883600d3240ca92d593a0eaef1a09 -# b56842c1649a496fa6d9af925b8802b0 -# 6baf83b2ef08494da94e2e9a7046d5ff -# 03af90c05cce40daabe66955f921e04d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:118 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:142 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:162 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:186 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:208 -msgid "09.00 - 10.00" -msgstr "" - -# d4c2637b597748ab98e7f2de2cb4fdc3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:118 -msgid "Opening and building learning contract" -msgstr "" - -# 615ed71e19534b39a1f04e0ff330083a -# e22e1716adaa46919e91429cedc7334e -# 62363d50df8c4053816ed697304f2e98 -# 66d57d7466a14f64b68138506785afbf -# 9a71d142af474d1eb2cc51f4472b338b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:118 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:142 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:162 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:186 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:208 -msgid "Plenary" -msgstr "" - -# 4a4d5da287114b088e867cb97bc4856c -# 25443c4335f04aebab9a04375b0153c7 -# 6d73b70a9cfc4e4c90feb789c71157fe -# 32f5a9343c76400c8f910429df4a9224 -# 9c60d8ebc3854a898e28b13727c60222 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:120 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:144 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:164 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:188 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:210 -msgid "10.00 - 10.15" -msgstr "" - -# 6b49b643d53842d095f70055d8972d20 -# 83b53aedbf704d94bb61e807eb7d58b1 -# 52c84fd5c737472c8f622a8dfb77421e -# 2d1336aeb35c4cf481abdacc430cebd8 -# c04676712e1c492bac3b75eeb45c39ad -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:120 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:144 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:164 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:188 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:210 -msgid "Break 1" -msgstr "" - -# 47478c3ff71e4c258cfd3842379fe491 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:122 -msgid "10.15 - 11.00" -msgstr "" - -# 839df1fac1754d718643c36ab05106e1 -# 9373e9e1fe144a9789d79f2948a5ceda -# 00bc0bbe21fe489d92b2e500ea7b3e8e -# c353f415816742d2a5b11ef3f170148f -# 107ed4fba89c4ae3ae8bcff3e2887283 -# c387d3129fa34104aa0cb248e560109b -# 810d05fda06840c69a8e5e621101f1ac -# 8d4f9472ca4e4bacadaacbff4f4dfc0e -# 3d98121a74c24693b7c4fb60ba59e60f -# c7fa380dffa441d58a333d12af75d7de -# b67ddba72dd743ac883dee5e9f0bdf4a -# 5fc08b2b884c4d4e9f3faa00bd8fc923 -# 0232df1cd98143dea298a24aae90dc66 -# a76264eae88c44caafe9016859daf962 -# 2b2abdc46e9d47f1a204f1aa6b09bd80 -# b09b3e18925643d1b6777d92fe5af1a7 -# 8facd09176524ccaa921e12c78d39ac3 -# d54defc3f61649f1b9e5b649cf6028c4 -# 66724e85f4df407982e4298cee2e5cf8 -# 71b47c30e9334fa59fe141edbd907910 -# fa1e0ee17a10473f97ba99725ed2c45b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:122 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:124 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:128 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:132 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:134 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:146 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:150 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:154 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:166 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:168 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:172 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:174 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:178 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:190 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:194 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:198 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:200 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:212 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:216 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:218 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:222 -msgid "FGD and Plenary" -msgstr "" - -# 63c5b03378694aa3830e0e0137013ac2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:124 -msgid "11.00 - 11.45" -msgstr "" - -# ca9c0c64a0db4284a4c7a7dcb7de9cce -# ef31f86c2f4e4041a8246b3293223b52 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:126 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:148 -msgid "11.45 - 12.45" -msgstr "" - -# 3d238269cd024383a4779545ccd389d6 -# e99361d48c744626b7168a43c8481d60 -# 45d4cb830e54403587aa3815d171a6ab -# 55eb8026d73947718bc43428a4aedf10 -# 2e437cf2e6e045a09bf9e770f5c1ba2e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:126 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:148 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:170 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:192 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:214 -msgid "Lunch break" -msgstr "" - -# d50fe420d68b4cadb0653b417bb6a8cd -# 6ffaa54e50c7452abdac8e0eeaf6a8f2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:128 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:150 -msgid "12.45 - 15.00" -msgstr "" - -# 8a2547caa5a744c199f017430c691f52 -# e816a7babd0244c5b8ef73100cd7aad1 -# 5c342f4010e24bb688291227f381c832 -# 9def45901dfb4473a0d2121457e57784 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:130 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:152 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:176 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:220 -msgid "15.00 - 15.15" -msgstr "" - -# 6d3c4471f7a14cbe893507ce80df7cee -# a5f26dfa73a940acbf0d1b6d8ab3eeb5 -# f028f7be41004ea789c2e96c3e37d46b -# c63819112ea04b988ade31f8d03bc559 -# 1b50a86f545c423a8102c03d2f6a4e03 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:130 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:152 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:176 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:196 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:220 -msgid "Break 2" -msgstr "" - -# c180af8f16a8411180b5e724cac21e1a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:132 -msgid "15.15 - 16.00" -msgstr "" - -# 6e308882406c4eecb888d84e8a55b3e4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:134 -msgid "16.00 - 17.00" -msgstr "" - -# f36914bf90e9490a9a643f99ed09d7ea -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:138 -msgid "Day II:" -msgstr "" - -# 5cd191eb2c6348b987a2beebe23386b3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:146 -msgid "10.15 - 11.45" -msgstr "" - -# e96702ae4e914eb7bfb160919f7fdc9b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:154 -msgid "15.15 - 17.30" -msgstr "" - -# a584c1fb4c9445b0bd85366a35596b5e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:158 -msgid "Day III:" -msgstr "" - -# 5408cea6e4ca4e9a9bb08ff1f4dfd756 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:166 -msgid "10.15 - 11.30" -msgstr "" - -# 29b5d2368df84180ba7818ca8bded193 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:168 -msgid "11.30 - 12.00" -msgstr "" - -# 81385992b5854b60b089a30385283217 -# 44fc3da6da64444aba3a7147b8c8cbf9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:170 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:214 -msgid "12.00 - 13.00" -msgstr "" - -# a821ccff693848ffaeea8d647f0c0b29 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:172 -msgid "13.00 - 14.30" -msgstr "" - -# 5dbccd9076c3433ab0764060f5897c13 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:174 -msgid "14.30 - 15.00" -msgstr "" - -# 6cc3f52c8e754b7793cfeb6a3df0b5bc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:178 -msgid "15.15 - 17.15" -msgstr "" - -# b10647cbf6f44065b53ecec456b936d2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:182 -msgid "Day IV:" -msgstr "" - -# b386c796277d41a69472b1de84155add -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:190 -msgid "10.15 - 12.15" -msgstr "" - -# ebe5bd99498f4ba2a3d6fb9899b95523 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:192 -msgid "12.15 - 13.15" -msgstr "" - -# 585374bf003c497e9f1f7337dc02297a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:194 -msgid "13.15 - 15.15" -msgstr "" - -# 8a610055460343e0a2d228a420395ea4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:196 -msgid "15.15 - 15.30" -msgstr "" - -# 7a70e8c9ca1240e2a85e27c312abc27f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:198 -msgid "15.30 - 16.00" -msgstr "" - -# bd5097d61908462696b3afaaacd91719 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:200 -msgid "16.00 - 17.15" -msgstr "" - -# e090f8c344174d5eae94f8ff699b7308 -# dbeed38fbd704b46894bd354a2a844d7 -# b29ebd30a85f486f98f8dcdf225931a6 -# 40562efa521d4237ba65d510137c05de -# 8ad116f512914bde9e583577cf9e2bba -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:200 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:208 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:212 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:216 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1139 -msgid "Understanding InaSAFE" -msgstr "" - -# 56a58844096248f898ba28b83993fedb -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:204 -msgid "Day V:" -msgstr "" - -# 199623feaa534979b8b3b2ce8261c69b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:212 -msgid "10.15 - 12.00" -msgstr "" - -# 8569f546b6f24921bdef8cb46b03c386 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:216 -msgid "13.00 - 14.00" -msgstr "" - -# 72d2fbb769b5410f8ea40edbb2b28001 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:218 -msgid "14.00 - 15.00" -msgstr "" - -# 3a110da38d4c41a98a974ae03ff98ce2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:222 -msgid "15.15 - 17.00" -msgstr "" - -# 1b4da1f11b604c069ceeca443006bd12 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:222 -msgid "Workshop Evaluation and Closing" -msgstr "" - -# 2c2003fe125045868c84cc027263070b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:227 -msgid "Workshop Plan" -msgstr "" - -# c51bb0875a1c4980bc01dd4474e6899a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:230 -msgid "Session 1" -msgstr "" - -# 4ce5411014434145a250025e7cdf539c -# bf04924c99d04b108b82289a9c102ff6 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:234 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:298 -msgid "Time : 45 minutes" -msgstr "" - -# a39762d525834d809e3658421867070d -# 5aac0772daa54809abf0071a8447f712 -# 894ac8a0068e4376adc3da9d45336ff5 -# b38b50545d964303bab45b3b5d418d08 -# ba236c5893c84397b9b187e482e102a7 -# c4dc105d348f4967bc32f3760d46a586 -# 09ddbb108318411f88e7592a62cc04df -# ba39b03b6af44ae18d52033dc95f6e18 -# 1a0c3b707fbf496d909f9765298f83d8 -# 0d84b0ce90a5479e939d850155848148 -# f709c79262e84107905ced7c687dec39 -# 7af6d5edb2ec4e329ba1d285131cc596 -# 7c628cbe44784ee7b2d9547912ba26d5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:237 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:301 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:366 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:442 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:522 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:592 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:695 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:755 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:833 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:920 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1039 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1143 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1263 -msgid "Basic Competency" -msgstr "" - -# 4035714f64df47e2bfbd9683d4a245a0 -# ae6263316f264887a25cb6f48df625e8 -# 297ed035f5fe4d679f3cfa244ee67ecc -# 18ccb8cbbf494ca78bb1edd2d85d3096 -# befa35b25373441cb178d347ef7a4d4b -# 23694ef8a26c4b5aa4f186bc66424b5f -# 12b7f99346454e2a9f4504591eeb1067 -# 2901862acbc44594979ce2e8e1c0508a -# 1c50da0be6a0446a879433b0d5eff0f9 -# 5d937b0f51984781a2fee954de07c8b6 -# d62fdf5b0566462caa9a5fee3752df3f -# 48e36562023b4b0a802c2213a804b1a0 -# 53666d055a11406083b180fe8c1bf3f7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:241 -msgid "Indicator" -msgstr "" - -# 8720b6e0f9d14dfcba3f22a0495cf84d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:242 -msgid "Distinguish between data and information" -msgstr "" - -# a04b148014c946f2986f6b09a91acc6c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:243 -msgid "Understand the concept of GIS" -msgstr "" - -# 7592dc2f8c404f4cbe68749bc1a41716 -# f45f4b62242446d3a5fd79e70846483b -# 70d9df3922a54397896e3c9623d9594b -# 10a4d6f8fde9498b94e677697668b664 -# 3d720f513229493a948f87131c46617d -# 577c22d5a5bb4c5395198ed820d0d127 -# 706abd204ddd4cce9bfc1727b5ab2e1b -# 759cda4df0164badaeba79647385f477 -# 2e25d05bff784e99a2462f7150c1d6c5 -# 8ba481fe59644790853c5e65e9724b78 -# 3188d7724fd74311a1f6f0cc95af8307 -# 5841141a64204acfa51bcf203078d8d7 -# 043f4691812c4cfea59827adb55b3110 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:246 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:313 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:381 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:452 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:534 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:603 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:706 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:765 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:845 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:939 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1054 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1159 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1272 -msgid "Outcomes" -msgstr "" - -# c2daf6983c3542a58fa0f4d479c41ff4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:247 -msgid "Questions and comments about GIS and problem solving" -msgstr "" - -# f9d3d691396b4763bb0465f7631060e3 -# 0177690379f14fbc8ffcb51e7e1408c3 -# 60ca8e6fb28c4077b1bd4d2a4c590bf3 -# 788237dea5c247e28cd1aa5314133d4f -# 0e0a4309520041da9baff2f472602b7e -# 7cb23680d89e4873809afb5e975ab0cd -# 3d14e1c8370a49ad93a84abcca52c3e7 -# 81ada438dcbc48ee8161bef017f3893f -# 16a24b43f14d4cabba539cfc5a9ab524 -# fb87ee76dd754fd58466052375449604 -# 1c84801f43a7449fb4ed78ce8dda1620 -# 9e3a1f72dc064c99b12a24052af580f9 -# 172a2050817049fa9147bf231322f4ad -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:250 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:317 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:386 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:457 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:538 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:608 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:711 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:770 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:851 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:943 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1058 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1165 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1277 -msgid "Core Material" -msgstr "" - -# fe02623ddbb44f6da28795c15346aa4e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:251 -msgid "**GIS for Developing Contingency Plan**" -msgstr "" - -# eb4329e707c84a7893496fd643ad6dba -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:253 -msgid "The difference between data and information" -msgstr "" - -# aaae4353a2d64aee8b3ccdaacb2a4998 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:254 -msgid "Terminology of Geographic Information System (GIS)" -msgstr "" - -# 4b7c330ce7e342a7aa0b522a85723ee5 -# 7b31a8f675d14f09974c9d50b1e18f18 -# a3c73cbc260941229f3f279116c1000e -# 785368b2dd5c420b9ef2e38df4008903 -# 4f07cac984c24afd9eb75b4d9028f0b1 -# 8cedee594d0b4463b84c181e531c4e79 -# 3d58122189234568a6313d500df401bf -# cb639fc85472421ab8ad73c4f82cd8b4 -# 51db5e77409f4cdfb70e9cc1cdca79c1 -# 8e7b665bf08a4ff68306dad876d77e96 -# ee75d75e0fc04b32b64db4f1f2fe1e9f -# b183dfe34e9345b4877dc2153f69a33a -# d9135c115f104d7e940ed72da24f9ec1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:257 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:325 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:397 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:465 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:547 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:617 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:719 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:778 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:860 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:961 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1071 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1179 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1284 -msgid "Activities" -msgstr "" - -# a9ece85e97ec407eaac4d950ea44706f -# 475f08ffcae444f7854211f8f57a6ec3 -# d7542d6eb1de4e63b9713440356bb7be -# def01ee1b7f64ee6a50cd6f90f10cb1a -# c684cdab1a4f4521be0dd56f660b1dd5 -# b8dd829cbeb14497803fb465734a9185 -# b3eb2c7aea434c23a041b19bb464907a -# db51aa777d204030951d879b2e4f849f -# e5ef503e6b284dde801fb4fd74d26538 -# 81d3bbc8669a4f61a8f0312cd2c1a75b -# 959317dc718640e2806155107d30141c -# e338c39e4f0f4298924f5287af820287 -# 2e98d1365fa24088ac1ba02d5163cfbd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:259 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:327 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:399 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:467 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:549 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:619 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:721 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:780 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:862 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:963 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1073 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1181 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1286 -msgid "**Methods**" -msgstr "" - -# d1d6128c4597490c9b606e5b901eac83 -# 3e95885904704e35b5d4247c355a2655 -# e42750f5d85a4b139eb7c0c868ab7798 -# 16c564e42d98403787df8258d6091f02 -# 3c192debc344429dbc5049a2469dab1d -# 515bba24ce1448fda42fa8adc7ef174d -# 8d2604eddac640c98e0cea61fe7f0302 -# 5dfaae85d8ca4ebd9def4606e2812bc3 -# 5c935cbaf4c74180ab8bfc984afaa0d3 -# 4a89170040a4471eacc3cacca0232f5a -# 6cd9bab7e80a4a22be384ab68a21a3d9 -# 6b27f951c0cf47c3868c5dfda669cf41 -# da48a6d5284a4e7291743631ab7345d0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:259 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:327 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:399 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:467 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:549 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:619 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:721 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:780 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:862 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:963 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1073 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1181 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1286 -msgid "**Tools**" -msgstr "" - -# cc96121927a24aae929c50ad75b93921 -# fb3ab47900e64bb986ec3ee9ae8d57c9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:261 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1288 -msgid "**Introduction 10'**" -msgstr "" - -# 6dc0012d34124e769c6fd38cdfad5e8d -# 956921d1f7ee49dc95bd88de8fcc8b4f -# 1d05c84246c64c7ab30d0afb0daed586 -# ee078d85a2364c658150cdb4fb1108ab -# a4c96a5374e946e69b2799d7b48ee879 -# d7190a125a3144a191f7d11da4e152bd -# cd257c252c524458afaef8b24b8ab619 -# 8b8e7d1ba88041219b3560575d39001e -# badb09ff10434605a0f743c86fa3d521 -# 6591f91fdb1942b7a423cc4fa2286524 -# d69a851840f341b49fb119bf233d4505 -# a3c6b6805bdc43a99487c1b0f888196a -# 056e83e0b15b435781aee29331577b93 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:263 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:331 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:403 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:471 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:553 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:623 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:725 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:784 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:866 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:967 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1077 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1185 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1290 -msgid "" -"Explain the importance of the session, objectives, outcomes and activities " -"of the session." -msgstr "" - -# 470c65a957fe46148ddfa8058b619915 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:265 -msgid "" -"Give some questions about the OpenStreetMap beginner workshop to " -"participants. Ask participants to answer the questions in turns and other " -"participants to give input or corrections from the answer given, so a " -"discussion will develop." -msgstr "" - -# d832595fd8604e7e8e9a85a777e45651 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:270 -msgid "" -"Bridge the OpenStreetMap beginner workshop that has been given before with " -"QGIS/InaSAFE beginner workshop. Explain that OpenStreetMap is a resource for " -"spatial data which is free and open source and we can analyse it using GIS " -"software" -msgstr "" - -# dedd4d89bfd1419e87a6f503056582fa -# d175aee4a73e4d1181075b002e754a79 -# 3b551ced3cef4daba6cdcc921f6d4d50 -# 1bf5d2e37d344d9fab784ac1079d58a9 -# 4b513c4c75da4c9bad9096961ffb7d90 -# dc90f59dd1cd4799ad5cd17296b21bfc -# 5e81ffa38dbc4d05959e1d931d6606b3 -# ae83169ce10d4273b1cb95a59920f199 -# 516c1d079c38453092e326878a8cfd89 -# cc7bb6d2d00945d3a2e4f818770ceb20 -# 615cc948e7ef4d6da777038669a567f8 -# 1e8934fe11174f0a9db60b90a3b7c498 -# d3870b7cb717475e91866275774191af -# dce53750b75941ff962f521a98196243 -# 108aba400f0c43aeb0d59d4d79141506 -# a2ac166968e24a6fb28fa7be48d3bdfb -# 1c218257e0b9497e96d8bf55f152ca0d -# 954c8e26a2c54f289ca6987e02de4d28 -# 893174655de144b7bd9a6eeaaaaf12e3 -# acf4ba71dccc458eb37b909c39249d0f -# bb50db3a74494ee494a5107c21b9a572 -# 53ddbdb9681a4dcda8bf4adecd4ecf1d -# ead991d4383f4054bd980324a2bf1a49 -# 5bff3dfea1dd45569a1d063d69a132b1 -# 5da4933a4065425289a8625e36716bf1 -# 785eed7c57e644bdb07c38d9b42ce38c -# 2c0323c4de104812bbfca1e4873f3bf4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:261 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:276 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:329 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:336 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:341 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:401 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:469 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:474 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:551 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:556 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:565 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:621 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:626 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:723 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:782 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:864 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:869 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:892 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:904 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:965 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:970 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1075 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1183 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1188 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1228 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1288 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1304 -msgid "Lecture" -msgstr "" - -# e4fe2a6cb23b457cac4eac3eb157c970 -# 2183620a4b16483b9e5c02f38e5ddd2f -# e54677ecd726443dacb3388e4ef891d6 -# 4322d2a583ad4c54bdf8850070d9efcf -# 1edc603750194524bbb63cb20f15b236 -# 88d18387f8454b52b8585504f8440a3b -# f1fc1f020ad14dbb9cb92627167aa4df -# e646e1887d3b40f89a3e979d26ecee9b -# 2f3f9ea6937b4d91abc070540b627e16 -# 9b6c31bde76b498d9e4cfebb36698076 -# 28d5c5b06fd545a481f52800ca787f11 -# f0a73b05bc654d67a5145c24e4ea20c9 -# 9a3e557193c44fa0a1a5e1d91dfdab71 -# ed6e761bbe3045a0a7cb356e892f5b47 -# 8dd41eac636443b8a0e6da1daf20bc1c -# 5e76cd8f42b348c283789568c73818b5 -# 9379828c9c4247edabc8f556dcb4b8d4 -# 4090cad6abf54428b8d82f63c38225c3 -# 14a4680d32e34a8dad889f0e801f91f4 -# 264ab8f0bd7e455fa43c0ab88c0d0a7d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:261 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:343 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:401 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:469 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:551 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:556 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:723 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:782 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:864 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:965 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1075 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1183 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1188 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1195 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1209 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1219 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1226 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1233 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1288 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1293 -msgid "*Slide PP*" -msgstr "" - -# dc8e901f7a744bbcbb9a1f9fcb893bcc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:276 -msgid "**GIS for Developing Contingency Plan 30'**" -msgstr "" - -# af67052b71ee4ef890bad3910226a5ea -# e993fa063d6c463a82261afc2645088d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:278 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:344 -msgid "Explain:" -msgstr "" - -# 3406b4118c604b8ca06ae7c91bdfd4d4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:280 -msgid "The differences between data and information" -msgstr "" - -# 843ed2714f37442f90d26ce3026a937d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:281 -msgid "" -"Basic concept of GIS, GIS terminology and functions in GIS, along with " -"examples of the software" -msgstr "" - -# 6afa7f3bf7b041a6aec61f03fe84d9cd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:283 -msgid "Benefit of GIS to in contingency planning" -msgstr "" - -# 28e08769d30b4ccb94f88d5b72d81f0b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:284 -msgid "Importance of having accurate data to develop contingency planning" -msgstr "" - -# b066b4aef86b4f38a802779e72346751 -# 5a18ddc3590e494db1032cdba300c17d -# 8e86f69a59b8490f8563aad26aa54658 -# e175a07e9cbc4f33aac71047bb0ae25f -# 5fff5284a8994aa294be13db5568e58a -# 845e9dface2a40bb868b94e8162630c9 -# 81ceaecf2b3c4b54a1d5dbb642d30921 -# 934837972da1470792a00a313db1729c -# 38c068d12a154cfba5b07ad9aaa83808 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:276 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:334 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:411 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:474 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:565 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:576 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:978 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:999 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1080 -msgid "*Powerpoint* *presentation*" -msgstr "" - -# f2c91d3653534963915d6ea39116be4c -# 91a55aa39c9f4258822fa786fc23fe38 -# 5e8e530bdfa0418ea4ec875288f7f869 -# c5ccc6ffbaa34dcd96d30b36914f140d -# 16a6c849fa2d4a34929d0dda8e3142a1 -# 2bad1ec6eee14c4d9f060706ce178df4 -# 365cfaf709bb43c18600b038f55c3ded -# 77546517ed684025a0faaa7377d5b217 -# e2a336d4a3c6426c88eedcb2247feb65 -# 6c26c1d559644db08853581e09b1cebd -# 3b9b73d3c3e147c3b08eba20ae48678c -# 9ea388205a4d449f87e64aced9a264d6 -# 472c12fcb9f34173ae8f116964822556 -# df600309d6a2496c9477b3cf0de884d3 -# f5e3d28720c84139af2d37bd885c550b -# d54d0ef9f4344e899f46b2c5c0ba082d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:279 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:337 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:341 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:415 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:477 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:568 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:579 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:626 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:728 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:787 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:869 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:892 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:904 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:981 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1002 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1083 -msgid "Projector" -msgstr "" - -# 541ea7c2ad8c4867a89bc5bcbb81c069 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:281 -msgid "Module 1" -msgstr "" - -# 6905bd485d7c488cb6e0a535255ec8f9 -# f4526a87e26b4cdc8db8fa066a0f8bc8 -# b61e3365f84d4246ba539c2abb00f47d -# 702f8aa1a9ee463f9198e64135706450 -# d4031f5f9f1a4501804cc2e948379905 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:287 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:352 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:421 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:489 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:659 -msgid "**Closing 5'**" -msgstr "" - -# 006c83fb36a849eeab7e810dbdee4a10 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:289 -msgid "Ask participants to give reflections on this first session." -msgstr "" - -# 5a671fd0028a4c3a96d532001f15931d -# 7f3c82662e1e428ea59c6f17ac5318d9 -# 0f026f03439c49578b8193c04764ba17 -# a922d8c133da4f0ab9e50223246d79b5 -# 00d6af1833de4ffaa6800d0bb55a1ac1 -# 3f5f2d4908ee4d55bc4ac7b8d9fdd68b -# c30323873dd64e47b1bb63386b47aacb -# 82b3513e79324c31b416b28277fa79bb -# 01e25820925249119fd0d37cbb43d753 -# 148da8eb6cee429cb99daa5c9875e840 -# 65eae6abca62430c83703fb3cd3551b6 -# dc4adec57f5b4202804508d4ff953f7a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:287 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:334 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:343 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:352 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:421 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:489 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:571 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:659 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:908 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:972 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1190 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1306 -msgid "Q & A" -msgstr "" - -# 98222c0c38904136a7788e2fb08aa333 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:295 -msgid "Session 2" -msgstr "" - -# c325f074ad45433d8915be137ec4c04a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:297 -msgid "QGIS and |project_name| in Contingency Planning" -msgstr "" - -# 109b56a8e8b946a4b427671457dc0b56 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:302 -msgid "" -"Understand the benefit of QGIS and InaSAFE for developing realistic scenario " -"for contingency planning" -msgstr "" - -# 8683cbf9269e45ff8b63e863fd5815d9 -# e5f5366ed57e4b39bb92f6d3b5945374 -# 822a1370d0f14fc095ae08e38f00cbdd -# fbea92a9acb249c0b7291cc933dca56b -# 7a631917c2d641ccb74a0731d344f062 -# cf717656fa254030aed97b9187c09643 -# dcb1f21945ed46ed840c73ce3956c439 -# dfd84ffb9dba471ebc97526ea1dad516 -# ee50555f047e4c65b1b4665760ed14d3 -# 8b1df00986a84f4aa135f576f42e968d -# 9b964374f0fc4e5aab9979fb6530a4cd -# cb1d56f5b82148128fbecefcfc2d7635 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:306 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:370 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:446 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:526 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:596 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:699 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:759 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:837 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:924 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1043 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1147 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1267 -msgid "Indicators" -msgstr "" - -# b70bd73f10a4468d9f52fbc3f7cad139 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:307 -msgid "Understand the role of GIS for preparing contingency planning" -msgstr "" - -# e6807f7fe83a46f89d0ad43437c6941c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:308 -msgid "Understand the importance of data" -msgstr "" - -# 4cd2117369c4460d8796c0abd8789bd7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:309 -msgid "" -"Understand the benefits of QGIS/|project_name| in the development of " -"scenarios for contingency planning" -msgstr "" - -# efc491cc35ac4ac6834f1203368dd0ef -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:314 -msgid "" -"QGIS and |project_name| are used to support development of contingency " -"planning" -msgstr "" - -# 64717ef755d0421984bd93e205663f7a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:318 -msgid "**QGIS and InaSAFE in Contingency Planning**" -msgstr "" - -# 14a0f57bf2084153a53ffaa20bf7843c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:320 -msgid "GIS for Preparing contingency Planning" -msgstr "" - -# 5c39ccdd58a54ead934d6c689d41126a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:321 -msgid "The Importance of Data" -msgstr "" - -# 86305697892245dda06b5b95c1b88061 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:322 -msgid "QGIS and |project_name|" -msgstr "" - -# 4cae4dde9a114b7ebfd3bfbca9e79411 -# 3f508b5a5e26431ca01ef63f8ca8ccc4 -# 2a5b14ad51bc4dd78c5b88903b00c77d -# 685cb62d87a94683ad1e94e6cdd222ca -# 31956692fbe047f195b6c36ec8c011a0 -# 3e8ba1e1364145fc924ae220e0822c54 -# 494c0783d38a4f93a9d4fb572a5dd73b -# eedcfb0d87ae40debfcf2db233ffd57a -# 40ba37ba836f4901be944d1ff71b79ba -# 6e7276ae1d134ba9bbeac3e9eb505038 -# 8f3f6fdafc814e9b8f4219041f935661 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:329 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:401 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:469 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:551 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:621 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:723 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:782 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:864 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:965 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1075 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1183 -msgid "**Introduction 5'**" -msgstr "" - -# fcdf2e6233424ec58fe869430f2ac67a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:334 -msgid "**Understanding contingency planning 15'**" -msgstr "" - -# 5af40e5be9e14f3792c125ffed0b5e01 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:336 -msgid "" -"Before going into GIS to support contingency planning, it is better to ask " -"participants about their understanding of contingency planning. Provide some " -"review based on contingency planning terminology from BNPB." -msgstr "" - -# 414cf726d916425ea675095542c60780 -# 4b7b515cdb4c416cbc8c03ebfa709c45 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:339 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:345 -msgid "Module 2" -msgstr "" - -# d2692a12890549eeac67fa19bf28f26f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:341 -msgid "" -"**Using QGIS/InaSAFE software to support development of** **contingency " -"planning 20'**" -msgstr "" - -# 23eb0bd90c834b578956e3b28097d0dc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:346 -msgid "Terminology of QGIS and InaSAFE" -msgstr "" - -# fea3758465c345a19dbcfc38122e5980 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:347 -msgid "Why QGIS and InaSAFE is important for developing contingency planning" -msgstr "" - -# cc89e64e0faf4b81b1429fbebeff09d8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:349 -msgid "The benefit of using QGIS rather than other GIS software" -msgstr "" - -# dafc050d72e944efa2784f71c65da4d5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:350 -msgid "Mapping disaster impact using InaSAFE" -msgstr "" - -# 1fa032f080e44e2389e648b1ea656c03 -# 6321f638aeb743c1b1901cf7aa23b076 -# 5200fa5675a3471fb5ff03f0579eb0c6 -# 1a5ba7db4f6b4acda447bc384447ced2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:354 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:423 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:491 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:661 -msgid "Ask participants to give reflections on this session." -msgstr "" - -# 919109b4a0f04a54b87c42fe0660cb41 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:360 -msgid "Session 3" -msgstr "" - -# 7ca5943d9ad64c3b84bb8445143f95e0 -# e5964c9dc6ad46409bf528bf73650460 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:363 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:830 -msgid "Time : 180 minutes" -msgstr "" - -# 3f852532734248b9821ba89e3b417a50 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:371 -msgid "Download QGIS" -msgstr "" - -# 5dd9833efcde4660acba2f18ae41070d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:372 -msgid "Install QGIS" -msgstr "" - -# 9b868df31de94ef28285f06bebbbae19 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:373 -msgid "Open a previously created QGIS project" -msgstr "" - -# 48798887cdc34c1ebaad8bae4a5423d2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:374 -msgid "Understand the layers panel" -msgstr "" - -# fbf79007db1e48a29167954484d45366 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:375 -msgid "Access basic tools through the toolbar" -msgstr "" - -# 2715f74a6bac404aade5eb63adf2032c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:376 -msgid "Clean up the toolbar" -msgstr "" - -# b47334aff9d54c2183f0cec4391f853f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:377 -msgid "Show a map in the map window" -msgstr "" - -# d57c3f5016324c2688264b10015fcc88 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:378 -msgid "Get information on an active map through the status bar" -msgstr "" - -# ec5d29d0a7fd42bdb758c19586877939 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:382 -msgid "QGIS is successfully installed in each participant's computer/laptop" -msgstr "" - -# 3337cb9f8e204899aec84de054bc9349 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:383 -msgid "Participants understand basic QGIS navigation and layout" -msgstr "" - -# 75e2ed6d325e4b2fa411e6bd818e3677 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:387 -msgid "**The Basics of QGIS**" -msgstr "" - -# f89efef487f74f31bacfd493795a5696 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:389 -msgid "Getting QGIS" -msgstr "" - -# 99280a10d372431eb8730ce1fcc44c53 -# 39cbfacb9ca54b5e8ffd45f1c055029a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:390 -msgid "Installing QGIS" -msgstr "" - -# 62881405fae641ab82ebe419691af107 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:391 -msgid "QGIS user interface layout" -msgstr "" - -# 8ffd92ab624d460da0967715db987fb6 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:392 -msgid "Adding vector layer" -msgstr "" - -# 252b7d052bb44f7b99a7fbea0114410c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:393 -msgid "QGIS basic tool" -msgstr "" - -# f1394d13d46e4ac1acaa0f4701be0a89 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:394 -msgid "Panning maps" -msgstr "" - -# b01f5685857541aca2b8d8592f5a6bf8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:406 -msgid "**Practice 170'**" -msgstr "" - -# e22f454d155a4b01ad07ce9d881298fd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:408 -msgid "" -"Ask participants to install QGIS which has been downloaded before workshop " -"on a flash drive. If internet connection is reliable they can download it " -"directly from http://download.qgis.org." -msgstr "" - -# 19eb91710a7748db858569ae4d55bcc2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:412 -msgid "" -"Make sure every participant installs QGIS. Guide them through the " -"installation." -msgstr "" - -# 8bfac32beec7433aa1b3f954e786cbd0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:414 -msgid "" -"After each participant installs QGIS successfully, explain the QGIS user " -"interface such as the toolbar menu, layers panel, map window and status bar." -msgstr "" - -# d846bb538b6f4729b4c1d07d12ed5de1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:417 -msgid "" -"Guide each participant to add a shapefile (already prepared) into QGIS and " -"explain the status bar under the user interface layout." -msgstr "" - -# 31fd3643c13c49e0bcecd8b6c353047a -# 5d98e09a8f874598b87d9afbefecd956 -# af32fac6ad89463dac679fbf48bf66d2 -# f98c14ffeb0e4c699cfd4edb6378a77d -# b95f6d487f3d4910bb66b145f96e48cb -# 9d563544e4e648418f24947237fa55af -# 37f4f11c9acb4d768de80ba26cc6a05b -# 9c0a0bc8ce4a45d0876c877ace63f124 -# 7a39b513c5d240b3bf596aba5b42246a -# 8c91e227ecd4424897528cae6a45f0f0 -# 256b196f10984b639ebdc14e60f4b324 -# 5e821d12824c44a2ba300a6a897217bc -# d72249f74fac42f495264c9d04773226 -# a25b9f30bc554f908e3c5e018a985701 -# b3e0e9c9174147d6b77ec968675ba518 -# 73cbf931be8843f58ea747d5bb580f17 -# 56f8cbdbd1bf43bc980f4970cb82f0ec -# 3a9f785c7dfb4a6bbf2cd49e5e1fb43f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:406 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:478 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:569 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:578 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:630 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:652 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:732 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:789 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:871 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:894 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:980 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:999 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1082 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1211 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1221 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1230 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1236 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1295 -msgid "Practice" -msgstr "" - -# 4027b3947ca94070b13525ef17cfe8f7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:406 -msgid "QGIS Installation file" -msgstr "" - -# 11475769e27c464e912eda9bc4c52105 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:418 -msgid "Module 3" -msgstr "" - -# e2fddb2323de4bdfb8110630a72a04a7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:428 -msgid "Common Problems" -msgstr "" - -# 8c5e419c21c6448a9848727a142d85a5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:429 -msgid "" -"In this session, it is possible that QGIS will not install on some computers/" -"laptops. One common problem is that a problem with sqlite shows up when QGIS " -"opened. You can solve this problem by copying sqlite file from another " -"computer/laptop that has QGIS successfully running." -msgstr "" - -# 5cebc15d17114be9936a0928c77c0f35 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:436 -msgid "Session 4" -msgstr "" - -# 31ff6a6c7cef4406a0ca8b06d9f4c9a1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:439 -msgid "Time : 105 minutes" -msgstr "" - -# 74e494f6d3e2480d937b9ebe32818d1b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:447 -msgid "Understand the concept of plugins" -msgstr "" - -# 52e4f77adc214343989201d01f5be297 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:448 -msgid "Install QGIS plugins" -msgstr "" - -# 1182428a15f246edb2e69b5c435a3895 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:449 -msgid "Add satellite imagery via OpenLayers" -msgstr "" - -# b6caac12ebcc4bc1bbb9f1212fa67ecd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:453 -msgid "Participants can add QGIS plugins based on their needs" -msgstr "" - -# 6bdb4c1fcc1e4a2dbc2bee07c123659e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:454 -msgid "Participants install and use the OpenLayers plugin" -msgstr "" - -# c1366a694622433fa2a344e84777f22e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:458 -msgid "**QGIS Plugins**" -msgstr "" - -# a83f93e515024dd980200500e66c6cab -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:460 -msgid "Plugin setup" -msgstr "" - -# 7c6cf38d81ab4c06a3005ad78c168211 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:461 -msgid "Installing plugin" -msgstr "" - -# caa6f32ad65d40b98cca9a935495895f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:462 -msgid "OpenLayers plugin" -msgstr "" - -# e0a3b682f4164c7790e56e55a1c4250a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:474 -msgid "**Demo and Practice 80'**" -msgstr "" - -# 88d5ca2723d848819c8d02631d155fc7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:476 -msgid "" -"Explains the idea behind plugins. Show some examples of plugins. Explain how " -"plugins work in QGIS." -msgstr "" - -# 5730e111838d44c282d25cc1e3503f53 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:479 -msgid "" -"Show how to install a QGIS plugin, explain the QGIS plugin menu and make " -"sure every participant practices it." -msgstr "" - -# 094a4cb81baa4db396c31fed55e67409 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:482 -msgid "" -"Ask the participants to download the OpenLayers Plugin. After installing, " -"ask participants to use the plugin. One thing to remind participants is to " -"not use Google imagery with OpenStreetMap because the license is commercial." -msgstr "" - -# 051e2a9a84084c4284b157ebdd84380a -# 769c0f6de9e0436aa1bf2752793a3421 -# 8bc1111dbf7348a59d9cd3bebdb288b3 -# 7bf80316edb84df1a0dd24c71cc25831 -# 9b992b653ab54f77acf4f314bb4eeff7 -# fc51cc758f0947f08d3fdcad1f5c2249 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:476 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:567 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:576 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:628 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:728 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:730 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:787 -msgid "Demo" -msgstr "" - -# 5c9f75cb57d647939aeab8a2ab6c891b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:479 -msgid "Module 4" -msgstr "" - -# 3670225b1cfd477dbffa9c24c87db753 -# 73c06ca82dea454a8a6fe394858ca9eb -# a9d7208fdab84deaa54e09401987bc46 -# 5f11dc8532b74c2a9494d1a46547b6ee -# a422068f48324ea5b6ff11ec94126193 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:496 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:666 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:815 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1018 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1125 -msgid "FAQ (Frequently Asked Questions)" -msgstr "" - -# fef5c1a7d9fb47ae87e00accc858202c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:498 -msgid "**What should we do if the plugin installation fails?**" -msgstr "" - -# ee3fb616d7fc4f5984302e601ce4d115 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:500 -msgid "" -"This can be caused by a poor internet connection. An internet connection is " -"needed during plugin installation, especially if the plugin file is big like " -"|project_name|. If this is a major problem, it can be addressed by preparing " -"the plugin file on a flash drive. Then copy the plugin to :file:`C:\\Users" -"\\Computer\\.qgis\\python\\plugins`." -msgstr "" - -# fe00d4affc4b438599bfe1e0de108791 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:507 -msgid "**What if the Fetch Python Plugin menu is not available?**" -msgstr "" - -# 78dee1af173a465e93de06d3d73d3cd1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:509 -msgid "" -"Open the settings from the *fetch python plugin* options menu. Tick the box " -"next to *check for updates* on startup which should add a list of new " -"plugins automatically." -msgstr "" - -# 8143b554a2784a719e9d24722ad49316 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:516 -msgid "Session 5" -msgstr "" - -# 9dcf26d65cb94abd85c4d4bbf6ae5f44 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:519 -msgid "Time : 90 minutes" -msgstr "" - -# c09b746ccb834b89acfa28753ea051a4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:527 -msgid "Understand Coordinate Reference Systems (CRS)" -msgstr "" - -# 179eb0f8a0994975b50168d1a852b8f8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:528 -msgid "Identify the CRS of a vector dataset" -msgstr "" - -# 73bc522c8dfa44809a8129659c68e46f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:529 -msgid "Do 'on the fly' reprojection" -msgstr "" - -# 5ddf7a51ce4f42238e57c2d1b77c4424 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:530 -msgid "Save dataset with a different CRS" -msgstr "" - -# a92a8a8e0aeb4d0f99bb41c1bd0d9248 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:531 -msgid "Create a custom projection" -msgstr "" - -# afe76342bba143c4a86c8f363d08d260 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:535 -msgid "Participants can change and create different projection systems" -msgstr "" - -# 34e6459f810b44e0823822c8004de599 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:539 -msgid "**Map Projection Basics**" -msgstr "" - -# e14ba63202d749a4b73052eb1315d78c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:541 -msgid "Coordinate Reference Systems (CRS)" -msgstr "" - -# d3fdf8ffd9224b2c9af6f1c8ce9984f0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:542 -msgid "“On the fly” reprojection" -msgstr "" - -# 1ed16af7c3e34ef5b50e3f1bff3ee970 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:543 -msgid "Dataset with different CRS" -msgstr "" - -# bf0d563c82da46ce94db101359380fe8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:544 -msgid "Defining a custom projection" -msgstr "" - -# 788a57dd47fd45e6bcd4c50f617a2639 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:556 -msgid "**Lecture and Discussion 15'**" -msgstr "" - -# 36a62655d1e540d7992eddde9ff003c7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:558 -msgid "" -"Explain projection systems and the difference between the use of UTM and WGS " -"84 in Indonesia. If the participants are not familiar with projection " -"systems, you should slowly explain and give examples of its use in the real " -"world." -msgstr "" - -# 0998c69a2edd45e399ab81a67ab6b636 -# 126341674a5045f5a84593434edc0e7e -# d37ad8dacd8547629ed3ab899993eb0d -# 420d9d94084b410a93c2ceabfc2390b2 -# 64423e8e755d4cf49c4ee58f7fc57bd8 -# 3f41002faf2840d1b66eface22f638e7 -# 8fe05931e2bc4a808169ea3d44981c6b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:558 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:739 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:808 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:906 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1012 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1119 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1250 -msgid "Discussion" -msgstr "" - -# 79b89e8930f44a3d92d3a7a3797e79f9 -# 3561b7657afe4f38a0ea9eb2b77ef04d -# 4d1b15b77adc41acb9e3950a585054ae -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:558 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:570 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:581 -msgid "Module 5" -msgstr "" - -# 7f3a96afb43d4f2d9e8635a9a8feee5b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:565 -msgid "**Demo and Practice 35'**" -msgstr "" - -# e670c75653db4e2fbe05aa1685b07a06 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:567 -msgid "" -"Explain how to change the CRS of a map and activate the \"On the fly\" " -"reprojection" -msgstr "" - -# b625a1e3df224692921a905c460c1619 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:569 -msgid "Explain how to save vector data into another projection system." -msgstr "" - -# fc5907e0c884439f88f3181db9af4399 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:571 -msgid "" -"Challenge the participants to make a projection system in QGIS, and ask them " -"to explain why they chose that projection system." -msgstr "" - -# c38da51fd9bc4b978bfa40bdb0213c14 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:576 -msgid "**Demonstration and Practice 35'**" -msgstr "" - -# 48185b7781bd4d038a155cc38ea3bd2d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:578 -msgid "" -"Explain how to make a custom projection system. Participants should follow " -"along." -msgstr "" - -# 2a5aa19b43ad44c5be9af16578690c4f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:586 -msgid "Session 6" -msgstr "" - -# 1f3b24c8127d46b7bfe6187c2ef74c15 -# c7ccb03b4c7e4e178b619b9c7568d7dd -# d7b0a8531f8a47f88325c32d272da11a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:589 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:692 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:752 -msgid "Time : 135 minutes" -msgstr "" - -# 6427919e4deb4a638d7d73b115f3437f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:597 -msgid "Understand vector data" -msgstr "" - -# ddef873dee3c4be298db7868213f9c32 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:598 -msgid "Identify attributes of vector data" -msgstr "" - -# db3dfdd09eec4b8d87fd6bb1fedff9c0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:599 -msgid "Add vector layers" -msgstr "" - -# 696b1616f3c04ce3bc6755403f338e9c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:600 -msgid "Symbolise vector layers" -msgstr "" - -# 9420599cb460414c9fdf451bf1cb0b99 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:604 -msgid "Understand how vector data works" -msgstr "" - -# 9497712d67f84bddbab88597d8faa6d0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:605 -msgid "Add and symbolise vector layers" -msgstr "" - -# 95168b66cb1a490b852a67d02c27e34e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:609 -msgid "**Working with Vector Data**" -msgstr "" - -# ecac7742b5ed4af5854fe3dc759d8982 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:611 -msgid "Vector data" -msgstr "" - -# 478e23b560034a5882315268201cdebf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:612 -msgid "Data attribute" -msgstr "" - -# 8c68d9cc066f4b2ead067928d555876f -# 3a16f765686746188032f8b440b4d81d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:613 -msgid "Add vector data" -msgstr "" - -# ac315a776c4d4cbd854760a96f59448c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:614 -msgid "Symbology" -msgstr "" - -# d8fad6ce31e844888badf5266c69c0d5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:621 -msgid "Projector Computer" -msgstr "" - -# 7cbc6312150b4385a90408c300cced0e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:624 -msgid "Participant" -msgstr "" - -# aa419fd15af24bd3ab0fbe8bf691893a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:626 -msgid "**Vector Data 75'**" -msgstr "" - -# c4d53c071c2146e8addd33fcf67e0301 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:628 -msgid "" -"Explain what is vector data and examples of file formats. After explaining " -"the theory of vector data, open sample file containing vector data in QGIS " -"and show data points, lines and polygons." -msgstr "" - -# 6789646294784b5592493e807a9bfbb9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:634 -msgid "" -"Demonstrate how to open vector data in QGIS. Guide the participants to open " -"a sample file that contains vector data on each computer." -msgstr "" - -# 9152edd9a3094b40acddb17d6487147a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:638 -msgid "" -"Demonstrate how we can identify the attributes in the vector data and then " -"let participants explore the contents of data attribute vector points, lines " -"and polygon for approximately 5-10 minutes." -msgstr "" - -# 7c65b3d325894b808975f428a0e55f99 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:642 -msgid "" -"Explain how vector data works in QGIS. Show how to change the symbols into " -"symbols or shapes we want." -msgstr "" - -# 9fe3f1194b904500800f0b27a5503fed -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:645 -msgid "" -"Show that the appearance of symbols may differ at different magnification " -"levels. Explain that it is important because we do not want to see messy map " -"symbols when too many objects appear, especially if we have a map with a " -"small scale." -msgstr "" - -# f688b8b61fdd4bd8a6dce0c8e29a08a4 -# 5f14b369ff614496a77cc2d5437e59a5 -# ed21561b33724edf975625df442663d0 -# 3bae3bf883c24361861761ba32e8b6b7 -# 43cc286d60004bd99cbff180e173047b -# 746d177dcfb2434e9555c84a408e201f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:628 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:730 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:739 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:789 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:871 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:894 -msgid "Participant's Computer" -msgstr "" - -# e5c5afe3ea4845fe8d544024602f3a00 -# cee69ad336f64106848ad60142642a18 -# 1a2b9fa994234d4a9e4b34cf56cce645 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:631 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:733 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:792 -msgid "File containing vector data" -msgstr "" - -# 112a29eeece540fc915fa9fe7395dda9 -# 9ae04f37a9144b3baec30dc25b751756 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:635 -msgid "Module 6" -msgstr "" - -# c468a33c35934a12b234e369e2373814 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:652 -msgid "**Test 40'**" -msgstr "" - -# a366ef7d2f104c8e89ea5f8f7553007c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:654 -msgid "" -"Allow about 30 minutes for the participants so that they can practice " -"independently in setting symbology of vector data. Ask participants to " -"evaluate their partners' work." -msgstr "" - -# 3a6c1a065c57487e821c00d738369f5a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:668 -msgid "" -"**When adding vector data, why doesn't my vector data show up in the Open " -"dialog?**" -msgstr "" - -# df2a9d5436464f318daed6f2f7871644 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:670 -msgid "" -"Sometimes participants find it difficult to distinguish between the buttons " -"to open vector data and raster data (because they are next to one another). " -"Make sure participants click the correct button." -msgstr "" - -# e192d41389a34e4bafe8ce79d24f277f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:674 -msgid "" -"**When adding vector data, why is there some data that does not appear on** " -"**the QGIS display?**" -msgstr "" - -# 2c51728395b0439eba099d5d6643981e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:677 -msgid "" -"Check the order of the data layers in the Layers panel. Polygons should be " -"at the bottom, followed by the lines, then the points at the top. Often one " -"layer may overlap another layer." -msgstr "" - -# 778fb495054b4960a8d3f6c6943bc437 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:681 -msgid "" -"**Sometimes when using the Identify tool, the attribute window does not " -"appear when we click on an object. Why?**" -msgstr "" - -# 073d963560b14ee4b9e073b80ba7a351 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:684 -msgid "" -"Check that the vector data layer is selected in the Layers panel before " -"clicking on objects to identify." -msgstr "" - -# 8d0dd07a84d043de91886ddeac9a65bf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:689 -msgid "Session 7" -msgstr "" - -# 516525b7452943ad94ae7ddaf3f8a132 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:700 -msgid "" -"Explore attribute data of an object attributes and understand the uses of " -"different types of data" -msgstr "" - -# b417c8a75ff743f2b5cc26e7765df572 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:702 -msgid "Add labels to vector layers" -msgstr "" - -# 5fef0bca1e9a4400bd894e20f99f8d12 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:703 -msgid "Symbolise vector data using categories" -msgstr "" - -# feffc95f2c3c49099933d8197961c5c9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:707 -msgid "Add labels to vector features" -msgstr "" - -# b2aaf49b92ea49f6b9bc0efb55489018 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:708 -msgid "Symbolise data using categories" -msgstr "" - -# b01c13b91e5a4751b2220d8fe8930868 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:712 -msgid "**Labels and Classification**" -msgstr "" - -# 760d456a529f4ff7b2c8d003dc23e456 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:714 -msgid "Data attributes" -msgstr "" - -# e20937c283de4ab6adcca1c96af0faf6 -# e0d7fcab7a9e4b3f9c9c65e1fbc43a6b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:715 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:774 -msgid "Tool label" -msgstr "" - -# c99c874f8e3248b6b2ccf426285b9855 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:716 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:775 -msgid "Classification" -msgstr "" - -# 0d47cb9754754352b37eff266451b006 -# 189fed7ce7e24d1d96899f9480b188c3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:728 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:787 -msgid "**Demo and Practice 100'**" -msgstr "" - -# 691f282c793d448485fa526a7068178f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:730 -msgid "" -"Demonstrate how to add labels to vector layers. Participants should follow " -"along." -msgstr "" - -# b414bcc3c1c0453fb1ab62dec252628b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:732 -msgid "Demonstrate how to symbolise features by categorising them." -msgstr "" - -# 2ff3258b5c2a4d76996db1209859754c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:737 -msgid "Module 7" -msgstr "" - -# ea8d85bb2f4c4fbf8dde174f2c2d03bf -# 0fe98106ca8b47159c680a2ac0929582 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:739 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:808 -msgid "**Closing 30'**" -msgstr "" - -# 119e14ce1b314c1f887f3412d4142219 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:741 -msgid "" -"Give a conclusion of this session. Ask participants to ask questions about " -"the material provided, so that the discussion can go well." -msgstr "" - -# a23b894ec7fd4ffbb7981c276047c136 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:742 -msgid "Projector Microphone Module 7" -msgstr "" - -# 4f05077825cb4b1a86b5f368f184ee13 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:749 -msgid "Session 8" -msgstr "" - -# 10680a362c4040d9b275f5845d483fee -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:760 -msgid "Create raster data" -msgstr "" - -# cfbd36e064584bec9c450d83ebf41d32 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:761 -msgid "Change raster symbology" -msgstr "" - -# 963bb68ae5e24ec4aedb7594ca2cad4e -# 7441f8bd7f02490c8bf3ca26de6fb238 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:762 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:767 -msgid "Perform terrain analysis" -msgstr "" - -# 9a17d29b36164218a898e5cca25101cf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:766 -msgid "Understand how to change raster symbology" -msgstr "" - -# a4bf685201654dc485162c3a14180f29 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:771 -msgid "**Working with Raster Data**" -msgstr "" - -# 05e6f74c38064435bc6b8fe2a128c4d5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:773 -msgid "How to load raster data" -msgstr "" - -# 32a16285e90043a49c86ec5efb548c20 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:789 -msgid "" -"Use the raster example file that is given to participants. Reiterate what is " -"the difference between raster data and vector data." -msgstr "" - -# 3ef9fd38f0ae440c88cc88cbf261fa7c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:792 -msgid "" -"Show how to open and identify raster data in QGIS. Remember when showing " -"raster and vector data at the same time the vector layers should be above " -"the raster data to be visible." -msgstr "" - -# d31af584b55e4c72b06aa379a8c970da -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:796 -msgid "" -"Change the raster symbology to make it more easily understood. Make the " -"symbology as in the module text. If you want to change the symbology of " -"raster data it will be better if the raster data has been given symbology " -"before." -msgstr "" - -# 2d4c8a0c8c084d17872e48604cd70246 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:802 -msgid "Do terrain analysis and create a hillshade." -msgstr "" - -# 87d7ff5c8f0f4766908cb936627f085c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:803 -msgid "" -"Explain each step, especially if the participants have never worked with " -"raster data. Ask the participants to pay attention and practice by themself." -msgstr "" - -# 65c030c3693b4591bf29a5a22bc57adf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:796 -msgid "Module 8" -msgstr "" - -# d3be8b70de6f4dfb95872a607fba0032 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:810 -msgid "" -"Give a conclusion of the session working with raster data. Discuss the " -"outcomes with participants." -msgstr "" - -# 9019d043ef6241b199ff4482cd84919b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:817 -msgid "**How do we get raster data?**" -msgstr "" - -# f39dcfde00dc4ca48a1c2d38868570bd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:819 -msgid "" -"Raster data can be obtained from a variety of sources. SRTM can be " -"downloaded at http://dwtkns.com/srtm/. Raster data associated with " -"earthquakes can be obtained from http://earthquake.usgs.gov/earthquakes/" -"shakemap/list.php." -msgstr "" - -# 079cdcf8265643c8a32a762a1cf26862 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:827 -msgid "Session 9" -msgstr "" - -# 79cb1ecc49b746b1807ec3ad9875246d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:838 -msgid "Add a raster layer for digitising" -msgstr "" - -# ec156f2caf8448f5b425a17c1a47f7fc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:839 -msgid "Create new vector features (polygon, lines and points)" -msgstr "" - -# 5e9e32b9fe4945f3842746a24ff8db08 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:840 -msgid "" -"Digitise new vector layers by tracing a raster layer, considering topology" -msgstr "" - -# eaf3ffefa3ff4a65aa2062728cb02618 -# da565175ca764770b7d722165d96ce59 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:842 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:848 -msgid "Georeference an image" -msgstr "" - -# f09ac6619f2740248f5978dc5e559f26 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:846 -msgid "Add raster layers" -msgstr "" - -# f1b78f331aee4341ae0642fac2aedcb9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:847 -msgid "Trace raster layers" -msgstr "" - -# dc2e78a6972b47c6b4b74a45eecb83d4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:852 -msgid "**Creating Vector Layers**" -msgstr "" - -# 847a1a31484c4619ac0877ed4a96b516 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:854 -msgid "Adding raster layer" -msgstr "" - -# 203fa6f63700424ebfa394c8860f6415 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:855 -msgid "Creating new vector feature" -msgstr "" - -# a4a85554a7bc47ac9aa9c38a7a7e2594 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:856 -msgid "Digitising new vector layer" -msgstr "" - -# 248fe8afa58a42b5bcd3ff000dce8e53 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:857 -msgid "Georeference" -msgstr "" - -# 6ec0f87f41e3481bb1ec04f8824e97b3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:869 -msgid "**Creating New Vector Data Practice 80'**" -msgstr "" - -# 2a679cc434024dd7b33aa72b392fc8dc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:871 -msgid "" -"Explain that QGIS can also be used to digitise data. However, explain that " -"the weakness of digitising through QGIS is that data is more difficult to " -"share, unlike OSM." -msgstr "" - -# ed77fff6a0c4474cb7b35ae43a84b1ba -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:875 -msgid "" -"Explain also that things that can not be digitised in OSM can be digitised " -"in QGIS, such as flood- prone areas or KRB areas. Vector data like this will " -"be used for analysis in InaSAFE." -msgstr "" - -# a7db0b2ed7534c20b777dd3556654829 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:879 -msgid "" -"Show how to digitise and the differences between digitising in QGIS and " -"JOSM. Use the raster GeoTIFF file that has previously been given to the " -"participants to do the digitisation process with QGIS." -msgstr "" - -# c796de1da7f44fe1a5d42eb5809c4110 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:883 -msgid "" -"After that, participants may be asked whether they can digitise a map with " -"image formats such as JPEG or PNG, for example in disaster prone areas map " -"from BNPB. If no one asks, explain that if participants want to digitise " -"from JPEG or PNG maps, the map coordinates should be determined first " -"through the georeferencing process." -msgstr "" - -# 6a917b8a28174083b870a08f4d40b7aa -# c4f99bb5481241d0bc1c4a0b3bee50bf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:874 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:901 -msgid "Module 9" -msgstr "" - -# 8802f3020c1f4f1e90299ad5302986cc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:892 -msgid "**Georeference Practice 80'**" -msgstr "" - -# 8dab6401770e446d9570baa60327b6cf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:894 -msgid "" -"Give an example of a JPEG formatted map to participants and guide them to do " -"georeferencing." -msgstr "" - -# b5dd630fcc574c46a946acc50638a61c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:897 -msgid "" -"It is important to note that before digitising over another map, make sure " -"the participants know the data source and the map licence! Do not let the " -"participants digitise from commercial maps without permission in the future!" -msgstr "" - -# af9141c575ab46a3a9ac1f4cca3b727b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:897 -msgid "JPEG formatted maps" -msgstr "" - -# 741f6b4f4b384dbca344d9c28f67c553 -# d9ac2966c43142c585a678baf35fc8eb -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:904 -msgid "**Closing 15'**" -msgstr "" - -# b043eaba0eea44eca0534ba02df67c2d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:906 -msgid "" -"Guide the participants to reflect on what they have learned in this session " -"and hold a Q & A session / discussions before the giving the final " -"conclusion for this session." -msgstr "" - -# 732175eebd3f47a6b05d1c3f28753941 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:914 -msgid "Session 10" -msgstr "" - -# a2a92c773009412ba3c38e44660a96c5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:917 -msgid "Time : 210 minutes" -msgstr "" - -# 8ed865d977c049f29163607d9c989289 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:925 -msgid "Understand the GIS process" -msgstr "" - -# fc5f24e75aa74a9a8d92bd98177e54f1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:926 -msgid "Identify addressable problems" -msgstr "" - -# b3c18d6f20ce434caab1b8cbd99a9e6d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:927 -msgid "Understand data needs" -msgstr "" - -# 750c5e2efa2a4b75bfe9dd8e89867c92 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:928 -msgid "Start a QGIS project" -msgstr "" - -# 0ae84919a447427fa059d0a425fdbc2f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:929 -msgid "Analyse problems" -msgstr "" - -# 9d3c1846ee5745cd8f1630179b81b215 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:930 -msgid "Identify hazard zones" -msgstr "" - -# 94145b43d25244dd8f3133650c6e135b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:931 -msgid "Look for important roads" -msgstr "" - -# cca2d243271f460183c312a3de2d5537 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:932 -msgid "Look for medical facilities" -msgstr "" - -# 127b31e9d2a54f13bd2f1b0107b57c22 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:933 -msgid "Buffer roads" -msgstr "" - -# 27c44382fd254ebe8ded3b284a0af442 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:934 -msgid "Buffer medical facilities" -msgstr "" - -# f74ee916f829499cb7587a1a1377af8f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:935 -msgid "Analyse overlapped areas" -msgstr "" - -# e49f46c2cd9d4590a199686fffa34df2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:936 -msgid "Choose features by landuse type" -msgstr "" - -# f975c591dcdf467aad08ac76c29445c0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:940 -msgid "Conduct GIS analysis of a spatial problem" -msgstr "" - -# 79b9997221e64e5fbd42391b6c3ea51a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:944 -msgid "**Vector Analysis for Problem Solving**" -msgstr "" - -# 7d262a49df1646a59285b5726fb9b0f1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:946 -msgid "GIS Processes" -msgstr "" - -# c64ebe76e83f4e37ad649222a0389769 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:947 -msgid "Problems" -msgstr "" - -# bbc3b7011380489db822b4b9265dfa6f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:948 -msgid "Data" -msgstr "" - -# 739386d69ef64839af28db7c43a6b1db -# f32512b3fc804635a7e64781e4664dd9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:949 -msgid "Starting a project" -msgstr "" - -# d009bfffadea4ca1b82c0941f2445b3d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:950 -msgid "Analysing problems: farms and moors" -msgstr "" - -# 151bcba5757a4f17b93387dcbdb0618d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:951 -msgid "Hazard zone" -msgstr "" - -# cf319a6e88554be99624970704430b06 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:952 -msgid "Searching for important roads" -msgstr "" - -# 255c0c61b78949838c711a0226479a51 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:953 -msgid "Searching for health facilities" -msgstr "" - -# c0d9b62925a54ef2ac0be5e939924921 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:954 -msgid "Road Buffer" -msgstr "" - -# fdcf6ecc17234196b6c57f24b92d8fb5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:955 -msgid "Health Facilities Buffer" -msgstr "" - -# 91230b4a250e469da8f3668eec1c732f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:956 -msgid "Overlapped area" -msgstr "" - -# 9a117768fe4c49479197d16a6e38ae43 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:957 -msgid "Choosing farms and moors" -msgstr "" - -# ed168a3dafff4d60a24da7a21a9d12eb -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:958 -msgid "Choosing land area with right size" -msgstr "" - -# 132936174a294b819111619b9cbd7da8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:970 -msgid "**Review 10'**" -msgstr "" - -# 9d78ce6241d64a84944d9cf57d479c07 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:972 -msgid "" -"In this session you will do a review regarding the materials from the " -"previous day. You can ask a few questions to the participants about some " -"subjects or you can also ask the participants about which subjects that were " -"not clear yet for them." -msgstr "" - -# ee6d39e8ebe04852b113685bae83830f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:970 -msgid "*Previous* *materials*" -msgstr "" - -# d4c15fad1052476e94b7bb2fddd8d37f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:978 -msgid "**Demonstration and Practice 150'**" -msgstr "" - -# de8813bd415f49a5b59d1f1b02fefff8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:980 -msgid "" -"This session should start with reviewing some types of GIS analysis that are " -"provided in QGIS. Ask the participants to finish one analysis, for example " -"buffer analysis, or any other analysis." -msgstr "" - -# f1aace6055e64ef7aa6db682319ca444 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:984 -msgid "" -"The session continues with a simulation of a natural hazard happening in an " -"area where they need IDP camps, areas affected, and the requirements to find " -"a safe place." -msgstr "" - -# e51c68a36e74407d8e096f7ec49c61c5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:988 -msgid "" -"Explain that to solve the problems, they can use vector analysis in QGIS. " -"The first thing to do is to practise how to determine the evacuation site, " -"main roads, and hospital location. To determine them you can use the query " -"builder feature in module 10. After that you can determine the distance from " -"schools to roads and the range of hospitals with road buffer to determine " -"the right location for IDP camp." -msgstr "" - -# b0081262b7c1485795131adba6a28f62 -# e82d1ecae4aa4bc7b6cd6ba5937ace54 -# 6b761c1eb67346a08b384c9ab17a5e20 -# 8bbd790745074820b01f1158f4bd0100 -# 9f3df3c4a94144d5aafb93e598e92218 -# 1cb19a7d419b49c19e20634c7f1ac48c -# 36cf110d7d4040c693ec577f29480e3d -# 307cc5d1d1f441fa96b78dbe53048662 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:978 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1080 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1195 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1209 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1219 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1226 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1233 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1293 -msgid "Demonstration" -msgstr "" - -# bcf1f45a23ee49568b2c76cb9cf577d0 -# 662642abee08460a88087c7c653e53c5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:983 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1004 -msgid "Module 10" -msgstr "" - -# 1b662161c0ce40cca280f1d249105b17 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:999 -msgid "**Vector Analysis Practice 25'**" -msgstr "" - -# 44b9135a5ca046e18a29863fc034d19e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1001 -msgid "" -"This session is almost the same as the previous session. In this session " -"you'll explain more about vector analysis." -msgstr "" - -# 11d1c71735c2488abba8640b8cd35c28 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1005 -msgid "" -"Ask the participants to practice along with you. If any participants have " -"already determined the evacuation sites, you can ask them to do another " -"analysis such as practising how to determine which location is suitable for " -"farming, etc." -msgstr "" - -# 0c59bac3f843446191ae7a5cf339b050 -# aafe80c334fe480e9560ff6c461df5da -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1012 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1119 -msgid "**Closing 20'**" -msgstr "" - -# 7ec72dc536634fddbfc76ce5a0fd4b3e -# 64b0cb9295e74014bec35d04520316da -# f7e53e9af03c4dd288f7c3c5f3b3a936 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1014 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1121 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1252 -msgid "Q & A and discussion" -msgstr "" - -# 38cb44cbe9ee46c5aec0fbf9f9a83a9c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1020 -msgid "" -"**Why does my buffer result look bigger than the one shown in the example?**" -msgstr "" - -# 5c6cd4327cfb4c74a59271b0e9e998cf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1022 -msgid "" -"This happens because of the projection. It just looks different because of " -"the projection, but it is the same size in reality." -msgstr "" - -# 700eefbc90b4426d82f82548f0a91dbb -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1026 -msgid "**Why doesn't the query builder result show up?**" -msgstr "" - -# 76f7ab0a076644ca9b67a55b0d3f4d68 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1028 -msgid "" -"This is usually because of incorrect input into the query builder. Watch " -"carefully what you input into the query builder." -msgstr "" - -# 1f379316adc749959f3d4efcf669dab0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1033 -msgid "Session 11" -msgstr "" - -# 7c793d8e4b8147d2b9756eba99962d50 -# 66831e8037bd463ca498c95653c0aef0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1036 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1140 -msgid "Time : 4 hours 30 minutes" -msgstr "" - -# 944acd833752446091910131e025ec18 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1044 -msgid "Arrange map layout" -msgstr "" - -# aae0260c4a7e4d8aae50e135b6e0a078 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1045 -msgid "Add a new map" -msgstr "" - -# 03506ac1749f45fdbe1583e76ae19bfe -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1046 -msgid "Add title to a map" -msgstr "" - -# cfad1ac85b9a4297b234fcac57ba4021 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1047 -msgid "Add graphic and numeric scales" -msgstr "" - -# b43e270c9ceb44959150e6d4fb78619b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1048 -msgid "Add grid to a map" -msgstr "" - -# 77cc42c3f99442cb85289d41560e72b2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1049 -msgid "Add an inset" -msgstr "" - -# 9b9a6c2f8c9046fc8f5d49a918b56c11 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1050 -msgid "Customise the content of the legend" -msgstr "" - -# 40ea63f371754e7fb276e413c0e588e9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1051 -msgid "Export a map to different formats (pdf, jpeg, svg)" -msgstr "" - -# 6a6d68c09584472ea20156b35808b03c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1055 -msgid "Maps that are well laid out and ready to print." -msgstr "" - -# b89394d0a9644d2bb2f9591dc9ef8c1f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1059 -msgid "**Using Map Composer**" -msgstr "" - -# 8bb668789a02437fa3ca174e2927c34d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1061 -msgid "Map Composer" -msgstr "" - -# efc92b3e080c4a01b2e2f28a32684090 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1062 -msgid "Adding new maps" -msgstr "" - -# 353acf50f9834bfca7ce19b8ee252a3e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1063 -msgid "Adding a title to the map" -msgstr "" - -# 7a68d2fb62e74dc895a0b3972026022c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1064 -msgid "Adding scale" -msgstr "" - -# 7730ae304792497387eae5d6e50c5461 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1065 -msgid "Adding grids" -msgstr "" - -# 0aadf0879f0747fcb6e4696850918627 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1066 -msgid "Adding inset" -msgstr "" - -# 637768082b2644c2a859eb44f04ba222 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1067 -msgid "Adding legend" -msgstr "" - -# 1baca3e90f2049c7930769e12f437bbc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1068 -msgid "Printing the map" -msgstr "" - -# 1988e0fd92b844988ba2ad96f7fe195e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1080 -msgid "**Making a Map Layout 250'**" -msgstr "" - -# 64ec19dfcad24f66a178fca24d3eb338 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1082 -msgid "" -"In this session you will be explain how to make maps that are ready to be " -"printed using QGIS. First, you need to explain that it is important to " -"change the projection system into mercator projection system (Universal " -"Transverse Mercator/UTM) and ask participants to change all of the data " -"projections into the same projection system." -msgstr "" - -# 16385c2af27c419ca0cacdc5d1a2b946 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1089 -msgid "" -"Ask what are the basic elements that should be put into a map and show some " -"examples of good maps and bad maps. You should emphasise the basic elements " -"of maps to the participants." -msgstr "" - -# 82c7e671e06c48bb9d8c6d9cd595e55c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1093 -msgid "" -"Explain the interface of the Map Composer in QGIS. Explain the functions of " -"the toolbars and then practice inputting the data into the composer page, " -"and adjust the scale so all of the data that needs to be shown can be seen. " -"Then add a map title." -msgstr "" - -# 48d3250362a845ce846e745d5f19c6b8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1099 -msgid "" -"Add the compass rose and scale bar into the map. Explain that there are two " -"types of scale, numerical and graphical. The numeric scale uses numbers to " -"symbolise real distances. The graphical scale uses a scale bar to compare " -"distance." -msgstr "" - -# bbb9ffef42f94b5bbf3f243d6a0f1cf4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1105 -msgid "" -"The next elements that need to be added to the map are a legend, inset and " -"grid. Explain why those elements are important. The legend needs to be shown " -"because it help the map user understand the symbols contained in the map. " -"Inset needs to be shown to show the location of the map from the smaller " -"scale (for example 1:500.000 or 1:5000.000). A grid makes it easier for us " -"to determine the location through coordinates." -msgstr "" - -# 36cef9de26444632a5a72a2cbebb14e2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1114 -msgid "" -"After finishing the map, tell participants to save the print composer and " -"about the formats that they can use in the print composer, such as .pdf, ." -"jpeg and .svg, using the export feature." -msgstr "" - -# c411af8c74f140c9b4deddfdeab987b6 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1085 -msgid "Module 11" -msgstr "" - -# 95fdfcbcd4c946bd93e8f4da3b52ff9a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1127 -msgid "" -"**I put the correct numbers in the x and y intervals in the grid dialog,** " -"**but why does the grid not show up?**" -msgstr "" - -# 1d1282f1a1ec4040a0f05d8336107b8e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1130 -msgid "" -"This can occur because the map may still be using geographic projection (WGS " -"84), which is in decimal degrees. To make the x and y intervals, it is " -"better to use the mercator projection system so that they intervals are in " -"metres." -msgstr "" - -# 31fc6b708eea4e59b8a3382c1370f031 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1137 -msgid "Session 12" -msgstr "" - -# 17739fb5098b469ab0318772cb1fab37 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1148 -msgid "Understand the concept of hazard, exposure and impact data" -msgstr "" - -# 92802bef7dda4ee7b2cd97f0f61d6564 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1149 -msgid "Understand how to determine impact" -msgstr "" - -# da79b1160db34a648a06e367fb90ae28 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1150 -msgid "Understand the |project_name| interface" -msgstr "" - -# 7deb9c72137340f99ad0475f0b71356a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1151 -msgid "Add hazard data" -msgstr "" - -# d4c96f4e500149b5907e0a55ecce6e6c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1152 -msgid "Add unprocessed exposure data (vector and raster)" -msgstr "" - -# 7df4e42211804fa398fe4af4f075e721 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1153 -msgid "Use the keywords editor" -msgstr "" - -# cbce5b42f1834cd889c69d029fb756bd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1154 -msgid "Analyse impact" -msgstr "" - -# 410cad7e9ec84949a6dd37112ec2b551 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1155 -msgid "Improve |project_name| output map" -msgstr "" - -# 18329e0abaf84d99b4fc0879d5ff377f -# 007f21baca384d598353f0869adb1a0b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1156 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1162 -msgid "Save and print scenario results" -msgstr "" - -# 69d933906def441eb4570ee462ae64e8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1160 -msgid "Understand |project_name| and what it does" -msgstr "" - -# 42e024f3a92c476a8441ee51a2d8095e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1161 -msgid "Assemble an |project_name| scenario" -msgstr "" - -# aaf171782ad44a75bec1e0106c919e03 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1166 -msgid "**Understanding InaSAFE**" -msgstr "" - -# cd3328b4b7364c8e8f7cdd55382f9041 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1168 -msgid "Hazard, Exposure, Impact" -msgstr "" - -# 0f9e8ad2617f4334b9d3d687e3383a31 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1169 -msgid "|project_name| interface" -msgstr "" - -# 78a174a91a534f22a3729a3e9b2ce85a -# 703d1dd748ee42aa8f9e8d5306a6333c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1170 -msgid "Adding hazard data" -msgstr "" - -# 893a5fc0e0df416a91e5900c20743b31 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1171 -msgid "Adding exposure data" -msgstr "" - -# 84966e3efc094d9785b681dd15e72518 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1172 -msgid "Adding keyword in metadata" -msgstr "" - -# 15926096ff2e48a08f03ad9b8f72ffca -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1173 -msgid "Impact analysis" -msgstr "" - -# 79405d181fad445e99c0f51888603574 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1174 -msgid "Improving |project_name| maps output" -msgstr "" - -# 6186b180c6704d2cb129b425bc33955d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1175 -msgid "Using print button" -msgstr "" - -# bdc7a8cbdcfa490abda526fa69111fe7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1176 -msgid "Saving your work" -msgstr "" - -# 580981c09ab046e8bdd32aac80e606e7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1188 -msgid "**Lecture, Q & A 30'**" -msgstr "" - -# 0d5cebc2473c444abd2a1a3baa605c9a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1190 -msgid "" -"Ask the participants what is hazard, exposure and impact. Discuss and " -"explain each in more detail. Give examples for each definition and explain " -"how to get the relevant data." -msgstr "" - -# 46e24f63026a4227a06f49c0918f1bd6 -# 67c008e43b674178a6578485478ef6d9 -# 631541d7ccef495dab23b6b75fb0f4d1 -# 3365f5d39d40410c9af5edba71590cb3 -# a57f67817d3b4332a4260ca4512d9e95 -# 22f50cbd59f04d7ca6db5b2b8829db7e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1190 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1197 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1211 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1221 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1228 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1235 -msgid "Module 12" -msgstr "" - -# 75f16bb1620e47b8811a79bd8696cffc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1195 -msgid "**Demonstration 30'**" -msgstr "" - -# 7babc537fe0b4fb6b0e7403454da8a1d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1197 -msgid "Explain the |project_name| interface. Explain the following:" -msgstr "" - -# faa316d92130495dbb519954c351ae49 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1200 -msgid "Activating |project_name| plugin toolbar" -msgstr "" - -# 6f66801a7e164fae832b19984a549deb -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1201 -msgid "How to change |project_name| panel position in QGIS interface" -msgstr "" - -# 10d4d6149f99498f94f2136ae241c30a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1202 -msgid "" -"The question format in the |project_name| panel The panels should be " -"explained by the facilitators so that a question can be formed: *In the " -"event of* **[hazard]** *how many* **[exposure]** *might* **[impact]** ?" -msgstr "" - -# dcf1e95a3f154d5d9899d02c00774f41 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1207 -msgid "Explain the options in the |project_name| plugin toolbar." -msgstr "" - -# 5804917fb2ba4c3cb6b2c45a6da5f318 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1209 -msgid "**Demonstration and Practice 45'**" -msgstr "" - -# 64007714b8ac41b8ad25e00f519603e7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1211 -msgid "" -"Explain how to add hazard and exposure data so that it can later be analysed " -"in InaSAFE. Ask the participants to put hazard and exposure layer into QGIS. " -"After that, ask the participants to open the attribute table for each hazard " -"or exposure layer and check if the data has the right columns for |" -"project_name| analysis. If not, add the necessary columns." -msgstr "" - -# d37794e6ab6a40e98766519fe31395c9 -# 31e8382678e546e882cc780bfabfa337 -# c0c2bd368d474e118c8be15cf29af56b -# 333537508d90456e8ca3720e5a104255 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1213 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1223 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1230 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1237 -msgid "Participants' computers" -msgstr "" - -# ef14d064523246bf984f6daea58094e9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1219 -msgid "**Demonstration and Practice 60'**" -msgstr "" - -# ec44cfec4f79452186d0204a20e5ded8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1221 -msgid "" -"Explain how to use the keyword editor in |project_name| so that data can be " -"read and then ask the participants to follow along with what has been done. " -"Use the Advanced Editor to add the source of the data." -msgstr "" - -# ece9dd12d95946989eb74e7fbfd294ff -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1226 -msgid "**Demonstration, Lecture, and Practice 60'**" -msgstr "" - -# b339c58a62cf4af6adec1967cedef590 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1228 -msgid "" -"Ask participants to run an analysis using |project_name|. Describe the " -"analysis results to participants, especially about how many objects or " -"buildings are impacted." -msgstr "" - -# 4479166a34b6402697da664b8e8f954b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1233 -msgid "**Demonstration and Practice 30'**" -msgstr "" - -# 9b460da6ecf74dd28aa7c3bc37ffe557 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1235 -msgid "" -"Ask participants to improve their |project_name| analysis to be more " -"informative by:" -msgstr "" - -# 8976807d9e6f45619bbba7721460b62f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1238 -msgid "Activating OpenLayers plugin with Bing Sat as the background" -msgstr "" - -# eba8c74e70044ae3933d526af6805604 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1240 -msgid "Symbolising and labeling the data" -msgstr "" - -# b0bd0c00b9394857a337a4f1ee69920d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1242 -msgid "" -"Ask participants to print their |project_name| results and explain the " -"output from it. Output consists of two files, the map and the details of the " -"analysis." -msgstr "" - -# d1b3b6ea04344c068cb1634342dc3084 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1246 -msgid "" -"Lastly, demonstrate how to save results, having the participants follow " -"along." -msgstr "" - -# 4a919b6715274ac694cad2f6270a83d0 -# 35a80f2c4b97435da6f8b7df8a59db92 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1250 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1304 -msgid "**Closing 10'**" -msgstr "" - -# 185afa7418d84bb4b92fa5bc54a53f94 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1257 -msgid "Session 13" -msgstr "" - -# a2a92405b59b41d08c97cfe6ba034a4e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1260 -msgid "Time : 60 minutes" -msgstr "" - -# ce4387478ce643ffa48ce78ec9f0d4d3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1268 -msgid "Use social media to connect with |project_name| community" -msgstr "" - -# 33e3265247b2481985f26e6f247a8e2c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1269 -msgid "Access QGIS tutorial website" -msgstr "" - -# dba9660da28a43a0a1ec5fb3e8f2939c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1273 -msgid "Participants join the Forum Pengguna QGIS and |project_name|" -msgstr "" - -# 66ac7d891c6c40419d67d1b9453da748 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1274 -msgid "Find the QGIS tutorial website" -msgstr "" - -# 27f43af5f80c46b291a0559386547780 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1278 -msgid "**Getting Support**" -msgstr "" - -# c870b82876644b679b114efad3fd8b5a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1280 -msgid "Facebook" -msgstr "" - -# 7806a851ea9548cba89c8e2c4825d3c9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1281 -msgid "QGIS tutorials" -msgstr "" - -# fba9f397baa447359d4dc2efef1a0a75 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1293 -msgid "**Demonstration and Practice 40'**" -msgstr "" - -# 9c92435df89042f79961137f37cbac22 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1295 -msgid "" -"Show how participants can seek and get help remotely by using social media " -"in the internet. Invite all of the participants into a QGIS and InaSAFE " -"forum or group in Facebook. (Forum Pengguna QGIS dan InaSAFE)" -msgstr "" - -# c770d776513c4cd99b3f7b517ee1b4a2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1300 -msgid "" -"Show them some websites that can be useful for learning QGIS (http://manual." -"linfiniti.com) and |project_name| (http://inasafe.org)" -msgstr "" - -# 3bd3d48eac0843f9ad04ced3f8ca999d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1295 -msgid "Module 13" -msgstr "" - -# 3d807d9832934cc9bb445c46b74285d3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1306 -msgid "Give a conclusion of the whole training." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/curriculum/qgis-inasafe-intermediate-toolkit.po b/docs/i18n/en/LC_MESSAGES/training/curriculum/qgis-inasafe-intermediate-toolkit.po deleted file mode 100644 index 0b8877e4..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/curriculum/qgis-inasafe-intermediate-toolkit.po +++ /dev/null @@ -1,1386 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# c254e02426fc49beaefe07d23cbc489b -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:6 -msgid "Unit 4 Facilitator Guide" -msgstr "" - -# bea43f3eaf8941b3ad3b0c53f7570ef5 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:9 -msgid "Intermediate QGIS-InaSAFE Trainer's Toolkit - (A Guide to Facilitators)" -msgstr "" - -# b56ed44acc33494fa16ec14b15c06202 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:11 -msgid "**BADAN NASIONAL PENANGGULANGAN BENCANA**" -msgstr "" - -# 28615d066052458f8e054173ac3ff2fb -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:13 -msgid "**2013**" -msgstr "" - -# ff7a307107364f3da6118a915c8d0f71 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:16 -msgid "About Toolkit" -msgstr "" - -# 38580ab2d2fd4ba5ad86f50f3a769347 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:18 -msgid "" -"**The Intermediate QGIS-** |project_name| **Toolkit** is designed to prepare " -"trainers to deliver training for QGIS users who previously followed the " -"beginner training. The materials included will prepare trainers to conduct " -"trainings with a variety of audiences and to cover common problems and " -"pitfalls, and also provide trainers with the best methodologies." -msgstr "" - -# 621fc2b045274c9a8085ff541d561b59 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:25 -msgid "" -"When organising a QGIS-|project_name| training, numerous factors must be " -"considered, including the length of time you have to train, available " -"resources, number of trainees and their technical skills. This toolkit will " -"help trainers prepare trainings for different types of participants, but it " -"will primarily focus on educating those with little or no experience with " -"GPS, map-making and computers." -msgstr "" - -# 227ee2cdd1674c7989706e4afbfa7d11 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:32 -msgid "" -"The purpose of this toolkit is to prepare the trainer to successfully train " -"workshop participants in intermediate QGIS and |project_name|." -msgstr "" - -# c978464a50fa4a09b92bd58b0c3fb6d3 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:36 -msgid "Purpose of Workshop" -msgstr "" - -# 3d874e02a6c54a62bd1ad0732a25a72f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:37 -msgid "" -"This workshop is intended to achieve the following standard and basic " -"competencies:" -msgstr "" - -# ba88dd4f66a74203a91809a7e889970e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:41 -msgid "Standard Competency" -msgstr "" - -# dba8573df67a44dcaafd0da0dca87262 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:42 -msgid "" -"Spatial Data Analysis using QGIS and |project_name| for Contingency Planning" -msgstr "" - -# ae020d9eea6e4e32b21acbf0776f2134 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:45 -msgid "Basic Competencies" -msgstr "" - -# 2fd173fd082241549984a3813e11ec14 -# 6055d29b17524d01bbf39156b0970b9c -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:46 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:173 -msgid "Understand QGIS concepts" -msgstr "" - -# 655bc5d3451b4efb86fae6a768a4a83d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:47 -msgid "Prepare data and keywords for |project_name|" -msgstr "" - -# c7a20db738a8408ca39526fdc0290852 -# dbd9e4ebfa7a4b41930e930802aba591 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:48 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:294 -msgid "Determine temporary IDP camp or evacuation locations" -msgstr "" - -# 8cc92d9249454ed9924bb4428c2f2a12 -# 4b89b2ec71574201ba41d899d77d030d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:49 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:358 -msgid "Plan evacuation routes based on hazard information" -msgstr "" - -# efd9c631de1947488a9205c26f33c3d7 -# e45335dba11b4b959004a3480b90b688 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:50 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:431 -msgid "Calculate damage and losses" -msgstr "" - -# ba1fbe6bb79743f891f72c8038239bac -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:53 -msgid "Workshop Materials" -msgstr "" - -# d5a418e5e09b42baabadacba4d090796 -# 4c69d424fe7945e88d3df4f0b239fa97 -# e1c0c0b31dd04b31b5d7d9e9d41f2f57 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:54 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:105 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:168 -msgid "QGIS Review" -msgstr "" - -# 016ba9d2e7b34cc5886a7c1446c09f80 -# 977d281ed47045c59d6e51af1dc0f452 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:55 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:109 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:113 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:229 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:234 -msgid "Preparing data and keywords for |project_name|" -msgstr "" - -# 822a1938f2194efdb86a2ffdadfb5595 -# fedb63e8897f447a9e4003288934774e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:56 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:289 -msgid "Determining IDP Camp Location" -msgstr "" - -# 5aa424ea26b54e4fb73a3eaaca1904fc -# 7e58385879da4f83be7b4063590cacb5 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:57 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:353 -msgid "Planning an Evacuation Route" -msgstr "" - -# b15865eb7d4649be8ae0f7e4a9512f43 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:58 -msgid "Calculating Damage and Losses" -msgstr "" - -# 77761ee69b8a4fe49ef428bcf8556508 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:61 -msgid "Workshop Strategies" -msgstr "" - -# a4bdcd1a64f640f7aff8c82b7327f29f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:62 -msgid "" -"Methods emphasised in this workshop are participatory teaching and active " -"participation in all sections and activities, rather than lecture method." -msgstr "" - -# 7d06c6c3b6fb4648be79fb1e787bc315 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:65 -msgid "" -"**Participant oriented.** Participants are encouraged to find and gain " -"knowledge and skills by themselves." -msgstr "" - -# 3f837c85c72b44c18ce8e97938515af4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:68 -msgid "" -"**Trainers serve as facilitators.** Trainers facilitate to help ideas in the " -"workshop emerge from the participants, not only from trainers. However, " -"trainers must be ready to provide necessary information when the " -"participants need any assistance." -msgstr "" - -# 99d66383a9124239a765b394406087f9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:73 -msgid "" -"**Outcome oriented.** Workshop must produce the outcomes mentioned " -"previously." -msgstr "" - -# 9875c6bd75a34199b8260aab715b2e2d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:77 -msgid "Tools" -msgstr "" - -# 5ca94bf64ab64b6cb53cce5b561a645d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:78 -msgid "" -"Copy of :ref:`Data Analysis using QGIS and InaSAFE Intermediate Level " -"` for participants" -msgstr "" - -# 000d38afe6db4c7280e54c3bbeb17cde -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:80 -msgid "A workshop space with tables and seats" -msgstr "" - -# 27918ec0f4444a6abdba8359a35ac1ef -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:81 -msgid "" -"Computers (one computer may be used by two participants, but it is better if " -"one computer is used by one participant)" -msgstr "" - -# 78c1f6d9884d46c3a9198e220f6b3ca0 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:83 -msgid "" -"A Projector (to present slide and demonstrate technical instructions and " -"software)" -msgstr "" - -# ef04a06b266c4f638828843221fc98ff -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:85 -msgid "USB Flash drive(s) to transfer files and software" -msgstr "" - -# 3b39017c886047dbaf4cb15586eee29d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:86 -msgid "Good internet connection" -msgstr "" - -# a7aa3f80348241969fb781f1722a9b4b -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:87 -msgid "Snacks and coffee for breaks" -msgstr "" - -# b4cf2305c9874de5a90072360c2dcc2e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:90 -msgid "Schedule" -msgstr "" - -# 45d434c95d144dc98d2442abaa28dc8e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:92 -msgid "" -"Below is an outline of a schedule for a three day workshop that has been " -"tested with several groups in Indonesia. You may choose to adapt and change " -"this workshop schedule to meet your needs." -msgstr "" - -# fe4ddb439e91488ea96bbaafa8dee6e3 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:97 -msgid "Day I:" -msgstr "" - -# 3b91607eca504588865a2f775294eff8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:99 -msgid "**Time**" -msgstr "" - -# 57f85cd3316f4847b281f0b5714570e0 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:99 -msgid "**Materials**" -msgstr "" - -# 1cedd960924543aab5cf2922ae71b209 -# cc3e8a4b41f843d99ccf6d31d56e24e6 -# 9476b9dfde3a49bda58b3f89243d54c0 -# f086e1edfcb9471baf4e29aa9b109edb -# 91d035e83e1c4bd48add6c5633456b66 -# 22e592ec3bfb497d993ffcd7d752f8a2 -# a23e561f24f4401d85de5b7817c21c0a -# 97baf3ab4a1a4ff6b2dd4b66f83f7979 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:99 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:121 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:143 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:196 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:263 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:324 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:383 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:471 -msgid "**Activities**" -msgstr "" - -# d580668df2e3473b843ee53a2fed7193 -# 3d596d5f759744cd876ad5ef8da4233e -# 80cb8069e06e41b58960b57c69175511 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:101 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:123 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:145 -msgid "09.00 - 10.00" -msgstr "" - -# dc161ff5e8414e889ba0cd33b1fd95e1 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:101 -msgid "Opening and building learning contract" -msgstr "" - -# 6b4abcb3464f4ab28299ef91f7ae3e42 -# 784403c02bb947b2a2502d04dd44b3f9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:101 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:159 -msgid "Plenary Session" -msgstr "" - -# 664b9bd1afb048c8a10f2fa54740a65a -# 8774eaca6ec24d6883e17773ff0432f0 -# 2f850bdaa42d40f2acaa9b69e9633cc6 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:103 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:125 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:147 -msgid "10.00 - 10.15" -msgstr "" - -# 626d0be1781f4f3abedef4b0c179df39 -# 2db3e0691efe4bd399d7b1587fc2ef24 -# 9a71fa8621f8487fa3cbb0c4fc7ba3d3 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:103 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:125 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:147 -msgid "Break 1" -msgstr "" - -# 04d6946e79fe415c9e242349b90d1b48 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:105 -msgid "10.15 - 12.30" -msgstr "" - -# e1baf2cf549a4d4d95038f68981de568 -# 745cd0440a4b4350a130cabf68925689 -# 9e75797f566d419d9fd32901c67c12d2 -# d4c1b7d5bd1042bdbc736296b44200cc -# a9b3d6677e3f4efd9dd822848723a9d4 -# 811274d0acfd4574b38242f40eef781c -# 22ff9d967cdb4936ae4eb883b7ba402a -# 56c858ad0dae4eaea07cd89e52c87a07 -# 11b79ed9876d40bdbb5c38fd1e985467 -# 90cc572bf8f94265b79a389078d90211 -# 298f6edcc7c141e5adbbc26f2b57c255 -# a7d3ce14830841f1a058d380cd8d28ac -# b46b09fde3db474791fa97f8c39c4d77 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:105 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:109 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:113 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:115 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:123 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:127 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:129 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:133 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:137 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:145 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:149 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:153 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:157 -msgid "FGD and Plenary Session" -msgstr "" - -# f11639cccea14e4abeb4511d7eebb150 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:107 -msgid "12.30 - 13.30" -msgstr "" - -# 0ae0245f647f413c9015c4049f0f717e -# 2f96af265fb1499985cf93854a266573 -# 3cfdc7e59235458b8a6046fbf7eccdce -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:107 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:131 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:151 -msgid "Lunch break" -msgstr "" - -# 4727502c454e4ce6a2a0659e277b7498 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:109 -msgid "13.30 - 15.00" -msgstr "" - -# 49ae6e8034f648ed82b83bd83ca2e1ca -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:111 -msgid "15.00 - 15.15" -msgstr "" - -# c62476f1584c498cbde24d2ba81ebfd5 -# 3e2a3c793202457c81c0e440fffac242 -# 5e2296dd439444898e4a8db09361360f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:111 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:135 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:155 -msgid "Break 2" -msgstr "" - -# d7ac7131e40b4f4ca994d3da8b754ad9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:113 -msgid "15.15 - 15.45" -msgstr "" - -# faca79a757f249a3a14b8fbe163246e8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:115 -msgid "15.45 - 17.00" -msgstr "" - -# b688a0597ca0410b83b25786341a05a4 -# b076c3f200d046608c7aa27374b84b6f -# c7201df45fdc480da0a0e71c27e8bf02 -# 4290c6a9e825445abfbf14b9c76614f6 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:115 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:123 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:127 -msgid "Planning temporary shelter" -msgstr "" - -# f6cb90828f6a480fbf03f53d28dc1d80 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:119 -msgid "Day II:" -msgstr "" - -# cc0a0bf092b148f0a3ab308a8d1135f8 -# 0685c83fb1c34db385005300ab78a4eb -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:121 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:143 -msgid "**Time** | **Materials**" -msgstr "" - -# bb8d2bb005314774b1e67e96e08f6368 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:127 -msgid "10.15 - 11.15" -msgstr "" - -# 39910eef8a844707b42ef95fa8e3156e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:129 -msgid "11.15 - 12.15" -msgstr "" - -# f273eb66c99c4fc195d1176d5dc6fd05 -# 8c898974cf3c498fb458da1039099eb5 -# 0c71b6ce1c6748758e35a75295bd1b3e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:129 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:133 -msgid "Planning evacuation route" -msgstr "" - -# 90a3418730804b12811b2eeede86fe10 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:131 -msgid "12.15 - 13.15" -msgstr "" - -# 2a21d34c0d6d4c9280cad128d00916a4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:133 -msgid "13.15 - 15.15" -msgstr "" - -# b06a09ce86614c49a5ca227f5a6c54fe -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:135 -msgid "15.15 - 15.30" -msgstr "" - -# 3bbab1f7c2604fb887e4366544f0a3b3 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:137 -msgid "15.30 - 17.00" -msgstr "" - -# b4e6f921bab5495f9002629ce621b55d -# 814a7e63eb9d4e86879a3a423f1132a5 -# 13ee0e47fd094d42b08f48cb435fcab9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:137 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:145 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:149 -msgid "Calculating damage and losses" -msgstr "" - -# cc8ad3d87aa546b1b65e33e0d1177e9f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:141 -msgid "Day III:" -msgstr "" - -# f2b12d3a4d7746708c490dca575ff7b8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:149 -msgid "10.15 - 12.00" -msgstr "" - -# b5797f491839428588c572cf2f3ae0b4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:151 -msgid "12.00 - 13.00" -msgstr "" - -# 48da44ecb0cc4174a86280e5b9374159 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:153 -msgid "13.00 - 15.00" -msgstr "" - -# 646e2393066e46ddbe93a1307848096d -# fe6f3e5f821540129393320190b8248c -# 4f9e4357e02d40d784dd112dee543271 -# d6427534b94e479aaa5fbc2852256936 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:153 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:157 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:338 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:402 -msgid "Practice" -msgstr "" - -# 6e3e8d287f01401e9b93499f9a06eab0 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:155 -msgid "15.00 - 16.15" -msgstr "" - -# d4b949b5d62e4d4c8293c1c54789b65e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:157 -msgid "15.15 - 16.15" -msgstr "" - -# 36274ca27771474c82984ff3d9f7a646 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:159 -msgid "16.15 - 17.15" -msgstr "" - -# f6c9d9dbcfc440d3a007c27a02cdb9dc -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:159 -msgid "Evaluation and closing" -msgstr "" - -# d20099b69d6e4ced860a8f3a3a5f8bd7 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:163 -msgid "Workshop Plan" -msgstr "" - -# bf1be838260f4efdb60cb26f44f2bb1a -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:166 -msgid "Session 1" -msgstr "" - -# 43601d61559745558c50bccad4abdbed -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:169 -msgid "Time : 135 minutes" -msgstr "" - -# 2a25c92d1c6c4cee8f8c95c81824c7a5 -# eba5d171edb548fe804f3491e659007a -# e0632763d56049f7b58926f6445ce5ef -# 98a358528a0c4c5c86a622110592fb1f -# e4398a40083b4bd6ae67f75a04f775ba -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:172 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:233 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:293 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:357 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:430 -msgid "Basic Competency" -msgstr "" - -# 2b8b640319d1408d94756ab6655917ef -# d425ef689e064398b65f334b5073c52e -# 7b0e204831b0454093cc9a870532a9f5 -# d4976532714a451e94411cd950a85b0d -# 3e7245ab13b94d9a8ec6a63be82ad802 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:176 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:237 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:297 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:361 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:434 -msgid "Indicators" -msgstr "" - -# 66702dabb383411a9da0bf6d83da0317 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:177 -msgid "Identify data types in QGIS" -msgstr "" - -# e1d880356f6a409f8aa15df0ab20304a -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:178 -msgid "Understand symbology" -msgstr "" - -# f1831905b79d4bf99cf9d3d83ba23856 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:179 -msgid "Understand map layout" -msgstr "" - -# ab11a5c2038c4960b483edc744f192ae -# bde62895e8234d3ebfaefaf6de515b5c -# 633496db224543d9ab4656ee17dfc21b -# d625d429deb2489f9fc4834c28c5d7b3 -# b36a153d1eb64ffbb9ca2f0fa3437d50 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:182 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:246 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:306 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:369 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:451 -msgid "Outcomes" -msgstr "" - -# d1dcd6a8c2a748c49db1412de1ed2a0b -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:183 -msgid "Understand QGIS" -msgstr "" - -# 2345b4e47db248daa3e1ffbc2c83c5b0 -# e350a9b4b12c488fa7cd8726110aee35 -# ffc143e9ce58447d98793fac75ed6960 -# 1de0be966d17460ca15c08eb2841c39d -# 77dfe0b46b2e421fb2df2df28fcab01c -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:186 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:250 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:310 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:373 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:455 -msgid "Core Material" -msgstr "" - -# c6e2417fdfed407ca49946178c158fa8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:187 -msgid "**QGIS Review**" -msgstr "" - -# fefd745aa4a14bc8a5c09ec66188ef20 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:189 -msgid "Data types in QGIS" -msgstr "" - -# c8411e069e984baf925c4ae7a16163a9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:190 -msgid "Symbolising data" -msgstr "" - -# 00ffbda8849f42f3aa6bbf18941bf975 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:191 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:209 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:218 -msgid "Map layout" -msgstr "" - -# 15a89cfac66f45a4b7df4b1287f3e1c9 -# 21a7c3b7db3643e8a8c5b53abee93386 -# cddde84c49e54b24b2877a9c9820fddd -# 44c48e7f6fbd4dc3bf1adf407375c556 -# f0981b1a9a2445049e902efcdc91365f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:194 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:261 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:322 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:381 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:468 -msgid "Activities" -msgstr "" - -# 8f34994a7cef4f35a79814df8fcf45e4 -# e33dd8e0b75e4082bc73db8dfe21b394 -# 8f1f9697728c42ed8f014fdce455b498 -# 55c724a784ec43d1a3b482fc9560103f -# 12396712d4174890ba5bb7bae684117c -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:196 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:263 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:324 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:383 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:471 -msgid "**Methods**" -msgstr "" - -# 7edb2eb018a9499f8209791b09766274 -# 041e3c683d9f451682b79410723001f9 -# 981855dde75e46d6a750e1780bac35bd -# 03057ca136ed45129c51bbdda4a68472 -# 3ba48cfb2d5c433bb33303ded30eccfa -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:196 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:263 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:324 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:383 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:471 -msgid "**Tools**" -msgstr "" - -# dd75882c2780479694c0ca2941d05fee -# 7d2809856e304f1da111b1ecfd318d35 -# d321bf9283964efcbd547d9778e9ebfe -# ac2de9db7dcb4f7eb556edb9125aa004 -# 05e6f01ea91743a8ae3afbe1529e6d84 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:198 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:265 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:326 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:385 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:473 -msgid "**Introduction 5'**" -msgstr "" - -# 7b2fac9e3ddf478d93f3628412d8b3b0 -# 09c4bbcb5fc64e90bb308a61b0d223e1 -# 5248c89d5ea2459f90ceb1361a7007a7 -# 1ff11b77ef24428d90b53cb8a1260abf -# e5e12867064a44e680aec66a70f7c6a5 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:200 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:267 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:328 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:387 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:475 -msgid "" -"Explain the importance of the session, objectives, outcomes and activities " -"of the session." -msgstr "" - -# 28b6ea51b7404eefb2fea1bb5f936885 -# e75347f90e0b47bb900ec60948f5e372 -# aba7bd5a50f54e44927f052176d9d751 -# 1f3d8f5e61cb4f5584c5306661abac24 -# b5a9a5802aba45348808c061434880c2 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:198 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:265 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:326 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:385 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:473 -msgid "Lecture" -msgstr "" - -# d1afebfb652746049606a28ea7883eec -# c7e451fdf02b459e88bcfc24cfbe1fa8 -# 952d8b205d394df2b8ef940248a8d857 -# 4a83c3fbd7cb492e9b314ea6e154da08 -# 49d280c20f754b6a93b78da68d58fec6 -# 3b446aaa331a4847b4a6a309b2c6e2a7 -# 13188737b04746d5aeb8628208bddf2c -# f49dadc6e452490ebfb50ff40937dfac -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:198 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:203 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:211 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:265 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:326 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:331 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:385 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:473 -msgid "*Slide PP*" -msgstr "" - -# 10a32a118ed644bbae8649dfa53f9c6c -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:203 -msgid "**FGD 65'**" -msgstr "" - -# 167db66b765b47e2abe0496dc560e8a8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:205 -msgid "Discuss with participants:" -msgstr "" - -# c67a04995769444cae6e7de9d2847358 -# 3b2ccb8a915340c7964693b32f9ed275 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:207 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:216 -msgid "QGIS data types" -msgstr "" - -# 8836edadc5e14b17bf390aae6e520d64 -# 7b8facac4ef04e9ca5dbebdda61ea7cc -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:208 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:217 -msgid "Data symbolisation" -msgstr "" - -# 55a0b81d655b44bd949380c1b3cc91cb -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:203 -msgid "FGD" -msgstr "" - -# 9cde7cf10c164d4c9b4e4bdc77c45515 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:208 -msgid "Module 1" -msgstr "" - -# 9269b3c220e24816a16875b80f5930fd -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:211 -msgid "**Debrief 60'**" -msgstr "" - -# f94ede158424484694f1a584adc2da38 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:213 -msgid "" -"Review this material and answer any questions and problems that participants " -"have encountered." -msgstr "" - -# 8b3252d2a8334e15a68566d4d3c2e85d -# fac4b509c54847ceb47c38d4d3e59eea -# 6151e7e3530e41eeb69a869fcf17aa85 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:211 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:270 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:331 -msgid "Lecture Q & A" -msgstr "" - -# 3135ac1f06de4b029893c3aee49a628e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:221 -msgid "" -"**Closing 5'** Ask participants to recap the session and answer any final " -"questions." -msgstr "" - -# 393743c9f6c245868fd8a7944c3f16ce -# bf65bdce27ee4e4eb1d3d981c76b163e -# 08401f3b636741f7aafc0172e4e73ec4 -# 5ffa5476faed459a8cfaccbae2758e15 -# a8bc12e48c0b4830be96fc3073b31284 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:221 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:281 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:346 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:409 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:493 -msgid "Q & A" -msgstr "" - -# e92a8e7f98b14c8dbc97895c4ff0e13e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:227 -msgid "Session 2" -msgstr "" - -# cb2af76ef3ac470aaf773fc8d036ca84 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:230 -msgid "Time : 185 minutes" -msgstr "" - -# 67a49b81989d4d9c926f47b0916905fd -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:238 -msgid "Understand |project_name| inputs" -msgstr "" - -# ebea6a341f684b82ad275d856f6c408f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:239 -msgid "Get OSM data from the HOT export server" -msgstr "" - -# 3cfc5a7593a54b8a844830206b9e8033 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:240 -msgid "Load data into |project_name|" -msgstr "" - -# d350014a82214f9cb0438276e9b26af1 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:241 -msgid "Add keywords" -msgstr "" - -# 25174bac917a4532bdb2b8998438ed23 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:242 -msgid "Prepare the hazard layer" -msgstr "" - -# a919cf777a4744799acf54aef27018f7 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:243 -msgid "Run |project_name|" -msgstr "" - -# cb39efbc4baf4f30a322e751ca576eae -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:247 -msgid "Hazard impact map based on |project_name| analysis results" -msgstr "" - -# f0b6b934cabd43989c4e0ae76db16e26 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:251 -msgid "**Preparing data and keywords for** |project_name|" -msgstr "" - -# 26880cc3c3ef406386706b31fc022f18 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:253 -msgid "|project_name| inputs" -msgstr "" - -# 22a22739ffe14c0e85786eafd08507c8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:254 -msgid "Getting OSM data from HOT Exports" -msgstr "" - -# 5e75063f7c384055a5cb0dab8d2ac1eb -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:255 -msgid "Loading data" -msgstr "" - -# 2afcfdca287640c19178d3b1cccc58ad -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:256 -msgid "Adding keywords" -msgstr "" - -# 19d6f515e1ec4ebba96ab14f7f6aac85 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:257 -msgid "Preparing a hazard layer" -msgstr "" - -# 87bf0e712a2945b398cccd3e86e54ecb -# 8941af357b1d4ef99bff76dabf09805e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:258 -msgid "Running |project_name|" -msgstr "" - -# 7310878d62e8453083854ff0dc3da3c5 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:270 -msgid "**Review** |project_name| **input data 65'**" -msgstr "" - -# 61884b3ccb7f4ee39fba655a441a673a -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:272 -msgid "Explain about preparing data and keywords for |project_name|." -msgstr "" - -# 966b3812b7e84201ba9c89d7730a649c -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:274 -msgid "" -"Show participants how to get OSM exposure data and how to use |project_name| " -"to get affected buildings" -msgstr "" - -# 2b40848f2ca1402c83666629ef5275a9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:276 -msgid "" -"Q & A session for participants to ask anything about materials. Questions " -"will be answered after presentation." -msgstr "" - -# 9ee7d272e42f46caaaa20bc80d9ca868 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:278 -msgid "" -"Challenge participants to prepare exposure and hazard data to be processed " -"in |project_name|." -msgstr "" - -# 1bc5798ede7248028a3c0c6c3e993aac -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:270 -msgid "*Slide PP* Projector Microphone" -msgstr "" - -# ffb2eca319e74beeb5486b7b3b29590f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:275 -msgid "Module 2" -msgstr "" - -# 5be7a7a1be5245d3b60146a6d0717fad -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:281 -msgid "" -"**Closing 25'** Ask participants to recap the session. Conclude by answering " -"participant questions." -msgstr "" - -# cbc4b16a0c86495ab0e85ac1e130a643 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:287 -msgid "Session 3" -msgstr "" - -# 8b9d19c3afb7481daa0f3c2a6e7eb666 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:290 -msgid "Time : 225 minutes" -msgstr "" - -# 883b908e453f44f39ae991e2830570db -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:298 -msgid "Develop criteria for determining an ideal IDP camp location" -msgstr "" - -# 5e2d49437d3a41cb822ffc9a8497181d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:299 -msgid "Use geoprocessing tools" -msgstr "" - -# 0068eaf700044dc2bd34c868e520cb4f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:300 -msgid "" -"Use various spatial queries: contains, within, equal, intersect and is " -"disjoint" -msgstr "" - -# 136f8b0eb0be4497b034e448bbf8ff38 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:302 -msgid "" -"Combine geoprocessing tools and spatial queries to select building(s) for " -"temporary IDP camps" -msgstr "" - -# c8b9f15542364cdfabf2f5c3ea081cc4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:307 -msgid "Use spatial queries to determine good IDP camp locations" -msgstr "" - -# 70b50493eb8b4773af03533d16c39df0 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:311 -msgid "**Determining IDP Camp Location**" -msgstr "" - -# a5aa7bcd8e204324921b172b8ab51791 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:313 -msgid "Geoprocessing tools" -msgstr "" - -# 17ac76857f3640f69b9c0e765d51a3cc -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:314 -msgid "Spatial queries" -msgstr "" - -# 32154beab18c4de58fd72b49b0e99e49 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:315 -msgid "IDP camp criteria and data" -msgstr "" - -# 951106dbca1f4804b07264d7e2b85341 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:316 -msgid "Criteria #1: building must be outside affected area" -msgstr "" - -# 09edef954dbb414494a00d6725653c8f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:317 -msgid "" -"Criteria #2: location must have direct access to a primary/secondary road " -"within 20 metres" -msgstr "" - -# 022867535b604801a43ee32b43e8aaf3 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:319 -msgid "Criteria #3: building must have an area of at least 225 square metres" -msgstr "" - -# 0328c0a045d24c5e9d067ec40193cdf9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:331 -msgid "**Input 105'**" -msgstr "" - -# a8a1669fcd2b4f648f57d8d047fc6c5f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:333 -msgid "Present the IDP camp scenario to participants." -msgstr "" - -# c4b032fd9fa14d50aa00f12f70bad554 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:334 -msgid "" -"Explain the process of spatial analysis for identifying IDP camps, using " -"tools such as buffer, clip, intersect, union and dissolve." -msgstr "" - -# d9060660b02c4dcfad390b9275565a7f -# 5bbd012e1e4b44cab66e04a5858c9d76 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:338 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:402 -msgid "**Practice 120'**" -msgstr "" - -# df59628164fb4f3198bba34fbf03c3f4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:340 -msgid "" -"Go step-by-step through the process of identifying potential IDP camps using " -"the sample material. Participants should follow along." -msgstr "" - -# 35b36312e46e4f35a8ac4484f4de4456 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:343 -msgid "Answer any questions participants have about the process." -msgstr "" - -# 34df53256ab544dcb4c4dfefae15ba39 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:346 -msgid "**Closing 10'** Q & A and discussion." -msgstr "" - -# bdabab143cc6463b97dd4c0b0c478805 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:351 -msgid "Session 4" -msgstr "" - -# a2ffa04b0a984bd9919d95471b1be7e4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:354 -msgid "Time : 180 minutes" -msgstr "" - -# 2f8543fc0eb4423faf72cd73ca44dc19 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:362 -msgid "Understand the concept of shortest path and fastest route" -msgstr "" - -# cabac33c7e83499792b676a990418192 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:363 -msgid "Use the Road Graph plugin" -msgstr "" - -# e3c9f9101a044cd5b1298d6f8104132e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:364 -msgid "Set up speed and road direction" -msgstr "" - -# 7495d06f6a69447e8447a24a0d221d72 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:365 -msgid "Determine start and destination points" -msgstr "" - -# 8ecb25abbabc4d70804028f9bbbbe29a -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:366 -msgid "Conduct route analysis and selection" -msgstr "" - -# 868c64c2b099462dad947b641e29cc29 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:370 -msgid "Create evacuation route" -msgstr "" - -# c40af447cace4f568507fcd05a30f290 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:374 -msgid "**Planning an Evacuation Route**" -msgstr "" - -# 51e10e6b0dac413aa77cff4968c006fb -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:376 -msgid "Road graph plugin" -msgstr "" - -# 1fd7dcf980bf472abfea6a7459c07e44 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:377 -msgid "Editing plugin settings" -msgstr "" - -# e453e1ff1c944342939c86cb4a11b7a8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:378 -msgid "Choosing start and destination points" -msgstr "" - -# 8b590558b6dd499b9acfa7d50fc091c2 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:390 -msgid "**Input 45'**" -msgstr "" - -# 7e69eb104e764800b8f379b442ebad6f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:392 -msgid "" -"Explain the process of determining a good evacuation route. Things to " -"consider are:" -msgstr "" - -# a450b409ab8e47ba834062e5a3fc0592 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:396 -msgid "Make sure the Road Graph plugin is installed" -msgstr "" - -# 8cc7373a6b0c4e97b30720c0b8a54927 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:397 -msgid "Explain Road Graph plugin settings" -msgstr "" - -# 03a0032e2e784d15b58f5c1e16e54939 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:399 -msgid "Allow participants to ask questions about the material." -msgstr "" - -# 037151e3fa6c471fa0cb12170e127a2d -# b87beaca30bf4046ad6baa6fe04adc4f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:390 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:478 -msgid "Discussion" -msgstr "" - -# 8f5bd3c6fbbb4867b56f62130bc615dc -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:390 -msgid "*Slide PP* Module 4" -msgstr "" - -# 7533c5069d0a4bd29749c3ffa81b3e9f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:404 -msgid "" -"Demonstrate how to determine the fastest route using the example data. " -"Participants should follow along." -msgstr "" - -# 9a5a32994b6540dcb1cfdff5323e1c43 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:406 -msgid "" -"Ask one of the participants to present the results of the analysis, and have " -"other participants respond." -msgstr "" - -# a26b62f2e4b04c2aa192464e989d12a2 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:409 -msgid "" -"**Closing 10'** Answer questions about the material and discuss use cases." -msgstr "" - -# bf37fdd410e346fdaa48fc7c33660587 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:415 -msgid "Common Problems" -msgstr "" - -# 3dc7122646e44114a75013d74de661c0 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:417 -msgid "**Projection**" -msgstr "" - -# 35891c4294794653807965965d15da5b -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:419 -msgid "" -"You may need to turn off 'On the Fly' projection in order to use the Road " -"Graph plugin, if the analysis does not appear after running the plugin." -msgstr "" - -# 2e5089f4adb14e9d90584d371decc383 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:424 -msgid "Session 5" -msgstr "" - -# 4c78737db7684be0b06dc53aad9b5310 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:426 -msgid "Calculating Damages and Losses" -msgstr "" - -# 3f989d0ea2be42918527841c92c06a7d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:427 -msgid "Time : 210 minutes" -msgstr "" - -# e90fd738e7474322bad480c363b240a1 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:435 -msgid "" -"Understand the definition of damages, losses and their calculation based on " -"community exposure data" -msgstr "" - -# d8ecf8fd6aef4bbaaa07a39fbb59b546 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:437 -msgid "Understand damage and losses assessment values based on BNPB and BPBD" -msgstr "" - -# f214aa13eabc40af8121f17e5fbe4069 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:438 -msgid "Make a damage and losses map" -msgstr "" - -# fcdfdf5437f6453f8f4a8134d37ea651 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:439 -msgid "Calculate damage area" -msgstr "" - -# b9620cfac38647fdba54be685a7e362d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:440 -msgid "" -"Manipulate attribute data of affected features to obtain damage values for " -"each object" -msgstr "" - -# 49cf9ef7a90544818552abcefc1bb8db -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:442 -msgid "" -"Manipulate attribute data of affected features to obtain loss values for " -"each object" -msgstr "" - -# a1f210526dd44ac69313e8d646153e74 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:444 -msgid "" -"Group attribute data for administrative areas (hamlet village, subdistrict)" -msgstr "" - -# f685f24c54c24f2a849342e9948f3332 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:446 -msgid "" -"Combine attribute data for administrative areas (hamlet village, subdistrict)" -msgstr "" - -# c15c6ebcda3d4ffbb52dc09efd3d99ff -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:448 -msgid "Present damage and loss values using charts" -msgstr "" - -# b747f2c12b694c81965e67a3070231e6 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:452 -msgid "Calculate damages and losses in QGIS" -msgstr "" - -# 8b326f34a2dd40fd808c40c70b36cf25 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:456 -msgid "**Calculating Damages and Losses**" -msgstr "" - -# 3d163da4c25241028facba8bf1a170ad -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:458 -msgid "BPBD damage assessment guide" -msgstr "" - -# 872f0ea144054ab5951a020d19718bae -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:459 -msgid "Damage and losses assessment map" -msgstr "" - -# f1903ebe71624bbaa0f4a1d55ed2c1c4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:460 -msgid "Calculating damage area" -msgstr "" - -# a880cfdae61f4520a46d54c401ad94b0 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:461 -msgid "Calculating damages using the Group Stats plugin" -msgstr "" - -# 3a261d0a7eba4ce1bcde6855a1b10003 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:462 -msgid "Calculating losses" -msgstr "" - -# 4b6f845e6c8047b0b2d3c954e1b9fc78 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:463 -msgid "Calculating losses using the Group Stats plugin" -msgstr "" - -# 2cbd9791f10f4dec8d9ad300a865c715 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:464 -msgid "Joining data" -msgstr "" - -# 61f334796b584369a307aa149558d583 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:465 -msgid "Creating a chart" -msgstr "" - -# 7e40ee04a3644f1a8046488ef21ce7b9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:478 -msgid "**Demo and Practice 180'**" -msgstr "" - -# 7290e3be86c7416699af03e50fff8fc7 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:480 -msgid "" -"Explain the definition of damage and losses assessment (DALA), DALA benefits " -"and examples of DALA that are already used by some organisations/agencies to " -"calculate post-disaster losses." -msgstr "" - -# fb0f851ad8f246b78ddff8179a690391 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:484 -msgid "" -"Give an example calculation of damage and losses that will be completed " -"together with participants. It is recommended to use the existing training " -"data." -msgstr "" - -# 728e86c3c3084e6b9bf50145517c927d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:487 -msgid "Use the Group Stats plugin to calculate damage and losses by village." -msgstr "" - -# d680fb3800314cb8be7a965ae0decffd -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:489 -msgid "" -"Explain how such a DALA calculation can be used to help in drafting a " -"disaster contingency plan." -msgstr "" - -# 330cb39ac9c6485e89ecd515e71ec83f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:478 -msgid "*Slide PP* Module 5" -msgstr "" - -# f1ed35d11d954ea6a0b24872d7c16b80 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:493 -msgid "" -"**Closing 10'** Conclude the session on DALAs. Discuss and answer questions " -"about the session." -msgstr "" - -# 66758c6cf7c449ac9d971d2a8dc2571f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:499 -msgid "FAQ (Frequently Asked Questions)" -msgstr "" - -# 58ca5793b1b043c9b5ae84e056822c26 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:501 -msgid "" -"**How do we get data that can be used for the calculation of damages and " -"losses?**" -msgstr "" - -# dcd489df18ce4f2896e0c600471634c3 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:504 -msgid "" -"Data can be typically be obtained from the relevant national agencies. In " -"Indonesia, for example, it can be obtained from BNPB and BPBD." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/index.po b/docs/i18n/en/LC_MESSAGES/training/index.po deleted file mode 100644 index 8d3eb279..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/index.po +++ /dev/null @@ -1,72 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:30+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 5bc3efcdbf2743e1bb49c171eb52679a -#: ../../source/training/index.rst:8 -msgid "Training Materials" -msgstr "" - -# 96b0cc3c7ae54725b502706de93b3439 -#: ../../source/training/index.rst:10 -msgid "" -"This section of the documentation contains step-by-step tutorials on using " -"OpenStreetMap and |project_name| with QGIS. It includes curricula and " -"materials to be used in a set of trainings covering these topics." -msgstr "" - -# fdbcd22410a84dfa9ed2490e8c623732 -#: ../../source/training/index.rst:13 -msgid "Training" -msgstr "" - -# db195380d7d14e7e8b569d7836c628a3 -#: ../../source/training/index.rst:13 -msgid "Intended Length" -msgstr "" - -# 78c3168097754784bd36bc3cec85cdcd -#: ../../source/training/index.rst:15 -msgid "Socialisation" -msgstr "" - -# 40683b1e7cfe45718c54dd42a406b14f -#: ../../source/training/index.rst:15 ../../source/training/index.rst:21 -msgid "1 Day" -msgstr "" - -# e4e8c137ba404e2d8173887c8c0dce8e -#: ../../source/training/index.rst:17 -msgid "OpenStreetMap" -msgstr "" - -# 0447cf5bc5864a40815092c78606da08 -# dc8e42967cca48cd9b7c9f5c2610f7d0 -#: ../../source/training/index.rst:17 ../../source/training/index.rst:19 -msgid "3 Days" -msgstr "" - -# 6f83e7c74bd44359a348884373d95594 -#: ../../source/training/index.rst:19 -msgid "QGIS" -msgstr "" - -# 5ee56c1879ae473183fa89cc6c7f217d -#: ../../source/training/index.rst:21 -msgid "Training of Trainer" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/index.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/index.po deleted file mode 100644 index 02cac796..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/index.po +++ /dev/null @@ -1,41 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 348945a919e346f493eee3192ec056f9 -#: ../../source/training/old-training/beginner/index.rst:8 -msgid "Beginner Training Module" -msgstr "" - -# edc8b42b409b49d4a5ab3afa3dba57b1 -#: ../../source/training/old-training/beginner/index.rst:10 -msgid "" -"The beginner training module has been designed by Badan Nasional " -"Penanggulangan Bencana (BNPB), Humanitarian OpenStreetMap Team (HOT) and " -"Australia-Indonesia Facility for Disaster Reduction (AIFDR) to provide hands-" -"on experience with |project_name| for data collection and data analysis for " -"contingency planning. The course is scheduled to run for 10 days." -msgstr "" - -# 1f8f0a9138654ab8853c3006fdbb4e03 -#: ../../source/training/old-training/beginner/index.rst:16 -msgid "" -"The data used in this course is available for download on `data.inasafe.org " -"`_. Ask your trainer which data you will need to " -"download for the course if they do not provide it to you directly." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/100-introduction.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/100-introduction.po deleted file mode 100644 index f2646077..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/100-introduction.po +++ /dev/null @@ -1,248 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 60169d5cd5a24f869dbf70e1d5f4c0ed -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:10 -msgid "Introduction" -msgstr "" - -# b7610f782d044ca0a005ab123815c180 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:13 -msgid "Disclaimer" -msgstr "" - -# 227984954ff8409883755d18d57f2134 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:15 -msgid "" -"This document is initial draft and still in reviewing phase by these parties:" -msgstr "" - -# b87b1b43c77c4fc5bd5020acc1bfe03e -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:17 -msgid "Badan Nasional Penanggulangan Bencana (|BNPB|)" -msgstr "" - -# 68c204c6d2614d7db8a496b37fc51540 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:18 -msgid "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" -msgstr "" - -# 8d019302328e49388dc4fe3a8c7f6d23 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:19 -msgid "Humanitarian OpenStreetMap Team (|HOT|)" -msgstr "" - -# 7d6e5fb4e92443f8927803114611bf34 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:21 -msgid "" -"All contents and materials on this document may be changed without public " -"notice." -msgstr "" - -# eb4c34a3a3fe4e2ea7e515eb38e2ac1e -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:25 -msgid "Licence" -msgstr "" - -# c8fc0e00d60a471084676fb53e8e33e5 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:29 -msgid "" -"All contents and materials in this document are licensed as Creative Commons " -"Attribution Australia (CCbyA)." -msgstr "" - -# 07096b0a34514a8681a4f3fdce17f0ad -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:32 -msgid "You are free:" -msgstr "" - -# bcabcf59080c44b886ecacc0f71a9cef -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:34 -msgid "to copy, distribute, display, and perform the work" -msgstr "" - -# a1ba11fdfd5241dfa7ef9c9c40d22185 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:35 -msgid "to make derivative works" -msgstr "" - -# 51c279b9e33441a09b8192118416aead -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:36 -msgid "to make commercial use of the work" -msgstr "" - -# a6d2e2b28a4b41f1b629ef683501ec93 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:38 -msgid "You must give the original author credit." -msgstr "" - -# e862a6e9d620475c8a8b66d1e287e167 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:40 -msgid "" -"More information about CCbyA License: http://creativecommons.org/licenses/" -"by/3.0/au/deed.en_GB" -msgstr "" - -# 3f80cdda53b242fc9b818ad46057f1ca -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:44 -msgid "About Us" -msgstr "" - -# 04ee76c26ccf476791f287076861c331 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:46 -msgid "Badan Nasional Penanggulangan Bencana (BNPB)" -msgstr "" - -# 62808c1ab1374d5b8b9c1aad0869e478 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:50 -msgid "" -"BNPB is Indonesia’s National Disaster Management Agency. |BNPB| is a non-" -"departmental ministerial-level government agency, tasked with providing " -"guidance and direction to the efforts of disaster management that includes " -"disaster prevention, emergency response, rehabilitation and reconstruction " -"in a fair and equal way. |BNPB| functions as a policy maker regarding " -"refugee/IDP management for effective and efficient response. It coordinates " -"the implementation of disaster management activities in a planned, " -"integrated and comprehensive way." -msgstr "" - -# e652067b2eba45dea7f3473a7c1e36ad -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:60 -msgid "http://bnpb.go.id" -msgstr "" - -# 833bf69930e44adf9ce90d2d8aa2adb2 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:63 -msgid "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" -msgstr "" - -# ecc5b61c7f7042c8ab6cd6aba6dbceb4 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:67 -msgid "" -"The Australia-Indonesia Facility for Disaster Reduction (|AIFDR|) is a joint " -"initiative between the governments of Australia and Indonesia. They work to " -"strengthen Indonesia's ability to reduce the impact of disasters. The " -"Australian and Indonesian governments at a special ceremony on 15 July 2010 " -"launched the Australia-Indonesia facility. The launch marks an important " -"event in the strong relationship now shared by both countries and their " -"united commitment to better prepare for and respond to natural disasters in " -"Indonesia." -msgstr "" - -# 77051902c4a84acab0a8d55553fabb4e -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:76 -msgid "http://aifdr.org" -msgstr "" - -# bb0371c15d844521abc43a0ad82c512d -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:79 -msgid "Humanitarian OpenStreetMap Team (HOT)" -msgstr "" - -# e892475fd195474da086b2f5550df12d -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:83 -msgid "" -"Free, collaborative maps are uniquely valuable to humanitarian work, " -"especially in places where base map data is often scarce, out-of-date, or " -"rapidly changing. OpenStreetMap (OSM) is a web project to create a free and " -"open map of the entire world, built entirely by volunteers surveying with " -"GPS, digitising aerial imagery, and collecting and liberating existing " -"public sources of geographic data. The Humanitarian OpenStreetMap Team (|" -"HOT|) is an initiative to apply the principles and activities of open source " -"and open data sharing towards humanitarian response and economic development." -msgstr "" - -# b0786e59ba374fbf87ee4dca58663ea7 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:92 -msgid "http://hot.openstreetmap.org" -msgstr "" - -# faf453bf0f514f1a8f89f91d80f90519 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:95 -msgid "Universitas Gadjah Mada" -msgstr "" - -# 60721d1f3db94d638d26d3dd969a2625 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:99 -msgid "" -"Universitas Gadjah Mada (internationally known as Gadjah Mada University, or " -"UGM) is a top research university located in Yogyakarta, Indonesia. The " -"Department of Geodetic Engineering and Faculty of Engineering focuses on " -"education, research, and commmunity services related to geodesy and " -"geomatics engineering, including acquisition, analysis, and uses of detailed " -"and accurate geospatial data and large-scale maps using open source " -"geospatial software for disaster management." -msgstr "" - -# a98be150b9094be5afcf21707e04e8fc -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:107 -msgid "http://ugm.ac.id" -msgstr "" - -# c279854c51544e078db07d7b6fe91e51 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:110 -msgid "Preface" -msgstr "" - -# 31ce9a0c8bf94ac885706b1419c43395 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:111 -msgid "" -"Every day thousands of people contribute to OSM, a project with the lofty " -"goal of mapping the world. Most OSM software is free and open source, and " -"the data is open for anyone to use. The idea is simple: if you make a map of " -"your town and we make a map of ours, we can share those maps on a common " -"platform. With enough people contributing, we can collect data throughout " -"the world." -msgstr "" - -# d2079cdad79843d0a7375a1c100a88ae -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:118 -msgid "" -"Collecting Spatial Data using OSM Beginner Level is a step-by-step course " -"designed to help anyone get started with OSM. While it might seem daunting " -"at first, OSM is simple enough that anyone can get started creating maps, " -"and as your understanding grows you'll find that you can do more and more " -"interesting things." -msgstr "" - -# c7c12e39ce07497bbc62586bb2ad1cf2 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:124 -msgid "" -"This tutorial makes few assumptions. It assumes you have used a computer " -"before, and that you have an email address. If you don't have an email " -"address, we suggest you have a friend help you sign up for one. There are " -"many websites where you can get a free email address, such as www.gmail.com " -"or mail.yahoo.com." -msgstr "" - -# 44b43b10108a4fd5867b56bd33c11e84 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:130 -msgid "" -"The only other assumption is that you've used the internet before. Perhaps " -"you're familiar with Facebook or email, and that's certainly enough to get " -"started with OSM. If you're already comfortable using a computer and surfing " -"the web, don't worry – this guide is for you too. No matter your " -"proficiency, we'll take you step-by-step through OSM and you'll be mapping " -"in no time!" -msgstr "" - -# 96c7fd01bf2c497a91cfdb86edc990d1 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:137 -msgid ":ref:`Go to first module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/101-basic-concept-of-osm-website.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/101-basic-concept-of-osm-website.po deleted file mode 100644 index 2de09185..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/101-basic-concept-of-osm-website.po +++ /dev/null @@ -1,170 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# a01e446946e945c2b12f89ddbe224e6a -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:10 -msgid "Module 1: The OpenStreetMap Website" -msgstr "" - -# ea281f443eff48a4932128bcc4022d92 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 6a2990e4d34d4112ac5014fc814ffda9 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:14 -msgid "Understand the concept of OpenStreetMap" -msgstr "" - -# aeb9978a4907468ab83fac0a4c357896 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:15 -msgid "Understand the definition and objectives of data collection" -msgstr "" - -# e75b3a3296064a2896bdc9a299e8005a -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:16 -msgid "Understand the composition of a map" -msgstr "" - -# d58450b665c448deb5cd7110dbd9a5c1 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:17 -msgid "Make a hand-drawn sketch of an area" -msgstr "" - -# 8d2483b53ac343f4a2598587fed27d93 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:19 -msgid "" -"Maps are a good way to convey information. Maps are visual representations " -"of our world. They can often demonstrate an idea better than words. This in " -"turn can also help answer important questions. Where is the closest school " -"or hospital? Who has the least access to these facilities? Where is " -"poverty the most problematic? Questions like these can often best be " -"expressed with maps, and maps can help find solutions to these questions." -msgstr "" - -# 38aab34470584dc1ad8411916d4305af -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:27 -msgid "Hand-drawn maps" -msgstr "" - -# c9cd1c3411d94ce88e47ae1cb33e23ee -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:29 -msgid "" -"As an exercise, get a pen and paper and draw a map of your town or village. " -"What are the most important things to include on the map? What is the most " -"important information? Spend a few minutes making your map, and when you’re " -"finished, think about why the information you included is important, and who " -"it might be important to." -msgstr "" - -# afaa0544e72045dfbbbf9bc7f9c51b19 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:41 -msgid "" -"*A village in Indonesia (top), and an example of a hand-drawn map (bottom)*" -msgstr "" - -# 0a031c6f4be64093a4b11fd72befe13e -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:43 -msgid "" -"If your town is like most, you may have drawn some lines to represent roads, " -"possibly a river or stream. Perhaps you added important buildings such as " -"schools and offices, fields, or boundaries. Whatever you drew, you probably " -"used symbols - a line to symbolise a road, a square to symbolise a building, " -"and so on. Your map is a representation of what is on the ground." -msgstr "" - -# ca1dcbe8401446358c046c4d40ac920d -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:58 -msgid "*Examples of Symbols*" -msgstr "" - -# c5686fdf33d24b4489f53e7d4609143c -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:61 -msgid "" -"Your map is informative. You might use a map like this to explain to someone " -"where different places are, where problems are in your community, or merely " -"to help someone find their way around. The use of your map is limited " -"though. There is only one copy of the map and the way you drew it may make " -"sense to you, but perhaps not to someone else who would have drawn their own " -"map in a different way. Because your map is merely on paper, it is difficult " -"to get that information to others. This is why making your map on a " -"computer, in such a way that anyone can access it, can be much more valuable." -msgstr "" - -# a71cf29ed66c4eeeb146dcd7261f8eb3 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:72 -msgid "Why digital?" -msgstr "" - -# 4177de3ea8104c1d8ca28af5c40a580f -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:74 -msgid "" -"Map making on computers allows us to collect more useful data than on paper. " -"On paper we might draw a school, and even add it’s name and record some " -"information about the school, but on the computer we can attach an endless " -"amount of data about the school, such as the number of students, number of " -"teachers, size of the building, type of structure, and so on. And more " -"importantly, when we add this school to a digital map, we record it’s " -"precise location (longitude and latitude) on the planet. This is invaluable " -"for our future map making and analysis, and we will look more closely at it " -"later on." -msgstr "" - -# cc40bf52c7e742099cbf424e8ef8156b -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:85 -msgid "What is OpenStreetMap?" -msgstr "" - -# 3ad184b2788a486ab96596151de3e0a2 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:87 -msgid "" -"OpenStreetMap is a tool for creating and sharing map information. Anyone can " -"contribute to OSM, and thousands of people add to the project every day. " -"Users draw maps on computers, rather than paper, but as we will see in this " -"guide, drawing a map on a computer is not all that different from drawing on " -"paper. We still draw lines to represent roads, fields, and anything else, " -"and we still represent schools and hospitals with symbols. The important " -"thing is that OSM maps are saved on the internet, and anyone can access them " -"at any time, totally free." -msgstr "" - -# efc3500ddc1c4b33a579f81e09a5607a -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:99 -msgid "*Digital Maps with OpenStreetMap*" -msgstr "" - -# 9b94ae9668034edf8724aeda22326ec8 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:101 -msgid "" -"OSM is digital, which makes it extremely useful for us, and it is shared, " -"which means that everybody benefits from the work of everybody else." -msgstr "" - -# 2cf9333b46844aa9a7d4d41495e3500d -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:105 -msgid "" -"In this unit, you will learn how to make a digital map. You will learn how " -"to use the OSM platform, and you will make your first edits and additions to " -"the worldwide map." -msgstr "" - -# fd9109031a784a11aa3632a590799002 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:109 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/102-working-with-osm.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/102-working-with-osm.po deleted file mode 100644 index a9b45600..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/102-working-with-osm.po +++ /dev/null @@ -1,367 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 61c4e6871a0a4fa18778cdb64ba76265 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:10 -msgid "Module 2: Working with OSM" -msgstr "" - -# c762c41713894e4f87a37285f782ded8 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 361a62225e6947e28c704554f1d6f25b -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:14 -msgid "Visit OpenStreetMap website" -msgstr "" - -# 86b93cf64ccf4d559f40468270bc46af -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:15 -msgid "Navigate map on OSM website" -msgstr "" - -# e98ee0b4feb144209400ca2c82316192 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:16 -msgid "Save an image from OSM" -msgstr "" - -# 6051ec994b364652a5f45a4e8d07d9a1 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:17 -msgid "Register an OSM account" -msgstr "" - -# 5b9e53fae2c347e294ebea50d636fe99 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:18 -msgid "Edit the OSM map" -msgstr "" - -# fe6582e318a3469c966d88bf768d6d77 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:19 -msgid "Save edits" -msgstr "" - -# 95c76692207b4055b9bf959478077c74 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:21 -msgid "" -"In this module we will learn step-by-step how to navigate the OpenStreetMap " -"website, view and print maps, and sign up for a user account. After you have " -"your own username and password, you will be able to add your first points to " -"the map." -msgstr "" - -# df1417c1870d4519a500e3b212ad176d -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:27 -msgid "1. The OpenStreetMap website" -msgstr "" - -# b5835021aca34a20a1bf782178dab9a6 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:29 -msgid "Be sure that your computer is on and you are connected to the internet." -msgstr "" - -# 680b579e34f64a8c8be94b288ef16f8b -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:31 -msgid "Open your web browser - Firefox, Chrome, Opera, or Internet Explorer." -msgstr "" - -# 0ae0af44427a47aab7452da7e99ce5e6 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:33 -msgid "" -"In the address bar at the top of the window, enter the following text: `www." -"openstreetmap.org `_" -msgstr "" - -# c7a8da457b7a472d946fa9be41057bff -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:36 -msgid "When the page has finished loading, it should look something like this:" -msgstr "" - -# ffdc9d0deafb493baa7bbfeb13756a58 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:42 -msgid "2. Navigating the map" -msgstr "" - -# a8b6ee9bacc5465794fb5411ce23e3c3 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:44 -msgid "" -"The main thing we see is the map. Move the map by clicking on it with your " -"left mouse button, holding the button down, and dragging your mouse around." -msgstr "" - -# b4fa2e2258f945738b78be9a255e0513 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:48 -msgid "" -"If you have a mouse with a scroll-wheel, zoom in and out on the map by " -"turning the wheel. If you don’t have a scroll-wheel, click the :guilabel:`+` " -"and :guilabel:`-` buttons in the upper right corner of the map." -msgstr "" - -# 27b335d6dd9f45b2be2f752427207ae3 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:53 -msgid "" -"To search for a place, left-click in the box labeled :guilabel:`Search` on " -"the left side of the page. Type in the name of your town or village and " -"press Enter. A window should appear to the left of the map with the results " -"of your search. Click on the location that looks closest to the one you " -"want. The map will automatically move to the location you choose." -msgstr "" - -# 2250ab423f71476bbc90c55abf1ee798 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:61 -msgid "3. Saving an image of the map" -msgstr "" - -# bd53a751abf44ef4ab6618176ddaf96d -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:63 -msgid "" -"To save an image from OSM that you can easily print, follow these " -"instructions:" -msgstr "" - -# 6d64fc5eeec748b991186eee38ca3423 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:66 -msgid "Click the :guilabel:`Share` button on the right side of the map." -msgstr "" - -# 973d9058d2d54d78b15e58b8a8bd3041 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:71 -msgid "Options appear which look like this:" -msgstr "" - -# 4db9c546ef454d12837759045c40d067 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:76 -msgid "" -"In the :guilabel:`Image` section, check the box next to :guilabel:`Set " -"custom dimensions` to manually specify the extent of the area for download. " -"Drag the box which appears to the area you would like to get as an image " -"file." -msgstr "" - -# 775e4501fbaf4839ae40bcce3980032c -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:81 -msgid "" -"Set the format to PNG, JPEG, SVG or PDF format according to your preference." -msgstr "" - -# a758cae2ac4f47c5bd3809b8bfed11d0 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:84 -msgid "" -"You may enter a scale in the next box. The larger the scale (meaning a " -"smaller number), the larger the image size will be. Scale is a ratio. For " -"example, entering 5000 here means that objects on the map will be 1/5000th " -"the size that they are in real life." -msgstr "" - -# c1d283fd231c456b8c3be2acac0f1357 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:89 -msgid "" -"Click the :guilabel:`Download` button. The image will be created, downloaded " -"and saved to your computer." -msgstr "" - -# f486cd48e667411092a83d532e9f2714 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:92 -msgid "" -"Open the downloaded file. It can be printed by going to :menuselection:`File " -"‣ Print`, after you connect your computer to a printer." -msgstr "" - -# 6263c3af214049818cf32cb58bae4fed -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:97 -msgid "4. Creating an OpenStreetMap account" -msgstr "" - -# 02f3325721eb4cd9983dd2408b41f87f -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:99 -msgid "" -"Now that we have seen the website, we must create an OSM account so we can " -"start mapping." -msgstr "" - -# e3e0b47f4699435590043721c99663e1 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:102 -msgid "" -"Return to the OSM website. Click :guilabel:`Sign Up` in the top right corner " -"of the page." -msgstr "" - -# e1549bd74d994fe28fc36cd7e525069c -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:105 -msgid "You should see a new page that looks like this:" -msgstr "" - -# cf5c314db21e4a0fabe223f87f353c21 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:110 -msgid "" -"There are five boxes on this page that you need to fill in to register an " -"account with OSM." -msgstr "" - -# 16af4178fd2146758e2a982d2c1c623a -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:113 -msgid "" -"Enter your email address in the first two boxes. You should enter the same " -"email address in both boxes. Later, you will need to open your email to " -"confirm your account with OSM." -msgstr "" - -# 69ad02fbe3a549b7b390c48f1f850fe8 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:117 -msgid "" -"In the third box, enter the username that you would like to have. You will " -"not be able to choose a username that someone else has chosen before, so it " -"should be creative. If you try to enter something simple, like your first " -"name, it is likely that someone has already claimed that name." -msgstr "" - -# 86d223e75d064964b93e84d73511a3c4 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:123 -msgid "" -"Enter a new password in the fourth and fifth boxes. Enter the same password " -"in both boxes. It does not need to be the same as the password for your " -"email." -msgstr "" - -# 4d86b485ef9e4d488ab6c5fba6eae6c1 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:127 -msgid "" -"You will need to remember your user name and your password so that you can " -"login later." -msgstr "" - -# d8398eab72c84a80b9021b318bc28587 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:130 -msgid "" -"After completing all the boxes, click :guilabel:`Continue` at the bottom of " -"the page." -msgstr "" - -# 4a2c035eeb6f4cd7a7e78f20e6c5d441 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:133 -msgid "" -"If there are any problems, an error message may pop up. Check to make sure " -"that your email is the same in the first to boxes, and your password is the " -"same in the bottom two boxes. If the third box is highlighted red, it means " -"that someone else has already chosen your username, and you should try a " -"different name." -msgstr "" - -# f31ad3a838484b97b953320ee2320782 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:139 -msgid "" -"Open a separate window or tab in your internet browser, and navigate to your " -"email. Common email sites are `mail.yahoo.com `_ and " -"`gmail.com `_." -msgstr "" - -# a744557b60734a7fb59e67eaaed8936d -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:144 -msgid "" -"Enter your email address and your email password to open your email. Note " -"that this is not the same as your OSM username and password." -msgstr "" - -# 3fac19c22b2c4f449f7f591ea97ca90c -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:147 -msgid "" -"If everything was successful with your registration, you should see an email " -"from OSM in your inbox. Open the email. It should look like the image below. " -"Click on the link that is identified below:" -msgstr "" - -# 9f580e948c0943d59ace815c06cd43e5 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:156 -msgid "" -"A new tab or window will open. If everything went well, you should have an " -"OSM account!" -msgstr "" - -# 0f17dd25ccfa4c62be7e999b5a2c18a0 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:159 -msgid "" -"On the OSM page, click :guilabel:`Log In` in the top right corner. Enter " -"your OSM username and password and press Enter. You should now be logged in. " -"You will see your username in the upper right corner of the page." -msgstr "" - -# 53b3086bcbb144d095b4d7f9d78b1adf -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:165 -msgid "5. Adding your first points" -msgstr "" - -# fabeac14c7bf43f68e9f25077df1ae24 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:167 -msgid "" -"Now that you are logged in with your username on the OSM website, you can " -"add your first point to the map." -msgstr "" - -# 0017290e3556484b9814f46c38088f21 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:170 -msgid "" -"Move the map to a place that you know very well, such as your town or " -"village." -msgstr "" - -# a2733ffccc384ed9b571001d1805a479 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:172 -msgid "Zoom in to a place where you would like to add a point to the map." -msgstr "" - -# 77d5e375d74c4a6d9ddbe6c96653b596 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:174 -msgid "" -"Just above the map on the left, there is a button marked :guilabel:`Edit`. " -"Click on the arrow next to it to open a drop-down menu." -msgstr "" - -# c70af1074fcb4d5095afda817394ff50 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:177 -msgid "Click :guilabel:`Edit with iD (in-browser editor)`" -msgstr "" - -# 7dedac9d97724d8fb3410aab63cd858a -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:179 -msgid "" -"The online editor for OSM should open. For a tour of the editor, click :" -"guilabel:`Start the Walkthrough`. To begin editing, click :guilabel:`Edit " -"Now`." -msgstr "" - -# 3554eb61919c4470b0987caa5c0478b0 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:182 -msgid "" -"Add a point to the map by clicking :guilabel:`Point` at the top, and then " -"clicking a location on the map. Select the type of location from the menu on " -"the left and add any other information that you know. If you are satisfied " -"that the information is correct, click :guilabel:`Save` at the top." -msgstr "" - -# 86d6c1f2dbc240f3a3132ecce542e3a9 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:187 -msgid "" -"If you are not sure about the accuracy of the point(s) you add, don’t click :" -"guilabel:`Save`! Play around with the iD editor, but don’t save your changes." -msgstr "" - -# 74d727685091409a81f24596b331bda5 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:192 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/103-working-with-josm.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/103-working-with-josm.po deleted file mode 100644 index 6af99def..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/103-working-with-josm.po +++ /dev/null @@ -1,644 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 6a58e2cdf6cb47bb8cb8dbf858a3d301 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:10 -msgid "Module 3: Working with JOSM" -msgstr "" - -# 59f842d2cbb24d68aae5d51409768e76 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 7bb5fee52ba44c6e9b942b9d8814ce71 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:14 -msgid "Download JOSM" -msgstr "" - -# 94e582b24a16434c9e600c8d640aa5db -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:15 -msgid "Install JOSM" -msgstr "" - -# b27aa1a4e67d491280b84d91ffa34db6 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:16 -msgid "Set JOSM preferences" -msgstr "" - -# bbd35adf522d4ee4aa0b4f8ef364ac3a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:17 -msgid "Use basic tools" -msgstr "" - -# 2776dc734c1445649da91f256904f1de -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:18 -msgid "Draw nodes and ways in JOSM" -msgstr "" - -# 229da7fee544429187ece50849c099f2 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:19 -msgid "Change objects" -msgstr "" - -# 2819a9f645e94442bbdc2329239d27c4 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:20 -msgid "Add tags to objects using presets menu" -msgstr "" - -# 7a60f39cc13947ecb553714f32fbc43a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:22 -msgid "" -"In this module we will learn step-by-step how to download and install JOSM, " -"the Java OpenStreetMap editor. We will change some of the settings in JOSM " -"to make it easier to use. Then we will open a sample map and learn some of " -"the basic operations of the software. Remember in :ref:`Module 1 ` when we asked you to draw a map of your town or " -"village? We will conclude this module by drawing your map again, this time " -"digitally. After this you should have a good understanding of how to draw " -"maps in JOSM." -msgstr "" - -# c407063471fd4cf9b14a97c4d8ad38b8 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:32 -msgid "1. Downloading JOSM" -msgstr "" - -# 1c9c6c6c858749e7ac3b619004111c0d -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:34 -msgid "" -"There is a copy of JOSM in the :file:`software/` folder of the package that " -"accompanies this course. If you don’t have this or would like the most up-to-" -"date version, follow the instructions here. Otherwise skip ahead to :ref:" -"`install-josm`." -msgstr "" - -# 7c62402e6c844c9d96813f193fddbde1 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:39 -msgid "" -"Open your web browser - this may be Firefox, Chrome, Opera, or Internet " -"Explorer." -msgstr "" - -# 3a13429cad284153afe5852f882cea7a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:42 -msgid "" -"In the address bar at the top of the window, enter `josm.openstreetmap.de " -"`_ and press :kbd:`Enter`:" -msgstr "" - -# c817b29454e04232b49d1c0d3ae880ab -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:46 -msgid "The website should look something like this:" -msgstr "" - -# 466b9aff6d714d55af47edef4715dbd5 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:51 -msgid "" -"If you are running Windows, click :guilabel:`Windows Installer` to download " -"JOSM. If you have a different operating system, click on the link for your " -"system. Your download should begin. In this module we assume that you are " -"using Windows, but the instructions are similar for other operating systems." -msgstr "" - -# 27c43bf186b34e2b9ca79400bc53de86 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:60 -msgid "2. Installing JOSM" -msgstr "" - -# b5e2e639ebb44f12b9d3a242db1ecc32 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:62 -msgid "" -"You may have problems installing JOSM if Java is not already installed on " -"your computer. Install Java by running :file:`jre-8u25-windows-i586` in the :" -"file:`software/` folder. The exact version may be different. The most up-to-" -"date version can also be downloaded here: `http://www.java.com/en/download/ " -"`_" -msgstr "" - -# 572bb39539cc44f389af98d19e1df656 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:68 -msgid "" -"Find the JOSM install file on your computer. It should be named :file:`josm-" -"setup.exe`. Double-click it to begin setup." -msgstr "" - -# eea29cad8b6b4832afbda164afe64fd8 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:71 -msgid "" -"Click :guilabel:`OK`, :guilabel:`Next`, :guilabel:`I Agree` and :guilabel:" -"`Install`. When the installation is complete, click :guilabel:`Finish` to " -"launch JOSM for the first time. Later when you want to start JOSM, you can " -"do so by clicking on the :guilabel:`Start Menu` in the lower-left corner of " -"your computer, and clicking the program JOSM." -msgstr "" - -# 9a964b9bdd8b4444905ce4ba1667bfee -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:77 -msgid "" -"A window may pop up that asks if you want to update the software. It is not " -"necessary to update since it is new. Click the :guilabel:`Cancel` button. If " -"you don’t ever want to see this message again, check the box at the bottom " -"before pressing :guilabel:`Cancel`." -msgstr "" - -# 7a892ee90b9c4f169f65aab107a4131c -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:82 -msgid "When JOSM starts, it will look something like this:" -msgstr "" - -# ad3fcac921d6401ab7725a3be9c4e3a2 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:88 -msgid "3. Changing JOSM settings" -msgstr "" - -# 9350f43483e14ef1a3cd09072dfb619a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:90 -msgid "" -"Before we begin using JOSM, it’s a good idea to change some of the settings " -"so that it will be easier to use. To change the settings, go to :" -"menuselection:`Edit ‣ Preferences`." -msgstr "" - -# 5349125146b141f6bf070c3c076b63c0 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:98 -msgid "3.1. Adding Bing imagery" -msgstr "" - -# 3f381f0fb15a4053a5e4ea49852c3b8b -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:100 -msgid "" -"This may be unnecessary if Bing Imagery is already activated in your copy of " -"JOSM." -msgstr "" - -# cb0ae00562b241d395cb5e8fa8d7ee48 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:103 -msgid "" -"In order to use satellite imagery while making our maps, we must make sure " -"that it is enabled in the JOSM settings." -msgstr "" - -# 7120b162a3b24a3fa636b52326777cdc -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:106 -msgid "" -"On the left side of the Preferences window there are different icons for " -"different settings. Click the icon that says :guilabel:`WMS TMS`. You may " -"need to click on the down arrow to find it:" -msgstr "" - -# 5f7ae65d51ad4747ae74493455bda705 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:116 -msgid "Click on :guilabel:`Bing Sat`. Then click :guilabel:`Activate`." -msgstr "" - -# 134898550d424bfdb2ff2591aca99c4a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:121 -msgid "" -":guilabel:`Bing Sat` should now be in the list below the :guilabel:" -"`Activate` button." -msgstr "" - -# 10c17189fce844e8af7b367234bb1ea4 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:125 -msgid "3.2. Adding presets" -msgstr "" - -# cd97999c93144b2b921cadd977a6417e -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:127 -msgid "" -"We will be using presets so that we can add special data to OSM. Don’t worry " -"if this is unclear right now - we will learn more about presets as we go " -"along." -msgstr "" - -# 239f22a3abba42939986577e5a197e59 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:131 -msgid "" -"You should still have the Preferences window open. If not, go to :" -"menuselection:`Edit ‣ Preferences` to open the window." -msgstr "" - -# 04e381d545d84f3dbf1486c014bb4d85 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:134 -msgid "On the left side, click the icon that looks like a grid." -msgstr "" - -# f2f89d6ed6d748bb99eda90ddeb3d422 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:139 -msgid "Click the tab at the top that reads :guilabel:`Tagging Presets`." -msgstr "" - -# 8a6410a5698e4ddbb6cdf3f19da07c93 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:141 -msgid "" -"Under :guilabel:`Available Presets` find and select the entry labelled :kbd:" -"`Buildings Indonesia`. Click the blue arrow to the right of this box." -msgstr "" - -# 86f7b72237de4331a0152731dad7fa0b -# 410242614a424e86b0a86167f83fa7ab -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:147 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:192 -msgid "Click :guilabel:`OK`." -msgstr "" - -# e84c080a4ce048f9b20c7cd07e315ef1 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:150 -msgid "3.3. Adding plugins" -msgstr "" - -# 2c48c4379a7d4aeb8ddc4921dd8f21f1 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:152 -msgid "" -"Plugins provide extra functionality for specific purposes. JOSM has many " -"plugins that can be downloaded. To install a plugin follow these steps:" -msgstr "" - -# 1958c52d53514469bed823da43d673bc -# a8703b70c8cf4b62b8ee548fde49e694 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:155 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:184 -msgid "Make sure the Preferences window is open." -msgstr "" - -# c9e05dff4ae04814ae0c0678d50ae0c3 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:157 -msgid "Click the :guilabel:`Plugin` icon on the left:" -msgstr "" - -# 403fd79ebdd94472a9883c16e8330dc2 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:162 -msgid "" -"On the plugin tab, first download the plugin list by clicking :guilabel:" -"`Download list`. It may take a few minutes." -msgstr "" - -# c89f4112728c44f7b3a79d81da872790 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:165 -msgid "" -"After the plugin list appears, type the name of the plugin you want to " -"download in the :guilabel:`Search` box." -msgstr "" - -# 948a7993fb084929be0f2ed74ec9bb77 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:171 -msgid "When the plugin is found, check the box to the left of the plugin name." -msgstr "" - -# 29e42a044ec845fda9e3e7308cd1190a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:173 -msgid "Click :guilabel:`OK` to download and install the selected plugins." -msgstr "" - -# 15a91a3e4cfe4db688f0d371e03fc1d5 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:175 -msgid "" -"Skim through the list to see what sort of additional features are available " -"through plugins." -msgstr "" - -# 8dc0e847c36d4da7ab713f7261f42fa8 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:179 -msgid "3.4. Changing the language" -msgstr "" - -# c1d3da4b678746219303b0e3e8f13a36 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:181 -msgid "" -"JOSM has been translated into many languages. If it has been translated into " -"your language, you can change it in the Preferences." -msgstr "" - -# ced9150eb39744899326443ed8bdb43a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:186 -msgid "" -"On the left side, click the icon that looks like a paint can and paintbrush." -msgstr "" - -# 3dc591235c234877b818e687e91c5973 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:188 -msgid "" -"At the top of the window, click the tab that says :guilabel:`Look and Feel`." -msgstr "" - -# 1f89dc564fb54a789ea149e72a8267fe -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:190 -msgid "" -"Choose your language in the drop-down box next to the word :guilabel:" -"`Language`." -msgstr "" - -# c51c3f8a7d9e43b9ac4efb17093026b7 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:197 -msgid "" -"JOSM must be restarted to save the language settings. Go to :menuselection:" -"`File ‣ Exit`." -msgstr "" - -# e8dbf871f45c47f59c4afa6e286b5fc1 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:200 -msgid "" -"Start JOSM again by going to the Windows :guilabel:`Start Menu`. Find JOSM " -"and click on it to start." -msgstr "" - -# ff57cb2432814682a34d8defbb621f4b -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:204 -msgid "4. Basic drawing with JOSM" -msgstr "" - -# a66cc17762324def9403305602936946 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:206 -msgid "" -"Now let’s open up a sample OSM file which we will use to learn the basic " -"ways to draw maps with JOSM. Note that this map is not real, in that it is " -"not a real map of a real place, so we will not save it on OSM." -msgstr "" - -# 8295cb6e2496431d88128085cca5419e -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:211 -msgid "The file is located in :file:`osm/` and is named :file:`sample.osm`." -msgstr "" - -# 6d6c384c8cb548878e4b3d286e07402c -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:213 -msgid "Open JOSM. Go to :menuselection:`Open`." -msgstr "" - -# 57cf9fba80414a37afb8318694d25515 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:218 -msgid "" -"Navigate to the file :file:`sample.osm`. Click on it, and then click :" -"guilabel:`Open`." -msgstr "" - -# a743fdfc413041e3bc799887ec9533ca -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:221 -msgid "You should now see a sample map, similar to this:" -msgstr "" - -# c3c8ae7c36464e28a07c7fbe1d88cb22 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:227 -msgid "4.1. Basic operations" -msgstr "" - -# 8ffcd03a2e874a9fb2a5e679f17626fd -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:229 -msgid "" -"To move the map left or right, up or down, hold the right mouse button down, " -"and move the mouse." -msgstr "" - -# 86363599827d411593de7feb85fe5112 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:232 -msgid "" -"There are several ways to zoom in and out of the map. With a mouse, the " -"scroll wheel is used to zoom in and out. If you are using a laptop and don’t " -"have a mouse, zoom in and out using the scale bar in the upper-left of the " -"map window. Drag the bar left and right by holding your left mouse down and " -"moving the bar left or right with your mouse." -msgstr "" - -# 1da813f726294be0a8be43b91da3eed7 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:241 -msgid "" -"Look at the sample map. There are a few different types of objects here. " -"There is a river, a forest, some buildings, several roads, and a couple of " -"shops. To select an object, click on it with your left mouse button." -msgstr "" - -# 54b00eeb5c7b4b7a8d01983eb87e7e46 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:246 -msgid "4.2. Points, lines, and shapes (polygons)" -msgstr "" - -# afbdd9685bf94b57b08d6bf7470b83a1 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:248 -msgid "" -"As you click different objects on the sample map, notice that there are " -"three different types of objects on the map. There are points, lines, and " -"shapes. In mapping, shapes are usually called *polygons*." -msgstr "" - -# a3d047c558a84e61a664cf25c69712e3 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:252 -msgid "" -"Points are a single location, represented by symbols. On this sample map, " -"there are two points, a clothing shop and a market. The clothing shop is " -"represented by a shirt symbol, and the market is represented by a shopping " -"cart." -msgstr "" - -# 0e82c37758d1422498a45b8c14462d93 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:257 -msgid "" -"There are several lines on the map as well, which represent roads. If you " -"look closely you will see that within the lines, there are points as well. " -"These points don’t have any symbols or other information associated with " -"them, but they help to define where the line is located." -msgstr "" - -# 377f9d16775845c395df4f9c0b77c401 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:262 -msgid "" -"Lastly, there are numerous shapes on the sample map, representing different " -"places - a forest, a river, and buildings. A shape generally represents an " -"area, like a field or a building. A shape is exactly like a line - the only " -"difference is that the line begins at the same point where it ends." -msgstr "" - -# e0a1f1d878a04b9498659ce1c25d9bc0 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:268 -msgid "" -"Notice that when you select an object, a list appears to the right of the " -"map in a window called :guilabel:`Properties`. These are known as tags. " -"**Tags** are information that is tied to a point, line or shape that " -"describes what it is. For now all you need to know is that this information " -"helps describe whether our object is a forest, a river, a building or " -"something else." -msgstr "" - -# e06a56cc729b4690aa9d69c2dae8fee4 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:275 -msgid "" -"Think about drawing a map by hand, and how you are also drawing points, " -"lines and shapes. What other places are best represented by points? Lines? " -"Shapes?" -msgstr "" - -# dc93c8dd36fb433eb3dfbd5f3f6dbbab -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:279 -msgid "Now, let’s practise drawing an object (point, line and shape)." -msgstr "" - -# be030a0a035043e2b755e67f5c03c288 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:281 -msgid "" -"On the left side of JOSM is a column of buttons. Many of these buttons open " -"new panels on the right side that provide more information about the map. " -"The most important buttons are at the top of the column. These buttons " -"change what you can do with your mouse. The top four buttons in this column " -"are the most important. They allow you to: :guilabel:`Select`, :guilabel:" -"`Draw`, :guilabel:`Zoom in` and :guilabel:`Delete`" -msgstr "" - -# 2e724095b19b4c6484149891f7f934a0 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:289 -msgid "" -"Until now, you have been using the :guilabel:`Select` tool, which looks like " -"this:" -msgstr "" - -# f503e6ef3b2c458295cbecb2c538d9b9 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:295 -msgid "" -"Before drawing, we need to make sure that nothing is selected. Click in the " -"black space on the map, where it is empty, to make sure nothing is selected." -msgstr "" - -# 2d2f337e802c4c30ad72a7b5beebabe1 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:299 -msgid "Click the second button, the :guilabel:`Draw` tool." -msgstr "" - -# 8809457fb8134462a566a9234734c96d -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:304 -msgid "" -"Find an empty area on the map, and double-click with your mouse. This will " -"create a single point." -msgstr "" - -# 4a110f2d95b049279f572250e6eedda2 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:307 -msgid "" -"To draw a line, single-click with the mouse. Move the mouse and click again. " -"Continue until you are happy with the line. To end the line, double-click." -msgstr "" - -# 4f3371bd0179427f8797705c4e41e94d -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:311 -msgid "" -"Draw a shape the same way that you draw a line, but finish the shape by " -"double-clicking on the point where you started the line." -msgstr "" - -# 2eb0f0a5a7604bb397c4e4dd72168cf6 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:315 -msgid "4.3. Changing objects" -msgstr "" - -# c9937f6346b942bcb9a0fb36747616ca -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:317 -msgid "" -"Select the forest on the left side of the map. Be sure to click on the line " -"around the forest, not one of the points on the line. Now hold your left " -"mouse button down and drag your mouse. You should be able to move the forest " -"to a new location on the map." -msgstr "" - -# 896ce24f6d0f4bd398d52a8ddfc64f3b -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:322 -msgid "" -"Click on one of the points on the line around the forest. Hold your left " -"mouse button down and drag your mouse. You should be able to move the point. " -"This is how you can change the shape of an object, or move a point." -msgstr "" - -# 9ded68436f2f41d6b254d14d11a9adb9 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:327 -msgid "4.4. Adding presets" -msgstr "" - -# 8e509cdf78264fbab594e01a28ba3b96 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:329 -msgid "" -"Now we know how to draw points, lines and shapes, but we still haven’t " -"defined what they represent. We want to be able to say that our points are " -"shops, schools or something else, and whether our shapes are fields, " -"buildings or something else." -msgstr "" - -# 2100d1a5df53439f8ff727f95e38dc4f -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:334 -msgid "" -"Click the :guilabel:`Select` tool, in the column of buttons on the left." -msgstr "" - -# b1ee064287ae42e9a398b1c519258c74 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:339 -msgid "" -"Select one of the objects that you drew with the :guilabel:`Draw tool`. On " -"the top menu, click :menuselection:`Presets`. Move your mouse through the " -"sub-menu to the type of location you would like to define." -msgstr "" - -# 08fab263bcfb48b8bb4f3f8d652ebb27 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:343 -msgid "" -"When you click on a preset, a form pops up asking you for more information. " -"You do not have to fill in every field, but you may wish to add some " -"important fields, such as the name of the object." -msgstr "" - -# 68f6d34bddec492d8bb2b137ac35dcb3 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:347 -msgid "" -"When you are finished entering the information, click :guilabel:`Apply " -"Preset`. If everything went well, your point, line or shape should change " -"colours or show a symbol. This is because it has now been defined." -msgstr "" - -# a338c0c974ba44fba16c9cd581620886 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:352 -msgid "Exercise:" -msgstr "" - -# c511b4de107f41878bdd4762705d56cd -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:354 -msgid "" -"Now let’s draw a map in order to practise the techniques we've learned. You " -"may wish to redraw the map that you drew on paper in Module 1." -msgstr "" - -# 1b13d6ffbcfa49a7b670e5481f4006a4 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:357 -msgid "" -"Drag the window away from the sample map by holding the right mouse button " -"and dragging your mouse, until you have a nice empty area to draw on." -msgstr "" - -# a6a588bfbfd34027a0a1caa962d91477 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:360 -msgid "" -"Use the Draw tool to create points, lines and shapes. Describe what your " -"objects are by selecting from the Presets menu." -msgstr "" - -# fafc6e396ed943659ec0768de604ad33 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:363 -msgid "" -"When you are finished, you should have your own map, similar to the sample " -"map that we opened in :file:`sample.osm`." -msgstr "" - -# bbb8a1f6e7a7430ea734899f11db0575 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:366 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/104-using-gps.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/104-using-gps.po deleted file mode 100644 index a54c28c0..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/104-using-gps.po +++ /dev/null @@ -1,846 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 2bee2cac66624c2e84aca32ab4e609cc -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:9 -msgid "Module 4: Using GPS" -msgstr "" - -# fb12f45a7e994e038d2fad9157922564 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:11 -msgid "**Learning Objectives**" -msgstr "" - -# 5ec7341a299f4a2fa35b0e39683a08ce -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:13 -msgid "Understand GPS and the types of GPS" -msgstr "" - -# 12c83e72f0fb4f79be65dc7042863fd9 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:14 -msgid "Turn on GPS" -msgstr "" - -# 88ca4cc4bf5f4ee49b92f4e07feabd2e -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:15 -msgid "Understand factors that affect GPS accuracy" -msgstr "" - -# 7b95d774fed94f53ab641b8d1e149e41 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:16 -msgid "Understand tracks and waypoints" -msgstr "" - -# b5db5e408a6a4ebcbbbae2407d9ed0f2 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:17 -msgid "Collect data using GPS" -msgstr "" - -# 06d1affdc9dc46d88230f1f30e4eef9d -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:18 -msgid "GPS settings" -msgstr "" - -# 4105f06aae63424a9ca8d517f397d20a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:19 -msgid "Copy GPS data (tracks and waypoints) to computer" -msgstr "" - -# d7519d9336a741aab4b43600d15beef3 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:20 -msgid "Open waypoints and tracks in JOSM" -msgstr "" - -# ffa9c562923b4c4bab16833f7a527586 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:21 -msgid "Upload GPS tracks using JOSM" -msgstr "" - -# c033133c2d7d400695f38b5cf4d1102a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:22 -msgid "Edit OSM based on GPS data in JOSM" -msgstr "" - -# 6515a5b5aff74f2a8d30273e729261ec -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:24 -msgid "" -"In this module we see what a GPS does and how it works. We explore how to " -"operate a GPS and how to use it to create maps. We will explain how to " -"operate the Garmin eTrex Vista HCx, a common GPS used for mapping. There are " -"many other models of GPS which do the same thing, so if you are working with " -"a different one, don’t worry - the principles remain the same." -msgstr "" - -# 9bf6ada973e74a218a6c21655d0fb0cb -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:32 -msgid "1. What is GPS?" -msgstr "" - -# cefd861fe6bb403397c1dc1875d55da7 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:34 -msgid "" -"A GPS is like a mobile phone, except that instead of receiving radio signals " -"from telephone companies, it receives signals from satellites that are going " -"around the Earth. By receiving these signals from the satellites, a GPS is " -"able to calculate its exact location on the planet. It records this location " -"in coordinates, which are two long numbers. One number tells you how far " -"east or west you are - this is called **longitude**. The second number tells " -"you how far north or south you are - this is called **latitude**. Every " -"place on Earth has unique geographic coordinates." -msgstr "" - -# cea78f7f6dda44cf9c4212595bb5023c -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:43 -msgid "" -"For example: -8.639298 Latitude, 116.311607 Longitude is a location in " -"Lombok, Indonesia." -msgstr "" - -# 4d2145eec5734f6c924f7c9f741cc877 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:49 -msgid "" -"*Google Earth software, showing coordinates of a place in Lombok, Indonesia.*" -msgstr "" - -# e244a0495b8041f9b29a1a4349073fa2 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:55 -msgid "*Garmin eTrex Vista HCx*" -msgstr "" - -# 69e5a5650db942e3828c7c68165df6d0 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:58 -msgid "2. Turning on the GPS" -msgstr "" - -# 8184c5fcf3a74185abf964e40dfdb061 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:60 -msgid "" -"Before turning on your GPS, go outside where you have a clear view of the " -"sky. Because the GPS determines your location by receiving signals from " -"satellites, **it won’t work indoors**." -msgstr "" - -# 7016dbead24e456d85f373c909d1583a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:64 -msgid "" -"On the right side of the GPS, press and hold the :guilabel:`Power` button. " -"The GPS will start, and it will show you the Satellites page. You should see " -"something like the image below. The GPS is looking for satellite signals. " -"When it has connected to three or more satellites, it will have your " -"location." -msgstr "" - -# 980b87228f5a4d58aa101d70bd0ee01b -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:73 -msgid "" -"Once your location is determined, the Satellites page will disappear and you " -"will see the Main Menu." -msgstr "" - -# 6b123c94d218446f884bede2f03dff8b -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:81 -msgid "3. Navigating the GPS" -msgstr "" - -# 20705f4a0c7e4625b9a7894cf8e88f7b -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:83 -msgid "" -"The GPS has different pages and menus that allow you to do different things. " -"To switch between pages, press the button marked :kbd:`X`, just above the " -"power button on the right side of the device. This button also serves to go " -"back. If you press something by mistake and would like to cancel or go back, " -"press the :kbd:`X` button." -msgstr "" - -# d4482897f95b446b904e1246b8e5ad48 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:89 -msgid "" -"By pressing the :kbd:`X` button, you should be able to flip through " -"different screens that will look something like this:" -msgstr "" - -# 52c691ba7f394e39a1cfc79e1caec6ac -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:108 -msgid "" -"Return to the Satellites page and see that you are connected to three or " -"more satellites. In the upper left corner are your coordinates, your " -"latitude and longitude." -msgstr "" - -# 19c63a323625419f8324117ed551ef14 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:112 -msgid "" -"Flip to the Map page, and you can see a map of where you are. If you have " -"added OpenStreetMap maps to your GPS, you may see roads and places. " -"Otherwise, the map may look quite blank. Zoom in and out by pressing the up " -"and down arrow buttons on the left side of the GPS." -msgstr "" - -# d4347cee5bf941818bb01415ffd46f70 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:118 -msgid "4. Tracks and waypoints" -msgstr "" - -# 8f22126f02fb4b47b8a79cf9531984a1 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:120 -msgid "" -"A GPS records two kinds of information that are useful for creating maps or " -"saving the coordinates of a place. First, it allows you to save your " -"location in the memory of the GPS. When you save a location, the coordinates " -"will be saved with a name. For example, your first saved point will be named " -"001, the second 002, and so on. When you save a point, you can write down " -"the number on a piece of paper, along with a note about what it is, and any " -"attributes or indicators you would like to collect. Saved locations on your " -"GPS are called waypoints." -msgstr "" - -# ae4ef85c47f94e3dae133901b9996eae -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:130 -msgid "" -"Second, a GPS can save what are called tracks. While a waypoint only saves a " -"single location, a track will save a series of locations wherever you move. " -"For example, a track will record your location every one second, or every " -"one metre, and the result will be a series of dots that show the path of " -"where you have been. Tracks are useful for mapping objects that are " -"represented by lines or shapes, such as the course of a road or the shape of " -"a field." -msgstr "" - -# 2cc62f04e8de480a92236df1f0664f4d -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:142 -msgid "" -"A GPS can record a single point as well as a path of where you travel. Here " -"the points are numbered in the order they are recorded. The path or " -"**track** is shown with a green line and the **waypoints** are shown in red." -msgstr "" - -# 45b3e8ba541b406c9c2500c1778162e0 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:148 -msgid "5. Saving Your location" -msgstr "" - -# 040dbaea4ba44b5ebc4f377af2ebfc71 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:150 -msgid "" -"To save your current location as a waypoint, click the :kbd:`X` button until " -"your reach the Main Menu. Using the joystick, move it so that :guilabel:" -"`Mark` is highlighted on the screen. Push the joystick button down to open " -"the Save Waypoint page." -msgstr "" - -# d1dd904601104b6e94478f98416c7777 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:163 -msgid "" -"You can see on this page some information about the waypoint that you are " -"saving. First is the name. If this is your first waypoint, it probably reads " -"“001”. This is the number you should record on paper along with the " -"information you want to collect with this object. Next you will see the time " -"and date when the point is recorded. Below that are the coordinates, " -"followed by the altitude." -msgstr "" - -# 6e1ece11fbfa4537b70ccf8b8a22b4f0 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:170 -msgid "" -"Use the joystick to move to the :guilabel:`OK` button at the bottom of the " -"screen. Press the joystick button down to save this point. Be sure to write " -"down the number of the point, along with what the place is and any other " -"information you want to record about the place in your notebook." -msgstr "" - -# b7af37a5032d4f59be8837f0124ef7d0 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:175 -msgid "" -"Press the :kbd:`X` button to go to the Map page. You should now see your " -"point on the map." -msgstr "" - -# 970dcff22bf14e2e9c27886aaa51c14f -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:181 -msgid "6. Turning on the Track Log" -msgstr "" - -# 62430738f836419ca2144e8d40e28313 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:183 -msgid "" -"Now that we have learned how to save points, let’s learn how to turn the " -"track log on and off. When the track log is turned on, it will automatically " -"record your path. It’s good practice to turn on the log when you begin " -"mapping, and turn it off when you are finished. You will then be able to " -"look at the track on a computer and see the path that you mapped. If you " -"would like to map the course of a road, it is a good idea to save a waypoint " -"at the beginning and end of the road, writing in your notebook the name and " -"type of the road, and any other important information about the road." -msgstr "" - -# 25a4de21f20a495fac71021b085d7796 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:193 -msgid "" -"Click the :kbd:`X` button until your reach the page that says Track Log." -msgstr "" - -# ddf1c644a4fd4c7c8760fffa3ff014ec -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:200 -msgid "" -"To empty the track log (to delete earlier recordings), use the joystick to " -"select :guilabel:`Clear`, and press the joystick down. The bar at the top " -"should read “0%”." -msgstr "" - -# 0fbc851f9ccf45db9ea14ba608af9de7 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:204 -msgid "" -"To turn on the log, move the joystick to highlight :guilabel:`On`, and press " -"the joystick down. The track log is now recording your path." -msgstr "" - -# cf5069618c154a41a67d708c65cc7019 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:207 -msgid "" -"Under :guilabel:`Setup`, you also can set time or distance intervals to " -"track. Time intervals instruct your GPS to record your location at given " -"intervals. If you have a memory card in your GPS, it is good practice to set " -"this to one second, meaning that every second your location will be added to " -"the track log. This may be useful when detailed surveys are needed." -msgstr "" - -# 06c45b720c5d4ee0ac85f81b41d20ec9 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:214 -msgid "" -"See :ref:`GPS Settings ` for more information on " -"setting up the track log." -msgstr "" - -# 0a13dedec613431a94396fc7fc51e6cb -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:217 -msgid "" -"Press the :kbd:`X` button to go to the Map page. As you move you will see " -"your track shown as a series of dots." -msgstr "" - -# 52e014cdbb214b5e870a3b3d5317c79a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:221 -msgid "7. GPS settings" -msgstr "" - -# 560b2265fa8640ef82cfe4cb31d4592e -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:223 -msgid "" -"Here we demonstrate how to edit some of the core settings of the GPS device. " -"Use this as a reference to set up your GPS properly." -msgstr "" - -# e92a6226ad64413983481dfa72b6dd56 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:227 -msgid "7.1. System settings" -msgstr "" - -# 353bdb384dee4064a380073c7f2aebe8 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:229 -msgid "" -"Go to the Main Menu by using the :guilabel:`Page` button (the :kbd:`X` " -"button on the right side of the device). Use the joystick to click :guilabel:" -"`Setup`, and then click on :guilabel:`System`." -msgstr "" - -# 89a008a4ff044737b0824ffe806e94b4 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:241 -msgid "" -"Some of the settings that can be changed on the :guilabel:`System` menu are " -"as follows:" -msgstr "" - -# 238247eb9fe945a084522be8bd1be147 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:244 -msgid "" -"**GPS**: regulates how the GPS sensor works. Choose the :guilabel:`Normal` " -"option. This tells the device to capture only signals from GPS satellites. " -"The only drawback is that positional accuracy may sometimes be less accurate " -"(about 10-30 metres)." -msgstr "" - -# 56256dab97ca406c83d5c2f6c4ca0954 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:249 -msgid "" -"**WAAS/EGNOS**: WAAS stands for Wide Area Augmentation System, while EGNOS " -"stands for Euro Geostationary Navigation Overlay Service. WAAS/EGNOS is a " -"system of satellites and ground stations that provide GPS signal " -"corrections, giving you a better position accuracy (to less than three " -"metres). Ensure that it is :guilabel:`Enabled`. The drawback to this feature " -"is that although it provides better accuracy, it will use the GPS battery " -"more quickly." -msgstr "" - -# f14a1672b2c64598bda928258ea6bb69 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:260 -msgid "" -"**Battery Type**: To optimise power usage, this should match the type of " -"battery in the device. The default is Alkaline." -msgstr "" - -# ee8a8ad11ba34c339c91439aea760cbe -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:263 -msgid "**Text Language**: Choose the language for the device." -msgstr "" - -# 5256182055dc41258f32052a27854404 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:270 -msgid "7.2. Unit settings" -msgstr "" - -# 9e829fe5399647c4b80235cd313eba2f -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:272 -msgid "" -"From the Main Menu, go to :menuselection:`Setup ‣ Units`. Here the type of " -"measurement units can be set, such as metres, feet and more. The location " -"unit format is also set here (decimal degrees, decimal minutes degrees, " -"second minutes degrees), datum (standard WGS 84) and projection (standard " -"WGS 84)." -msgstr "" - -# 9a2c756da73043ff9904147bb0990bb5 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:287 -msgid "7.3. Time settings" -msgstr "" - -# 240968d716cd4502a1f2877384558cb9 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:289 -msgid "" -"From the Main Menu, go to :menuselection:`Setup ‣ Time`. Here the time " -"format is set (12 hours or 24 hours) as well as the time zone. It is good to " -"have the local time set, because all tracks and waypoints saved in the " -"device are also saved with the current time." -msgstr "" - -# 80a33a771fc24c8fab6cf4435e8f563e -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:303 -msgid "7.4. Page settings" -msgstr "" - -# 964303da31384ad8b418e22cef8dd0b1 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:305 -msgid "" -"Remember that when you press the :guilabel:`Page` button (the :kbd:`X`) you " -"are able to switch between different menus. By editing the page settings, " -"the pages, as well as their order, may be customised." -msgstr "" - -# 69269df59ece41db8b0660b501011a3f -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:309 -msgid "From the Main Menu, go to :menuselection:`Setup ‣ Page Sequence`." -msgstr "" - -# c30734ab09f644c5b981178d04488581 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:311 -msgid "" -"Add a new page to the list by selecting :guilabel:`Add Page`. Then select a " -"page such as: :guilabel:`Tracks` (to see details of your trip), :guilabel:" -"`Map` (to view maps), or :guilabel:`Satellite` (to view the satellite " -"status, position, and accuracy)." -msgstr "" - -# 6945397083974bee9dd1b91c6dd42621 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:316 -msgid "" -"Click on one of the pages to move it around the list and change the order in " -"which the pages flip." -msgstr "" - -# 4b50771c070947219d2535b1e5d02169 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:331 -msgid "7.5. Track settings" -msgstr "" - -# e2f561e1b03f4d6f9cb9cd64ae47b843 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:333 -msgid "" -"Remember that :ref:`tracks ` are a bread-crumb trail " -"recording your movement, which is useful for mapping roads. On the Track " -"page there are several settings." -msgstr "" - -# b5fd2b4f4af04020a8c9f8101453ff1e -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:337 -msgid "From the Track page, click :guilabel:`Setup`." -msgstr "" - -# 43bf11fd96e24061b432735c9f74eb5a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:343 -msgid "The settings are as follows:" -msgstr "" - -# 7a504c1d984244ef929fd2529da9f892 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:345 -msgid "" -"**Wrap When Full**: This option should be checked. It means that when the " -"GPS runs out of internal memory, it will start overwriting the oldest " -"trackpoints to record new ones. It is a good idea to keep this checked, " -"although typically you will be recording tracks to a memory card anyway, " -"making this option unimportant." -msgstr "" - -# 7e5cf265891b49f8b96fb8e2d4c04571 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:351 -msgid "" -"**Record Method**: There are several ways the GPS can record track points:" -msgstr "" - -# 5f76abe5dca949bda5ac1a9e0a1ae110 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:353 -msgid "" -"*Distance*: tracks a new point each time a certain distance has been covered" -msgstr "" - -# d2cb8b8c98f84677b02de77fbd795b06 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:354 -msgid "*Time*: tracks a new point when an amount of time has elapsed" -msgstr "" - -# d5b97f8f1fc34cae8f573fafa3670711 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:355 -msgid "*Auto*: automatically choose method (typically this should be selected)" -msgstr "" - -# 91474a4351c64192847615169bc016fc -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:357 -msgid "" -"**Interval**: This setting indicates how often the GPS will record the " -"track, depending on the method selected in **Record Method**. Using a high " -"setting (collecting many points) here will result in tracks that are smooth " -"and detailed but will also drain the battery faster. If **Record Method** is " -"set to *Auto*, the **Interval** options will be as follows:" -msgstr "" - -# dc2408aa02c542348b7d7d360d1894da -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:363 -msgid "*Most often*" -msgstr "" - -# 135f58b9bc0f4b5ca86c9a9862adcbd8 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:364 -msgid "*More often*" -msgstr "" - -# 96a220dac8e9422ba2b6baf4a46d5bca -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:365 -msgid "*Normal*" -msgstr "" - -# 23b0b7f4365a48539391ec398f872fd9 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:366 -msgid "*Less often*" -msgstr "" - -# 94aeb4de6ac54dce85e7c80e2d569201 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:367 -msgid "*Least often*" -msgstr "" - -# 2f9b0128cde148fc8070cf7eb4520c97 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:369 -msgid "" -"If **Record Method** is set to *Distance* or *Time*, the options will allow " -"you to set a matching unit of measurement." -msgstr "" - -# bc14ba29cc844de09e73bcaaf1812261 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:372 -msgid "" -"**Color**: This setting is for defining the colour of the track line as " -"shown on the GPS map page." -msgstr "" - -# f5d0720d08574759aa238987eac9059a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:381 -msgid "8. Copying waypoints and tracks to the computer" -msgstr "" - -# 0dbd4c3d89254374bc6d51d218f95bf4 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:384 -msgid "8.1. Attaching GPS to the computer" -msgstr "" - -# 874fa508f5934637a584a320aab533bd -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:386 -msgid "" -"When you are finished mapping with the GPS you will want to copy the points " -"and tracks to your computer so that you can open them in JOSM." -msgstr "" - -# 45a11a01023d4449af5930ee113ce245 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:389 -msgid "" -"First, turn off the track log on your GPS by going to the Track page and " -"selecting :guilabel:`Off`." -msgstr "" - -# 7734321fe5f74884b5a1947e6e56bacd -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:392 -msgid "" -"Attach the GPS to your computer with the cable. One end should plug into " -"your computer’s USB port, and the other goes into the back of the GPS, " -"beneath the rubber flap at the top. The GPS should be turned on to copy the " -"points and tracks." -msgstr "" - -# f19bab8f3bc74e3abd85790f7c802c24 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:399 -msgid "8.2. Installing GPS drivers" -msgstr "" - -# 0be198b36ade428598eee32639c85a31 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:401 -msgid "" -"You may need to install GPS drivers on your computer. Open your training " -"folder and find :file:`software/USBDrivers_23.exe`. Double-click it and " -"install." -msgstr "" - -# 922b32c22f0140a3ab0070bc7b981346 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:405 -msgid "" -"If you don’t have this file, you can download it. Open your internet browser " -"and go to: `http://www8.garmin.com/support/download_details .jsp?id=591 " -"`_" -msgstr "" - -# 4d2d9d23e3044acaa36eaf6ec89532e0 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:409 -msgid "" -"Click :guilabel:`Download` to get the installation file. Locate it on your " -"computer, and double-click to install." -msgstr "" - -# 528fce120c404d3a84cef4c5b1bb1c7d -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:414 -msgid "8.3. Getting the GPSBabel setup program" -msgstr "" - -# de20e8f2f0b840a5b499e9271c3fb6d8 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:416 -msgid "" -"GPSBabel is a program that allows us to copy data from the GPS. It is saved " -"as :file:`GPSBabel-1.5.1-Setup` in the :file:`software` folder (the exact " -"version number may be different)." -msgstr "" - -# 555d9d43435c4c88b8d6a51773e3c739 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:420 -msgid "" -"If you don’t have GPSbabel already, open your web browser and go to `www." -"gpsbabel.org `_." -msgstr "" - -# 893c2cfa21fd4d86a3cf4c63587c07ba -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:423 -msgid "Click :guilabel:`Downloads` at the top of the page." -msgstr "" - -# 69de5503b6344676b0774e70c27c781b -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:425 -msgid "" -"Scroll down the page. If your computer uses Windows, you want to download " -"the installation file for Windows. Click :file:`GPSBabel-1.5.1-Setup.exe`. " -"The file will be downloaded to your computer." -msgstr "" - -# e8841d3a8e3c4afeac4b2f6530c88666 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:432 -msgid "8.4. Installing GPSBabel" -msgstr "" - -# 640871c01067464aaf7b28ea5212d0f3 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:434 -msgid "" -"Locate the GPSBabel setup file on your computer. Double-click it to install." -msgstr "" - -# c89e91bff0c74d0489c75e439ed312e8 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:436 -msgid "Click :guilabel:`Next`." -msgstr "" - -# e2975f54242348be96af33501ff29f9f -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:438 -msgid "Click :guilabel:`I accept` and :guilabel:`Next`." -msgstr "" - -# 1485919fa7eb4f54a39b52f9e649fa87 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:440 -msgid "Continue clicking :guilabel:`Next` until the program installs." -msgstr "" - -# d83657b2d04f4f13a6e0445509162480 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:442 -msgid "" -"When the program has finished installing, click :guilabel:`Finish` to start " -"GPSBabel." -msgstr "" - -# 847d7c2bca8e453b9ef13d6801820116 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:447 -msgid "8.5. Copying Tracks and Waypoints" -msgstr "" - -# 1750918deb144149bc6409ee9597853c -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:449 -msgid "" -"Click in the circle next to the word :guilabel:`Device` at the top of the " -"window." -msgstr "" - -# 1d1f164c10fe40fa94135ac24d870c84 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:456 -msgid "" -"In the drop-down menu labelled :guilabel:`Format`, select :guilabel:`Garmin " -"serial/USB protocol`" -msgstr "" - -# ccdf242887274a3ea0bc391925cf5680 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:459 -msgid "" -"Go down to the middle of the window, under :guilabel:`Output`. In the drop-" -"down menu labelled :guilabel:`Format`, select :guilabel:`GPX XML`:" -msgstr "" - -# 5a9fa35985f24a74ad740b9416cd3fdd -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:466 -msgid "" -"Click :guilabel:`File Name` and type a name for your saved file. It should " -"be something that describes the data, such as the date and the location. For " -"example: :file:`jakarta-07-07-2011`." -msgstr "" - -# 95d1b3d52a644c7687060ad2af5ce57b -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:470 -msgid "Make sure your GPS is connected to the computer and turned on." -msgstr "" - -# e3e431d379e541fe947ca5244c18b2a4 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:472 -msgid "Click :guilabel:`Apply` in the bottom right corner of the window." -msgstr "" - -# ee54df3a0a1c4d4abddeb2e9fd0538f7 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:474 -msgid "" -"If all goes well you should see a bar move across the screen, indicating " -"that the data is being retrieved from the GPS. When it is finished, your " -"points and track will be saved in the file that you selected." -msgstr "" - -# 0a635c66c257454fbc1b56a260ab108a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:480 -msgid "8.6. Opening in JOSM" -msgstr "" - -# 11ad7eab053f46f495b3cddea02d83e5 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:482 -msgid "Now open JOSM. Go to :menuselection:`File ‣ Open...`" -msgstr "" - -# 442ee4d47674450ab3de677150978e64 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:484 -msgid "" -"Find and select the file that you created with GPSBabel. Click :guilabel:" -"`Open`." -msgstr "" - -# 7505e68fbb0942c289cac5fb395cf8a8 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:487 -msgid "You should now see your points and tracks loaded into JOSM." -msgstr "" - -# c1bf8b128c3b4d76abfdc84a0280b71f -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:494 -msgid "9. Uploading GPS data in JOSM" -msgstr "" - -# 2a86af697bd041c4ae8b2c446c1ae22c -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:496 -msgid "" -"If you are not interested in sharing your tracks publicly on OSM, feel free " -"to skip this section." -msgstr "" - -# 4b0f84a3cdef461088d6c4d5880e5315 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:499 -msgid "" -"Adding GPS tracks to the OSM server is useful because it enables other users " -"to see and use your tracks. For those who do not have a GPS or who can't " -"access a location, they are still able to benefit from your work and help " -"improve the map." -msgstr "" - -# 28b2ba79ce15408794fab7d827317faf -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:504 -msgid "" -"The easiest way to upload GPS tracks is to download the JOSM plugin :" -"guilabel:`DirectUpload`:" -msgstr "" - -# 84dc13cb47c947c2ab76260c035b65fe -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:507 -msgid "" -"Open JOSM and go to :menuselection:`Edit ‣ Preferences`. Click the plugins " -"tab." -msgstr "" - -# b1c24b248abe473f9a4dd5ec095a9319 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:510 -msgid "" -"Type :kbd:`directupload` in the :guilabel:`Search` box. Check the box next " -"to the plugin, and then click :guilabel:`OK`." -msgstr "" - -# b14af88ae6dd4577a65239457afdb3d2 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:517 -msgid "Restart JOSM." -msgstr "" - -# 16d8f71a05a6465cad1fcfa3b3f22f75 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:519 -msgid "Open your GPX file in JOSM." -msgstr "" - -# c3d97a0a9e914080b4f944f05c487a1b -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:521 -msgid "Go to :menuselection:`Tools ‣ Upload Traces`" -msgstr "" - -# 3393568f90124a30a9f7e5e339e33a72 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:526 -msgid "" -"Add tags, a description, and choose an option for whom to make the track " -"visible. Unless you have a reason for doing otherwise, choose :guilabel:" -"`Public`." -msgstr "" - -# 3cbe1ced9bc040e791378b7f314e7e9c -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:533 -msgid "" -"Click :guilabel:`Upload Trace`. If requested to enter a username and " -"password, enter the credentials of your OSM account and click :guilabel:" -"`Authenticate`." -msgstr "" - -# b6c80addcf0642868923b6da561f32bc -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:539 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/105-field-papers.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/105-field-papers.po deleted file mode 100644 index a49b9e6a..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/105-field-papers.po +++ /dev/null @@ -1,444 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 0df337fab1f940b29b6533cc21672a5b -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:10 -msgid "Module 5: Field Papers" -msgstr "" - -# cca7cb3d3c664af69e68eb758f26701c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# e3119ad4a2b54e58a34c489d5cc1a90e -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:14 -msgid "Understand how to use Field Papers" -msgstr "" - -# ad3d6dcf0e1d436ba0df0e2816eae85c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:15 -msgid "Make and print Field Papers" -msgstr "" - -# ef1f77b48a014e05bb3820e9b9259272 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:16 -msgid "Add information to Field Papers" -msgstr "" - -# 491236f9316d490685256ae560f156bc -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:17 -msgid "" -"Scan and upload Field Papers to `fieldpapers.org `_" -msgstr "" - -# d9a6150e108c44e5ad4aaa220066e5ad -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:18 -msgid "Open Field Papers in JOSM" -msgstr "" - -# 930137a250cb47de9be8d2273e7a87e8 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:20 -msgid "" -"In this module we will see how it is possible to record the coordinates of " -"places without a GPS. We will use a tool called Field Papers, which allows " -"you to print a map of an area, draw on it and add notes, and load the paper " -"back into JOSM, where you can add your locations to OpenStreetMap." -msgstr "" - -# 24159dc45c1d4326a20815a29bff8215 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:27 -msgid "1. Overview" -msgstr "" - -# 57d3d07b29374c6ea6cefe6a4ec8efdd -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:29 -msgid "" -"Before going into detail about Field Papers, let’s look at an overview of " -"how the process works:" -msgstr "" - -# 700da5a90f1d4fd0a91e36f4dc679d85 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:32 -msgid "" -"**Step 1:** Locate the area you want to map on the Field Papers website. " -"Print out a map of this area. You can choose to print the current map of the " -"area with OSM, or you can choose to print aerial imagery, if it is available " -"in your area." -msgstr "" - -# b3fe28b5d2f342ae92fa61d640093d37 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:37 -msgid "" -"**Step 2:** Use your printed map to survey the area. Add more places by " -"drawing them on the map. Draw lines for roads, shapes for buildings, and so " -"forth. Write notes about each location directly on the map, or write numbers " -"on the map that relate to numbers in your notebook, where you can record " -"more detailed information about each object." -msgstr "" - -# 9e393b38e439431f905bce9d92d5c84c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:46 -msgid "" -"**Step 3:** Scan your paper into the computer. If you do not have a " -"scanner, you can take a photograph of the paper, if your camera is able to " -"take high quality pictures. Upload the image to the Field Papers website " -"(`http://fieldpapers.org/upload.php `_)." -msgstr "" - -# 80adf9c8ebbd400b81923520e51d1de0 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:51 -msgid "" -"**Step 4:** In JOSM, load the Field Paper. Use the objects you drew as a " -"reference to add them digitally into OSM." -msgstr "" - -# 6d3b556d56914fb89cceeadfb77e66ab -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:58 -msgid "2. How does Field Papers work?" -msgstr "" - -# 068001743b824d818af00bf1a27fcf34 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:60 -msgid "" -"If you follow the Field Papers process described above, you will be " -"collecting accurate geographic coordinates of places with nothing more than " -"paper. How is this possible?" -msgstr "" - -# f68cec64fe90425abf8c3a1a6a7a0aa1 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:67 -msgid "" -"When you print a Field Paper, it comes with a square barcode on the bottom " -"of the page. This bar code allows Field Papers to determine the exact " -"location of the map that you are using to survey. Later, when you load the " -"paper back into JOSM, all the objects that you drew will be in shown in " -"their actual locations, or at least quite close, which is good enough for us." -msgstr "" - -# fa51b850df7c4ce1a4a4ab3987157853 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:74 -msgid "Next let’s learn how to create and use Field Papers." -msgstr "" - -# 95795e8cf8a043c08bd17086b8631757 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:77 -msgid "3. Create and print" -msgstr "" - -# 73457461fed340a8b472ea4a26dc40ff -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:79 -msgid "" -"Open your web browser - this may be Firefox, Chrome, Opera, or Internet " -"Explorer." -msgstr "" - -# 29a972add0fb4914a17208edaa3a2025 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:82 -msgid "" -"In the address bar at the top of the window, enter `http://fieldpapers.org/ " -"`_ and press :kbd:`Enter`." -msgstr "" - -# fafa097e0a9f43238c5227a9a6efac1e -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:86 -msgid "The website should look something like this:" -msgstr "" - -# cbe300fced2b4f59a3055e91f5d0a45a -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:91 -msgid "Click :guilabel:`Make yourself an Atlas`." -msgstr "" - -# 0ad65dc8d2894bd28a2a1a279f9faa1c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:93 -msgid "" -"Enter the name of a place where you would like to print out a map, and " -"press :kbd:`Enter`. In this example we will search for :kbd:`jakarta`." -msgstr "" - -# c47e31f9c380454f8c3a81262c0f8b44 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:99 -msgid "" -"Now you are presented with an interface where you can define the boundaries " -"of your Field Paper. The map that you see shows the area that you would like " -"to print on paper. You can print multiple pages, zoom in and out, and drag " -"the papers to cover specific boundaries on the map." -msgstr "" - -# f2802f013b014296a5a3c4542f8e3a20 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:107 -msgid "" -"Click on the various buttons to see what each does. Notice that in our " -"example we are presented with a two page set of Field Papers. To add or " -"subtract a page, click on the :guilabel:`+` and :guilabel:`-` buttons on the " -"map. It may be easiest to create only one page the first time that you use " -"Field Papers." -msgstr "" - -# e0502b80467b475ebe1cf61cf3d02a82 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:116 -msgid "" -"Expand or decrease the area of the papers by dragging the button in the " -"lower right corner." -msgstr "" - -# bda315741c2049b78bbd9146c320db7c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:122 -msgid "" -"Move the paper by clicking and dragging the button in the upper left corner." -msgstr "" - -# ce52ab5df3814015bc0c5b42bf069a4b -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:127 -msgid "" -"Adjust the paper orientation and type of map using the controls at the top." -msgstr "" - -# dfb5f495c6034933bf43e4b9fc91944f -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:132 -msgid "When you are finished adjusting the parameters, click :guilabel:`Next`." -msgstr "" - -# cc951197260040838f791ec6610d2c10 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:134 -msgid "" -"Give your map a name, and if you want, you can add notes to be printed on " -"the map, such as questions you want to remember to answer or specific places " -"you want to identify. Then click :guilabel:`Next`." -msgstr "" - -# 084bf5c9385b4ed0bb77b9423f2fb2a0 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:138 -msgid "" -"Finally choose your layout. Indicate whether you want pages only for your " -"maps, or if you want notes on the same page. If you choose the notes option, " -"then half of the page will be left for taking notes, and the other half will " -"contain the map." -msgstr "" - -# ca530a64eddf46d0949824eb53e80d73 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:146 -msgid "It may take a few minutes to prepare your Field Paper." -msgstr "" - -# 0dc3833bf6874d36828911ac946f83b3 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:151 -msgid "" -"When the print is ready, scroll to the bottom and click :guilabel:`Download " -"PDF`. The Field Paper should begin downloading. If it loads in your browser, " -"you may need to save it by going to :menuselection:`File ‣ Save`." -msgstr "" - -# 304e71bcbd4a4f58953344305ab6dfd3 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:156 -msgid "" -"When the download is finished, open the PDF file. Connect your computer to a " -"printer and print the page. If everything goes well, you should now have " -"your map printed on paper." -msgstr "" - -# 1faa35e506664c4a96ab651413c0248c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:161 -msgid "4. Map with Field Papers" -msgstr "" - -# e23aab99e06840ffb7095775fc9568e9 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:163 -msgid "" -"Take your Field Paper outside, and use it as a guide to walk and identify " -"new places that are not on the map." -msgstr "" - -# 1a743755fc464ceb883d6feec54b7162 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:166 -msgid "" -"Draw lines for roads, shapes for buildings, and so forth. Write notes about " -"each location directly on the map, or write numbers on the map that relate " -"to numbers in your notebook, where you can write more detailed information " -"about each object." -msgstr "" - -# f3e363ea4c8d4cf9a42f8c2c9f7d7e0c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:171 -msgid "" -"When you are satisfied with your additions on the paper map, then you are " -"ready to add them digitally into OSM." -msgstr "" - -# 630ec5b173a249a8bf668900e58182e5 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:175 -msgid "5. Scan and upload" -msgstr "" - -# ef317c27c5e04c34b3c1a5a70cd37c33 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:177 -msgid "" -"Field Papers are useful for mapping with nothing more than paper, but they " -"are not 100% magic. We will still need to add our paper into JOSM, add our " -"information digitally and save the changes on OSM." -msgstr "" - -# 3285b35d7a9f4a3cba345ef385c6eca6 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:181 -msgid "" -"The first step is to scan your Field Paper. Do this by attaching a scanner " -"to your computer, scanning the paper and saving it as an image file. If you " -"don’t have a scanner, take a photograph of the paper, but be careful to take " -"a good quality photo. Make sure that the paper is flat and the camera is " -"directly in front of it. Be sure to include the barcode in the image, as " -"Field Papers will not work without it. Here is an example of a scanned/" -"photographed image:" -msgstr "" - -# 8fd2032ed3594abf866c8ca65b3401d3 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:193 -msgid "" -"Once your Field Paper is scanned and saved on the computer, open your web " -"browser and return to the http://fieldpapers.org/ just as before." -msgstr "" - -# 5b3e426d1f214718bacecf439b277525 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:197 -msgid "Click the :guilabel:`Upload` tab at the top of the page." -msgstr "" - -# 98a18bd0765f4d9f9b302acdfe989d7f -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:202 -msgid "" -"Click :guilabel:`Choose File` and navigate to the file where you scanned/" -"photographed your Field Paper." -msgstr "" - -# 27e3383959a34cc796f489a7f24a5467 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:205 -msgid "" -"Click :guilabel:`Upload`. It may take a few minutes for the paper to upload, " -"depending on the speed of your internet connection." -msgstr "" - -# 936a4cb6a894415e93f5b34e48fcfacb -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:211 -msgid "" -"You’ll be able to add additional notes to your Field Paper, but we will skip " -"this for now. Click :guilabel:`Finished`." -msgstr "" - -# fd2edf6c48ee4dddb1cc70c52e171a51 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:218 -msgid "6. Open in JOSM" -msgstr "" - -# fc51d52494334502a2e218a7fc0573d4 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:220 -msgid "" -"When the scan has been processed, it can be added as a background layer in " -"JOSM. To display Field Papers in JOSM, the fieldpapers plugin must be " -"installed." -msgstr "" - -# 4264a988558a43389921192a82b5ef08 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:224 -msgid "Open JOSM and go to :menuselection:`Edit ‣ Preferences`." -msgstr "" - -# b97b6a6c32b44e428048f0e44852cca8 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:226 -msgid "Go to the :guilabel:`Plugins` tab." -msgstr "" - -# 94f1a6816a814d0389a91ab7db5d7792 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:231 -msgid "" -"Type :kbd:`fieldpapers` in the :guilabel:`Search` box. After it is found, " -"check the box next to it. Click :guilabel:`OK` and restart JOSM." -msgstr "" - -# b754ae25bf434469baf28c35413d86c7 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:237 -msgid "" -"Open your browser and go to the `Field Papers website `_." -msgstr "" - -# e8979556793f4819a66907ba4fa1ec0d -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:239 -msgid "" -"Click :guilabel:`Watch`. Then move your mouse to the bottom and click :" -"guilabel:`Snapshots`." -msgstr "" - -# c5dadf10f5ea478b9910d7fe1ec0116e -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:245 -msgid "" -"You will see all of the Field Papers that users around the world have " -"uploaded. Find your image, and then click on it." -msgstr "" - -# fb5ded3b9e744dde806265377ae8c84b -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:248 -msgid "" -"We need the URL to load the Field Paper into JOSM. The URL is the web " -"address at the top of the page, which will be something like: *http://" -"fieldpapers.org/snapshot.php?id=67v87z5n#18/-5.15534/119.43913*" -msgstr "" - -# 7dde7a24aba14668a7373f322ed3c6cd -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:252 -msgid "Copy the URL by selecting it and pressing :kbd:`CTRL + C`." -msgstr "" - -# a950533a490c4e529b0e5de4f73d79e7 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:257 -msgid "" -"Open JOSM. Since you installed the plugin, there should be a new Field " -"Papers menu at the top." -msgstr "" - -# ac7649c60db845f4bd93e9d74377c9ee -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:260 -msgid "" -"Go to :menuselection:`Field Papers ‣ Scanned Map` and paste the URL by " -"pressing :kbd:`Ctrl + V` on your keyboard." -msgstr "" - -# 7378c40abd624b57ace5d8eee295bb2b -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:263 -msgid "Click :guilabel:`OK`." -msgstr "" - -# 106ba514cbaa4428b8fbfb6b4f814b76 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:268 -msgid "Wait a moment until the Field Paper appears in your JOSM layers." -msgstr "" - -# d11ab442c5b74f48bc4a46af61c14fcb -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:273 -msgid "" -"Now you have a Field Papers layer that can be used as a reference to add OSM " -"data. It is like using imagery to identify objects on the ground, but " -"instead there are detailed drawings and notes from your field survey. Later, " -"when we have learned to access OSM data through JOSM, this can be used as a " -"reference to edit the map." -msgstr "" - -# 1d4f9130f29f43f58dfd6a05eef2c9c0 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:280 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/106-editing-osm-with-josm.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/106-editing-osm-with-josm.po deleted file mode 100644 index 610dcb9f..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/106-editing-osm-with-josm.po +++ /dev/null @@ -1,691 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 7d386b612c814222990f7a4483fff9cf -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:10 -msgid "Module 6: Editing OpenStreetMap with JOSM" -msgstr "" - -# cd98997abd7848fb90a901462bba60e2 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 4df5b1c26f2d4271b9886106766b880c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:14 -msgid "Download OSM data in the area you want to edit" -msgstr "" - -# d7220ed1e1a94fa5ade6ee2b153b1089 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:15 -msgid "Select layers" -msgstr "" - -# fe6a3f97700f4b39825d1bf053f5dede -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:16 -msgid "Edit OSM data" -msgstr "" - -# b9f4df3c05b246858c6e721c2633b8a1 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:17 -msgid "Edit and understand tags" -msgstr "" - -# 29db1063dc2449278bcd7d144d95b2f8 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:18 -msgid "Upload OSM data" -msgstr "" - -# 7e45687fb0574eae81e83d87d9f85c24 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:19 -msgid "Save OSM files" -msgstr "" - -# e188c2ecea204e0f9da7e72c4d4a4ade -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:21 -msgid "" -"In :ref:`Module 3 ` we installed JOSM and began drawing " -"our first points, lines, and shapes. We added presets to these objects to " -"attach information about them. At the end, you were able to draw your own " -"map in JOSM." -msgstr "" - -# 64ea211ef8404a3ca1e575706963fcd1 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:26 -msgid "" -"Drawing maps was an exercise to learn JOSM and learn how to draw places on " -"the map. But our maps were not accurate, because we had not yet included " -"location. In the past two modules we have examined two tools, GPS and Field " -"Papers, which allow us to collect actual locations of places. These " -"locations are represented by coordinates." -msgstr "" - -# f4a39013b9224649a87689dbaec4ab6c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:32 -msgid "" -"Drawing a real map, that is, a map where all the points, lines and shapes " -"are in their proper location, is no different than drawing the maps we drew " -"previously. But now, we will utilise our GPS points and tracks, and our " -"Field Papers, to draw similar maps at their correct locations on the planet." -msgstr "" - -# 6d0c47ad28ac47f9bb69bdb9a432588d -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:38 -msgid "" -"In this module we will learn how to edit the map on OpenStreetMap and add " -"our improvements. We’ll learn the basic cycle of mapping on OSM:" -msgstr "" - -# 0775c7f6ed0b468fa4b78cfdb7cd8626 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:41 -msgid "Download data" -msgstr "" - -# c2284db0c0c54476837a0b4ef39e87df -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:42 -msgid "Edit and add objects on the map" -msgstr "" - -# d8ab39dca18e4cb88bad6abccab0668e -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:43 -msgid "Upload changes to OSM" -msgstr "" - -# f5443fbc0ae647bebd06ebc661e837a5 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:44 -msgid "See the changes on the map!" -msgstr "" - -# 3f057ba74d4a4c40883227f0247dbf8c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:47 -msgid "1. Exploring JOSM" -msgstr "" - -# 711470f33f284e06919fba3fc9764e41 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:49 -msgid "Let's begin by exploring a little more in JOSM." -msgstr "" - -# ec5e4804932c41f1944cc5b8c5a0ee42 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:51 -msgid "Open JOSM." -msgstr "" - -# da2b5a13c33f4bbdbb0749e7f008fd06 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:53 -msgid "" -"Load your gpx file (tracks and/or waypoints) and your Field Paper in JOSM, " -"as in the previous modules. It is not necessary to open both, but you can if " -"you want. Refer to the previous two modules if you don’t remember how to " -"open these in JOSM." -msgstr "" - -# 98c8d71674a64ffd9e0c3abea8ee722f -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:58 -msgid "" -"JOSM has many different buttons and panels. We are already familiar with the " -"main window - this is the map window, and it is where most of the action " -"takes place. Here you view, edit, and add to the OSM data." -msgstr "" - -# ac418835d520457783d0e21411789236 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:62 -msgid "" -"To the right of the map window are a series of panels, which each do " -"something different. When you first install JOSM several panels are shown by " -"default, such as :guilabel:`Layers`, :guilabel:`Properties` and :guilabel:" -"`Selection`. When you select a point, line or shape in the map window, it is " -"shown in the :guilabel:`Selection` panel. Information about the object is " -"shown in the :guilabel:`Properties` panel, and the username of the author of " -"that object is shown in the :guilabel:`Authors` panel." -msgstr "" - -# b418be0be28e4a6793b62890306987e7 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:74 -msgid "" -"On the left side of JOSM, there are several toolbars which consist of many " -"buttons. On the uppermost toolbar are different buttons which change what " -"you can do with your mouse. You are already familiar with the first two, " -"the :guilabel:`Select` tool and the :guilabel:`Draw` tool. The other tools " -"make it easier to zoom in, delete an object, draw a shape or create a line " -"that is parallel to another line." -msgstr "" - -# 63a1050e37694ee3b5eb451ecd27977c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:81 -msgid "" -"Below these tools are many more buttons. These buttons control what you see " -"on the right side of JOSM. Using these buttons you can open and close the " -"boxes on the right, such as :guilabel:`Properties`, :guilabel:`Selection` " -"and :guilabel:`Author`." -msgstr "" - -# be78317c504a4855a0d6f313fce23f5c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:87 -msgid "1.1. Downloading OSM Data" -msgstr "" - -# 3653e87ca5a7426ab8b5244d92ee02bf -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:89 -msgid "" -"Remember the cycle of editing OSM described in the introduction of this " -"module? Download, edit, save. Before we can edit the map, we must download " -"the existing OSM data in our area." -msgstr "" - -# fe52ffa498504bfaaf5ab68a1acd73d8 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:93 -msgid "" -"When you open a gpx track or Field Paper, the map window will show what you " -"have opened, and will automatically move to the correct coordinates. Look in " -"the bottom left corner of JOSM. Notice the two numbers, which are the " -"latitude and longitude (coordinates) of your mouse cursor." -msgstr "" - -# 5ddcee47d8f946378dca352e9fb6f5a9 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:101 -msgid "" -"Because our map window is already showing the area that we want to edit, it " -"is easy to download the OSM data for this area. Go to :menuselection:`File ‣ " -"Download from OSM`. This opens the :guilabel:`Download` window. This can be " -"accessed more simply by clicking the :guilabel:`Download` button, shown here:" -msgstr "" - -# f2395ee6ec7c4461956d434fbcb88f22 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:110 -msgid "" -"When the download window opens, you should see a map with a pink box drawn " -"on it. If you don’t see the map, click on the tab marked :guilabel:`Slippy " -"map`." -msgstr "" - -# 6aab33dba876403e8231f09c6de615fa -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:117 -msgid "" -"The pink box represents the area of the map that you would like to download " -"for editing. Unless you have moved the map window since you opened your GPS " -"file or Field Papers, the box should be drawn around the correct area. " -"However if you would like to download a larger area, draw a new box. To do " -"so, click on the map, hold your left mouse button down and drag the mouse to " -"create a box. Release the mouse button to finish drawing the box." -msgstr "" - -# 837ed08c4dfe4a76bc720ff3c4b6bd7b -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:125 -msgid "" -"When you are satisfied with the size and location of the box, click :" -"guilabel:`Download` at the bottom of the window. JOSM will get the data for " -"this area from OSM and open it in your map window for editing." -msgstr "" - -# da85ba3f737c496fbc6fe8878c5f5df3 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:130 -msgid "2. JOSM Layers" -msgstr "" - -# f9df26820cb84cd78a8a4b1daa562c34 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:132 -msgid "" -"Open your GPS file and downloaded data from OSM, if you haven’t already. " -"Notice that when you open a file, add Field Papers or download from OSM, " -"another item is added to the :guilabel:`Layers` panel on the right side of " -"JOSM. Your :guilabel:`Layers` panel may look something like this:" -msgstr "" - -# 52f87bf59afb41679d165af854909cee -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:141 -msgid "" -"Each item in this list represents a different source of data that is open in " -"the map window. In the example above, “Data Layer 2” is the OSM data that we " -"want to edit. “Markers” are the waypoints from the GPS, and “30 Juni 2011." -"gpx” is the track from the GPS. Finally, “Field Papers” is the layer created " -"when we added our Field Paper into JOSM." -msgstr "" - -# 222bd8ea134a4dc8bfa0715c04b2e375 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:147 -msgid "" -"Add the Bing imagery layer, which shows satellite imagery, by going to :" -"menuselection:`Imagery ‣ Bing Sat`." -msgstr "" - -# 0d91d9ef2ee64a5794c6b9b0760dbd89 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:150 -msgid "" -"To hide one of the layers, select it with your mouse and click the :guilabel:" -"`Show/Hide` button, which looks like this:" -msgstr "" - -# cee213e89f7a40059594aef9b7713be2 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:156 -msgid "" -"The layer will disappear in the map window. Click :guilabel:`Show/Hide` " -"again, and it will reappear." -msgstr "" - -# 7d5478d1496c4663b356dfe7d62043c1 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:159 -msgid "" -"Remove a layer by selecting it and clicking the :guilabel:`Delete` button:" -msgstr "" - -# 39bc0cb9177045349390c2902b851be3 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:164 -msgid "" -"Lastly, it’s important to know that you can only edit the layer that is " -"considered \"Active” by JOSM. If you are unable to edit the map in your map " -"window, it’s probably because you don’t have the correct layer set as " -"active. Most layers, such as GPS points, Field Papers, and satellite " -"imagery, can’t be edited. The only layers that can be edited are data from " -"OSM, which are usually called “Data Layer 1”." -msgstr "" - -# c74c5e2f351642ec939ab94d9a04ee9c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:171 -msgid "" -"To make a layer active, select it in the :guilabel:`Layers` panel, and click " -"on the :guilabel:`Activate` button:" -msgstr "" - -# 103926e36ddb4bf787f602e2d6877df6 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:178 -msgid "3. Editing" -msgstr "" - -# d9a2e91d59e442a2a13320f9f9fac5f8 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:180 -msgid "" -"The next step is to edit the map and add new items. This is not always easy " -"at first, but with practice you will get better and better. Note that you " -"can select tools in JOSM by clicking their buttons in the toolbar, or you " -"can use keys on the keyboard as shortcuts. The shortcut keys are indicated " -"in parentheses below." -msgstr "" - -# 4faa1ecddc56480ab61d673dea420393 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:186 -msgid "" -"To move a point, line or shape, use the :guilabel:`Select` tool (:kbd:`S`). " -"Click on an object and drag it where it should be. This can be used to " -"correct the location of items that have been put in the wrong place." -msgstr "" - -# b76b9749f17f49c29a588abf7e32dc1d -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:190 -msgid "" -"Use the :guilabel:`Draw` tool (:kbd:`A`) to draw new points, lines, and " -"shapes. Attach attributes to these objects by selecting from the :" -"menuselection:`Presets` menu, as we did in Module 3." -msgstr "" - -# 734b15136dc64078a683d5df5e6fe086 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:197 -msgid "" -"Remember that your GPS points and Field Papers don’t automatically go into " -"OSM. You need to add them to the OSM map digitally using the :guilabel:" -"`Draw` tool. But your points, tracks, and Field Papers can be seen in the " -"background as a guide." -msgstr "" - -# daf86340b08247a3b7fd00fad6d9adee -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:202 -msgid "" -"Let’s assume that you saved a waypoint on your GPS named \"030\" and wrote " -"in your notebook that 030 is a school. To add this point into OSM, select " -"the :menuselection:`Draw` tool, and double-click on top of point 030 in your " -"map window. This will create a point. Then go to the :menuselection:" -"`Presets` menu, and find the preset for school. Enter the name of the school " -"and click :guilabel:`Apply Preset`. Do the same to add lines and shapes." -msgstr "" - -# f9cc3542b61842848993d0cefb207dd9 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:214 -msgid "4. Tags" -msgstr "" - -# 87ba77a8e8c445e6ac600b02e8eca4fb -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:216 -msgid "" -"When you draw a point, line or shape, it has a location, but no information " -"about what it is. In other words, we know where it is, but not what it is. " -"Before now, we have been using items from the :menuselection:`Presets` menu " -"to define what it is. The way OSM knows what an object is is by using tags." -msgstr "" - -# feb054cc8d8949b2ab5d2ab1b8dda862 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:222 -msgid "" -"A tag is like a label that you can put on something. For example, if we draw " -"a square, it’s only a square. But then we add multiple tags to it that " -"describe what it is:" -msgstr "" - -# c260d67eeb79421ab5b9588ed5e666bc -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:226 -msgid "this square is a building" -msgstr "" - -# 42d4ed7c07e24b4cb47f57b1a484a434 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:227 -msgid "the name of the building is “Menara Thamrin”" -msgstr "" - -# 4c383b853a9b4b1e9bc5bac897720861 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:228 -msgid "the building is 32 levels high" -msgstr "" - -# 70fbc33ced3948459ddc58e295d9c84a -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:230 -msgid "" -"We can add as many tags as we want to an object. Tags are saved as pairs of " -"text, called the keys and the values. In OSM, the tags written above would " -"be:" -msgstr "" - -# f6240b67b0d74dc7898fc34da218638f -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:234 -msgid "building = yes" -msgstr "" - -# 4f62146d7c6b489b86826069542a34f9 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:235 -msgid "name = Menara Thamrin" -msgstr "" - -# ea7e8e189ed54113896bbb4c50370938 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:236 -msgid "building:levels = 32" -msgstr "" - -# 3c7f85a253eb4287ab569460556b6d20 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:238 -msgid "" -"When you select an object in JOSM, you can see all the tags that are " -"attached to it in the :guilabel:`Properties` panel on the right." -msgstr "" - -# 152694830b3f41239122a019747a6da8 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:245 -msgid "4.1. Editing Tags" -msgstr "" - -# 787d14ce5e734dbbbf6868e26fa2cc6e -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:247 -msgid "" -"You can add, edit and delete these tags from the :guilabel:`Properties` " -"panel. The tags are traditionally in English, so if you prefer you can " -"always use the :menuselection:`Presets` menu to simplify tagging objects. " -"When you add or change tags, such as primary highway versus footpath, the " -"style will change according to the tag." -msgstr "" - -# 4f2300d6d7bd41d9bc21e09c5bd7718f -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:253 -msgid "" -"To edit an existing object, first select it. Then edit the tags in one of " -"two ways:" -msgstr "" - -# 85501d28e4604e6e8610cddf400ac56d -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:256 -msgid "" -"Use the :menuselection:`Presets` menu to open up a form and edit the " -"information, or" -msgstr "" - -# 54f1361b78494be786e6e38dbe86b3f4 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:258 -msgid "" -"Edit the tags directly in the :guilabel:`Properties` window on the right." -msgstr "" - -# 56fb1f2a74da4dcc8c2667597788d5b6 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:265 -msgid "4.2. Common Mistake" -msgstr "" - -# 49161e007e0a4d67920e7aa43a7748c5 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:267 -msgid "" -"A common mistake is to tag nodes when you want to apply tags to lines or " -"polygons." -msgstr "" - -# 693de2c59818456093897d2b05ce636e -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:270 -msgid "" -"When adding tags to a node, select the node and then add the relevant tags " -"(or use the :menuselection:`Presets` menu). However, when tagging a line or " -"polygon, it is important to select the line, and NOT the nodes that make up " -"the line." -msgstr "" - -# b256b641bd814861ba2d463616173095 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:275 -msgid "" -"New users frequently use the JOSM :guilabel:`Select` tool to draw a box " -"around an object, which causes everything (both the line or shape as well as " -"its nodes) to be selected. Then when tags are applied to the selected " -"objects, they are applied to the nodes as well. To avoid this, be sure to " -"only select lines when you want to add tags to them." -msgstr "" - -# 6846120d9ca64129900bd31aaa46e970 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:284 -msgid "" -"More information about tags and presets can be found in the :ref:" -"`Intermediate OpenStreetMap Guide Module 4 `." -msgstr "" - -# a2dd50fe74b34c8580b28b0eead40c97 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:289 -msgid "5. Uploading Changes" -msgstr "" - -# cacdbba64b08431593576660251df11e -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:291 -msgid "" -"After we have made a couple of changes to improve the map, we need to upload " -"those changes to OSM. To save changes, we must be connected to the internet." -msgstr "" - -# 0f18b336c82c49f7a47c6b08569b585b -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:295 -msgid "" -"Go to :menuselection:`File ‣ Upload Data`. This opens the :guilabel:`Upload` " -"window. This can be accessed more simply by clicking the :guilabel:`Upload` " -"button, shown here:" -msgstr "" - -# b8153bc6c046435b8847293d348290c6 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:302 -msgid "" -"The window that appears shows a list of the objects that you are adding and " -"the objects you are modifying or deleting. In the box at the bottom you are " -"asked to provide a comment about the changes that you are making. Type in " -"here a description of your edits." -msgstr "" - -# d44537544a1d47b4bbcf2c9fe9f84d29 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:310 -msgid "Click :guilabel:`Upload Changes`." -msgstr "" - -# 33adb2b89837460d96f7366216d414dd -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:312 -msgid "" -"If this is your first time saving changes to OSM, you will be asked for the " -"username and password that you created in Module 2. Enter them in the window " -"that appears. If you check the box in this window, your username and " -"password will be saved and you won’t need to enter them again in the future. " -"Click :guilabel:`Authenticate`." -msgstr "" - -# 05e64ddc72c44874af4ba39e0d8d2f24 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:321 -msgid "" -"Wait a few seconds for your changes to be uploaded, and then you are done! " -"You have made your first edits to OSM. You may continue editing to add all " -"your points if you wish. Always be sure to upload your changes before " -"closing JOSM." -msgstr "" - -# 07e4584ef68c470bb7e205934f16f63a -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:326 -msgid "After you have uploaded all your changes, you can see the updated map." -msgstr "" - -# a050b3c871a9426a96af0dbb9caef59d -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:328 -msgid "" -"Open your internet browser and go to `openstreetmap.org `_" -msgstr "" - -# cd98f9ab95c54520a85fac308123a23a -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:331 -msgid "Move the map to the area that you edited." -msgstr "" - -# 19b6770887304d85ade9bd9b5bc5a5a3 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:333 -msgid "" -"You should see your changes now on the map! If you don’t, try pressing :kbd:" -"`CTRL+R` to refresh the web page. Sometimes the map doesn’t update properly " -"and needs to be reloaded." -msgstr "" - -# 3067765f3922467eaf8fbd72070d6d6a -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:337 -msgid "" -"What if you don’t see your changes? Don’t worry - it may take a few minutes " -"for the changes to be shown on the map. Also, check your additions in JOSM " -"to make sure that you added them correctly. A good general rule is, if your " -"point has an icon in JOSM, then it should be seen on the main map on the OSM " -"website." -msgstr "" - -# 411ae0764bc84cc38499329cb0743b86 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:344 -msgid "6. Saving OSM files" -msgstr "" - -# ae9ea74cab244ba0b4237b413618ac8c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:346 -msgid "" -"Sometimes after you download some OSM data, you may wish to save it so that " -"you can edit it offline, and then upload it later when you have internet " -"access again." -msgstr "" - -# 096743af88cd4949a795fe732262aede -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:350 -msgid "" -"To save an OSM file, make sure that it is the active layer in the the Layers " -"panel. Go to :menuselection:`File ‣ Save`. Choose a location for the file " -"and give it a name. It can also be saved by clicking this button:" -msgstr "" - -# cb3f6ce6dc5740348e8ed1cf45a00a92 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:358 -msgid "" -"You can now close JOSM and your data will be saved. When you want to open " -"the file again, simply open JOSM and go to :menuselection:`File ‣ Open...`." -msgstr "" - -# b26d3cdeba4845ee9a9b8b25bcf94650 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:361 -msgid "" -"While it is possible to download OSM data, save it, and then upload later " -"when you are connected to the internet, this may cause problems, especially " -"if a lot of time passes between the time you download and the time you " -"upload the changes. If another OSM user edits the same area and the same " -"objects during this time, it may cause conflicts to occur. Try not to let " -"too much time pass between downloading and uploading data." -msgstr "" - -# f00b2c82afa84f0bbb033d78f497eef2 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:369 -msgid "7. Using keyboard shortcuts" -msgstr "" - -# a0f93ad0fdfb4f939759c8f259721b43 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:371 -msgid "" -"It can be dizzying to click over and over again between the various tools " -"and menus in JOSM. Fortunately, there are shortcuts for most actions in JOSM " -"with a simple press of the keyboard. Here is a list of commonly used " -"keyboard shortcuts and their associated functions:" -msgstr "" - -# daf9b58f7b624504bab15d8cdd430ecf -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:376 -msgid ":kbd:`S`: Select tool (select objects)" -msgstr "" - -# cb9b8a7adaa04922811358af1536927d -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:377 -msgid ":kbd:`A`: Draw tool (draw objects)" -msgstr "" - -# 1c0d738df80a41b9832f7b1c5ea53dfa -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:378 -msgid ":kbd:`Z`: Zoom tool" -msgstr "" - -# 85b562e92cea41899e4c41f16d29771d -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:379 -msgid ":kbd:`Minus` (or :kbd:`Ctrl + >`): Zoom out" -msgstr "" - -# c80a265a6c3640a1a13f4660f1a91cbf -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:380 -msgid ":kbd:`Plus` (or :kbd:`Ctrl + <`): Zoom in" -msgstr "" - -# aa535cadfaf8481ab157b90072e0ba89 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:381 -msgid ":kbd:`P`: Split Way" -msgstr "" - -# fb3e528cf3f147d095b0453cc0140ff5 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:382 -msgid ":kbd:`C`: Combine Way" -msgstr "" - -# 724e30f47ad549c3a40fda375274cb06 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:383 -msgid ":kbd:`O`: Align in Circle (set the points into a circle)" -msgstr "" - -# b50160fa4b894b66a2a5f859f6ef4feb -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:384 -msgid ":kbd:`L`: Align in line (set the points into a straight line)" -msgstr "" - -# 2cd435023cf740b284d917e5459f3637 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:385 -msgid ":kbd:`Q`: Orthogonalise (make into a square shape)" -msgstr "" - -# 9c25a2c9fecd406380ca1743d2bd9f51 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:388 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/107-imagery-offset.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/107-imagery-offset.po deleted file mode 100644 index 1efbd90d..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/107-imagery-offset.po +++ /dev/null @@ -1,584 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# c80b0e110eb8488b9ea3cd613faaa4e1 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:10 -msgid "Module 7: Imagery Offset" -msgstr "" - -# 9634790b0eb840adb8e31998d7703928 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 21a017ec77fa49c9a7a825542fa9815c -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:14 -msgid "Understand the definition of imagery offset" -msgstr "" - -# 295047ebd2984b2ca108bab9e80d0c0d -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:15 -msgid "Understand components of imagery (resolution and georeference)" -msgstr "" - -# 59755072dff94868a9a3ae37c92435df -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:16 -msgid "Understand how imagery offset occurs" -msgstr "" - -# f5db9ef127ef45efb1d5f39a04319122 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:17 -msgid "Fix imagery offset" -msgstr "" - -# 79fd21e026034b85a39198cd901e096d -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:19 -msgid "" -"Using aerial imagery is the most widely used approach in making maps with " -"OpenStreetMap. Mappers typically use Bing or Mapbox satellite imagery as a " -"background layer, or imagery from another provider. We have already seen " -"this in action. In this module we will learn a little bit more about aerial " -"imagery, and we will learn how to solve the one important problem of using " -"aerial photographs - imagery offset." -msgstr "" - -# 363c760287174f25a41ade747746e090 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:28 -msgid "1. Components of imagery" -msgstr "" - -# 452a6fba685749bba4c08c50ce8f28b2 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:30 -msgid "" -"Aerial imagery is the term that we use to describe photographs that are " -"taken from the sky. These can be taken from airplanes, helicopters, or even " -"kites and balloons, but the most common source of imagery comes from " -"satellites orbiting the Earth." -msgstr "" - -# 15678e0ad43e4ab88ffc3f701afedbdf -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:35 -msgid "" -"In the :ref:`module on GPS` we learned about the dozens of " -"satellites orbiting Earth which allow our GPS receivers to identify latitude " -"and longitude. In addition to these GPS satellites, there are also " -"satellites which take photos of the earth. These photos are then manipulated " -"so that they can be used in GIS (mapping) software. Bing Aerial Imagery is " -"made up of satellite photos." -msgstr "" - -# 3e8e4a4bf7a0443bb98ab6623de13b0f -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:42 -msgid "" -"Let's look at a couple of the components of aerial imagery - resolution and " -"georeferencing." -msgstr "" - -# 4103d6f153a548fdada69737271dee37 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:46 -msgid "1.1. Resolution" -msgstr "" - -# ad54a5a55a6b43b6aaa7a17e6cb20861 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:48 -msgid "" -"All digital photographs are made up of pixels. If you zoom in very close on " -"a photograph, you will notice the the image starts to get blurry, and " -"eventually you’ll see that an image is made up of thousands of little " -"squares that are each a different colour. This is true whether the " -"photograph is taken with a handheld camera, a mobile phone or a satellite " -"orbiting Earth." -msgstr "" - -# 0002435fc58b420fabf452cb60dac726 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:58 -msgid "" -"Resolution refers to the number of pixels wide by the number of pixels high " -"that an image is. More pixels means higher resolution, which means that you " -"are able to see greater detail in the photograph. Resolution in handheld " -"cameras is often measured in megapixels. The more megapixels your camera is " -"able to record, the higher the resolution of your photos." -msgstr "" - -# d2f837d80734405ba289884bc5d78a51 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:65 -msgid "" -"Aerial imagery works the same, except that we talk about resolution " -"differently. Measurement is important with aerial photographs - hence, a " -"pixel represents a certain measurable area on the surface of the Earth. We " -"usually describe imagery as something like \"two metre resolution imagery\", " -"which means that one pixel in the image is equivalent to two metres on the " -"ground. One metre resolution imagery would have a higher resolution than " -"this, and 50cm resolution would be higher still. This is generally the range " -"of imagery that is provided by Bing, though it varies between locations, and " -"in many places it is worse than two metres, at which point it becomes " -"difficult to identify objects in the image." -msgstr "" - -# c570f2a0ae0f4ee58d37c305ca4756e7 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:79 -msgid "" -"The higher the resolution of an aerial image, the easier it is to use in " -"making maps." -msgstr "" - -# 985c54ebd06c461f8c0785b468996829 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:83 -msgid "1.2. Georeferencing" -msgstr "" - -# 65ed87bfc0d94862af7154db2ddc38a4 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:85 -msgid "" -"Every aerial image is georeferenced, meaning that it is manipulated so that " -"it can be shown in its correct location on the Earth. Georeferencing is a " -"relatively complex process, because images are flat and the Earth is round, " -"and the images need to be positioned and stretched so that the pixels are " -"accurately positioned on the planet." -msgstr "" - -# 1c7746e0622540818abe4504473a461b -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:91 -msgid "" -"The imagery available to us is already georeferenced, so it is not something " -"that we need to concern ourselves with too deeply. We can happily use " -"imagery to help add to OSM, so long as we understand a little bit about the " -"imagery we are using, and so long as we are aware of one common pitfall - " -"imagery offset." -msgstr "" - -# 31e3378affe747739257abfc1cf94558 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:99 -msgid "2. Imagery offset" -msgstr "" - -# d8a42af744eb4eb197365d001ebdfc5b -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:101 -msgid "" -"Imagery providers usually do a pretty good job of georeferencing their " -"imagery, but occasionally the images can be a little bit out of position. " -"This is particularly true in hilly or mountainous areas, where it can be " -"difficult to stretch a flat image over an area of the Earth with many " -"contours. When you load imagery in JOSM, it can sometimes be ten metres or " -"more from its true position. This is called imagery offset." -msgstr "" - -# 806faf3195f64bbcb27cd0933e5a27dc -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:108 -msgid "" -"Aerial imagery layers are composed of many photographs of the Earth's " -"surface that have been georeferenced and then stitched together. Imagery " -"providers cannot verify the accuracy of every photo, so some images may be " -"shifted from their actual positions. This might be a shift of a couple " -"metres, or in rare instances up to hundreds of metres. In mountainous areas, " -"imagery may be distorted non-linearly, which means that nearby parts of the " -"same image may be shifted in many different directions." -msgstr "" - -# b628ea5931e7472cabc00b12c58da7c6 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:116 -msgid "" -"Notice in the following image that two separate aerial photographs have been " -"georeferenced and merged together. Because georeferencing is not a perfect " -"process, the images do not line up perfectly with each other. Hence one, or " -"both, must be inaccurate." -msgstr "" - -# 0b8bcbe3d8014bf0916f59591024f054 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:124 -msgid "" -"We’ve learned about two major ways of making maps - one is by utilising " -"aerial imagery to identify features on the ground, and another is by using " -"GPS to record tracks and waypoints and then add them to OSM. The advantage " -"of aerial imagery is obvious. It enables you, the mapper, to see the whole " -"picture, to observe various details from the image, consider your knowledge " -"of the area, and easily trace roads, buildings and areas. One key advantage " -"of GPS however, is that it doesn’t suffer from offset like imagery. A GPS " -"will always provide you with a correct latitude and longitude. The only " -"exception is when the satellite signals are interrupted by tall buildings or " -"mountains, but in this case it is easy to recognise the error. Observe the " -"GPS trace in this image, compared with the Bing aerial imagery layer beneath " -"it:" -msgstr "" - -# bf3938de79d64ef897bf437fd6da4121 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:140 -msgid "" -"Because of what we now know, it is clear that the GPS trace is likely to be " -"accurate, and the image beneath it is out of place." -msgstr "" - -# 36ef3ea70b2245058eeb399d50003465 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:143 -msgid "" -"So now we must ask, “if the imagery may be out of place, how can we still " -"use it and make accurate maps?”" -msgstr "" - -# d7aea2fc7b574a7680e765900470dd4a -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:147 -msgid "3. Correcting imagery offset" -msgstr "" - -# f2cf4aa0494748319a121d949e328a2f -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:149 -msgid "" -"The answer to the preceding question is that we can move the imagery so that " -"it aligns with things that we know are in the correct location, such as GPS " -"tracks. It is easy to correct imagery offset in JOSM." -msgstr "" - -# 3dc7438ca3e445f191d5ce0a87f402a9 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:153 -msgid "" -"The best references for adjusting imagery are GPS tracks that follow roads. " -"And the more GPS tracks that you have to reference, the more accurate you " -"will be able to align your imagery. Since OSM users often upload their GPS " -"tracks to the OSM database, we can download them and use them to align our " -"imagery." -msgstr "" - -# e71cf2bead0e4c778c899e69c8230e6e -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:159 -msgid "In JOSM, click on the :guilabel:`Download` button." -msgstr "" - -# 932ca5a7ef394fae833d4d685381b78b -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:161 -msgid "" -"Check the box next to :guilabel:`Raw GPS Data` near the top of the :guilabel:" -"`Download` window. Select your area and click :guilabel:`Download`." -msgstr "" - -# 840f15755f97445ba262b1c94bee5c24 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:168 -msgid "" -"This will download an additional layer to JOSM containing GPS tracks. " -"Depending on how many tracks have been uploaded by OSM users, you may see " -"few tracks (or even no tracks):" -msgstr "" - -# 743b22685f184f1ebdc566109094dffb -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:175 -msgid "Or, you may see many tracks:" -msgstr "" - -# f8dc5596a43d4d48adfc473503c1f568 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:180 -msgid "Add an imagery layer (such as Bing Sat) to JOSM." -msgstr "" - -# 8dc893c252214bbd9d89c0eb67ac74f2 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:182 -msgid "" -"To adjust an imagery layer, click on the :guilabel:`Adjust imagery offset` " -"button at the top of JOSM, and then click :guilabel:`New Offset`." -msgstr "" - -# bd78ae26db7a4851819ba3f410ed9e03 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:188 -msgid "" -"Ignoring the box that pops up, use your mouse to drag the imagery layer so " -"that it aligns correctly with the GPS tracks. The GPS tracks should line up " -"with the roads on the imagery as closely as possible. You will see the " -"offset numbers in the box change." -msgstr "" - -# a7f8d356e0a648bba5644a04e1a9aa59 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:196 -msgid "" -"If you like, you can save these offset settings by entering a bookmark name " -"and then clicking :guilabel:`OK`. You can then automatically apply the same " -"settings later by going to :menuselection:`Imagery ‣ Imagery offset` and " -"clicking on your bookmark." -msgstr "" - -# 507b13a8388d4e70964db82088ff811a -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:201 -msgid "" -"If you do not want to save the offset, simply click :guilabel:`OK` without " -"entering a bookmark name." -msgstr "" - -# 2d8e5e5f507046b49cb81e4a23c03302 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:204 -msgid "" -"What if there are no GPS tracks on OSM, and you don’t have a GPS? Without " -"GPS tracks, it is difficult to align imagery. If it is a relatively empty " -"area (not much mapping done), you might choose to simply use the imagery as " -"it is and correct the data later. It’s better to map an area 20 or 30 metres " -"offset than to not map it at all." -msgstr "" - -# 33e4ddca54cc48588e6c3adaa85300bb -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:210 -msgid "" -"If you can positively identify the latitude and longitude of one object on " -"the ground, you can ensure the imagery is correctly placed by following " -"these steps:" -msgstr "" - -# a3f57ade5dd24150add0688cf0f0525c -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:214 -msgid "First, identify the object whose position you know on the imagery." -msgstr "" - -# 7474f89ad0654f69a6a095d8f3ea2703 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:216 -msgid "Click on the latitude and longitude in the bottom left corner of JOSM." -msgstr "" - -# 9144ded3c59d42f1a053ac559c33e6ad -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:221 -msgid "" -"In the dialog that opens, enter the latitude and longitude of the place that " -"you know, and enter a small number for :guilabel:`Zoom`, about five or 10." -msgstr "" - -# 7929310a4aa643729a36f8f04438cb2b -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:228 -msgid "" -"This will zoom and centre the map to your longitude and latitude. Now you " -"can move the imagery as you did previously so that the feature you know is " -"centred at the correct position." -msgstr "" - -# c4b37a7f6a1540d29a10a7851e1ba474 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:232 -msgid "" -"If, on the other hand, the area has already been extensively mapped, then " -"hopefully the previous mappers have drawn objects in their correct " -"locations. In this case, you can align the imagery to the OSM map, but " -"beware! Other mappers may not be aware of imagery offset, and they may have " -"made mistakes when they mapped." -msgstr "" - -# a5abaa46d7764f56b540d48b610996f1 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:239 -msgid "3.1. The imagery offset database" -msgstr "" - -# 963ab361022544428f28317b57298858 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:241 -msgid "" -"Now you know how to watch out for and correct imagery offset, but there is " -"one major problem with this approach that we have overlooked thus far. If " -"every OSM user adjusts the imagery differently, everybody will be mapping " -"with slightly different backgrounds." -msgstr "" - -# bf27679f8e38486b8cf662713ab87238 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:246 -msgid "" -"Imagine that you are mapping a small town, and you realise that Bing imagery " -"is offset by 15 metres to the north. So you adjust the imagery and then use " -"it to map the whole town accurately. But then somebody else wants to add " -"something to the map, so they download the data and load Bing imagery, but " -"they don’t know about the imagery offset you discovered! They will think " -"that something is wrong and all of the objects in town are misplaced by 15 " -"metres, and they will start to move them, which is not correct! This can be " -"disastrous for the town’s map data." -msgstr "" - -# 4eaaa85549174eb1bd894c41f65350ee -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:255 -msgid "" -"For this reason it is important that all users are aware of imagery offset, " -"and should always check for it before mapping an area. To help with this " -"problem, some smart people created a plugin that allows users to save offset " -"information in a database and share it with others. Let’s see how this works:" -msgstr "" - -# b00065a860cf4272a1f27b5cd2e9ff0d -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:260 -msgid "" -"Open the :guilabel:`Preferences` menu in JOSM, and click on the :guilabel:" -"`Plugins` tab." -msgstr "" - -# f246d83da0d547f3bcef4186a3dc5b9d -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:266 -msgid "Find the plugin named *imagery_offset_db* and check the box next to it." -msgstr "" - -# e5f0c4d73ce949cc89c1b80a30dded75 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:271 -msgid "" -"Click :guilabel:`OK`. You will need to restart JOSM to finish the plugin " -"installation." -msgstr "" - -# 7d97caa2d02547b5a766fdf04bbed980 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:274 -msgid "" -"In the same way that you are able to save offsets as bookmarks, this plugin " -"allows you to save offsets to a central database, and to access the offsets " -"that other users have created. Hence, if one mapper creates an imagery " -"offset in an area, other users can use the exact same offset to map with." -msgstr "" - -# 020cd88f492b44c68952bf8bd3f12cee -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:280 -msgid "" -"When using aerial imagery layers, you should ALWAYS check for existing " -"offsets, and when you create your own offset, you should ALWAYS save it to " -"this database." -msgstr "" - -# ea567f709aa74b99a4344da266e9d1fe -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:285 -msgid "3.2. Add imagery offset from the database" -msgstr "" - -# 762f79c4e24448eea05efebbd532e0c5 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:287 -msgid "" -"When you add an imagery layer, the new plugin will alert you that you should " -"check the imagery database for an existing offset. You will see an icon with " -"a red exclamation point on it at the top of JOSM, like this:" -msgstr "" - -# ae81266570ae4740a0d673efd96d4528 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:294 -msgid "" -"Click on the button and the plugin will communicate with the database to see " -"if there are existing offsets in this area." -msgstr "" - -# e0a8ba3ca07242e1b3281139d10974c6 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:297 -msgid "" -"Here we have downloaded OSM data and GPS tracks in Kuta, Bali, Indonesia. In " -"this case, we have found one existing offset. Click on it to apply to the " -"map." -msgstr "" - -# 0d86190a5c294bf7bb14259ef1333684 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:304 -msgid "" -"This causes the imagery layer to shift. However, when we add someone else’s " -"offset like this, we should check that it is valid by comparing it to GPS " -"tracks." -msgstr "" - -# 95c21ccfe80d4f3d8e63352dc689715f -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:311 -msgid "" -"We can see that the imagery layer is in fact misaligned. We don’t want other " -"users to use this offset, so we should mark it as incorrect in the database. " -"Click on the :guilabel:`Offsets` button again (it won’t have a red " -"exclamation mark anymore)." -msgstr "" - -# 6b057c35166e4d4bb769a85f45fde09e -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:319 -msgid "" -"This time when the dialog opens, right-click on the offset and click :" -"guilabel:`Deprecate Offset`." -msgstr "" - -# e5b5ce6f7b60413ab769fa24cb4242c2 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:325 -msgid "Click :guilabel:`Yes` to confirm." -msgstr "" - -# 458f6770105c4bc5818d6da575eca521 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:327 -msgid "Enter a reason for deprecating this offset." -msgstr "" - -# 175e74d96d9f4ceb88ddcb4cdc8984f2 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:333 -msgid "3.3. Add imagery offset to the database" -msgstr "" - -# 6aeac858e18743eaa8c198ed82bcffea -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:335 -msgid "" -"Now that we have marked this user’s offset as \"deprecated\", we should add " -"an improved offset to the database." -msgstr "" - -# 30cc22ec2ecd4446bc989a9e8aefe5bb -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:338 -msgid "Click on the :guilabel:`Adjust imagery offset` button." -msgstr "" - -# eb1935ad3ca14662b2f4c350faadf83a -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:339 -msgid "" -"Adjust the imagery to match the GPS tracks. Click :guilabel:`OK` in the box." -msgstr "" - -# 9e4b0ce1389a4184860d2a860ca5cb7e -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:340 -msgid "Now go to :menuselection:`Offset ‣ Store Imagery Offset...`" -msgstr "" - -# 13621c15dd1a4febb7fd6b822c8fbd79 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:345 -msgid "Enter a description of the offset in the box that opens." -msgstr "" - -# 24595d5d237449b9b6ff59a036ced71f -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:350 -msgid "Click :guilabel:`OK`. Your offset will be saved to the database." -msgstr "" - -# 1892ff4efad2459389a69d435c3ca087 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:352 -msgid "" -"Now let’s hide the GPS layer and look at the OSM data against the correctly " -"placed imagery." -msgstr "" - -# b3c89b13fa15400bb10cef63826b7d50 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:358 -msgid "" -"Oh No! Somebody mapped this area with misaligned imagery, so the area is " -"not correctly mapped. This will take some time to fix." -msgstr "" - -# 5bfbdf2ce20b4b4999cc4288f2cd72b3 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:362 -msgid "3.4. Imagery offset database website" -msgstr "" - -# 95c3e682ee9a466492b544988d94a0f0 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:364 -msgid "" -"For more information on the offset database, you can visit the website at " -"http://offsets.textual.ru/. This lists all the offsets that have been " -"uploaded to the database, and it also has a map feature that visualises " -"where the offsets are located, as you can see here:" -msgstr "" - -# 950d911cbc594246b85178c8af5c60ca -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:372 -msgid "" -"One last thing to remember is that the imagery may not be offset the same " -"distance everywhere! This is especially true in regions where there are lots " -"of hills and mountains. So if the imagery seems to be offset differently in " -"different areas, you’ll need to move it again." -msgstr "" - -# a4bd907ad7104dbdbda6a98f27a61c93 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:378 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/108-getting-osm-data.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/108-getting-osm-data.po deleted file mode 100644 index e797fa57..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/108-getting-osm-data.po +++ /dev/null @@ -1,195 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 104892b231f4499589f91209714e4a33 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:10 -msgid "Module 8: Getting OSM Data" -msgstr "" - -# 2a146bf6b5a846c2b5419b9126560ad4 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# d9fc245e71aa43a8888d78b6d447e590 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:14 -msgid "" -"Download OpenStreetMap data from the `Geofabrik website `_" -msgstr "" - -# c8b5a9bb86b64ea3b81d1a98049ca8cf -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:16 -msgid "Download customised OpenStreetMap data using HOT Exports" -msgstr "" - -# 5b7cd98c3fb64835ab70a9a7c67307e6 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:18 -msgid "" -"Now that we have learned how to contribute data to the OpenStreetMap " -"database, let's see how we can access data for download in different " -"formats. You may want to download OSM data as a backup or for use in " -"Geographic Information System software such as |QGIS|." -msgstr "" - -# 2eb53388f7f74780b75ee4356904c123 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:24 -msgid "1. Getting OSM data on Geofabrik website" -msgstr "" - -# eff0da77d72f495c91466e87d7cb5b11 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:26 -msgid "" -"The easiest way to get OSM data is to download a pre-processed data extract " -"from one of the various websites which offers up-to-date downloads. In this " -"section we will see how to download data from Geofabrik, a company which " -"offers free OSM downloads at the link below:" -msgstr "" - -# a8edc184b0c0437c9a721b02e5dbf14e -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:31 -msgid "http://download.geofabrik.de/openstreetmap/" -msgstr "" - -# 0204110550f54adf91f51132e2e5e6a7 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:36 -msgid "" -"The data is divided into several regions. To access the data for Indonesia, " -"click on the :guilabel:`Asia` region in the table." -msgstr "" - -# 678bafd1597f4736887ef2ff5a2cdad6 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:42 -msgid "Then click on :guilabel:`Indonesia`." -msgstr "" - -# db3e456d740c4c27834ebe9b58b586c3 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:47 -msgid "" -"To obtain the Indonesian data in shapefile (.shp) format, click on :guilabel:" -"`indonesia-latest.shp.zip` and the file will be downloaded. Several file " -"formats are available - shapefiles are a popular GIS format which contain " -"several different files with point, line and polygon data." -msgstr "" - -# c680565588874252a581a01467d5cfe8 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:53 -msgid "" -"The website indicates the most recent time that the data was updated. Note " -"that the server usually updates the data once every 24 hours, so if you have " -"just made changes to OSM, don't expect them to appear in this data " -"immediately." -msgstr "" - -# 4fe71e37f37949fabd9a129ba486e628 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:59 -msgid "2. Getting OSM data from HOT Exports" -msgstr "" - -# 9fefecdf135e4912bba25f50022bc6a6 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:61 -msgid "" -"To download a specific area with a specific data attributes that you define, " -"HOT Exports is a more convenient tool for downloading data." -msgstr "" - -# c674023e420b4a4285dee0d713eb94c8 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:64 -msgid "In your web browser, go to http://export.hotosm.org" -msgstr "" - -# 1f217649c89341ddaf77e8d8e66c8ee5 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:69 -msgid "" -"To create a data processing job you must have an account. Click :guilabel:" -"`Create Account` in the bottom left corner and enter your email address, a " -"new password and password confirmation. Complete the registration by " -"clicking :guilabel:`Create Account`. Open your email and click on the link " -"that has been sent in order to activate your account." -msgstr "" - -# 0c05b571715a478b973e54af32938b29 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:78 -msgid "Log in using the account that you have created." -msgstr "" - -# 653b77f90e17471990704ddbc7532685 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:83 -msgid "" -"When you are successfully logged in, click :guilabel:`New Job` in the upper " -"right corner." -msgstr "" - -# 5ffc8ad53abe435e8a4f774ef481a815 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:86 -msgid "" -"Enter a name for the job (such as the name of the area you are downloading). " -"Enter a description as well." -msgstr "" - -# 433fb2286f8d4258b8797793b789c16a -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:89 -msgid "" -"Zoom in on the map to the area that you want to download. Click :guilabel:" -"`Select Area` and draw a box around the area that you want. The box can be " -"manipulated by dragging its corners and centre. When you finish, click :" -"guilabel:`Create Job`." -msgstr "" - -# ab11d9de9c894e1ab7d54a835654150b -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:97 -msgid "" -"Next, you may optionally select a presets file to include in your data " -"extract. Presets files are the same as those used in JOSM, and instruct HOT " -"Exports to extract specific data attributes in your custom download. This is " -"useful if the data you are accessing contains non-standard tags that are not " -"typically included in data extracts." -msgstr "" - -# 7c5352dcd9d04cb796f69694edfd68c3 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:103 -msgid "" -"To add a presets file, click the drop-down menu next to :guilabel:`Select " -"Preset File` and choose one of the available options. Check the box next to :" -"guilabel:`Add Default Tags?` to include the default attributes in the data " -"extract." -msgstr "" - -# 649691ff5a5044fbb10eab228e4d1cf5 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:111 -msgid "" -"Click :guilabel:`Save` and the server will begin to process your request. " -"The length of the process depends on the area you choose and server capacity." -msgstr "" - -# 626f31753f7c4eab9b2d2fe808d72149 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:115 -msgid "" -"When the process is complete, the data can be downloaded in a variety of " -"formats, including shapefiles, KML and database formats." -msgstr "" - -# 20c21953d50a438a8931fff935d5e01c -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:121 -msgid "" -"All jobs you create will appear in the list on the :guilabel:`Jobs` page. If " -"any time you want to download the same area with up-to-date data, find the " -"job on this page. Click :guilabel:`Start new run` to process the same " -"extract again but with the most recent OSM data." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/index.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/index.po deleted file mode 100644 index 30a264d8..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/osm/index.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 0248cd79631f46c4a67e7fdc49ac94e2 -#: ../../source/training/old-training/beginner/osm/index.rst:8 -msgid "Unit 1: Data Collection Using OpenStreetMap Beginner Level" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/200-introduction.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/200-introduction.po deleted file mode 100644 index 3a524b85..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/200-introduction.po +++ /dev/null @@ -1,244 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 7344507bc71a4b5ab0e20ee438371bc7 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:10 -msgid "Introduction" -msgstr "" - -# 71d29bdbcfd5460d8967e5e560dbef2a -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:13 -msgid "Disclaimer" -msgstr "" - -# 4fd1d90c43fe43e097887aa3a9347602 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:15 -msgid "" -"This document is initial draft and still in reviewing phase by these parties:" -msgstr "" - -# 544a369f7a6b4c72b8c10bd66c3e2f0a -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:17 -msgid "Badan Nasional Penanggulangan Bencana (|BNPB|)" -msgstr "" - -# 9ea462299f0f47f38967fd9b347094b4 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:18 -msgid "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" -msgstr "" - -# 3230f6ccdd3244b5a05281feff714ce9 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:19 -msgid "Humanitarian OpenStreetMap Team (|HOT|)" -msgstr "" - -# 7c895933cc5f4d32b0e3e3be9ef45f85 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:21 -msgid "" -"All contents and materials in this document may be changed without public " -"notice." -msgstr "" - -# 385c76a44fb445618f495331c02c2660 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:25 -msgid "Licence" -msgstr "" - -# 837a37e639974938b57c5b7e0a5abe18 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:29 -msgid "" -"All contents and materials in this document are licensed as Creative Commons " -"Attribution Australia (CCbyA)." -msgstr "" - -# 48f3501557324bc5a6ddf4fba46f0bf9 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:32 -msgid "You are free:" -msgstr "" - -# be1af29f684a44808fadfb9ae1135422 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:34 -msgid "to copy, distribute, display, and perform the work" -msgstr "" - -# 93d0ed1fb767496ba5eab54d6cee40fa -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:35 -msgid "to make derivative works" -msgstr "" - -# 2e74246dcbf34c69b4a0374c0ae40b18 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:36 -msgid "to make commercial use of the work" -msgstr "" - -# 53e98b7bcdd749e8a0077b686e077380 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:38 -msgid "You must give the original author credit." -msgstr "" - -# 0c1be603560948eba7d6b59a7bd596b7 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:40 -msgid "" -"More information about CCbyA License: http://creativecommons.org/licenses/" -"by/3.0/au/deed.en_GB" -msgstr "" - -# 888507da4b6d4bddb0f3cb25646cc8b3 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:44 -msgid "About Us" -msgstr "" - -# 9c440d5e3856482b8353240e377985ea -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:46 -msgid "Badan Nasional Penanggulangan Bencana (BNPB)" -msgstr "" - -# a9738955ee0647d7b50fcc8361564382 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:50 -msgid "" -"BNPB is Indonesia’s National Disaster Management Agency. |BNPB| is a non-" -"departmental ministerial-level government agency, tasked with providing " -"guidance and direction to the efforts of disaster management that includes " -"disaster prevention, emergency response, rehabilitation and reconstruction " -"in a fair and equal way. |BNPB| functions as a policy maker regarding " -"refugee/IDP management for effective and efficient response. It coordinates " -"the implementation of disaster management activities in a planned, " -"integrated and comprehensive way." -msgstr "" - -# f68e6d360a9e4fa694eb51afcf787e61 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:60 -msgid "http://bnpb.go.id" -msgstr "" - -# a6c01f037ab34c4fbaf4d6a48f803984 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:63 -msgid "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" -msgstr "" - -# 3925c430d6504c4a9d68a4e3456a6637 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:67 -msgid "" -"The Australia-Indonesia Facility for Disaster Reduction (|AIFDR|) is a joint " -"initiative between the governments of Australia and Indonesia. They work to " -"strengthen Indonesia's ability to reduce the impact of disasters. The " -"Australian and Indonesian governments at a special ceremony on 15 July 2010 " -"launched the Australia-Indonesia facility. The launch marks an important " -"event in the strong relationship now shared by both countries and their " -"united commitment to better prepare for and respond to natural disasters in " -"Indonesia." -msgstr "" - -# ff0ca3bdd70c4c9f8b2e25f60b2fa245 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:76 -msgid "http://aifdr.org" -msgstr "" - -# d2bf989b83eb4a96a77f0c99b80bd024 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:79 -msgid "Humanitarian OpenStreetMap Team (HOT)" -msgstr "" - -# fab017c38d1d4e6882e7fa3a80ef955c -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:83 -msgid "" -"Free, collaborative maps are uniquely valuable to humanitarian work, " -"especially in places where base map data is often scarce, out-of-date, or " -"rapidly changing. OpenStreetMap is a web project to create a free and open " -"map of the entire world, built entirely by volunteers surveying with GPS, " -"digitising aerial imagery, and collecting and liberating existing public " -"sources of geographic data. The Humanitarian OpenStreetMap Team (|HOT|) is " -"an initiative to apply the principles and activities of open source and open " -"data sharing towards humanitarian response and economic development." -msgstr "" - -# e9a9b78697b245b996aefeb25efa0f98 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:92 -msgid "http://hot.openstreetmap.org" -msgstr "" - -# 3ff955ece7ba43e4b3ddc8f9ca412ce8 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:95 -msgid "Universitas Gadjah Mada" -msgstr "" - -# 08ccb2d1f7c7454a8957359b416f70a8 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:99 -msgid "" -"Universitas Gadjah Mada (internationally known as Gadjah Mada University, or " -"UGM) is a top research university located in Yogyakarta, Indonesia. The " -"Department of Geodetic Engineering and Faculty of Engineering focuses on " -"education, research, and community services related to geodesy and geomatics " -"engineering, including acquisition, analysis, and uses of detailed and " -"accurate geospatial data and large-scale maps using open source geospatial " -"software for disaster management." -msgstr "" - -# d4eea4cf7dbe4102b766246077056ffc -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:107 -msgid "http://ugm.ac.id" -msgstr "" - -# 9378e3190167428d8b17df1100325021 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:110 -msgid "Preface" -msgstr "" - -# 85b4e49add414e44b456321183c13d0f -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:111 -msgid "" -"A Geographic Information System (GIS) is a system designed to enable people " -"to work with data related to places on Earth. A GIS allows the creation, " -"storage, manipulation and analysis of geographic data. GIS is a very broad " -"concept and can involve complex hardware and software. But for most people’s " -"purposes, a simple GIS software application is all that is required." -msgstr "" - -# c51a6e4cfab64da7834c5be2721ad72d -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:119 -msgid "" -"GIS can be used in a variety of fields, including disaster management. In " -"this training we use GIS software that is free and open, which includes " -"special functionality for the preparation of contingency plans." -msgstr "" - -# 1787c51490c04539ac14fd6b3c8f7b53 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:124 -msgid "" -"The software, called |QGIS|, is a Geographic Information System (GIS) that " -"is user-friendly and open-source. |project_name| is a QGIS plugin, which is " -"also free and open-source. It can create realistic scenarios of natural " -"disaster impact for planning, preparation and better response. |" -"project_name| is developed by |AIFDR| through consultation with |BNPB|." -msgstr "" - -# 087085d2dcc042d3a6a58cfb958d911a -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:130 -msgid "" -"Data Analysis using QGIS and |project_name| covers different material from " -"the previous unit, complementing and building on top of it. Unit One was " -"about the collection of relevant data using OSM. In this unit we will " -"explore how to use geographic data to better understand disaster impact and " -"to help develop contingency plans." -msgstr "" - -# df5816de6b254c7687921aaf2e773c34 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:136 -msgid ":ref:`Go to first module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.po deleted file mode 100644 index 1b6305f7..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.po +++ /dev/null @@ -1,134 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# a6db799e425f42ce88be02c4313fb856 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:10 -msgid "Module 1: GIS for Developing Contingency Plan" -msgstr "" - -# 7a14d599404d4931bc4d7450ddc58fb7 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 07a891f399b644f784240165c4ad9004 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:14 -msgid "Distinguish between data and information" -msgstr "" - -# f4121fa94b5c4eb388ef4152f00244fc -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:15 -msgid "Understand the concept of GIS" -msgstr "" - -# 5df587301cf0489cb1ea1e6d289143b7 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:18 -msgid "Difference between data and information" -msgstr "" - -# 55fc9eff258d432fb510b0174943c57f -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:20 -msgid "" -"In the first unit, we looked at OpenStreetMap and how to collect data and " -"add it to the worldwide map. But what do we mean when we say that we collect " -"data? Is this the same as collecting information? Well, not exactly." -msgstr "" - -# 1d6df95a09624755b081d5c341a88794 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:24 -msgid "" -"Data are raw facts. Information is data that is organised and presented in " -"such a way as to be useful. In other words, when we go mapping to collect " -"locations and facts about those locations, we have collected data - we have " -"collected facts. To turn this data into information, we must make sense of " -"it. We must present the data in such a way that it can be easily understood." -msgstr "" - -# d1964df3f5c94a57887521ad76bc4ee8 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:30 -msgid "" -"OSM data is already made informative in an obvious way. The map that you see " -"when you visit the OSM website is there because a computer has processed all " -"of the OSM data and used it to paint a nice looking map. The map is " -"informative, and useful for us to see where places are in relation to us." -msgstr "" - -# 838d08aa2cbf4b23890943aad39f004d -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:35 -msgid "" -"In this unit we will take this even further. We will learn how to perform " -"geographic data analysis, and thereby learn how to make our data more " -"useful, informative and effective." -msgstr "" - -# ba789d8903ec4bfeb218b97ee34df790 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:40 -msgid "Terminology of Geographic Information Systems (GIS)" -msgstr "" - -# 1905e1ad30914f97ab740cb8c1c39502 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:42 -msgid "" -"A Geographic Information System (GIS) is a system designed to enable people " -"to work with data related to places on the Earth. A GIS allows the creation, " -"storage, manipulation and analysis of geographic data. GIS is a very broad " -"concept and can involve complex hardware and software. But for most people’s " -"purposes, a simple GIS software application is all that is required, and in " -"this unit we will learn how to use the excellent open-source application, " -"QGIS." -msgstr "" - -# 6d7069e2eedb4bdc80aef79e3212c152 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:49 -msgid "" -"GIS provides different ways of analysing data. It enables us to ask complex " -"questions, such as:" -msgstr "" - -# 07149ab44b394058b93b052b3b71f3c0 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:52 -msgid "Where are all schools with more than 100 students?" -msgstr "" - -# 574a5dc16ab34ee3bf8cc9f57c2717f2 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:53 -msgid "How many children live in a certain district?" -msgstr "" - -# decffb28de734499b69037e970e52e7b -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:54 -msgid "How many women live within 500 metres of a certain hospital?" -msgstr "" - -# 55b072694ab14602af1a241feb1acc0a -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:55 -msgid "What is the shortest walking path from a given point to a hospital?" -msgstr "" - -# 43b12bd168624429b950e083cf38d90c -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:57 -msgid "" -"GIS helps us to answer these sorts of questions. In the previous unit we " -"learned how to collect data, and in this unit we will see how to analyse it." -msgstr "" - -# a511f08268354e76b676363cfba4ab81 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:60 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.po deleted file mode 100644 index 36e0500c..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.po +++ /dev/null @@ -1,208 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 4c3d7f770afd4d03aa7969fbc02c7b6b -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:10 -msgid "Module 2: QGIS and |project_name| in Contingency Planning" -msgstr "" - -# 8cbe7f06be2b49ad923e3d19f36a4bae -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# aaa40ad22d09477cb8fe01ddabab2e33 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:14 -msgid "Understand the role of GIS in contingency plan preparation" -msgstr "" - -# 952e9ebcc21049e8a0797a81c3d67470 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:15 -msgid "Understand the importance of data" -msgstr "" - -# 578c8f896c5344bfa1d26a929e336623 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:16 -msgid "" -"Understand the benefits of QGIS/|project_name| in the development of " -"scenarios for contingency planning" -msgstr "" - -# 5e50ca14488f4098987ce4a0cf647f26 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:20 -msgid "GIS for preparing contingency plans" -msgstr "" - -# 59c075b098a8476ca457e8c9d2246f08 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:21 -msgid "" -"GIS has an important role in contingency planning. A contingency plan is " -"intended to support community preparedness to anticipate the arrival of a " -"potentially hazardous event, such as an earthquake or tsunami. The purpose " -"of such a plan is to minimise casualties and losses in case of such an event." -msgstr "" - -# df2470d3045f4064b8737cea416e6995 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:28 -msgid "" -"Before contemplating a contingency plan, one must first consider potential " -"disaster scenarios. A good plan will likely answer questions such as:" -msgstr "" - -# f68597283ec64d5b90614a9a1404e020 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:32 -msgid "what sort of disaster is likely to happen?" -msgstr "" - -# 3a2ea0668f9244ccb6db5a967a016eb9 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:33 -msgid "how widespread might the impact be?" -msgstr "" - -# 1a26beb28cc84ca8bc278f9525d4d0d0 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:34 -msgid "who is responsible for helping?" -msgstr "" - -# 5c4dff0dabf04fa2ae97c636992402e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:35 -msgid "what should be given as aid?" -msgstr "" - -# a6137b9cfe91454b936da5fc5d000e56 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:36 -msgid "where are the priority areas?" -msgstr "" - -# 75f7b703ca9d40fdacfbeb63d0596067 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:38 -msgid "" -"In other words, a contingency plan answers the question, who does what, " -"where and when?" -msgstr "" - -# 2a3ca5c1053b42518511e23d234437af -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:41 -msgid "" -"A Geographic Information System is able to help planners answer these " -"questions, especially the important spatial elements of contingency " -"planning. GIS may be used to model hazardous events so that they can be " -"better predicted. It may be used to plan evacuation routes prior to a " -"disaster. When a disaster occurs, GIS may also play a role in the emergency " -"response phase. It can be used to map the area affected and position of " -"refugee camps, so that helpers can be directed to the most useful locations " -"to aid those affected. After a disaster, GIS may also be used to plan for " -"rehabilitation and reconstruction. Overall, GIS helps to perform analysis of " -"a disaster, damage and losses caused, and opportunities for reducing risk." -msgstr "" - -# 25a5170ae891409eb1367229bbb681d3 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:56 -msgid "The importance of data" -msgstr "" - -# 0708e1d922bf4d94bcbc9c722772cab3 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:57 -msgid "" -"We previously learned how to start collecting exposure data. When thinking " -"about GIS it is important to remember that if your data is bad, your " -"analysis will be bad also. Hence the more detailed and accurate your data " -"is, the better your analysis and action may be during a disaster." -msgstr "" - -# 4f27ff0f9d90445490a7507b0d297227 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:63 -msgid "" -"As we shall see in this unit, some data may be obtained from various " -"agencies that specialise in certain kinds of data. For example, we will " -"obtain our hazard models (hazard data) from various organisations that " -"specialise in this. As for exposure data, some data we may find through " -"agencies, such as population data. For infrastructure data, collecting data " -"at a community level is key, which is why in the previous unit we learned " -"how to utilise the crowd-sourced OpenStreetMap platform." -msgstr "" - -# b3d3b9fa789f4998a5ae868b30edf0cf -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:74 -msgid "QGIS and |project_name|" -msgstr "" - -# d8e60456200c431e9068a86de8f6a4e9 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:75 -msgid "" -"QGIS is a user-friendly open-source Geographic Information System (GIS). It " -"runs on Windows, Mac OSX, and Linux. QGIS provides a continually growing " -"number of capabilities provided by core functions and plugins. You can " -"visualise, manage, edit, analyse data and compose printable maps. QGIS is " -"great because:" -msgstr "" - -# 175fcf9d6c9940d48459424b3a5cacd6 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:82 -msgid "It’s completely free. It doesn’t cost anything." -msgstr "" - -# 2fb637188c17439b9ae484e36c604466 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:83 -msgid "" -"It’s free, as in liberty. If you think a feature is missing, you can sponsor " -"the development of a feature, or add it yourself if you are familiar with " -"programming." -msgstr "" - -# ca7bf1b9ee784f73bf68b795aa95cfd0 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:86 -msgid "" -"It’s constantly developing and improving. Because many people continue " -"adding features, it keeps getting better." -msgstr "" - -# 0b95b456bdd24daf9fc6d5d3c4c2b4b9 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:88 -msgid "" -"Extensive help and documentation is available. If you have problems you can " -"always turn to the software documentation, other QGIS users, or even the " -"developers." -msgstr "" - -# 22cc3a470f724c26ab18fdd4784b86a8 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:92 -msgid "" -"QGIS has many plugins which extend the core functionality of the software. " -"One of these plugins is |project_name|, which can be used to analyse the " -"impact of a disaster and create a list of actions needed to be taken when a " -"disaster occurs. QGIS and |project_name| can also help to determine the " -"location of ideal places of refuge, evacuation routes, areas likely to be " -"damaged and more." -msgstr "" - -# a8900149e20c4b429b3e2fd05bc9529c -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:102 -msgid "" -"|project_name| provides overviews of potential disaster scenarios and their " -"outcomes, as well as maps which can aid decision-makers when disaster " -"strikes. Maps are an effective way of communicating disaster impact, by " -"showing in a simple way the areas of damage, such as the extent of flood-" -"affected areas and buildings affected by a flood." -msgstr "" - -# 9c87be1dbe7845e295fa745508860d9d -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:109 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.po deleted file mode 100644 index 7394a793..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.po +++ /dev/null @@ -1,608 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# c8c9d2c189924d0d91fd33a9720312c0 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:10 -msgid "Module 3: The Basics of QGIS" -msgstr "" - -# ffe076e4ed1646b19c9875e44585c40b -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 5e2f4d9498074c78a9c9041c7fc76433 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:14 -msgid "Download QGIS" -msgstr "" - -# 71fe85a764634c01bc4e19e9d119ffc7 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:15 -msgid "Install QGIS" -msgstr "" - -# f1dd3cabfca14bf8b960b44fc656f59e -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:16 -msgid "Open a previously created QGIS project" -msgstr "" - -# 8c906eb50a7049588b0849cf1bb004d7 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:17 -msgid "Understand the layers panel" -msgstr "" - -# d128a2ddbb5949e4a9c15ff08be7dac5 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:18 -msgid "Access basic tools through the toolbar" -msgstr "" - -# ce9a819f0b1b457c81fdafaab8d845e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:19 -msgid "Clean up the toolbar" -msgstr "" - -# 0e0d0bc7c8c848769050b918738f047c -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:20 -msgid "Show a map in the map window" -msgstr "" - -# 720c7364075f4a3d84b38f2b0b084236 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:21 -msgid "Get information on an active map through the status bar" -msgstr "" - -# e2d8a6c7e52b44d9b3500d86e8b733f1 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:23 -msgid "" -"In this module we begin using QGIS. We’ll see how to install the software " -"and understand the layout, interface and core functions of the software. By " -"the end of this module, you’ll be on your way to becoming a competent GIS " -"user!" -msgstr "" - -# 639d23d590064db1ac062e67b3b3b3ad -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:29 -msgid "" -"Note that if you have previously installed QGIS, feel free to skip ahead to :" -"ref:`section three `. Otherwise, let’s start here and " -"get QGIS installed." -msgstr "" - -# f95373723ebd4e319d1dbbd5ea8af112 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:34 -msgid "1. Getting QGIS" -msgstr "" - -# 1d396b8daa874029ad5e204904943cb8 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:35 -msgid "" -"Open your web browser and in the address bar at the top of the window, type :" -"kbd:`qgis.org`. Press :guilabel:`Enter`." -msgstr "" - -# fc748fcaa2224f2da7f5c085abc119cb -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:42 -msgid "The QGIS website will look something like this:" -msgstr "" - -# a9b658701f9f4f1f8af76ec6ed607293 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:47 -msgid "Click :guilabel:`Download Now`." -msgstr "" - -# 88c5c5c788ca44c2b70a4b3f2c195175 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:52 -msgid "" -"If you are using Windows click :guilabel:`QGIS Standalone Installer Version " -"2.8 (32 bit)`. Your exact version number may be different." -msgstr "" - -# bb1f5dc80ebc4d9db573632de5a85737 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:59 -msgid "" -"If you are not using Windows, select your operating system from the menu. " -"Follow the installation instructions." -msgstr "" - -# 3e2450dd47a54af5ac0686a075a416ba -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:65 -msgid "" -"When the file is downloaded, run it and follow the instructions to install " -"QGIS." -msgstr "" - -# cf7c7ab173004de0848a7941060d9f2f -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:69 -msgid "2. Installing QGIS" -msgstr "" - -# ed8c1592680d40af8fb98933a3808a7f -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:71 -msgid "Open the folder where you have the QGIS installation file." -msgstr "" - -# 89a93a248e0d49f7abe0b167cb40e71c -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:76 -msgid "" -"Run the installation file. If you are installing QGIS version 2.x, it should " -"look like this:" -msgstr "" - -# d19eef3eed54448eb0f37c72d6247371 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:82 -msgid "Click :guilabel:`Next`." -msgstr "" - -# 4a675d05397343a39c9bcdfd77f9cec3 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:84 -msgid "" -"Click :guilabel:`I Agree` to agree with the conditions in the licence " -"agreement." -msgstr "" - -# 9d16aedc085546e8a8b0354095eeee80 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:90 -msgid "" -"The next window asks where you would like to install QGIS. In most cases, " -"the default should be fine. Click :guilabel:`Next`." -msgstr "" - -# f9afa424d66f450ea3738fbd045d04df -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:97 -msgid "" -"In the next window, Click :guilabel:`Install` without checking any of the " -"boxes." -msgstr "" - -# d95490e506e0442e9e6cddba24123439 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:103 -msgid "QGIS will begin to install. It may take a few minutes to complete." -msgstr "" - -# 762a723842d74729b417ecc4bc6257e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:108 -msgid "" -"Click :guilabel:`Finish` to complete the installation. Your computer will " -"automatically reboot." -msgstr "" - -# 2a88dbe736f3485a9a851c4ddae52c27 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:114 -msgid "Now open QGIS from the Start Menu." -msgstr "" - -# 9ee2c33b38fc4bcea1e1bc564e0f90fc -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:119 -msgid "QGIS will look something like this:" -msgstr "" - -# f76e4988579d482aa3b01eb2a749585b -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:127 -msgid "3. Terminology of Geographic Information Systems (GIS)" -msgstr "" - -# 56a6a19bfe6b489dbf64a6f9975c4d65 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:129 -msgid "" -"Next we will open up a QGIS project, and take a look at the different pieces " -"of the QGIS interface. If you installed |project_name| previously, make sure " -"it is closed by clicking on the X in the upper right corner of the |" -"project_name| panel. If it isn’t open or you haven’t installed it yet, carry " -"on. We will come back to this later." -msgstr "" - -# c47f96e729fe4c79a2c6ae78bfc95597 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:136 -msgid "" -"Click on the folder icon on the upper toolbar or go to :menuselection:" -"`Project ‣ Open...`" -msgstr "" - -# bca88f68ddd54ddc826a1d83d30e77b2 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:142 -msgid "" -"Navigate to the tutorial files and go into the :file:`qgis/` directory. Open " -"the file named :file:`sleman_2_2.qgs`." -msgstr "" - -# fa20ed97c7c74f3e97bb4fb220d249a3 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:145 -msgid "" -"QGIS should now look something like the following image. Let’s pause for a " -"moment and go over the various components of the QGIS interface." -msgstr "" - -# c9df07e1e7714da98a2c835717b6cb50 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:153 -msgid "Map canvas" -msgstr "" - -# a328af8ad900416fa435b68fbc69d853 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:154 -msgid "" -"This is the window where the map is shown. Our project has two different " -"files open, one which shows districts of the Sleman regency, and another " -"that shows the railway line running through the area. Both of these files " -"are drawn together in the map canvas." -msgstr "" - -# 0f4c83d1b4de4e919b451f11c74d3a4d -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:161 -msgid "Layers panel" -msgstr "" - -# 1c03954d3cca47d7ab5ef6a9f7d47944 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:162 -msgid "" -"On the left side of QGIS is the layers panel. This lists the layers, or " -"files, that are loaded into our QGIS project. In this project, we have two " -"layers, :file:`Kecamatan_Sleman` and :file:`railway_Sleman_OSM`." -msgstr "" - -# f91889bed666449e8025f0062c75245d -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:167 -msgid "" -"The layers panel not only shows all the files that are currently open, it " -"also determines the order that they will be drawn on the map canvas. A layer " -"that is at the bottom of the list will be drawn first, and any layers above " -"it will be drawn on top." -msgstr "" - -# 0b4bd9415c25401aa04cb77f494aa1bc -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:172 -msgid "" -"Click on the layer :guilabel:`railway_Sleman_OSM` and drag it below the " -"layer named :guilabel:`Kecamatan_Sleman`." -msgstr "" - -# 81d662e981f241dd8918aaecb0056b0a -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:178 -msgid "" -"Notice how the map canvas changes. The railway layer is now shown below the " -"district layer, and part of the railway is now obscured. A map should never " -"show railway hidden beneath district areas, so go ahead and move the layers " -"back." -msgstr "" - -# 0a7f619f06b44f298dae8e7fe3a6bd19 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:184 -msgid "" -"Uncheck the box next to a layer’s name. It will be hidden from the map " -"canvas." -msgstr "" - -# 24eb6f801d784812abb326794e50f305 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:187 -msgid "" -"Expand collapsed items by clicking the arrow or plus symbol beside them. " -"This will provide you with more information on the layer’s current " -"appearance." -msgstr "" - -# 6b2ee8eb4b5f4dc7891cdfeb20970329 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:194 -msgid "" -"Right-click on a layer to view a menu with extra options. You’ll be using " -"some of them before long, so take a look around!" -msgstr "" - -# 0c57c9fa0f5c40b3bc55d0cb7d402afb -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:198 -msgid "Toolbars" -msgstr "" - -# 14226ecfe3af4fe7a341590ded291db8 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:199 -msgid "" -"At the top of QGIS are a large number of tools, which are contained within " -"various “toolbars”. For example, the :guilabel:`File` toolbar allows you to " -"save, load, print and start a new project. We already used one of these " -"tools when we opened this project." -msgstr "" - -# c30ece788bd7489797791d42637b69fe -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:208 -msgid "" -"By hovering your mouse over an icon, the name of the tool will appear to " -"help you identify each tool. The number of tools (buttons) can seem a bit " -"overwhelming at first, but you will gradually get to know them. The tools " -"are grouped into related functions on toolbars. If you look closely you can " -"see a vertical array of ten dots to the left of each toolbar. By grabbing " -"these with your mouse, you can move the toolbar to a more convenient " -"location, or separate it so that it sits on its own." -msgstr "" - -# fd8c644beea54830a298c181470d6f20 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:221 -msgid "" -"If you feel overwhelmed by the number of toolbars, you can customise the " -"interface to see only the tools you use most often, adding or removing " -"toolbars as necessary." -msgstr "" - -# 4dec85f6ae7c4e8bb57c45a2865e1e79 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:225 -msgid "" -"To add or remove a toolbar, right-click on any of the toolbars, or go to :" -"menuselection:`View ‣ Toolbars`." -msgstr "" - -# a9ef003243194568a26ca6473a16c740 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:231 -msgid "" -"Let’s remove some of the toolbars that we will not be using in this " -"training, to make the interface a bit cleaner. Right-click on the toolbar, " -"and uncheck the boxes next to the following toolbars:" -msgstr "" - -# 76c25d46182d45988c5f1f4975cc6ccd -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:236 -msgid "Advanced Digitising" -msgstr "" - -# a6a950c6249e460f858f14c21609fa7b -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:237 -msgid "Database" -msgstr "" - -# 69dbac66b6da48aca073a43e3b11e60a -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:238 -msgid "GRASS" -msgstr "" - -# 9b8bf899d32a469781a6c1c35ad9f9cf -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:239 -msgid "Label" -msgstr "" - -# 2ab5c73bc50144fc80317dc6e31117fd -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:240 -msgid "Raster" -msgstr "" - -# c98f6e42dda24e52805e4b4c5ba59dd4 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:241 -msgid "Vector" -msgstr "" - -# a4d4a9717fdf4856ae29d20c05dec178 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:243 -msgid "" -"After removing these toolbars and moving them around, your tools should look " -"like this:" -msgstr "" - -# 20c9881abeee41028de414630c3a7c22 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:249 -msgid "" -"Even if they are not visible in a toolbar, all of your tools will remain " -"accessible via the menus. For example, if you remove the :guilabel:`File` " -"toolbar (which contains the :guilabel:`Save` button), you can still save " -"your map by going to :menuselection:`Project ‣ Save`." -msgstr "" - -# 3420067df7ab40ad994fb83e7376e533 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:256 -msgid "Status Bar" -msgstr "" - -# 19af154b91a548ec959c72bf311baa3d -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:257 -msgid "" -"The status bar shows information about the current map. It allows you to " -"adjust the map scale and see the mouse cursor’s coordinates on the map." -msgstr "" - -# c4cca2545fc3496aae50c57df153950f -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:264 -msgid "" -"The coordinates of this map are the same type of coordinates that are " -"recorded by GPS devices. The status bar shows the longitude and latitude of " -"your mouse cursor." -msgstr "" - -# a7d5ee309ae040b4b127235afedae28a -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:268 -msgid "" -"This may not all be clear right now, but as you progress in your knowledge " -"of GIS, this will make more and more sense." -msgstr "" - -# fa19fa0dac98440fa65edebfb79a1346 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:274 -msgid "4. Adding a vector layer" -msgstr "" - -# 7272b8f91da64376911aae8e75e6bdde -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:275 -msgid "Now we will add an additional layer containing roads to our project." -msgstr "" - -# b9d8b7b711824b9eb8902550de9f7cce -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:277 -msgid "Click on the :guilabel:`Add Vector Layer` button on the toolbar." -msgstr "" - -# 02f418d8526247a7ba3248bf1cb6ba8d -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:282 -msgid "A dialog box will open. Click the :guilabel:`Browse` button." -msgstr "" - -# fdfecea7f3f24995b4cf649aeecf0020 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:287 -msgid "" -"Navigate to the file :file:`qgis/Sleman/Jalan_Sleman_OSM.shp` (you may need " -"to unzip the file :file:`Sleman.zip` first). Select the file and click :" -"guilabel:`Open`." -msgstr "" - -# 3be32d45d03a498785fafabdd7f1c28b -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:292 -msgid "" -"One of the most common file formats are shapefiles, which end with the " -"extension :file:`.shp`. Shapefiles are often used to save geodata, and are " -"commonly used with GIS applications like QGIS." -msgstr "" - -# ae69218463e84c3b9b2a43c27911835b -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:297 -msgid "" -"You should now see your new layer appear both in the map canvas and in the " -"layers panel. It should be drawn above both the district and railway layers." -msgstr "" - -# d17070fb73994647b02f9ecd9d09d246 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:305 -msgid "5. Basic QGIS tools" -msgstr "" - -# 4edb89c58e0741fdabec72d2edb475cf -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:306 -msgid "" -"We’ve already taken a look at the QGIS toolbar and seen the tools for " -"opening a project and adding a new layer. Here’s a list of some other " -"commonly used tools. Feel free to play around with them if you like. The " -"important thing for now is to start getting familiar with QGIS." -msgstr "" - -# 230c9050bdc74ef0b1df54b8fffee54d -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:313 -msgid "Toggle Editing" -msgstr "" - -# a78abb11b48345cd9c184a4424c067b3 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:313 -msgid "Edit features in a layer" -msgstr "" - -# 4f35ef8b707d48cc99d841213b928f3b -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:315 -msgid "Pan Map" -msgstr "" - -# 691d514271c4451985ac026b02323c0f -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:315 -msgid "Drag the map into new location" -msgstr "" - -# 61feac568abe4d7290ce72104007c641 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:317 -msgid "Zoom In" -msgstr "" - -# b409910e78b148748be27e7f1e21b1c1 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:317 -msgid "Zoom in on the map" -msgstr "" - -# 6622e68e70034362abf5686629f89e8c -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:319 -msgid "Zoom Out" -msgstr "" - -# 9ea0288b1a354b9eba3fe8ade2077dd6 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:319 -msgid "Zoom out on the map" -msgstr "" - -# 6f75b55b51244a3b9fdc8bab851b0d6a -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:321 -msgid "Zoom Full" -msgstr "" - -# 7ded18e6a3b6425db7cc7b7a90078730 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:321 -msgid "Zoom so that all layers fit in the map window" -msgstr "" - -# 4347a01e3b1342739e608be3bf0d486f -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:324 -msgid "Open Attribute Table" -msgstr "" - -# 75fd24ab17bb41b781d41a8b889a2a02 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:324 -msgid "Open a layer's attribute table" -msgstr "" - -# 0e78d38c60d44b80ab7dc540fd985540 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:326 -msgid "Select Single Feature" -msgstr "" - -# 298ce437dd4b4e078ba5da64d73ec4a1 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:326 -msgid "Select a feature in selected layer" -msgstr "" - -# 6695f95498b24b369e0e6200c997979e -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:331 -msgid "6. Navigating the map" -msgstr "" - -# 9983e1f5ecac45dfa1a1a9d9be37ad48 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:332 -msgid "" -"Before we examine the attributes of individual features, let’s take a quick " -"look at how to navigate the map. The main controls for moving the map around " -"and zooming in and out are by default on the panels at the top of QGIS." -msgstr "" - -# b95fa42059f24bddb1228c1083378e0d -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:340 -msgid "" -"When you click on one of these buttons, it changes what you can do with your " -"mouse in the main map window." -msgstr "" - -# eec3ebefa39c4dbf990f882899fe7624 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:343 -msgid "" -"Select the first button that looks like a hand. Now hold the left mouse " -"button down and drag the mouse in the map window. This allows you to pan the " -"map, or move it around." -msgstr "" - -# d05c5ca6e3f045b3860c39118106c6cd -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:347 -msgid "" -"The button that has a plus sign below a magnifying glass allows you to zoom " -"in on the map. Select this button. Using your mouse, draw a box around an " -"area where you want to zoom in, and release your mouse." -msgstr "" - -# 1aff1e88c0154670a90eab7d18348516 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:353 -msgid "" -"The button that has a minus sign below a magnifying glass allows you to zoom " -"out on the map. Select this button and click on the map." -msgstr "" - -# 8b173d3cff8f45acad87aba80deb6222 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:357 -msgid "" -"The button that looks like a magnifying glass with red arrows pointing away " -"from it lets you zoom to the full extent of your map. Click this button to " -"see all of the data that is loaded in the project fit into the map canvas." -msgstr "" - -# b1eda9b02fd549738a63526cb0d6b5af -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:363 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.po deleted file mode 100644 index 6f628709..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.po +++ /dev/null @@ -1,264 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 598218c2f02e49bdb243b55c17b49a8a -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:10 -msgid "Module 4: QGIS Plugins" -msgstr "" - -# 44cdc173726c47ed9a72c429e8ad1bc6 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 86305682140746d8a5af01287fcc44d6 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:14 -msgid "Understand the concept of plugins" -msgstr "" - -# c82dbec74bfb420d82d4535e59f011f2 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:15 -msgid "Install QGIS plugins" -msgstr "" - -# 98c824fe001f47e4a37a6f4b754a0893 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:16 -msgid "Add satellite imagery via OpenLayers" -msgstr "" - -# 672cb69772244bea9fd510d437097403 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:18 -msgid "" -"QGIS has core functionality, which we will continue to explore in this " -"guide, but it also allows the use of plugins, which add functionality to the " -"software. Again, these plugins are free. To use them, we simply need to " -"connect to the internet and install. In this module we will learn how to " -"install QGIS plugins, using one plugin to add a satellite imagery layer to " -"our QGIS project." -msgstr "" - -# 1d123d549b104996a430487ebfbdce3c -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:26 -msgid "" -"If you have closed QGIS since completing the previous module, start QGIS and " -"open the project :file:`named sleman_2_3.qgs` in the :file:`qgis/` folder." -msgstr "" - -# be7ca4579d96460d897b23ecec191036 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:29 -msgid "" -"Note that you must be connected to the internet to follow the exercises in " -"this module." -msgstr "" - -# 31efac76dc02416b96fe08d0b65d540a -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:33 -msgid "1. Managing plugins" -msgstr "" - -# cf97d74458e6470da788c6657798aaad -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:34 -msgid "" -"To install new plugins, they first need to be downloaded and activated. Some " -"plugins are already downloaded and available." -msgstr "" - -# 14838ccd9dcd428491dc1edfb2640d45 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:37 -msgid "" -"Go to :menuselection:`Plugins ‣ Manage and Install Plugins...` to view them." -msgstr "" - -# cbf764c40c9e4001b0ef0a076e417e14 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:42 -msgid "" -"This displays a list of plugins that have already been downloaded and can be " -"activated. To enable a plugin, check the box next to it in this menu. For " -"now, let’s leave all the plugins as they are. We’re going to download and " -"activate a new plugin in the next section." -msgstr "" - -# 38f0e55904524aadbe0481fd3df10b60 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:53 -msgid "2. Installing plugins" -msgstr "" - -# d05b260f981a4a32af4c8daa5e22128f -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:54 -msgid "" -"There are many more plugins, but they must first be downloaded. To download " -"a plugin, click the :guilabel:`Not installed` tab. This will load available " -"plugin repositories, and you will see a list of all available plugins for " -"download." -msgstr "" - -# 50e1a007a7144b99a1a683e4b35f5b2b -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:62 -msgid "" -"Note that plugins, which have already been downloaded can be activated or " -"deactivated from the :guilabel:`Installed` tab. If it has not yet been " -"downloaded, downloading a plugin from the :guilabel:`Not installed` tab will " -"automatically activate it." -msgstr "" - -# 02d12f0c67214830a720cf0694f79d5f -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:68 -msgid "3. The OpenLayers plugin" -msgstr "" - -# 4c4dd5a410284cf1bf73f5001e42ab90 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:69 -msgid "" -"The OpenLayers plugin allows you to view various web maps as a layer in " -"QGIS. This means that you can access the OSM slippy map, Google Maps and " -"Bing Maps from within QGIS. Follow along and we’ll see how this works." -msgstr "" - -# f99d2ad9c74646cea4831478d07811c2 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:73 -msgid "" -"Go to :menuselection:`Plugins ‣ Manage and Install Plugins` and click on " -"the :guilabel:`Not installed` tab. Type :kbd:`openlayers` into the Search " -"box." -msgstr "" - -# 97d9c7ad15f64363978b9e1f059ace59 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:79 -msgid "" -"Select :guilabel:`OpenLayers Plugin` from the list and click :guilabel:" -"`Install plugin`." -msgstr "" - -# 35a19739e59c439cba9eca12519b79d6 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:85 -msgid "It may take a few minutes to download." -msgstr "" - -# 1248eeebdaa0470a8f3db731e947283c -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:90 -msgid "When the download finishes click :guilabel:`OK`." -msgstr "" - -# 479e3110b5884efc8651df446ab36e85 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:95 -msgid "" -"Now the OpenLayers plugin is installed and activated. Click the :guilabel:" -"`Installed` tab to see it in your list of active plugins. Click :guilabel:" -"`Close` when you are finished." -msgstr "" - -# 9b4b212c69034d9da99b8d41fc3e469b -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:102 -msgid "" -"The new plugin provides a menu which offers extra functionality. Go to :" -"menuselection:`Web ‣ OpenLayers plugin` to see various map layers that can " -"be loaded." -msgstr "" - -# 98d511939cac4966a6b60b0ae073abbe -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:109 -msgid "" -"Go to :menuselection:`Web ‣ OpenLayers plugin ‣ Bing Maps ‣ Bing Aerial`. A " -"new layer called “Bing Aerial” will be added to the Layers panel, and the " -"imagery will load in the map canvas. If the layer is above your other " -"layers, drag it to the bottom of the layers list." -msgstr "" - -# 9c662893ae7f4a3ea902735b5a80ab41 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:117 -msgid "Your project should now look like this:" -msgstr "" - -# 0e380b1fbfb446ecb70531abdf183468 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:122 -msgid "" -"If you pay attention, there is something wrong with the map. Can you guess " -"what it is? All three layers above Bing Aerial layers should be shown on the " -"map." -msgstr "" - -# ea62c94244de4ec890b991fc843fee5b -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:126 -msgid "" -"To fix this, go to :menuselection:`View ‣ Panels` and check the box next to :" -"menuselection:`Layer order`." -msgstr "" - -# 4eb7081750e549e9be55cfd5641e8183 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:132 -msgid "" -"The Layer order panel will appear next to the Layers panel (1). Click it and " -"uncheck :guilabel:`Control Rendering Order` (2)." -msgstr "" - -# 5bdc634e235a461fb860861453b379c4 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:138 -msgid "" -"Return to the Layers panel. The map layers should now appear in the correct " -"order. All layers above Bing Aerial will show up on the map canvas as in the " -"image below." -msgstr "" - -# 861adf5b70364f81b0782049782a06f9 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:145 -msgid "" -"Adding a layer such as Bing Aerial will change the Coordinate Reference " -"System, or CRS, of your project. Essentially this means that your project is " -"not using longitude and latitude coordinates anymore. This shouldn’t affect " -"you right now, but it will make sense later when we cover CRSes." -msgstr "" - -# f24e0f942cc34e7eae3f6fb8a9036b4c -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:151 -msgid "" -"If the map data does not appear to match up correctly with the aerial " -"imagery, it may be due to different CRSes. You can fix this problem by going " -"to :menuselection:`Project ‣ Project Properties` and checking the box next " -"to :guilabel:`Enable ‘on the fly’ CRS transformation`." -msgstr "" - -# de631f68a62b4c5db7b0f2940e960242 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:162 -msgid "" -"Great! Now we can see our map data on top of an aerial photograph of the " -"Earth. Note that this is the same imagery provided by Microsoft Bing that " -"you would load for editing in JOSM. Try unchecking the box next to the " -"layer :guilabel:`Kecamatan_Sleman` so that you can see the area better. Zoom " -"in close to see detailed imagery with our street and railway layers " -"displayed on top." -msgstr "" - -# 163344e2b260491f9e28dd9dc49fd5cf -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:172 -msgid "" -"Remove the Bing Aerial layer by right-clicking it in the Layers panel and " -"clicking :guilabel:`Remove`." -msgstr "" - -# d46918117d574a1b93426c8761ab3953 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:175 -msgid "" -"Try out other layers that are available from the :menuselection:`Web ‣ " -"OpenLayers plugin` menu." -msgstr "" - -# f614a8f583da438cb6a55626646a5e63 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:179 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.po deleted file mode 100644 index 706a4889..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.po +++ /dev/null @@ -1,471 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# e3f54aaca4d84bdd955a43d877c6d834 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:10 -msgid "Module 5: Map Projection Basics" -msgstr "" - -# 2409d58b7c8d4d76b2568310f8d42427 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 6520fa72a5b840ca8bc41d929df0e9e8 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:14 -msgid "Understand Coordinate Reference Systems (CRS)" -msgstr "" - -# 6429d89dccef4eddb79df15823a4cf51 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:15 -msgid "Identify the CRS of a vector dataset" -msgstr "" - -# 755ed0eee0a74bd59a1f0f020ead7d11 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:16 -msgid "Do 'on the fly' reprojection" -msgstr "" - -# 97228f4aa33644eea3240f8b427b3cc6 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:17 -msgid "Save dataset with a different CRS" -msgstr "" - -# 1ac06164e2a04ad18bacc7051254d169 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:18 -msgid "Create a custom projection" -msgstr "" - -# 0a4b63e5a4414a12b1b776f43b7556df -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:20 -msgid "" -"We’ve talked a little bit about Coordinate Reference Systems (CRSs) " -"previously, but haven’t covered it in depth. In this module, we’ll look more " -"at what a CRS means practically, and how it affects our work in QGIS." -msgstr "" - -# 4f0ac1de34c54cf68259d7d6a9709da7 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:26 -msgid "1. Coordinate Reference Systems (CRS)" -msgstr "" - -# 2cd01e8369ef4f3eb7ea2d857a98a02c -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:28 -msgid "" -"The CRS that all the data, as well as the map itself are in right now is " -"called WGS84. This is a very common Geographic Coordinate System (GCS) for " -"representing data. But there’s a problem, as we will see." -msgstr "" - -# c495b75350234825adc932da17f923ac -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:34 -msgid "" -"Open the project :file:`world.qgs`, located in the :file:`qgis/` folder. " -"Zoom in to Indonesia by using the :guilabel:`Zoom In` tool." -msgstr "" - -# 67c17de30ceb4c899119e24b5f67a2cc -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:40 -msgid "" -"Set the scale in the :guilabel:`Scale` field, which is in the status bar " -"along the bottom of the screen. While over Indonesia, set this value to " -"1:20000000 (one to twenty million)." -msgstr "" - -# 74b9ea70ebb04beab0e7a2a62aef04f6 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:47 -msgid "Now pan around the map while keeping an eye on the Scale field." -msgstr "" - -# a2ef23f8f2034097871d268a6cf4bd3c -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:49 -msgid "" -"Do you notice the scale changing? This is because you’re moving away from " -"the one point that you zoomed into at 1:20000000, which was at the centre of " -"your screen. All around that point, the scale is different." -msgstr "" - -# f6d2bd5b3d974a7f88bea713d693b256 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:54 -msgid "" -"To understand why, think about a globe of the Earth. It has lines running " -"vertically along it from North to South. These longitude lines are far apart " -"at the equator, but they meet at the poles. In a GCS, you’re working on this " -"sphere, but your screen is flat. When you try to represent the sphere of the " -"earth on a flat surface, it becomes distorted, as if you took an orange peel " -"and tried to flatten it. What this means on a map is that the longitude " -"lines stay equally far apart from each other, even at the poles (where they " -"are supposed to meet). This means that, as you travel away from the equator " -"on your map, the scale of the objects that you see gets larger and larger. " -"What this means for us, practically, is that there is no constant scale on " -"our map!" -msgstr "" - -# 139d9861c60849b8a7081f9062f619a5 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:68 -msgid "" -"To solve this, we’ll use a Projected Coordinate System (PCS) instead. A PCS " -"projects or converts the data in a way that makes allowance for the scale " -"change and corrects it. Therefore, to keep the scale constant, we should re-" -"project our data to use a PCS." -msgstr "" - -# 1e73572d542c474682c36ac273df28c3 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:74 -msgid "" -"Projection is the act of taking coordinates on a sphere (like the earth), " -"and manipulating them so that they can be displayed on a flat surface." -msgstr "" - -# b77ded0edd4442a1a6e36d05cafea8f9 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:79 -msgid "2. “On the fly” reprojection" -msgstr "" - -# eac3294d4f864246bc039392f97dec1e -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:81 -msgid "" -"Every QGIS project has a CRS, and each of the data layers has a CRS too. " -"Often these are the same. Your project may be in WGS84, and the layers too. " -"But sometimes you will add a layer that is not in the same CRS as the " -"project, and you need QGIS to convert it so that it can be displayed along " -"with the rest of the data. The term that we use for this is reprojecting 'on " -"the fly'." -msgstr "" - -# b57a50b814c14ac782f1e22582240abe -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:89 -msgid "" -"To enable 'on the fly' projection, click on the :guilabel:`CRS Status` " -"button in the status bar along the bottom of the QGIS window:" -msgstr "" - -# 8ad334e993bf48bc832ae5e7e731a471 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:95 -msgid "" -"In the dialog that appears, check the box next to :guilabel:`Enable ‘on the " -"fly’ CRS transformation`." -msgstr "" - -# 002443cb43124bf8b8888b608ce0a970 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:101 -msgid "" -"Type :kbd:`NSIDC` into the Filter field. One CRS (\"NSIDC EASE-Grid Global" -"\") will appear in the list below." -msgstr "" - -# 07995583b80049b38716de1d8b6bb8d3 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:107 -msgid "Click on it to select it, and then click :guilabel:`OK`." -msgstr "" - -# f5cc52c7bb434bbc9df3d77cfc210b13 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:109 -msgid "" -"Notice how the shape of Indonesia changes. All projections work by changing " -"the apparent shapes of objects on Earth." -msgstr "" - -# 984ab1c6d6d3404e8a625f01c9fc1fae -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:112 -msgid "Zoom in to a scale of 1:20000000 again, as before." -msgstr "" - -# 5ba6465542d34590b18a33bab773ca2c -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:114 -msgid "Pan around the map." -msgstr "" - -# 5005898e3f2241bbab94faf7b7ba63a4 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:116 -msgid "" -"Notice that the scale stays the same! 'On the fly' reprojection is useful " -"for combining datasets that are in different CRSes." -msgstr "" - -# 0195f6490f0944fd94d520ef6a14c4e8 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:119 -msgid "" -"Deactivate 'on the fly' reprojection again, by unchecking the box next to :" -"guilabel:`Enable ‘on the fly’ CRS transformation`." -msgstr "" - -# db99a6232a174a2f9d5bec9a1a8ba34e -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:122 -msgid "" -"Load the vector layer :file:`Indonesia.shp` located in :file:`qgis/" -"peta_dunia/`." -msgstr "" - -# debf1bf5e42146ac814fd7500ac5100b -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:125 -msgid "" -"You may need to unzip :file:`peta_dunia.zip` first in order to open the " -"shapefile." -msgstr "" - -# 49e261d3013d47808eb87f108948e178 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:128 -msgid "" -"What do you notice? The layer is not visible! But that’s easy to fix, right?" -msgstr "" - -# be0ed0e18d11428ebeb03d4a3f0a6ac4 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:132 -msgid "Right-click on the new layer in the Layers panel." -msgstr "" - -# 6a4b1ef8d2b742f0b04f3a4b0613454c -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:134 -msgid "Click :guilabel:`Zoom to Layer Extent`." -msgstr "" - -# 23ab7f19e398478cb781e3375f44d22e -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:136 -msgid "OK, so now we see Indonesia... but where is the rest of the world?" -msgstr "" - -# 2e2345012e2f4727acd7f9f926626e8e -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:138 -msgid "" -"It turns out that we can zoom between these two layers, but we can’t ever " -"see them at the same time. That is because their Coordinate Reference " -"Systems are so different. The continents layer is in degrees, but the " -"Indonesia layer is in metres. In other words, one feature in the continents " -"layer might be 8.5 degrees away from the equator, but the same feature in " -"the Indonesia layer might be 900000 metres away from the equator." -msgstr "" - -# f4d0d87e30ce4126a52249b9c4efa5b1 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:147 -msgid "" -"8.5 degrees and 900000 metres is about the same distance, but QGIS does not " -"know that! One of our layers must be reprojected to match the other layer. " -"To correct this, again enable tranformation:" -msgstr "" - -# 389cb250bdad4e4ba2524902b79f11b0 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:152 -msgid "Activate :guilabel:`Enable ‘on the fly’ CRS transformation` as before." -msgstr "" - -# a08aff09c67943c1a8ca6c7b51117ea0 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:154 -msgid "Again click :guilabel:`Zoom to Layer extent` on the Indonesia dataset." -msgstr "" - -# 5c64874c3c394af28eb0b3675f299b6d -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:156 -msgid "" -"Now, because they’re made to project in the same CRS, the two datasets fit " -"perfectly:" -msgstr "" - -# 4d513d22c81b487a82fd1dada8b4741a -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:162 -msgid "" -"When combining data from different sources, it’s important to remember that " -"they might not be in the same CRS. 'On the fly' reprojection helps you to " -"display them together." -msgstr "" - -# a0f9539d7d3540d2b9da2fbb447e2e1f -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:167 -msgid "3. Datasets with different CRSes" -msgstr "" - -# e1c10cb576ce4709bf35e99b20906273 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:169 -msgid "" -"It’s great that QGIS can reproject layers on the fly so that we can work " -"with them in the same project. But this requires more time for our computer " -"to reproject the layers, and can slow down our work. For this, or for other " -"reasons, we might want to be able to reproject a dataset one time, and save " -"it with the new projection." -msgstr "" - -# 03b625e09acd46faa75ea7aeff019bdd -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:176 -msgid "" -"Let’s reproject the Indonesia layer so that it is in the same CRS as the " -"project. To do this, we will need to export the data to a new file using a " -"new projection." -msgstr "" - -# fa8cb003600e4e90965120fee03a7f3d -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:181 -msgid "Right-click on the :guilabel:`Indonesia` layer in the Layers panel." -msgstr "" - -# 810e700a7dee442cb09421a76b9dd08d -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:183 -msgid "" -"Select :guilabel:`Save As...` in the menu that appears. You will be shown " -"the :guilabel:`Save vector layer as...` dialog." -msgstr "" - -# bced811e3a0f482da0b10e209eab45cc -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:186 -msgid "" -"Click the :guilabel:`Browse` button next to the :guilabel:`Save as` field." -msgstr "" - -# 5f60641dcf4e47018547dad35c2567c1 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:188 -msgid "" -"Navigate to :file:`qgis/peta_dunia/` and specify the name of the new layer " -"as :kbd:`Indonesia_terproyeksi.shp`." -msgstr "" - -# 2012f4648993441191083b54abfaaecc -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:191 -msgid "Leave the encoding unchanged." -msgstr "" - -# 6d71524788724f6bbff5b25859b410a8 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:193 -msgid "" -"Change the value of the CRS in drop-down box to :guilabel:`Project CRS`." -msgstr "" - -# a11d34b9dc384a67ae3a6b1fbc8ef0eb -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:195 -msgid "Check the box next to :guilabel:`Add saved file to map`." -msgstr "" - -# e4d0c8c9054b4bef8bb3d75dc1c2eac1 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:197 -msgid "The :guilabel:`Save vector layer as...` dialog now looks like this:" -msgstr "" - -# 4aecaa4fbfaf4f4485dcc89313937e57 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:202 -msgid "" -"Click :guilabel:`OK` and after a minute, above your map extent you should be " -"presented with:" -msgstr "" - -# 6949592c51a642d6a3bc21113c7fa8f7 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:207 -msgid "Wait until the notification disappear." -msgstr "" - -# ed489b1c758a4c5a81d119fc7b7c70c7 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:209 -msgid "" -"Now your new layer, :guilabel:`Indonesia_terproyeksi`, will be shown in the " -"layers panel. If you turn off 'on the fly' reprojection, this layer will " -"still be shown correctly, because it has been reprojected into the same CRS " -"as the project (and the continents layer)." -msgstr "" - -# 5c0e1c9876c3429693c7082950908433 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:215 -msgid "4. Creating a custom projection" -msgstr "" - -# 088d2a769a8748dab473ba98c6bd58d0 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:217 -msgid "" -"There are many more projections than just those included in QGIS by default. " -"You can even create your own projections. Let’s see how this works." -msgstr "" - -# 4dd459c7863b4416864df00703383cb0 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:221 -msgid "Start a new project." -msgstr "" - -# 6f7a52b8ecb941bbb5997564a193ddb6 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:223 -msgid "" -"Load the vector layer :file:`oceans.shp` located in :file:`qgis/peta_dunia/`." -msgstr "" - -# 9cc52fcd89554530bced559a45648822 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:226 -msgid "" -"Go to :menuselection:`Settings ‣ Custom CRS...` and you’ll see this dialog:" -msgstr "" - -# 648cbabc22e1414dab3fa960bc61d21d -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:231 -msgid "" -"We will create a projection known as Van der Grinten I. This interesting " -"projection represents the earth on a circular field instead of a rectangular " -"field, as most projections do." -msgstr "" - -# b7cc3ace4f0740e794eaf19a63c8df55 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:235 -msgid "Enter :kbd:`Van der Grinten I` in the :guilabel:`Name` field." -msgstr "" - -# da51c430c3504826bac90bc65cfb7ffd -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:237 -msgid "In the Parameters field, enter the following string:" -msgstr "" - -# c9bed4b230b7489fab6ebb0455bc71e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:239 -msgid "" -":kbd:`+proj=vandg +lon_0=0 +x_0=0 +y_0=0 +R_A +a=6371000 +b=6371000 +units=m " -"+no_defs`" -msgstr "" - -# a48bb981a6084437ab55a184d2180ee7 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:241 -msgid "Click :guilabel:`OK`." -msgstr "" - -# 0f56e9d928bc4417aaeff1c3c0a37700 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:243 -msgid "Go to :menuselection:`Project ‣ Project Properties`." -msgstr "" - -# 977ba28df1cb4fef8eadcc6afb84f1e7 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:245 -msgid "Enable 'on the fly' reprojection." -msgstr "" - -# 6086d6480da144b6b9e8094a4361354e -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:250 -msgid "" -"Search for your newly defined projection by typing it into the :guilabel:" -"`Filter` box:" -msgstr "" - -# b8832181699b48eb94b16894c23e1a00 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:256 -msgid "" -"You should see it appear in the box at the bottom. Select it, and click :" -"guilabel:`OK`." -msgstr "" - -# 0f8d89555d304db181bede19f54ef74a -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:259 -msgid "" -"Once you’ve applied the new projection, the map will be reprojected like " -"this:" -msgstr "" - -# b877a9ea8a1546a19f6f8c3319ac94bb -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:265 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.po deleted file mode 100644 index 2fe2e29e..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.po +++ /dev/null @@ -1,855 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 37540e785a3d4078869e17d9ebffc6a5 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:10 -msgid "Module 6: Working with Vector Data" -msgstr "" - -# 1572daa245454d21bf21760d7743ca67 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 68a8dddc16af459daa069f710a7e2806 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:14 -msgid "Understand vector data" -msgstr "" - -# cb1b83444d924949b031e1b6e0330db9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:15 -msgid "Identify attributes of vector data" -msgstr "" - -# c43c8e6ce6c942c1904fc471b3a55472 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:16 -msgid "Add vector layers" -msgstr "" - -# 10eb9c2d29e54b0b8660a25b09ed72ff -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:17 -msgid "Symbolise vector layers" -msgstr "" - -# 666870e255e34172b174aa9e633913a3 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:19 -msgid "" -"In this module, we will learn what is meant by vector data. We will practise " -"adding it to our QGIS projects, and we will learn how to style the data in " -"different ways." -msgstr "" - -# bca8c07185dd40e0b7e01cfbb6f23ed9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:25 -msgid "1. Vector data" -msgstr "" - -# b1ba1ef327f24adcb9f7fb29fcfba43c -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:27 -msgid "" -"Vector data is the most common type of data found in GIS. A vector is " -"essentially something made up of single points, or lines connecting those " -"points. In other words, points, lines and polygons are all vectors (curved " -"lines are vectors too, but we won’t worry about that for now). We are " -"already quite familiar with vector data because in the previous unit, we " -"used JOSM to create it!" -msgstr "" - -# 9a0c52cb628547869107e97d84b94a42 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:35 -msgid "" -"Each object in a vector dataset is referred to as a feature. In JOSM we " -"often refer to them as objects, but in traditional GIS terminology they are " -"features. A polygon that represents a building is a feature, as is a line " -"that represents a river. Each feature has a geographic location and is " -"attached to other data that describe the feature." -msgstr "" - -# 94ddbd49cd2747119c4daec772a6a827 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:43 -msgid "" -"One important thing to note is that QGIS layers can only contain one type of " -"feature. That is, one layer can’t contain both point features and line " -"features, because they are different types of data. Hence if you have a file " -"that contains school polygons and another file that contains school points, " -"you would add them as two separate layers." -msgstr "" - -# 770aee1d19a24f959b1d82ccfceccd94 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:50 -msgid "" -"Almost always, polygon layers will be at the bottom of your layers list, " -"line layers in the middle and point layers at the top. You don’t generally " -"want your polygons overlapping your lines and points." -msgstr "" - -# cb1233ea780b47b88e6acf51488dd127 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:55 -msgid "2. Attribute data" -msgstr "" - -# e18cecab87b44f0d9d5d5c108d736017 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:57 -msgid "" -"It’s important to know that the data you will be working with does not only " -"represent where objects are in space, but also tells you what those objects " -"are." -msgstr "" - -# 44525e30060a4f0d8c5568ba5e220992 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:60 -msgid "" -"Open the project :file:`sleman_2_5.qgs`. This is the same project that you " -"worked with previously." -msgstr "" - -# 684a9ead683740d58d61687c43de7608 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:63 -msgid "" -"In the project we see the position of Sleman districts, the railway, and " -"some roads, but we can’t see all of the data contained in those layers." -msgstr "" - -# a5ada67aa8034b6ca381bb288600e2ed -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:66 -msgid "Select :guilabel:`Jalan_Sleman_OSM` in the Layers panel." -msgstr "" - -# c718614f073640278d1c404fedcbd09f -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:71 -msgid "Click the :guilabel:`Open Attribute Table` button:" -msgstr "" - -# 38c9d4f5dbc74f97b430063cab990737 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:76 -msgid "" -"You will see a table with more data about the streets layer. This extra data " -"is called **attribute data**. The lines that you can see on your map, which " -"represent the location of the streets is called **spatial data**. Remember " -"in JOSM there was the same division. The points, lines and shapes we draw " -"tell us **where**, but the tags, or attributes, tell us **what**. These " -"definitions are commonly used in GIS, so it’s essential to remember them!" -msgstr "" - -# 5bcd966878804e80b8bb607f3bb51214 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:89 -msgid "" -"Take a look at the attribute table. Each row in the table is associated with " -"one feature in the streets layer. Each column contains one of the " -"attributes. If you select other layers and click on the :guilabel:`Open " -"Attribute Table` button, you’ll see different tables." -msgstr "" - -# 5b9c335ddd434f7fa50e4568619acd00 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:95 -msgid "Close the attribute table." -msgstr "" - -# 4d6a8e73ad4748458255f097524c9a8e -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:98 -msgid "3. Adding vector data" -msgstr "" - -# e4b4d835e8c841ee939f35f45c8cb5ae -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:101 -msgid "3.1 Shapefiles" -msgstr "" - -# 65e7089282844e8c974ec5f46589d19c -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:103 -msgid "" -"You’ve already added vector data to a project in the form of a shapefile. As " -"we mentioned previously, a shapefile is a commonly used geographic file " -"format. It can easily be converted into other formats, and most GIS software " -"can read this type of file. You may notice when adding a shapefile that " -"there are numerous files in your shapefile directory with the same name. " -"This is because a shapefile actually relies on a collection of several other " -"files to store the data and keep various settings. When you add a shapefile " -"to your project, you should always add the one that ends in :file:`.shp`, " -"but the rest of the files are important too!" -msgstr "" - -# cbf6b112869d4a9cb3f934621dbc4318 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:115 -msgid "" -"Do you remember how to add a shapefile to a project? Try adding the layer :" -"file:`POI_Sleman_OSM`, from the shapefile located in the tutorial directory. " -"If you don’t remember how to add a new vector layer, refer to the " -"instructions :ref:`module 3 `." -msgstr "" - -# a4252f0570614478b76e1358728ae020 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:121 -msgid "Your project should look like this after the new layer has been added:" -msgstr "" - -# 48af3d0563484105a106c2deae8b26a2 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:127 -msgid "3.2 Databases" -msgstr "" - -# 89e2611fcead4777947927657dd384aa -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:129 -msgid "" -"Shapefiles (and other types of files) are one way to store geographic data. " -"You can also load a vector layer into QGIS from a database. You may already " -"be familiar with Database Management Systems (DBMS) such as Microsoft " -"Access. GIS applications also make use of databases to store geographic " -"data. Databases can be hosted and used locally on your computer, or could be " -"shared between users over a network or the internet." -msgstr "" - -# 277f4734fd524997a4f8f946e0b4709d -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:137 -msgid "" -"Let’s try adding a layer from a database. Click the :guilabel:`Add " -"SpatiaLite Layer` button. If you can’t find it, right-click on the toolbar " -"and make sure that the :guilabel:`Manage Layers` toolbar is enabled." -msgstr "" - -# d3b4376dfdd442b6bcf2782e09a2b753 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:145 -msgid "You will see a dialog box. Click :guilabel:`New`." -msgstr "" - -# 81f5f5f7780b46d6a751f95453e3ec58 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:151 -msgid "" -"Navigate to the :file:`qgis_data/Sleman/` folder and find :file:`guna_lahan." -"db`. Select the file and click :guilabel:`Open`." -msgstr "" - -# 04d578b07e1c418e91ade0735094088a -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:155 -msgid "" -"Now in the original dialog box, notice that the drop-down button contains " -"*“guna_lahan.db @ ...”*, followed by the path of the database file on your " -"computer." -msgstr "" - -# 3ebea78a589c4816931ad469126116a0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:159 -msgid "Click :guilabel:`Connect`. You will see the following in the box:" -msgstr "" - -# f99f921adb0d4267ae178c20b7f14c63 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:165 -msgid "" -"This database actually has three different layers available, all saved in " -"the database. Click on the first layer to select it, then hold :kbd:`SHIFT` " -"and click the last layer to select them all." -msgstr "" - -# 1640bd9dfc774855ba1d755af6c12f6f -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:170 -msgid "Click :guilabel:`Add`. This will add all three layers to our project." -msgstr "" - -# 704dace1b0b24201835439da245bbf42 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:173 -msgid "" -"Remember frequently to save your map! Your QGIS project file does not save " -"the data (data is saved in a shapefile or a database), but it does remember " -"the layers that you have added to the project, their order and any settings " -"that you adjust." -msgstr "" - -# 53df3c246ac24f6ab4d1b7d3b0e149d6 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:178 -msgid "" -"The layers you have just added are all polygon layers, so you will want to " -"drag them down below the line and point layers. If you have a checkbox " -"beneath your layers list that reads :guilabel:`Control rendering order`, go " -"ahead and check it." -msgstr "" - -# bdeb2962114a4221bc7db71427f4cbc0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:183 -msgid "" -"Let’s remove a couple of layers to make it easier to deal with our data. " -"Right-click on the :guilabel:`railway` and :guilabel:`district` layers and " -"click :guilabel:`Remove`. Then order your layers like this:" -msgstr "" - -# 32d98bc2960d49f8be30e9eed9b55b41 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:192 -msgid "4. Symbology" -msgstr "" - -# b52ab4c761cd4a939506cf27f4a8a344 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:194 -msgid "" -"The symbology of a layer is its visual appearance on the map. One of the " -"basic strengths of GIS is that you have a dynamic visual representation of " -"the data you are working with. Therefore, the visual appearance of the map " -"(which depends on the symbology of the individual layers) is very important. " -"The end user of the maps you produce, will need to be able to easily see " -"what the map represents. Equally as important, you need to be able to " -"explore the data as you’re working with it, and good symbology helps a lot." -msgstr "" - -# d7aa88aa120640f2966963a694e71b81 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:204 -msgid "" -"In other words, having proper symbology is not a luxury or just nice to " -"have. In fact, it’s essential for you to use a GIS properly and produce maps " -"and information that people will understand and be able to use." -msgstr "" - -# fd9c9f0631dc4a6ea2f4a545b1993600 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:209 -msgid "4.1 Changing colours" -msgstr "" - -# 5afb5c3653954aad83a06e2638949c69 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:211 -msgid "" -"To change a layer’s symbology, we will open its properties. Let’s begin by " -"changing the colour of the :guilabel:`pemukiman` layer." -msgstr "" - -# c62129212991473693327b4e8eb91e01 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:214 -msgid "Right-click on the :guilabel:`pemukiman` layer in the Layers panel." -msgstr "" - -# 4b2f796099604c52a976b4e5df84d202 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:216 -msgid "Select :guilabel:`Properties` in the menu that appears." -msgstr "" - -# aa215d1042b54519a261acacb43f8a9e -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:218 -msgid "" -"By default you can also access the Properties menu by double-clicking on the " -"name of the layer." -msgstr "" - -# 1a3de3b37ff24822a79622e891e7a2f4 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:221 -msgid "In the Properties window select the :guilabel:`Style` tab." -msgstr "" - -# 9a78a0fd1be242efb663f67dc26cae6a -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:226 -msgid "Click the :guilabel:`Color` button to change the colour." -msgstr "" - -# ad508e5661d24ddba215f4c7e112013e -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:231 -msgid "" -"A standard colour dialog will appear. Choose a pink colour and click :" -"guilabel:`OK`." -msgstr "" - -# 98ba506482cc43d39bd8f5bba46d3e10 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:237 -msgid "" -"If you succeed at changing the colour of the :guilabel:`pemukiman`layer then " -"you can try to change the colour of the :guilabel:`vegetasi` layer and the :" -"guilabel:`tubuh_air` layer too. You can use a green colour for the :guilabel:" -"`vegetasi` layer and a blue colour for the :guilabel:`tubuh_air` layer." -msgstr "" - -# 114368c3e0b34cf39a0dfbbf5b8258a4 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:242 -msgid "" -"Click :guilabel:`OK` again in the Layer Properties window, and you will see " -"the colour change being applied to the layer." -msgstr "" - -# c79f6965d9e2444b9cb7cce5f080cfea -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:249 -msgid "4.2 Changing symbol structure" -msgstr "" - -# 0ffba8c92e204268be2e729dcf2071d9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:251 -msgid "" -"There’s more to a layer’s symbology than just its colour. Next we want to " -"change the colour of the vegetation, but we also want to eliminate the lines " -"between the different types of vegetation, so as to make the map less " -"visually cluttered." -msgstr "" - -# 49a7a2a59e1e453cad2faf56f9513b30 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:257 -msgid "" -"Open the :guilabel:`Layer Properties` window for the :guilabel:`vegetasi` " -"layer. Under the :guilabel:`Style` tab, you will see the same kind of dialog " -"as before. This time, however, we will do more than just change the colour." -msgstr "" - -# 8c82a744410a42b1aa71c36448d73495 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:262 -msgid "" -"Click on :guilabel:`Simple Fill` under :guilabel:`Symbol layers`. The Symbol " -"layer dialog will appear on the right side of the panel." -msgstr "" - -# 091589ead77f40819860734b4da1cd16 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:268 -msgid "" -"Change the colour inside the polygons in the layer by clicking the button " -"next to the :guilabel:`Fill` label:" -msgstr "" - -# 85cbbdfaa4734326b6b5d8fd20e2c00a -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:274 -msgid "" -"In the dialog that appears, choose a new colour (one that suits vegetation)." -msgstr "" - -# d34012010ab94148988efefaf3a454e9 -# 29cf0cdee3104a57b962f68eceff8a74 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:277 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:339 -msgid "Click :guilabel:`OK`." -msgstr "" - -# d66eb630228a4bbfafcad4bb464b6a0b -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:279 -msgid "Next, we want to get rid of the lines between all the farms." -msgstr "" - -# 3595c7b9ef0b49f0945e12006076c253 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:281 -msgid "" -"Click on the :guilabel:`Border style` drop-down box. At the moment, it " -"should be showing a short line and the words :guilabel:`Solid Line`." -msgstr "" - -# b483a071ba414fb095c00d6a63495bd2 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:285 -msgid "Change this to :guilabel:`No Pen`." -msgstr "" - -# 648177f825f5498bbec18b0c4889322f -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:290 -msgid "" -"Click :guilabel:`OK`, and then :guilabel:`OK` again. Now when we look at our " -"map, the vegetasi layer will have a new colour and no lines between polygons." -msgstr "" - -# 565604b5653f4c3e910edf18faf2fc2a -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:294 -msgid "" -"Try changing the symbology of the :guilabel:`pemukiman` layer so that it " -"also does not have outlines." -msgstr "" - -# 4625a8c7f429475693e11ed9f1cf6ad0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:301 -msgid "4.3 Scale-based visibility" -msgstr "" - -# e8d4166e1ca34a4588435569b27d948e -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:303 -msgid "" -"Sometimes you will find that one of your layers is not suitable for a given " -"scale. For example, if you have a layer which shows the earth’s continents " -"but not with very much detail, the continent lines may not be very accurate " -"when you are zoomed in very far." -msgstr "" - -# d8e0da20f4a14f93a175a400d8393188 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:309 -msgid "" -"Scale is a reference to how your map references what is actually on the " -"ground in terms of size. Scale is usually given in terms like 1:10000, which " -"means that one centimetre of length on your map is equal to 10000 " -"centimetres in the real world. When you zoom in or out on a map, the scale " -"changes, as you can see in the status bar at the bottom of QGIS." -msgstr "" - -# 8d2a736ed31e49af84483bd8d32a2c33 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:317 -msgid "" -"In our case, we may decide to hide our streets layer when we are zoomed out " -"very far (a small scale). For example, the streets layer is not very useful " -"when we are zoomed out far and it looks like a blob." -msgstr "" - -# 390c10459ec240d7b711d7bd57112c52 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:322 -msgid "Let’s enable scale-based rendering:" -msgstr "" - -# c420db572b624967a6991d4b29e29e97 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:324 -msgid "" -"Open the :guilabel:`Layer Properties` dialog for the :guilabel:" -"`Jalan_Sleman_OSM` layer." -msgstr "" - -# 314c4a5ae0484b47a0365a902ef9197a -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:327 -msgid "Click the :guilabel:`General` tab." -msgstr "" - -# f8712d1b9b124deeb2bd99907fb7a590 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:332 -msgid "" -"Enable scale-based rendering by clicking on the checkbox :guilabel:`Scale " -"dependent visibility` then change the value in :guilabel:`Maximum` to 1:10 " -"and :guilabel:`Minimum` to 1:100000." -msgstr "" - -# 5f2ac087054540e1af1083be69acbc41 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:341 -msgid "" -"Look at your map and see what happens when you zoom in and out. The streets " -"layer should appear when you are at a large scale and disappear at small " -"scales." -msgstr "" - -# f4bd067f8279410a8be8028751efd02a -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:345 -msgid "" -"You can use your mouse wheel to zoom in increments. Alternatively, use the " -"zoom tools to draw a box and zoom to it:" -msgstr "" - -# 9fbab652390d409a8d08397c36b6a291 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:352 -msgid "4.4 Adding symbol layers" -msgstr "" - -# 5de416042888455395b1ffec15990f20 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:354 -msgid "" -"Now that we know how to change simple symbology for layers, the next step is " -"to create more complex symbology. QGIS allows us to do this using symbol " -"layers." -msgstr "" - -# f369f51e07634bcba6e2011535e8aac1 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:358 -msgid "" -"Open the :guilabel:`vegetasi` layer’s Symbol properties dialog as before." -msgstr "" - -# 25f5ea95246642b7a0673de32a708485 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:360 -msgid "" -"In this example, the current symbology has no outline (i.e., it uses the :" -"guilabel:`No Pen` border style)." -msgstr "" - -# e1173a1a41ca478aa8dbc3113d4b4df0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:366 -msgid "Select :guilabel:`Fill` and Click the :guilabel:`+` button on the left." -msgstr "" - -# 835f6c47ec8948b5aeaea063a33056c0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:371 -msgid "Another symbol layer will be added to the list:" -msgstr "" - -# 54d384f1016b4041bad3ffa3e88741e9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:376 -msgid "" -"The symbol layers may appear different in colour, but don't worry, we’re " -"going to customise it anyway." -msgstr "" - -# 34736a6d47814222af18282ab56c56e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:379 -msgid "" -"Now this layer has two different symbologies. In other words, both the blue " -"colour AND the green colour will be drawn. However, the green colour will be " -"drawn above the blue, and since it is a solid colour, it will completely " -"hide the blue colour. Let’s change it." -msgstr "" - -# fd228d54cd284a7d8e3538bbd15d0cf3 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:385 -msgid "" -"It’s important not to get confused between a map layer and a symbol layer. A " -"map layer is a vector (or raster) that has been loaded into the map. A " -"symbol layer is only the symbology used to represent a map layer. This " -"course will usually refer to a map layer as just a layer, but a symbol layer " -"will always be called a symbol layer, to prevent confusion." -msgstr "" - -# 3b0396784195412db2939a49ddc4f495 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:391 -msgid "Set the :guilabel:`Border style` to :guilabel:`No Pen` as before." -msgstr "" - -# 19a6d0ca4c744e03af7825b2a629ecba -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:393 -msgid "" -"Change the fill style to something other than :guilabel:`Solid` or :guilabel:" -"`No brush`. For example, :guilabel:`Dense 7`:" -msgstr "" - -# 1982b7d27eca4f6eb9e8e2db04056ef6 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:399 -msgid "" -"Click :guilabel:`OK` and then :guilabel:`OK` and take a look at your layer's " -"new symbology." -msgstr "" - -# fd1591d1e02d4a6684c7e404e9c85f70 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:405 -msgid "" -"Now try it yourself. Add an additional symbology layer to the :guilabel:" -"`Jalan_Sleman_OSM` layer." -msgstr "" - -# daf0bae2376442f3927102ae0aa15700 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:408 -msgid "Give the thickness of the original layer a value of 2.0" -msgstr "" - -# 66dd849f44704e398e37c04e6ea2d3ec -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:409 -msgid "Give the thickness of the new symbology layer a value of 1.0" -msgstr "" - -# 2ae9f7ef8add4dfa918c1f09965a7a80 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:411 -msgid "This will result in your roads looking something like this:" -msgstr "" - -# a912abe6c3244a56a230503b42a65f0b -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:416 -msgid "" -"Our streets now appear to have an outline, but they seem disjointed, as if " -"they don’t connect with each other. To prevent this from happening, we can " -"enable symbol levels, which will control the order in which the different " -"symbol layers are rendered." -msgstr "" - -# c7dbcc52ca8442f3ae1efc3f36542d54 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:422 -msgid "" -"In the Layer Properties dialog, go to :menuselection:`Advanced ‣ Symbol " -"levels...`:" -msgstr "" - -# a7124069e0a9467daab153f64fd6d122 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:428 -msgid "" -"The Symbol Levels dialog will appear. Check the box next to :guilabel:" -"`Enable symbol levels`." -msgstr "" - -# 31728eefe4b94ad99defa4b22a193f51 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:434 -msgid "Your map will now look like this:" -msgstr "" - -# 6235548687af43b9b522f60966e02cd0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:439 -msgid "" -"When you’re done, you can save the symbol itself in QGIS so that you won’t " -"have to do all this work again if you want to use the symbol in the future. " -"Save your current symbol style by clicking the :guilabel:`Save Style...` " -"button under the Style tab of the Layer Properties dialog." -msgstr "" - -# 71e318425a274bb2b48967c2c79a0b7f -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:445 -msgid "" -"Give your style file a name and save. You can load a previously saved style " -"at any time by clicking the :guilabel:`Load Style ...` button. Before you " -"change a style, keep in mind that any unsaved style you are replacing will " -"be lost." -msgstr "" - -# 05268d7dc5044de4a8ea69ea485b4b9e -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:454 -msgid "" -"Try to change the appearance of the streets layer again, so that the roads " -"are dark grey or black, with a thin yellow outline and a dashed white line " -"running in the middle." -msgstr "" - -# f868039d754d4b60bb70965f3ffe4fe9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:462 -msgid "4.5 Classified symbology" -msgstr "" - -# 97c54c9861564d87a4850a607af026d0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:464 -msgid "" -"Symbol levels also work for classified layers (i.e., layers having multiple " -"symbols). We will cover classification in the next module, but you can see " -"how it works here with roads. By classifying various streets according to " -"their type, we can give them different symbologies and they will still " -"appear to flow into each other." -msgstr "" - -# aec2f700916b4795bf453a1f69d28dcb -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:476 -msgid "4.6 Symbol layer types" -msgstr "" - -# 1accd0191c2f44cb881a27d8495b58d2 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:478 -msgid "" -"In addition to setting fill colours and using predefined patterns, you can " -"use different symbol layer types entirely. The only type we’ve been using up " -"to now was the Simple Fill type. The more advanced symbol layer types allow " -"you to customise your symbols even further." -msgstr "" - -# 897cc09b8ef54103b3f0f352346a719b -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:484 -msgid "" -"Each type of vector (point, line and polygon) has its own set of symbol " -"layer types." -msgstr "" - -# 94feff4bff524e56bc5d145925b3b775 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:488 -msgid "4.6.1 Vector points" -msgstr "" - -# 9a421190ba6844138ef3b5d2b46434d0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:490 -msgid "Open the symbol properties for the :guilabel:`POI_Sleman_OSM` layer:" -msgstr "" - -# 58ef3d5dcc8b4791a3b48f5f0f4009ab -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:495 -msgid "" -"Access the various symbol layer types by clicking a symbol layer (1) then " -"clicking the drop-down box in the upper right corner (2)" -msgstr "" - -# f7c240db37e744eaa8bfdcab21aee3a9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:501 -msgid "" -"Investigate the various options available to you, and choose a symbol layer " -"type other than the default Simple Marker." -msgstr "" - -# 1e5627c21a614930bae81f602f623252 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:504 -msgid "If in doubt, use an Ellipse Marker." -msgstr "" - -# 1335fe7a893944d990af30a319652dba -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:506 -msgid "" -"Choose a white outline and dark fill, with a symbol width of 2.00 and symbol " -"height of 4.00." -msgstr "" - -# e265d92356f84c1ea0557d7096c2f168 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:516 -msgid "4.6.2 Vector lines" -msgstr "" - -# 2fb3c21bf8f2428991d087eda164167e -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:518 -msgid "" -"To see the various symbology options for vector lines, open the Layer " -"Properties for the streets layer, and click on the drop-down box:" -msgstr "" - -# 51c6233424034e9e87a1f8f3aeb8b2b8 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:524 -msgid "Click :guilabel:`Marker line`." -msgstr "" - -# 2ef7a9c184f54e1fb012525ad9748e90 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:529 -msgid "Click :guilabel:`Simple Marker` in the Symbol layers panel (1)." -msgstr "" - -# 138936d02341402785bb8b0bf45a8d39 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:534 -msgid "Change the symbol properties to match this dialog:" -msgstr "" - -# 92332ed952c7495a8d7665bfa942a399 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:539 -msgid "" -"Click on :guilabel:`Marker line` in the Symbol layers panel, and change the " -"interval to 2.00:" -msgstr "" - -# 58a786b3aa74441d9f3de29cc22b3919 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:545 -msgid "" -"Once you have applied the style, take a look at its results on the map. As " -"you can see, these symbols change direction along with the road but don’t " -"always bend along with it. This is useful for some purposes, but not for " -"others. If you prefer, you can change the symbol layer in question back to " -"the way it was before." -msgstr "" - -# 822cd5bfd81c4fbbacf6b84b12c935db -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:556 -msgid "4.6.3 Vector polygons" -msgstr "" - -# cc1cd3f8e55f452388427dc66e1c7adf -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:558 -msgid "" -"Now let’s change the symbol layer type for the :guilabel:`pemukiman` layer. " -"Take a look at the drop-down menu as you have done for the point and line " -"layers, and see what the various options can do." -msgstr "" - -# 703ecc3f5d3b4b2f9b236094483f7a55 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:565 -msgid "" -"Feel free to play around with the various options. We will use the Point " -"pattern fill with the following settings:" -msgstr "" - -# 78498a3660a44ddd9ab09063299e18d9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:571 -msgid "Add a new symbol layer with a normal Simple fill." -msgstr "" - -# a2945d8c399b4e8281d77cabfee37a57 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:573 -msgid "Make it grey with no outlines." -msgstr "" - -# 87f3d223f648415f84a1a4a08586dac4 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:575 -msgid "" -"Move it underneath the point pattern symbol layer with the :guilabel:`Move " -"down` button:" -msgstr "" - -# ba8849aedc994a7385e825ed15832a58 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:581 -msgid "The symbol properties should look like this:" -msgstr "" - -# a79f0949c4be44808c44c4f4ddedf1b0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:586 -msgid "" -"As a result, you have a textured symbol for the urban layer, with the added " -"benefit that you can change the size, shape and distance of the individual " -"dots that make up the texture." -msgstr "" - -# 2a0e741b92694c12a1bdb7cb13aa3ca9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:591 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.po deleted file mode 100644 index 7bacad9c..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.po +++ /dev/null @@ -1,543 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# a973c5f559e14a4b9ac596153b2024c1 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:10 -msgid "Module 7: Labels and Classification" -msgstr "" - -# 8a5c5539d12a40b38e27a4d8b8817c6a -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 5aa5b9a225314ffdb4958c45a0673e53 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:14 -msgid "" -"Explore attribute data of an object and understand the uses of different " -"types of data" -msgstr "" - -# 4821600e65d4486181becb06521ec110 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:16 -msgid "Add labels to vector layers" -msgstr "" - -# 91816deeba7144b7aeee99337fce7518 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:17 -msgid "Symbolise vector data using categories" -msgstr "" - -# e8af5eb984744a648429dc76e038f5c5 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:19 -msgid "" -"Up to now, none of the changes we have made to the map have been influenced " -"by the objects that are being shown. In other words, every type of " -"vegetation looks alike, and all the roads look alike. When looking at the " -"map, the viewers don’t know anything about the roads they are seeing; only " -"that there is a road of a certain shape in a certain area." -msgstr "" - -# 7b0c7bdee03b40afa423835ec9f9d1f5 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:25 -msgid "" -"But the whole strength of GIS is that all the objects that are visible on " -"the map also have attributes. Maps in a GIS aren’t just pictures. They " -"represent not only objects in locations, but also information about those " -"objects. In this lesson we will explore the attribute data of an object and " -"understand what the various data can be useful for." -msgstr "" - -# 266b98bc64ec4cbdbad3c9428ea13dd3 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:31 -msgid "" -"If you would like to start with the examples used in this module, begin by " -"opening the QGIS project :file:`sleman_2_6.qgs`." -msgstr "" - -# 96fed2611466438ba21e1959774f99c3 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:35 -msgid "1. Attribute data" -msgstr "" - -# 05f8cdf1e1534490a187f5fa9a0e6094 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:37 -msgid "" -"Open the attribute table for the :guilabel:`POI_Sleman_OSM` layer by " -"selecting it in the Layers panel and clicking the :guilabel:`Open Attribute " -"Table` button (or right-click on the layer and select :menuselection:`Open " -"Attribute Table`)." -msgstr "" - -# 65fccc3d38674b82a7edb44e3427bd51 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:46 -msgid "Which field would be the most useful to use as a label?" -msgstr "" - -# c1338f50d5ba4c509080e21a512b85a1 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:51 -msgid "" -"You now know how to use the attribute table to see what is actually in the " -"data you’re using. A dataset will only be useful to you if it has the " -"attributes that you care about. If you know which attributes you need, you " -"can quickly decide if you’re able to use a given dataset, or if you need to " -"look for another one that has the required attribute data." -msgstr "" - -# 878806b87bf54a4ebc07745c2d5825f1 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:57 -msgid "" -"Different attributes are useful for different purposes. Some of them can be " -"represented directly as text for the map user to see. Next we’ll see how to " -"use attributes as labels, so that users can see the text on your map." -msgstr "" - -# b01c0efc5b694db4b5b802100b5d4d12 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:62 -msgid "2. Label tool" -msgstr "" - -# 4e904a6525634dba9d6527e8a817763b -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:64 -msgid "" -"Labels can be added to a map to show any information about an object. Any " -"vector layer can have labels associated with it. Labels rely on the " -"attribute data of a layer for their content." -msgstr "" - -# 1ef969ea5c974af6a2e42d3710e64547 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:68 -msgid "" -"There are several ways to add labels in QGIS, but some are better than " -"others. You may notice that when you open the Layer Properties window for a " -"layer, there is a tab called “Labels.” While this tab is designed to put " -"labels on your map, it is not nearly as good as the so-called “Label Tool,” " -"which we will learn in this section. Before being able to access the Label " -"tool, you will need to ensure that it has been activated." -msgstr "" - -# f568e5082b4c496a81a14e037f1e79cb -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:75 -msgid "Go to the menu item :menuselection:`View ‣ Toolbars`." -msgstr "" - -# c86d5aa197974cc4ad68e2dcd6b51c96 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:77 -msgid "" -"Ensure that the Label item has a checkmark next to it. If it doesn’t, click " -"on the Label item, and it will be activated. The Label toolbar looks like " -"this:" -msgstr "" - -# 9f4a1b6044004d1ab672c385e8eefc11 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:83 -msgid "" -"Click on the :guilabel:`POI_Sleman_OSM` layer in the Layers panel, so that " -"it is highlighted." -msgstr "" - -# eff10cab1d5b4b23b2dc7e30597250cf -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:86 -msgid "Click on the :guilabel:`Layer Labeling Options` button:" -msgstr "" - -# bc2086ee356d48738c8f82bce7b3f4ae -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:91 -msgid "This gives you the Layer labeling settings dialog." -msgstr "" - -# 0d29d8994d7a4482a9082d5192533af0 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:93 -msgid "Check the box next to :guilabel:`Label this layer with...`" -msgstr "" - -# ff0611d4053749858b2b91cfe036a432 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:98 -msgid "" -"We must indicate which of the attribute fields we want to use for the " -"labels. The **NAME** field is the mostly likely candidate for a label, so " -"select NAME from the drop-down box:" -msgstr "" - -# fe90e8fc546e4fa6b1b95de9becb035a -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:105 -msgid "Click :guilabel:`OK`. The map should now have labels like this:" -msgstr "" - -# 3d092562f7924387834417c496707b84 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:110 -msgid "" -"This is good, but as you can see, the labels are overlapping the points that " -"they are associated with. That doesn’t look very nice. The text is also a " -"bit larger than it needs to be. Let’s fix these problems!" -msgstr "" - -# 24c7e0e2d2d0409499ec76496516e708 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:114 -msgid "" -"Open the :guilabel:`Layer Labeling Options` again by clicking on its button." -msgstr "" - -# 7d344989406b46cba133e5cec06a9108 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:116 -msgid "Click on the :guilabel:`Text` tab to change the text properties:" -msgstr "" - -# 0250207084f649b79ef4a10a20918384 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:121 -msgid "" -"A standard text change dialog appears, similar to those in many other " -"programs. Change the font to :kbd:`Arial` and size to :kbd:`9`." -msgstr "" - -# 6c99a71883e445e68e863e25a532252a -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:124 -msgid "" -"Now click on the :guilabel:`Buffer` tab to add a buffer space around the " -"text. Check the box labelled :guilabel:`Draw text buffer`." -msgstr "" - -# a8de625fb4204e3bbb530aab7f256a36 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:130 -msgid "Your labels will look like this:" -msgstr "" - -# 2eda5dea556043d49723d8518d5a4497 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:135 -msgid "" -"That’s the font problem solved! Now let’s look at the problem of the labels " -"overlapping the points." -msgstr "" - -# 04f13fd9482540e198454560544c2ac9 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:138 -msgid "In the Label window dialog, go to the :guilabel:`Placement` tab." -msgstr "" - -# 09d5239d04fc4eb696310bb427fe46e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:140 -msgid "Change the value of :guilabel:`Distance` to :kbd:`2`." -msgstr "" - -# 876b8ddd48114f54bd945d9c29a731cf -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:145 -msgid "" -"Click :guilabel:`OK`. The labels no longer hover over the icons, but are " -"“buffered” a short distance away:" -msgstr "" - -# 6caa338d934740b4b7fe296c8adb21c9 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:152 -msgid "Labelling lines" -msgstr "" - -# 324135ff30e34e779d6a0b132be1e4c1 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:154 -msgid "" -"Now that you know how labelling works, there’s an additional problem. Points " -"and polygons are easy to label, but what about lines? If you label them the " -"same way as the points, they will look funny. Street name labels, for " -"example, should be parallel to the street lines, not hovering horizontally " -"above them. To make lines behave, we’ll need to edit some options." -msgstr "" - -# b2aa414914b140b6a9a78e176d153195 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:160 -msgid "" -"Hide the :guilabel:`POI_Sleman_OSM` layer so that it doesn’t distract you." -msgstr "" - -# af482234444648b68f1c6b44f2de9333 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:162 -msgid "" -"Activate labels for the :guilabel:`Jalan_Sleman_OSM` layer as before. " -"(Remember to use the Label tool on the toolbar, not the one in Label " -"Properties!)" -msgstr "" - -# 14fb62f99a2c413b81b8bba71d9ea6f4 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:166 -msgid "Set the font size to :kbd:`9` so that you can see more labels." -msgstr "" - -# d4f05cf785604cbb866240eed1abc460 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:168 -msgid "Zoom in so that the scale is near 1:10000." -msgstr "" - -# 7c3cc432b52d48a483614f61f97dc13b -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:170 -msgid "" -"On the Label window’s :guilabel:`Placement` tab, choose the following " -"settings:" -msgstr "" - -# 299bc482a7024612ad9e0390e021a3af -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:176 -msgid "The map will look somewhat like this, depending on scale:" -msgstr "" - -# 2f66f19ee9b34c478ea6a2615c8b2d38 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:181 -msgid "" -"It’s good but still not ideal. For starters, some of the names appear more " -"than once, and that’s not always necessary. To prevent that from happening:" -msgstr "" - -# 0538ec4debb444c1b0f226dc89adc8fb -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:185 -msgid "" -"Enable the option :guilabel:`Merge connected lines to avoid duplicate " -"labels` which is located on the :guilabel:`Rendering` tab." -msgstr "" - -# c9d3ca3e33a740e1ac96d795e1b5e3e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:188 -msgid "" -"Another useful function is to prevent labels being drawn for features too " -"short to be of notice." -msgstr "" - -# b61962d7354a4e08810200550f127456 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:191 -msgid "" -"Also on the :guilabel:`Rendering` tab, set the value of :guilabel:`Suppress " -"labeling of features smaller than ...` to :kbd:`5.0 mm`. Observe the results " -"after you click :guilabel:`Apply`." -msgstr "" - -# b9464bb94ae74e37973dc9f62fd138e2 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:198 -msgid "" -"Try out different settings on the :guilabel:`Placement` tab as well. As we " -"mentioned before, the horizontal option is not a good idea for roads in this " -"case, so let’s try the curved option instead!" -msgstr "" - -# d0d76e17261a4fd19a8a5122e4bc3c10 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:205 -msgid "" -"Select :guilabel:`Curved` under :guilabel:`Placement`. Here’s the result:" -msgstr "" - -# a0c270869a074aba8536b8baa95d7282 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:210 -msgid "" -"As you can see, this hides a lot of the labels that were previously visible, " -"because of the difficulty of making some of them follow twisting street " -"lines and still be legible. You can decide which of these options to use, " -"depending on what you think seems more useful or what looks better." -msgstr "" - -# f6ab2f1656db41f7aba2f17711de31b1 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:215 -msgid "" -"Now that you know how attributes can make a visual difference for your map, " -"how about using them to change the symbology of objects themselves? That’s " -"the topic for the next section!" -msgstr "" - -# b647c45cc95e42999c9bf04d9578153d -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:220 -msgid "3. Classification" -msgstr "" - -# 17de942653034c40acfcb339edb10575 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:222 -msgid "" -"Labels are a good way to communicate information such as the names of " -"individual places, but they can’t be used for everything. For example, let’s " -"say that we want to show which district each feature in our vegetation layer " -"is in. Using labels, it would look like this:" -msgstr "" - -# 4d6be07aec4741a9aa8c0fb2807dbf6c -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:230 -msgid "" -"Obviously this is not ideal, so we need another solution. That’s what this " -"lesson is about! In this section, we will learn how to classify vector data " -"effectively." -msgstr "" - -# 450b6fa5ab7f45329100d74ffab7a5c8 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:235 -msgid "3.1 Classifying nominal data" -msgstr "" - -# 4c7b6cb381ad4f57a4b8e525ffa6d14f -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:237 -msgid "Open Layer Properties for the :guilabel:`vegetasi` layer." -msgstr "" - -# 3cdaa89c4c1a43dbb842b6de486ddf76 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:239 -msgid "Go to the :guilabel:`Style` tab." -msgstr "" - -# b2ff2ecb292347a492bde9e6d7dc0f32 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:241 -msgid "Click on the drop-down box that says :guilabel:`Single Symbol`." -msgstr "" - -# 91b9367435e745e08ac72ceed8400bc1 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:246 -msgid "Change it to :guilabel:`Categorized`. The interface will change:" -msgstr "" - -# 01e5b481a413494a80f08bb81b4c92ce -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:251 -msgid "" -"Change the :guilabel:`Column` field to :guilabel:`guna_lahan` and the :" -"guilabel:`Color ramp` to :guilabel:`Spectral`:" -msgstr "" - -# ec06ebac54a342eea34c239b9dbd3ce7 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:257 -msgid "Click the button labelled :guilabel:`Classify`:" -msgstr "" - -# 538fbfe591e643bc9c4628656679820e -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:262 -msgid "Click :guilabel:`OK`. You’ll see something like this:" -msgstr "" - -# 83d00dbf62384b2f9c89861b5d0394ab -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:267 -msgid "" -"In the Layers panel, click the plus sign next to the :guilabel:`vegetasi` " -"layer. This will show more information about the layer classification and " -"styles." -msgstr "" - -# b3b5c6deab374e5792e4c7364f2010e4 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:274 -msgid "" -"So, this is useful! But it hurts your eyes to look at it, so let’s see what " -"we can do about that." -msgstr "" - -# a3e32d3fa434405aa55763f68ed44961 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:277 -msgid "" -"Open :guilabel:`Layer Properties` and go to the :guilabel:`Style` tab again." -msgstr "" - -# 507fbf02041a4d6fa71c8244cd1e8f2f -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:279 -msgid "Click the :guilabel:`Change` button next to :guilabel:`Symbol`." -msgstr "" - -# fab75d13bdc9441fa35dc8ea68865e07 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:284 -msgid "" -"Remove the outline as you did in the previous module (change the border " -"style to “No Pen”)." -msgstr "" - -# a5a5fe87c1814168af3d8ed3978660b4 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:287 -msgid "Click the :guilabel:`Delete all` button." -msgstr "" - -# dbae775e71f64abd828126b244d8d635 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:292 -msgid "Now click :guilabel:`Classify` again, and new symbols will appear." -msgstr "" - -# 8c00083a23dd4d57bc85b8c4c9d96a92 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:294 -msgid "" -"Change the colour for each type of vegetation by double-clicking on the " -"coloured block next to its name. You can change the colour for each type of " -"vegetation to something that you think is more applicable." -msgstr "" - -# 6b5cdfd8e8dc46f2833a0832c2da3ace -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:301 -msgid "" -"Notice that the category on the bottom is empty. Select it, and click the :" -"guilabel:`Delete` button." -msgstr "" - -# d2a04fb67da84ea1b0a48f9ebb5d2194 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:304 -msgid "When we click :guilabel:`OK` our map looks like this:" -msgstr "" - -# 105372a32cc0482a83623381ea49b264 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:309 -msgid "" -"If you feel confident in your new classification skills, try to classify the " -"residential layer yourself. Use darker colours to distinguish it from " -"vegetation." -msgstr "" - -# dedcf745ce6e4800ba7a45ad8fb0e0a6 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:314 -msgid "3.2 Ratio classification" -msgstr "" - -# 4a7dca283b084a9bad235e734f0731af -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:316 -msgid "" -"In the previous example, we classified the :guilabel:`vegetasi` layer by " -"what is known as nominal classification. This type of classification is when " -"categories are defined based on names. Next we will classify the :guilabel:" -"`pemukiman` layer based on the size of each feature. Classifying with " -"attributes that contain only positive numbers, such as land area, is known " -"as ratio classification." -msgstr "" - -# 7397f0910eff46a3a444f3fc5b1ccd03 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:323 -msgid "" -"Open the Attribute Table for the :guilabel:`pemukiman` layer. Notice the " -"final column, :guilabel:`luas_ha`. This attribute contains the size of the " -"land area contained within that feature polygon." -msgstr "" - -# 6b2727653d354808b01cae1b7a4e1559 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:330 -msgid "Open the Layer Properties for :guilabel:`pemukiman`." -msgstr "" - -# 2dd4a5a3ce224a8dafcfa95cc262242d -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:332 -msgid "" -"Change the style type to :guilabel:`Graduated` and use :guilabel:`luas_ha` " -"as the :guilabel:`Column`." -msgstr "" - -# 0dde8bd87cc14aceb0fe1fa9cf09abf0 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:338 -msgid "" -"Because we are categorising with numbers this time, a colour gradient will " -"be useful for representing our categories. Click on :guilabel:`Oranges` next " -"to :guilabel:`Color ramp` and then click :guilabel:`Classify`." -msgstr "" - -# 3a6fe4d0a9134b10adcdac47ab3a2f1d -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:345 -msgid "Now you’ll have something like this:" -msgstr "" - -# bf5773a26cd344c797ff4bed8740cde9 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:351 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.po deleted file mode 100644 index e00f30e3..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.po +++ /dev/null @@ -1,571 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 9f15568ef0d74a758c59de34d22931aa -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:10 -msgid "Module 8: Working with Raster Data" -msgstr "" - -# 40d6ccf2c7b24b2aab00c7b52db759ce -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# bfa6bccb8e334977a552f7fd466b6bd7 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:14 -msgid "Create raster data" -msgstr "" - -# b041ef844873499895b064e66c70b00f -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:15 -msgid "Change raster symbology" -msgstr "" - -# 442bec90bac94e989f4cc03e423e8340 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:16 -msgid "Perform terrain analysis" -msgstr "" - -# faa171497dea4fff81db1d35badf7365 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:18 -msgid "" -"Thus far we’ve worked mostly with vector data, which consists of features, " -"and these features are themselves made up of points and lines. In this " -"module we will learn about raster data. Remember when you were editing " -"OpenStreetMap in JOSM? The points, lines and shapes that you drew were " -"vector data. But when you loaded Bing aerial imagery in the background, that " -"was raster data. So what’s the difference?" -msgstr "" - -# 93b78af50eda470b863db9c93f225ee4 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:25 -msgid "" -"Raster data essentially comes in the form of an image. It is made up of " -"pixels, like a photograph, and a raster image will always be some number of " -"pixels wide and some number of pixels high. If you zoom in far enough on a " -"raster image, it will start to become blurry, just as if you opened a photo " -"on your computer and zoomed in very close. As we’ll see in this module, " -"however, a raster image can mean more than just a photograph from the sky. " -"Follow along and we’ll learn all about rasters!" -msgstr "" - -# 0e456197d0f64feda17ab4cb286be71e -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:34 -msgid "1. Loading raster data" -msgstr "" - -# 6ca5f4837d644deca4b51e721b97b9cc -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:36 -msgid "" -"Open the project named :file:`sleman_2_7.qgs` in the directory :file:`qgis/" -"`. We’ve simplified the project since the last module to make it easier to " -"follow along, and so that our layers load a bit faster. However, if you are " -"comfortable you can easily carry on with your project from the previous " -"module." -msgstr "" - -# de634aea15f24f1098d340f46eae8d80 -# eefa291ffbca4373a60a7f3af152d07c -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:42 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:90 -msgid "Click on the :guilabel:`Load Raster Layer` button:" -msgstr "" - -# ff91d1fa979242e7855f912926727e09 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:47 -msgid "" -"The Load Raster Layer dialog will open. Find the file in the directory :file:" -"`Sleman/` named :file:`Sleman.tif`. Open it." -msgstr "" - -# 7f6a086eeb3c49b1a2a23ade6830308c -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:50 -msgid "" -"QGIS will open a dialog which explains that the new layer does not have a " -"CRS assigned. In the box at the bottom, scroll down until you find **WGS " -"84 / UTM zone 49S**. Select it and click :guilabel:`OK`." -msgstr "" - -# 98a7c62ac5944ff5834a1c86dc177957 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:57 -msgid "" -"When the raster layer loads, be sure to drag it to the bottom of the list in " -"the Layers panel." -msgstr "" - -# 3b9a53f3af274860ad0030d0f04ea050 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:60 -msgid "" -"If you can’t see the raster layer, you may need to enable 'on the fly' " -"transformations. To do so:" -msgstr "" - -# d65f727848454847957216f4d6eadd4d -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:63 -msgid "Go to :menuselection:`Project ‣ Project Properties...`" -msgstr "" - -# 28baebc695d84209b0c885a260a9f4dc -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:64 -msgid "" -"Check the box next to :guilabel:`Enable 'on the fly' CRS transformation`." -msgstr "" - -# e0ad13629b6e42b2a1276675c5493d9f -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:65 -msgid "Click :guilabel:`OK`." -msgstr "" - -# b9c33743877c4e90b391085216191127 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:70 -msgid "The raster should display nicely underneath your vector data layers." -msgstr "" - -# 9b9a67a3d8124f9e96a9cb7c951605a7 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:78 -msgid "2. Changing raster symbology" -msgstr "" - -# 8c51673663994c8a89190530d884797d -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:80 -msgid "" -"Not all raster data consists of aerial photographs. There are many other " -"forms of raster data, and in many of those cases, it’s essential to " -"symbolise the data so that it becomes properly visible and useful. In this " -"section we’ll add a new kind of raster and see how to change it’s symbology." -msgstr "" - -# 1a5feb21a4794919b8496df0925bd3ce -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:86 -msgid "" -"First let’s remove our previous raster image so that our project will load " -"faster. Right-click on the :guilabel:`Sleman` layer and click :guilabel:" -"`Remove`." -msgstr "" - -# 78c89ec577ff4fef8336d1216613a61c -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:95 -msgid "" -"Open the file named :file:`SRTM_Sleman.tif`, which is located in :file:" -"`Sleman/SRTM/`." -msgstr "" - -# 56be720d571d40dcadcb9ae4c06af03c -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:98 -msgid "" -"When it appears in the Layers panel, right-click on it and click :guilabel:" -"`Rename`. Give it the name :kbd:`DEM`." -msgstr "" - -# 7adb61bcb5904bf596c71659ee11f71f -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:101 -msgid "" -"This dataset is a Digital Elevation Model (DEM). It’s a map of the elevation " -"(altitude) of the terrain, showing us where the mountains and valleys are. " -"In an aerial photograph, each pixel in the image is a colour. When we view " -"all of these different coloured pixels together, they show us something we " -"can understand - the Earth as viewed from above. In a DEM, each pixel has a " -"different value instead of colour. The value of each pixel represents " -"elevation." -msgstr "" - -# 5c6ca1b12ea449d1bc8337375b877776 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:109 -msgid "" -"When it loads, you’ll notice that the new raster image appears as a grey " -"rectangle. It’s seen here with the roads layers on top:" -msgstr "" - -# 2dc8394444194ca2b6c8087b0962baac -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:115 -msgid "" -"The layer appears grey (and doesn’t give us any information) because its " -"symbology hasn’t been customised yet. In the colour aerial photograph we " -"loaded previously, everything is already defined. But if you load a raster " -"image and it’s just a grey rectangle, then you know there’s no symbology for " -"it yet. It still needs to be defined. That’s what we will do next." -msgstr "" - -# 7bf5033f7adb4cf38ee1e0979b07185a -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:121 -msgid "" -"Open the Layer Properties dialog for the SRTM layer, which is now named :" -"guilabel:`DEM`." -msgstr "" - -# 055c6268aa9140ec9d510246a674fa46 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:124 -msgid "" -"Switch to the :guilabel:`Style` tab. This shows the current symbology " -"settings, and as we’ve seen, they don’t give us much information on the " -"layer. Let’s make sure the layer has data in it." -msgstr "" - -# 31418127e89340189ce6dc18583f043f -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:128 -msgid "" -"Change the :guilabel:`Render type` to :guilabel:`Singleband pseudocolor`." -msgstr "" - -# ede92d29ceae46d081d2087d34f26675 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:133 -msgid "Click :guilabel:`OK`. The raster should look like this:" -msgstr "" - -# 428f03d75a9d489a90da204906297982 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:138 -msgid "" -"Good! This tells us that there is data in this layer. And by looking at it " -"we can get an idea of where the elevation gets higher. In the north we can " -"see the location of Mount Merapi." -msgstr "" - -# 0eb5043c1cfa4c0cad762255e918c8cc -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:142 -msgid "" -"Let’s stop for a minute and understand what is happening here. Remember that " -"an image is made up of pixels, individual cells that contain a value, which " -"is usually a colour value. For example, if you zoom in very closely on a " -"photograph you can see those individual pixels, like this:" -msgstr "" - -# 491fe850ef9b412fa921f8024f648d26 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:150 -msgid "" -"The value of each cell is saved in the file. Imagine the file being saved " -"something like this, where each square is a pixel:" -msgstr "" - -# 97125d6a94f94d8489882028ea94314f -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:156 -msgid "" -"Of course the computer doesn’t understand words for colours. In fact the " -"value of each cell would be a number, which the computer then associates " -"with a certain colour. For our aerial image, this is already defined. Since " -"it is a normal image, it knows to associate the numbers for each pixel in " -"the file with the common colours that we see every day. But this new raster " -"image is different, because the values of each pixel don’t represent " -"colours, but rather altitude, and QGIS doesn’t know automatically how to " -"display it. Hence it shows every pixel in the image as grey, even if the " -"values in each pixel are different. When we change the symbology to " -"Psuedocolor, we can see all the different pixel values shown with various " -"colours." -msgstr "" - -# 6ab3c0febe8a496eb12e1a9dcb4767aa -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:167 -msgid "" -"It would be nice to represent our DEM layer as a greyscale spectrum, rather " -"than a variety of bright colours.. Next we will tell QGIS to symbolise the " -"layer with colours in a spectrum, beginning at the lowest pixel value in the " -"file and ending at the highest pixel value. In other words, if the pixel " -"values looked like this:" -msgstr "" - -# bc1a13845bc8454d98bc439a04c65482 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:176 -msgid "QGIS would create a spectrum equating numbers to colours like this:" -msgstr "" - -# 6bacca0798bb4e76a6de1b9cb8758beb -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:181 -msgid "And render the image like this:" -msgstr "" - -# a190cae558864258b6f912fecd878486 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:186 -msgid "Open the Layer Properties again." -msgstr "" - -# 9e0f2d36adb84849906d047147b76fa7 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:188 -msgid "Switch the render type back to :guilabel:`Singleband gray` (1)." -msgstr "" - -# cdfa4d15a6b143bea10da9f36287b3ce -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:190 -msgid "Check the box next to :guilabel:`Min / max` (2)." -msgstr "" - -# d426cafdbd3e46c8a1b3f3ffa893cc40 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:192 -msgid "" -"Next to :guilabel:`Contrast enhancement`, select :guilabel:`Stretch to " -"MinMax` (3)." -msgstr "" - -# af53a409ad154011be19811d785ad03d -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:198 -msgid "" -"But what are the minimum and maximum values that should be used? The " -"current values are those that just gave us a grey rectangle. Instead, we " -"should be using the minimum and maximum pixel values that are actually in " -"the image. You can determine those values easily by loading the minimum and " -"maximum values of the raster." -msgstr "" - -# 335946ce682544f1ac034d4bfc37309e -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:205 -msgid "" -"Under :guilabel:`Load min / max values`, select :guilabel:`Estimate " -"(faster)`." -msgstr "" - -# a09a184e884d4f4a81fc1b7bf3fc4fb4 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:208 -msgid "Click the :guilabel:`Load` button:" -msgstr "" - -# 37ef34ce8c2d4f3db08e19b76f0d5982 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:213 -msgid "" -"Notice how the custom :guilabel:`Min` and :guilabel:`Max` values have " -"changed. The lowest pixel value in this image file is 0 and the highest is " -"about 3294." -msgstr "" - -# a20d34d6cf3d4974819ee2ecd8020fb5 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:219 -msgid "" -"Click :guilabel:`OK`. You should see the values of the raster properly " -"displayed, with the darker colours representing valleys and the lighter " -"ones, mountains:" -msgstr "" - -# d70b7a303abf414f81dac5447f234fc7 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:226 -msgid "" -"We’ve learned to do this the tricky way, but can we do it faster? Of course! " -"Now that you understand what needs to be done, you’ll be glad to know that " -"there’s a tool for doing all of this more easily." -msgstr "" - -# 095e710dc20849718c89d7b931d61e6b -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:230 -msgid "" -"Remove :guilabel:`DEM` from the Layers panel, by right-clicking it and " -"clicking :menuselection:`Remove`." -msgstr "" - -# f913b1bea764417a80f1f11cafb323d7 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:233 -msgid "" -"Load the raster image again, renaming it to :guilabel:`DEM` as before. It " -"will be a grey rectangle again." -msgstr "" - -# c18223efafa4427fab21c90b93057afb -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:236 -msgid "" -"Enable the tool you’ll need by enabling :menuselection:`View ‣ Toolbars ‣ " -"Raster`. These icons will appear in the interface:" -msgstr "" - -# bcf094b600134b28abf3cc19e4047ef5 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:243 -msgid "" -"The button on the right will stretch the minimum and maximum values to give " -"you the best contrast in the local area that you’re zoomed into. It’s useful " -"for large datasets. The button on the left will stretch the minimum and " -"maximum values to constant values across the whole image." -msgstr "" - -# 90ae6499e286442eb3ca5509fcbad160 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:248 -msgid "" -"Click the left button labelled :guilabel:`(Stretch Histogram to Full " -"Dataset)`. You’ll see the data is now correctly represented as before! Easy!" -msgstr "" - -# 77ce37b07ac04b35a11e856027da6a89 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:253 -msgid "3. Terrain analysis" -msgstr "" - -# 66a1ab204aee49a79250ce90ef9e48b1 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:255 -msgid "" -"Certain types of rasters allow you to gain more insight into the terrain " -"that they represent. Digital Elevation Models (DEMs) are particularly useful " -"in this regard. In this section we’ll do a little bit more with our DEM " -"raster, in order to try to extract more information from it." -msgstr "" - -# ce6994a135b94e3bb8391b342bb98bc2 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:261 -msgid "3.1 Calculating a hillshade" -msgstr "" - -# cf0ebd1e5ece48aa91bdb5fb81ab98c4 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:263 -msgid "" -"The DEM you have on your map right now does show you the elevation of the " -"terrain, but it can sometimes seem a little abstract. It contains all the 3D " -"elevation information about the terrain that you need, but it doesn’t really " -"look 3-Dimensional. To get a better look at the terrain, it is possible to " -"calculate a hillshade, which is a raster that maps the terrain using light " -"and shadow to create a 3D-looking image." -msgstr "" - -# f7d99f56bc37486295e7c329f2141ceb -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:270 -msgid "" -"To work with DEMs, we will use the all-in-one DEM (Terrain models) analysis " -"tool." -msgstr "" - -# 61d41ff44bef4826bcc37ab997e46c9a -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:273 -msgid "Go to :menuselection:`Raster ‣ Analysis ‣ DEM (Terrain models)`." -msgstr "" - -# 89bc7be51cab4a1997889e0aebea1330 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:278 -msgid "" -"In the dialog that appears, ensure that the input file is the :kbd:`DEM` " -"layer." -msgstr "" - -# 1db56771cbaf4caa8944ddc89d3a1636 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:281 -msgid "" -"Set the output file to :kbd:`hillshade.tif` in the directory :file:`qgis/" -"Sleman/`." -msgstr "" - -# d7d58dd4244b4d948c67d28472fd891f -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:287 -msgid "Check the box next to :guilabel:`Load into canvas when finished`." -msgstr "" - -# f94aa884afd84fedad08d8e3996459cb -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:292 -msgid "Leave all the other options unchanged." -msgstr "" - -# d406ea15e934456797e4205fc1a64730 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:294 -msgid "Click :guilabel:`OK` to generate the hillshade." -msgstr "" - -# 58d6e5c5ec4f463aad092131d1acb9cd -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:296 -msgid "" -"When the processing is complete, click :guilabel:`OK` on the notification." -msgstr "" - -# e8f869b420394683ad1480e80af20809 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:298 -msgid "Click :guilabel:`Close` in the dialog." -msgstr "" - -# 9e47c28edd9b4aadae0c738d8a42f5e5 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:300 -msgid "" -"There should now be a new layer called :guilabel:`hillshade` that looks like " -"this:" -msgstr "" - -# 2c21e1d2ff85420eacc6da94578cbf52 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:306 -msgid "" -"This looks more Three-Dimensional, but can we improve on this? On its own, " -"the hillshade looks like a plaster cast. It will look better if we can " -"combine it with our more colourful DEM. We can do this by making the " -"hillshade layer an overlay." -msgstr "" - -# 75fe4317f21f4089976593bb622099fc -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:312 -msgid "3.2 Using a hillshade as an overlay" -msgstr "" - -# 3d2872ec5ac241a28c49205f6dbf5aba -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:314 -msgid "" -"A hillshade can provide very useful information about the sunlight at a " -"given time of day. But it can also be used for aesthetic purposes, to make " -"the map look better. The key to this is setting the hillshade to being " -"mostly transparent." -msgstr "" - -# 6c2ce059e7744773a18e6122ff7902f0 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:319 -msgid "" -"Change the symbology of the original :guilabel:`DEM` layer to use the :" -"guilabel:`Pseudocolor` scheme." -msgstr "" - -# 3508bc7f59324139a224655cd3b73ab0 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:322 -msgid "Hide all the layers except the DEM and hillshade layers." -msgstr "" - -# 9d8f7d75b8eb4ab8a2a51cf35a3f015e -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:324 -msgid "" -"Click and drag the :guilabel:`DEM` layer beneath the :guilabel:`hillshade` " -"layer in the Layers panel." -msgstr "" - -# 0660f082b0db4e9abfac6409b20f9bf5 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:330 -msgid "Ensure that :guilabel:`Control rendering order` is checked." -msgstr "" - -# 918eb294348b4f48aac2069bf0bf6bd2 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:335 -msgid "" -"Now we will make the hillshade layer somewhat transparent. Open its Layer " -"Properties and go to the :guilabel:`Transparency` tab." -msgstr "" - -# 265ee4fdcacd40aeb406b9729c9b995c -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:338 -msgid "Set the :guilabel:`Global transparency` to 50%:" -msgstr "" - -# 471bff17d7b84332971579a779df5a2e -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:343 -msgid "" -"Click :guilabel:`OK` in the Layer Properties dialog. You should get a result " -"similar to this:" -msgstr "" - -# 6b0fa03fd2794fefa51b08bbb17547a4 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:349 -msgid "" -"Switch the :guilabel:`hillshade` layer off and on in the Layers panel to see " -"the difference it makes." -msgstr "" - -# 7fa9c1af0d8849e2ada5676c8fa5d510 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:352 -msgid "" -"Using a hillshade in this way, it’s possible to enhance the topography of " -"the landscape. If the effect doesn’t seem strong enough to you, you can " -"change the transparency of the hillshade layer; but of course, the brighter " -"the hillshade becomes, the dimmer the colours behind it will be. You will " -"need to find a balance that works for you." -msgstr "" - -# 582ace51d1294ee0af1ecb28f52c6cc0 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:358 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.po deleted file mode 100644 index e93458ca..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.po +++ /dev/null @@ -1,724 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 0a384e75ea674adfb393bde459ab786b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:10 -msgid "Module 9: Creating Vector Layers" -msgstr "" - -# 4bb9a044a45147079c130c60d2591f25 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# e55a5d4e9f3840a487fb435ddb76c17d -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:14 -msgid "Add a raster layer for digitising" -msgstr "" - -# 129acf84a7a2415faad6eaa08fb83048 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:15 -msgid "Create new vector features (polygons, lines and points)" -msgstr "" - -# 83494bc3ccaf40fbb307dc7744a280a2 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:16 -msgid "Digitise new vectors by tracing a raster layer, considering topology" -msgstr "" - -# ce713753300341db840725b8f4fb9892 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:17 -msgid "Georeference an image" -msgstr "" - -# 7504d6ff410247219ff210b1c2ebbdce -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:19 -msgid "" -"Creating a map using data that already exists is only the beginning. We have " -"already learned how to edit and add features to OpenStreetMap using JOSM. In " -"this module, we will discuss how to edit existing vector layers in QGIS, and " -"how to create an entirely new dataset." -msgstr "" - -# 8f3ef9d4d84448329125e49aaa9f3a27 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:26 -msgid "1. The layer creation dialog" -msgstr "" - -# 04d5e71ba94441979b9c766d7d30a1c1 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:28 -msgid "" -"Before you can add new vector data, you need a vector dataset (a layer) to " -"add it to. In our case, we’ll begin by creating a new data layer, and then " -"we’ll add features to it. First, we must define our dataset." -msgstr "" - -# 9801b3765fda401398019e7ff79c0b58 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:34 -msgid "" -"Create a new project in QGIS by clicking on the :guilabel:`New Project` icon." -msgstr "" - -# f0c954944a4542dc8faeacfd6992631d -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:40 -msgid "" -"Go to :menuselection:`Layer ‣ Create Layer ‣ New Shapefile Layer`. You’ll be " -"presented with the following dialog:" -msgstr "" - -# aa4db0702c9040deb5a50747e14a072f -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:46 -msgid "" -"At this point we must decide what kind of dataset we want to create. " -"Remember that a data layer can only contain features of points, lines or " -"polygons - never a mix. When we create the layer, we must define what type " -"of data it will contain." -msgstr "" - -# bad6cc59e7e54327a32e970fc47d096d -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:52 -msgid "" -"Since polygons are made up of points and lines, let’s jump into polygons. " -"Once you’ve mastered this, creating a point or a line layer should be easy!" -msgstr "" - -# b210a2c51aab41fbb8256e16b14b8369 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:55 -msgid "Check the box next to :guilabel:`Polygon`." -msgstr "" - -# e6dda01422404aacb098283d70a85c14 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:60 -msgid "" -"We’ll specify the Coordinate Reference System (CRS) in the next box. By " -"default the box will contain the CRS of the project, which for us will be " -"WGS84. This is a widely used and very useful CRS, so let’s stick with it!" -msgstr "" - -# 7294009f2b934a468ff72542c68da165 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:68 -msgid "" -"When we create our new layer, the attribute table will only have one column " -"by default - **id**. This attribute contains a unique id number for every " -"feature. We can add additional fields to the attribute table now, when we " -"create the layer. Let’s add a name field." -msgstr "" - -# 0bef3f030fcd45b58275199ffe42ba11 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:75 -msgid "" -"Type :kbd:`nama` into the box next to Name. The settings should match those " -"shown here:" -msgstr "" - -# 4f5de6fb19044579b96ae673dd775c92 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:81 -msgid "Click the :guilabel:`Add to attributes list` button." -msgstr "" - -# 23dfbd3ed69f417e8ed6ca74776ce949 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:83 -msgid "Your attributes list should now look like this." -msgstr "" - -# 8ada7ac3c66d4684a4b811d9541b6052 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:88 -msgid "Click :guilabel:`OK`. A save dialog will appear." -msgstr "" - -# 82499f346e334ac19e3b181e090567da -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:91 -msgid "Navigate to a directory of your choosing." -msgstr "" - -# 700bcd1668c94416b8229448ee3a0950 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:93 -msgid "Save the new layer as :kbd:`gedung_kampus.shp`." -msgstr "" - -# a23f7a4203f443de94e9644123886bfa -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:95 -msgid "The new layer should appear in your Layers panel." -msgstr "" - -# 50a5f1fb04e048228f414d857392e61c -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:98 -msgid "2. Data sources" -msgstr "" - -# b21c5dd645fc416391f585555848472a -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:100 -msgid "" -"When you create new data, it should represent objects that really exist on " -"the ground. We have already learned of numerous ways to collect data using " -"OSM tools. We learned about GPS to record locations, Field Papers and of " -"course, aerial imagery. These are all tools that we can use to identify real-" -"life locations and record them in a digital data layer." -msgstr "" - -# 976b7383d16543c095495686f1b766c6 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:109 -msgid "" -"In QGIS, we can use the same types of sources to get information about the " -"ground. In this example, we will once again turn to aerial imagery, but " -"instead of using Bing, we will use a raster image provided in the tutorial " -"directory." -msgstr "" - -# 4e37532235ca404387cc93a5b9980cde -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:115 -msgid "Click on the :guilabel:`Add Raster Layer` button:" -msgstr "" - -# f4d45f4bdf2b4933826ec40836f98c2f -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:120 -msgid "Navigate to :file:`/qgis/Sleman/`." -msgstr "" - -# cdbc40ef7f1a4446b0084cac8abfab40 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:122 -msgid "Select the file :file:`UGM.tif`." -msgstr "" - -# 096af0855a644fe8b65a01dd45ff6a6b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:124 -msgid "Click :guilabel:`Open`. An image will load into your map." -msgstr "" - -# 47068acf477748be84a2c61b82df6da0 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:127 -msgid "Find the new entry in the Layers panel." -msgstr "" - -# 58d7a39f3af24162a61d09399ac1ad8a -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:129 -msgid "" -"Drag it to the bottom of the list so that it is below the vector layer you " -"created in the previous section." -msgstr "" - -# addb511bc65649b791a623b972d75b9b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:135 -msgid "" -"Go to :menuselection:`Project ‣ Project Properties` and enable 'on the fly' " -"transformation." -msgstr "" - -# 299f545dcb654e6ab6321f237352f7d2 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:138 -msgid "" -"Make sure that “WGS 84” is selected as the CRS, and click :guilabel:`OK`." -msgstr "" - -# f17fadd7355f4bc0a64ff4e0b5035717 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:143 -msgid "" -"Right-click on the :guilabel:`UGM` layer and click :guilabel:`Zoom to Layer`." -msgstr "" - -# f1d184e44693453385456b7b5299f8b6 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:146 -msgid "" -"Zoom in to the centre of the raster image. We will be digitising three areas:" -msgstr "" - -# 4e3369321997410189c431b8c5652b50 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:153 -msgid "3. Digitising" -msgstr "" - -# f937e11a0959429faba63e56cc635328 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:155 -msgid "" -"Digitising, as you might have guessed, is the art (or science) of creating " -"digital vector data from another source, such as a raster image. In order to " -"begin digitising, we must first enter edit mode. GIS software commonly " -"requires a separate mode for editing, to prevent users from accidentally " -"editing or deleting important data. Edit mode is switched on or off " -"individually for each layer." -msgstr "" - -# 34696af274ab4f148f44eeeae2401f35 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:162 -msgid "Let’s enter edit mode for the :guilabel:`gedung_kampus` layer:" -msgstr "" - -# b32d37d58a7742f0b1a910265831608f -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:164 -msgid "Select :guilabel:`gedung_kampus` in the Layers panel." -msgstr "" - -# 5f9b30f7ae2f47749faed8e9c83bdd03 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:166 -msgid "Click on the :guilabel:`Toggle Editing` button:" -msgstr "" - -# 4b2603370c114266823448dd411430e8 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:171 -msgid "" -"If you can’t find this button, ensure that the Digitising toolbar is " -"enabled. There should be a check mark next to the :menuselection:`View ‣ " -"Toolbars ‣ Digitizing` menu entry." -msgstr "" - -# 54834f30057d405ba348e899edf8e115 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:176 -msgid "Once you are in edit mode, the digitising tools will become active:" -msgstr "" - -# 3119685eb7ff4710b26c7a7190aa14ea -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:181 -msgid "From left to right on the image above, they are:" -msgstr "" - -# 5efafc260c724a278878448aecfdb269 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:183 -msgid "**Toggle Editing**: activates / deactivates edit mode." -msgstr "" - -# 316ded114bce4043af52f4c68f625ffd -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:184 -msgid "**Save Layer Edits**: saves changes made to the layer." -msgstr "" - -# e32b9e750c1640b793b0b94c1c638e6c -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:185 -msgid "**Add Feature**: start digitising a new feature." -msgstr "" - -# c80a99c4aa10491c9d6d561847c6fc35 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:186 -msgid "**Move Feature(s)**: move an entire feature around." -msgstr "" - -# 5c252590f9d44c039810ad65ae06e22b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:187 -msgid "**Node Tool**: move only one part of a feature." -msgstr "" - -# a8b6b5e21dbe4434aee9b5ab299f3cfd -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:188 -msgid "" -"**Delete Selected**: delete the selected feature (only active if a feature " -"is selected)." -msgstr "" - -# 44d0528422c844a48daf29e2c9be6f95 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:190 -msgid "" -"**Cut Features**: cut the selected feature (only active if a feature is " -"selected)." -msgstr "" - -# ae0cfe5c540c42d197b2291926dd3cbf -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:192 -msgid "" -"**Copy Features**: copy the selected feature (only active if a feature is " -"selected)." -msgstr "" - -# 4a27504b282a4f15bf678aacea12442e -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:194 -msgid "" -"**Paste Features**: paste a cut or copied feature back into the map (only " -"active if a feature has been cut or copied)." -msgstr "" - -# a54d9ad963554bf2b05863bd821369c3 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:197 -msgid "We want to add a new feature." -msgstr "" - -# 665e62084d0944978e97b3df7936ad15 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:199 -msgid "Click on the :guilabel:`Add Feature` button to start digitising:" -msgstr "" - -# 173ad069dd4d40749db01e13dd34ca55 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:204 -msgid "" -"You’ll notice that your mouse cursor becomes a crosshair. This allows you to " -"more accurately place the points you’ll be digitising. Remember that even as " -"you’re using the digitising tool, you can zoom in and out on your map by " -"rolling the mouse wheel, and you can pan around by holding down the mouse " -"wheel and dragging around in the map." -msgstr "" - -# 5f16205f560b4d048243c10e7b636d5b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:211 -msgid "The first feature you’ll digitise is a field (called \"GSP Field\"):" -msgstr "" - -# e873f71d8a784d9ca4457b020e7fc9c8 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:216 -msgid "Start by clicking on a point somewhere along the edge of the field." -msgstr "" - -# cda2685d257f46cb8f48225fa82f87ef -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:218 -msgid "" -"Place more points by clicking further along the edge, until the shape you’re " -"drawing completely covers the field. This is very similar to drawing a " -"polygon in JOSM." -msgstr "" - -# 5acb33399a0743599372ebd430b6bba3 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:222 -msgid "" -"To place the last point, right-click where you want it to be. This will " -"finalise the feature and bring up the Attributes dialog." -msgstr "" - -# 30bc8379a00e427a9863b416ef81d854 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:225 -msgid "Fill in the values as shown here:" -msgstr "" - -# 912b369841914f34958db215d29d5d77 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:230 -msgid "Click :guilabel:`OK`. You’ve created a new feature!" -msgstr "" - -# 12459431b0ee4dd68aa037587ed30935 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:232 -msgid "" -"If you make a mistake while digitising a feature, you can always edit it " -"later. Simply finish digitising the feature and then follow these steps:" -msgstr "" - -# 112ad681347540a3bfadb066b77de537 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:236 -msgid "Select the feature with the :guilabel:`Select Feature` tool:" -msgstr "" - -# 1dd5b5d8c58b4a829e499d89c9dc5802 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:241 -msgid "Then use one of these tools to edit the feature:" -msgstr "" - -# fdb913dcb9014378bbfff78322f79cbe -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:244 -msgid "Move feature(s) tools" -msgstr "" - -# 2b548971719a472d8bb45bfeb8b20ffd -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:244 -msgid "Move the entire feature(s)" -msgstr "" - -# 8da3ba58d5ac4294b0c1fd9a3242e7ef -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:246 -msgid "Node tools" -msgstr "" - -# a23c9175220846398bd7a350936c5f40 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:246 -msgid "move only one point where you may have misclicked" -msgstr "" - -# 8708ae27ba5b4c518a39b95e1cc131c2 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:248 -msgid "Delete selected" -msgstr "" - -# 7fd5ce79227e4e478b642a510ae7c225 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:248 -msgid "get rid of the feature entirely so you can try again" -msgstr "" - -# 74cbb65f6763425ea7022eb5c8e09a2b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:250 -msgid "Go to Edit ‣ Undo or press :kbd:`Ctrl+Z` on keyboard" -msgstr "" - -# 7ae3402554ca4f4ca1ea20fdac6c5757 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:250 -msgid "Undo mistakes" -msgstr "" - -# baa9a83ffdb44a80bfd9926105461f57 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:253 -msgid "Now try it on your own:" -msgstr "" - -# 1fb213a2efb04bef951ff2acc77a1d50 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:255 -msgid "" -"Digitise the school itself and the upper field. Use this image to assist you:" -msgstr "" - -# 629b69bac5254523a365ea4869b26be6 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:261 -msgid "Remember that each new feature needs to have a unique id value!" -msgstr "" - -# 30a94d011f3c4b04a356429292673527 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:263 -msgid "" -"When you are finished adding features to a layer, you must save the changes " -"to that layer." -msgstr "" - -# c5a2aa9a0c2440978b0762a64e7c8f00 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:266 -msgid "Click on the :guilabel:`Toggle Editing` button." -msgstr "" - -# b20058fb036b4027b709ef3f1ba1cb89 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:271 -msgid "You will be asked to save your edits. Click :guilabel:`Save`." -msgstr "" - -# de98b75cde03471094482fdc9f073783 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:277 -msgid "" -"Now you know how to create polygon features! Creating points and line layers " -"is just as easy - you simply need to define the type of layer when you " -"create it, and of course you can only create points in point layers and " -"lines in line layers." -msgstr "" - -# 9a104f2dd4b242e5a9bd28d8d02df128 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:283 -msgid "4. Georeferencing" -msgstr "" - -# 5b9c7e741def40eb8bfd0a41fafdbb06 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:285 -msgid "" -"In the previous section we digitised a raster image, thus creating vector " -"data. This is essentially the same process as when we use Bing imagery in " -"JOSM to add to OSM. In both of these cases, the imagery that we use is " -"already **georeferenced** - that is, it is correctly placed in its proper " -"location." -msgstr "" - -# 33efdbca85f045bb80331fd3e9aaddbc -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:292 -msgid "" -"When an image is georeferenced, it is stretched in different ways so that " -"each pixel in the image corresponds as closely as possible to the area it " -"represents on the spherical Earth. Because it is difficult to perfectly " -"align a flat image on a round object, there are often small georeferencing " -"errors, as we learned previously with imagery offset." -msgstr "" - -# 712e67631ce24a8a8c1104a7d15ab5db -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:299 -msgid "" -"What if you have a map that is not georeferenced? What if you have a paper " -"map given to you by a government agency? How can you digitise it?" -msgstr "" - -# 2ada9eb02e444da6b34f4da5f425a251 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:303 -msgid "" -"The first step is to turn your paper map into a digital image that you can " -"manipulate with your computer. You can do this with a scanner (or possibly a " -"digital camera), although doing so is beyond the scope of this module." -msgstr "" - -# 1bb13e878ee64680bea2b0350d8c48f5 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:309 -msgid "4.1 Georeferencing an image" -msgstr "" - -# 84b24fef1b93421f9c38cbe9b56e08b6 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:311 -msgid "" -"Now we will learn how to georeference an image in QGIS so that is correctly " -"located on Earth. We will be using a map provided in the tutorial files, " -"which looks like this:" -msgstr "" - -# 4dcb89739eab41f898216666dfdacff9 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:318 -msgid "Start a new QGIS project. Save your previous work if you like." -msgstr "" - -# 012858d3cf4f4c1c838fa986a63c3316 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:321 -msgid "Go to :menuselection:`Raster ‣ Georeferencer ‣ Georeferencer`." -msgstr "" - -# 04b44e31db05460f969fedc27d2db84e -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:326 -msgid "Click the :guilabel:`Open raster` button." -msgstr "" - -# 17b3a5874d374c22986016dd04c4fea6 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:331 -msgid "" -"Find the file :file:`peta_krb_merapi_2002.jpg`, which is located in the the :" -"file:`qgis/Sleman/Merapi/` folder. Click :guilabel:`Open`." -msgstr "" - -# 0ca1d2bb627949edbed88cbd262a39b3 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:334 -msgid "Select :guilabel:`WGS 84` when prompted and click :guilabel:`OK`." -msgstr "" - -# 3a4f1b120cd444aa9c60341dd3856027 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:339 -msgid "" -"In order to georeference this image, we need to associate points on the " -"image, to known points on the Earth. Such points are called ground control " -"points (GCPs). Luckily, this map image has latitude and longitude " -"coordinates written on it at every corner. So, to georeference this image, " -"we will create four GCPs, one at each corner of the map, and we will turn " -"our jpeg file into a geotiff, a georeferenced image." -msgstr "" - -# ce7da7ed2213448eb568d5a6931e46e4 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:348 -msgid "Zoom in to the upper left corner of the map." -msgstr "" - -# 486ac103e43a42eb989c15f8a687a61f -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:353 -msgid "Click the :guilabel:`Add point` button." -msgstr "" - -# e8ae910746524b198ff48a356f457177 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:358 -msgid "" -"Click on the very top left point of the map, right where the top border of " -"the map meets the left border." -msgstr "" - -# 2366036a80be4824ad9c1d60fc918962 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:361 -msgid "" -"A box will pop up requesting the x and y coordinates of the point you just " -"clicked. The coordinates are written in blue on the map. The longitude (x " -"coordinate) is 110° 15’ 00” E and the latitude (y coordinate) is 7° 29’ 47” " -"S. We can enter the coordinates in the box as follows. Remember that south " -"and west coordinates will be negative numbers." -msgstr "" - -# 3bd4cfc89eb94983b3a2ab9ea2796cb4 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:372 -msgid "Click :guilabel:`OK`." -msgstr "" - -# 466dc58a95b640fc91918ca1cafdea2f -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:374 -msgid "" -"You will see a red point appear showing the location of your control point, " -"and an entry in the table at the bottom." -msgstr "" - -# 3b647c63370f4d27b94b2cc591ffb384 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:377 -msgid "" -"Repeat this process, creating ground control points at each of the four " -"corners of the map. Remember to enter the longitude and latitude that is " -"written at each corner. When you are finished, you should have four GCPs and " -"your table will look like this:" -msgstr "" - -# 2f14d0a52d324e86a8cd7bee53538bd3 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:386 -msgid "Lastly we will adjust the settings and then create our output file." -msgstr "" - -# d3766afef174434ba04151ec380266e4 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:388 -msgid "Click on the :guilabel:`Transformation settings` button." -msgstr "" - -# a8a838a90a2a4768b768a667d19b11c2 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:393 -msgid "Next to :guilabel:`Transformation type` select :guilabel:`Linear`." -msgstr "" - -# 21029452e4c44fee9bf0699a47731dfa -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:395 -msgid "" -"Provide a filename for the output raster. The file type will be :file:`.tif`." -msgstr "" - -# a7f5933bf98d4ef1b7e449dda378c190 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:398 -msgid "" -"Check the box next to :guilabel:`Load in QGIS when done`. It should look " -"like this:" -msgstr "" - -# d53c22c91e0140ad99779ecfe2b06b55 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:404 -msgid "Click :guilabel:`OK` and look at the table." -msgstr "" - -# bd26893f5ea24122b40815790e83c044 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:409 -msgid "Make sure the residual value is near zero to improve accuracy." -msgstr "" - -# 7e6b43e3677a45898cd5192d0c3ca589 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:411 -msgid "" -"Now we are ready to produce the georeferenced image file. Click on the :" -"guilabel:`Start georeferencing` button." -msgstr "" - -# fe939131c61641378477b12d0ae55154 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:417 -msgid "" -"If you are asked to select the layer’s coordinate system, choose :guilabel:" -"`WGS 84`." -msgstr "" - -# bf736c1c3c944a78b2872f7fee5ee694 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:420 -msgid "" -"Go to :menuselection:`Project ‣ Project Properties` and make sure that on " -"the fly transformation is enabled." -msgstr "" - -# 92d7e85d4ea1463eb084c194aafdf29d -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:426 -msgid "" -"The output file will be created and automatically added to your project. If " -"you hover over the image, you should see coordinates at the bottom of QGIS, " -"which are close to the coordinates you entered when placing the GCPs." -msgstr "" - -# dbd6355e78824d4b8b133eb3a08b9658 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:434 -msgid "" -"Another way to see that the image is correctly placed, is by adding a layer " -"with the OpenLayers plugin. Here we have added Bing satellite imagery, and " -"made our new geotiff transparent to see Merapi in the background." -msgstr "" - -# feacc49d97a44ea58666962d6dca428b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:442 -msgid "" -"Knowing how to georeference is important when you want to digitise from a " -"paper map or an image that is not already georeferenced. Once you have " -"georeferenced an image like this, you can apply the same digitisation " -"techniques that we learned previously in this module to create vector " -"shapefiles that can be used in QGIS and |project_name|." -msgstr "" - -# 4e97ae7df0e14c9abc650fd2b7dc7456 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:448 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.po deleted file mode 100644 index 16abbf6d..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.po +++ /dev/null @@ -1,892 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 136176e1dccf4f70b59c9b9a8b9a76f9 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:10 -msgid "Module 10: Vector Analysis for Problem Solving" -msgstr "" - -# 610ae6d9156e4b98908c2144b567823b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 1a343b0ac76444f4bdebd185a83e80ea -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:14 -msgid "Understand the GIS process" -msgstr "" - -# 819a36670e7d43569c2ba8ece095e94e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:15 -msgid "Identify addressable problems" -msgstr "" - -# 63a8bc80cfff4d06982a1e3cf33bfaf8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:16 -msgid "Understand data needs" -msgstr "" - -# 5f7b3ffcf170431897f17c4be18ec552 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:17 -msgid "Start a QGIS project" -msgstr "" - -# d507c32b1d3e49aaa12b0275f87b699b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:18 -msgid "Analyse problems" -msgstr "" - -# ad9bbd8fd6d644278f028d0b332a3a28 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:19 -msgid "Identify hazard zones" -msgstr "" - -# 27b0150c143c4630ae40187b7b52d68f -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:20 -msgid "Look for important roads" -msgstr "" - -# 888f157eba2d48b58630843f6dca15fb -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:21 -msgid "Look for medical facilities" -msgstr "" - -# 498e529f1da14f508efe3ba5d1e3de1b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:22 -msgid "Buffer roads and medical facilities" -msgstr "" - -# fb14febf7b474ad7b86908cefbde2bf8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:23 -msgid "Analyse overlapped areas" -msgstr "" - -# 245daca414ca4cd48b5200f67b32cf56 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:25 -msgid "" -"The power of GIS is its ability to help us analyse data. Vector data can be " -"analysed to reveal how different features interact with each other. In this " -"module, we’ll work through the GIS process, attempting to solve a problem, " -"and as we proceed, we will learn about various analysis tools that QGIS " -"provides." -msgstr "" - -# cf8fac4cf3f6449c8d82d1315e8b7909 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:31 -msgid "1. The GIS process" -msgstr "" - -# d3b38e6cd3eb4c00ab72429fa1cc57c8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:33 -msgid "" -"Before we start, it will be useful to give a brief overview of a process " -"that can be used to solve any GIS problem. The steps are simple:" -msgstr "" - -# 394b8ec05c454c01ba98a32e3376a35a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:36 -msgid "State the problem" -msgstr "" - -# 327ab4f6a35c4a18bd78a38ee2d25bb3 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:37 -msgid "Get the data" -msgstr "" - -# 92adfed6f44047e883314546a42e806d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:38 -msgid "Analyse the problem" -msgstr "" - -# e738c56da7634befa8846c3732881c4e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:39 -msgid "Present the results" -msgstr "" - -# f5b07d1e511d42c6a8d5e7cfbc46fe71 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:42 -msgid "2. Problem" -msgstr "" - -# 2bbf767513b64453838477a7117a2c74 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:44 -msgid "" -"Let’s start off by deciding on a problem to solve. Imagine that you’re a " -"disaster manager, and you need to provide the best locations to place " -"refugees (IDPs) in villages surrounding Mount Merapi when it erupts. You’ve " -"come up with the following criteria for these locations:" -msgstr "" - -# e3c2d9bb44fa4d83bdb78a21703a0528 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:49 -msgid "" -"The area should be a dry field or farm in the districts Ngemplak, Turi or " -"Pakem." -msgstr "" - -# eee07933dbd849a19193b71433fcca4e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:51 -msgid "The area must be outside of Merapi Eruption Disaster Prone Region III." -msgstr "" - -# 3bfda07503ad4ea0bbf1ff0878c7506c -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:52 -msgid "" -"Access to the site should be easy, so it will not be more than 300 metres " -"from a main road." -msgstr "" - -# 891273bb882c4dd297946a66ff21a07e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:54 -msgid "The site should be close to health facilities." -msgstr "" - -# 93ab626f53154fe1898ab2fd58e80f01 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:55 -msgid "The land area should be between 50000-150000 m²." -msgstr "" - -# cbfa9ef0304047788ac363102c591aa6 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:58 -msgid "3. Data" -msgstr "" - -# f3fb7ddce09e478283a42e0591fa2ae8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:60 -msgid "To answer these questions, we’re going to need the following data:" -msgstr "" - -# 6569bb23e4364e2380ca96c0228af556 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:62 -msgid "Landuse in Sleman regency" -msgstr "" - -# 86a60588003e44b3b6f083637298e6c5 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:63 -msgid "Streets in Sleman" -msgstr "" - -# df93c4f291ee425ab7fe07a51effe98a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:64 -msgid "Location of health facilities" -msgstr "" - -# 38a8437a78ae428f9cd3e33902e4c2e4 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:65 -msgid "" -"KRB Merapi (Merapi Eruption Disaster Prone Region - this is the same data " -"that we learned how to georeference in the previous module)" -msgstr "" - -# 4b2c2fda9a2c40f19c9ee1f1af06ab56 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:68 -msgid "" -"For this exercise the data has been provided already, but in a real scenario " -"you may need to find providers for the datasets in question. In Indonesia, " -"the National Land Agency and BNPB Bappeda are good sources for the types of " -"data you will need, and OpenStreetMap can be used as a source for roads and " -"infrastructure." -msgstr "" - -# 70899b3baf2a45c085f6200a76db9870 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:75 -msgid "4. Start a project" -msgstr "" - -# e4eda803768444e6a48db46d3cec3480 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:77 -msgid "Now that we know what we want to do, let’s start doing it!" -msgstr "" - -# d6904b9ec5fa40cdabe007e47cc3e924 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:79 -msgid "Start a new QGIS project." -msgstr "" - -# 52202360b0b24cdebabb9d13035c6ec8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:84 -msgid "" -"Start adding the layers we will use. In the :file:`Sleman/Merapi/` folder, " -"add the layers :file:`jalan_sleman_49S`, :file:`tempat_penting_Sleman_49S`, :" -"file:`KRB3_49S` and :file:`vegetasi_49S`. Your Layers panel should look like " -"this:" -msgstr "" - -# 35881ca0e6ea401f9d8068c2d7c402f5 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:92 -msgid "" -"Most of the layers are pretty self-explanatory, but what are KRB3, KRB2, and " -"KRB1? These layers show areas of impact when Merapi erupts. KRB3 is the area " -"of worst impact, KRB2 is medium, and KRB1 has little impact. In this " -"scenario we want to find locations that are not within KRB3." -msgstr "" - -# fd8acc2796c148c58d5b8e80b488c51c -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:97 -msgid "" -"The data we are working with now is similar to that from previous modules, " -"but now it is in a Projected Coordinate System. The previous data was saved " -"in WGS84 - this meant that the coordinates of our features were stored in " -"degrees, which aren’t very good for measuring size or distance. By using a " -"projected system our coordinates are in metres, which is important for " -"analysis, because we can easily measure distances between and around " -"features." -msgstr "" - -# c29080c1433e4f21a91671af104013ed -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:104 -msgid "" -"Rename the layers by right-clicking on them and selecting :guilabel:`Rename`." -msgstr "" - -# 0b21240463b649c5a1c369945778ae9b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:106 -msgid "" -"Give them the new, simpler names :guilabel:`jalan`, :guilabel:" -"`lokasi_penting`, :guilabel:`KRB III` and :guilabel:`vegetasi`." -msgstr "" - -# 8bc53dc7f2ec4f69ad28c2b38086fcd7 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:109 -msgid "Save your project as :kbd:`merapi_analisis.qgs`." -msgstr "" - -# 6373931b399f4bd18c41aec921b64a30 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:111 -msgid "" -"In your operating system’s file manager, create a new folder under :file:" -"`qgis/Sleman/Merapi/` and call it :file:`evakuasi_bencana`." -msgstr "" - -# 460dd7a54ff64566a7b09a6213d02d05 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:115 -msgid "" -"This is where you’ll save the datasets that we will create during our " -"anaysis." -msgstr "" - -# 225214252880499a82a8708601d3936a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:117 -msgid "Now that we’ve got the data, let’s analyse the problem!" -msgstr "" - -# 2dc31419419342528c3e6593bb17808b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:120 -msgid "5. Analysing the problem: farms and dry fields" -msgstr "" - -# 09062df5404e4f04b1039bd1b968b62d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:122 -msgid "" -"The first criteria we’re facing is that the land must be a farm or dry " -"field, and it must be in one of three areas. So let’s tell QGIS to only show " -"us the farms and dry fields that are, in fact, in these sub-districts!" -msgstr "" - -# 7282b36ac82f442e996efd9fe6ba9ff2 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:126 -msgid "Right-click on the :guilabel:`vegetasi` layer in the Layers panel." -msgstr "" - -# 2ae7f06ec20f488387a93e85dfb33fb8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:128 -msgid "Click :guilabel:`Filter...` This opens the Query Builder dialog." -msgstr "" - -# dbda1d5d7a184dd6bb18d764113bad30 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:133 -msgid "" -"Scroll down in the Fields list on the left of this dialog until you see the " -"field :guilabel:`kec`. Click on it once." -msgstr "" - -# 90fbab0bd50243d5a8e9709e2593d0f8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:136 -msgid "Click the :guilabel:`All` button underneath the Values list:" -msgstr "" - -# 80d6eb107a1247fb8c8be40fcf5542ec -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:141 -msgid "" -"Next we are going to build a query. A query is a statement that allows us to " -"show only the data that we want from a layer. In this case, we want to " -"instruct QGIS to only show us farms and dry fields, that have a sub-district " -"value equal to Ngemplak, Turi, or Pakem." -msgstr "" - -# d1fb6ee51bef4fe998dae6a138b67b4d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:146 -msgid "Double-click :guilabel:`kec` in the Fields list." -msgstr "" - -# 9e9c8a3081ce4fbe85114d438264ba7e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:148 -msgid "Click the :guilabel:`=` button (under Operators)." -msgstr "" - -# e4161aacd4bd4025a1daa6beea58c4ea -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:153 -msgid "Double-click the value :guilabel:`Ngemplak` in the Values list." -msgstr "" - -# 41da083c13b64e0990fb7f041b68b20b -# 094e70dcfa1f4f818a5dfdfc369a2a7a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:155 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:172 -msgid "Click :guilabel:`OR`." -msgstr "" - -# f939fb10ac5149fea6a6d72d8630bfb8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:157 -msgid "" -"Repeat these steps twice more, using the values :guilabel:`Turi` and :" -"guilabel:`Pakem` instead of :guilabel:`Ngemplak`. The query should look like " -"this:" -msgstr "" - -# e7bc020964004f70b55bd555c35ab22e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:164 -msgid "Click :guilabel:`AND`." -msgstr "" - -# e87bd8d7ac6b4ef4b58a51b588dfdda8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:166 -msgid "" -"Now highlight :guilabel:`guna_lahan` in the Fields list, and click the :" -"guilabel:`All` button to load the values." -msgstr "" - -# 89fb1c8619124eba98b0da16d2d61ccf -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:169 -msgid "" -"Double-click :guilabel:`guna_lahan`. Then click the :guilabel:`=` button. " -"Then double-click the value :guilabel:`KEBUN`." -msgstr "" - -# 20696a65a25840e7890f7659543b7b94 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:174 -msgid "" -"Repeat the previous step but instead of :guilabel:`KEBUN` use :guilabel:" -"`TEGALAN`. Your query should look like this:" -msgstr "" - -# 7c062c74c6c346f38e724b1f0ee3d011 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:180 -msgid "" -"The idea is that the query will filter the data layer so that it will only " -"show us the features we want - that is, farms and dry fields in Pakem, Turis " -"and Ngemplak." -msgstr "" - -# 13c98862b00d4295a3f90ff57be08d7c -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:184 -msgid "" -"We need to add one more thing to our query: parentheses. Without these, our " -"query won’t work quite right. Add two pairs of parentheses on each side of " -"the word AND, like so:" -msgstr "" - -# 63561c7e3b0f4828aaf9d95186ca1d82 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:191 -msgid "" -"Click :guilabel:`OK`. The :guilabel:`vegetasi` layer has far fewer features " -"now." -msgstr "" - -# b5cf8ff7413f4bdba09ebf85f30f36c1 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:197 -msgid "" -"Well done! We’ve applied our first criteria to begin solving the problem!" -msgstr "" - -# c49c97e87a9043eeaa1f4b11385a043d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:200 -msgid "6. Danger zone" -msgstr "" - -# 86fd2afd0e7844a4b781973a8dbb51ad -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:202 -msgid "" -"Our next criteria is that our chosen location should be outside of the " -"danger zone, which is defined by the layer :guilabel:`KRB III`. For this we " -"can use the Spatial Query tool." -msgstr "" - -# 8f9abe68e0b547cdb9775640c225f233 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:206 -msgid "Go to :menuselection:`Vector ‣ Spatial Query ‣ Spatial Query`." -msgstr "" - -# 01b1eff6701c4670aea30531499767bd -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:211 -msgid "" -"Under :guilabel:`Select source features from` choose :guilabel:`vegetasi`. " -"In the next box choose :guilabel:`Is disjoint`. The third box should be set " -"to :guilabel:`KRB III`. The Spatial Query window should look like this:" -msgstr "" - -# 92d4c8d3cab24e01a91bc408fd695877 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:218 -msgid "" -"Click :guilabel:`Apply`. Then click :guilabel:`Close` once the selection has " -"been applied." -msgstr "" - -# 47236747ef6f4f2789bf0430a3f185b6 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:224 -msgid "" -"Now the vegetasi layer looks like the image below. Notice that all the " -"features have been selected that fall outside the KRB III area." -msgstr "" - -# 91a6c7566faa4b97a0f5eb3a240f76a4 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:230 -msgid "" -"The next steps of our analysis will be easier if we save this selection as a " -"separate layer." -msgstr "" - -# 5ac818e47ff147d09eba3438bb73d9c3 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:233 -msgid "" -"Right-click on the :guilabel:`vegetasi` layer and click :guilabel:`Save As..." -"`" -msgstr "" - -# c1f4fe60cdda4b67bf40b92ccb35d456 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:239 -msgid "" -"Next to the :guilabel:`Save as` field in the dialog that appears, click the :" -"guilabel:`Browse` button." -msgstr "" - -# a95cbfb8888543e8a471855f1b78d774 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:242 -msgid "" -"Save the layer under :file:`evakuasi_bencana/` as :kbd:`kebun_tegalan.shp`." -msgstr "" - -# a0689db46352434ba0c27e1c3169a8d9 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:244 -msgid "" -"Check the box labelled :guilabel:`Save only selected features` and :guilabel:" -"`Add saved file to map` in the :guilabel:`Save vector layer as...` dialog." -msgstr "" - -# dcd75d4c9f584745b28391270b957a02 -# 5c9934c4fdd346009a59090ba16d936a -# d9a468534ddf411686c287874a160f1b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:251 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:476 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:501 -msgid "Click :guilabel:`OK`." -msgstr "" - -# 1279464177f848c59ab79a0155b8626e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:253 -msgid "" -"Rename the layers by right-clicking on new vegetasi layer and selecting :" -"guilabel:`Rename`. Rename with :kbd:`kebun_tegalan`." -msgstr "" - -# eeca04927a1841109d7c7426057e669e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:256 -msgid "" -":guilabel:`Right-click` on the old vegetation layer and remove it. You " -"should have these layers remaining:" -msgstr "" - -# fdc99e101d6b4b3eadf78e01ca0343a1 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:263 -msgid "7. Finding important roads" -msgstr "" - -# b57eb01c01114b77b1edff84ebb7ea1a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:265 -msgid "" -"We have a problem with our roads layer, similar to that of our vegetation " -"layer. Our roads layer has too many roads! We only want to use main roads " -"for our analysis, so that we can meet the criteria that our location is " -"within 300 metres of a major road. Once again, we will use the Query Builder." -msgstr "" - -# 65d841d3684b4c98845d3219dadb0b28 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:270 -msgid "" -"Right-click on the :guilabel:`jalan` layer and click :guilabel:`Filter...`" -msgstr "" - -# b84ce570bb96453ea1ad411617ae4619 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:272 -msgid "" -"Build a query for the roads layer, like you did above for the vegetation " -"layer You want only primary and secondary roads, so you need to build this " -"query:" -msgstr "" - -# 4c52e3f5799440d4867bf8180f0d7c53 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:276 -msgid "*\"TYPE\" = 'primary' OR \"TYPE\" = 'secondary'*" -msgstr "" - -# 110beba9618445ae8f043b40e60b5738 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:278 -msgid "" -"You can use the approach that we learned above, or you can simply type this " -"command into the query box. But be careful that you type it correctly!" -msgstr "" - -# f2f20454a5e549168207607f072f9a40 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:286 -msgid "8. Looking for health facilities" -msgstr "" - -# 350f10dbc31a4c9ab7d312087ed3ec9f -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:288 -msgid "" -"Using the same approach, build a query for the :guilabel:`lokasi_penting` " -"layer as shown:" -msgstr "" - -# 017a5640983e4e5eacd5d6ee31c260fe -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:291 -msgid "*\"Fungsi\" = 'Kesehatan'*" -msgstr "" - -# 5f24d36e1b92435a971cebef4697accd -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:294 -msgid "9. Buffering Roads" -msgstr "" - -# 3590f6e1eed64508b0a59d36ad4f4b06 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:296 -msgid "" -"Okay, we’ve refined our data a bit so that it shows us the features we are " -"interested in analysing. Remember that according to our criteria our land " -"area should be within 300 metres of a main road and close to a health " -"facility. QGIS allows us to calculate distances from any vector object, and " -"we will use this functionality to help us reach a solution." -msgstr "" - -# 3e5edddc2a2d4b4b91082aab17ad347d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:302 -msgid "" -"Make sure that only the :guilabel:`jalan` and :guilabel:`kebun_tegalan` " -"layers are visible, to simplify the map while you’re working." -msgstr "" - -# 42b5eabdaf094f41938d866ddad49147 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:308 -msgid "Go to :menuselection:`Vector ‣ Geoprocessing Tools ‣ Buffer(s)`." -msgstr "" - -# 08b12762da6747c19f460674ca742d3d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:313 -msgid "In the first drop-down box select :guilabel:`jalan`." -msgstr "" - -# 3da096f4ec63448590dbc1ae206e660a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:315 -msgid "Enter :kbd:`300` next to :guilabel:`Buffer distance`." -msgstr "" - -# 1ef27ee637c646319e2f430dbb2e1eb6 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:317 -msgid "Check the box next to :guilabel:`Dissolve buffer results.`" -msgstr "" - -# d63139b782c74d50a480a1b75e02f5de -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:319 -msgid "" -"Click :guilabel:`Browse` and type :kbd:`buffer_jalan_300m.shp` for the " -"filename." -msgstr "" - -# 90ab1e5643af4e518954663fad886e0a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:325 -msgid "" -"We input the buffer distance in metres. Good thing we used projected data!" -msgstr "" - -# b96658d273614fe293a1864fd7d28297 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:328 -msgid "" -"Click :guilabel:`OK`. QGIS will create a buffer around the streets that " -"extends 300 metres." -msgstr "" - -# 80153ce85cac450bac437966c120fa09 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:331 -msgid "" -"When the process finish and buffer_jalan_300m.shp appear in the Layers, you " -"can click :guilabel:`Close` the Buffer dialog." -msgstr "" - -# c4004880a2c94378aa380e0ddada82ad -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:337 -msgid "Close the Buffer dialog and see your new layer:" -msgstr "" - -# fbf6eb3aaef7465fa8c6c6b9280fbfcd -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:342 -msgid "" -"Those big fat lines are actually areas that are within 300 metres of primary " -"and secondary roads." -msgstr "" - -# e868793b1a564c31bf523f9b20f723e8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:346 -msgid "10. Buffering health facilities" -msgstr "" - -# 4dade93d63b24583890ea3350f9199d5 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:348 -msgid "" -"Now try it yourself! Using the same approach, create a new buffer layer " -"around your health facilities. The buffer should be 2.5 km in radius." -msgstr "" - -# aeb77ccaf58a409990a2aae03e4bfcc9 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:351 -msgid "" -"Don’t forget to check the box :guilabel:`Dissolve buffer results` so every " -"overlapping buffer will become one feature. Then save the new layer in the " -"same directory as :file:`buffer_fas_kesehatan_2.5km.shp`. Your resulting map " -"will look something like this:" -msgstr "" - -# d8e0318f0fc44b9894d508916ec42e8c -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:359 -msgid "" -"Remember that the buffer distance is in metres. Keep this in mind when you " -"want to create a 2.5 km buffer!" -msgstr "" - -# 31c715269bfe4ab6ad0bab1f4ab3e2e8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:363 -msgid "11. Overlapping areas" -msgstr "" - -# ed1d1f7e1e264d64b29b8f2b62e000e7 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:365 -msgid "" -"Now we can see areas where a main road is 300 metres away and where there is " -"a health facility within 2.5 km. But we only want the areas where both of " -"these criteria are satisfied at once! To do that we will use the Intersect " -"tool." -msgstr "" - -# 98566aece7ec40b28722e22f77e1a9e8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:369 -msgid "Go to :menuselection:`Vector ‣ Geoprocessing Tools ‣ Intersect`." -msgstr "" - -# 50ac31b8bd3c439a894d45698a2e4a4b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:374 -msgid "" -"Enter :guilabel:`buffer_fas_kesehatan_2.5km` and :guilabel:" -"`buffer_jalan_300m` as the two input layers. Name the output shapefile :kbd:" -"`intersect_buffer_jalan_kesehatan.shp`." -msgstr "" - -# cf5f76e68f4a45b7aeea1ef26a2cdb68 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:381 -msgid "Click :guilabel:`OK` and add the layer to the project when prompted." -msgstr "" - -# 894cbcf9ec6a453383a6dd1f008e6617 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:383 -msgid "" -"If we hide the original layers, we can see that our new layer shows us the " -"areas where they intersect. These are the areas where both of these criteria " -"are satisfied." -msgstr "" - -# 67556b789387488bb8d8f1cf1f7e8801 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:391 -msgid "12. Select farms and dry fields" -msgstr "" - -# 9b00ee68eefd46f19fd7115e9e2c2329 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:393 -msgid "" -"Now we have the layer :guilabel:`kebun_tegalan`, which satisfies two of our " -"criteria, and the layer :guilabel:`intersect_buffer_jalan_kesehatan.shp`, " -"which satisfies two other criteria. We need to know where they overlap!" -msgstr "" - -# 22fa2c3f89c24184859f8c6620bdf136 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:397 -msgid "" -"Go to :menuselection:`Vector ‣ Research Tools ‣ Select by location`. A " -"dialog will appear." -msgstr "" - -# 3dfe5448ab5c4197a61fd4463aad4963 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:403 -msgid "Set it up like this:" -msgstr "" - -# d2cc11a9a80f49f5a7f43db674c8d52f -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:408 -msgid "" -"Click :guilabel:`OK` and you’ll see the results are selected (they are " -"yellow)." -msgstr "" - -# 5c18ab293fe4461db348e211dbfc8f6a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:414 -msgid "Let’s save this selection as a new layer." -msgstr "" - -# 55fac701b92044e0bff542fa2c116a6d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:416 -msgid "Right-click on the :guilabel:`kebun_tegalan` layer in the Layers panel." -msgstr "" - -# ac9dfe4bf17546cdadc79d4acefeaa5b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:418 -msgid "Click :guilabel:`Save As...`." -msgstr "" - -# 4ca94fa4769b40e1a9dc6c197284afe5 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:420 -msgid "" -"Name the new file :kbd:`kebun_tegalan_lokasi_terpilih.shp`. Then check the " -"box next to :guilabel:`Save only selected features` and :guilabel:`Add saved " -"file to map`." -msgstr "" - -# ca47d69d58be44628e91866c2d1b6d1b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:427 -msgid "" -"After the process is finish, rename the layers by right-clicking the new " -"kebun_tegalan layer and selecting :guilabel:`Rename`. Rename with :kbd:" -"`kebun_tegalan_lokasi_terpilih`. If we hide all the other layers, we can see " -"the resulting layer:" -msgstr "" - -# 4c1121fa120f4da9945be67785040a05 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:435 -msgid "13. Select land areas of the appropriate size" -msgstr "" - -# 789215e610494814884cb7674728500f -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:437 -msgid "" -"Hooray! We have now found land areas that meet four of our five criteria. " -"The only remaining criteria is the size of the land. We need to make sure " -"that our possible locations are between 50000-150000 m²." -msgstr "" - -# bf3a9ccd591746eb9a3486cd4f78becb -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:441 -msgid "" -"Open the attribute table for the :guilabel:`kebun_tegalan_lokasi_terpilih` " -"layer. Notice that there is a column named :guilabel:`luas_ha`. This is the " -"size of the area in hectares. We could use this field to answer our " -"question, but let’s add another column that contains the size of the area in " -"square metres." -msgstr "" - -# 98e8badd87b74942a3f2d6e79302515a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:447 -msgid "" -"Select the :guilabel:`kebun_tegalan_lokasi_terpilih` layer and open its " -"attribute table:" -msgstr "" - -# 4edde082e6e146c7b499b7f22ad3502d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:453 -msgid "Enter editing mode by clicking this button:" -msgstr "" - -# 7085a21147934ba197992216b6116784 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:458 -msgid "" -"Click the :guilabel:`Start the field calculator` button (located in the " -"Attribute Table window)." -msgstr "" - -# bf950c47574e410cbc764820d9ea16ee -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:464 -msgid "" -"Check the box next to :guilabel:`Create a new field`. In the box type :kbd:" -"`luas_m2`." -msgstr "" - -# 642cec9b7cab447e9910237618d2b55d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:470 -msgid "" -"Change :guilabel:`Output field type` to :guilabel:`Decimal number (real)`. " -"Then click on :guilabel:`Geometry` and double-click :guilabel:`$area`." -msgstr "" - -# 73b230aace0241f8b0f830fd894b061a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:478 -msgid "" -"You should now see a new column on your attribute table, named :kbd:" -"`luas_m2`. And QGIS has filled it in for us with square metres!" -msgstr "" - -# 8aed3d79adc54bf99126963a15572618 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:484 -msgid "Click the edit mode button again, and save your edits." -msgstr "" - -# ac979c1c0a9a483c9c0c897fd6d2ce75 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:489 -msgid "Close the attribute table. Now we can just do a simple query." -msgstr "" - -# b05198a85f6b4918bafd89e2cf8250f3 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:491 -msgid "" -"Right-click on the :guilabel:`kebun_tegalan_lokasi_terpilih` layer and " -"click :guilabel:`Filter...`" -msgstr "" - -# 0bac35d1386a4757a610126fc6a03c6a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:494 -msgid "Enter the following:" -msgstr "" - -# a682d11f535c475ca8cc5d14ac935c38 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:496 -msgid "*\"luas_m2\" >= 50000 AND \"luas_m2\" <= 150000*" -msgstr "" - -# 974456136c4b4c01a44df6a6f13e5605 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:506 -msgid "" -"That’s it! We have eight pieces of land that meet ALL of our criteria. Any " -"of these pieces of land might be suitable for a location to place refugees." -msgstr "" - -# 0ede5749fe3f4b4dbec0624cf0c6c9ee -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:509 -msgid "" -"Right-click the :guilabel:`kebun_tegalan_terpilih` layer and click :guilabel:" -"`Save As`. Name the file :file:`refugees_location.shp`." -msgstr "" - -# 6de9c3cd55bc42648b81f1f95f2024c9 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:513 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/211-using-map-composer.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/211-using-map-composer.po deleted file mode 100644 index e4b3d988..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/211-using-map-composer.po +++ /dev/null @@ -1,556 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# e36663a0ac854e29a6d4709585aac785 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:10 -msgid "Module 11: Using Map Composer" -msgstr "" - -# 7f9ea90fc273481bb37909f2fe443f8d -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# e31781ebcb264fe8820ee5fd2ec0746f -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:14 -msgid "Arrange map layout" -msgstr "" - -# 097d1e28d5f24af3a04fc1ea16de0e9f -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:15 -msgid "Add a new map" -msgstr "" - -# 6a0c436327af4d4b976f2b894069579f -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:16 -msgid "Add title to a map" -msgstr "" - -# 0c72ad5b00c74266afb41035e54ca832 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:17 -msgid "Add graphic and numeric scales" -msgstr "" - -# 2b27f3bd31d64ea0bacc5a00e44088cd -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:18 -msgid "Add grid to a map" -msgstr "" - -# 355afe5c33ce4eac8f08481e94b578dc -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:19 -msgid "Add an inset" -msgstr "" - -# a3fc3d321b01430ca04ae61f098d0d2b -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:20 -msgid "Customise the content of the legend" -msgstr "" - -# 46428c51429d4c189d74e6c0cbf8f948 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:21 -msgid "Export a map to different formats (pdf, jpeg, svg)" -msgstr "" - -# f3799ea829b84332b8093b81929629be -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:23 -msgid "" -"A map is a means to communicate information (as well as new ideas) to the " -"audience. We use symbology to convey the contents of our data so it can be " -"easily understood. When we create a map layout, we go one step further - we " -"present our map so that it becomes a means of information." -msgstr "" - -# 85ae972f204242c3917e60aa1d6a77a8 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:29 -msgid "" -"No matter what media we plan to distribute our map by (whether it’s printed " -"or sent over the internet), we must pay attention to how the map elements " -"are composed in the layout. In this module we will discuss the presentation " -"of printed maps, and create our very own." -msgstr "" - -# ca6a997fd8ba4ceca168ba9988293606 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:35 -msgid "1. The Map Composer" -msgstr "" - -# 72b158840a714ea1969c4ec3dcfde28f -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:37 -msgid "" -"The QGIS Map Composer allows you to prepare your map for printing. Apart " -"from the map, you are able to add additional information such as images, " -"labels, legends and scalebars." -msgstr "" - -# 380af1436c17483d8b2861a47e75844b -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:41 -msgid "" -"Let’s start with some data in the Sleman regency that has already been " -"symbolised. Open the project named :file:`print_2_11.qgs` in the :file:`qgis/" -"` directory." -msgstr "" - -# cb2e5177be4f4aecb1b5ceec3e7ab029 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:48 -msgid "" -"This map shows some familiar layers from the previous module. We have the " -"roads and vegetation of Sleman, along with the three impact zones from a " -"Merapi eruption model." -msgstr "" - -# a7f7f274715d4d21b2e8442d1c77f3a9 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:52 -msgid "" -"Let’s see how we can use Map Composer to adjust the layout and prepare this " -"map for printing." -msgstr "" - -# 81e1b71566b74c978ffbccfd5641d6e3 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:55 -msgid "" -"Go to :menuselection:`Project ‣ New Print Composer`. Then, give a unique " -"title name for your layout, such as :kbd:`My Layout 1`. Click :guilabel:" -"`OK`. A new window will load that looks like this:" -msgstr "" - -# 33e9c080ced94dd9bd1ef8ee4632b753 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:62 -msgid "" -"This is the window where you can compose the layout of a map that you want " -"to print. The blank white area is your “canvas.” It is a model of the paper " -"you are going to print out. You can put various elements onto this canvas, " -"such as your map (obviously), a title, scalebar and legend. These are " -"elements commonly used on printed maps." -msgstr "" - -# 1b6b7fdd461a45a69e1bf0ce7f6eb7a2 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:68 -msgid "" -"Take a look at the right panel. In the :guilabel:`Composition` tab, you can " -"change paper size, number of pages and quality of output." -msgstr "" - -# e5994faeaf4e46b1a36b33fb335b453c -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:74 -msgid "" -"Take a look at the icons across the top of the window. We will use some of " -"these as we lay our map out, so here’s an overview of what they do:" -msgstr "" - -# b9ee9834e5b14201a5cc797bad524d81 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:80 -msgid "Display Icon" -msgstr "" - -# 122d769e497244d0b6115cc605a85c91 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:80 -msgid "Function" -msgstr "" - -# 27e8cb6df7cc4b70af87154e41652894 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:82 -msgid "" -"**Add New Map** will add a map element. This is what we will use to add the " -"map from our project into our print layout. It should be noted, however, " -"that if we change the map in our QGIS project, it will not update the same " -"map that we have added to our print composer, as we shall see later." -msgstr "" - -# 2f291554ea02418ebf4039b9c739e6a7 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:88 -msgid "" -"**Add Image** allows us to add a picture. You can add a company or " -"organisational logo, or simply display images from a particular location. " -"You can also add an image of a compass (to point North)." -msgstr "" - -# 533dac2d7bd648acb1186ddb878441d0 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:92 -msgid "" -"**Add New Label** is used for adding text to the layout, such as titles or " -"other information." -msgstr "" - -# 47b3e1a74eba47f2841482389be45e35 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:95 -msgid "" -"**Add New Legend** is for adding a legend, which will conform to the active " -"layer in the QGIS window." -msgstr "" - -# 461b960bd46d49a8aa756f983a8aed02 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:98 -msgid "**Add New Scalebar** is used to add a scale to the layout." -msgstr "" - -# 5b2730ffef8e4f6cab1fdc560ffbfd3b -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:100 -msgid "" -"**Add Ellipse/Triangle/Rectangle** is used to add one of these geometric " -"shapes. For example, this might be used to indicate special areas or " -"highlight things on the map." -msgstr "" - -# 6534621b21a64dc7bf62d7b65b26a2c5 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:104 -msgid "**Add Arrow** is used to draw an arrow on the map layout." -msgstr "" - -# 28dee0ada94e4983bfa0e371526213dc -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:106 -msgid "" -"**Select / Move Item** allows us to choose and move the elements that are in " -"the map layout. With this tool selected, you can right-click on an element " -"to lock its position." -msgstr "" - -# b364a08bdab54a349c1bf81706a1bcb2 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:113 -msgid "2. Adding a new map" -msgstr "" - -# 2078e1ab84824ac088911ae6baad1af7 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:115 -msgid "" -"In the Print Composer window, click on the :guilabel:`Add new map` button." -msgstr "" - -# abb1c396ca0f4f3e9710ddfe265d2333 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:120 -msgid "" -"Next, click and drag your mouse across the canvas, creating a box. Your map " -"layout should look similar to this when you are done:" -msgstr "" - -# 48ee0373fdbd43c983587b78bc154144 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:126 -msgid "" -"If you are not happy with the placement of your map, you can drag the " -"corners to change the size, or drag the entire element around the canvas." -msgstr "" - -# 75ba1784fbe94ba8a56027f1610ed5e2 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:130 -msgid "" -"Once you are happy set the scale of your map by going to the :guilabel:`Item " -"Properties` tab in the right panel." -msgstr "" - -# ab0234b08e6240b08ad8ffbea58f194b -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:136 -msgid "" -"Edit the scale and press :kbd:`Enter`. You’ll see that the scale (zoom " -"level) of the map element changes. A scale of about 200000 should be good " -"for this project." -msgstr "" - -# 580d3ebde7ef4773a7f422742d4de7b3 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:140 -msgid "" -"Add a frame by clicking the box next to :guilabel:`Frame`. Configure the " -"frame colour and border thickness." -msgstr "" - -# d198de83ca9d499fb0a2f91cdcb3853c -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:146 -msgid "" -"When you change the scale some parts of your map may become invisible. Click " -"on the “Move item content” button and drag the map so that it is all visible." -msgstr "" - -# 53c15dbf0afc4b749da92d463ed9cd72 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:154 -msgid "3. Adding a title" -msgstr "" - -# f5f773cd1e3344be9e0b488bc749c5da -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:156 -msgid "" -"Now we’ve got the most important thing added to our map layout - the map! " -"But let’s add some additional elements to make it more informative." -msgstr "" - -# 120610193ee444c0b454c53ed0de2f1a -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:159 -msgid "" -"Let’s add a title to our map. Click on the :guilabel:`Add new label` button." -msgstr "" - -# 3bf0af9624494e5485b4cce98d6af86e -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:164 -msgid "" -"Adjust the size of the element. We will edit the text and the text " -"properties in the panel on the right." -msgstr "" - -# 9faafaa3fc83499a9832d747f0a0c02a -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:167 -msgid "" -"Click the :guilabel:`Font` button. Change the text size to 18 and make it " -"bold. Change the alignment to :guilabel:`Center`. Lastly, add the following " -"text, or create your own:" -msgstr "" - -# 152bfeeb1cef46339a1dbe564d70dab3 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:177 -msgid "Your map layout should now look similar to this:" -msgstr "" - -# b2cb1183cd3545cdaf915938000652a6 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:183 -msgid "4. Adding a scale bar" -msgstr "" - -# 511050f6d7884c4a9085a3fd42639875 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:185 -msgid "" -"Let’s add a scale bar, so that anyone who looks at our map will have an idea " -"what size area this map shows." -msgstr "" - -# 146baec50c1b4395bf4e2e7b46eb9fe1 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:188 -msgid "Click on the :guilabel:`Add scale bar` button." -msgstr "" - -# 97089dcea5a54fea88759421b0ab6bdb -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:193 -msgid "" -"Draw the new scalebar element on your map. A good location for it is in the " -"lower left corner of your map layout." -msgstr "" - -# d4bbc6f78c984fc5bb02626d41379cb6 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:196 -msgid "" -"Next we need to adjust the scalebar options. Since our project is in a PCS " -"(Projected Coordinate System), our measurements are in metres. Enter the " -"following values in the scalebar options:" -msgstr "" - -# 3d04fbd2d10245929aba7f992b9df9c5 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:203 -msgid "This should result in a scalebar that looks like this:" -msgstr "" - -# ca5006a9ca8246258277e5920e6351d8 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:209 -msgid "5. Creating a grid" -msgstr "" - -# 7ebf631805994c9a8071b6b25a059572 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:211 -msgid "Now let’s create a grid for our map." -msgstr "" - -# c52950c3600a4b5faebbb7de7f5f2012 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:213 -msgid "Choose the :guilabel:`Select` tool and click on the map." -msgstr "" - -# 6bd260bbc6644626add09e0da44d4f01 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:218 -msgid "" -"In the panel on the right you should see the word :guilabel:`Grid`. Click on " -"it." -msgstr "" - -# c4836832676447abb0025bc2b1bdd4b1 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:221 -msgid "Check the box :guilabel:`+` and enter the following values:" -msgstr "" - -# ffe635bec0ff425887081731005fd85e -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:226 -msgid "" -"We used coordinate reference systems with UTM (metre) on the project QGIS " -"and all map layers." -msgstr "" - -# 78f024b0189641178f78c9d4129389f5 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:229 -msgid "" -"Scroll down item properties dialog and check the box next to :guilabel:`Draw " -"Coordinates` and enter the following values:" -msgstr "" - -# 1cea0cc9cb954b13ae8afd646a07de30 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:235 -msgid "" -"Your map should now have a grid appear over it, which will look something " -"like this:" -msgstr "" - -# d3844d107ed448d4bb6208fe27577988 -# cbf0ce84420949c8891cd35c48dc780e -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:242 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:322 -msgid "Tips" -msgstr "" - -# e6299d42719d4e94a5c7fdbbe5c218c8 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:244 -msgid "" -"Play around a little bit with the coordinate format. You can change decimal " -"degrees as the coordinate format or change it into Degree Minute format (DD " -"MM) or Degree Minute Second (DD MM SS)." -msgstr "" - -# 59501d75d3dc4abe869fd362f56652b5 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:249 -msgid "" -"You can also adjust the coordinate placement. You can place the text inside " -"or outside the frame, and make the orientation either vertical or horizontal." -msgstr "" - -# 3fce0adab8064a749f0e78479ae8e1d3 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:253 -msgid "" -"Change the font type and font size by clicking :guilabel:`Font` in the panel." -msgstr "" - -# cb97cb473b2b4c50a66bf6cfa977d926 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:256 -msgid "6. Overview inset" -msgstr "" - -# 6b40a69a575846bfbf62f7029f2c63a2 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:258 -msgid "" -"Next, let’s add an inset that gives viewers of our map a little more " -"information about what they are looking at." -msgstr "" - -# 9da3362c3c39446d8a00534c9f4154e1 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:261 -msgid "Minimise the Print Composer and go back into QGIS." -msgstr "" - -# 57544275370c404db9be2999a75507a5 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:263 -msgid "" -"Add the layer :file:`Indonesia.shp`, which is located in :file:`qgis/" -"peta_dunia/`. Click :guilabel:`Zoom Full`." -msgstr "" - -# 05f9941b4fd94dd49d2d3c45796396d1 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:269 -msgid "The new layer will load." -msgstr "" - -# 05345900bb6f4eb2b778f7af3016e03a -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:274 -msgid "" -"Return to the Map Composer and create a new map with the :guilabel:`Add new " -"map` button." -msgstr "" - -# 134117bcbbe042568ce41901e40afcf8 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:280 -msgid "Draw a small box on the right side of your map layout." -msgstr "" - -# 20d292abeeb242b5a8ffd8aaafae54e6 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:282 -msgid "" -"The current view of your QGIS project will appear in the new map element " -"(but notice that the old map element doesn’t change!). Add a frame for the " -"inset, so that it looks like this:" -msgstr "" - -# a3943646bf1c4e0aac72e22c30b8840d -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:290 -msgid "7. Adding a legend" -msgstr "" - -# 5c90396e03a4465c94983eaf0e3f4db8 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:292 -msgid "" -"Now let’s add a legend so that viewers of our map will know what our " -"symbology represents." -msgstr "" - -# 58cf192602a2410bac8d689190d12d74 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:295 -msgid "Click on the :guilabel:`Add legend` button." -msgstr "" - -# a5e4f434df97494caa8be9c5069471c2 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:300 -msgid "" -"Draw a box in the remaining empty space on your map layout. You will see a " -"legend with symbologies shown in a list." -msgstr "" - -# 2c9a19d1ea31428bb3b527b402de24d8 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:303 -msgid "" -"In the panel on the right, click on :guilabel:`Legend items`. Uncheck :" -"guilabel:`Auto update` and use the edit button to change the names on the " -"legend. Use the :guilabel:`+` and :guilabel:`-` buttons to add or remove " -"items from the legend. Choose which elements are important to include." -msgstr "" - -# 1c47226007b54973b533adf632972d50 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:311 -msgid "Our legend looks like this:" -msgstr "" - -# 4f325bda8a8e492d84d8228de55f9117 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:316 -msgid "When you are finished, your map layout should look similiar to this:" -msgstr "" - -# a8b116fcc2934598a47c8ddcd2afb9d0 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:324 -msgid "" -"To save your map composer that you created, you can click on the :" -"menuselection:`Composer ‣ Save Project`. So if you open the project QGIS and " -"want to use the map composer that you saved, click on :menuselection:" -"`Project ‣ Print Composer ‣ My Layout 1`" -msgstr "" - -# d592e8be8d274173867c73da6065a7b3 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:330 -msgid "8. Printing the map" -msgstr "" - -# b014ff3a96274b3c99799cdd913834d6 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:332 -msgid "" -"Lastly, you can print your map. Simply click the :guilabel:`Print` button " -"and follow the dialog." -msgstr "" - -# 26fb7f7d18064983873387895a89e1b1 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:338 -msgid "You may also save the map as PNG image." -msgstr "" - -# ffa2814c597d481894284baa09d72fb9 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:343 -msgid "" -"Additionally you can save the map as a PDF, which you can easily send over " -"email or print later when you have a chance." -msgstr "" - -# eaa2f0f775ed44dcb53b4708aad854fe -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:350 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.po deleted file mode 100644 index bb94dc24..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.po +++ /dev/null @@ -1,561 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 01af7f625b6741ce803e85c3d676da21 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:10 -msgid "Module 12: Understanding |project_name|" -msgstr "" - -# 97c03a66c12443db9d87e60f06d9da35 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# c958ed7d99174d548128a1a53cd0b792 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:14 -msgid "Understand the concept of hazard, exposure and impact data" -msgstr "" - -# a109125ad8b84bacb6bce407ad062ae8 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:15 -msgid "Understand how to determine impact" -msgstr "" - -# 0cc28958ef2e418caf545460e33d18a7 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:16 -msgid "Understand the |project_name| interface" -msgstr "" - -# f0fb5062dceb4bdcadcffe50534fcab5 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:17 -msgid "Add hazard data" -msgstr "" - -# a5038d2da5bd4b40bf5ede53e9cc8f89 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:18 -msgid "Add unprocessed exposure data (vector and raster)" -msgstr "" - -# 5d86c4a550634ad19bda025b4df70b8c -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:19 -msgid "Use the keywords editor" -msgstr "" - -# b1164b92aad340bba063fcdb6d470421 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:20 -msgid "Analyse impact" -msgstr "" - -# a7749434f0294a2ea162d9644894b03a -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:21 -msgid "Improve |project_name| output map" -msgstr "" - -# affafb43ac51465aaf818856ce35e263 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:22 -msgid "Save and print scenario results" -msgstr "" - -# 0ca736038ee6453cad6a0d804c20798b -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:26 -msgid "1. Hazards, exposure and impact" -msgstr "" - -# 3ee19352df4b41b3abe829b05b9d659c -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:28 -msgid "" -"Let’s begin by reviewing the inputs and outputs of |project_name| - " -"**hazard**, **exposure**, and **impact**. These terms are important for you " -"to remember because the analysis process depends on these three things." -msgstr "" - -# d777ecb2f5e841cc9da41e9a351f1c12 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:33 -msgid "" -"**Hazards** (also called disasters) are what we call the data layers that " -"describe the extent and magnitude of natural events (such as earthquakes, " -"tsunamis and volcanic eruptions) that could potentially cause an event or " -"series of events that threaten and disrupt the lives and livelihoods of " -"people." -msgstr "" - -# e5c72125171f4d928a7c784c2b73adeb -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:38 -msgid "" -"In general, the hazard data we use in |project_name| represents a single " -"hazard scenario. A scenario means that the hazard:" -msgstr "" - -# d02dd1588e9b47519a39795ff8edbe22 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:41 -msgid "is at a particular location" -msgstr "" - -# 861f35575b8e44b6a4ccc2d9334716fd -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:42 -msgid "has a measured intensity" -msgstr "" - -# c19c7610fffb4147bab8abdebaf494df -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:43 -msgid "has a measured duration" -msgstr "" - -# 5eaae3a8256c42b8bac33b48a324be2b -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:44 -msgid "has a certain time frame" -msgstr "" - -# 4324d4b7f9db4be5ad89a423c1462ada -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:46 -msgid "" -"In this module we will use a dataset modelled from an earthquake in Lembang." -msgstr "" - -# 401752bd187e4c4aa9596d396694cdbe -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:48 -msgid "" -"The earthquake modelling was done by experts. |project_name| is not a hazard " -"modelling tool." -msgstr "" - -# a2edaa7617404f6f9a47d1d6c9a27bac -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:51 -msgid "" -"**Exposure** data represents things that are at risk when faced with a " -"potential hazard. This can be man-made features such as public buildings, " -"houses, roads and bridges, or it can be so-called natural features, such as " -"population, rice paddies and lakes. These exposed elements can be divided " -"into various categories, including physical elements (houses, power lines), " -"economic elements (agricultural land, access to employment), social elements " -"(vulnerable groups, population count), and environmental elements (air, " -"water, plants and animals)." -msgstr "" - -# b3fbf17984174dd4abe30c2e31aaf372 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:62 -msgid "" -"**Impact** is the result we get after |project_name| processes the effect of " -"the hazard data upon the exposure data. For example, if there is an " -"earthquake model in Lembang, and we process it against building data in " -"Bandung, our impact layer may show those houses that would be severely " -"damaged, those somewhat damaged, and those mildly damaged. In other words, " -"what goes in to |project_name| are hazards and exposure. What comes out is " -"impact." -msgstr "" - -# ae30feb3a3cd4abcbc3f266de640fc73 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:72 -msgid "2. The InaSAFE interface" -msgstr "" - -# 22116ec9b42047a295564acf227d8e32 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:74 -msgid "" -"Before we run any scenarios, let’s take a closer look at the |project_name| " -"interface." -msgstr "" - -# 619f119e0c604d8d8617541318a91fcb -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:77 -msgid "" -"First make sure that you’ve installed the |project_name| plugin. Follow the " -"plugin instructions in :ref:`module 4 `. Find and " -"install the plugin called |project_name|." -msgstr "" - -# 3d8b29d6bdb54380809c5f66c7590935 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:81 -msgid "Open a new project in QGIS." -msgstr "" - -# 150c4fa0156e405f9a1712781cd3c5e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:83 -msgid "" -"If the |project_name| toolbar is not visible, right-click on the toolbars " -"and make sure that :guilabel:`InaSAFE` plugin is checked. The toolbar looks " -"like this:" -msgstr "" - -# 807e188eb6b0476695e1fbd4eb2de91d -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:90 -msgid "" -"To show the |project_name| panel, click on the :guilabel:`Toggle InaSAFE " -"dock` button." -msgstr "" - -# 403f16b66b664ae88cf4182eb8475419 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:96 -msgid "" -"Just like QGIS toolbars, you can drag and drop the |project_name| dock panel " -"to change its position in the QGIS interface. You can pull it away as a " -"separate window, or place it below the Layers panel. It’s convenient in its " -"location on the right side of QGIS, so we will leave it there." -msgstr "" - -# 6d4871866e4346c0a66406643bb2e266 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:106 -msgid "" -"The |project_name| panel consists of three parts: Questions, Results and " -"Buttons. The questions are mixed in with drop-down boxes - this is where we " -"establish our input data and define the scenario that we want |project_name| " -"to process. The purpose of |project_name| is to make your impact analysis " -"very simple and easy to do. The Questions section provides a simple way for " -"you to formulate what you want to know. All questions are created in the " -"following format:" -msgstr "" - -# c6257e6e3b974f92b5c3eebbd136025a -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:116 -msgid "*In the event of [hazard] how many [exposure] might [impact]?*" -msgstr "" - -# ee52d34845114445ad78d5ecf7669de1 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:118 -msgid "" -"For example: \"In the event of an earthquake how many buildings might be " -"destroyed?\"" -msgstr "" - -# 744593f68dd846bab62689fa7c03d450 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:121 -msgid "" -"The Results section is filled in with information after |project_name| is " -"run, as we shall see. The buttons at the bottom allow us to run a scenario, " -"print and access help." -msgstr "" - -# 622915ea8f604cfc8a1534e59ec0d616 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:126 -msgid "3. Adding hazard data" -msgstr "" - -# 8f4e6ef46e964bf39599dd47f4d1b602 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:128 -msgid "" -"**Hazards** can be represented by vector layers or by raster layers. " -"Remember that raster layers are like images with many pixels, and each pixel " -"represents some data about an area on the ground. A raster that shows " -"elevation, for example, will contain pixels with different values based on " -"the altitude of the location. Similarly, a raster that represents an " -"earthquake will contain the magnitude of the earthquake at the time of the " -"event in every pixel in the raster." -msgstr "" - -# 5170aef6f09446caa130c4c9f7d66fd5 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:137 -msgid "" -"An earthquake can also be modelled with vector data, although the detail of " -"the data will most likely be lower. In this case vector polygons represent " -"the area where the earthquake occurred, and various polygons may show areas " -"of differing magnitudes." -msgstr "" - -# febfc9f89b7f43bfbb101fbca585989c -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:143 -msgid "" -"Let’s begin by adding our hazard layer to QGIS. It’s a raster model of an " -"earthquake in Lembang." -msgstr "" - -# a24fd48303524e1b8d5d009d95931b72 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:146 -msgid "Click the :guilabel:`Add Raster Layer` button." -msgstr "" - -# 7d3df4e7a2524cf78ff481c68d1a4f95 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:151 -msgid "" -"Navigate to the :file:`qgis/Bandung/` folder and add :file:" -"`Lembang_Earthquake_Scenario.asc`. This data is raster data (in ASCII " -"format) which represents the magnitude of the earthquake. The layer will " -"look like this:" -msgstr "" - -# 9ffc1352b2764fdaa0e4d49c3c7093e6 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:160 -msgid "" -"Try to change the layer band into Singleband Pseudocolor so that the layer " -"looks like the image below (refer to :ref:`module 8 `, if you forgot how!):" -msgstr "" - -# 4c5921da580e4c13b6e05f8879ab347d -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:167 -msgid "" -"You will notice that the hazard drop-down box has been automatically filled " -"in the |project_name| panel. This is because the data file has already been " -"prepared for us with keyword metadata (fancy words for settings) that tells |" -"project_name| whether it’s a hazard or exposure layer. When we add the " -"exposure data, we will learn how to add these |project_name| keywords " -"ourselves." -msgstr "" - -# 60321721b0124047846bde9f7fb5bf6e -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:176 -msgid "4. Exposure" -msgstr "" - -# bc21617d24aa47a38a29013956f8d739 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:178 -msgid "**Exposure** can also be represented by vectors or rasters." -msgstr "" - -# 3f9ac789032c4679914c3bd8025eed77 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:180 -msgid "" -"Let’s add our exposure data to QGIS - we will be using buildings obtained " -"from OpenStreetMap." -msgstr "" - -# 2b23520fd9604c04bc657ec327212264 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:183 -msgid "Click on the :guilabel:`Add Vector Layer` button." -msgstr "" - -# 1622296439da40fea82bf06669b4393a -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:188 -msgid "" -"Add the file :file:`Bangunan_Bandung.shp`, which is located in the :file:" -"`qgis/Bandung/` folder." -msgstr "" - -# 1269c5faa1d6402a9b45d226c751cb50 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:194 -msgid "" -"Notice that unlike the hazard layer, it does not appear automatically in |" -"project_name|!" -msgstr "" - -# d159b6b201c945598e57b0af6ececb35 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:198 -msgid "5. Adding keyword metadata" -msgstr "" - -# e166bd0e3c8148108230c70ee23f8120 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:200 -msgid "" -"In order for |project_name| to know that our layers are hazard or exposure " -"datasets, we need to assign keywords to the layers using the |project_name| " -"Wizard tool. Let’s take a look at the keywords that have already been " -"created on the hazard layer." -msgstr "" - -# 9f2f20a6899441a9ad7efac4512f6c2b -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:206 -msgid "" -"Select the earthquake layer in the Layers panel, and click on the :guilabel:" -"`InaSAFE Wizard` button." -msgstr "" - -# 0b716f29d20f4f8892fdc41600980a66 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:212 -msgid "" -"In the InaSAFE Wizard window, we can follow the existing instructions step " -"by step and change several keyword fields." -msgstr "" - -# 8096410d34044f6c92b7371788f6773b -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:219 -msgid "Click :guilabel:`OK`." -msgstr "" - -# a7770a3ce97346588aab1c2e660b4a18 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:221 -msgid "Select the :guilabel:`Bangunan_Bandung` layer and open the Wizard." -msgstr "" - -# e27eceddba0e4948913daeda8be780cf -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:226 -msgid "Notice that title and category are set, but not the subcategory." -msgstr "" - -# f74734719b384bbaa1ef9cd3da3796d9 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:228 -msgid "" -"Change the subcategory to :guilabel:`structure`, and click :guilabel:`OK`." -msgstr "" - -# 46be547a1ccf440a94294ddd921d0844 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:230 -msgid "Notice that the layer now appears in the |project_name| panel." -msgstr "" - -# add3967ae0ca46e4924300ad12379a81 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:236 -msgid "6. Impact Analysis" -msgstr "" - -# 74874b4ed09c40c8b93eb98870e3294f -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:238 -msgid "" -"Now our hazard and exposure data are set in the |project_name| panel, " -"because the appropriate keywords have been added to our layers. Note that if " -"we were to add a second exposure layer to our project, we would be able to " -"choose which exposure layer we wanted from the |project_name| drop-down " -"menu. The same applies to hazard layers." -msgstr "" - -# c33794cc51764336bdf5253eaef9e118 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:245 -msgid "" -"The third drop-down box is the impact function (“Might”). This concludes our " -"question, and defines the function that |project_name| will run behind the " -"scenes. |project_name| developers have written many of these functions to " -"analyse all sorts of hazard and exposure layers. The function that is " -"selected for us here will process the hazard and exposure layers spatially " -"to determine how the exposure layer will “be affected.”" -msgstr "" - -# 199291fa1bd7479b856a5f6fd097eed6 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:254 -msgid "" -"Click the :guilabel:`Run` button at the bottom to start the impact analysis. " -"At the end of the process, the statistics will be displayed in the Results " -"section, and a new layer will be added to the Layers panel that describes " -"the result of the analysis. The map will distinguish between buildings that " -"are affected and those that are not." -msgstr "" - -# 0e8242143edf44f191821711d1c7f5ae -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:265 -msgid "7. Improve the InaSAFE output map" -msgstr "" - -# d609bba3dc364aaaaaf98075e7da3b68 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:267 -msgid "" -"We can improve our impact map by editing the symbology in QGIS. Styles can " -"be changed, other relevant layers can be added, and the layout can be " -"changed using the Print Composer." -msgstr "" - -# 9caaba140aa24dc6bc10e57427a772f6 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:271 -msgid "Let’s add Bing aerial imagery as a background for our map." -msgstr "" - -# 661e978a9bc044a798abd75b2d085f59 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:273 -msgid "" -"Go to :menuselection:`Web ‣ OpenLayers plugin ‣ Bing Maps ‣ Bing Aerial`." -msgstr "" - -# f354317adb5c4cf9a50bdb787f545f55 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:275 -msgid "" -"Drag the layer below your new impact layer. If the buildings don’t show " -"correctly above the imagery, right-click on the layer and click :guilabel:" -"`Update drawing order`." -msgstr "" - -# c9eb9b52a8394c129123f3a29e379063 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:284 -msgid "8. Using the print button" -msgstr "" - -# 481befad3c59443fa2ecb00d0a06db73 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:286 -msgid "" -"The data displayed on the screen can be saved to a PDF file by clicking :" -"guilabel:`Print` at the bottom of the |project_name| panel." -msgstr "" - -# c9dbd968a3604b9da10239c46a5cde7a -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:289 -msgid "" -"Click on the |project_name| result layer and then click :guilabel:`Print`." -msgstr "" - -# e8656c67feae4d17bb839c46ac0a1fb8 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:291 -msgid "" -"A window will appear, in which you can choose the extent to be printed. " -"Choose :guilabel:`Analysis extent` if you want to print the entire map " -"extent, or choose :guilabel:`Current extent` to print the analysis based on " -"the current view of the map." -msgstr "" - -# 00c5b43ab9d34b23b96e1123780697a7 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:296 -msgid "" -"You may also choose a custom print template :guilabel:`inasafe-potrait-a4`." -msgstr "" - -# d9d7b48d260a4ffa9639f2c53ceeaaf7 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:302 -msgid "" -"If you want to add additional information before printing, click :guilabel:" -"`Open Composer`." -msgstr "" - -# bee16ec37f4f40a0a4218fbe994afd30 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:305 -msgid "To save it in PDF format for printing, click :guilabel:`Open PDF`." -msgstr "" - -# 722f2bdbe6cc496db1dd0884605fa4f2 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:307 -msgid "Choose your save location and click :guilabel:`Save`." -msgstr "" - -# eb2da91862564ef8b6ca97b8f5829e56 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:319 -msgid "9. Save your results" -msgstr "" - -# 36166430040f4792b13eba2f319ff603 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:321 -msgid "" -"You can save the impact layer that |project_name| created, and you can save " -"the QGIS project to come back to it later, but note that the |project_name| " -"statistics cannot be saved (except when you save them in a PDF). To get the " -"statistics again in QGIS, you will need to run the analysis again." -msgstr "" - -# 34c48f352a1a4341a2e1b3cdf4fa585c -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:327 -msgid "" -"To save the newly generated layer, right-click on it in the Layers panel. " -"Click :guilabel:`Save As...`" -msgstr "" - -# 68378805ff3444c781d568572d8de606 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:330 -msgid "Select a name and location for the file. Click :guilabel:`OK`." -msgstr "" - -# 9933c40b95274f1b959311bf8a644899 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:332 -msgid "" -"To save the project, click on the :guilabel:`Save Project` button at the top " -"of QGIS." -msgstr "" - -# ddeca0cddfec47368a6f354a33c95eeb -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:338 -msgid "" -"Give a name to the project and put it in the directory where you want to " -"save your work. Then click :guilabel:`Save`." -msgstr "" - -# 013950d872a04cdaae8581fff91155bf -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:346 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/213-getting-support.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/213-getting-support.po deleted file mode 100644 index 4e5e684a..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/213-getting-support.po +++ /dev/null @@ -1,89 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# a031ec24e7e44a528978906697d8dbf4 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:10 -msgid "Module 13: Getting Support" -msgstr "" - -# 23ad8abe10464819bd934372055ec6c3 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 0937bfdddaea49baa669f6b20facb0cf -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:14 -msgid "Use social media to connect with |project_name| community" -msgstr "" - -# 94b66f959a0e4eac855f8c3dda0ce7ff -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:15 -msgid "Access QGIS tutorial website" -msgstr "" - -# f49cc3c43efd418f8d3fe6d4c3a863c4 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:19 -msgid "1. Facebook" -msgstr "" - -# 7e3a9218e7e74f08a91906fb17c1ed17 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:21 -msgid "" -"With the development of social media today, it is great that QGIS and |" -"project_name| users can exchange ideas online. One common platform that can " -"be used is Facebook." -msgstr "" - -# 5995fc1df56f469688385bb7283fe0c3 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:25 -msgid "" -"In Indonesia, you can join the community of QGIS users on Facebook in the " -"group **Forum Pengguna QGIS dan InaSAFE Indonesia** to discuss the " -"experiences or difficulties you have using QGIS and |project_name|." -msgstr "" - -# b46d0fe809324c36967c3dcf40a99b0f -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:30 -msgid "https://www.facebook.com/groups/forumQGISindo/" -msgstr "" - -# b48863dc86584672909d6e881a271646 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:36 -msgid "2. QGIS Tutorials" -msgstr "" - -# 723733efd3894df1bdcebd54a169620b -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:38 -msgid "" -"You can also obtain a variety of tutorials and the latest information about " -"QGIS on the web `here `_." -msgstr "" - -# 4e1799929fd8428b86494f6225389a52 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:41 -msgid "" -"On this page you will also find contact information for the QGIS Indonesia " -"forum, if you need assistance at any time regarding the use of QGIS or |" -"project_name|." -msgstr "" - -# bec166ee5f444497907137a1355a0667 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:45 -msgid "Please stop by any time!" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/index.po b/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/index.po deleted file mode 100644 index 79580e51..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/index.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 0d5fb79c1d7b4405a021c510bb33283d -#: ../../source/training/old-training/beginner/qgis-inasafe/index.rst:8 -msgid "Unit 2: Data Analysis Using QGIS and |project_name| Beginner Level" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/index.po b/docs/i18n/en/LC_MESSAGES/training/old-training/index.po deleted file mode 100644 index 0a5496ce..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/index.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# d32dd6c9f1f148b5b95cf42559e49d09 -#: ../../source/training/old-training/index.rst:8 -msgid "OSM & QGIS (Old Training Materials)" -msgstr "" - -# 340ced16f49040bca7a66ff295367cec -#: ../../source/training/old-training/index.rst:10 -msgid "" -"This section of the old documentation contains step-by-step tutorials on " -"using OpenStreetMap and |project_name| with QGIS (using QGIS 2.8 and InaSAFE " -"3.1)." -msgstr "" - -# a48aba31a5014c3bbd14f332305f59ea -#: ../../source/training/old-training/index.rst:13 -msgid "Training" -msgstr "" - -# 7e973841a1f4490f922ac1d680c0ee5b -#: ../../source/training/old-training/index.rst:13 -msgid "Intended Length" -msgstr "" - -# db314466e0e34c47b6641ef1e0bf6bc7 -#: ../../source/training/old-training/index.rst:15 -msgid "Beginner" -msgstr "" - -# 4a57bed1838f44cf8070c6a79b87e94b -#: ../../source/training/old-training/index.rst:15 -msgid "10 Days" -msgstr "" - -# d0e1083160004b668db10ecad83fb40d -#: ../../source/training/old-training/index.rst:17 -msgid "Intermediate" -msgstr "" - -# 7f2f40c2b74b4b0992b241902493ddc6 -#: ../../source/training/old-training/index.rst:17 -msgid "6 Days" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/index.po b/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/index.po deleted file mode 100644 index df3bde08..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/index.po +++ /dev/null @@ -1,41 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 60890807471841eeb0f085b0ceb199b2 -#: ../../source/training/old-training/intermediate/index.rst:8 -msgid "Intermediate Training Module" -msgstr "" - -# c32ac071262b41049125e8e7cecbaa39 -#: ../../source/training/old-training/intermediate/index.rst:10 -msgid "" -"The intermediate training module has been designed by Badan Nasional " -"Penanggulangan Bencana (BNPB), Humanitarian OpenStreetMap Team (HOT) and " -"Australia-Indonesia Facility for Disaster Reduction (AIFDR) to provide hands-" -"on experience with |project_name| for data collection and data analysis for " -"contingency planning. The course is scheduled to run for six days." -msgstr "" - -# b81a2a86cf2d47079bc7fe3ee38b5810 -#: ../../source/training/old-training/intermediate/index.rst:16 -msgid "" -"The data used in this course is available for download on `data.inasafe.org " -"`_. Ask your trainer which data you will need to " -"download for the course if they do not provide it to you directly." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/300-introduction.po b/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/300-introduction.po deleted file mode 100644 index a9ef35e6..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/300-introduction.po +++ /dev/null @@ -1,226 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# c8530ff82744479d8ca30d70f932b191 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:10 -msgid "Introduction" -msgstr "" - -# 447504542121429b87c9ba69068a3564 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:13 -msgid "Disclaimer" -msgstr "" - -# ab3bce58381342bb9e9d324425526d40 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:15 -msgid "" -"This document is initial draft and still in reviewing phase by these parties:" -msgstr "" - -# fe3c705760844b58a6d4cd18db15be0c -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:17 -msgid "Badan Nasional Penanggulangan Bencana (|BNPB|)" -msgstr "" - -# d5105695352c47d8abccdee780c9e79d -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:18 -msgid "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" -msgstr "" - -# b5f6a205e3fb4b579582c0c690e6384e -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:19 -msgid "Humanitarian OpenStreetMap Team (|HOT|)" -msgstr "" - -# e7256cd89c524167ab115d80fd3f803a -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:21 -msgid "" -"All contents and materials on this document may be changed without public " -"notice." -msgstr "" - -# b1648a8fc0ae4487be03af580cbac0fb -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:25 -msgid "Licence" -msgstr "" - -# dbf3153cafc5477d86ef0e72a3a58a1c -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:29 -msgid "" -"All contents and materials in this document are licensed as Creative Commons " -"Attribution Australia (CCbyA)." -msgstr "" - -# d64855afbf2043ccafbf5213eba87fc3 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:32 -msgid "You are free:" -msgstr "" - -# b7201d2874b44b34a36103c4ab016d4c -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:34 -msgid "to copy, distribute, display, and perform the work" -msgstr "" - -# 1f3f5cfcf9b84086b5bbfa3318a03a94 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:35 -msgid "to make derivative works" -msgstr "" - -# 16ec24bb2b214e208d17b2aca5f0f609 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:36 -msgid "to make commercial use of the work" -msgstr "" - -# cdb2a8a6e8ca4fa0b8a1eaf6c2854145 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:38 -msgid "You must give the original author credit." -msgstr "" - -# 2aa63ba12b3744e18855e6669e0ddaa4 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:40 -msgid "" -"More information about CCbyA License: http://creativecommons.org/licenses/" -"by/3.0/au/deed.en_GB" -msgstr "" - -# 792de441d3a34da08e392bd01c6e328c -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:44 -msgid "About Us" -msgstr "" - -# b7d9e0fbbd0642cdaf57fcbe1730aa94 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:46 -msgid "Badan Nasional Penanggulangan Bencana (BNPB)" -msgstr "" - -# 1661c90aaf0c460da28aeb56b92ffd5b -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:50 -msgid "" -"BNPB is Indonesia’s National Disaster Management Agency. |BNPB| is a non-" -"departmental ministerial-level government agency, tasked with providing " -"guidance and direction to the efforts of disaster management that includes " -"disaster prevention, emergency response, rehabilitation and reconstruction " -"in a fair and equal way. |BNPB| functions as a policy maker regarding " -"refugee/IDP management for effective and efficient response. It coordinates " -"the implementation of disaster management activities in a planned, " -"integrated and comprehensive way." -msgstr "" - -# 574b86e7d76e465297080d5be85d3860 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:60 -msgid "http://bnpb.go.id" -msgstr "" - -# b48a218a46ea4682bab3e2809e44bcf7 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:63 -msgid "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" -msgstr "" - -# e0375fd5be164be6b2af18599f266e0d -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:67 -msgid "" -"The Australia-Indonesia Facility for Disaster Reduction (|AIFDR|) is a joint " -"initiative between the governments of Australia and Indonesia. They work to " -"strengthen Indonesia's ability to reduce the impact of disasters. The " -"Australian and Indonesian governments at a special ceremony on 15 July 2010 " -"launched the Australia-Indonesia facility. The launch marks an important " -"event in the strong relationship now shared by both countries and their " -"united commitment to better prepare for and respond to natural disasters in " -"Indonesia." -msgstr "" - -# 9e06abfe37e44b7097ab0ba64653375c -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:76 -msgid "http://aifdr.org" -msgstr "" - -# f5021c6c9271467d9985df436b9b2923 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:79 -msgid "Humanitarian OpenStreetMap Team (HOT)" -msgstr "" - -# 37faed31349b405fba14f877086c3eba -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:83 -msgid "" -"Free, collaborative maps are uniquely valuable to humanitarian work, " -"especially in places where base map data is often scarce, out-of-date, or " -"rapidly changing. OpenStreetMap is a web project to create a free and open " -"map of the entire world, built entirely by volunteers surveying with GPS, " -"digitising aerial imagery, and collecting and liberating existing public " -"sources of geographic data. The Humanitarian OpenStreetMap Team (|HOT|) is " -"an initiative to apply the principles and activities of open source and open " -"data sharing towards humanitarian response and economic development." -msgstr "" - -# af8809f35a644ccfa6e305b1017a45ba -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:92 -msgid "http://hot.openstreetmap.org" -msgstr "" - -# 1cb21a6d29c747e3b9526a3caefcdd1a -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:95 -msgid "Universitas Gadjah Mada" -msgstr "" - -# 1fe03e48d7534207aa101dbda7b8ea14 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:99 -msgid "" -"Universitas Gadjah Mada (internationally known as Gadjah Mada University, or " -"UGM) is a top research university located in Yogyakarta, Indonesia. The " -"Department of Geodetic Engineering and Faculty of Engineering focuses on " -"education, research, and commmunity services related to geodesy and " -"geomatics engineering, including acquisition, analysis, and uses of detailed " -"and accurate geospatial data and large-scale maps using open source " -"geospatial software for disaster management." -msgstr "" - -# 1956489ff930465993fc11a3c253cc4e -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:107 -msgid "http://ugm.ac.id" -msgstr "" - -# 814ff5f856cb4df0bdb0a1e1c9036a49 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:111 -msgid "Preface" -msgstr "" - -# d3827927ba0246e69988ba3c273418a5 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:112 -msgid "" -"Every day thousands of people contribute to OSM, a project with the lofty " -"goal of mapping the world. Most OSM software is free and open source, and " -"the data is open for anyone to use. The idea is simple: if you make a map of " -"your town and we make a map of ours, we can share those maps on a common " -"platform. With enough people contributing, we can collect data throughout " -"the world." -msgstr "" - -# 1703d2b2559440bcb0d797687f0d473a -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:119 -msgid "" -"Collecting Spatial Data using OSM Intermediate Level is a step-by-step " -"course designed to help those who wish to carry on from the beginner " -"tutorial and explore OSM in more detail. We recommend reviewing Collecting " -"Spatial Data using OSM Beginner Level prior to this unit." -msgstr "" - -# 50822312fe92471588c187b69734a86d -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:125 -msgid ":ref:`Go to first module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/301-advanced-editing.po b/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/301-advanced-editing.po deleted file mode 100644 index 965c8c6d..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/301-advanced-editing.po +++ /dev/null @@ -1,597 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 00b0abbafbb84270954eb2e7ec1ca599 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:10 -msgid "Module 1: Advanced Editing" -msgstr "" - -# 91190d5dea424976b38fcf1df8130387 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# cd756b85bb774777b88804462ba73ab4 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:14 -msgid "Use advanced editing tools in JOSM" -msgstr "" - -# 9ef3dc76f9bf45e2bd0316bb9cabe223 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:15 -msgid "Make relations among objects" -msgstr "" - -# 1f36555ec81e4e7d9e17d116918aa749 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:17 -msgid "" -"Welcome to the intermediate guide for spatial data collection with " -"OpenStreetMap. In the previous unit you learned how to draw points, lines " -"and shapes in JOSM, how to open your GPS waypoints and tracks in JOSM and " -"how to download, edit and upload your changes on OSM. In this module, we " -"will describe relations, JOSM editing tools and editing techniques in " -"greater detail." -msgstr "" - -# 338f84204e994fc2a178aa79f8e8f2e6 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:24 -msgid "" -"While this module is not extremely advanced, it is a step higher than the " -"previous unit. If you don’t feel like you fully understand the lessons " -"leading up to this, you may wish to practise a little bit more before " -"continuing." -msgstr "" - -# fb5118148ffe44659a9e9576db3f5ca3 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:31 -msgid "1. Advanced editing tools" -msgstr "" - -# 11fad8b422d34f7f90ebab3ba2530167 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:33 -msgid "" -"There are a few ways you can access more editing tools in JOSM. We will look " -"more at the default tools, as well as additional tools available through " -"plugins." -msgstr "" - -# e5370ac5af6f49e98655ad4c10297cc7 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:38 -msgid "1.1 Default drawing tools" -msgstr "" - -# d06de6bd9ad842b686bdc50df152a4d2 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:40 -msgid "" -"JOSM has some additional tools to make it easier to draw lines and shapes. " -"These tools are found in the :menuselection:`Tools` menu at the top of JOSM." -msgstr "" - -# 4421659a78e14435a60e06a2b3546894 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:46 -msgid "" -"In order to apply the functions in this menu, you must first select a point, " -"line or shape in the map window. Some of the most useful functions are " -"described here:" -msgstr "" - -# f8ef42066e454713a527266b01db2fec -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:51 -msgid "Split Way" -msgstr "" - -# 5fb8d37e05fc49f29d88f1ff3c41790f -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:52 -msgid "" -"This allows you to divide a line into two separate lines. This is useful if " -"you want to add different attributes to different parts of a road, such as a " -"bridge. To use this function, select a point in the middle of the line that " -"you want to split, go to :menuselection:`Tools ‣ Split Way` and your line " -"should be split in two." -msgstr "" - -# 80514dd1e2e5475399572a81d4141100 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:62 -msgid "Combine Way" -msgstr "" - -# 38cc9e06123d4ce4a52613b565c105a3 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:63 -msgid "" -"This does the opposite of :guilabel:`Split Way`. To combine two lines into a " -"single line, they must share a single point. To use this function, select " -"both lines that you want to combine. You can select more than one object by " -"holding the :kbd:`SHIFT` key on your keyboard and clicking on each line. " -"When you have selected both lines, go to :menuselection:`Tools ‣ Combine " -"Way`." -msgstr "" - -# dd608ae04fe24a80b32b98dc0b4590f9 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:73 -msgid "" -"Note that you if are combining roads that have different directions, you " -"might get this warning:" -msgstr "" - -# b7922972b69d4f409f6a3f365aea97b4 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:79 -msgid "" -"If the roads are connected and go in the same direction, click :guilabel:" -"`Reverse and Combine`." -msgstr "" - -# b6e8f61500fc48fb84817244c233ceda -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:83 -msgid "Reverse Way" -msgstr "" - -# 0df8719ee7b84700a98e557dba4978f7 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:84 -msgid "" -"This will change the direction of the line. If the line incorrectly " -"represents a road or river that is one-way, you may want to change its " -"direction. Unless someone has intentionally created a way to be one way you " -"do not usually have to worry about altering the direction because ways in " -"OSM default to represent both directions." -msgstr "" - -# 7668f00c359a422a8dcbd729b62e2d89 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:94 -msgid "Simplify Way" -msgstr "" - -# be876ce29fb6482e916d6f13afcb2493 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:95 -msgid "" -"If your line has too many nodes in it and you’d like to make it simpler, " -"this will remove some of the points from a line." -msgstr "" - -# 10cca37263004235a6db0dea5feedcf4 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:102 -msgid "Create Circle OR Align Nodes in Circle" -msgstr "" - -# 185336140346447aaced40cac36fbea6 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:103 -msgid "" -"If you are trying to make a circular shape, draw the circle as best you can " -"and then select three nodes and the function. It will help arrange your " -"points in a circle." -msgstr "" - -# d03dd8ccbcd4465a90dc563387cf0f2a -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:111 -msgid "Align Nodes in Line" -msgstr "" - -# 7d273ead1e0144e9a2bc6cb947a75fb5 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:112 -msgid "" -"This function will align a series of points into a straight line. With long " -"lines it is best to select sections of the line to straighten. Be careful as " -"this does have the tendency to shift the line a little." -msgstr "" - -# 4a1a217e99a54136925afe722302cddc -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:121 -msgid "Orthogonalize Shape" -msgstr "" - -# 9a0fdc9742a0445ab690aac632d2d0ee -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:122 -msgid "" -"This function is very useful for drawing regular shapes such as buildings. " -"After you draw an area, this function will reshape it to have square " -"corners. This feature is most useful for other regularly shaped features, " -"such as tennis courts or landuse areas (Using the Building Plugin, which is " -"explained below, might be easier for buildings)." -msgstr "" - -# e6709b176d094decb7bd49b139e5506d -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:133 -msgid "Unglue Ways" -msgstr "" - -# 194bc88bdf034c93bdfb87b431d65dc6 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:134 -msgid "This tool allows you to detach nodes that are connected." -msgstr "" - -# ab7fc9fa9b084fbcb7a93345bd819800 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:139 -msgid "" -"The line and node will not actually appear separate as the last screenshot " -"implies." -msgstr "" - -# 5af6f1b0ab434000b4c2a4be53b26874 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:143 -msgid "1.2 Plugins" -msgstr "" - -# fb6a4fce9e0647ed88548f8913bb55d4 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:146 -msgid "Building Plugin" -msgstr "" - -# 31b716e1f90244d08143cbdbfe95901e -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:150 -msgid "" -"This plugin is by far one of the most useful tools for editing (digitising). " -"Install it as with any other plugin. It will appear as an icon on the left " -"hand toolbar. The functionality of this tool is explained here:" -msgstr "" - -# c6dd3ae02a794c11be342e4cb82d096e -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:154 -msgid "" -"The Building tool allows you to create shapes with 90 degree corners with " -"just three clicks. First, trace the edge of the building and then drag out " -"the line to make it a polygon." -msgstr "" - -# e2e890a7ef9f4825a2ac67b589ced271 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:164 -msgid "" -"You can also create more complicated buildings by using the merge option. " -"Create your building outline, select all of the polygons (press :kbd:`SHIFT` " -"to highlight them all) and then press :kbd:`SHIFT + J` to merge the objects." -msgstr "" - -# 308d219b3bc74a08844c3ad936a9995c -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:171 -msgid "" -"Furthermore, you can also change the default settings (size of building and " -"default tags) by going to :menuselection:`Data ‣ Set building size`." -msgstr "" - -# df9c57b5c8fc4b08b6fd00bee8935ca6 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:177 -msgid "" -"This is useful if you are drawing many buildings of a known dimension (such " -"as five by six metres). If you are mapping infrastructure which requires " -"tags other than **building=yes**, you can set the desired default tags by " -"going to :guilabel:`Advanced...`." -msgstr "" - -# bfbea6b57797449795fbcb82ad8cdecc -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:187 -msgid "Utilsplugin2 (More Tools)" -msgstr "" - -# a4177d1286ad445dae9df21e33c5ec13 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:189 -msgid "" -"The plugin utilsplugin2 has several features that are also useful for " -"editing." -msgstr "" - -# 8351cdad189b444daa66d5a8465d1645 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:194 -msgid "" -"After you install this plugin, a new menu will appear called :menuselection:" -"`More Tools`." -msgstr "" - -# a7f059f3c9154ae7ae11976e8de86ea6 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:200 -msgid "The following tools are some of the most useful:" -msgstr "" - -# dea3a4076f36451f9596f4bf06284129 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:203 -msgid "Add Nodes at Intersections" -msgstr "" - -# 3d32a1977c9d48e6a2c41a224adf8136 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:204 -msgid "" -"This tool is helpful for adding missing nodes in intersections of selected " -"ways. It is good practice that roads and rivers should always have common " -"nodes where they intersect." -msgstr "" - -# 31bfed3e07e74fb8881dddf69a58034b -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:212 -msgid "Copy Tags from Previous Selection" -msgstr "" - -# b1f4c7986a6d49189e823c5be4f7227a -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:213 -msgid "" -"This function makes copying tags easier. If you want to create many objects " -"with the same tags, first draw the objects. Then add the tags to one object. " -"Click on another object and press :kbd:`Shift + R` to copy the tags from the " -"previously selected object. You can do this for all objects that you want to " -"tag. Remember that the tags will be copied from the previously selected " -"object, so if you click on an untagged object and then another untagged " -"object, you will not be able to copy any tags." -msgstr "" - -# 6ac31fea88a9488190bd386a997b2323 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:226 -msgid "Add Source Tag" -msgstr "" - -# 8e44f26eebd542a1a45b37d09f8fc5b5 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:227 -msgid "" -"This tool simplifies adding a source tag. It remembers the source that was " -"specified last and adds it as remembered source tag to your objects. You can " -"insert the source with just one click." -msgstr "" - -# 298c6a636110441688a8275fac489d08 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:232 -msgid "Replace Geometry" -msgstr "" - -# 42fcfac451b74d2f831b314aaa263871 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:233 -msgid "" -"This tool is great if you want to redraw a poorly shaped object, but want to " -"keep the history, attributes and ID number of that object. For example, if " -"you come across a building that is complicated and drawn in a poor fashion, " -"then instead of painfully changing each node, you can (2) just draw the " -"object again (3) select the old and new object (4) press :guilabel:`Replace " -"Geometry` to transfer all the information over." -msgstr "" - -# c0734cd19b054ae4b946a9047a4a3359 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:244 -msgid "" -"Utilsplugin2 also provides a new selection menu that provides more tools:" -msgstr "" - -# ed930c70cd434d0e914b6bb4104ebf8a -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:249 -msgid "These tools are some of the most useful:" -msgstr "" - -# d76a98049b68447ebe1a56eaa6749fc4 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:252 -msgid "Unselect Nodes" -msgstr "" - -# b3bf3971f9904132a10e9f8a6b34bcf2 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:253 -msgid "" -"This tool allows you to deselect nodes, which makes it useful for tagging " -"the objects selected. This tool is necessary if you have mapped several " -"polygon objects with similar attributes and would like to tag the objects " -"without tagging the nodes. To do so, select all of the objects - polygons, " -"ways and relations. Then unselect the nodes and tag appropriately." -msgstr "" - -# 4401e9be91e340388582f4ff840bf6d5 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:263 -msgid "Select Last Modified Nodes" -msgstr "" - -# e5fcd4ed66ef40f8820f4d87d56be432 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:264 -msgid "" -"This tool permits you to go back to the nodes that you most recently changed." -msgstr "" - -# 2afb87db485343dc8997762dc9c5f531 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:268 -msgid "2. Relations" -msgstr "" - -# 8482b590623547b2ae7602b43a680a74 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:270 -msgid "" -"In the first unit we learned that there are three types of objects that can " -"be drawn in OSM - points (nodes), lines (ways) and polygons. Lines contain " -"numerous points, and the line itself carries the attributes that define what " -"it represents. Polygons are the same as lines, except that the the line must " -"finish where it begins in order to form a shape." -msgstr "" - -# 07ef32832ee548dcba34811517ce7faf -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:276 -msgid "" -"In fact, there is one other type of object in OSM, and these are called " -"relations. In the same way that a line consists of other points, a relation " -"contains a group of other objects, be they points, lines or polygons. If you " -"are looking to obtain advanced editing skills, then understanding and " -"knowing how to properly edit relations is important." -msgstr "" - -# cec7e2f1f1914e2e974b3555bd028e04 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:282 -msgid "" -"For example, imagine that you want to map a building that has courtyards in " -"the centre. You would need to draw a polygon around the outside of the " -"building, and you would need other polygons around the courtyards to " -"indicate that they are not part of the building. This is an example of a " -"relation. The relation would contain several polygons - and the attributes " -"of the building would be attached to the relation, not the polygons." -msgstr "" - -# a95470c5123c4316a7caf101fcc15a20 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:292 -msgid "" -"Relations are used to represent anything that requires a collection of " -"objects to define. Other examples are bus routes (a collections of lines), " -"long and complex objects (rivers or roads), or multiple polygons that are " -"all part of one location (like buildings in a university)." -msgstr "" - -# c78c4d295d9246f499c506462cc8f621 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:297 -msgid "" -"There are mainly four types of relations you will encounter in OSM: " -"**Multipolygons, Routes, Boundaries and Restrictions**. In this section we " -"will go over Multipolygons and Routes." -msgstr "" - -# b599b4f5d70b432c9efecc198705372a -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:302 -msgid "2.1 Editing relations" -msgstr "" - -# 2e473b24660c4f80b431856b93becc90 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:304 -msgid "" -"The multipolygon above contains a polygon for the outer limits of the " -"building and two more to mark the inner courtyards. To create a relation " -"from these three polygons we need to:" -msgstr "" - -# 5648217a26fb48a4bbb07372cd9266d8 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:308 -msgid "Select all of the polygons." -msgstr "" - -# 8a46743fe2b64cb3a1d15e830b18936b -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:310 -msgid "Go to :menuselection:`Tools ‣ Create multipolygon`" -msgstr "" - -# 3f9608b651624f13bb9b6b1346dadf54 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:315 -msgid "The polygons should automatically be created as a multi-polygon." -msgstr "" - -# 3365acb4849b4f7182bac603c125aacf -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:320 -msgid "Click the :guilabel:`Edit` button in the :guilabel:`Tags` tab." -msgstr "" - -# d1026497d1f34acd8805bbe12fd5f121 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:322 -msgid "" -"This opens the relation editor. Notice that in the lower-left corner is a " -"list of the members of the relation. One has been automatically defined with " -"the role of \"outer\" (the outer polygon), and the other carries the role of " -"\"inner.\"" -msgstr "" - -# c5fbc2b9f89d47feb8c836e1247b130b -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:326 -msgid "" -"At the top are a list of the tags applied to this relation. Right now only " -"one tag exists, **type=multipolygon**. This tag indicates what type of " -"relation the object is." -msgstr "" - -# bb971a503ce543988b3244e4f5e95c4b -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:330 -msgid "Click beneath it and add one more tag: **building=yes**." -msgstr "" - -# 60ad4b1466a74509bcdcf972e75796b8 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:335 -msgid "" -"Click :guilabel:`OK`. The object will change colours and will now appear as " -"a building, but with a courtyard." -msgstr "" - -# 66baf6345e6d486ab09a3ac991e8dd04 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:338 -msgid "" -"The data behind the relation in our example is visible on OSM: You can see " -"this multipolygon on OSM by going to http://www.openstreetmap.org/browse/" -"relation/2435797. It will appear on OSM like this:" -msgstr "" - -# 4801a6d8495349e38917c9768fc32740 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:347 -msgid "2.2 Another multipolygon" -msgstr "" - -# 92845e3da7c54342b1665ed73ee6e584 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:349 -msgid "" -"The river below is another example of a multipolygon. Effectively it is the " -"same as the building example, but with a greater number of members and " -"covering a much larger area. It can be viewed on OSM here: http://www." -"openstreetmap.org/browse/relation/1046961." -msgstr "" - -# fa35d81774454b1dae1462897b8a71f2 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:361 -msgid "This river contains ten ways that are connected like a long polygon." -msgstr "" - -# 193fccb2c3184bd1b450323be80946ab -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:364 -msgid "2.3 Linestring relations" -msgstr "" - -# d2107911cbde4bfb9883f56ad38628eb -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:366 -msgid "" -"Relations are also very useful for creating, labeling and editing large " -"linestrings; for example, bus routes, hiking trails, bicycle paths, etc. " -"These differ from multipolygons because they are relations with members, as " -"supposed to complex areas. A linestring could simply be one line with " -"multiple members. Additional features, such as bus stops represented by " -"separate nodes can also be tagged as relation members." -msgstr "" - -# 05651650c3684f36a69f20579ce1ccee -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:378 -msgid "To create a linestring relation:" -msgstr "" - -# ed3a68e40d4a45e1a988595d1256a56c -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:380 -msgid "" -"Make sure that all of the ways in which the route runs along are " -"appropriately tagged. For example, **highway=footway**." -msgstr "" - -# 82e7808037b547cf9c1c6ba2f9d387d4 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:383 -msgid "" -"Select all of the highways or ways that are part of the bus route. If you " -"would only like to select certain parts of a way, then you must divide the " -"way into sections. This creates more work, but you can easily do it with " -"the :guilabel:`Split Way` tool." -msgstr "" - -# c442132aa2484c48a5c9e1d22b450b66 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:389 -msgid "" -"Go to :menuselection:`Presets ‣ Transport Public Transport ‣ Route master`." -msgstr "" - -# b83e9aeab86547cf84114b68b7eb7e8e -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:394 -msgid "" -"Fill in the information about the bus route and click :guilabel:`New " -"relation`." -msgstr "" - -# bd9191f4560a417e886c723da9bb7804 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:400 -msgid "" -"Relations are difficult to understand and do not have to be used often, but " -"they are necessary to know about. As you get more developed with your OSM " -"skills and want to create more complex buildings, rivers and routes, " -"relations will be useful." -msgstr "" - -# ef7b701e2efe48f2bc54ae3d5b8b1b63 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:406 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/302-quality-assurance.po b/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/302-quality-assurance.po deleted file mode 100644 index f12f1f64..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/302-quality-assurance.po +++ /dev/null @@ -1,633 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# a7511c06d52646df9c0d9641a19cc927 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:10 -msgid "Module 2: Quality Assurance" -msgstr "" - -# f6803454f69f4106a37b5d02a51424c9 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 3d9c390988694ee58317ed926f5d8716 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:14 -msgid "Use validation tools in JOSM" -msgstr "" - -# 7c7ae34fda4948da9e1fb411e7d2dd77 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:15 -msgid "Use online validation tools" -msgstr "" - -# 712ac291fd7c4e7f8e8c55f363dd5cea -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:17 -msgid "" -"Contributing to OpenStreetMap is easy to learn, but difficult to master. " -"Everybody makes mistakes, but the system works because even when one person " -"does something the “wrong” way, there are always other mappers ready to help " -"and fix errors. As you map more and more it will continue to get easier, and " -"you will learn the “proper” way to do things. In this module we will take a " -"look at the JOSM validation tool, which is an automated tool to search for " -"errors and warnings in your data. We will also take a look at one of the " -"online validation tools, which can aid us further in identifying mistakes on " -"OSM." -msgstr "" - -# 87370b2f5ecb478cbc577025bb22db19 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:29 -msgid "1. Errors and warnings" -msgstr "" - -# 9fcfca67e974465aa942f017231dd511 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:31 -msgid "" -"Sometimes when you go to upload your edits in JOSM you get a pop-up window " -"like this:" -msgstr "" - -# 9369686abca54d7ab8bb02dfec1e225f -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:37 -msgid "" -"This is JOSM’s way of telling you that there is suspicious data and that you " -"might want to review the errors and warnings before uploading to OSM." -msgstr "" - -# dbed1c0b98bb4304b337c3a195ec6ddd -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:40 -msgid "" -"JOSM comes with a tool that does an automated analysis of possible mistakes. " -"This is useful for finding errors that you may have overlooked. When you run " -"the validation tool, it returns two lists of problems:" -msgstr "" - -# fb7c0c19035a4d0f926877078f21a8d4 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:44 -msgid "" -"**Errors:** These are important to fix, and therefore usually you should not " -"ignore these. Examples of errors include duplicated objects or overlapping " -"lines and polygons." -msgstr "" - -# efbda5e64ac04a92957aca6d742f816a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:48 -msgid "" -"**Warnings:** These are problems that are important to fix, but in some " -"cases, they are tolerable." -msgstr "" - -# bafe24f545f44d688338a5b41f665e31 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:51 -msgid "" -"One thing to note is that if you download a large area of the map and run " -"the validation tool, you may get a very long list of errors and warnings. " -"This is because the validation tool works on the whole map, not only the " -"changes that you have made. You may see mistakes that other mappers have " -"made, and you can fix them, or ignore them. The validation tool gives you " -"the opportunity to look at the mistakes one by one." -msgstr "" - -# ef81ed5f50e447399e63c337ec34a454 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:61 -msgid "2. Using the validation tool" -msgstr "" - -# 3b54c29f4a3341e39fd2e85c9329852e -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:63 -msgid "Let’s see how to use the validation tool:" -msgstr "" - -# 500bc27b20dd42e890b9a6b6949fb633 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:65 -msgid "" -"In JOSM, download a section of the map. If you don’t see the :guilabel:" -"`Validation Results` window in the right panel, click on the blue checkmark " -"on the left to show it." -msgstr "" - -# 8018b117d11b403cba7e55876eb8fdd6 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:72 -msgid "" -"Ensure that nothing on the map is selected. If you run the validation tool " -"with anything selected, it will only validate what you have selected, and " -"not the whole map. Hover your mouse in the validation window and click :" -"guilabel:`Validation`." -msgstr "" - -# 63c6959d56f44e1f8fb6780ee4c5aa81 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:80 -msgid "" -"The map will change and any warnings will be circled in yellow, errors in " -"red. In the :guilabel:`Validation Results` window you will see a list of " -"warnings and errors, if there are any." -msgstr "" - -# 4c07ae7d313a45b389fcb34b80ca8d1a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:87 -msgid "" -"Errors should almost always be fixed. Zoom to an error by right-clicking on " -"it in the window and selecting :guilabel:`Zoom to Problem`. Then fix the " -"mistake manually." -msgstr "" - -# f6057ba5572046f1bee558a6c88c0807 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:92 -msgid "" -"Some errors can be automatically fixed, such as \"Duplicated nodes” errors. " -"Click on the folder for these types of errors and click the :guilabel:`Fix` " -"button in the window. Many errors, however, need to be corrected manually." -msgstr "" - -# 96551e7da2d74a80a149064907579201 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:100 -msgid "" -"Usually there are many more warnings than errors. By giving you a warning, " -"JOSM is telling you that it is probably a mistake, but not always. Use your " -"judgement to see if it is an important error or not." -msgstr "" - -# 093e8c3308314fc6b03fa35cb88a87a2 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:105 -msgid "" -"If you select a warning from the list and decide that it is not a problem, " -"click :guilabel:`Ignore` and it will be removed from the list." -msgstr "" - -# c61442b319f74850a7766a9a6d71cca3 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:108 -msgid "" -"Re-run the validation tool at any time by clicking the :guilabel:" -"`Validation` button." -msgstr "" - -# a8a71245b2d4427a81a54a4be254a9e0 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:112 -msgid "3. Common validation warnings" -msgstr "" - -# c83e2c12a4974f7f8f9afcba30c55bdc -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:115 -msgid "Ways that are not closed" -msgstr "" - -# c3122e4bc740459e978bf7f0b89a56c3 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:116 -msgid "" -"This is usually a line that does not form a polygon. Common examples are " -"buildings where the first node does not meet the last node." -msgstr "" - -# a5197d3fb75045d7bbc55d2794ab1cd9 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:122 -msgid "" -"To fix this, select both nodes and go to :menuselection:`Tools ‣ Merge " -"Nodes` to connect them." -msgstr "" - -# 5dc288b4ebfd4654818a0fead08889ca -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:126 -msgid "Crossing buildings (overlapping buildings)" -msgstr "" - -# 42e42d97072e48158c79aa149ebf2bd7 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:128 -msgid "This means that buildings are overlapping each other." -msgstr "" - -# 68af1ce1137f4ec6879c01bf7af23e54 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:133 -msgid "" -"To fix this, move the nodes of one of the buildings outside of the other " -"building. It is possible for two buildings to share nodes, if the buildings " -"share a common wall. But two buildings cannot overlap with one another." -msgstr "" - -# 1b8b281a76e942a1abefe38753523d75 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:138 -msgid "Untagged nodes or ways" -msgstr "" - -# f94920b3922b4b719a49a85310138928 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:140 -msgid "" -"If someone draws a point or a line but forgets to give it any tags, then it " -"is useless, because it does not mean anything." -msgstr "" - -# 48763246d27c466887ad2c809ed9d5ba -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:146 -msgid "" -"To fix this, apply tags to the object to identify it, or delete it if it is " -"a mistake." -msgstr "" - -# caeb5c7fbb374eb49c060fc187c29ff9 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:150 -msgid "End node near another way" -msgstr "" - -# 557c180e0a7d42f2b007bf89decef3a0 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:152 -msgid "" -"If a line ends very close to another line but does not connect, this raises " -"a warning." -msgstr "" - -# 59fee31bd6f542298f65cfa76e30b38f -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:155 -msgid "" -"Many times this warning is not important, but it helps to find road " -"intersections that are supposed to connect but do not." -msgstr "" - -# 8e4040bc2d204732bc65104d3b7c8496 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:162 -msgid "Crossing ways" -msgstr "" - -# 895ad2114ef44baab7299d8e1d0dabb7 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:164 -msgid "" -"Lines that cross other lines without being connected will raise warnings. " -"Many times this is not a problem, because the crossing ways are intentional " -"- such as in the case of bridges, or streets and rivers that cross landuse " -"polygons. However, it is sometimes helpful to find errors." -msgstr "" - -# 24db47639a6e46e8b555b392a2b41925 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:174 -msgid "" -"OSM depends on people correcting and editing mistakes. Editing and " -"validating data is important for improving maps. If you do not have time to " -"get in the field with a GPS or trace imagery, validating objects and " -"attribute data is a good way to contribute." -msgstr "" - -# a869a5fc18184f638f8855e2c3655859 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:181 -msgid "4. Using the tasking manager" -msgstr "" - -# 98b133611eae4084afa90d1ef3c229cd -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:183 -msgid "" -"The OSM Tasking Manager is a tool that mappers can use to sort an area into " -"a grid, and work together to map in an organised way. Apart from being more " -"organised, the tasking manager is also one way to avoid editing conflicts, " -"because it helps prevent more than one person from editing the same area at " -"the same time." -msgstr "" - -# 36bc42d52d0e4105beb89b62fdc065e2 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:189 -msgid "" -"One consistent challenge is coordinating field and/or remote workers to map " -"an area together. To help address this, HOT has developed the Tasking " -"Manager to make it easier for administrators to define the areas of mapping " -"interest and to delegate workers. The idea behind this tool is that if there " -"is an area, let’s say a city, that we want to map, we can coordinate between " -"people mapping on the ground and others mapping remotely with satellite " -"imagery, This tool allows us to create a grid of the entire area. " -"Collaborators select blocks in the grid that they plan to map, and when they " -"finish, they mark the area as complete. In this way a team of many people " -"can coordinate to map the entire grid." -msgstr "" - -# ac5d07d10df5447aadaea55c6470b271 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:202 -msgid "To see how the tasking manager works, let’s take a closer look." -msgstr "" - -# 3c3672af16a143f2af8f3f884f27add2 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:204 -msgid "" -"Open your internet browser and go `here `_. You " -"will see a page like this:" -msgstr "" - -# f6cc35b9a0ff41bea6ab22aa4e2a10e5 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:210 -msgid "Click :guilabel:`login to OpenStreetMap`." -msgstr "" - -# c9f1b29fbb4d4f589169fa7e7565040e -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:212 -msgid "" -"Here you must agree to allow this application some access to your OSM " -"account. To do so, click :guilabel:`Save Changes`." -msgstr "" - -# 1e4fd8f713794b479df4dd98c2ec065a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:218 -msgid "" -"On the left is a list of current mapping tasks. These are different places " -"in the world that people are coordinating to map." -msgstr "" - -# 17d4e20db8f84a709922f8865db1a2a0 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:224 -msgid "Click on one of the projects to see more information about it." -msgstr "" - -# ba933a94123c4276b3b56ceaac8927c7 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:229 -msgid "" -"This page shows you everything you need to know about the project. On the " -"left side of the page is a description of the mapping project and how it is " -"being organised. You can click on the different tabs to get more " -"information. On the right side is a grid showing the area to be mapped. Red " -"grid squares have been completed, green squares have been completed and " -"checked by another person, and the remaining squares still need to be mapped " -"or are being worked on." -msgstr "" - -# fd933d8d73a04cd78c106be259e523b8 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:238 -msgid "" -"Click on the :guilabel:`Activity` tab to see activity for this task. The :" -"guilabel:`Stats` tab shows various users and their contributions." -msgstr "" - -# c2ba08f792824dd1a8a99ca83df06a0a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:241 -msgid "" -"To claim a grid square to work on yourself, click :guilabel:`Start " -"contributing` on the :guilabel:`Instructions` tab, or simply click an " -"unclaimed square on the map and then click :guilabel:`Start mapping`." -msgstr "" - -# 9a6aa155d59e44a1bcf70af38f83f59c -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:248 -msgid "" -"Next you see a view of the square that you have chosen to map. Click the " -"button on the left to open the area up for editing with JOSM, iD, Potlatch 2 " -"or create a Field Paper." -msgstr "" - -# 47e793da3e804954bfc8c1a6d6c9c645 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:257 -msgid "" -"If you plan to edit with JOSM, you need to enable the JOSM remote control " -"before you are able to launch the application from the Tasking Manager. To " -"do this, open JOSM and go the :menuselection:`Preferences` menu. Click on " -"the :guilabel:`Remote Settings` tab and check the box next to :guilabel:" -"`Enable remote control`. Restart JOSM." -msgstr "" - -# 1b8c11b19d504bb88e31a4dcc4fdc68d -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:267 -msgid "" -"Return to the Tasking Manager and choose :guilabel:`Edit with JOSM`. If you " -"have JOSM open and you correctly enabled the remote control, the grid area " -"of the map you selected will automatically be loaded into JOSM." -msgstr "" - -# 4402b66b1ce540449cb95e389195610e -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:271 -msgid "" -"Next you may edit the area using the instructions provided in the project " -"information. Usually tasks will be to trace certain features using imagery, " -"such as buildings and roads. Alternatively, tasks might be set to map in " -"more detail on the ground." -msgstr "" - -# ac30b3b36c0844f089962864d25582c1 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:276 -msgid "" -"When you are finished you will upload your edits and then return to the " -"Tasking Manager to add a comment about your work. If you finish the grid " -"square, click :guilabel:`Mark task as done`." -msgstr "" - -# 483749408bff4153a374e62632dfaf26 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:280 -msgid "" -"If you are unable to complete the task, click :guilabel:`Unlock` to make the " -"task available again for other mappers." -msgstr "" - -# 499ddce2ac4e4da8a13d1014bf077d2a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:286 -msgid "" -"When you finish an area, the grid square will turn yellow on the map to " -"indicate that it is done. Someone else will then look at your work to make " -"sure it is good, and if they agree that you’ve completed the square well, " -"the grid square will turn green, meaning it is complete!" -msgstr "" - -# fcab89290b754a888830648c66ae0bcc -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:293 -msgid "5. Editing tips" -msgstr "" - -# 312eaca0638f4747b0a87066773f48ca -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:295 -msgid "" -"In this section we will go over some common mistakes in JOSM and provide " -"some editing tips for making your maps great!" -msgstr "" - -# d8eaadb81a0248298d05d04ea3f141fc -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:299 -msgid "Some objects should not connect" -msgstr "" - -# b61ee0d6a9f04bcaba828f4792eed5ed -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:301 -msgid "" -"When you are creating polygons and lines that are not supposed to be " -"connected, make sure that they are not merged together by sharing a node. " -"For example, highway nodes should not be snapped to buildings, because no " -"one likes a road that leads directly into a wall! If you want to disentangle " -"two or more obejcts that share the same node, select the node and press :kbd:" -"`G`." -msgstr "" - -# 079b16d8f0c14a8bbfdf5a12e89f747f -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:315 -msgid "But, some objects should connect" -msgstr "" - -# 70004f548ae346609646688e809d10a0 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:317 -msgid "" -"However, some objects SHOULD connect! Road intersections should always be " -"snapped together. If two roads do not share a common node, then the computer " -"has no way of knowing that the roads actually connect to each other." -msgstr "" - -# cf79d79615da4eeab76349bfcf2b93ef -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:326 -msgid "Overlapping objects" -msgstr "" - -# 4e4567d74b604197aec6be6f869e04d1 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:328 -msgid "" -"A common error is to have overlapping polygons when the objects they " -"represent do not overlap in real life. A building cannot overlap another " -"building. This mistake is commonly made with buildings and landuse polygons. " -"For example, a polygon drawn to represent a park outside a building should " -"not overlap with the building. Instead it should be drawn next to the " -"building. There are some exceptions to this rule, such as schools. Within a " -"school yard you might identify individual buildings using polygons, yet you " -"also might want to create a polygon around the entire school yard. In this " -"case it is fine for the polygons to overlap, but the rule to follow here is " -"to make sure that the buildings are completely inside the landuse polygon." -msgstr "" - -# defca5d0e79246efaf4bf06fbd573800 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:348 -msgid "" -"We all make mistakes, and as you map more you will make less mistakes! Just " -"remember that even if you upload data that contains mistakes, it is simple " -"to fix your mistakes and upload the change again. This is what is great " -"about OSM, you can always make it better!" -msgstr "" - -# 325bb6c4cb5c4ef4b7993a5febc68659 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:355 -msgid "6. Presets standardisation" -msgstr "" - -# 76cc13a2549d44c0928d00fb17bf7d33 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:357 -msgid "" -"OSM is used around the world by speakers of many different languages. Any " -"feature in OSM can have whatever tags users choose. While this provides a " -"lot of flexibility, it is important that users worldwide agree on the same " -"tags to identify the same objects no matter what country they are located in." -msgstr "" - -# 882c2af7cd1b4240ad2ecd92b476246b -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:362 -msgid "" -"For such purposes of standardisation, most tags in OSM are in British " -"English. An extensive list of standardised OSM tags is available on the OSM " -"Wiki `Map Features page `_." -msgstr "" - -# 0abc1430269a4fc189d3d08d0df6cd55 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:366 -msgid "" -"When users enter tags manually in JOSM or another editor, it is common to " -"make spelling or other mistakes, particularly for beginners. For this " -"reason, it is a good idea to use the presets menu, which uses forms that " -"prevent incorrect tags from being entered." -msgstr "" - -# a57ff8c0b6ae4abd8e2a70cc94cf6d93 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:371 -msgid "Using standardised tags aids in:" -msgstr "" - -# a0b1bac3dc874d5fa929cb2878aee756 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:373 -msgid "Assuring data consistency and stability" -msgstr "" - -# 85fb220ea57a45baa7851e1191e35bfd -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:374 -msgid "Easier data search and analysis" -msgstr "" - -# 009cd83e2d854223944ea3c6ecca0e56 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:375 -msgid "Setting benchmarks for improvement" -msgstr "" - -# ebeb0174d8814c1dbb6ed2531911851d -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:376 -msgid "Data validation" -msgstr "" - -# 7b720c6a695b43a6a185d5d636bfd44c -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:377 -msgid "Map rendering on OSM website" -msgstr "" - -# f86dc45f4465481ab5f5b81f215c6b0a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:381 -msgid "7. KeepRight" -msgstr "" - -# d336e45414534b6ea4f45d0be13ce6f5 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:383 -msgid "" -"The KeepRight website is another useful validation tool for OSM. Open your " -"web browser and head to http://keepright.at." -msgstr "" - -# 0dcd50f6bf8c41b0929b8499071f9d48 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:386 -msgid "" -"If needed, switch the site into Indonesian by choosing :guilabel:`id` from " -"the drop-down box in the in the upper right." -msgstr "" - -# e5d44adf208243bbbcf033a6b36fbe45 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:392 -msgid "" -"Click :guilabel:`Data Checks for Asia` to check OSM data in Asia. This will " -"open up a slippy map with errors displayed on it." -msgstr "" - -# d8e20479b5bd4f17afdc4a3e90b7f019 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:395 -msgid "Navigate to your area of interest by using the zoom and pan functions." -msgstr "" - -# 202d594747a2479f97481b58dd085831 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:401 -msgid "" -"The types of errors are listed to the left of the map. Get more details " -"about each error by clicking on the icons which hover above the map." -msgstr "" - -# 518fe215967a46e09177bcea8245347d -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:408 -msgid "" -"When you see an error in your area of interest, the next step is to fix it. " -"Click on the links to one of the editors (JOSM, Potlatch, or iD) to open " -"this data in the editor. Note that to edit in JOSM you must have the JOSM " -"Remote Control Enabled (as described in the :ref:`Tasking Manager section " -"` above)." -msgstr "" - -# 8bdc69670fe24364b28babf41b521a6a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:415 -msgid "" -"We recommend that the editing is done in JOSM, because its editing features " -"are more complete. Note that JOSM must be open (with remote control enabled) " -"in order to connect with the KeepRight website." -msgstr "" - -# 457ef6b2950448599b31bd71b32349d8 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:423 -msgid "" -"Use JOSM (or another editor) to fix the errors that you find on the " -"KeepRight website. After fixing them, return to the site and select :" -"guilabel:`ignore temporarily`. Add a comment and click :guilabel:`save`." -msgstr "" - -# b4e4d9c786d24fefb44da390cbb84760 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:428 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/303-dealing-with-conflicts.po b/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/303-dealing-with-conflicts.po deleted file mode 100644 index 8181ab9c..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/303-dealing-with-conflicts.po +++ /dev/null @@ -1,273 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# e370069a54594060adb9f311000dd150 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:10 -msgid "Module 3: Dealing With Conflicts" -msgstr "" - -# c0779ffdcb6d4d84a0e51ea8c0e4dda2 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# c7fa09aff8f0478c84e049eeb9f66ea6 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:14 -msgid "Identify conflicts" -msgstr "" - -# d9d6c96d1d8041f2b4775aa6a5361aec -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:15 -msgid "Understand why conflicts occur" -msgstr "" - -# 97c92792785e40b89182c56ecaf81202 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:16 -msgid "Solve conflicts" -msgstr "" - -# 93b94a7eef624523a307538a7b132f09 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:18 -msgid "" -"Sometimes you are working in JOSM and when you upload all of your beautiful " -"edits you get a nasty message complaining about a conflict." -msgstr "" - -# bf0c1dc7c9cd4f699395d849f38e119c -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:25 -msgid "" -"What happened is essentially this: You downloaded data, which included a " -"point which we will call Node A. Then while you were editing, another user " -"else also downloaded Node A, changed it, and saved the changes back on " -"OpenStreetMap. Now when you try to upload your version of Node A, it is " -"different from the one saved on OSM. Therefore JOSM doesn’t know which " -"version of Node A should be saved." -msgstr "" - -# be160b8622994157b5d3abc6a62b5d4f -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:34 -msgid "1. Conflicts" -msgstr "" - -# 9c96aff9ea9f436989479bb28d2451ad -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:36 -msgid "" -"Sometimes, JOSM is able to figure out what to do with conflicts on its own, " -"and it will give you a message like this:" -msgstr "" - -# 417c58781286473dbc6b16e8c934a39a -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:42 -msgid "" -"This means that JOSM has automatically decided that items in your local " -"dataset will not be uploaded to the main server because they have already " -"been deleted by another user." -msgstr "" - -# 1837fb3503ac444fa4c5f6f48b3b1b30 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:46 -msgid "" -"In some conflicts, however, there is no easy action for JOSM to take and so " -"it leaves the decision up to the user to determine what to do. This means it " -"is up to you to resolve the conflicts." -msgstr "" - -# 4fd5fa46a97943589b141ba1be1a061c -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:54 -msgid "" -"*This tells you to look at all of your conflicts in Layer 1 in the Dialog " -"List box.*" -msgstr "" - -# 650309a1e9e54ddda1f76ffb737f7c8c -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:60 -msgid "" -"*This window provides you with a warning as to whether you are likely to " -"experience a conflict with your edits. If you check on the server you will " -"be able to fix the editing issues that would arise.*" -msgstr "" - -# 9b5acd01a2964c96aeb920d40c4a3638 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:68 -msgid "" -"*This warning tells you that JOSM failed to delete a node due to it still " -"being referenced in a way. In order to remedy this, the user has to go back " -"into JOSM and resolve the conflict before uploading the data.*" -msgstr "" - -# 8e2f724e215644beac0a02833102f2ea -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:74 -msgid "2. Conflict resolution" -msgstr "" - -# 1e7c7e813a0944049ecfe86e88c410b9 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:76 -msgid "" -"The process of resolving a conflict is simple, although it can appear " -"confusing at first in JOSM. Basically, for every conflict JOSM will present " -"you with two choices - your version of an object and the one that is on the " -"server. You need to choose whether to keep your version, or whether the new " -"version on the server should remain." -msgstr "" - -# b7ba73c59f7c4c2aa54d428c97eab902 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:83 -msgid "" -"You might think, “of course my version is going to be better!”. And maybe " -"you’re right. But think back to our example at the start of this module. " -"Perhaps while you were busy editing, another mapper added a lot of " -"information to one of the nodes in your data set. If you choose your version " -"over their version, you will lose all of that valuable information that they " -"added. Hence you should consider keeping their version, or merging it with " -"your own." -msgstr "" - -# ee683a96148f4ef59f14b15c94a0e6d0 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:92 -msgid "" -"When a conflict window pops up, it is usually best to choose the button :" -"guilabel:`Synchronize ... only`. You may need to do this for more than one " -"object, but it is best to resolve conflicts one at a time." -msgstr "" - -# d129e028f5c546309f2149e6065f22ba -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:100 -msgid "" -"After clicking this button, a pop-up window will appear detailing the " -"conflict. The error message may look complicated, but it is not. You can see " -"what type of conflict you have from the following symbol in the top tab." -msgstr "" - -# f6ca47a5ed694be198f15804eb8ce010 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:109 -msgid "" -"The conflict in our example refers to the properties, such as the location " -"and existence of the object. This is why the coordinates and deleted state " -"are listed." -msgstr "" - -# 76ba5cbe3f22449e94a43eabaad4b143 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:116 -msgid "Types of conflict are:" -msgstr "" - -# d76dbd15732a432db31025cf90505982 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:118 -msgid "**Properties**: Object has been moved (coordinates) or deleted" -msgstr "" - -# 373dc84b56f24e25b73f7f516aa0ebe5 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:119 -msgid "**Tags**: Tags do not match" -msgstr "" - -# abf338d11d3e4b979810764061566518 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:120 -msgid "**Nodes**: There is a differences in the list of nodes in two ways" -msgstr "" - -# 80f7a434324940e2b984e833cfc14922 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:121 -msgid "**Members**: There is a difference in the list of members in a relation" -msgstr "" - -# 5a452b0bd3284d359755a931dfaba7a8 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:123 -msgid "" -"Conflicts only appear with two different edits at a time. If there are three " -"or more conflicts, then a chain of conflicts will pop up. Therefore you have " -"to choose or merge with only two conflicts at a time. You can choose your " -"version, the other version or, at times, merge the two." -msgstr "" - -# e737c410a6d94548a168a4480718b8d4 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:128 -msgid "" -"In our example we do not have the option of merging. Click on the first " -"column, or :guilabel:`My version` if you believe that your edits are " -"correct. Click on :guilabel:`Their version` if you think that the other " -"edits are better." -msgstr "" - -# 64e59aaf49484f11bc45aef585eed8b4 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:137 -msgid "" -"Once you have selected which version you think is best, click :guilabel:" -"`Apply Resolution`." -msgstr "" - -# 77b65b37bb66492aa30d7b92f4a1fa75 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:140 -msgid "You can open the Conflicts panel to see a list of conflicts." -msgstr "" - -# a616307ea6e447c3a4ae8f89d9f759a0 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:145 -msgid "" -"The total number of unresolved conflicts is shown in the header. Select or " -"resolve a conflict by clicking on it. This is useful when you have many " -"conflicts to deal with." -msgstr "" - -# 1ff6a8ebeae44eb78525d34a8f0f05d2 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:152 -msgid "You cannot upload your changes until this list is empty." -msgstr "" - -# 0e74d6da32a34c6d9c9601552ce879db -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:155 -msgid "3. Ways to avoid conflicts" -msgstr "" - -# 795e17f22627456db05ad7b8d747c802 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:158 -msgid "Upload frequently" -msgstr "" - -# 25454c0008a1418590b0185108256bee -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:160 -msgid "" -"To minimise the chance and number of conflicts it is important to upload " -"your edits regularly. Conflicts appear more frequently for those who tend to " -"save the area they are working on in their local computer and wait a while " -"to upload it. It is best to download the area you are working on, edit it " -"and then immediately upload it. The longer the time between downloading data " -"and uploading changes to that data, the more likely it is that someone has " -"edited something in the meantime." -msgstr "" - -# 1d4ce3cfbe0f47e7b1f0c15d9539dc05 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:170 -msgid "Edit in the area you download" -msgstr "" - -# ebc354d5a91d40a1a3abe66487ed66dd -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:172 -msgid "" -"Editing in the specific area you have downloaded minimises the risk of " -"conflict. Make sure you do not edit outside of the area that you have " -"downloaded. You can easily see the areas outside your download area in JOSM, " -"because the background is made up of diagonal lines instead of being solid " -"black." -msgstr "" - -# c7a03ad596eb45c3915a4eefb4e4200d -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:181 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/304-creating-josm-file-presets.po b/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/304-creating-josm-file-presets.po deleted file mode 100644 index a27a7013..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/304-creating-josm-file-presets.po +++ /dev/null @@ -1,819 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 0b36e4ae09614e848f2a20d0bb2048f1 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:10 -msgid "Module 4: Creating JOSM File Presets" -msgstr "" - -# b2b98d04a4ca408086fc9db41cef9db8 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 568c6ff602624fe69877f417b3c8c4c1 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:14 -msgid "Understand tags" -msgstr "" - -# 6e990147680346a4ba71ab0441d9790f -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:15 -msgid "Understand XML" -msgstr "" - -# 52c3a95b25d04d798bd49a082c123c92 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:16 -msgid "Understand keys and values" -msgstr "" - -# 202c3920d0974601a11116ccb643d672 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:17 -msgid "Make presets" -msgstr "" - -# 4eb012d345204a8aabb04a51874cb8ee -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:18 -msgid "Put preset files into JOSM" -msgstr "" - -# 5982f106a90142ecbccf152c74b41185 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:19 -msgid "Apply new presets to an object" -msgstr "" - -# a60c170085174a24b262b3813ebcbbac -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:21 -msgid "" -"By now you probably have a good understanding of how objects are drawn in " -"JOSM, and how to add information to these objects to describe what they are. " -"You add attributes to a point, line or shape by attaching tags to it. By " -"using the JOSM presets menu, you can easily attach the correct tags to an " -"object by finding the type of object you want to create through a menu, and " -"then filling in information in a form. In this module we will review tags " -"and presets once more, and then learn how we can create our own presets " -"menus to use in JOSM." -msgstr "" - -# 9efd6d5c45a04f50b0cc2f321a23872a -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:31 -msgid "1. Tags and presets" -msgstr "" - -# 6be22fa7940e4a18b242ec5386e2c9ee -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:33 -msgid "" -"Remember that after you draw an object on the map in JOSM, you need to " -"attach tags in order to describe what it is, its name and any other " -"attributes. For example when you want to create a clothing shop with the " -"name “Some Clothing Shop”, you need two tags - one to describe the point as " -"a clothing shop, and one to hold the name. In JOSM, the tags are shown in " -"the Properties panel when an object is selected." -msgstr "" - -# bf6130b0da94456ba78e69f6fce69ab7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:44 -msgid "" -"Tags consist of two parts, the **key** and the **value**. The key typically " -"defines the type of information you are attaching, and the value defines the " -"specific object. Here we have two tags, and hence two pairs of keys and " -"values." -msgstr "" - -# 4a3f0832d938482b91431106e1be7d60 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:49 -msgid "**KEY = VALUE**" -msgstr "" - -# ce5a79e2ccd74033a0e8489cd0f88612 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:51 -msgid "**name = Some Clothing Shop**" -msgstr "" - -# 182bc07303a14fd5a0905db80be1962f -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:53 -msgid "**shop = clothes**" -msgstr "" - -# 5ba9fc958ef44baaa3400f9c8492939b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:55 -msgid "" -"When we create a point with these tags, JOSM knows to display the icon like " -"this:" -msgstr "" - -# 5c949b22e71648c2a9849c2dd7d2a31b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:61 -msgid "" -"And when we look at this on the `OpenStreetMap `_ " -"website, the object looks like this:" -msgstr "" - -# 3595f7a8477e49cb9b7d1da84f9ed234 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:67 -msgid "" -"The reason this works is because we’ve applied the appropriate **tags**." -msgstr "" - -# 5b1530e5ce5f43ec82774932bf374e63 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:69 -msgid "" -"Because OSM is so open, anybody can add any tags they want to anything. But " -"what happens when mappers in England disagree with mappers in Japan about " -"the best way to tag something? For example, it is important that all schools " -"have the same tag describing it as a school. If some people tag schools as " -"**amenity=school** but others tag them as **education=school**, it is a " -"problem. Hence, people must agree on how to tag places." -msgstr "" - -# 076067b922e84a4ea019241de4f59ce9 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:79 -msgid "" -"OSM has been around for many years now, so there is an accepted standard for " -"how to identify most types of locations, and those are listed on the Map " -"Features page on the OSM Wiki." -msgstr "" - -# cca5828fdd97426ca4141aa682c58839 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:83 -msgid "http://wiki.openstreetmap.org/wiki/Map_Features" -msgstr "" - -# bb403e520873426493e3bb9365d3b96c -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:85 -msgid "" -"This web page has grown longer and longer over the years as people have " -"sought to map more and more things and have needed more tags to do so. It is " -"impossible to remember all of these tags, and quite a hassle to look them up " -"every time you need them. Hence, JOSM has a Presets menu which makes it much " -"easier to apply the correct tags to an object. With the Presets menu, we can " -"easily find the entry for school, enter information into a form and not have " -"to worry about whether the correct tag is **amenity=school** or " -"**education=school** or something else entirely." -msgstr "" - -# 33271ccb1f5f415f886e1d40e887eaca -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:99 -msgid "" -"Notice that when you add attributes using the presets menu, the correct tags " -"are automatically added in the Properties menu on the right." -msgstr "" - -# d1cbd8614b3b4af9ac71718531c269d7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:102 -msgid "" -"JOSM comes with most of the presets that you will need already loaded, but " -"sometimes you may want to add your own presets to create tags for the " -"specific type of data you are collecting. The remainder of this module will " -"explain how to create a custom Presets menu." -msgstr "" - -# 836d7cd96ddb415d8294c2992f6216db -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:108 -msgid "2. Introduction to XML" -msgstr "" - -# f7e5050d3b484807a821dfcc2c0c2c6a -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:110 -msgid "" -"In order to create our own Presets menu, we first need to understand a " -"language called XML. XML, which stands for *Extensible Mark-up Language*, is " -"a language similar to HTML. The key difference is that XML is designed to " -"carry data, not display it. Many applications on the internet use XML to " -"transmit data, including OSM. XML uses **elements**, and each element can " -"contain child elements inside it. For example, let’s imagine that we want to " -"create an XML file that contains data about a restaurant menu. We must " -"create a **root element** to contain all the data about our menu. Our root " -"element will have an opening and a closing tag, like this: ::" -msgstr "" - -# 86f76608b1934a81a81193f381563c58 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:129 -msgid "" -"Information is contained inside an element, and within each element there " -"can be more elements. ::" -msgstr "" - -# a3ea68b34e5b4fb39bb33d475d170efc -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:144 -msgid "" -"In this example we have placed two **** elements within our **** " -"element to describe two different items that are contained in the menu. Each " -"item contains two more elements in them, **** and ****. " -"Notice also how we have written name=”Hamburger” inside the opening " -"**** tag. This is called an attribute, and adds information about the " -"element." -msgstr "" - -# 9b0a80959821464fad4cf7d074ff0556 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:152 -msgid "XML Terminology" -msgstr "" - -# f56e9a46cf2b4c6e9b19e88a0482a52f -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:154 -msgid "" -"**root element:** the outermost element of an XML document, which describes " -"what is contained" -msgstr "" - -# 101bc52ad13941689fb6aebdb9e028ad -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:156 -msgid "" -"**element:** any XML object, contained by opening and closing tags, such as " -"**...data...**" -msgstr "" - -# 08396492ef7b423e8e243796a3fde5e9 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:158 -msgid "" -"**tag:** something contained in brackets, such as ****. **** is " -"the opening tag of an element, and **** is the closing tag." -msgstr "" - -# 140562115e0b460e93cdf6b0b1b7219f -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:160 -msgid "" -"**attribute:** a piece of information contained inside a tag, such as " -"**name=“Hamburger”**" -msgstr "" - -# 9c53e69dfc4d4ac1beaaa53b380f9cb5 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:163 -msgid "" -"Using XML to hold and transmit data is great because it is easy to " -"understand for computers. To provide one more example, this is what the XML " -"might look like for the point we created in JOSM previously. ::" -msgstr "" - -# 1cabd59735374a5d8a7380d6782cb69e -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:176 -msgid "" -"This XML has a root element **** which indicates that OSM data is " -"contained inside. Then it has one **** element which is the OSM way of " -"describing a **point**. The node has numerous attributes, including a unique " -"id number, the coordinates of the point, the user who created the point, and " -"some additional information which we will not discuss right now. Between the " -"opening **** tag and the closing **** tag there are two more " -"elements of type ****. Each **** has an attribute k and an " -"attribute v. These are the keys and values that we added in JOSM. Notice " -"that the **** elements don’t have a closing ****. This is because " -"they don’t have any other elements contained within them, but instead have a " -"forward slash indicating that it does not require a closing tag. ****" -msgstr "" - -# dc6a160e42814a7dbcb234e7e3386d59 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:193 -msgid "3. JOSM presets files" -msgstr "" - -# ae11b3d391f041d2a458eeb622a42843 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:195 -msgid "" -"As you’ve already discovered, JOSM comes pre-loaded with a presets menu that " -"includes most common types of geographic options. But sometimes you want to " -"add additional presets for specific information that you want to collect. " -"You can create your own presets menu by writing it in XML, and then loading " -"it in JOSM. First, let’s look at how we can load additional presets menus " -"into JOSM." -msgstr "" - -# b593e8cc96344acdbf5f009871035163 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:203 -msgid "" -"Open JOSM and open the Preferences menu by going to :menuselection:`Edit ‣ " -"Preferences`." -msgstr "" - -# 685552b6c39347e2925dd0dbf52188c0 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:206 -msgid "Click on the third icon from the top which looks like this:" -msgstr "" - -# 0a4bc74cc1914e338c4d16bade2e03f8 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:211 -msgid "Click on the third tab labelled :guilabel:`Tagging Presets`." -msgstr "" - -# 3aad03c92ab84c7baafa465b5a653385 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:213 -msgid "" -"Select :guilabel:`Buildings by Kate Chapman` and click on the right arrow " -"button to add it to Active presets." -msgstr "" - -# 3def0223ef4448a3a2a8eabd7a7fb577 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:219 -msgid "Click :guilabel:`OK`." -msgstr "" - -# 9470e0d9f3664053839e7ddb8dab033d -# 37214623a5f44aacb3c42b02aaca8bde -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:221 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:498 -msgid "Restart JOSM." -msgstr "" - -# 86a616c94a8b4b2492534d3c35b94331 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:223 -msgid "Create a new layer by going to :menuselection:`File ‣ New Layer`." -msgstr "" - -# ef7dccdc40be400dbdc7dd74db351996 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:225 -msgid "Create a point and make sure it is selected." -msgstr "" - -# 645023634c864a4cb87bb268af9353a8 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:227 -msgid "" -"Go to the Presets menu. You should now see the presets that you added at the " -"bottom." -msgstr "" - -# d0b351174219427385edc6789ae7227e -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:233 -msgid "" -"Click on :menuselection:`Building` to see the the building presets form." -msgstr "" - -# 4062c0c8a02e4f0ca1afb8075faa679a -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:238 -msgid "" -"When we added these new presets through the preferences menu, what we were " -"doing is adding an XML file that describes how the new menu should behave. " -"In the next sections, we will learn how to create our own XML presets file " -"that we can load into JOSM." -msgstr "" - -# 3a2a3602ffdc4bf18ebcfc38d87c37dc -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:244 -msgid "4. A sample presets file" -msgstr "" - -# 70430e5fbfab4f55874dad49ed78503b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:246 -msgid "" -"To understand how a presets file is written, let’s first look at the XML for " -"one of the pre-loaded presets in JOSM. When you go to the presets menu and " -"select :menuselection:`Facilities ‣ Culture ‣ Place of Worship` you will see " -"a form like this:" -msgstr "" - -# 9e8f285e3a3e4177bd8c4bc31777e293 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:255 -msgid "The XML for this form looks like this: ::" -msgstr "" - -# c2c257ba3a9c41ccb9e1647b61d2d0b9 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:269 -msgid "" -"This may look complex, but it is not as difficult as it may seem. Let’s walk " -"through it line by line." -msgstr "" - -# 92bf7888cb014dc8aefd3f17e1649286 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:272 -msgid "" -"The first line is the opening tag of our root element ****. There are " -"several attributes describing the element." -msgstr "" - -# f0d3ce60a74842b7b483c9c522fccb2d -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:276 -msgid "name=\"Place of Worship\"" -msgstr "" - -# 0cbb9c11c51448caaef983afdceae27d -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:276 -msgid "The name of what you are creating." -msgstr "" - -# eb2bfffa62a840e6bffd051f0db9500d -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:278 -msgid "icon=\"presets/church.*\"" -msgstr "" - -# 52aac380334b481cb9170084f4e8523a -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:278 -msgid "" -"The icon of the object. PNGs are the most effective in OSM since they are " -"compressed low-colour graphics with transparent backgrounds." -msgstr "" - -# 6088916f4749442383996766e21f4016 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:281 -msgid "type=\"node,closedway,relation\"" -msgstr "" - -# edd6554f9ec14f2788b59a139e533295 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:281 -msgid "" -"The types of object that this preset can be applied to. Node means it can be " -"applied on a point, way means it can be applied to a line, closedway means " -"it can be applied to a shape, and relation means it can be applied to a " -"relation, which is a type of OSM object we have not discussed. Notice that " -"way is not an option here, because a place of worship cannot be a line - it " -"must be a point or a shape." -msgstr "" - -# fbc14b25e8334f8fbadd240dc1b75f75 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:289 -msgid "" -"The second line provides a link to the OSM wiki page for this type of " -"location." -msgstr "" - -# a2d30e01ef924b3a8fce89e95624074d -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:292 -msgid "" -"****" -msgstr "" - -# b0e14b7f16414ea0bbfccca5e8f35a26 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:294 -msgid "" -"The third line has the tag **" -msgstr "" - -# e0aa900ecbf44d22a4ee930688dd70dc -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:327 -msgid "5. Creating your own presets file" -msgstr "" - -# 73edaf1e0d3c49d3aefccd4bb27b420b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:329 -msgid "" -"Now follow along as we create our own presets file. We will create an " -"example presets menu which will allow us to tag buildings or points " -"according to the type of utilities access that they have available. For " -"this, let’s invent some new tags:" -msgstr "" - -# 8b0972042cff4e84a645826e566b1ad8 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:335 -msgid "Key" -msgstr "" - -# 5bc383ab7436447eb29f915d161f7025 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:335 -msgid "Possible Value" -msgstr "" - -# b087623bd8874f2fb1aa0eb12375a0f3 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:337 -msgid "utility:water" -msgstr "" - -# 61d1ce6181a1420d83b34d75786d140f -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:337 -msgid "well, municipal, yes, no" -msgstr "" - -# 552b620c47424095bfcb0391eeaab97b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:337 -msgid "" -"Does the household have access to water? well indicates it has access to " -"well water. municipal indicates it has pipes running to it. If we want to be " -"less descriptive, we can select yes or no to indicate if the building has " -"water access" -msgstr "" - -# 20c25c346c7e47c19323f2284a626a23 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:344 -msgid "utility:electricity" -msgstr "" - -# a655b81f771140a0a098091f1c2265f1 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:344 -msgid "yes, no" -msgstr "" - -# f9f855033ea74a0ead2eb11a79f7cd52 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:344 -msgid "Does the household have electrical access?" -msgstr "" - -# 666fd202b2794bfaa204145e10c313e5 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:346 -msgid "utility:phone" -msgstr "" - -# 3fecb8949c584297881ac9da58fabdc8 -# ad3d5cf8bbec4f03985f5f3713dd4f6d -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:346 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:352 -msgid "landline, mobile, yes, no" -msgstr "" - -# c24801f6a6da4d319a235babfc71bb49 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:346 -msgid "" -"Does the household have phone access? landline indicates that there is a " -"hard phone line in the house. mobile indicates that the household has a " -"mobile phone. If we want to be less descriptive, we can use yes or no" -msgstr "" - -# b0ff29916f5a4174b9e4490b2759f783 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:352 -msgid "utility:internet" -msgstr "" - -# e46cf3fbb89d43fba5ee6cbc92685a51 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:352 -msgid "" -"Same values as for phone, this will indicate if the household has internet " -"access" -msgstr "" - -# 2081220b298e4d13a2fd4959784a1d5d -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:356 -msgid "" -"When the preset we create is selected, we will also automatically add the " -"tag **building=yes**, and we will create a tag with the key name that the " -"user can fill in with using a text box." -msgstr "" - -# bd065e2ebec64f8995881ff0a73f3e38 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:360 -msgid "" -"Now look at the possible tags we have described in the table above. What is " -"the best way to represent each of these on the form? For name, we want to " -"create a text box, because the user can fill in any name that they want for " -"this tag." -msgstr "" - -# 46012e9f75ba46e4b2fca5c493175595 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:365 -msgid "" -"For **utility:water**, **utility:phone**, and **utility:internet**, there " -"are four possible values that the user can select from on our form, so the " -"best way to add this is with a combo box - that is, a drop-down menu where " -"the user can select one of the options. The tag **utility:electrical** only " -"has two possible values, yes or no, so the best way to show this on our form " -"is with a checkbox, although we could use a drop-down box if we wanted as " -"well. When we are finished our form should look like this:" -msgstr "" - -# 45155fa5a97549e6a9398d84756ab77c -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:377 -msgid "" -"Open a text editor and follow along as we create the XML for this preset. A " -"simple and common editor to use on Windows is called Notepad. DO NOT use a " -"word processing program like Microsoft Word." -msgstr "" - -# d92247a45c5645acb7206a5c6b7fba77 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:384 -msgid "" -"First, we need to create a root element in our XML so that JOSM knows it is " -"a presets file." -msgstr "" - -# 308082179a864280a89279aa42f6a5a7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:390 -msgid "" -"Next let’s create an element called . This is not actually necessary " -"because we are only creating one preset, but it will demonstrate how we can " -"create submenus with many different options on our presets menu. Don’t " -"forget to add the closing tags **** and **** to your " -"elements." -msgstr "" - -# 18a0b9c04253421196cc79aff96f52d3 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:400 -msgid "" -"Now we can create an item on our menu. We want to create an element " -"inside of the group element. Add the following text:" -msgstr "" - -# 85331b795fb44a11bca37fe6174bdd3f -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:410 -msgid "" -"Inside the **** element we will add the text box, combo boxes and " -"check box that we want on our form. Add the following inside your **** " -"element:" -msgstr "" - -# 2b54442eae8348d8a066512da1c2b4f4 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:425 -msgid "When you are finished your file will look like this:" -msgstr "" - -# 05d2ec0c2a92426aae2b1abe7543eaba -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:429 -msgid "" -"Much of this is similar to what you saw previously. Let’s analyse it. Inside " -"the **** element we have created six more elements:" -msgstr "" - -# dc5144ec380742bc9f7f8cbba027c83b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:433 -msgid "" -msgstr "" - -# d5a726f70bff4e6faf341af1ff0f376b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:434 -msgid "" -msgstr "" - -# 8c3198c47cdc467794015456960574d9 -# db03c1ceeb904d9abff9547ff78b10e1 -# 429f719860a5464a8f8fab28935adfaa -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:435 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:437 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:438 -msgid "" -msgstr "" - -# 4fc17435cbef4654b043375581900b1c -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:436 -msgid "" -msgstr "" - -# 08321451516647378f597d4b383671ed -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:440 -msgid "" -"Can you guess what each of these elements do? They create different items on " -"our presets form in JOSM. The first line, ****, does not display anything on our form, but tells JOSM to " -"automatically apply the tag **building=yes** to an object when this preset " -"is selected." -msgstr "" - -# 2aa5efa36a5247db991ee63294d4c4ce -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:446 -msgid "" -"The second line, ****, creates a text field with the key name, " -"as we saw when we looked at the presets XML in the previous section." -msgstr "" - -# 453e60018ae84ee38e783de71a60a94b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:450 -msgid "" -"We have three **** elements and each element has several attributes. " -"key indicates what key should be created for the tag. Text indicates what " -"text should be displayed on our form. Values are the possible values that " -"the user can select in the drop-down box. And we’ve added something new - " -"the attribute **display_values**, which let’s us show different text in the " -"drop-down boxes than the values that will be created. This is useful if we " -"want the form to be more descriptive about the options a user can select, or " -"if we want the display values to be in a different language from English." -msgstr "" - -# 4318442da0694a23ace9d33905246587 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:461 -msgid "" -"Lastly, we’ve added one new element, a **checkbox**. The code for this is " -"simple, ****. " -"This creates a check box on our form. When it is selected, JOSM will add a " -"tag to our object that says **utility:electrical=yes**." -msgstr "" - -# d6580bd13daa4981a7011532d2fe68c4 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:467 -msgid "" -"Finally, let’s save the XML file so that we can load it into JOSM. In " -"Notepad, go to :menuselection:`File ‣ Save`." -msgstr "" - -# df4c10006c2c4952a98aac9779a71014 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:470 -msgid "Type in :kbd:`household_access.xml` as the filename." -msgstr "" - -# 85b6fdeeef36439688ac384c5c873095 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:472 -msgid "" -"In the box that says :guilabel:`Save as type:` be sure to select :guilabel:" -"`All Files`, because we don’t want to save the file as a text document, but " -"rather as an XML document." -msgstr "" - -# 57cf6f41b711414b8c76c7af5d985951 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:476 -msgid "Click :guilabel:`Save`." -msgstr "" - -# 613124cf0d1c4b999bda66a38ee4a9c7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:480 -msgid "6. Try It!" -msgstr "" - -# 85c4b4469d4844378a9a1a708917de86 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:482 -msgid "Now let’s open our presets file in JOSM and see how it looks!" -msgstr "" - -# a0847584bcad48008d62cbac4183d112 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:484 -msgid "" -"Open the Preferences in JOSM and go to :guilabel:`Tagging Presets`, as you " -"did previously." -msgstr "" - -# 36b1f9af68e04ce194092fcc2271b904 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:487 -msgid "" -"On the right side next to Active presets click on the :guilabel:`+` button." -msgstr "" - -# 8146a7f2407b4129ae798902447301b7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:492 -msgid "Type :kbd:`Household Presets` into the :guilabel:`Name` field." -msgstr "" - -# 99c80bbcb5dd43df9f1de2c111e249f7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:494 -msgid "Next to URL / File, open the xml file that you just created." -msgstr "" - -# 28a0b84e02bf48feb072dad8145c4052 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:496 -msgid "" -"Click :guilabel:`OK`, and :guilabel:`OK` again to save your preferences." -msgstr "" - -# 3759ae813db94379ae2a95e43d5142e7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:500 -msgid "Create a new layer and add a point." -msgstr "" - -# 983812e495c244869503e48bb2de6839 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:502 -msgid "Go to the Presets menu. You should see the menu that you just created!" -msgstr "" - -# d3550f27b2b849d6a9953d4fdcad9064 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:508 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/305-using-private-data-store.po b/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/305-using-private-data-store.po deleted file mode 100644 index cbd9a0f0..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/305-using-private-data-store.po +++ /dev/null @@ -1,353 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 4ce32e7093494780aed1b91a3ce309ac -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:10 -msgid "Module 5: Using the Separate Data Store" -msgstr "" - -# 3176d448c93848a49acbda089645ddac -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# ad37363240464e3687fc4defb2a2c049 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:14 -msgid "Understand the functions of the Separate Data Store (SDS)" -msgstr "" - -# 5314a0f67ab0452d907cd51dd8beaf5e -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:15 -msgid "Understand what data should be kept publicly and what should be private" -msgstr "" - -# 8fd094f3152a43d5b781d70ecf8133dc -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:16 -msgid "Install SDS plugin in JOSM" -msgstr "" - -# 88570e8a3d5e4b8284e3386bb61e3d83 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:17 -msgid "Use SDS presets" -msgstr "" - -# 1d7ceb745cf44bfe9137343cab51d982 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:18 -msgid "Use SDS plugin for selecting public and private data" -msgstr "" - -# dcd75f39f0004c55905c59d6b97a28d3 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:19 -msgid "Access online datastore" -msgstr "" - -# 358be8fee6b84b4184511edb57b6542c -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:21 -msgid "" -"OpenStreetMap data is open and available to anyone who would like to access " -"it. However, there may be times when you want to use OSM to collect data, " -"but you would like to keep some attributes stored in a private database. For " -"this purpose, HOT has developed a tool for JOSM known as the Separate Data " -"Store. The SDS allows you to create maps and add data into JOSM the same as " -"always, but when you upload your edits, public data is saved to the OSM " -"database and private data is saved separately to your private data server." -msgstr "" - -# 82fde13ca0e34518b549856f6fe21d25 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:34 -msgid "" -"This module is designed for people who desire to store private geospatial " -"information, such as household income, personal health care data or the " -"location of gold mines." -msgstr "" - -# 78f45810be8d4062bc977f996baf8a26 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:38 -msgid "" -"For liability reasons, HOT does not provide the SDS service itself, but the " -"software is available for installation on a private server. In this module " -"we will utilise the SDS development server to demonstrate its functionality." -msgstr "" - -# 1a420fc939df4a699c84c375d37a46d9 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:42 -msgid "" -"If you are interested to set up your own SDS server, please contact us (team." -"id[at]hotosm.org)." -msgstr "" - -# e866ebf3931e4194aa4e047dd934d70f -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:47 -msgid "1. Installing the SDS plugin" -msgstr "" - -# 25b52782a1e8414c8d913731d5512a5b -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:49 -msgid "" -"This plug-in allows private data to be diverted into the private data store, " -"rather than being saved in the OSM database. A recent version of JOSM is " -"required for the SDS plugin to run. (If you do not have a recent version of " -"JOSM, download and install it from http://josm.openstreetmap.de/.)." -msgstr "" - -# 7e15e8df359f4b9b923172e2a58bef13 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:55 -msgid "Open the preferences menu in JOSM and go to the plugins tab." -msgstr "" - -# c36eae865ac64a37b2167b8e718bb231 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:60 -msgid "" -"Click :guilabel:`Download List` to ensure that all available plugins are " -"listed." -msgstr "" - -# 8d6fd3f88cde4117888522475b6d9185 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:63 -msgid "In the search box, type :kbd:`sds`." -msgstr "" - -# 4f0b6477fe954d618df308193be5b9eb -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:68 -msgid "" -"Check the box next to the plugin to activate it. Click :guilabel:`OK` to " -"download and install. You will need to restart JOSM." -msgstr "" - -# c14d5010d1ac465a841db13f292ba2ed -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:72 -msgid "2. Using the plugin" -msgstr "" - -# 724306ca76e9477fb133da4f0acfef88 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:74 -msgid "" -"Editing the map works just the same as before. The only difference is that " -"when you upload changes, some tags will be automatically saved on the " -"private datastore, and the rest will be saved directly onto OSM." -msgstr "" - -# 19d1c8336a3241bbb455e905f64f256f -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:79 -msgid "" -"After installing the plugin, you need to edit the settings so that private " -"data is directed to the correct SDS server. In this module we will use a " -"demo version of the SDS, but you may also configure the plugin to save " -"private data on your custom SDS server." -msgstr "" - -# f5ae15ada9624ad8aacf0a57bb105605 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:84 -msgid "Go to :menuselection:`SDS ‣ Preferences...`." -msgstr "" - -# 88ec2f4960c8450b9e9faabdc6b574f3 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:86 -msgid "" -"Edit the :guilabel:`SDS server URL` so that it points to :kbd:`http://sds." -"dev.hotosm.org/`." -msgstr "" - -# 07b1546b829848dfa79e65df1f14948f -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:89 -msgid "" -"We will use a sample account to try out the SDS. Enter the following for the " -"username and password:" -msgstr "" - -# b8c6bd38ebc543dfbe372399ebbe08ae -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:92 -msgid "SDS username: test_sds@hotosm.org" -msgstr "" - -# eeafb87ba84d46cd83c431c1eb07f918 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:93 -msgid "SDS password: CyYi3VeuHk" -msgstr "" - -# a42663e2360b4d6bad79237599394a36 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:98 -msgid "" -"Click :guilabel:`Test credentials now`. If it is set up correctly, you " -"should receive a message which tells you the connection is successful." -msgstr "" - -# e5bd698b642b4d0c980de81ebcb134e5 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:103 -msgid "3. How it works" -msgstr "" - -# 93e4cd9435cb4871896f3f117d723637 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:105 -msgid "" -"How does the plugin know which data you want to store on OSM and which data " -"you want to store publicly? Quite simply, it knows because of the tags. " -"Normal tags go to OSM as always, but you can use tags with a special prefix " -"that will be sent to the private datastore." -msgstr "" - -# fcccebb50fb14d009568a144bd4b01a1 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:111 -msgid "" -"By default, any tag that has the prefix **hot:** will go to the private " -"datastore. This can be changed in the SDS preferences menu:" -msgstr "" - -# c69c48fbcca14eac9b9b2142fd2aa1f7 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:117 -msgid "" -"When you create or edit an object on the map, you can apply tags like this:" -msgstr "" - -# e68fb141bde74c7eb32a26905f1e64ed -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:122 -msgid "" -"In this case, the first two tags will be saved on OSM. The third tag, " -"because it has the prefix **hot:**, will be saved on the private datastore." -msgstr "" - -# ab3fa3f86ea24af0b5158a1a1135eb97 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:126 -msgid "" -"You will most likely collaborate with others when using a private datastore, " -"so you will have a standard list of tags to use for the specific data you " -"are collecting. These tags can then be made into a presets menu, which will " -"provide an easy-to-use form for adding both public and private data." -msgstr "" - -# 74c3434196af40f2837ad8bd9c4c2ad2 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:134 -msgid "4. Accessing the datastore online" -msgstr "" - -# 1e9004fa9c2c4ae1b3c82a4de634c699 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:136 -msgid "" -"You can access the SDS online with your username and password. To visit the " -"example SDS, open your browser and go to http://sds.dev.hotosm.org/." -msgstr "" - -# 827645357ae3457bb0710b2870d4f4bd -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:142 -msgid "" -"There are two types of SDS users. Admin users can add new projects or users " -"onto the SDS. Personal users are regular users who are part of a project " -"team which is using the SDS." -msgstr "" - -# cec5e2862b5f41a9bf316007232eb384 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:149 -msgid "" -"Our sample account is a personal account, not an admin, but we can see the " -"online platform where our private data is kept." -msgstr "" - -# 08514f3237694e379c39bbd5f3ebb0be -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:152 -msgid "Let's see what the private data looks like online." -msgstr "" - -# 7161c39c380d46b795b93e5385981afb -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:154 -msgid "Click on :guilabel:`Tag search`." -msgstr "" - -# 5270162a5b4c485d9edc873b9caa8e5e -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:156 -msgid "In the text box, type :kbd:`hot` and click :guilabel:`search`." -msgstr "" - -# c13e424f54814fa0bc965d43ee2924a9 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:158 -msgid "" -"You should see at least one search result. Click on the eyeball button next " -"to it to see complete information." -msgstr "" - -# 57c5412676dc4998b8fb3e7bb1c75412 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:164 -msgid "" -"We can see all the information about this object, both the public attributes " -"from OSM and the private attributes kept in the SDS." -msgstr "" - -# 2175bea6665d4cbb9930ce70f0ebd656 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:170 -msgid "" -"Click on :guilabel:`Expert View` to see the actual tags that are used with " -"this object. Look at :guilabel:`OSM Properties` to see the tags that are " -"saved publicly on OSM." -msgstr "" - -# 53565280ac9c40caad25d98f02995189 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:175 -msgid "5. Common questions" -msgstr "" - -# 9055b2aa37e845e7a3671dda33f9518e -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:178 -msgid "How do we save our data?" -msgstr "" - -# d0679e8e6f0c4d8583cc1fd78ecbab90 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:180 -msgid "" -"The steps are exactly the same as uploading changes to OSM. The only " -"difference is that tags with the prefix you select (such as **hot:**) will " -"be diverted to a private datastore." -msgstr "" - -# 9568dcb7f53a4cb6b3ae4011d71d093d -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:185 -msgid "How many users can use the same account? How can we add users?" -msgstr "" - -# 3cc95cdacc1142e699c15a13ff83277f -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:187 -msgid "" -"There is no limit for user accounts. When you set up your own SDS, you will " -"have an Admin account and can add as many users as you need." -msgstr "" - -# 618fc72fd63a49158031ee5f545f0d69 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:191 -msgid "How much data can we save in our private server?" -msgstr "" - -# 5326a4f8c56b4170a4c4552a71ce4e33 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:193 -msgid "A lot! Basically this depends on the size of your server." -msgstr "" - -# 3fb72e05f40f47e69d1f644142c2ae0b -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:196 -msgid "Is there an easy way to search the private data?" -msgstr "" - -# 92ec3081391e4fc9b7d77a68ef0d1167 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:198 -msgid "" -"After you sign in to the SDS website you are able to perform a tag search, " -"as we have done in this module." -msgstr "" - -# f62a125f21764b08a2fcabcc723c087b -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:202 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/306-editing-wiki-osm.po b/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/306-editing-wiki-osm.po deleted file mode 100644 index d162b7a7..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/306-editing-wiki-osm.po +++ /dev/null @@ -1,1055 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# e3db1c947d6d4a059c441e178baaa0ac -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:10 -msgid "Module 6: Editing the OpenStreetMap Wiki" -msgstr "" - -# 1cf28bcab25c4c838a0dd92c951a656a -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 295c7ed6f029495eb60987c3ea48a5c0 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:14 -msgid "Make an account on the OpenStreetMap wiki" -msgstr "" - -# e699823bc42540169371c60dd56a1528 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:15 -msgid "Understand conventions and rules in developing a wiki page" -msgstr "" - -# e36a008baccc4b59b11a699c71ed51cf -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:16 -msgid "Edit the wiki" -msgstr "" - -# c0575969226840399358eba61d243b30 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:17 -msgid "Upload files and images" -msgstr "" - -# a4780a43700142b9ac513cd569f46741 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:18 -msgid "Translate and revise wiki" -msgstr "" - -# 33ecdbcc42b9461aaa040aee37bf62ea -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:20 -msgid "" -"OpenStreetMap is based around a community of mappers working together. " -"Because of this it is necessary to have a way to communicate with each " -"other, whether it be to organise social mapping events, to discuss different " -"projects related to OSM or to create standards for mapping processes. The " -"main avenue for mappers to do this is through the OSM wiki, a website where " -"users can create different web pages about different topics and in different " -"languages. To see the OSM wiki, visit http://wiki.openstreetmap.org" -msgstr "" - -# a691539e2b0f4c27b4120e639a1ddc21 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:32 -msgid "1. OSM wiki" -msgstr "" - -# 6f0541e758254963816183211183c7ce -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:34 -msgid "" -"A wiki is a website where any user can add pages and edit existing pages. It " -"is based on the same principle as OSM. The only difference is that with OSM " -"users are editing maps, while wiki users are editing text. The most famous " -"wiki is Wikipedia (http://www.wikipedia.org), an online encyclopedia that " -"covers almost every topic imaginable." -msgstr "" - -# 998df35268cd4d49bc5c1d51bc6f4756 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:40 -msgid "" -"The OSM wiki contains information about everything related to OSM. When " -"someone is working on a project that uses OSM, they create a wiki page so " -"that other people can read about their project. The wiki contains help for " -"users wanting to learn more about OSM, for common standards on how to make " -"maps and on how to tag objects on the map, as well as many other things. You " -"have already seen at least one of the OSM wiki pages, which describes all of " -"the most common features that you can add to the map, and how they are " -"commonly tagged. This is the Map Features page: http://wiki.openstreetmap." -"org/wiki/Map_Features" -msgstr "" - -# a8775b0be711460bb32857717af16c70 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:51 -msgid "" -"In this module we will learn how to add and edit pages on the OSM wiki. We " -"will learn the guidelines for contributing, the special markup language for " -"creating a wiki page, and helpful ways for improving the wiki, such as " -"translating important pages." -msgstr "" - -# c5225766c8c04dd9ad9dc9f36bad4e9b -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:57 -msgid "2. Signing up" -msgstr "" - -# 53afe3a82d554fff8443e04ad0036aa6 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:62 -msgid "" -"Go to http://wiki.openstreetmap.org to see the main wiki page. You’ll see a " -"lot of things here, and many links to other pages on the wiki. In the left " -"column are links to some of the main pages. At the top of the page are a " -"list of all the languages in which you can view this page. If it’s " -"available, you can switch the page to your language. Try exploring some of " -"the links on the page to what kind of information is available on the wiki." -msgstr "" - -# b6810418aa93436181af5e07881d1480 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:71 -msgid "" -"It is not necessary to have an account in order to view the OSM wiki, but " -"you will need to create an account if you want to edit or add pages. Note " -"that this is not the same as your OSM account. You must create a new " -"account, although you can use the same name on the wiki as you did when " -"signing up for OSM." -msgstr "" - -# 5ef11ff26ca54ceda94fae638b5332ae -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:77 -msgid "" -"To create a new account, click on :guilabel:`Create account` in the upper " -"right corner of the website. If you already have an account click :guilabel:" -"`Log in` to sign in to the website." -msgstr "" - -# c7314fc08f5444aca1902161b00e4ac2 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:84 -msgid "" -"Fill in the form with the username you want to create, your password twice, " -"your email address, and your real name. In the CAPTCHA box at the top you " -"need to type the words that are shown in the box. This is a security " -"prevention to ensure that you are human, and not a computer." -msgstr "" - -# c47386f561b94f3d9a5a9f65fe784ce7 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:94 -msgid "Click :guilabel:`Create your account`." -msgstr "" - -# 24c90fb245974ac080df63bffa34d420 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:96 -msgid "" -"You will be automatically logged in, and your username and other links will " -"appear in the upper right corner of the website." -msgstr "" - -# b663332fe0044c4990826a037fbf22cb -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:103 -msgid "3. Editing" -msgstr "" - -# bd7818b99a3b443db27c6eabb0eb16ac -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:105 -msgid "" -"Let’s start out by editing our user page. Every user has a page on the wiki. " -"These pages are commonly used to provide information about yourself, your " -"location, for communication between users and for creating test pages and " -"drafts." -msgstr "" - -# 6a5b2a0ae39d4d3d8f7e35f29e74eb12 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:110 -msgid "" -"This is a great place to start learning the basics of editing a wiki page." -msgstr "" - -# 0b5637832ed14f97bde36cb5fba0c2e2 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:112 -msgid "" -"Go to your user page by clicking on your username in the upper right corner. " -"The user in our example is “MapJeff”. Yours will be the username you signed " -"up with." -msgstr "" - -# 41d508263ec84fc58e22c26a126342d2 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:119 -msgid "" -"Right now the page is empty. Click on :guilabel:`edit this page` to add " -"something to it." -msgstr "" - -# 6d7443370cff4356929466dc74028024 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:122 -msgid "" -"We can type anything into the editor to add information to the page. For " -"example, let’s add some basic information and a description. Add information " -"about yourself. Here is an example:" -msgstr "" - -# a4562c8a076a46db9db7df5147957f62 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:129 -msgid "" -"When you have added some text, enter a summary of your changes in the box " -"next to :guilabel:`Summary` and click :guilabel:`Save Page`. The page will " -"look something like this:" -msgstr "" - -# 439eff45649f4266987ba89e456b04ef -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:136 -msgid "" -"This is great because we have successfully saved our text to the page, but " -"it is no good because it not formatted in a good way. In order to make it " -"look nice, we need to learn some of the basic wiki formatting techniques. " -"Click :guilabel:`Edit` at the top of the page, and let’s make some more " -"changes to our page." -msgstr "" - -# 128b76a68f84450da60cda4119feb01b -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:146 -msgid "" -"If you understood the previous module on XML, you will remember that we used " -"**elements** which have opening tags and closing tags. We will do something " -"similar on the wiki, using special characters to surround the text we want " -"to appear a certain way." -msgstr "" - -# 7ae897b759e44d96a62664709e421792 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:151 -msgid "" -"The wiki does not automatically put new lines in unless we ask it to, so we " -"need to put the tag :kbd:`
` at the end of each of our lines in the first " -"section. This will cause a line break to occur." -msgstr "" - -# 75d1307ba13b49b0b250cc9323dc45a0 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:155 -msgid "" -"Then, we want the words “About Me” to appear highlighted since it is the " -"heading of a section. To do this we can surround it like this:" -msgstr "" - -# 05f115bd3136404ea8e37f951c639e83 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:163 -msgid "Now our code looks like this:" -msgstr "" - -# 88fe3961114048e682f01b2d942f4e84 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:168 -msgid "After we save it the page will look nicely formatted:" -msgstr "" - -# fc9f5b4a16824e9f9560bbebdbbdcea1 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:173 -msgid "" -"Practice formatting your text in different ways. A small hint: the buttons " -"above the text box will automatically insert different types of formatting " -"code into your text!" -msgstr "" - -# 8abfee4a7f0445bcba91309c32c5d6ce -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:180 -msgid "" -"Once you have saved your page, it will be viewable by anyone on the " -"internet. The following link goes to our demo page, but if you replace our " -"username with yours, it will go to your user page." -msgstr "" - -# 100bd5a621924524a0a1bd30e9deab77 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:185 -msgid "https://wiki.openstreetmap.org/wiki/User:MapJeff" -msgstr "" - -# 3d53d4f678874e28a55475ee588c5665 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:188 -msgid "4. Wiki formatting" -msgstr "" - -# c79fa8979b3d4228a596b7639e45abe9 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:190 -msgid "" -"In this section we will discuss many of the different ways you can format " -"your information on a wiki page and the appropriate codes to use to create " -"different elements." -msgstr "" - -# 801a579c6ee448a68fa28a1416d72338 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:194 -msgid "" -"It’s a good idea to practise before trying to create an official wiki page " -"that you want others to see, so first let’s create a sub-page under your " -"user page where you can play around and practise editing." -msgstr "" - -# bce3ac7091c4400e990f060ab02f7309 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:198 -msgid "" -"Create a new wiki page by typing in the link to the page that you want and " -"then creating a new page. For now, let’s create a new subpage that we can " -"use to practise our wiki editing. In your web browser go to the following " -"address, replacing “MapJeff” with your own username: https://wiki." -"openstreetmap.org/wiki/User:MapJeff/testpage" -msgstr "" - -# c52fed3cf3544891b5ccb5f9c942b20e -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:206 -msgid "This will take us to an empty page that we can edit." -msgstr "" - -# 067f32741df843ae8eb48a413033abbe -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:208 -msgid "" -"Now let’s look at how to format our text. Use your test page to try out " -"different formatting." -msgstr "" - -# b058dc2ee1fa4298bcea717069b197f4 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:212 -msgid "Simple formatting" -msgstr "" - -# c8e002e0501c4a67ab0c88d03ea2e035 -# 3f1a52db6b1d4d3ab3b81deadef9e959 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:215 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:239 -msgid "Description" -msgstr "" - -# a484b1a5322b4878b68c96ff15b7949e -# a53f761592aa4f67a6bebe12ac3dcf36 -# 6c2d6cc205cb46abbdb185ff85dbd438 -# 0e96072491d14781865acd9914360e4b -# 10b6f3cb08e74c7d85030879d4986c13 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:215 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:239 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:264 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:286 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:330 -msgid "Example wiki source" -msgstr "" - -# 61daf4c6e8634c4eb430bd7365a64545 -# 39cd18b69eed455ca4dcf5926af70b1b -# 58e42f3f0a4345859f612fc3aedfa27f -# 46963e2948c349e3bb81da096d91de8d -# 4c654d40097241e38e053fcc8bf3a7ab -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:215 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:239 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:264 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:286 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:330 -msgid "Result" -msgstr "" - -# e4a34b2adf1d495fb647569e11154106 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:217 -msgid "" -"Surrounding text with two apostrophes (') will display the text in italic" -msgstr "" - -# 0dd4ef7226f14a2c894132f16c1aac0f -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:217 -msgid "''italic text''" -msgstr "" - -# 29a69aa627044319892bbca2ba4f3a1f -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:217 -msgid "*italic text*" -msgstr "" - -# ee55d9bf780b4cd9aeabe797ad989a36 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:221 -msgid "" -"Surrounding text with three apostrophes (') will display the text in bold" -msgstr "" - -# 8eef110eb5344d91ba302ba5aa80eab3 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:221 -msgid "'''bold text''" -msgstr "" - -# 7fec8a3cd6904debbf760522a0103a5a -# e86e9799b900462eb726e3270f934f04 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:221 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:241 -msgid "**bold text**" -msgstr "" - -# 2db24a1e397c4f709eb72fd40c8e2267 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:225 -msgid "" -"Surrounding text with five apostrophes (') will display the text in bold " -"italic" -msgstr "" - -# 920bd55eb72e4e55b6098a75f21871e3 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:225 -msgid "'''''bold and italic text'''''" -msgstr "" - -# 3e14ec7b7898423e87d9b272844e0bd8 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:230 -msgid "" -"Four dashes in a row will create a horizontal line. This should be used " -"sparingly." -msgstr "" - -# 84c828c3a57c430faba9e84501d5c0df -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:230 -msgid "_ _ _ _" -msgstr "" - -# 4c93d572002648c08890f5d190418510 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:236 -msgid "Special formatting" -msgstr "" - -# bd10724fb3844dc48c373d129414e10e -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:241 -msgid "" -"The tags '' and '' disable the wiki-syntax in the enclosed " -"text." -msgstr "" - -# 287c6a2ef391417ab5ffea40938ecf3f -# 0099bcbf10b04f7e9e4625da2656f6e8 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:241 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:243 -msgid "'''bold text'''" -msgstr "" - -# d705e124db2a4790a6b21068b0577ead -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:243 -msgid "'''bold text'''" -msgstr "" - -# db900c42e9194ffa98993ddef6a5b297 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:246 -msgid "" -"Surround your text with '' and the enclosed text will not " -"display on the wiki-page (a comment)." -msgstr "" - -# 640384e79bb141dea26687faa022ba66 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:246 -msgid "Comment! " -msgstr "" - -# 27b86766ff7e42ef8887bbe91f8e557d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:246 -msgid "Comment!" -msgstr "" - -# 84f93f80a2fe432b8fefe2c5bc34f48d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:253 -msgid "Headings and subheadings" -msgstr "" - -# 6b9c4e11cd07484ca484bed7947aec82 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:255 -msgid "" -"A section starts with a header consisting of a line beginning and ending " -"with two or more consecutive equal signs (=). The number of equal signs " -"indicates the nesting level of sections." -msgstr "" - -# 3e20e600278247af9504dff7ed366cd7 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:259 -msgid "" -"When you create sections and subsection headings in your wiki page, the page " -"will automatically have a table of contents section created at the top of " -"the page." -msgstr "" - -# eaee6f99da56416d9f80f7c6511f5a5e -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:266 -msgid "= = =Header 2= = =" -msgstr "" - -# 849012481f9d41c6a3128f0bca0b4fc4 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:266 -msgid "Header 2 (try this out!)" -msgstr "" - -# 634ba4d1e6354b54bd517294bc1eb601 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:268 -msgid "= = = =Header 3= = = =" -msgstr "" - -# 95f4d77546d142a59156d341b1433211 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:268 -msgid "Header 3" -msgstr "" - -# 3f04998362d34650907f7ed17ffce5b3 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:270 -msgid "= = = = =Header 4= = = = =" -msgstr "" - -# 46eaa3375ffd4dc3b1abb7d169b9ba3d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:270 -msgid "Header 4" -msgstr "" - -# cfb8fd2bc58941e6be291319948f6cae -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:274 -msgid "Lists" -msgstr "" - -# a522fc24524b4712995d9217d3e068b0 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:276 -msgid "" -"It’s easy to create a bullet list. In order to make an item in a list, you " -"simply need to use a star (*) as the first character on one or more " -"consecutive lines." -msgstr "" - -# 0a12acb957b6451e9768b13da3e2e97c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:280 -msgid "" -"To create an ordered list, simply use number signs(#) instead of stars(*). " -"Create nested lists by using a combination of stars and number signs. Nested " -"lists display as lists with different levels of indentation. When nesting " -"lists you may mix bullet lists and numbered lists on each level." -msgstr "" - -# 7965c015f18545eaa595b973b61400cd -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:288 -msgid "\\* Item in a bullet list\\" -msgstr "" - -# e94c5b328a6e4341a289d3d12cfe2b82 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:290 -msgid "\\* Another item\\" -msgstr "" - -# 9a45a1dfb44547c393e1b528e2094325 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:288 -msgid "Item in a bullet list" -msgstr "" - -# 6f814512c6774beca6e96ea1b969efdb -# 6067482239a44c2eb375b5f8cdee42b6 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:290 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:294 -msgid "Another item" -msgstr "" - -# 66ccd840f5774e8c8df8a4ad2df10685 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:292 -msgid "\\# Item in a numbered list\\" -msgstr "" - -# 9319433952a74c68a7b6f3dae585fcde -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:294 -msgid "\\# Another item\\" -msgstr "" - -# b69186305a5c49ed93c3a92037e8afbe -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:292 -msgid "Item in a numbered list" -msgstr "" - -# b09fdbd04a494f15bd1f23e7eb686aa1 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:296 -msgid "\\* This list has\\" -msgstr "" - -# db277db8dc9c460c82d69d6593ec503e -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:298 -msgid "\\*# two levels.\\" -msgstr "" - -# 7070037ecd8f47d890ab8c21f6ec9267 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:300 -msgid "\\*# Numbers on the second level, and\\" -msgstr "" - -# b841dadaed3f4c3b86bfaeffdf6bda59 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:302 -msgid "\\* bullets on the first level\\" -msgstr "" - -# 5c64d64f0dc54e2f844a304bde9fead8 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:296 -msgid "This list has" -msgstr "" - -# 14912d9320b54449b70dceb3f8538674 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:298 -msgid "two levels." -msgstr "" - -# 9b0ca02b792343f3a6a0c9813f155a98 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:300 -msgid "Numbers on the second level, and" -msgstr "" - -# c9e53b6c21e64a0f9604bbe7ed1029dc -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:302 -msgid "bullets on the first level" -msgstr "" - -# 55f6c7daee1545f7ac2e7d2774493e5b -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:306 -msgid "Links" -msgstr "" - -# 844dc75fc6644010bd944eb8099efcc9 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:308 -msgid "" -"Links within the OSM wiki are simple. Simply surround the name of the wiki " -"page you want to link to with double brackets [[wiki-link]]. You could add " -"different text for the link by adding a pipe symbol (|) and the text will " -"appear as the link text. If you want a special language version of a wiki " -"page, you should prefix the page name with the two-letter language code and " -"a colon (:). For example, to link to the German version of a page, you would " -"use [[de:wiki-link]]." -msgstr "" - -# 660ffb2429e745f6965593ef6adcc3ad -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:318 -msgid "" -"If you want to link to an article on Wikipedia, prefix the name of the " -"article with “wikipedia:”. For example, [[wikipedia:article-name]]. If you " -"want to link to a wikipedia article in another language, you can add the " -"language code like this: [[wikipedia:de:article-name]]." -msgstr "" - -# 7fc5f00bbfbf47ff8d5c1b37a7ae1a99 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:324 -msgid "" -"Finally, if you want to create an external link, simply type the URL and it " -"will display as a link. If you want to change the link text, you can use one " -"set of brackets to change the text which links to your URL [external-link " -"link-text]." -msgstr "" - -# 271f9a0b6e314c31834a628dd5e4f20f -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:332 -msgid "[[Map Features]]" -msgstr "" - -# 4f120ba7f6c34ff58cdfc318688e2b51 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:334 -msgid "[[Map Features | different text but links to same]]" -msgstr "" - -# a0a118f6f98843e8aee2bf7b065cf418 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:332 -msgid "`Map Features `_" -msgstr "" - -# a06b24227b4d44af9e84ceba9e5fd792 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:334 -msgid "" -"`different text but links to same `_" -msgstr "" - -# 30dba9bbfc2c4e43a666e3cb8ca7e884 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:336 -msgid "[[wikipedia:OpenStreetMap]]" -msgstr "" - -# 3969b6e1c57a4f4c95b04d7dc79c9379 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:338 -msgid "[[wikipedia:OpenStreetMap | different text]]" -msgstr "" - -# 47cca51cba1845099ffa66d836c98449 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:336 -msgid "" -"`wikipedia:OpenStreetMap `_" -msgstr "" - -# 878aa6e76c35467097a77b202275daf4 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:338 -msgid "`different text `_" -msgstr "" - -# ccd2381671b14380a9282958b729d068 -# cf5ed0d57c43491a82354bf63c9a6308 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:340 -msgid "http://fieldpapers.org" -msgstr "" - -# 4beffe826e6942c6b31107da767f521d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:342 -msgid "[http://fieldpapers.org | other text]" -msgstr "" - -# 1994083724dd4865ab6e43fcfe259f07 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:342 -msgid "`other text `_" -msgstr "" - -# ebd3e81b265a4363aeb4998d4e46f819 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:346 -msgid "Tables" -msgstr "" - -# 2bf4c12bca344543a9ef409022e2ddbc -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:348 -msgid "" -"Tables are probably the trickiest thing to create in a wiki, but easy once " -"you understand how it works. First, you need to understand that a table is " -"really a grid that has some number of rows and some number of columns, and " -"one type of information is contained horizontally in rows and another type " -"vertically in columns." -msgstr "" - -# 61eabc0f9736409f85dc95e5a96e46fb -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:354 -msgid "A basic table needs the following parts:" -msgstr "" - -# 01b76c4ada154843afe55e9602e124e8 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:356 -msgid "" -"A line with the first two characters '{\\|' indicating the begin of a table." -msgstr "" - -# f7f742d0841d4a29926cb96e4ef0d54d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:357 -msgid "" -"An optional line with the first two characters '\\|+' for the caption of the " -"table." -msgstr "" - -# 8d6105362aef4f1a93b2aa2034aeda1c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:359 -msgid "" -"One or more table rows, beginning with '\\|-' and usually no other content." -msgstr "" - -# 58aa28d655fe40beb9c9d23bf87b399d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:360 -msgid "" -"After each table row one or more lines with table cells and their text/" -"content. A table cell has as the first character a pipe symbol (\\|) and the " -"second character cannot be either plus (+) or minus (-) because these two " -"are reserved for caption and table row respectively." -msgstr "" - -# 89b9e87aa378446991cf31c3ecdd7d4b -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:364 -msgid "" -"A line with the first two characters '\\|}' indicating the end of a table." -msgstr "" - -# 6579ca222f69452f8cae1a57f606d64d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:366 -msgid "" -"It is good practise and increases readability to use a space as the second/" -"third character, thus avoiding any ambiguity." -msgstr "" - -# 2fde27e749f0488f8a9b0f2a62869b16 -# 9cea61ad86f642028bd412392e07f39d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:369 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:386 -msgid "**Example wiki source** ::" -msgstr "" - -# 333f9bf41baa45febf412a7b6ada83ec -# af975730748c4726b8d7493f7ba3663c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:382 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:398 -msgid "**Result**" -msgstr "" - -# 78a43f87a98e445cbb802c80030f4971 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:403 -msgid "" -"Play around with all these different techniques for formatting your wiki. To " -"see an example of all of these things, take a look at the test page we " -"created here: https://wiki.openstreetmap.org/wiki/User:MapJeff/testpage" -msgstr "" - -# 64fb510450e84b238a370f58fe861692 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:407 -msgid "" -"Compare the wiki text to the way it is formatted when you are viewing it. " -"Find more information on editing at http://wiki.openstreetmap.org/wiki/Help:" -"Wiki-Editing." -msgstr "" - -# 8fa94fceaec147199288253657cd7718 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:412 -msgid "5. Creating a new page" -msgstr "" - -# cc980a21c15d4d85b1ae130c48d747b6 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:414 -msgid "" -"You can create any wiki page the same way that you have created your user " -"page. However, before you run off creating hundreds of pages, it is " -"important to understand a few guidelines for how to best contribute. Some " -"key things to keep in mind are:" -msgstr "" - -# 9375f68c3edd42a5a56a19018719c7e4 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:421 -msgid "Before creating a page" -msgstr "" - -# 4ee636e54fa74b68acbd2cc908cfcefc -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:423 -msgid "" -"Don’t duplicate. When you want to create a new wiki page, do a comprehensive " -"search of the wiki to ensure that someone else hasn’t already created a page " -"about the same topic. You can search for existing pages using the search box " -"in the upper right." -msgstr "" - -# 7ef4573e5a40444d8bcae3ae0259d855 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:429 -msgid "" -"If a page that you want to create already exists, but you think it could be " -"better, you should improve it, instead of creating an entirely new page." -msgstr "" - -# 1d3d1444e9fb469dae6d511e2fe2cc38 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:432 -msgid "" -"Choose a descriptive name, capitalise new words and don’t use spaces or " -"dashes. The Map Features page for example, is named Map_Features, making the " -"link: http://wiki.openstreetmap.org/wiki/Map_Features." -msgstr "" - -# 1e6022fc1f634708ad5fbbdff559752c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:438 -msgid "When structuring a page" -msgstr "" - -# 97ae38609c874fb3b721cef8a677190c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:440 -msgid "Divide your page into sections and subsections." -msgstr "" - -# d035d97bfe794a36ab01519a14c0078b -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:442 -msgid "" -"Create an “Introduction” section at the top of the page to give a brief " -"explanation of the page." -msgstr "" - -# 56f94ddced254b9891a8dd686f9c2436 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:445 -msgid "" -"Format different parts of your pages as tables or lists, when appropriate." -msgstr "" - -# c75512151ca34c81be07e9ad0f581dcb -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:447 -msgid "" -"When in doubt, look at other pages on the wiki for inspiration about how to " -"format things. Remember that you can look at the code for any page by " -"clicking on the edit tab and seeing how other users format their text." -msgstr "" - -# 29b3e8d458d54cd0a8913ef5cb26c6e1 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:453 -msgid "6. Uploading files and images" -msgstr "" - -# 7f06ec0bad5f480595c9313024e620bf -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:455 -msgid "" -"To add or insert files or images on wiki pages, first we must upload the " -"file itself to the wiki." -msgstr "" - -# 0089417e17ec41ccb78990579b1494a1 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:459 -msgid "Uploading files" -msgstr "" - -# 7a33af715f9d46de8eb8264c8e2a418c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:461 -msgid "Go to https://wiki.openstreetmap.org and make sure you are logged in." -msgstr "" - -# 5bedf7db13a44ddc89d2232825925d49 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:463 -msgid "" -"Click :guilabel:`Upload file` on the left side of the screen, under the " -"Tools menu." -msgstr "" - -# 5c4aa003261844ef93a98bb1a10c7ab5 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:469 -msgid "" -"Click :guilabel:`Choose File`. Find the file that will be uploaded from your " -"computer." -msgstr "" - -# 5efad4546a7a43b08301a7380cf3979c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:475 -msgid "" -"Optionally, you may enter a new filename for the file, a summary, and a " -"licence." -msgstr "" - -# 24cf3306e6fb48a3943b9b01516b58ab -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:478 -msgid "" -"After selecting the file, click :guilabel:`Upload file` at the bottom of the " -"page. A page like this will appear, with your file shown:" -msgstr "" - -# 741e523866cf42aeac0551ea16406c2e -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:485 -msgid "" -"This shows that your file or image uploaded successfully. The next step is " -"to add it on to a wiki page." -msgstr "" - -# 0454521cf36c472daaf3fcc91f5e293d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:489 -msgid "Insert file / image in the wiki page" -msgstr "" - -# 6ae28012a6d9445884e88915dc53af9b -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:491 -msgid "" -"Go to the page where you wish to insert your file of image, and click :" -"guilabel:`Edit`." -msgstr "" - -# 6a3498ee4ff2451782a123958b1788bb -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:494 -msgid "" -"Copy the filename that you uploaded previously, for example: :kbd:`File:" -"Mapping jakarta.JPG` and :kbd:`File:Pemetaan dengan OSM.pdf`." -msgstr "" - -# a94209fa98aa4fb5aa2864bac13642a7 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:497 -msgid "" -"Paste the filename(s) you have uploaded into the editing box, with two sets " -"of brackets around it:" -msgstr "" - -# 24a566510d0b458d936995e5b54906ec -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:503 -msgid "Click :guilabel:`Save page`." -msgstr "" - -# 65e7690f4cdd4f19b47b2486c9b681db -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:505 -msgid "In our example, the result looks like this:" -msgstr "" - -# 85332991295040b88e2d261629c1abb1 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:511 -msgid "7. Translating pages" -msgstr "" - -# dd2ee2ac4994435c96098aad773e46a8 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:513 -msgid "" -"One very useful thing that can be done on the wiki is to translate important " -"pages into your language. As you’ve already seen, many wiki pages have links " -"at the top where you can switch languages. However, this is only available " -"for pages that have been translated, and that include a special tag at the " -"top - {{Languages|page_name}}" -msgstr "" - -# b52aa7db84cd47b591812d5e58855b68 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:520 -msgid "" -"When developing the OSM community in your country, it is very useful for key " -"wiki pages to be translated into your language. Adding translated pages is " -"easy, as we will see here." -msgstr "" - -# 61c6a185cd244ba5b73c99fa75fbd400 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:524 -msgid "" -"The names of pages are always created in English, but different versions of " -"the same page can be created by adding a language code into the URL. For " -"example, the Map Features page is at http://wiki.openstreetmap.org/wiki/" -"Map_Features" -msgstr "" - -# 9ee546fd67f24f2e91b5d745d2cb0db0 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:529 -msgid "" -"If you want the Spanish version of this page, it is available at http://wiki." -"openstreetmap.org/wiki/ES:Map_Features" -msgstr "" - -# ce05d550bb1f4532a792ac930cd3381e -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:532 -msgid "" -"If a page exists that you want to translate, simply visit the URL with your " -"language code and a colon (:) preceding the page name. For example, if we " -"wanted to translate this page into Indonesian, we would visit http://wiki." -"openstreetmap.org/wiki/ID:Map_Features." -msgstr "" - -# 62a9bce403144a40b2b3cfeb4226b1b3 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:537 -msgid "Then click :guilabel:`Edit` to create this page." -msgstr "" - -# 9b1b5f2b56f94524ac2bd020d7e713c9 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:539 -msgid "" -"The easiest way to add a translation is to go to a page in English, click :" -"guilabel:`Edit`, and copy all of the wiki text to your Clipboard. Then edit " -"the page in your own language, pasting in the original English text and " -"translating it piece by piece. This will allow you to keep all of the " -"original formatting and links correctly, but translate the English text into " -"your own language." -msgstr "" - -# 8e4a9d573a304e2b8b39b87913e15e67 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:547 -msgid "8. Watching pages" -msgstr "" - -# 06d0d8b72d3d4c21a60bc282e47b0ec7 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:549 -msgid "" -"You may want to keep an eye on pages that you have edited yourself, or that " -"you have an interest in. To do this, you can add specific pages to your :" -"guilabel:`Watchlist` which keeps a record of recent changes to pages, so " -"that you will know when others have edited them." -msgstr "" - -# 8ccd023a9f4a42289f201fddc7765db0 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:555 -msgid "" -"To add a page to your watchlist, click on the star at the top of the page " -"section:" -msgstr "" - -# b45573a66bd24cb5b7ed4104bccbbf69 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:561 -msgid "" -"Then, you can view your watchlist by clicking on :guilabel:`Watchlist` at " -"the top of the page:" -msgstr "" - -# 3464d8c02e5841489488876911cb750c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:567 -msgid "" -"On the Watchlist page you choose to show changes to your watched pages " -"within the past hours, days or since you started watching the page." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/index.po b/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/index.po deleted file mode 100644 index 0e83af26..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/osm/index.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# e636a1a85f7647f1a41a7f9205dc9183 -#: ../../source/training/old-training/intermediate/osm/index.rst:8 -msgid "Unit 3: Data Collection Using OpenStreetMap Intermediate Level" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/400-introduction.po b/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/400-introduction.po deleted file mode 100644 index bc1e9c10..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/400-introduction.po +++ /dev/null @@ -1,234 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 3e0c547a385a4eae8700a1fc57bd1edf -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:10 -msgid "Introduction" -msgstr "" - -# e47c11362a524a1e80fa9fefb6a3e1e0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:13 -msgid "Disclaimer" -msgstr "" - -# 849144f984ff4a369230382da0e4c810 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:15 -msgid "" -"This document is an initial draft and is still in the reviewing phase by " -"these parties:" -msgstr "" - -# a1f5f511de7d40b9b0ee4a4c7271985d -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:17 -msgid "Badan Nasional Penanggulangan Bencana (|BNPB|)" -msgstr "" - -# 662afd368a4b4a5fb3ae46288e82d979 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:18 -msgid "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" -msgstr "" - -# 889f2b60f42c49c9be19d5f43cac46b0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:19 -msgid "Humanitarian OpenStreetMap Team (|HOT|)" -msgstr "" - -# 7cec1f77f02848c48e1ea9c7e4ed144d -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:21 -msgid "" -"All contents and materials in this document may be changed without public " -"notice." -msgstr "" - -# b1b0acbc24594bae9fe57cdb7445fcf9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:25 -msgid "Licence" -msgstr "" - -# e22bcf288c4a48beacd4fa9c45897b47 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:29 -msgid "" -"All contents and materials in this document are licensed as Creative Commons " -"Attribution Australia (CCbyA)." -msgstr "" - -# eae3f44772374baa914000e0d78d9fac -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:32 -msgid "You are free:" -msgstr "" - -# 970794adab0448c7b58421613595f9b9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:34 -msgid "to copy, distribute, display, and perform the work" -msgstr "" - -# a9291574e5c2403e8c378c2eff53dd84 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:35 -msgid "to make derivative works" -msgstr "" - -# 7aa0021d1fcb49db98fdc67617fa789c -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:36 -msgid "to make commercial use of the work" -msgstr "" - -# 715ccdfa47e247e38c2adb4044668175 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:38 -msgid "You must give the original author credit." -msgstr "" - -# 74f7194f833e44e1b184e1d3ac6cf43c -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:40 -msgid "" -"More information about CCbyA License: http://creativecommons.org/licenses/" -"by/3.0/au/deed.en_GB" -msgstr "" - -# 0ba7ba0e1ea04f72b06757108e31fb55 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:44 -msgid "About Us" -msgstr "" - -# 6f6c2b1e75344651a5b33368786fcb87 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:46 -msgid "Badan Nasional Penanggulangan Bencana (BNPB)" -msgstr "" - -# 6f29b432b9e94042b52f80c6a90a930b -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:50 -msgid "" -"BNPB is Indonesia’s National Disaster Management Agency. |BNPB| is a non-" -"departmental ministerial-level government agency, tasked with providing " -"guidance and direction to the efforts of disaster management that includes " -"disaster prevention, emergency response, rehabilitation and reconstruction " -"in a fair and equal way. |BNPB| functions as a policy maker regarding " -"refugee/IDP management for effective and efficient response. It coordinates " -"the implementation of disaster management activities in a planned, " -"integrated and comprehensive way." -msgstr "" - -# b28a3a76cf87424ebbc9a44f286c3b40 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:60 -msgid "http://bnpb.go.id" -msgstr "" - -# 9c8f510bde6747d4bbf6a5c2d4498727 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:63 -msgid "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" -msgstr "" - -# ff54f6750d024dbbae82d5b89baa36ca -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:67 -msgid "" -"The Australia-Indonesia Facility for Disaster Reduction (|AIFDR|) is a joint " -"initiative between the governments of Australia and Indonesia. They work to " -"strengthen Indonesia's ability to reduce the impact of disasters. The " -"Australian and Indonesian governments at a special ceremony on 15 July 2010 " -"launched the Australia-Indonesia facility. The launch marks an important " -"event in the strong relationship now shared by both countries and their " -"united commitment to better prepare for and respond to natural disasters in " -"Indonesia." -msgstr "" - -# a7a5950497fa4c30b342802d9bc67d9f -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:76 -msgid "http://aifdr.org" -msgstr "" - -# 6b4c6e5e7d7e4be296002e2f47a608a2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:79 -msgid "Humanitarian OpenStreetMap Team (HOT)" -msgstr "" - -# 58f0fb0a0ab64766a9bf2d2671bf9a6a -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:83 -msgid "" -"Free, collaborative maps are uniquely valuable to humanitarian work, " -"especially in places where base map data is often scarce, out-of-date, or " -"rapidly changing. OpenStreetMap is a web project to create a free and open " -"map of the entire world, built entirely by volunteers surveying with GPS, " -"digitising aerial imagery, and collecting and liberating existing public " -"sources of geographic data. The Humanitarian OpenStreetMap Team (|HOT|) is " -"an initiative to apply the principles and activities of open source and open " -"data sharing towards humanitarian response and economic development." -msgstr "" - -# 21ce44dad0064bc8aa23cb3d24262710 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:92 -msgid "http://hot.openstreetmap.org" -msgstr "" - -# f7d9e7655212416aae6739d57edc006f -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:95 -msgid "Universitas Gadjah Mada" -msgstr "" - -# 9a7ee698ff6447e7b8d54c600761fb97 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:99 -msgid "" -"Universitas Gadjah Mada (internationally known as Gadjah Mada University, or " -"UGM) is a top research university located in Yogyakarta, Indonesia. The " -"Department of Geodetic Engineering and Faculty of Engineering focuses on " -"education, research, and community services related to geodesy and geomatics " -"engineering, including acquisition, analysis, and uses of detailed and " -"accurate geospatial data and large-scale maps using open source geospatial " -"software for disaster management." -msgstr "" - -# 40d616d1222847edaf8f43686bc993ad -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:107 -msgid "http://ugm.ac.id" -msgstr "" - -# 2717c8b33f79438d93ae4804659e70a9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:111 -msgid "Preface" -msgstr "" - -# 2fefb69118fc4731931584ec79bd5d0c -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:113 -msgid "" -"By now you should be adept in data collection techniques and have a solid " -"foundation in analysis with QGIS. In this unit we will be focusing again on |" -"project_name| and QGIS skills that aid in contingency planning." -msgstr "" - -# b5da1a3b18df4f31ac0a15b5ff4d0496 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:118 -msgid "" -"First, we will undertake a brief review of unit 2, to solidify the QGIS " -"skills that we studied previously. Then we will begin working on another |" -"project_name| project using flood data as our hazard. We will consider the " -"best possible evacuation routes and locations for IDP camps, calculate " -"damages and losses and learn how to display them on a map." -msgstr "" - -# beae0b301b734d7baf23491549d4eec1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:125 -msgid "" -"This unit covers much of what we have been working toward. We will bring " -"together the data which we now know how to collect in OSM, QGIS spatial " -"analysis skills and the power of |project_name| to help develop effective " -"and informative contingency plans." -msgstr "" - -# 9b036a2bdce443cc864481853afc4342 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:131 -msgid ":ref:`Go to first module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/401-review-qgis.po b/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/401-review-qgis.po deleted file mode 100644 index 0b9d451a..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/401-review-qgis.po +++ /dev/null @@ -1,388 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# d6c4d0219a6c45f8969380ff70f8728d -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:10 -msgid "Module 1: QGIS Review" -msgstr "" - -# 747253862c4048ed8ac5789404125592 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# cadcd7f2b9674951880dbde8f7e028f2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:14 -msgid "Identify data types in QGIS" -msgstr "" - -# 4f936e7355f84b06938046d5fe700467 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:15 -msgid "Understand symbology" -msgstr "" - -# 4d3d6c64d4974605b3321f6692fbe273 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:16 -msgid "Understand map layout" -msgstr "" - -# d848cdd28b2247e39f25479f991e2362 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:18 -msgid "" -"Before we dive deeper into |project_name|, we will review the QGIS " -"techniques that we covered in Unit 2. We will once more go over some of they " -"key aspects of QGIS, including adding vector and raster layers, symbolising " -"layers and using the Print Composer. If you feel competent in all of these " -"areas, feel free to jump ahead to the :ref:`next module `, but otherwise follow along for a brief review!" -msgstr "" - -# 23db30363e304562a357798269f3de69 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:28 -msgid "1. Data types in QGIS" -msgstr "" - -# 236421619aeb460c92ccd6c8e9d255a3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:30 -msgid "" -"As you may recall, there are two types of data that we often use in QGIS: " -"raster and vector data. Raster data is characterised as an array of data " -"which consists of rows and columns, like the pixels in an image. Vector " -"data, on the other hand, consists of discrete features made of points and " -"lines, and their position is defined by coordinates." -msgstr "" - -# 17f6447866804c6697c2509790712365 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:38 -msgid "1.1 Adding vector data" -msgstr "" - -# dd1cf5f924154c36a6ddfe9148875e3b -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:40 -msgid "Let’s add vector data to a new project." -msgstr "" - -# 5edc5f2bead148aaa537c7672b46365b -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:42 -msgid "Open a new QGIS project. Your map and Layers panel should be empty." -msgstr "" - -# b98d3af00a1a41468f6503248a762b4b -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:47 -msgid "" -"There are two ways to add a new vector layer to your project. Navigate to :" -"menuselection:`Layer ‣ Add Vector Layer...` on the menu or click on the :" -"guilabel:`Add Vector Layer` button on the toolbar:" -msgstr "" - -# 9f9e368b4b7c4eb0b875cc081f808a5d -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:55 -msgid "" -"If you can’t find the toolbar button, right-click the toolbars and make sure " -"that the box is checked next to :guilabel:`File`." -msgstr "" - -# 6343f3f6e8dc40b480ec4c58603c2a50 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:58 -msgid "The :guilabel:`Add vector layer` dialog looks like this:" -msgstr "" - -# c6aed03b593e42649428d2d6606a4140 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:63 -msgid "" -"Click on the :guilabel:`Browse` button and navigate to your exercise data. " -"Go into the :file:`qgis/Sleman/` directory and select :file:" -"`Jalan_Sleman_OSM`, :file:`POI_Sleman` and :file:`Kecamatan_Sleman`. Select " -"multiple files by holding the :kbd:`CTRL` key on your keyboard as you click " -"each file. Click :guilabel:`Open` and then :guilabel:`Open` again." -msgstr "" - -# e0cb4522d80f4ab8bb0c68f60b17f545 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:71 -msgid "Your map canvas will now look like this:" -msgstr "" - -# ee9a6cdf381749f9897afce1edc21736 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:76 -msgid "Great! You’ve added some vector data to your map." -msgstr "" - -# defd7feac9304f20bfc17b3b94532dea -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:78 -msgid "Remember that there are three kinds of vectors:" -msgstr "" - -# 972b78f1653945158a71d21ab2de093c -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:80 -msgid "points" -msgstr "" - -# c665a8cf4a2c49e18a27dac75d71663a -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:81 -msgid "lines" -msgstr "" - -# 7629485dd85343b19befd9cbea737dfe -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:82 -msgid "polygons" -msgstr "" - -# 9f073691115d466d94736191a7186765 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:84 -msgid "We have just added one layer of each type." -msgstr "" - -# fbb704bfdfdf40a0906c72588b250ef5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:88 -msgid "1.2 Adding Raster Data" -msgstr "" - -# 24a5504da1274709b82c669400b935c7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:90 -msgid "" -"Raster data has different characteristics than vector data. Raster data is " -"composed of rows and columns which form small boxes (known as pixels). The " -"pixels contain information, which is usually expressed as greyscale or " -"colour. The information in each pixel could be the altitude of a point, the " -"size of the population, the area’s colour or another value." -msgstr "" - -# ce67e4aaa0804a2f8003d76068b52a67 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:98 -msgid "" -"There are two ways to add a new raster layer to your project. Navigate to :" -"menuselection:`Layer ‣ Add Raster Layer...` on the menu or click on the :" -"guilabel:`Add Raster Layer` button on the toolbar:" -msgstr "" - -# 495ae578de1c4a36bce7cd464c9a936a -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:106 -msgid "" -"Navigate to :file:`qgis/Sleman/SRTM/` and select :file:`SRTM_Sleman.tif`, " -"which depicts the topography of the area." -msgstr "" - -# 8ae22188426e4c9d9a862c8bbb42eaf7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:112 -msgid "Click :guilabel:`Open`. The raster will be added to our project." -msgstr "" - -# ad36befe908d4e72b124c572df3efdea -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:118 -msgid "Next we will symbolise the data to make it easier to understand." -msgstr "" - -# 29b28960ccc449fda5bb2436ccaedbf3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:121 -msgid "2. Symbolising data" -msgstr "" - -# a01578ea9d5f48cba6d22ce8a140c035 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:123 -msgid "" -"Layer symbology is useful so that users can easily understand our maps. It " -"is also important to make our maps more attractive. Your choice of a layer’s " -"symbology is very important to deliver the right information." -msgstr "" - -# 814d90a23d254dd39c5a19ad955c24ae -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:129 -msgid "2.1 Symbolise the districts" -msgstr "" - -# 845f5f162a5c45d081096b45011c104c -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:131 -msgid "Let’s symbolise the district layer that we’ve added:" -msgstr "" - -# 1ca9be7385554f48baeea94679f80bab -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:133 -msgid "" -"Right-click on the :guilabel:`Kecamatan_Sleman` layer, and click :guilabel:" -"`Properties`, or double-click the layer name." -msgstr "" - -# b269cfc449a04576b43d9f1692fdbda2 -# 9859f0a4b29d44ab8d254277420da3e7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:136 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:172 -msgid "Click on the :guilabel:`Style` tab." -msgstr "" - -# f8a289e28f0b4b6b8f11225667bf9fe8 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:141 -msgid "" -"Notice all the options that we have to change the appearance of this layer. " -"We can change the layer’s transparency or its colour, or make even more " -"detailed variations by clicking on :guilabel:`Change`." -msgstr "" - -# 5249df4d944e4da592a22e779cb0e103 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:147 -msgid "" -"We can also base the symbology on the data contained in the layer itself." -msgstr "" - -# ef958056e7954dfd9a40f1fc47020e6b -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:149 -msgid "" -"Click on the box that says :guilabel:`Single Symbol` and change it to :" -"guilabel:`Categorized`." -msgstr "" - -# 86a96270acc148949fb108d1cd12731c -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:155 -msgid "" -"Change the Color Ramp to a set of colours that you like, and then click :" -"guilabel:`Classify`. It may look something like this (although your colours " -"will be different):" -msgstr "" - -# 39b23b1a18b14b199e0db6c2f9b4770c -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:162 -msgid "Click :guilabel:`OK` to apply the style changes." -msgstr "" - -# f86cee457b814b46acfe498b3a8a55d7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:165 -msgid "2.2 Symbolise the roads" -msgstr "" - -# 049eebb29c7b43de8107f39dba7e88f4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:167 -msgid "Next, let’s symbolise our roads layer." -msgstr "" - -# 13ce5d35407c46a9bb5b283cc315bd2a -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:169 -msgid "" -"Double-click :guilabel:`Jalan_Sleman_OSM` in the Layers panel to open the " -"Properties window." -msgstr "" - -# c05aadce22bb42b38a932f461bee3b8a -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:174 -msgid "" -"Adjust the colour as you like, or choose one of the style presets that are " -"displayed at the bottom." -msgstr "" - -# 5a7f103d3ac341e29fca7ed9ba7a49ee -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:177 -msgid "" -"Feel free to experiment. As you make changes, click :guilabel:`Apply` to " -"view your changes on the map." -msgstr "" - -# 8d6365f9fa854293b177e6cc3b01b939 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:180 -msgid "" -"If you use multiple symbologies (as we covered in Unit 2), your roads may " -"end up looking like this:" -msgstr "" - -# 2a9f757ff90146e9acec2eecdb491257 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:186 -msgid "" -"This isn’t ideal. To fix this, open the Properties window and on the :" -"guilabel:`Style` tab click on the :guilabel:`Advanced` button and choose :" -"guilabel:`Symbol Levels`. Check the box next to :guilabel:`Enable symbol " -"levels`." -msgstr "" - -# 5f95999f72ea4583b3a1fd1a3eecf008 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:194 -msgid "The roads will then look correct:" -msgstr "" - -# fa861df17e6c4a339deab3db8d2af428 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:199 -msgid "" -"Try editing the symbology of the :guilabel:`POI_Sleman_OSM` layer on your " -"own." -msgstr "" - -# ac1fcc4c6a354e4a9eadb7f132b49a3a -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:201 -msgid "Your map should end up looking something like this:" -msgstr "" - -# 5d9ccd8b332d43f3bfa477f4ba817615 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:207 -msgid "3. Map layout" -msgstr "" - -# 8cf0a5d20d174294873ce5c77aa0b199 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:209 -msgid "" -"Your map is a medium to communicate information (as well as your ideas). " -"Layer symbology is used to convey the content of your data so that it can be " -"easily understood by the user. By creating a map layout, you are going a " -"step further in using your map as a way to convey information." -msgstr "" - -# b886c1e054e94a4d90dbaebe37698951 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:215 -msgid "" -"For a full review of Map Composer, refer back to :ref:`Unit 2 `. For now, let’s create a basic layout with a legend." -msgstr "" - -# eb58828048b64edcbca7400ff1c32cfb -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:219 -msgid "" -"Start a new :guilabel:`Map Composer` window by going to :menuselection:`File " -"‣ New Print Composer`." -msgstr "" - -# 5f4c127deffe4881af86007c8c56071a -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:222 -msgid "" -"Click the :guilabel:`Add new map` button and draw a box on the left side of " -"the canvas." -msgstr "" - -# dab00a478d6b4de5838510ac2e850e29 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:228 -msgid "" -"Now click on the :guilabel:`Add new legend` button and draw a box on the " -"right side of the canvas." -msgstr "" - -# 7325114d1e4e49ff82010a74220fa901 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:234 -msgid "Your map will look similar to this:" -msgstr "" - -# 9f20865cc7a145daa49e4aeb82e897df -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:239 -msgid "" -"Play around a bit with the Print Composer if you like, and refresh your " -"memory!" -msgstr "" - -# fec27eed276b40d9879845abda27f49b -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:242 -msgid "Now it’s time to get back to |project_name|!" -msgstr "" - -# 1a291682c5684ae38bab2bbdd0c95ad1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:245 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.po b/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.po deleted file mode 100644 index 7da1e457..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.po +++ /dev/null @@ -1,560 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 2062f413c9fd4db0aa6d62e23356f43d -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:10 -msgid "Module 2: Preparing Data and Keywords for |project_name|" -msgstr "" - -# 620ca4b6fdfb4dc7b09afe437a479ff3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# f5de5b2097964e57b6d53efd565f98c7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:14 -msgid "Understand |project_name| inputs" -msgstr "" - -# d86871c8a062427f8ce6cf0ff52b9f30 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:15 -msgid "Get OSM data from the HOT export server" -msgstr "" - -# 905f159ad7da4d09ad944a68645c64de -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:16 -msgid "Load data into |project_name|" -msgstr "" - -# be66052346f34173a7c98e1d28ee782b -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:17 -msgid "Add keywords" -msgstr "" - -# ad85c11f1c6b44adaac0ac1171ec8ddc -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:18 -msgid "Prepare the hazard layer" -msgstr "" - -# a24daff724ea426dbaa224f8011b8bab -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:19 -msgid "Run |project_name|" -msgstr "" - -# c4d0c58fcbd648d48349f1f7ff2c656f -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:21 -msgid "" -"Now that you know your way around QGIS and |project_name|, let’s go further. " -"In this module, we will see how to prepare our own data so that it can be " -"processed in |project_name|. Much of what we cover in this module you’ve " -"already done, though we will go over some of it in greater detail. We’ll be " -"using the project created in this module throughout the rest of the unit, so " -"be sure to save it along the way!" -msgstr "" - -# d9cf7844721848f99eb5078df1afcf54 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:30 -msgid "1. |project_name| inputs" -msgstr "" - -# fecc14196ea742f4b1a392d8d0377eca -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:32 -msgid "Let’s review the types of data used by |project_name|." -msgstr "" - -# 31368d7957754efa8cac06160b3dd1ae -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:34 -msgid "" -"**Hazards** are conditions, phenomenon, or human activity that potentially " -"cause victims and destruction to society and environment. Frequently " -"observed hazards are earthquakes, tsunamis, floods, landslides and tornadoes." -msgstr "" - -# 398b64a9df60475f838abc94b9bde4ea -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:39 -msgid "" -"When we are working in |project_name|, hazard data refers to a vector or " -"raster dataset that represents the level and magnitude of an event that can " -"potentially cause damages. To be used for impact calculation in |" -"project_name|, level and magnitude of an event scenario must be mapped over " -"the area of interest. This means that hazard data must be geographic - it " -"must have location. We have already looked at hazard data for the 2007 " -"Jakarta flood and the Lembang earthquake. These hazard layers were produced " -"from scientific modelling conducted by scientific organisations and " -"government agencies. These are typical sources for such hazard data, " -"although in cases of flood hazards such data may also be gathered from " -"affected communities." -msgstr "" - -# c625c7d22a9b46f8b6b1518a5ba9b6ad -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:52 -msgid "Generally, hazard data has the following characteristics:" -msgstr "" - -# 8135b80f7a364e8c90c65386ff4cfda4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:54 -msgid "are at a particular location" -msgstr "" - -# 32a2e22ce9934355a570bb5fb088bd90 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:55 -msgid "" -"have a measured intensity (ie. the depth of a flood or the MMI of an " -"earthquake)" -msgstr "" - -# aaf64b7139be43cfa7edff30564bac78 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:57 -msgid "have a measured duration of impact (ie. hours or days after a flood)" -msgstr "" - -# 3bf9195d5e9f477784d82b80e4625c0d -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:58 -msgid "have a certain time frame (ie. in the case of a sea rise flood)" -msgstr "" - -# 8e500d23e4c7420ba289c2e37dd15904 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:60 -msgid "" -"In this module, our hazard input will be a flood in the village of Sirahan, " -"in Magelang regency in Central Java. The data for this flood comes from " -"participatory mapping activities done by community members as part of the " -"REKOMPAK project. The data is in the training folder :file:`qgis/Sirahan/`." -msgstr "" - -# 68493a057a244039b2f700d6704ad6a8 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:66 -msgid "" -"**Exposure** data refers to natural and man-made objects that may be " -"affected if a disaster scenario really happens. In this module we will use " -"building exposure data created in OpenStreetMap." -msgstr "" - -# 1665f07694fe4efeb6fef95c41a9bcb4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:70 -msgid "" -"The |project_name| impact functions produce an output layer representing " -"potential damages or losses on the affected exposure layer. This output " -"layer will be created once the impact calculation process is finished " -"processing. |project_name| has many impact functions available, which are " -"listed through the 'Impact Functions Doc' menu (see below). The impact " -"calculation will only be possible when users provide the hazard and exposure " -"layer datasets and, when necessary, users define the required parameters " -"through the keyword Wizard correctly." -msgstr "" - -# 00de9afcda724ed8a92eb0ad823bfb0e -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:83 -msgid "" -"**Aggregation** is used to reclassify the result of the impact calculation " -"according to a specific administrative boundary level." -msgstr "" - -# 52db544b29be4000959b4cbb3a77f143 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:86 -msgid "" -"**Keywords** define which category a dataset belongs to, whether hazard or " -"exposure. They are also used to define specific parameters to be considered, " -"as we shall see. After you calculate the impact of a scenario with |" -"project_name|, what next? Well, the impact calculation can be used to " -"prepare a contingency plan. That's why relevant questions and remarks are " -"displayed in the Result section, which may then be considered by disaster " -"risk managers or planning managers." -msgstr "" - -# b7302a60a44a4ffeb8b52d1c3b87f347 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:96 -msgid "2. Getting OSM data from HOT Exports" -msgstr "" - -# 53a5f2c5e61846ffb372e0ba6dfd7d28 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:98 -msgid "" -"In previous scenarios, we used example data provided in the training " -"directory, but to set up our scenario in the village of Sirahan, let’s " -"access the OSM data ourselves to use as our exposure layer. We will use the " -"OSM buildings to calculate how many buildings (and which) will be inundated " -"when a flood occurs similar to our hazard model." -msgstr "" - -# 10ddee6e10b44376a57dfc265a6da433 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:104 -msgid "" -"We’ve worked with OSM data a lot already. Now we will utilise a website " -"where we can quickly and easily access the data from OSM." -msgstr "" - -# 05fd32efd3ed42d78a9636573a72273f -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:108 -msgid "Open your web browser and navigate to http://export.hotosm.org." -msgstr "" - -# 646e42675b084e2ebd8f7ed4630dd1ad -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:113 -msgid "" -"If you are a new user, create an account. If you have an account already, " -"sign in." -msgstr "" - -# 4c97fd5211734b7a85ab591cbe9dff16 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:116 -msgid "" -"The HOT Export website allows you to choose an area and create a data " -"extract from that area. Then you can download the data in a variety of " -"formats that are easily read by QGIS." -msgstr "" - -# 770261c8d6414c0d950292a0cbca6312 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:121 -msgid "In the upper right corner, click :guilabel:`New Job`" -msgstr "" - -# 8868ee63dfe948fd9a9aa695236195e8 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:123 -msgid "Give the job a name, such as :kbd:`Desa Sirahan`." -msgstr "" - -# 18c7a88bc57449ee9184faa6304a6c16 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:125 -msgid "" -"Zoom in on the map until you can see the village Sirahan, which is just " -"north-west of Yogyakarta." -msgstr "" - -# 0a13704cf78d46a29eed2f5433cae561 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:128 -msgid "" -"Click :guilabel:`Select Area` and then draw a box around Sirahan village." -msgstr "" - -# a800962f702b4d9faab4870de4c3645c -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:133 -msgid "The page should look something like this:" -msgstr "" - -# 271b003d2caf446a99466d45773597c1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:138 -msgid "Click the :guilabel:`Create Job` button." -msgstr "" - -# f2858d25f0734bb6aa227bcdb629dee7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:140 -msgid "" -"You will be asked to define a presets file. This is like the presets that " -"you added to JOSM in the previous unit, except here, they define the " -"attributes that the HOT export server will provide." -msgstr "" - -# 0cd5776d9ac84afb937c02f13515d591 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:145 -msgid "Choose :guilabel:`preset file-INASAFE`." -msgstr "" - -# 92fb2ac9052c4593bfbc8c6e4bba9147 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:150 -msgid "Click the :guilabel:`Save` button and take a few breaths!" -msgstr "" - -# 61b5aca5854a435c84a2dc5e1f0c3d78 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:152 -msgid "" -"It may take a few minutes for the data extraction job to process. When it is " -"finished, the page will change and you will see a list of files you can " -"download like this:" -msgstr "" - -# f195f9649fd14fcf81830d44da3fc969 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:159 -msgid "" -"Click on :guilabel:`ESRI Shapefile` to download shapefiles, and once you " -"have it, extract (unzip) the archive on your computer. It should create a " -"directory named :file:`extract.shp`." -msgstr "" - -# 19e27f2bf24b44ca8bf03b280abf1c69 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:164 -msgid "3. Loading data" -msgstr "" - -# 29635f55150745e788438bceba834160 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:166 -msgid "" -"We will use this OSM data as our exposure data. Open a new QGIS project and " -"add all of the shapefiles that you downloaded as vector layers. You should " -"have four layers:" -msgstr "" - -# 6bd58fcd0d454674b6c29577c6423ab9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:174 -msgid "" -"For reasons that will become clear later, we need to change the map " -"projection from the default OSM projection (WGS 84) to WGS 84 / UTM 49S. In " -"other words, we need a CRS that uses metres, not degrees." -msgstr "" - -# 12300a7a4ee44ba288dc004a31a926d6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:178 -msgid "" -"Right-click on the :guilabel:`planet_osm_polygon` layer and click :guilabel:" -"`Save as`." -msgstr "" - -# 0612ff3f8a8d45558474eec5d411d048 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:181 -msgid "" -"Click :guilabel:`Browse` and navigate to a place where you would like to put " -"the new shapefile. Name the file :kbd:`Bangunan_Sirahan` and click :guilabel:" -"`Save`." -msgstr "" - -# 52bd0f0ba67d4749b7d1244de12b8edd -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:185 -msgid "Next to CRS, click :guilabel:`CRS icon`." -msgstr "" - -# 98712ec64ca04f02a6e848e36667aadc -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:190 -msgid "In the filter box, type :kbd:`UTM zone 49S`, as shown below:" -msgstr "" - -# 368d45e4ef514f8396dfaafb9252f7b7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:195 -msgid "" -"Select the CRS :guilabel:`WGS 84 / UTM zone 49S` and click :guilabel:`OK`." -msgstr "" - -# 8364c40bb16c4cf7ab31699b9f979400 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:197 -msgid "The :guilabel:`Save vector layer as...` dialog will look like this:" -msgstr "" - -# 990514ea802649b38eaf7a2d1a66f7db -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:202 -msgid "" -"This is the layer that we will be using as our exposure data. You can remove " -"the other OSM layers, or if you would like them to remain visible, go to :" -"menuselection:`Settings ‣ Project Properties` and enable 'on the fly' " -"transformation." -msgstr "" - -# 992d9754e8ed46f78ff289450b9b7297 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:208 -msgid "4. Adding keywords" -msgstr "" - -# 51b8aea009e141e09ef40de2f6f22cc1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:210 -msgid "" -"Since we’ll be using this buildings layer as our exposure, we need to set " -"the keywords so that |project_name| knows what the layer contains. If you " -"remember from Unit 2, this is done with the keywords Wizard." -msgstr "" - -# 44f135043e6945a08a8b50d8eae729d2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:214 -msgid "" -"Select the :guilabel:`Bangunan_Sirahan` layer and click the :guilabel:" -"`Wizard` button on the |project_name| toolbar." -msgstr "" - -# b1d07c09269741d8af5348ff2d01582e -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:220 -msgid "" -"You will see a dialog box and select :guilabel:`exposure` and after that you " -"can follow the steps in the dialog box." -msgstr "" - -# 062071e02bbd433b90bfccf66d8b9bf3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:226 -msgid "" -"Select unit information that you want to calculate in InaSAFE. For building " -"data you can choose :guilabel:`building type` to group the result of the " -"impact function. You need to make sure there is the building type attribute " -"in your exposure data. Or if you do not have the building type attribute in " -"your exposure data, you can select :guilabel:`building generic`." -msgstr "" - -# a566ea9a3f8849a48fb2815ab4b84dbb -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:232 -msgid "" -"You also need to select which attribute has building type values. In this " -"data please select :guilabel:`amenity` and in the last step you can give a " -"title for your exposure data and click :guilabel:`Finish`" -msgstr "" - -# eb3a137deadd45978e33ae0db3bb02f3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:240 -msgid "5. Preparing a hazard layer" -msgstr "" - -# 957e6113ee294a5eb07085515f474f50 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:242 -msgid "" -"The hazard data that we have used previously has come from government " -"agencies and scientific institutions. This time, we will use data that came " -"from community mapping activities, that is, from community members on the " -"ground. The data was created as a paper map and later converted into digital " -"format. The data has already been prepared, so we simply need to add it as " -"our hazard layer." -msgstr "" - -# 202d9e611cd947cd952e2f8d2f613a90 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:251 -msgid "" -"Click :guilabel:`Add Vector Layer...` and add :file:`area_terdampak_Sirahan." -"shp` in the :file:`qgis/Sirahan/` directory." -msgstr "" - -# 4ba930af5c4647a884e4a98b088cdcc9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:258 -msgid "" -"You can see that this layer is already known to |project_name|, so " -"presumably it has keywords already set." -msgstr "" - -# 92ebd072e7d6405dbaacf6fafcaba916 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:261 -msgid "" -"Before we define the keywords of this data and because of the way that |" -"project_name| calculates this function, we need to make sure that this " -"exposure layer has a column in the attribute table that |project_name| " -"expects, named \"AFFECTED\"." -msgstr "" - -# 0c17a641f34c4a218a39be31613cca2b -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:266 -msgid "" -"Open the attribute table for the :guilabel:`area_terdampak_Sirahan` layer." -msgstr "" - -# c17965fe21a74980a6fdbe6db2302e5a -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:271 -msgid "" -"We need to add some data to this layer so that QGIS can run the flood " -"function correctly. When QGIS runs the flood function, it checks every " -"feature in the hazard layer to make sure that it is in fact a flood prone " -"area. Hence, each feature must have an attribute named \"AFFECTED\". First, " -"let’s add the new column to our layer." -msgstr "" - -# 6b7952aee02049f39f9a55cacd5661ff -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:278 -msgid "In the attribute table, click the :guilabel:`Toggle Editing` button." -msgstr "" - -# 6f23daabbb954e29b32c223596847114 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:283 -msgid "Click the :guilabel:`New Column` button." -msgstr "" - -# 022be236c7874e809d1127eb766d6f67 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:288 -msgid "" -"Type :kbd:`affected` as the name and select :guilabel:`Text(string)` for :" -"guilabel:`Type`. Give :kbd:`10` for the width." -msgstr "" - -# 8c0e3f71382e49f28ad0183b8e5f9e53 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:294 -msgid "Click :guilabel:`OK`." -msgstr "" - -# 82f7e1e8db5140d9bd22be803e11f521 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:296 -msgid "" -"Now select each value in the column “affected” and type “1”, instead of NULL" -msgstr "" - -# 4df914c00b024dc8b902f0694d8f3e26 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:301 -msgid "" -"Click :guilabel:`Save Edits` and then :guilabel:`Toggle Editing` to stop the " -"editing process." -msgstr "" - -# 06b277f69660477eb98fde076fac5e9d -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:307 -msgid "" -"Select the layer and open the :guilabel:`Keyword Wizard` and select :" -"guilabel:`Hazard` and follow the steps in the dialog box" -msgstr "" - -# cea7099d672b46329aa993ea7b3e6bbc -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:313 -msgid "" -"In this hazard data we select :guilabel:`flood` as the hazard type because " -"we assume that this is a flood hazard." -msgstr "" - -# 9c160ed1ca0e4579a88b8546813b57b7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:316 -msgid "" -"Select :guilabel:`wet/dry` as the subcategory for flood, and after that " -"select the :guilabel:`wet/dry` attribute that represents the flood extent as " -"wet/dry." -msgstr "" - -# 05adba141f8043d080ce4c815abc11a0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:319 -msgid "" -"As the last step, you can give a title for your hazard data and click :" -"guilabel:`Finish`" -msgstr "" - -# af7ec0efa82149f4bf3ceeb00384f9b4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:323 -msgid "6. Running |project_name|" -msgstr "" - -# 51ac18a05466480fa9dbc518720b8908 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:325 -msgid "" -"Everything is prepared now - our layers are loaded, the keywords are set, " -"and we’ve ensured that the layers have the data that |project_name| expects. " -"Make sure the question form in InaSAFE looks like this" -msgstr "" - -# ad0d24f038bd48229be70976ea4483d7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:332 -msgid "and then click :guilabel:`Run`!" -msgstr "" - -# 02e928f7415749c195ad34deef40897e -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:337 -msgid "The results should looks something like this:" -msgstr "" - -# ea642391a00e4cf98f44291bf110b674 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:342 -msgid "Save your project! We’ll be using it in the upcoming modules..." -msgstr "" - -# b341e05294bd4c4dbc7696ec95c00a94 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:345 -msgid "" -"We’ve run a few scenarios, but what is next? In the next modules we will use " -"our QGIS skills to find the best evacuation routes for people to use in the " -"case of the flood disaster, as well as examining appropriate places for IDP " -"camps." -msgstr "" - -# 8b6b9d716e6349ffb4536de0934d4328 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:351 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.po b/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.po deleted file mode 100644 index 61c6de13..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.po +++ /dev/null @@ -1,585 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 7c48363d58b34701b23a588993614ffa -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:10 -msgid "Module 3: Determining IDP Camp Location" -msgstr "" - -# 10ee610f786846afba59855be48cf6d0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 4153dfdaedfc41578a5cf105169e9cc6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:14 -msgid "Develop criteria for determining an ideal IDP camp location" -msgstr "" - -# 5cbf68f84abb4afca0972c1be033c3d4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:15 -msgid "Use geoprocessing tools" -msgstr "" - -# 288f3b579a1146a187710d7934e9bef1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:16 -msgid "" -"Use various spatial queries: contains, within, equal, intersect and is " -"disjoint" -msgstr "" - -# 91fb643e1e47425fa348752837d4dffd -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:17 -msgid "" -"Combine geoprocessing tools and spatial queries to select building(s) for " -"temporary IDP camps" -msgstr "" - -# a7abd3ae8dd543d5875b9493b8036726 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:20 -msgid "" -"Another important part of disaster planning is determining potential " -"locations for IDP camps. To do this we need to be able to take various " -"criteria into account in finding an appropriate location. In Unit 2 we did " -"exactly this. We analysed various layers and performed a GIS analysis to " -"determine several land areas appropriate for IDP camps near Merapi." -msgstr "" - -# b1bc0a2954a24f7e89a8261b0b867997 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:26 -msgid "" -"In this module we will take a closer look at the tools we use to perform " -"this GIS analysis, but the process will remain the same. As with any proper " -"GIS enquiry, we will follow these steps:" -msgstr "" - -# bec9079b8b5745f08079cf81b00bb704 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:30 -msgid "Define the problem" -msgstr "" - -# 2343d8470cc9427981a65cb989f6a7fc -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:31 -msgid "Obtain data" -msgstr "" - -# c26078984b574c769ba289b98c005a61 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:32 -msgid "Analyse the problem" -msgstr "" - -# a94db71353b346fcb506ed5f62f62565 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:33 -msgid "Visualise the result" -msgstr "" - -# 5f8a93bd9cdb44808a29283f8fc42d97 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:36 -msgid "1. Geoprocessing tools" -msgstr "" - -# 0fea8e70a29c42e6a26f7522e86979c3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:38 -msgid "" -"When we performed our first analysis, we utilised several spatial functions " -"in order to answer questions such as “what locations match conditions in " -"layer A and different conditions in layer B?”. Before we begin our GIS " -"analysis, let’s examine some of the spatial functions that are available to " -"us." -msgstr "" - -# 28562adc104d4125a8dc16ef9693a08a -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:45 -msgid "Buffer" -msgstr "" - -# b35e1da58a934e5ea7e2455b532f6117 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:46 -msgid "" -"The buffer function is used to make a new feature based on a given distance. " -"We saw this in Unit 2, when we defined a buffer around roads and health " -"facilities. For example, we created a 3km buffer around health facilities " -"and created a new layer from this – these defined areas which met one of our " -"criteria – that camp locations should be close by." -msgstr "" - -# 22c85744743f49e2bafbc4397db4f8fa -# 3b8e59a479ac444eabcc5c1e87e876bc -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:57 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:128 -msgid "Intersect" -msgstr "" - -# d867f6b85e4842ddbcc880a3f5656d9c -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:58 -msgid "" -"The intersect function is used to combine two overlapping layers, with the " -"result that only the intersecting features from both layers will be " -"contained in the output layer. Attributes from both layer features will be " -"combined in the new layer." -msgstr "" - -# ed351222d0fc4ffcb237ad5f3ffbabee -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:67 -msgid "Clip" -msgstr "" - -# f4f7b8ea2e754c6c9b6a00757042353d -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:68 -msgid "" -"Clip is used to cut an input feature with another feature (clip feature). " -"The attributes from the input feature are left intact, only the shape of the " -"input feature will follow the shape of the clipping feature." -msgstr "" - -# 27136c65ad8c465a87bb3b0fabda0533 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:76 -msgid "Union" -msgstr "" - -# 1a8ff8c4010a48f3bafa65414458485a -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:77 -msgid "" -"Union is used to make a new feature by combining two features. The feature " -"produced contains features and attributes from the two source features." -msgstr "" - -# 787ea5d6a0434550b44f09d5f523353f -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:85 -msgid "Dissolve" -msgstr "" - -# 370ddf72df0640c49aaa0fbf9499df05 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:86 -msgid "" -"Dissolve is used to combine features inside layers that have the same value " -"in one of their fields." -msgstr "" - -# c07a7faec66d41e9a1ae910e754c798c -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:93 -msgid "2. Spatial queries" -msgstr "" - -# f2d7c29ee5f34d9db801e08971f326f0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:95 -msgid "" -"Spatial Query is used to find the relationship between two features. The " -"resulting value is either TRUE or FALSE, unlike the geoprocessing functions " -"above, which result in new geometric features. Thus performing a Spatial " -"Query is more like asking a yes or no question. Various Spatial Query " -"functions are covered here:" -msgstr "" - -# 8f900ac2e65549abbd420048fd92c1d5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:102 -msgid "Within" -msgstr "" - -# 3c519d6f2f48487f9e5c276f4050a907 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:103 -msgid "" -"Within is used to ask the question: ‘is feature A fully located inside " -"feature B?’ In the image below, let’s assume the dark-coloured circle is " -"feature A and the light-coloured circle is feature B. We can use the Within " -"function to ask the question, “Is feature A fully within feature B?” The " -"result would be TRUE. On the other hand, if we asked “Is feature B fully " -"within feature A?” the answer would of course be FALSE." -msgstr "" - -# dd046732c9ca4efc81795dc209875cf2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:117 -msgid "Contains" -msgstr "" - -# f90a96f0969941d28b2dcd79813ebd1c -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:118 -msgid "" -"Contains is the opposite of Within. This function allows us to ask “Does " -"feature A contain feature B?”" -msgstr "" - -# 09defb45256c4d7195e783cd7f8eb4d7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:122 -msgid "Equal" -msgstr "" - -# 74be04031c4e42ab9722a37d8d98c1ce -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:123 -msgid "" -"Equal results in TRUE if two features have the same position and size. In " -"the above example, the result would be FALSE, because feature A and feature " -"B do not have the same size or the same position." -msgstr "" - -# 47c18299c02a4ebcbccb4cdb8d9506d9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:129 -msgid "" -"Like the geoprocessing intersect tool we mentioned in the previous section, " -"this spatial query function evaluates whether two features are intersecting. " -"If the features intersect, this query will return TRUE." -msgstr "" - -# 644e365bda78428dafc982aa3e41b626 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:137 -msgid "Is Disjoint" -msgstr "" - -# b4e2bdce566643d5b82f05a0eb213b2f -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:138 -msgid "" -"This function is the opposite of Intersect, meaning that it will return TRUE " -"if two features are not touching one another. We might use this query if we " -"want to search for buildings that are located outside of an impacted " -"disaster area. Because this function is the opposite of Intersect, it would " -"return FALSE if run on the example above." -msgstr "" - -# 3529cbf410944769a471c9a3e4d44990 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:145 -msgid "" -"Implementation of these functions is important in supporting analysis for " -"scenario development, specifically to obtain answers to questions such as:" -msgstr "" - -# 6bd4518927a34ed39226638a78dd3f48 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:149 -msgid "Which schools are safe from an earthquake?" -msgstr "" - -# e2e069a7cf4c43b0bbf1e05d496f4db7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:150 -msgid "Which buildings can be used as temporary IDP camps?" -msgstr "" - -# 2c51916b2f0d4c9f94f20fa6096377de -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:151 -msgid "How many kilometres of national road will be lost in case of tsunami?" -msgstr "" - -# b7ae12d956c8451da442b07261c6d698 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:155 -msgid "3. IDP camp criteria and data" -msgstr "" - -# 593453135bc44ac5b9b39e864626b601 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:157 -msgid "" -"Now let’s get back to our Sirahan project. Throughout the rest of this " -"module, we will apply our knowledge of geoprocessing tools and spatial " -"queries in order to identify an appropriate IDP camp location during a flood " -"that is similar to the one in our model. First, let’s list some criteria " -"that we can use to determine the best location. Try to think of your own " -"list, and then see how it compares to ours below:" -msgstr "" - -# ee99b6e3548043ffb0961d02d783aede -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:165 -msgid "" -"Buildings/Houses that will be used as an evacuation site should be situated " -"outside the affected area (outside the flood zone)" -msgstr "" - -# d46caedb8fb84741a39aad91422ab0f6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:167 -msgid "" -"Location should have direct access to a primary road (jalan kabupaten) or " -"secondary road (jalan desa) with a maximum distance of 20 metres" -msgstr "" - -# 4546743d9cba4abda05dbb9a9016b3cc -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:169 -msgid "Building should have an area of at least 225 square metres" -msgstr "" - -# f626ff81e5a540049cbab9ef073dc26e -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:171 -msgid "" -"We’ve defined our problem, so the next step in the GIS process is to prepare " -"our data. We should have all the data ready from the previous module, but " -"let’s make a quick list of what data we must have in order to work with our " -"criteria." -msgstr "" - -# ccf95994cb7341cfa92c82f5afc7037e -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:177 -msgid "Buildings/houses" -msgstr "" - -# bd2d5b718fbd49428941b540e15db496 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:178 -msgid "Impacted area of flood" -msgstr "" - -# 85dc7969df344986822034b9a02503b0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:179 -msgid "Road network with road class attribute" -msgstr "" - -# 2421732bdc2e4afbbf7a2363be16505d -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:181 -msgid "" -"Luckily, we have this data already prepared. The data you use might be " -"different if you have different criteria, or you have different needs and " -"problems." -msgstr "" - -# a5a295201c8d48d3b7db724558e2ee1d -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:185 -msgid "" -"Create a new project or edit your existing project so that it contains the " -"following layers: (the new layers are located in :file:`qgis/Sirahan/`)" -msgstr "" - -# d0391d3cacbc419ebc80ee8941d73f37 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:191 -msgid "Your map will look similar to this:" -msgstr "" - -# e54d336cc7b8492ea38dd0c8e60ea60a -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:196 -msgid "" -"Save the project as :file:`analisis_vektor.qgs` and create a new folder with " -"the name :file:`analisis_vektor`. As we run various geoprocessing tasks and " -"output new layers, we will save the new files in this directory." -msgstr "" - -# 3356c634041c41f79d8bd62b5bbf255a -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:202 -msgid "4. Criteria #1: building must be outside affected area" -msgstr "" - -# e488ceec58e64770856d11fed93cbc7a -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:204 -msgid "" -"Okay, let’s work on our first criteria, that the building we choose as an " -"IDP refuge should be outside the affected area. Can you guess which type of " -"spatial query we will perform? Refer to the list of operations covered " -"previously in this module and guess which one fits. If you guessed Is " -"Disjoint, you are right! Is Disjoint let’s us search for features in one " -"layer that DO NOT touch features in another layer." -msgstr "" - -# 28ad433924c74d7c99341b7079811fde -# ad551c4776d04bf39706f7c55a097ddf -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:213 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:299 -msgid "Go to :menuselection:`Vector ‣ Spatial Query ‣ Spatial Query`." -msgstr "" - -# 7fe2c5fcd74b47b4ab40804096394cd7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:215 -msgid "" -"Choose :guilabel:`Bangunan_Sirahan` as the input layer under :guilabel:" -"`Select source features from`." -msgstr "" - -# ebe75ddfd4e44a2e9c0786cde3e0fc4b -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:218 -msgid "" -"Use the Is Disjoint operator and choose :guilabel:`area_terdampak_Sirahan` " -"as the reference feature." -msgstr "" - -# aa3c0ae56a734fadbf69053c1543c8e2 -# 38afbc5665794c03a6950a445ab85754 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:224 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:306 -msgid "Click :guilabel:`Apply`." -msgstr "" - -# 4acc53e587e243f4b006c29256da6b7b -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:226 -msgid "" -"A window will appear which looks like the image below. Click :guilabel:" -"`Close`." -msgstr "" - -# 89b0f003940e43da84b159852903afde -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:232 -msgid "The buildings outside of the affected flood areas will become selected:" -msgstr "" - -# 001f8f16d8fa4032a1eb1497ccf7e1ec -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:237 -msgid "" -"Save the selection as a new layer named :file:`Bangunan_Sirahan_terpilih." -"shp` and add it to the map." -msgstr "" - -# 5b854056cf5f4d3f927d5097ecfbfee1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:240 -msgid "Remove the old buildings layer." -msgstr "" - -# 2d1e37e0851e43cb9083bbec5b7a3ee7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:243 -msgid "" -"5. Criteria #2: location must have direct access to a primary/secondary road " -"within 20 metres" -msgstr "" - -# 455baf99af344d59b9f72500c3f191fd -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:245 -msgid "" -"Now, we need to consider our second criteria, that the building chosen as an " -"IDP refuge is close to a main road. We used the same consideration with our " -"example in Unit 2. Do you remember how we can do this? First, we must use " -"the :guilabel:`Query Builder` so that we are only using the primary and " -"secondary roads. Then we will use one of the Geoprocessing tools – Buffer!" -msgstr "" - -# f24bfe29be704f518f0a9d01e2b670f9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:253 -msgid "" -"Right-click on the :guilabel:`Jalan_Sirahan` layer and click :guilabel:" -"`Query`." -msgstr "" - -# 5bf7218e924f457a965f4ffeb7ec297c -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:256 -msgid "Create a query like this:" -msgstr "" - -# 6531a6d578b34107bbbcad4bc79de959 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:262 -msgid "" -"Click :guilabel:`Test`. This will run the query and tell you how many " -"features meet the conditions in your query." -msgstr "" - -# ed770092d2154cefad18e74c913b63be -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:268 -msgid "" -"You should see that our map shows fewer roads now, because we have filtered " -"out those that are not primary or secondary. Now that we have the roads, we " -"will create a buffer around them." -msgstr "" - -# 823e20a0159d464f9045924df3355727 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:275 -msgid "" -"Select the :guilabel:`Jalan_Sirahan` layer and go to :menuselection:`Vector " -"‣ Geoprocessing tools ‣ Buffer(s)`:" -msgstr "" - -# 6993945c1f8245c09ff27524dc561933 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:281 -msgid "Set it up like this:" -msgstr "" - -# 1c9d6eca66514070b4546db693b92f65 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:286 -msgid "" -"Save the layer as :file:`Jalan_Sirahan_buffer_20m.shp`. Click :guilabel:`OK` " -"and QGIS will create the buffer, which will look like this:" -msgstr "" - -# 3489359252ca494fa4e05deaba6adad8 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:293 -msgid "" -"Now we have a layer which shows the areas that are within 20 metres of the " -"primary and secondary roads. The last thing to do in order to apply our " -"criteria is determine which buildings are situated within the buffer. Hence " -"we need to do another spatial query, this time of type Within." -msgstr "" - -# a24ab499408b404585486d44164d07cc -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:301 -msgid "Fill in the fields to look like this:" -msgstr "" - -# 8f6da07c49384637aec7ca37c05f0b65 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:308 -msgid "" -"The buildings that are within the roads buffer will be selected. Right-click " -"on the :guilabel:`Bangunan_Sirahan_Terpilih` layer and click :guilabel:`Save " -"Selection As…`. Save the selection with the name :file:" -"`Bangunan_Sirahan_buffer_20m`." -msgstr "" - -# f06b268ead844c44a6b541d6f3941c4d -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:314 -msgid "" -"6. Criteria #3: building must have an area of at least 225 square metres" -msgstr "" - -# 02624093c3d54e7bb15adada82264f37 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:316 -msgid "" -"Our final criteria is that the building we choose should have an area of at " -"least 225 square metres. With an area this size, the building will be able " -"to serve as an IDP camp for the residents of Sirahan whose homes are " -"affected by the flood." -msgstr "" - -# 3cb1a959acd849588851883772779770 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:321 -msgid "" -"Right-click on the :guilabel:`Bangunan_Sirahan_buffer_20m` layer and click :" -"guilabel:`Query`. Enter the following query for the layer:" -msgstr "" - -# 8948ad04632e4e299971378028a7f862 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:328 -msgid "" -"Click :guilabel:`Test`. The query should return only a handful of features." -msgstr "" - -# df5cc30940a343d6aad43b64a75fc4bb -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:333 -msgid "" -"Take a closer look at the remaining buildings. You can inspect the features " -"of each individually by using the :guilabel:`Identify Features` tool." -msgstr "" - -# d05448b7fb4e4fafa52a3384a6561b87 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:340 -msgid "" -"In the very south tip of Sirahan you should find a building that is " -"identified as a hospital. This building is, in fact, a real world hospital, " -"and it is an actual IDP camp. Compare it with your result. This should be " -"one of the buildings that your analysis deems suitable as a camp, and when " -"you consider that it is also a hospital, it clearly makes a good location." -msgstr "" - -# 783f1041e6a343a49cc7db1a9b84115a -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:353 -msgid "Summary" -msgstr "" - -# 574bb8e75f754842bb4128111fac35e9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:355 -msgid "" -"In this module we reviewed the various Geoprocessing tools and spatial " -"queries, and we used some of them to analyse our problem – where to put an " -"IDP camp." -msgstr "" - -# 1a82898063264f10baafede118a5f88c -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:359 -msgid "" -"This is yet another key component of contingency planning, and luckily it’s " -"not difficult to perform with GIS." -msgstr "" - -# cc47b8b0baa641a4be73e060e96bff81 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:363 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.po b/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.po deleted file mode 100644 index b509f2a6..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.po +++ /dev/null @@ -1,326 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 2ea04f2d14d74c2bb7d7d1f404131e03 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:10 -msgid "Module 4: Planning an Evacuation Route Based on Hazard Information" -msgstr "" - -# d6f3bf67e67e4e06b8bad6b176bb6400 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 02fdc6030cee4a35ac74a277796dfe90 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:14 -msgid "Understand the concept of shortest path and fastest route" -msgstr "" - -# 9a6c5b4aedf44c4f8d2c139bdaccdcb3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:15 -msgid "Use the Road Graph plugin" -msgstr "" - -# 4756d85a1e564dfd8cff77668fa53d4f -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:16 -msgid "Set up speed and road direction" -msgstr "" - -# 3bb73d4a0e954d5bbbc056c082cac78e -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:17 -msgid "Determine start and destination points" -msgstr "" - -# 72872f1215654fe791b1eb6538353ad6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:18 -msgid "Conduct route analysis and selection" -msgstr "" - -# 07e6bf1a5c6646fc87112f79438158e2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:20 -msgid "" -"By now you should have a pretty good understanding of how |project_name| " -"works and its operations." -msgstr "" - -# 5b7d3eea5b434f929d9be5f01a08b168 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:23 -msgid "" -"You know how to add layers, and how to define keywords so that |" -"project_name| can recognise layers appropriately. Now that we can use |" -"project_name| effectively to run scenario analyses, we will look at other " -"QGIS functionality that will help us in preparing contingency plans." -msgstr "" - -# ad19f101ee2e48b2a6e16c9b9f479bb3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:29 -msgid "" -"In this module, we will learn how to perform a GIS analysis in order to " -"determine an appropriate evacuation route in the event of a disaster." -msgstr "" - -# 6377e62167354a8eadfd3e55a44fcfd0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:32 -msgid "" -"The term **fastest route** indicates the route a person can take between " -"point A and point B that will allow them to cover the distance in the least " -"amount of time." -msgstr "" - -# 534e837901d848b2b60b12182f6765c1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:36 -msgid "" -"Similarly, **shortest path** indicates the route that will allow a person to " -"get from point A to point B with the least distance travelled. In theory, " -"this would be a straight line between point A and point B, but in reality " -"this is impractical, because travelling in a straight line means climbing " -"hills and going around buildings and fences. Of course this is why we use " -"roads, and why we calculate fastest and shortest routes using roads." -msgstr "" - -# 6d2d2665b0ae4591816b7be6c77f29b5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:44 -msgid "" -"We will use the Road Graph plugin in this module, which does just that. If " -"we provide two points, the plugin is able to calculate either the fastest " -"route or the shortest path between them." -msgstr "" - -# ffe8347c7dbc4cc38eaf6f373933d197 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:49 -msgid "1. Road Graph plugin" -msgstr "" - -# ecabea39906f4cfcae9c75218d486cf5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:51 -msgid "" -"We will be continuing with the previous example, which you should have " -"saved. We won’t be using the |project_name| plugin in this module, so you " -"may close the panel if you like." -msgstr "" - -# d6ce543f30fe4223973c516768c800f5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:55 -msgid "Open the project in QGIS." -msgstr "" - -# dfe9ed0e79cf4da99f599619a1a98aa2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:57 -msgid "" -"We will use a pre-prepared roads layer in this module, which may be slightly " -"more detailed than OpenStreetMap. Remove the :guilabel:`planet_osm_roads` " -"layer and add :guilabel:`Jalan_Sirahan`, which is located in the :file:`qgis/" -"Sirahan/` directory. You should have the following layers:" -msgstr "" - -# 7b254ce9145a4cdd8d34cada827e5e90 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:67 -msgid "" -"We will be using a plugin that comes installed with QGIS. Right-click on the " -"toolbars to see which toolbars are activated, and select :guilabel:`Shortest " -"path`." -msgstr "" - -# ecbd78d717da48988404b21ae78b570a -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:74 -msgid "" -"A new plugin window will appear in your project window that looks like this:" -msgstr "" - -# ee473868cc244b9cae414842e9183ca6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:80 -msgid "2. Editing plugin settings" -msgstr "" - -# c72a734ac834478a8ef3d345286b8d11 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:82 -msgid "" -"We must edit some settings in order for the :guilabel:`Shortest path` plugin " -"to work. Go to :menuselection:`Vector ‣ Road graph ‣ Settings`." -msgstr "" - -# 98d347ce29844975a380761406731aea -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:89 -msgid "" -"Make sure that :guilabel:`hour` and :guilabel:`kilometer` are selected as " -"the units." -msgstr "" - -# 2271955ea901425d94dcc4ecaed59464 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:92 -msgid "Set :guilabel:`Topology tolerance` to :kbd:`4`." -msgstr "" - -# e0177d4b76f546eea8d6e8ca4cd70311 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:94 -msgid "" -"On the :guilabel:`Transportation layer` tab, select :guilabel:" -"`Jalan_Sirahan` as the layer. This layer contains the streets that the " -"plugin will use to calculate routes. The rest will remain the same. It " -"should look like this:" -msgstr "" - -# 965f3950da7a4e4089e12ba1a9e2df83 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:101 -msgid "" -"On the :guilabel:`Default settings` tab, we must fill in the direction and " -"speed. Choose :guilabel:`two-way direction` and :kbd:`25` for the speed " -"(meaning 25 km/hr). This assumes that traffic can go in both directions at a " -"maximum speed of 25 km/hr." -msgstr "" - -# 302d5be6f19c44769f81f0110610f98a -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:109 -msgid "Click :guilabel:`OK`." -msgstr "" - -# 80f87d76e00648da9df67b96e376a308 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:112 -msgid "3. Choosing start and destination points" -msgstr "" - -# 3eb9d6d0d75348d09e4876f1faa70b76 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:114 -msgid "" -"The Road Graph plugin calculates either the shortest or fastest route " -"between two points, so we need to provide a start point and an end point for " -"an evacuation route." -msgstr "" - -# 8dbb2ae82794491ca1820a8b89863081 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:118 -msgid "" -"Of course an evacuation route should be for all people in an area, but we " -"can experiment with different start points and see if evacuation routes will " -"be different in different areas." -msgstr "" - -# b19b0e600b524e7e9b51bbacabe7c8b4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:122 -msgid "" -"On the Road Graph panel, click on the plus button next to :guilabel:`Start` " -"and then click somewhere on the map to indicate the first point of your " -"evacuation route. This would be the initial point for the evacuation route " -"in the time of a disaster." -msgstr "" - -# ee3320a52871438b8100facbe829d5ee -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:130 -msgid "" -"Your starting point will be marked as a green point and the coordinates of " -"the point will be recorded in the :guilabel:`Start` input box." -msgstr "" - -# 3a6a4dbae61a4d419e396ff3bfd1698c -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:133 -msgid "" -"Now we need to assign the destination of our evacuation route. Where will " -"people be evacuated to? Because this is an example, we don’t have a great " -"idea of where an appropriate place would be. We might use GIS to determine " -"appropriate locations, which would most likely be high ground in the event " -"of a flood. For this example, we will choose a destination at the south-east " -"corner of the village." -msgstr "" - -# 10c9ef5e453740b08cf5a27efa6760d3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:141 -msgid "" -"Click the plus sign next to :guilabel:`Stop` and click somewhere on the map. " -"The destination will be marked with a red point." -msgstr "" - -# eb8218891b2b42678d2f6598555fdffb -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:147 -msgid "" -"Choose :guilabel:`Length` or :guilabel:`Time` next to :guilabel:`Criterion`. " -"This determines whether Road Graph will look for the shortest distance or " -"the shortest amount of time." -msgstr "" - -# 6e39f4f881e141ebb69c8bad7e2a7e26 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:151 -msgid "Click :guilabel:`Calculate`." -msgstr "" - -# bba23bceafc84c1ba887759ac1caad91 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:153 -msgid "" -"The time and distance required for the evacuation route will be displayed." -msgstr "" - -# cb1c020163824bcea3492e217d86f2da -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:158 -msgid "" -"In this example, the length of the fastest route between our two points is " -"about 1.97 kilometres and the travel time is 0.0788 hours, which is about 5 " -"minutes. The time in our example is determined by the distance and our " -"default speed of 25 km/hr. The speed can be changed, and can even be set to " -"different amounts for each segment of road." -msgstr "" - -# f894ee0d00874bb68a525eab5f0a6987 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:164 -msgid "The route appears on our map:" -msgstr "" - -# 0fc690340ea84ed3bb161db8414ce79a -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:169 -msgid "" -"To save the evacuation route as a separate layer, go to :menuselection:" -"`Export ‣ New temporary layer`, and click :guilabel:`OK`." -msgstr "" - -# d80632c208f54a61a06dd3f4be95de18 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:175 -msgid "" -"You may need to choose a CRS for the new layer. UTM zone 49S should work " -"fine." -msgstr "" - -# 46a1665ce6134996ba779b6eb1723e59 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:178 -msgid "" -"The layer will be added to your Layers panel as :guilabel:`shortest_path`, " -"but you still need to save the layer." -msgstr "" - -# 887ca39069a844bba13af84a1e9e4141 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:181 -msgid "To save, right-click on the layer and click :guilabel:`Save as…`" -msgstr "" - -# 213800dc4c9f4f2f99ece4cc0e3407ac -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:184 -msgid "Summary" -msgstr "" - -# d6875b2182ea43c890848ad4f102a0fa -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:186 -msgid "" -"In this module we’ve learned how to calculate the shortest distance between " -"two points using the Road Graph plugin. Using this you can easily determine " -"evacuation routes from various areas. Evacuation routes are important for " -"contingency plans, and those living in threatened areas can be educated with " -"the quickest and safest routes to take in the event of an emergency." -msgstr "" - -# 3f01bbe606f54a2c8365f75885205cad -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:193 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.po b/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.po deleted file mode 100644 index 3f32f6ab..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.po +++ /dev/null @@ -1,729 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 0f631676d93048b4a2897a6c1ca9a7d6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:10 -msgid "Module 5: Calculating Damages and Losses" -msgstr "" - -# d4b7064c25c24d37898f528c3ec05931 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# f70837ab5bd24189974c1b3c5e3decc9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:14 -msgid "" -"Understand the definition of damages, losses and their calculation based on " -"community exposure data" -msgstr "" - -# 2b738280189f4dfbaca1aaed46e61583 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:16 -msgid "Understand damage and losses assessment values based on BNPB and BPBD" -msgstr "" - -# 9d330ef0c5984ef6b298a095e74e32e3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:17 -msgid "Make a damage and losses map" -msgstr "" - -# d8bdf14897db42c79adcaabaf409832b -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:18 -msgid "Calculate damage area" -msgstr "" - -# 19b2d81a07e34d1c9fba3544685ec62b -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:19 -msgid "" -"Manipulate attribute data of affected features to obtain damage values for " -"each object" -msgstr "" - -# 5b343e8cdbb549c1a0a66067204e02cd -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:21 -msgid "" -"Manipulate attribute data of affected features to obtain loss values for " -"each object" -msgstr "" - -# 3c963d8e85b946838403263fc77ac135 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:23 -msgid "" -"Group attribute data for administrative areas (hamlet, village, subdistrict)" -msgstr "" - -# 21c19f938dfe4cb29fca357bbdb1029b -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:25 -msgid "" -"Join attribute data for administrative areas (hamlet, village, subdistrict)" -msgstr "" - -# 7150aa59a7f0486d94777332b492248d -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:27 -msgid "Present damage and loss values using charts" -msgstr "" - -# 348d3181f98248a0a0b0b493ed44c97d -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:29 -msgid "" -"A **Damage and Loss Assessment (DaLA)** is usually created after a disaster. " -"The standard DaLA methodology was developed by the UN Economic Commission " -"for Latin America and the Caribbean (UN-ECLAC) in 1972, and has evolved with " -"various international organisations since. Simply, it is a methodology for " -"approximating damage and losses due to a disaster, basing calculations on a " -"country’s economy and individual livelihoods to define the needs for " -"recovery and reconstruction." -msgstr "" - -# a56c1a9512064c47bb93edd6bcb5c4d6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:38 -msgid "A Damage and Loss Assessment includes the following:" -msgstr "" - -# 3999ed8988944f5c9e0b59635d60ac62 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:40 -msgid "" -"Damage calculated as the replacement value of totally or partially destroyed " -"physical assets" -msgstr "" - -# 9144ddb67f6d48d1873e30ec5564e17d -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:42 -msgid "" -"Losses in the flows of economy that arise from the temporary absence of the " -"damaged assets" -msgstr "" - -# 2ce894f6da8348d0847acefcde064334 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:44 -msgid "" -"The resultant impact on post-disaster macroeconomic performance, with " -"special reference to economic growth/GDP, the balance of payments and fiscal " -"situation of the government." -msgstr "" - -# 13ac5957b2994cf9804694231e209608 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:48 -msgid "" -"In this module we will learn how to calculate some of the basic data used in " -"a DaLA, and use various QGIS functions to design a thematic map that shows " -"damage and loss." -msgstr "" - -# 974e07f721ee494c934a0a907423d0ff -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:53 -msgid "1. BPBD damage assessment guide" -msgstr "" - -# 67e5581b0a8445728cec69bf3cc43211 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:55 -msgid "" -"The BPBD has created a guide for damage and loss assessment for Indonesia, " -"which defines varying degrees of damage and the economic impact of " -"individual elements. Parts of this definition are shown here:" -msgstr "" - -# 8fbf448697754603941d411d20dfe8ea -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:63 -msgid "" -"Notice that there are several elements at work here. First, damage to " -"different types of infrastructure is “valued” differently. To put losses " -"into monetary terms, the loss of a bridge has a loss value as does the loss " -"of a public building or a private home. Then, depending on whether a feature " -"suffers heavy, medium or low damage, a multiplier is applied to determine " -"the value of the loss." -msgstr "" - -# ca5baca07a984f5a85b7d6f861190ae5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:70 -msgid "" -"By adding up all of the damage it is possible to assess the total damages " -"caused by a disaster. In the remainder of this module, we will calculate the " -"value of the losses in our Sirahan project, and see how we can display them " -"graphically using our map, based on the damage suffered in each hamlet." -msgstr "" - -# 2c356e52d596430a94a4b1c78abf563c -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:77 -msgid "2. Damage and losses assessment map" -msgstr "" - -# fd239d1ed6a54b1f901491e9679d9fdf -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:79 -msgid "" -"We will create a damage and loss assessment map using our data from Sirahan " -"village that we have been working with throughout this unit." -msgstr "" - -# f7f7b6db73ed4c47a3b416b8c880e407 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:82 -msgid "" -"Open QGIS and make sure that the following layers are loaded into your " -"project:" -msgstr "" - -# a35056d10b1846839144ef470438c8c0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:84 -msgid "area_terdampak_Sirahan" -msgstr "" - -# e301aa19f326473689b84cedb9550bab -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:85 -msgid "Jalan_Sirahan" -msgstr "" - -# 8678c6b99a70413cb5ba1b29ce6d18ec -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:86 -msgid "Sungai_Sirahan" -msgstr "" - -# a74087d8d4d046228f5d3df3a5a0f1aa -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:87 -msgid "Batas_Desa_Sirahan" -msgstr "" - -# 673db13bced146929e13f48407eca371 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:88 -msgid "Bangunan_Sirahan" -msgstr "" - -# 283ff229e00742638be5950aedaeb373 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:93 -msgid "" -"We will assume that all the buildings in the :guilabel:" -"`area_terdampak_Sirahan` layer (hazard zone) suffered heavy damage from the " -"disaster. Let’s create a spatial query to filter out these buildings." -msgstr "" - -# db03bacc16b44af5afb10f3b50679330 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:97 -msgid "" -"Go to :menuselection:`Vector ‣ Spatial Query ‣ Spatial Query` and enter the " -"fields like this:" -msgstr "" - -# 2ebcfd5d283f40b6ac08cc0be2e8c097 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:103 -msgid "" -"We now have a group of buildings selected which we are assuming will suffer " -"heavy damages. According to the BNPB Guide, we can assess the loss of " -"heavily damaged buildings at a rate of 1.8 million Rp. per square metre, and " -"the multiplier factor is 70%. Our formula for calculating losses is:" -msgstr "" - -# 44586cad04614691aaf026c8db30bee2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:108 -msgid "*Total Building area x Loss Value per m² x Multiplier factor*" -msgstr "" - -# 634afac95ece494c931ae774cd5b3432 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:110 -msgid "Therefore we want to calculate:" -msgstr "" - -# 74ae8ee0bd9a44cfa24f181ab3bd49e4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:112 -msgid "*Total Building Area x 1.8 million Rp. x 70%*" -msgstr "" - -# 6717aa35a1244a80a325f9e5bb750b6f -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:114 -msgid "in order to get a calculation of the value of total losses." -msgstr "" - -# 4c7efb326bfb49e7881f9fa5cdb51536 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:116 -msgid "" -"We will use the Intersect Geoprocessing tool, so that we can combine " -"attributes from our district layer with the selection of buildings we have " -"just made." -msgstr "" - -# 8185aa31f88c4fc085a69dbe65363ea7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:120 -msgid "" -"Go to :menuselection:`Vector ‣ Geoprocessing Tools ‣ Intersect` and fill in " -"the fields as follows:" -msgstr "" - -# c6d3361b436146d2b242743b94e7ad3e -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:126 -msgid "Save the result as :kbd:`Bangunan_Terdampak`." -msgstr "" - -# db079ade05ff40bfb27537382ae97d7d -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:128 -msgid "Hide the original buildings layer so that your map looks like this:" -msgstr "" - -# 06f9d4ea78664ae5b096aa2a37b01bb0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:133 -msgid "" -"Run Intersect again, this time with the new :guilabel:`Bangunan_Terdampak` " -"layer and the :guilabel:`Batas_Desa_Sirahan` layer, so that the attribute " -"table will include the DUSUN attribute. Name the new layer :kbd:" -"`bangunan_terdampak_perdusun.shp`." -msgstr "" - -# 05507717ec994c299f59133d96bd349a -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:142 -msgid "3. Calculating damage area" -msgstr "" - -# 105a768670be46019fa9bd53329b6e5f -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:144 -msgid "" -"On the attribute table of :guilabel:`bangunan_terdampak_perdusun`, click " -"the :guilabel:`Toggle Editing` button." -msgstr "" - -# e751409e95184d2da586ab5f4ce98ebc -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:150 -msgid "Click the :guilabel:`New Column` button." -msgstr "" - -# 043d3d31edc74210a3af63f167b30e95 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:155 -msgid "Create a new column named :kbd:`Damage` of type decimal number:" -msgstr "" - -# 672ea040e6d543c49bdc960b380a0325 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:160 -msgid "" -"To calculate the damaged area of affected buildings we will use the field " -"calculator to determine the number of square metres in each building " -"feature. Click on :guilabel:`Field Calculator`." -msgstr "" - -# 80e88cead65d489795b3736addd59814 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:167 -msgid "" -"Check the box next to :guilabel:`Update existing field` and select :guilabel:" -"`Damage_Area` in the drop-down box." -msgstr "" - -# b1d54d1c6e0d4414b3b5bbdb0f2eb603 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:170 -msgid "" -"Find :guilabel:`$area` under :guilabel:`Geometry` in the function list and " -"double-click on it, so that it appears in the Expression box at the bottom. " -"It should look like this:" -msgstr "" - -# 29641abb8860410c94fcb04ec3e8e4d3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:177 -msgid "" -"Click :guilabel:`OK`. You will see that the column is filled in with the " -"area, in square metres, of the buildings." -msgstr "" - -# d622e5eb5f2d456ca15268f6dc5fe5b9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:183 -msgid "" -"Click the :guilabel:`Toggle Editing` button and be sure to save your edits." -msgstr "" - -# f4983efe27d84edda9f47ef85c8c60e5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:186 -msgid "4. Calculating damages using the Group Stats plugin" -msgstr "" - -# 05093db80de84f1393a54cb53332bd27 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:188 -msgid "" -"We will be using a QGIS plugin called Group Stats in order to calculate " -"damages by each hamlet within Sirahan. You must be connected to the internet " -"to install this plugin." -msgstr "" - -# d66798941fc242d0b20d4693cc1c2d9b -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:192 -msgid "Go to :menuselection:`Plugins ‣ Manage and Install Plugins`." -msgstr "" - -# 425974e61479451885e8cdb8875bfbd9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:194 -msgid "" -"Go to the :guilabel:`All` tab. Type :kbd:`group stats`. When you find the " -"plugin, select it and click :guilabel:`Install`." -msgstr "" - -# 05bac4fc6b3942799d691f065cff3ad3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:200 -msgid "" -"Once it is installed, you will find Group Stats on :menuselection:`Vektor ‣ " -"Group Stats ‣ Group Stats` or your Toolbar. Click it." -msgstr "" - -# 798787461b1249f9a0bd6b2d3354ddc4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:206 -msgid "The Group Stats window will appear." -msgstr "" - -# efef2dae66234fcd9bb71b9115843e9c -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:208 -msgid "" -"To calculate building damages per hamlet, select :guilabel:" -"`bangunan_terdampak_perdusun` in the drop-down box under :guilabel:`layers`." -msgstr "" - -# e6b06aba64a647029874d1e66444adda -# 148de0ca52534189bdd9a50e2668a51a -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:212 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:268 -msgid "" -"Find :guilabel:`Nama_Dusun` in the list of fields. Drag and drop it to :" -"guilabel:`Rows`." -msgstr "" - -# c13d68829c7a4fd29525c72048a7f630 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:215 -msgid "" -"Find :guilabel:`Damage` and :guilabel:`sum` in the list of fields. Drag and " -"drop them to :guilabel:`Value`." -msgstr "" - -# cc98f8a02028419ab64e335335244e09 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:218 -msgid "Click :guilabel:`Calculate`. The results should look like this:" -msgstr "" - -# 0efe4f2f1a294af0b0b47c93b5709ce5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:223 -msgid "" -"Go to :menuselection:`Data ‣ Save all to CSV files` and save it as :kbd:" -"`BNG_Damages`." -msgstr "" - -# f97fb4cd43cb48df96fe64bd0a9d6e12 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:227 -msgid "5. Calculating losses" -msgstr "" - -# d06b4b91021d409db853f198d0b0f53b -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:229 -msgid "" -"We’ve calculated the damaged area and we’ve created a table with damage data " -"for various hamlets in Sirahan. Now let’s implement our losses formula in " -"the same way." -msgstr "" - -# f25aacac1bbb44f3a922dbeabdf190f6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:233 -msgid "" -"Go back to the attribute table for :guilabel:`bangunan_terdampak_perdusun` " -"and add a new column named :kbd:`Losses`." -msgstr "" - -# 5ba5c226e49a416089ab929ee5b5ba8e -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:239 -msgid "Open the :guilabel:`Field Calculator`." -msgstr "" - -# 49f9f1f6ed0d4975a31540a33d7e8157 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:241 -msgid "" -"Check the box next to :guilabel:`Update existing field` and choose :guilabel:" -"`Losses` in the function list." -msgstr "" - -# ffd33e30a54c4c4793d032ebf58b272f -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:244 -msgid "At the bottom in the Expression box, enter the following formula:" -msgstr "" - -# 88f8a1246f7042308ea911171cc68f49 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:246 -msgid "*“Damage” * 1800000 * 0.7*" -msgstr "" - -# 6a588f1251bb4f4287c8dac8caae48dd -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:251 -msgid "" -"Your new column is now filled with information calculated from this formula, " -"which assesses the value of losses in Rp for each individual building." -msgstr "" - -# dc3819083f2f41d2a7517c7c02d2aa51 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:254 -msgid "Save the layer and end the editing session." -msgstr "" - -# 01f7f92966b942dab5cf263dc48b730d -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:257 -msgid "6. Calculating losses using the Group Stats plugin" -msgstr "" - -# a574b2c9464345069f7ef196d198f130 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:259 -msgid "Now let’s calculate losses per hamlet using the Group Stats again." -msgstr "" - -# a853471ec6684a3b9cd9261a6ab418be -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:261 -msgid "Open the Group Stats window." -msgstr "" - -# 3ec4778a41304fe3bc60f153d92f1802 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:263 -msgid "" -"Select :guilabel:`bangunan_terdampak_perdusun` in the drop-down box under :" -"guilabel:`layers`." -msgstr "" - -# 10d8ed5554be432f905f88555275840e -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:266 -msgid "Click :guilabel:`Clear` to start a new analysis." -msgstr "" - -# c397524987dd429e8710f10bfa5e33a7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:271 -msgid "" -"Find :guilabel:`Losses` and :guilabel:`sum` in the list of fields. Drag and " -"drop them to :guilabel:`Value`." -msgstr "" - -# 25814b6003074c0dbfd864c0852d23aa -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:274 -msgid "" -"Click :guilabel:`Calculate`. The new table shows the losses in each hamlet:" -msgstr "" - -# ad05f6fd0547427dbcdaa0da978deceb -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:279 -msgid "" -"Go to :menuselection:`Data ‣ Save all to CSV files` and save it as :kbd:" -"`BNG_Losses`." -msgstr "" - -# 2e107eaea2494b91b7b06eb5b55b7bd3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:283 -msgid "7. Joining data" -msgstr "" - -# ef9c4fd629004302bed66e433b674fd6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:285 -msgid "" -"Now we will join the tables that we created to our :guilabel:" -"`Batas_Desa_Sirahan` attribute table and then use them to add new columns to " -"the file." -msgstr "" - -# 973224c4fbad4d0b96ffca13bfe981bb -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:289 -msgid "" -"Add the files :file:`BNG_Damages` and :file:`BNG_Losses` into QGIS, using :" -"guilabel:`Add vector layer`. Make sure you set the file type as CSV in the " -"dialog so that CSV files appear." -msgstr "" - -# eb14e3251c474e6e89c4b23277373266 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:296 -msgid "" -"The new files will appear in your Layers panel but not on your map, because " -"they are not geographic data files, but rather tables." -msgstr "" - -# 40cd528b451747f7b5dcaee7c6059321 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:302 -msgid "" -"Now we will perform an operation to join the layer :guilabel:" -"`Batas_Desa_Sirahan` with :guilabel:`BNG_Damage`. Right-click on the :" -"guilabel:`Batas_Desa_Sirahan` layer and open the Properties window." -msgstr "" - -# 0fed8ae2d36647fdab02a9c335a728ac -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:307 -msgid "Go to the Joins tab:" -msgstr "" - -# 533311602eb9444caf6bb808b3ad86ec -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:312 -msgid "Click the plus sign and fill in the following fields:" -msgstr "" - -# 8ee883408ca84a3790a0fd821113d8c0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:314 -msgid "Join layer: BNG_Damages" -msgstr "" - -# b898d454544f430b96518ae471441636 -# 0bfc34aac9fe4932ad2182643e009849 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:315 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:326 -msgid "Join field: Nama_Dusun" -msgstr "" - -# 64f38fa7fc164b6193110506cf6126c9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:316 -msgid "Target field: Nama_Dusun" -msgstr "" - -# 48476de6403f4526ac860db371c9bf36 -# bc19d222bc6842bbb800029c243abf67 -# d6c4a9e4e8384d338fc086f6f46204b6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:321 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:329 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:361 -msgid "Click :guilabel:`OK`." -msgstr "" - -# 82f886c4fda443a5b65aca91aaeb3fbd -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:323 -msgid "Click the plus sign again and fill in the following fields:" -msgstr "" - -# f114822a20e044f59e85791903342e14 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:325 -msgid "Join layer : BNG_Losses" -msgstr "" - -# ba4261f8db6c48f5be9e30d01216ffb7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:327 -msgid "Target field : Nama_Dusun" -msgstr "" - -# a23a0c24f26b4e0fb3072899ce101a83 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:331 -msgid "" -"Close the Properties window. Open the attribute table for :guilabel:" -"`Batas_Desa_Sirahan`. The BNG_Damages and BNG_Losses columns are now " -"attached based on the hamlet." -msgstr "" - -# d0f4ae710886420f9cae1d093414cf90 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:339 -msgid "" -"Note that the BNG_Damages and BNG_Losses columns are not permanently " -"attached, but rather joined together with our file in the computer memory. " -"We should save it as a new layer. Close the attribute table. Right-click " -"the :guilabel:`Batas_Desa_Sirahan` layer and click :guilabel:`Save as`. Name " -"the new layer :kbd:`analisis_dala_Sirahan.shp`." -msgstr "" - -# df4154d175154e32a04709f4cd7b1edc -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:346 -msgid "" -"We need to convert the BNG_Damages and BNG_Losses column in our new layer to " -"real numbers. Open the attribute table for :guilabel:" -"`analisis_dala_Sirahan`. Click the :guilabel:`Toggle editing` button and " -"open the Field Calculator." -msgstr "" - -# 702ff7bc21bd4c4bab0fad13fde2d93e -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:351 -msgid "" -"This time, we will create a new field. Enter as the new field name :kbd:" -"`Damages`, with the output field type as :guilabel:`Decimal number (real)`. " -"Enter :kbd:`20` as the field width and the precision as :kbd:`10`. Under the " -"function list double-click :guilabel:`BNG_Damage`. The window should look " -"like this:" -msgstr "" - -# b0dc74ebf604460b8132cffe6cb41940 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:363 -msgid "" -"Now, we will create another new field for Losses. Enter as the new field " -"name :kbd:`Losses`, with the output field type as :guilabel:`Decimal number " -"(real)`. Enter :kbd:`20` as the field width and the precision as :kbd:`10`. " -"Under the function list double-click :guilabel:`BNG_Losses`. Click :guilabel:" -"`OK`." -msgstr "" - -# 12da265270f34385b4b3c59585803952 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:370 -msgid "Exit editing mode and save your changes." -msgstr "" - -# d1c91023c88a425f813b502e76b38ddc -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:374 -msgid "8. Creating a chart" -msgstr "" - -# 36cb4a76b1ac4ea89eccbe7c5f8922ac -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:376 -msgid "" -"We will conclude by representing these damage and loss values as a chart in " -"QGIS." -msgstr "" - -# 9fdf6a5130a54c29a1ed65d9f02240c3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:378 -msgid "" -"Open the the Properties window for :guilabel:`analisis_dala_Sirahan`. Go to " -"the :guilabel:`Diagram` tab." -msgstr "" - -# c6559cf991a84252b2240a996ecdaafc -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:381 -msgid "Check the box next to :guilabel:`Display diagrams`" -msgstr "" - -# 46fbcd5c0d044b6d8e7effa86d49d00c -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:383 -msgid "Make sure :guilabel:`Pie chart` is selected in the drop-down box." -msgstr "" - -# 32e320e473b344939046e79d6885b4a9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:385 -msgid "" -"Under :guilabel:`Available attributes`, select :guilabel:`Damages` and click " -"the plus(+) button." -msgstr "" - -# 62749d036d35428fa2494372b536fff2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:388 -msgid "" -"You can change the colour by double-clicking the colour under :guilabel:" -"`Assigned attributes`. The settings should look like this:" -msgstr "" - -# 5af7c32b4f3c41059c9aa93b1b953ff8 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:394 -msgid "Go to the :guilabel:`Size` tab." -msgstr "" - -# 86d3faefe12b4a9ab5897ccd6a96b85e -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:396 -msgid "" -"Disable the fixed value, and then click :guilabel:`Find Maximum Value`. " -"Change the scale value to :guilabel:`Area`." -msgstr "" - -# 3e90823dd95d4e329078a93fd61323f4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:402 -msgid "" -"You may change the value next to :guilabel:`Size` also if you feel the " -"diagram is too big." -msgstr "" - -# 51e2c5c1f8904dcc9f7bddba9902f482 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:405 -msgid "The resulting map will look like this:" -msgstr "" - -# 5557d29413c247f8b002e8271d26092a -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:410 -msgid "" -"The size of each bubble represents the loss values in each hamlet. The " -"bigger the size, the heavier the losses. Creating a map with this sort of " -"chart can be an effective way to communicate the impact of a disaster. Now " -"you can lay out your map, and then create another map showing Losses." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/index.po b/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/index.po deleted file mode 100644 index a0a27d07..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/index.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# e04c3f8f7b9742ae959b8073e032ec8c -#: ../../source/training/old-training/intermediate/qgis-inasafe/index.rst:8 -msgid "Unit 4: Data Analysis Using QGIS and |project_name| Intermediate Level" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-00-preface.po b/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-00-preface.po deleted file mode 100644 index fdb66af3..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-00-preface.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 219d357a37634c61b66f07f6fe708b26 -# f2cf1c8eae1c4396ba88b18cb075e253 -#: ../../source/training/osm/Chapter-00-preface.rst:9 -#: ../../source/training/osm/Chapter-00-preface.rst:95 -msgid "Preface" -msgstr "" - -# 6a1cc6db129243efae0f127c985f0271 -#: ../../source/training/osm/Chapter-00-preface.rst:12 -msgid "Disclaimer" -msgstr "" - -# 79d63f09ebec4972bc5d22e94dcf2e88 -#: ../../source/training/osm/Chapter-00-preface.rst:14 -msgid "" -"This document is initial draft and still in reviewing phase by these parties:" -msgstr "" - -# d1bcd25359af41debe82d54a1c164294 -#: ../../source/training/osm/Chapter-00-preface.rst:16 -msgid "Badan Nasional Penanggulangan Bencana (|BNPB|)" -msgstr "" - -# d8a2ab4740d143389be37b3afb10d009 -#: ../../source/training/osm/Chapter-00-preface.rst:17 -msgid "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" -msgstr "" - -# 7d1effbf34764c37949298617eaba2e5 -#: ../../source/training/osm/Chapter-00-preface.rst:18 -msgid "Humanitarian OpenStreetMap Team (|HOT|)" -msgstr "" - -# 520426a824ec404a8734350052a1c0af -#: ../../source/training/osm/Chapter-00-preface.rst:20 -msgid "" -"All contents and materials on this document may be changed without public " -"notice." -msgstr "" - -# 563f21c25fe94df494bda7393bd5ed79 -#: ../../source/training/osm/Chapter-00-preface.rst:24 -msgid "Licence" -msgstr "" - -# 41859a45845d4a21978cd68d4e7dc259 -#: ../../source/training/osm/Chapter-00-preface.rst:28 -msgid "" -"All contents and materials in this document are licensed as Creative Commons " -"Attribution Australia (CCbyA)." -msgstr "" - -# d114645f05024cc4bef4fab95332711e -#: ../../source/training/osm/Chapter-00-preface.rst:31 -msgid "You are free:" -msgstr "" - -# 2bdc648a77ee4c7da199e1248c8c7892 -#: ../../source/training/osm/Chapter-00-preface.rst:33 -msgid "to copy, distribute, display, and perform the work" -msgstr "" - -# f01c9d84bd1347cf9bbdcea02ee881f2 -#: ../../source/training/osm/Chapter-00-preface.rst:34 -msgid "to make derivative works" -msgstr "" - -# a1d65dd5ae184cc0ba1d4ad37b7403c3 -#: ../../source/training/osm/Chapter-00-preface.rst:35 -msgid "to make commercial use of the work" -msgstr "" - -# 61533ad60f7e4f9eb0269f441efb163d -#: ../../source/training/osm/Chapter-00-preface.rst:37 -msgid "You must give the original author credit." -msgstr "" - -# 6989cfee309c4a6884e55d7eb1a1cc47 -#: ../../source/training/osm/Chapter-00-preface.rst:39 -msgid "" -"More information about CCbyA License: http://creativecommons.org/licenses/" -"by/3.0/au/deed.en_GB" -msgstr "" - -# c42ec5897e264d098da9cbbe028b0cb0 -#: ../../source/training/osm/Chapter-00-preface.rst:43 -msgid "About Us" -msgstr "" - -# ded60fc646b7452cb08680f22285a91b -#: ../../source/training/osm/Chapter-00-preface.rst:45 -msgid "Badan Nasional Penanggulangan Bencana (BNPB)" -msgstr "" - -# 2ca1634ab0ae4c2fa41d1c95f840ca9d -#: ../../source/training/osm/Chapter-00-preface.rst:49 -msgid "" -"BNPB is Indonesia’s National Disaster Management Agency. |BNPB| is a non-" -"departmental ministerial-level government agency, tasked with providing " -"guidance and direction to the efforts of disaster management that includes " -"disaster prevention, emergency response, rehabilitation and reconstruction " -"in a fair and equal way. |BNPB| functions as a policy maker regarding " -"refugee/IDP management for effective and efficient response. It coordinates " -"the implementation of disaster management activities in a planned, " -"integrated and comprehensive way." -msgstr "" - -# 16b41f190325409aa54c607fc5555562 -#: ../../source/training/osm/Chapter-00-preface.rst:59 -msgid "http://bnpb.go.id" -msgstr "" - -# f3738d63b44f401596b3f45dfd527efe -#: ../../source/training/osm/Chapter-00-preface.rst:62 -msgid "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" -msgstr "" - -# c7250e48c7b54fc8b7317237aaaace9b -#: ../../source/training/osm/Chapter-00-preface.rst:66 -msgid "" -"The Australia-Indonesia Facility for Disaster Reduction (|AIFDR|) is a joint " -"initiative between the governments of Australia and Indonesia. They work to " -"strengthen Indonesia's ability to reduce the impact of disasters. The " -"Australian and Indonesian governments at a special ceremony on 15 July 2010 " -"launched the Australia-Indonesia facility. The launch marks an important " -"event in the strong relationship now shared by both countries and their " -"united commitment to better prepare for and respond to natural disasters in " -"Indonesia." -msgstr "" - -# 044bd1e0983b422dbf5521fd2cf031c6 -#: ../../source/training/osm/Chapter-00-preface.rst:75 -msgid "http://aifdr.org" -msgstr "" - -# a34b979099d84a3d839644ed6bfdd5e6 -#: ../../source/training/osm/Chapter-00-preface.rst:78 -msgid "Humanitarian OpenStreetMap Team (HOT)" -msgstr "" - -# 9f20fb2a9d684d50932900917bec1b5c -#: ../../source/training/osm/Chapter-00-preface.rst:82 -msgid "" -"Free, collaborative maps are uniquely valuable to humanitarian work, " -"especially in places where base map data is often scarce, out-of-date, or " -"rapidly changing. OpenStreetMap (OSM) is a web project to create a free and " -"open map of the entire world, built entirely by volunteers surveying with " -"GPS, digitising aerial imagery, and collecting and liberating existing " -"public sources of geographic data. The Humanitarian OpenStreetMap Team (|" -"HOT|) is an initiative to apply the principles and activities of open source " -"and open data sharing towards humanitarian response and economic development." -msgstr "" - -# 6e464d870bc34e9da27f6a497d85a566 -#: ../../source/training/osm/Chapter-00-preface.rst:91 -msgid "http://hot.openstreetmap.org" -msgstr "" - -# 5d7bd91a8bde4c8baaaaa91642201763 -#: ../../source/training/osm/Chapter-00-preface.rst:96 -msgid "" -"Every day thousands of people contribute to OSM, a project with the lofty " -"goal of mapping the world. Most OSM software is free and open source, and " -"the data is open for anyone to use. The idea is simple: if you make a map of " -"your town and we make a map of ours, we can share those maps on a common " -"platform. With enough people contributing, we can collect data throughout " -"the world." -msgstr "" - -# e3d782d070d8415bb5e8a69831890348 -#: ../../source/training/osm/Chapter-00-preface.rst:103 -msgid "" -"Collecting Spatial Data using OpenStreetMap is a step-by-step course " -"designed to help anyone get started with OSM. While it might seem daunting " -"at first, OSM is simple enough that anyone can get started creating maps, " -"and as your understanding grows you'll find that you can do more and more " -"interesting things." -msgstr "" - -# dfb7c1b9a8984510904a836b7ef56230 -#: ../../source/training/osm/Chapter-00-preface.rst:109 -msgid "" -"This tutorial makes few assumptions. It assumes you have used a computer " -"before, and that you have an email address. If you don't have an email " -"address, we suggest you have a friend help you sign up for one. There are " -"many websites where you can get a free email address, such as www.gmail.com " -"or mail.yahoo.com." -msgstr "" - -# 6869381e8cde4d4189470500d19679d8 -#: ../../source/training/osm/Chapter-00-preface.rst:115 -msgid "" -"The only other assumption is that you've used the internet before. Perhaps " -"you're familiar with Facebook or email, and that's certainly enough to get " -"started with OSM. If you're already comfortable using a computer and surfing " -"the web, don't worry – this guide is for you too. No matter your " -"proficiency, we'll take you step-by-step through OSM and you'll be mapping " -"in no time!" -msgstr "" - -# 5b54c3f7908742448912de591aacbaab -#: ../../source/training/osm/Chapter-00-preface.rst:122 -msgid ":ref:`Go to first chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-01-introduction.po b/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-01-introduction.po deleted file mode 100644 index fb176208..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-01-introduction.po +++ /dev/null @@ -1,144 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# d204398e069540ecbdd3f20363576045 -#: ../../source/training/osm/Chapter-01-introduction.rst:10 -msgid "Chapter 1: Introduction" -msgstr "" - -# 342aabec49b04a108f6faf6b3a1b3223 -#: ../../source/training/osm/Chapter-01-introduction.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# a8a964c8b4cb404bb76a9520e304057e -#: ../../source/training/osm/Chapter-01-introduction.rst:14 -msgid "Understanding OpenStreetMap" -msgstr "" - -# 09ab60b7430b4e40aca7e37e2bc0b544 -#: ../../source/training/osm/Chapter-01-introduction.rst:15 -msgid "Understanding Data Collection Purposes" -msgstr "" - -# 3459dc2490d74048bdfd069fe0adfdb5 -#: ../../source/training/osm/Chapter-01-introduction.rst:17 -msgid "" -"Information is important. With good information and the right understanding, " -"individuals and communities are better able to improve their lives and make " -"good decisions about the future. There are many people and organizations who " -"make decisions that affect our lives. Good information allows these NGO’s " -"(non-government organisations), governments and communities to make better " -"decisions, and hopefully make our lives better." -msgstr "" - -# 5b8f529166b742c6b5d3387985a3b932 -#: ../../source/training/osm/Chapter-01-introduction.rst:23 -msgid "*Satellite Imagery*" -msgstr "" - -# 82ba8f2b49114751a5d89662f46da9ff -#: ../../source/training/osm/Chapter-01-introduction.rst:25 -msgid "" -"Maps are a good way to deliver information. Maps are visual symbols ofour " -"world. They can often demonstrate an idea better than words. This in turn " -"can help us answer important questions. Where is the closest school or " -"hospital? Who has the least access to these facilities? Where is poverty the " -"most problematic? Questions like these can often best be expressed with " -"maps, and maps can help find solutions to these questions." -msgstr "" - -# bd1352de191848439c0b02fab3230262 -#: ../../source/training/osm/Chapter-01-introduction.rst:28 -msgid "" -"As an exercise, get a pen and paper and draw a map of your town or village. " -"What are the most important things to include on the map? What is the most " -"important information? Spend a few minutes making your map, and when you’re " -"finished, think about why the information you included is important, and who " -"it might be important to." -msgstr "" - -# b01b538c2a7d47e09ed600604e091ec9 -#: ../../source/training/osm/Chapter-01-introduction.rst:33 -msgid "*Example of Paper Map*" -msgstr "" - -# 1817117e71994a14bc81de493f6ba42a -#: ../../source/training/osm/Chapter-01-introduction.rst:35 -msgid "" -"If your town is like most, you may have drawn some lines to represent roads, " -"possibly a river or stream. Perhaps you added important buildings such as " -"schools and offices, fields, or boundaries. Whatever you drew, you probably " -"used symbols – a line to symbolize a road, a square to symbolize a building, " -"and so on. Your map is a representation of what is on the ground." -msgstr "" - -# b32d0373a196421b98fd98e1a9c5cb67 -#: ../../source/training/osm/Chapter-01-introduction.rst:41 -msgid "*Example of Symbols that be used in Map*" -msgstr "" - -# a4f1c5e2e36a447da2e8acf8cd296e5c -#: ../../source/training/osm/Chapter-01-introduction.rst:43 -msgid "" -"Your map is informative. You might use a map like this to explain to someone " -"where different places are, where problems are in your community, or merely " -"to help someone find their way around. The use of your map is limited though " -"- there is only one copy of the map. The way you drew it may make sense to " -"you, but perhaps not to someone else who would have drawn their own map in a " -"different way. Because your map is merely on paper, it is difficult to get " -"that information to others. This is why making your map on a computer, in " -"such a way that anyone can access it, can be much more valuable." -msgstr "" - -# 375f29800fb645b2a71f660bb45760c9 -#: ../../source/training/osm/Chapter-01-introduction.rst:50 -msgid "*Digital Map*" -msgstr "" - -# e528419161a94eacb2e190a4fe759237 -#: ../../source/training/osm/Chapter-01-introduction.rst:52 -msgid "" -"OpenStreetMap is a tool for creating and sharing map information. Anyone can " -"contribute to OSM, and thousands of people add to the project every day. " -"Users draw maps on computers, rather than paper, but as we will see in this " -"guide, drawing a map on a computer is not all that different from drawing on " -"paper. We still draw lines to represent roads, fields and anything else and " -"we still represent schools and hospitals with symbols. The important thing " -"is that OSM maps are saved on the internet, and anyone can access them at " -"any time. Most importantly, the data are free." -msgstr "" - -# 0aceebdfae0a4dc6837ab646ca396935 -#: ../../source/training/osm/Chapter-01-introduction.rst:59 -msgid "*OpenStreetMap*" -msgstr "" - -# f22df9bd471f47dc9a8e2a90a8ede6c7 -#: ../../source/training/osm/Chapter-01-introduction.rst:61 -msgid "" -"We hope that you will find OpenStreetMap useful and interesting in your work " -"and activities. By following this guide, you should be able to quickly learn " -"start making digital maps with OpenStreetMap." -msgstr "" - -# 38079e1472ba43c0826d93c411a112e4 -#: ../../source/training/osm/Chapter-01-introduction.rst:63 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-02-getting-started.po b/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-02-getting-started.po deleted file mode 100644 index ad540b46..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-02-getting-started.po +++ /dev/null @@ -1,363 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 9814a3bcb8794ee3ae6ea44c8cc42c58 -#: ../../source/training/osm/Chapter-02-getting-started.rst:10 -msgid "Chapter 2: Getting Started" -msgstr "" - -# 783c7fb25c8046c88646e03eb1c45b63 -#: ../../source/training/osm/Chapter-02-getting-started.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 2d3eac3b04a84ba687011676434a5805 -#: ../../source/training/osm/Chapter-02-getting-started.rst:14 -msgid "Navigating to the OpenStreetMap Website" -msgstr "" - -# b2ae0081205f455cb8c9619666930b05 -#: ../../source/training/osm/Chapter-02-getting-started.rst:15 -msgid "Know how to navigate OpenStreetMap (search, move, zoom in/zoom out)" -msgstr "" - -# df1a745d1e874edf8dbb4f6b1ca24ef7 -#: ../../source/training/osm/Chapter-02-getting-started.rst:16 -msgid "Know how to export OpenStreetMap into image and changing layers" -msgstr "" - -# d112953df5da4c37b52bb4c5ba778a0d -#: ../../source/training/osm/Chapter-02-getting-started.rst:17 -msgid "Know how to create an account in OpenStreetMap" -msgstr "" - -# e9d47f4174d6406fb3309dca6250ee4d -#: ../../source/training/osm/Chapter-02-getting-started.rst:19 -msgid "" -"In this section we will learn step by step how to navigate the OpenStreetMap " -"website, view maps, and sign up for a user account. After you have your " -"OpenStreetMap account, you will be able to contribute your first points to " -"the map." -msgstr "" - -# 981e164b8eaa4c72af56e936d534ebae -#: ../../source/training/osm/Chapter-02-getting-started.rst:22 -msgid "2.1 Visit the OpenStreetMap Website" -msgstr "" - -# 0ace8e57f2804bcfb26e4cf37a1f7f36 -#: ../../source/training/osm/Chapter-02-getting-started.rst:24 -msgid "" -"Before you begin, be sure your computer is connected to the internet. Then, " -"follow these steps:" -msgstr "" - -# 9e69d9c0d9b7449d9a90d96544de65c3 -#: ../../source/training/osm/Chapter-02-getting-started.rst:26 -msgid "" -"Open your web browser. Common browsers are Firefox, Chrome, Opera, or " -"Internet Explorer." -msgstr "" - -# e1a6b6f01fa94ebfb98e5166cba4c82b -#: ../../source/training/osm/Chapter-02-getting-started.rst:27 -msgid "" -"In the address bar at the top of your browser, type `www.openstreetmap.org " -"`__ and enter" -msgstr "" - -# 4649f1bb2af44da99561f0df31d5f8ec -#: ../../source/training/osm/Chapter-02-getting-started.rst:28 -msgid "When the page has finished loading, you should see something like this:" -msgstr "" - -# 92fdb5d9065d43749bcaab87b7e202fc -#: ../../source/training/osm/Chapter-02-getting-started.rst:33 -msgid "*OpenStreetMap Interface*" -msgstr "" - -# cb206ed053114717b784d7e3e99ee472 -#: ../../source/training/osm/Chapter-02-getting-started.rst:36 -msgid "2.2 Navigate the Map" -msgstr "" - -# 4b704df7b01e4c61ab70b30aed3e68f6 -#: ../../source/training/osm/Chapter-02-getting-started.rst:38 -msgid "" -"The main thing you should see is the map. Move the map by clicking on it " -"with your left mouse button, holding the button down, and dragging your " -"mouse around (see figure below)." -msgstr "" - -# 947613bcba0f4a2ab9c384af8c4cdd44 -#: ../../source/training/osm/Chapter-02-getting-started.rst:43 -msgid "*Some Tools in OpenStreetMap*" -msgstr "" - -# b39a90e1bb3142f59e5285b09b2251b5 -#: ../../source/training/osm/Chapter-02-getting-started.rst:45 -msgid "" -"If you have mouse with scroll wheel, you can zoom in and zoom out your map " -"using scroll wheel in your mouse. If you do not have, you can use :guilabel:`" -"+` and :guilabel:`-` button at the top right corner on your map." -msgstr "" - -# 95fc7af4d904407b88e66f69bbae4121 -#: ../../source/training/osm/Chapter-02-getting-started.rst:51 -msgid "*Navigation Instruction Using a Mouse*" -msgstr "" - -# 8f2b9bd7399147009ee59b39df884e35 -#: ../../source/training/osm/Chapter-02-getting-started.rst:53 -msgid "" -"To search for a place, left-click in the box labeled :guilabel:`search` on " -"the left side of the page. Type name of your town or village and press " -"Enter. A window should appear to the left of the map with the results of " -"your search. Click on the location that looks like the one you want. The " -"map will automatically re-center on the location chosen from the list." -msgstr "" - -# 123c5d8c0e04446397ceede37ae6c291 -#: ../../source/training/osm/Chapter-02-getting-started.rst:60 -msgid "*OpenStreetMap Search Result*" -msgstr "" - -# 0100469795234b09b658343e6c2af4e8 -#: ../../source/training/osm/Chapter-02-getting-started.rst:63 -msgid "2.3 View with Different Map Styles" -msgstr "" - -# b1bded9f5219446b870d0b60c519bc33 -#: ../../source/training/osm/Chapter-02-getting-started.rst:65 -msgid "" -"OpenStreetMap contains geographic data from all over the world. Although it " -"is a single database, the data can be interpreted and styled in different " -"ways. To see this in action, click the :guilabel:`layers` button at right " -"side in your map window." -msgstr "" - -# 5870ee8f065242129e48e137ab5607ff -#: ../../source/training/osm/Chapter-02-getting-started.rst:71 -msgid "*Layer Button to change layers in OpenStreetMap*" -msgstr "" - -# f1b9c1d495a94942ac5938e395b2f1a9 -#: ../../source/training/osm/Chapter-02-getting-started.rst:73 -msgid "" -"Click on the different layer options for the map. Each layer has a different " -"style. For instance, the Transport Map emphasizes transportation routes such " -"as roads and bus stations, while the Humanitarian Map emphasizes public " -"facilities such as schools, hospitals and government offices. All of these " -"views are possible because of the structured data contained in the OSM " -"database. See the figure below for a comparison of the Transport Map and the " -"Humanitarian Map." -msgstr "" - -# 05a78515731542d2a0a56e3abc7967b1 -#: ../../source/training/osm/Chapter-02-getting-started.rst:80 -msgid "*(Top) Humanitarian (Bottom) Transport Map*" -msgstr "" - -# 61bc2f0ba2694c778e524069589c4024 -#: ../../source/training/osm/Chapter-02-getting-started.rst:83 -msgid "2.4 Export Map into Image" -msgstr "" - -# e7994386299040e291586c9f5b1aa0b5 -#: ../../source/training/osm/Chapter-02-getting-started.rst:85 -msgid "" -"In addition to changing the layers in OpenStreetMap, you also can export " -"your map as an image. The steps are as follow:" -msgstr "" - -# 17785b280b5042dab06880200b88547b -#: ../../source/training/osm/Chapter-02-getting-started.rst:87 -msgid "" -"Click the :guilabel:`Share` icon at your right side on your map window, as " -"shown in the figure below:" -msgstr "" - -# a93f9c9cd88744a292dc0dc3f0e0198e -#: ../../source/training/osm/Chapter-02-getting-started.rst:92 -msgid "*Share Button in OpenStreetMap*" -msgstr "" - -# 402cf0e37c104ebfb16e23630e7a1a1b -#: ../../source/training/osm/Chapter-02-getting-started.rst:94 -msgid "" -"After determining the area that want to be exported, tick :guilabel:`Set " -"custom dimensions` box and adjust size of the area that you want to export. " -"You also can change the scale." -msgstr "" - -# 92668017bab34bdda178d052ca384c0c -#: ../../source/training/osm/Chapter-02-getting-started.rst:96 -msgid "" -"When you are finished adjusting the size of the download area, click :" -"guilabel:`download`" -msgstr "" - -# d2a6b7a581f543c8a347fbb93b5c0a5f -#: ../../source/training/osm/Chapter-02-getting-started.rst:101 -msgid "*Export Map in OpenStreetMap*" -msgstr "" - -# 123cb195c6b54f96949ca22d84901c00 -#: ../../source/training/osm/Chapter-02-getting-started.rst:104 -msgid "2.5 Create an Account in OpenStreetMap" -msgstr "" - -# 998b1b1182bd43bc80835dddfa9aa70e -#: ../../source/training/osm/Chapter-02-getting-started.rst:106 -msgid "" -"Now that you have seen what the main website looks like, you’re now ready to " -"learn how to create an account in OpenStreetMap and make your first " -"additions to the map. The steps are as follows:" -msgstr "" - -# d3c285f9d56a43dfbf47b1b7b6d0bb53 -#: ../../source/training/osm/Chapter-02-getting-started.rst:108 -msgid "" -"On the OpenStreetMap website, click :guilabel:`sign up` in the top right " -"corner of the page." -msgstr "" - -# 14ca6ffa6e014c92a39729a8540479b6 -#: ../../source/training/osm/Chapter-02-getting-started.rst:110 -msgid "You should see a new page that looks like the figure below:" -msgstr "" - -# 96d3a9841c564f6a990c84a1daa9796e -#: ../../source/training/osm/Chapter-02-getting-started.rst:115 -msgid "*Interface to make account in OpenStreetMap*" -msgstr "" - -# 0424216a0111448fb1809a80825e1b68 -#: ../../source/training/osm/Chapter-02-getting-started.rst:117 -msgid "" -"There are five boxes on this page that you need to fill in to register an " -"account with OSM." -msgstr "" - -# ead9a303deb249b990b0e0060dbd63af -#: ../../source/training/osm/Chapter-02-getting-started.rst:119 -msgid "" -"Enter your :guilabel:`email address` in the first two boxes. You should " -"enter the same email address in both boxes. Later, you will need to open " -"your email to confirm your account with OpenStreetMap." -msgstr "" - -# c9dfdebc46614cf6b5136b9ab69b5d11 -#: ../../source/training/osm/Chapter-02-getting-started.rst:121 -msgid "" -"In the third box, enter the :guilabel:`username` that you would like to " -"have. Your username will be unique to you, and you will not be able to " -"choose a username that someone else has chosen, so be creative. If you try " -"to enter something simple, like your first name, it is likely that someone " -"has already claimed that name." -msgstr "" - -# 1151a38234664603b13b39b17df322a9 -#: ../../source/training/osm/Chapter-02-getting-started.rst:123 -msgid "" -"Enter a :guilabel:`new password` in the fourth and fifth boxes. Take care to " -"enter the same password in both boxes. It does not need to be the same as " -"the password for your email." -msgstr "" - -# 697cb696404743c4912fa4176288da59 -#: ../../source/training/osm/Chapter-02-getting-started.rst:125 -msgid "" -"You may want to write down your OSM username and password. You will need it " -"to log in later." -msgstr "" - -# ca761ea131e24f25b3ccbf53d9552b55 -#: ../../source/training/osm/Chapter-02-getting-started.rst:127 -msgid "" -"After you have completed all the boxes, click :guilabel:`Sign Up` at the " -"bottom of the page." -msgstr "" - -# aa5a23d0d52a46488f80ef8bcf852382 -#: ../../source/training/osm/Chapter-02-getting-started.rst:129 -msgid "" -"Open a separate window or tab in your internet browser, and open your email." -msgstr "" - -# 69e4b8846b94436788a4ef4db0541a3f -#: ../../source/training/osm/Chapter-02-getting-started.rst:131 -msgid "Enter your email address and your email password to open your email." -msgstr "" - -# a0636220b5f949539e9ed3f9f66798ab -#: ../../source/training/osm/Chapter-02-getting-started.rst:133 -msgid "" -"If everything was successful with your registration, you should see an email " -"from OpenStreetMap in your inbox. Open the email. It should look like the " -"image below. Click on the link that is identified below:" -msgstr "" - -# 45373db834fb4d729563e498b654b671 -#: ../../source/training/osm/Chapter-02-getting-started.rst:138 -msgid "*Notification from OSM in your inbox*" -msgstr "" - -# 9546b55ed0d3441f952abd3b4ea680ea -#: ../../source/training/osm/Chapter-02-getting-started.rst:140 -msgid "A new tab or window will open. You now have an OSM account!" -msgstr "" - -# 834787fd902e4df9a199441977685072 -#: ../../source/training/osm/Chapter-02-getting-started.rst:142 -msgid "" -"On the OpenStreetMap page, click :guilabel:`Sign Up` in the top right " -"corner. Enter your OpenStreetMap username and password and press Enter. You " -"should now be logged in. You should see your username in the upper right " -"corner of the page." -msgstr "" - -# 90ded1e3194c414781dc39494dcffff7 -#: ../../source/training/osm/Chapter-02-getting-started.rst:144 -msgid "" -"If there are any problems, an error message may pop up. Check top make sure " -"that your email is the same in the first two boxes, and your password is the " -"same in the bottom two boxes. If the third box is highlighted red, it means " -"that someone else has already chosen your username, and you should try a " -"different name." -msgstr "" - -# f0b8671c5656425eabca77e7dd825137 -#: ../../source/training/osm/Chapter-02-getting-started.rst:147 -msgid "Summary" -msgstr "" - -# 7a4c768fbab948e39cac087cd35b58d4 -#: ../../source/training/osm/Chapter-02-getting-started.rst:149 -msgid "" -"Congratulations! If all went as expected, you have your own OpenStreetMap " -"account and you know how to navigate the OSM website. In next chapter, we " -"will learn how to add our data into OpenStreetMap using online editor called " -"iD Editor." -msgstr "" - -# 653e482d83104bd0a899a5c5e87e2d50 -#: ../../source/training/osm/Chapter-02-getting-started.rst:152 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-03-introducing-the-id-editor.po b/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-03-introducing-the-id-editor.po deleted file mode 100644 index 58970e53..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-03-introducing-the-id-editor.po +++ /dev/null @@ -1,598 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 1b1f181ea8554abb8ff0087d1cd878eb -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:10 -msgid "Chapter 3: Introducing the iD Editor" -msgstr "" - -# 72718940b19e47cfa75a79a596fd9ff1 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 9fd77d6c4e9043bab0abd28f9dba053e -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:14 -msgid "Understanding iD Editor interface" -msgstr "" - -# 0d3827287c2d4a258379c4d360e35f94 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:15 -msgid "Editing OpenStreetMap using the iD Editor" -msgstr "" - -# 096ec962d9c44460b7f9f07de1af308e -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:16 -msgid "Saving and Uploading edits" -msgstr "" - -# da7e16da10b64f4c996fd9cc23b94e01 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:18 -msgid "" -"You have succeeded on creating OpenStreetMap account and you’re eligible to " -"edit OpenStreetMap. Now we will learn how to add your data and edit it using " -"an editor that runs in the browser called the iD Editor." -msgstr "" - -# bdc6834fcb714268b86b1a289864c3b4 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:21 -msgid "" -"iD Editor is a web based OpenStreetMap editor that allows you to add and " -"make changes to the OpenStreetMap data easily and fast by using spatial data " -"sources such as satelite imagerY, GPS, and FiledPapers." -msgstr "" - -# 301fa7a6b9a141e985112d5e6a647a6d -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:25 -msgid "3.1 STARTING ID EDITOR" -msgstr "" - -# 89bdc21e291f482d84a22354e8887ee2 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:27 -msgid "" -"Before you start, your computer must be connected to the internet. Open your " -"browser, then go to OpenStreetMap website `http://www.openstreetmap.org " -"`_ , :guilabel:`log in` to your account and :" -"guilabel:`zoom in` to the area that you want to edit until the Edit menu is " -"active. Click on the :guilabel:`arrow sign` next to the :menuselection:`Edit " -"‣ Edit with iD (in-browser editor)` as shown in the figure below." -msgstr "" - -# de009856fd404bd499365c21aac8ffbb -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:35 -msgid "*Activating iD Editor on OpenStreetMap website*" -msgstr "" - -# 4dec832c4f574e93bd7f171504a9b493 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:38 -msgid "3.2 iD Editor Interface" -msgstr "" - -# 1e1da4b481c645b7a2e118cbe29cbaa4 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:40 -msgid "The figure below shows the main features of the iD editor." -msgstr "" - -# 0d211af58e7440c5a912fcb61f6b5dee -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:45 -msgid "*iD Editor Interface*" -msgstr "" - -# 16084bafe6254fe3b7df192395afa960 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:47 -msgid "" -"**Feature Panel**: This panel will show the attributes of an object selected " -"from the map. You can add and edit attribute data from this panel." -msgstr "" - -# a070c2620d3e4fa09fd93a05bb169681 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:50 -msgid "" -"**Panel tools**: This Panel shows some basic editing functions, such as:" -msgstr "" - -# 4d6fba4a8f7340dc9b943010a4c89bb7 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:53 -msgid "Adding a point" -msgstr "" - -# 146f6751c06241c2a3ee35c0d854ce59 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:55 -msgid "Adding lines" -msgstr "" - -# c070a64c1e9f40c6b075761524d9471f -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:57 -msgid "Adding an area (polygon)" -msgstr "" - -# 904b5438340f49cb887597aac52a0c31 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:59 -msgid "Undo" -msgstr "" - -# d63dfac54754414e96d8a649707547c9 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:61 -msgid "Redo" -msgstr "" - -# da9c2ba1baea422bb67ef4f2dbe61422 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:63 -msgid "Saving your changes" -msgstr "" - -# 86d8fcc7613d493c929bc23e7ea186be -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:66 -msgid "" -"**Map Panel**: This panel shows some functions to set and alter the map " -"display" -msgstr "" - -# 512c734132c64ae7ae254c2f7be30455 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:69 -msgid "Zoom In" -msgstr "" - -# 23a18c241e544a8d9c9923cd2eab7e67 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:71 -msgid "Zoom Out" -msgstr "" - -# 34e8472f3f06460f866168faff5339cd -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:73 -msgid "Go to your current location" -msgstr "" - -# b110dc05c17d4898aad94b11c6e6215c -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:75 -msgid "Set the map background" -msgstr "" - -# 6250f78231c9499ab443f522b308eede -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:77 -msgid "Getting Help" -msgstr "" - -# 32ec1004bf6343a5a019c7fe04f1d4c6 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:80 -msgid "" -"**Information panel**: At the very bottom of the image area, this panel " -"shows some information such as those who have contributed map edits in this " -"area, as well as attribution for imagery sources and other map data." -msgstr "" - -# 01ebb4906e824f20b6278dbf04e691ec -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:84 -msgid "3.3 Setting the Map Background" -msgstr "" - -# dc69920d1fce483e8ec40d8cfee7677e -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:86 -msgid "" -"Before you start editing, you can change the map background. Now click on " -"the :guilabel:`layer button`" -msgstr "" - -# 86226458dd4e4107bb66eef4db55cc53 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:91 -msgid "Then a new panel will pop up like this:" -msgstr "" - -# ad4e996fc1bd40a9a66659abd0479753 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:96 -msgid "*Background and brightness setting in iD Editor*" -msgstr "" - -# bffb8b22eb144b859f5bf3e1fefec230 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:98 -msgid "There are several ways to adjust the background in iD Editor. They are:" -msgstr "" - -# c44c1254af204fba8d163345c53a5bc8 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:100 -msgid "" -"You can set the brightness of the satellite imagery by clicking on this box" -msgstr "" - -# afe983aa8bcf4fcabea2f476620059f0 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:105 -msgid "" -"There are 3 brightness you can choose: 100%, 50%, and 0%. Try all of them to " -"see the difference." -msgstr "" - -# 32bde51ec9074598b4e729a7fbdb0899 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:107 -msgid "" -"You can also set the provider of satellite imagery depending on which one is " -"available for your desired area (the standard choice is Bing Aerial " -"Imagery). You can also set OpenStreetMap map as your background." -msgstr "" - -# 9a5168c4e0074f8bbf08d8c85cbd92a2 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:110 -msgid "" -"Also, if you want to make a previously uploaded Field Papers to be your " -"background, please click on the :guilabel:`Custom` choice and put the " -"FieldPapers URL (for example: *http://fieldpapers.org/snapshot.php?" -"id=fdsbgzns#17/-6.20049/106.82533*) on the column as seen below:" -msgstr "" - -# 5c59266573114e66b3d88f88b246f0d5 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:117 -msgid "*Inserting Field Papers into iD Editor*" -msgstr "" - -# ad91fdd1a8ad469ba936b8f61103d2dd -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:119 -msgid "" -"You can add your GPS tracks and waypoints that are saved on your computer " -"(they must be in GPX file format). Just click on your :guilabel:`GPX`, hold, " -"and drag it to the editor page." -msgstr "" - -# 02f632df50dc462daa6e35239210f47d -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:122 -msgid "" -"If there is a known satellite imagery offset, you can do a correction by " -"clicking on :guilabel:`Fix misalignment` until a box seen below shows up:" -msgstr "" - -# d43969f0ac9d4fb19578e28c8a691815 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:128 -msgid "" -"You can set the correction by clicking on the :guilabel:`navigation buttons`" -msgstr "" - -# 05b1da439083499295c12d29558c776f -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:133 -msgid "Click on" -msgstr "" - -# 53dcd59c984847749f1b2c3988b5956b -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:138 -msgid "to bring the imagery back to the initial position." -msgstr "" - -# e0b7c96a4e6a41f8b232221f7a15aa27 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:141 -msgid "3.4 BASIC EDITING WITH ID EDITOR" -msgstr "" - -# d4301ff01e3f485c9134f599c7021b63 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:143 -msgid "" -"Before we start practicing using iD Editor, first navigate to the desired " -"area on the map that you want to edit. You can pan around the map by " -"clicking on your mouse and dragging the map to your area of interest." -msgstr "" - -# 690178be20eb4c2398c556ac242cac5d -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:147 -msgid "Adding a Point" -msgstr "" - -# 526bff5a05f549e7a005d80a62f2be4d -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:149 -msgid "To add a point feature, click on" -msgstr "" - -# 7566496f14fe4dddaeb8938ee8fab5c5 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:154 -msgid "" -"You will see the cursor change into a plus sign **(+)**. Now, click on the " -"object that you want to map. For example, you see a building on the map and " -"you know that building is a hospital. Click on the building." -msgstr "" - -# 250db7c6945647a6a4812cb0fb8211d8 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:160 -msgid "*Adding a point in iD Editor*" -msgstr "" - -# 5e98946715964ec3bdfcdb72736bb770 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:162 -msgid "" -"Now, you can see there’s a new point. At the same time, the feature panel " -"will be showing you attributes that you can choose depending on the object " -"type. Now type **Hospital** on the Search section, and choose **Hospital** " -"to add this feature to the map, as shown in the figure below." -msgstr "" - -# 28145ad4ddc748c5828659ff0e39768f -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:169 -msgid "*Adding information to a point in iD Editor*" -msgstr "" - -# fdd1d5c056c74538839c02c1cb84d1a6 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:171 -msgid "" -"The point symbol will change automatically, and the feature panel will " -"change into a form which can be filled with information about the hospital, " -"such as the name of the hospital, the address, and other information about " -"this feature." -msgstr "" - -# 08b9610c2f8b4d568773858a6fb0b8c4 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:173 -msgid "" -"Features may have a different forms - points, lines, or polygons. It will " -"depends on the type of the feature, the mapping scale, and the quality of " -"imagery." -msgstr "" - -# 6f2f7f184bd44fa4832b4da1861e09fe -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:176 -msgid "" -"If you want to move the location of that point, you can click on the object " -"then hold it and move it to the new location. If you want to delete the " -"object, click on the object, a delete button will show up." -msgstr "" - -# 0d0a2aafb8714c3fb739681f55862dcf -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:182 -msgid "Click on that button to delete the object." -msgstr "" - -# 417737d6cb29463bb84369e7a5d535a3 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:185 -msgid "Adding a Line" -msgstr "" - -# 229f6b3be3c840eea804146a06038a07 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:187 -msgid "Click on:" -msgstr "" - -# 98e77901832a4ac2961602e5a275bb6f -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:192 -msgid "" -"And again you will see the cursor change into a plus sign **(+)**. Suppose " -"you want to draw a road. To do this, first click at one of the ends of the " -"road, then just move your cursor to and keep clicking along the way of the " -"roads and follow it until a road line formed. Double click to end the line " -"and the feature panel will appear again on the left side of the window." -msgstr "" - -# 6d80946318184876b71b8276b69b9624 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:200 -msgid "*Adding lines in iD Editor*" -msgstr "" - -# 649c39ddaa5846a8ad11b78ff75becf5 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:202 -msgid "" -"The feature panel will display some attributes for you to choose from, " -"depending on the type of your line. You can also move the points in the line " -"by clicking on a point and move it. The other thing you can do is move the " -"line by clicking on it, holding down the mouse button, and moving the line. " -"Also, when you click on a point (vertex) on the line, you will find some " -"additional functions as shown in the figure below:" -msgstr "" - -# 681c43ac9b104d8ea10049335d1d92e2 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:209 -msgid "Deleting/removing the point from the line" -msgstr "" - -# faf07503033148b0be38101ed95019f7 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:211 -msgid "Separating a point that is attached to other object." -msgstr "" - -# b85a3c04e38f47fda5f3d9ed755ec4c7 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:213 -msgid "" -"Spliting a line into two different parts. It is useful when there are " -"different attributes in a long line (For example, different road names)" -msgstr "" - -# 344aa4e190cb4dbf9ed0aba726f602e1 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:216 -msgid "" -"Also, when you click on the line (in between points), you will find " -"additional functionality as shown in the figure below:" -msgstr "" - -# a502a1dcea914ae694de22fcad2c3960 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:219 -msgid "Removing the line" -msgstr "" - -# 26acf70c7f9e474aa8f5cf9f1f9a81db -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:221 -msgid "Forming the line into a circle" -msgstr "" - -# 499b07c4c651473d90b821bb7fe24a40 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:223 -msgid "Moving the line position" -msgstr "" - -# 84945d9ec54d4d4996c14cd540036337 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:225 -msgid "Creating the angles of the line into right-angled line" -msgstr "" - -# 6367f62a3128413baec71425328c3229 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:227 -msgid "Reversing the line direction" -msgstr "" - -# 4b8b61bf200a442892ddc4a348b466cb -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:234 -msgid "Adding an Area (Polygon)" -msgstr "" - -# f92a38d6d2b3403d93c522f71c2a7530 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:236 -msgid "To add an area, or polygon feature, click on the button below:" -msgstr "" - -# 8742d9f1ce44422c9a2c7d85ab333d93 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:241 -msgid "" -"Again the cursor will change to a plus sign **(+)**. Using the imagery as a " -"guide, trace the area by clicking on the corners of the feature, as shown in " -"the figure below." -msgstr "" - -# b3f530caf68548c5870e8f17cb0a32fb -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:247 -msgid "*Adding area/polygon in iD Editor*" -msgstr "" - -# 0002848288e04b66acedacb743b52627 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:249 -msgid "" -"As with point and line features, when you click on one of the point on the " -"polygon, you will see additional editing functionality. Similarly, clicking " -"on the line of the polygon (between points) will reveal additional editing " -"operations available to you." -msgstr "" - -# d32870718c7f42bea1919f04b1929985 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:254 -msgid "3.5 Saving your Changes" -msgstr "" - -# 5081022c212f42e892f2644f06f16140 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:256 -msgid "Click on the button below:" -msgstr "" - -# 6040f3ffb64446558185301ebd833912 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:261 -msgid "" -"to save your changes. Pay attention to the panel on your left side that will " -"show something like this:" -msgstr "" - -# d17c60d978344ed1a4412be0b6e5a1df -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:266 -msgid "*Saving your changes in iD Editor*" -msgstr "" - -# b4aef9f90c44419b8659e24407f7b198 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:268 -msgid "" -"Fill in the :guilabel:`Comment column` with a brief note about the changes " -"made in that area so that other users can note your edits. Then click :" -"guilabel:`Save`." -msgstr "" - -# d5505e0866e34d9eae9226f6e2c234c7 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:272 -msgid "3.6 Additional Attributes" -msgstr "" - -# ec74f342d13147cea3d60723f16e7e5d -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:274 -msgid "" -"When you add attributes to features, you can make the data more useful by " -"adding more information. The icons shown in the figure below help you to add " -"additional details to your map data:" -msgstr "" - -# 5bc1b3a98d1e48438a5825ae0876c7ba -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:278 -msgid "Adding elevation information" -msgstr "" - -# 9f018c0c3b984d07a481e67de3453b53 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:280 -msgid "Adding notes" -msgstr "" - -# cf7c8b51b72b4c34bedd06cb49091dad -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:282 -msgid "Adding contacts/phone number" -msgstr "" - -# 6e1578704d704180a1d0413937af556c -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:284 -msgid "Adding sources" -msgstr "" - -# d3efd5b5222a454b88776736eeb55610 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:286 -msgid "Adding website information" -msgstr "" - -# 310f1bee190f445882b32944ba10478a -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:288 -msgid "" -"Add information on the availability of accessibility for people with " -"disabilities" -msgstr "" - -# e1ba7985c10746ae9bd61df6986f3459 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:290 -msgid "Adding Wikipedia links" -msgstr "" - -# 6bfee51c8ac74dd7aabcc58853d6fbd3 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:293 -msgid "**Tags list on iD Editor**" -msgstr "" - -# 7cc66892480648f7ab345ece5ce7f146 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:295 -msgid "" -"In addition, you can also add your own attributes by clicking on the icon" -msgstr "" - -# ed4315542b5f40f7be99aed269d45bad -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:300 -msgid "This will raise a form allowing you to add your own attributes:" -msgstr "" - -# 17899f75ea2b4712bfe1f855dd326153 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:305 -msgid "" -"Click on the :guilabel:`+` sign to add a key and value that you want. For " -"guidance, consult the full list for key/value pairs here: `Wiki " -"OpenStreetMap Map Features `__\\" -msgstr "" - -# 9938b40a0f264cc88ce43a2723b19db2 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:312 -msgid "*Adding a tag in iD Editor*" -msgstr "" - -# a5058d6fbb5d477fb08dedba8a31bc27 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:315 -msgid "Summary" -msgstr "" - -# cb37819f84d24900bddcd901800682a3 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:317 -msgid "" -"You should now be able to add your data to OpenStreetMap using the in-" -"browser iD Editor. You also learned how to digitize the 3 types of objects " -"in OpenStreetMap: points, lines, and areas (polygons). In the next chapter, " -"we will learn about another editor, the Java OpenStreetMap editor, or JOSM " -"as it is popularly known." -msgstr "" - -# 8671258679dd4230bd84b0f68ee1ea7e -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:323 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-04-getting-started-with-josm.po b/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-04-getting-started-with-josm.po deleted file mode 100644 index c169202b..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-04-getting-started-with-josm.po +++ /dev/null @@ -1,817 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 72e8d6b81def4fd6a117df210a5209ae -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:10 -msgid "Chapter 4: Getting started with JOSM" -msgstr "" - -# fabd5c2b22724ae5963702118d4546e8 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 7923244e1e634195b72a4c4340718e28 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:14 -msgid "Downloading JOSM" -msgstr "" - -# fdbbeb3ff28b470ca258abb7eeafd57b -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:15 -msgid "Installing JOSM" -msgstr "" - -# bfea5d48ff4749139a22e94523d60443 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:16 -msgid "Adjusting settings in JOSM" -msgstr "" - -# d037917c0a9848849f5050c1292862ac -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:17 -msgid "Using basic tools (move and draw the objects)" -msgstr "" - -# 4894371b23ea458b8519b61789817def -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:18 -msgid "Adding presets" -msgstr "" - -# f0be990af775405bad22e892dcc29e8f -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:20 -msgid "" -"We will now learn how to download and install JOSM step-by-step. JOSM is the " -"Java OpenStreetMap editor, a full-feature desktop editor. When using iD " -"Editor we always have be connected to the internet, while in JOSM we can use " -"it offline or with an intermittent internet connection." -msgstr "" - -# ed987ebf66e942b784cc1abaa39c3d08 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:24 -msgid "" -"In this module, we will also change some JOSM settings that will help us in " -"using JOSM. We will then open a sample map and learn some basic operations " -"of this software. Recall in the introduction module, you were asked to draw " -"a map of the city or region around the neighborhood where you live. We will " -"draw it again in this module, but we will draw it digitally using JOSM. " -"After learning this chapter, you will have a good comprehension of how to " -"map using the JOSM editor." -msgstr "" - -# aee16f2b7f084877a23effdfa2b5413e -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:31 -msgid "4.1 Downloading JOSM" -msgstr "" - -# 828b0ee84cf2422eb9c30322cc1239cb -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:33 -msgid "" -"If you have a copy of the JOSM installation file on a CD or flashdisk, you " -"can skip to the next session on JOSM installation. If you do not have the " -"JOSM installation package or you want the newest version of JOSM, you can " -"open your web browser (using Firefox, Chrome, Opera or Internet Explorer). " -"In the address bar at the top of the window, enter the following text and " -"press enter: `josm.openstreetmap.de `_. You " -"can also find JOSM site by searching for \"JOSM\" using your favorite search " -"engine. The JOSM site will look much like the figure below:" -msgstr "" - -# c7c00b4721204f1a82b1aa031f4d8b47 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:43 -msgid "*JOSM site interface*" -msgstr "" - -# d12a962ed7d34a399804b7cff373ddd3 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:45 -msgid "" -"Select the installation file according to your computer's operating system. " -"If you are using a computer with Windows Operating System, click :guilabel:" -"`Windows installer` to download JOSM. If you have other operating systems, " -"click on the link that corresponds to your computer's operating system and " -"download the installation package. In this module, we assume you are using " -"Windows, but the instructions will be similar for other operating systems." -msgstr "" - -# a32fa16f1bf54d8c8559c40d75f22b65 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:52 -msgid "4.2 JOSM Installation" -msgstr "" - -# e372265bfaa0480fb90a08930c255e2d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:54 -msgid "" -"Once the JOSM installation package has downloaded, we will install onto our " -"computer or laptop. Here are the steps for installing JOSM:" -msgstr "" - -# 6aeaf9539fdf4cdab1e9680b91d91ce0 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:57 -msgid "" -"Find the JOSM installer file on your computer. Double-click it to begin " -"setup." -msgstr "" - -# 8800dac2deb7417cbc198e04fca0af0d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:59 -msgid "" -"Click :guilabel:`OK`, :guilabel:`Next`, :guilabel:`I Agree`, and :guilabel:" -"`Install`. When the installation is complete, click :guilabel:`Finish` to " -"lunch JOSM for the first time. Later, when you want to start JOSM, you can " -"do so by clicking on the :guilabel:`Start Menu` in the lower left corner of " -"your computer, and clicking the program JOSM." -msgstr "" - -# e47c699ddce043159857a8158c4448d8 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:64 -msgid "" -"When JOSM starts, it will look something like the image in the figure below:" -msgstr "" - -# eec2d5d2c4b147cea39ebba2dd80fc7a -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:69 -msgid "*JOSM home view*" -msgstr "" - -# bb981c13e9ef46a19e679e690496890d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:72 -msgid "" -"You may have problems when installing JOSM if Java is not installed on your " -"computer. If you have" -msgstr "" - -# 1b04dd48993942308af85e9f7e6afa3e -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:72 -msgid "" -"problems during the installation in this section, try to download and " -"install Java. You can download here: `www.java.com/en/download/ `_" -msgstr "" - -# 6c3c5ff934294135a0c74f843ca31dd4 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:74 -msgid "" -"When the first time you open JOSM, you might see a window appears there ask " -"to update the software. You do not need to update it because you just " -"downloaded a new software. :guilabel:`Cancel` button. If you don’t want to " -"see this message anymore, check a **box below** before clicking “Cancel”." -msgstr "" - -# 9d7091d0a4234c30bab0f95de7300f08 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:77 -msgid "" -"JOSM used in this module is the newest version from the site. The display " -"version could possibly change if you are using another JOSM version." -msgstr "" - -# cd80d555f587430097dcc74b1e323b60 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:82 -msgid "4.3 JOSM Setup" -msgstr "" - -# b1c720a79d7b4f5cbf463460d77b10a0 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:85 -msgid "4.3.1 Change Language" -msgstr "" - -# 1ce29fe6d01146b78ac338630a4d4e68 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:87 -msgid "" -"There are many settings that you can adjust in JOSM. One of settings you " -"might want to adjust is the local JOSM language. JOSM has been localized " -"with many language options, and you should choose the language that you want." -msgstr "" - -# 2b6e27e691024433a5680ab42cf12e42 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:91 -msgid "" -"To access Preferences windows, click :menuselection:`Edit ‣ Preferences...`" -msgstr "" - -# c760dc5ec43d4f3aa190ffae4dbd4215 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:96 -msgid "*Bring up the preferences menu in JOSM*" -msgstr "" - -# b7f93bf82fbd4865834dbf84044e1d95 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:98 -msgid "" -"On the left side, click icon that looks like a **paint can** and " -"**paintbrush**." -msgstr "" - -# 2ede2a6cc206492eb06dacaddec2e620 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:103 -msgid "" -"At the top of the window, click the tab that says :guilabel:`Look and Feel`." -msgstr "" - -# 617b0abd32d44db1bc2be7e21e2824ea -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:105 -msgid "" -"Choose your language in the dropdown box next to the word **Language** as " -"shown in the figure below." -msgstr "" - -# 0c3923d81ebe45ddb68ad50d8f7c3aa3 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:110 -msgid "*Change language in JOSM*" -msgstr "" - -# 95c50be44e4048018cf8c86dd6006b49 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:113 -msgid "4.3.2 Account and Proxy Settings" -msgstr "" - -# eca84fc5a2a740b6a97970319392f737 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:115 -msgid "" -"After changing the language we also need to enter the username and password " -"of our OSM account in JOSM. This will be useful when we edit or add data on " -"the OSM map, the server will recognize that the edits belong to a registered " -"user. If you do not add your account information, you will not be able to " -"upload data into OpenStreetMap. Here are the steps to add your account " -"information:" -msgstr "" - -# 18542c9d858b4ec584a2ac417d260461 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:120 -msgid "" -"Click icon that looks like a **Globe** at the left side of preferences box." -msgstr "" - -# 0469739f716843ca99d237eb739e22f2 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:125 -msgid "Then enter your OSM username and password as shown in the figure below." -msgstr "" - -# fa195d91da9a4eb8a57b60ad61d62615 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:130 -msgid "*Adding OSM username and password in JOSM*" -msgstr "" - -# 9291ad5addcd41cf85ead887edef8eba -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:132 -msgid "" -"If your internet connection is using proxy, you can also enter the proxy on " -"the :guilabel:`proxy settings` tab then simply enter the appropriate proxy " -"for your internet network." -msgstr "" - -# b897ae49d10d4fb08ae8fad0959abb5a -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:136 -msgid "4.3.3 Adding Presets" -msgstr "" - -# e3e1ddd6162d486cb4629d83b3b74085 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:138 -msgid "" -"By now you should have entered your account name. Next is to configure JOSM " -"by adding menu presets. What are menu presets? Menu presets are small files " -"added to JOSM that can pre-supply the attribute fields for mapping features, " -"such as name and address for a building, or street name for a road. If you " -"are still a bit confused about presets, follow along and you. To add menu " -"presets, follow these steps:" -msgstr "" - -# 3f141801d2a34a628fca6f1f3807c00c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:143 -msgid "Click the icon that looks like a grid:" -msgstr "" - -# a2059b6094394b5b873e0b4b6d7edee1 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:148 -msgid "Click the tab at the top that reads :guilabel:`Tagging Presets`." -msgstr "" - -# 8c7876c8c3e44f6b9e58fe7257ddf82b -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:150 -msgid "" -"Under **Available Presets** find and select the entry labelled **Buildings " -"Indonesia**. Then click the blue arrow to the right of this box, as shown in " -"the figure below." -msgstr "" - -# 357da02e79c641ceb1896b2c46938868 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:156 -msgid "*Adding presets in JOSM*" -msgstr "" - -# ef214d72b2924bf7988f3f74d1b671a1 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:158 -msgid "" -"If you already have your own presets file on your computer, you can insert " -"it directly:" -msgstr "" - -# fdd2444cbf7046adbca8129c96e3846d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:160 -msgid "Click :guilabel:`+` beside active presets box" -msgstr "" - -# dbf43509c8b54896826ef0ff03cfb2f6 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:162 -msgid "Then click this icon below to find your presets file" -msgstr "" - -# 6b1dfd4c9b4043c58dc13e1fae222114 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:167 -msgid "" -"When you locate the presets file, click :guilabel:`Open` then :guilabel:`Ok`." -msgstr "" - -# 0da59d5006b045f99c9707fa9c9c9519 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:170 -msgid "4.3.4 Adding a Plugin" -msgstr "" - -# c73578cb62e54ddda98c9f97b0b5ae0c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:172 -msgid "" -"Now we will try to add a plugin in JOSM. A plugin is a tool that we can add " -"it as an extension in JOSM to help us during editing. Here are the steps to " -"add plugin in JOSM:" -msgstr "" - -# f4d4075c6535413d9bcb7af37a7b4529 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:175 -msgid "Click :guilabel:`plugin` icon that looks like picture below" -msgstr "" - -# d1cbc0c8e63946c08cb1bc12e175e26c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:180 -msgid "" -"Then click :guilabel:`Download list` to download all plugins that available " -"in JOSM" -msgstr "" - -# 75ee187e3c1641c58660cafd3ea48dd1 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:182 -msgid "" -"In search box, type the name of the plugin, for example :guilabel:" -"`building_tools`" -msgstr "" - -# 5c505783d17d4329a485c39fc8ebae39 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:184 -msgid "Then check the box beside the plugin name as shown in the figure below:" -msgstr "" - -# be617222bcdc4cf3a90beacb2390cbe8 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:189 -msgid "*Download plugin in JOSM*" -msgstr "" - -# 268e598852e34e048a805bf8f3a2d9ba -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:192 -msgid "4.3.5 Activate Remote Control" -msgstr "" - -# b5be1d459ae34eabbfd01c1325b09f2e -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:194 -msgid "" -"*Remote Control* in JOSM needs to be set in order for other sites, such as " -"the HOT Tasking Manager to access your OpenStreetMap account and enable " -"editing. To activate the remote control function:" -msgstr "" - -# e6ef356121e94d098bd6ff1e8384b81b -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:197 -msgid "Click the icon depicted in the picture below" -msgstr "" - -# 48de6c53f533462e9071ef4481ff34be -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:202 -msgid "Then check on the box beside :guilabel:`Enable remote control`" -msgstr "" - -# 97a414501cb640cb801b12036870e3ce -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:204 -msgid "Check any other box shown in the figure below according to your needs." -msgstr "" - -# 6de96050ca844ecd835c6404132e6fd0 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:209 -msgid "*Activate remote control in JOSM*" -msgstr "" - -# ae9ca39ebda4493eb57672564dae6b67 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:212 -msgid "4.3.6 Adding Satellite Imagery" -msgstr "" - -# 07e1e05ffd3d47e8a3c19d62782c1391 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:214 -msgid "" -"We will want to use satellite imagery as a background to identify features " -"and trace them when making our map, so let’s add imagery from the Preference " -"window." -msgstr "" - -# 7e5d6bb066ed4a698810eac362bac1e0 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:217 -msgid "Click on the icon that says **WMS TMS** like this:" -msgstr "" - -# c791de7e941c4b24bb1355340a3d2d92 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:222 -msgid "" -"Bing Satellite imagery is often the default choice, so click on :guilabel:" -"`Bing Sat`. Then click :guilabel:`Activate` as shown in the figure below." -msgstr "" - -# 9f662e9faaf545b394d1a82c864a6811 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:228 -msgid "*Satellite imagery layer list in JOSM*" -msgstr "" - -# 1e8c36a8b1f042b984e62f98793a1123 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:231 -msgid "4.4 JOSM Interface" -msgstr "" - -# 5310d2028fbf4bfcb63c3f1b11aabef6 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:233 -msgid "" -"At this point, you’ve should have learned to customize and pre-configure the " -"basic settings in JOSM, and now you’re ready to edit the map. In this " -"chapter, we turn attention to the important parts of the JOSM editor and how " -"to use them. The figure below shows the essential parts of the JOSM " -"interface." -msgstr "" - -# 94437ad194914884908914d3c4201982 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:240 -msgid "*JOSM interface*" -msgstr "" - -# e25f64031f054357b702126c7c5847b6 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:242 -msgid "" -"The main window, as you have seen earlier, -is the map area, and where most " -"of the editing activity takes place. Here you will view, interrogate, edit, " -"and add data to OpenStreetMap." -msgstr "" - -# 7cae9767c25b46ad8bbb4071198a84d8 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:245 -msgid "" -"To the right of the map area are stacked panels, each having a dedicated " -"function. Usually when the first time you install JOSM, several panels that " -"will be displayed with the default settings, such as **Layers, Properties**, " -"and **Selection**. When you **select a node, way, or polygon** in map area, " -"it'll be displayed on **Selection panel**. **Information about the object** " -"will be displayed on **Properties panel**, and **username of the object " -"author** will be displayed on **Author panel**." -msgstr "" - -# 433eb9d8c3e34270b00fce786db96abf -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:251 -msgid "" -"To the left of the map area is a vertical toolbar, each icon corresponds to " -"an editing function (see ‘Tools’ in figure above). For example, there are " -"buttons for editing such as **Select object(s)** tool and **Draw nodes** " -"tool. Other tools depicted in the above example include icons for deleting " -"an object, drawing a polygon, and creating a way that is parallel to the " -"other ways." -msgstr "" - -# 995b0d773fdd415aaa7c7714c9254fdf -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:257 -msgid "4.5 Learn Basic Drawing in JOSM" -msgstr "" - -# 5187c61a30424cb98e62c04c8025c200 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:259 -msgid "" -"Let’s start by opening up a sample OSM file which we will use to learn the " -"basic ways to draw maps with JOSM. Note that this map is not real, in that " -"it is not a real map of a real place, so we will not save it on " -"OpenStreetMap." -msgstr "" - -# 796a69a19af54750933465a77ef9afdc -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:262 -msgid "Download the file here: `bit.ly/osmsample `_" -msgstr "" - -# 34068a63a8d84516b4ef8fe69067095d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:264 -msgid "Open JOSM. Click the **Open** button in the upper left." -msgstr "" - -# 7fe8bf3553b541438e7a631383fbfc4c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:269 -msgid "" -"Find the file :file:`sample.osm` on your computer and open it. Your JOSM " -"screen should look quite similar to the figure below:" -msgstr "" - -# 82ccc93705d446279c963e85bb1bdfcd -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:275 -msgid "*Display of sample file in JOSM*" -msgstr "" - -# 0ca68f0b678d4444af102a83ca5adfeb -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:278 -msgid "4.5.1 Basic Operation" -msgstr "" - -# a724adf567cd410b8cb3e5e85835d1c6 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:280 -msgid "" -"To **move the map** left or right, up or down, **hold your right mouse** " -"button down, and **move your mouse**." -msgstr "" - -# 6f978fc7d8104997a32c64d64fac6005 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:282 -msgid "" -"There are several ways to **zoom in** and **zoom out** of the map. If you " -"have a mouse, you can use your scroll wheel to zoom in and out. If you are " -"using a laptop and don’t have a mouse, you can zoom in and out using the " -"scale bar in the upper left of the map window. **Drag the bar left and right " -"by holding your left mouse down** **and moving the bar left or right** with " -"your mouse." -msgstr "" - -# c25a88621c344ee28bc0ada2e2834784 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:290 -msgid "" -"Look at the sample map. There a few different types of objects here. For " -"example, there is a river, a forest, some buildings, several roads, and a " -"couple of shops. **Select an object by clicking** on it with your left mouse " -"button. Click on each of these objects and note the information in the " -"panels on the right." -msgstr "" - -# fcc3c19a70a042ebb34cf3ee1dd93d0c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:295 -msgid "4.5.2 Node, Ways, and Polygons" -msgstr "" - -# 4a38f97563da4f7c81b129de02e0a3a4 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:297 -msgid "" -"As you click different objects on the sample map, notice that there are " -"three different types of objects on the map. There are **nodes, ways**, and " -"**polygons**." -msgstr "" - -# 9f01adccb8124a37a394d13189456af4 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:300 -msgid "" -"Points are a single location, represented by symbols. On this sample map, " -"there are two points, a clothing shop and a market. The clothing shop is " -"represented by a shirt symbol, and the market is represented by a shopping " -"cart. If you can not see these features clearly, please zoom in to the map." -msgstr "" - -# 4186cbb49c7f4da5b7a783ca6d214b8d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:304 -msgid "" -"There are several ways on the map as well, which represent roads. If you " -"look closely you will see that within the ways, there are nodes as well. " -"These nodes don’t have any symbols or other information associated with " -"them, but they define where the line is located and give it shape." -msgstr "" - -# dc0d6345229d4a57830a27ec4b0884aa -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:308 -msgid "" -"Lastly, there are numerous polygons on the sample map, representing " -"different places - a forest, a river, and buildings. A polygon generally " -"represents an area, like a field or a building. A polygon is exactly like a " -"way - the only difference is that the way begins and ends at the same node. " -"That is to say, they are closed." -msgstr "" - -# ef6ad01f979a4a4bacc975186abad576 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:312 -msgid "" -"It's easy to think about the map that contains three basic types of objects " -"- points, lines, and polygons. OpenStreetMap contained in specific terms " -"that you will learn as you progress. In OSM, a point called node, and lines " -"are ways. Polygon called closed way because this is just a line that starts " -"and ends at the same point." -msgstr "" - -# 69ae74fde2424478afcbba7ead9a830c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:316 -msgid "" -"You may notice that when you select an **object**, it will be highlighted in " -"**red** and a list appears to the right of the map in a window called " -"**“Properties”**. These are known as tags and are depicted in the figure " -"below.. **Tags** are **attributes of the selected point, line or polygon " -"that identify and describe** **that feature**. But for now, all you need to " -"know is that this information helps describe whether our object is a forest, " -"a river, a building, or something else. Think about drawing a map by hand, " -"and how you are also drawing points, lines, and shapes. What other places " -"are best represented by points? Lines? Shapes?" -msgstr "" - -# 355023af2455435fa54b1a61dd23f27a -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:325 -msgid "*Information of object in JOSM Properties Panel*" -msgstr "" - -# d0e4354433674ab4b65e29f7eae45f6b -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:328 -msgid "4.5.3 How to Change Object" -msgstr "" - -# 93a3b721482b414c9c5677176855d3b5 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:330 -msgid "" -"Select the forest on the left side of the map. Be sure to click on the line " -"around the forest, not one of the points on the line. Now **hold your left " -"mouse button down and drag your mouse**. You should be able to move the " -"forest to a new location on the map." -msgstr "" - -# c5a7efb5781147aca7a8848df9731216 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:334 -msgid "" -"**Click on one of the points** on the line around the forest. Hold your left " -"mouse button down and drag your mouse. You should be able to move the point. " -"This is how you can change the shape of an object, or move a point." -msgstr "" - -# be0942aef70a44398b6165220487cc79 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:338 -msgid "4.5.4 Drawing an Object" -msgstr "" - -# 25d71799fe8449e8a0191e2d84c2e1bb -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:340 -msgid "" -"On the left side of a JOSM is a column of buttons. Many of these buttons " -"open new windows on the right side that provide more information about the " -"map. The most important buttons, however, are at the top of these column. " -"These buttons change the operations you do with your mouse." -msgstr "" - -# d8b5ab136c5f40d48e9d144ee2ad0439 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:344 -msgid "" -"**Select button** is one of the keys that you will use frequently. This " -"button is useful for selecting objects and to draw new objects. The **Select " -"button** looks like this:" -msgstr "" - -# eb27f3a62aea4bbfb1a154ad8c26466d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:350 -msgid "" -"Before you draw, you need to make sure that nothing is selected. Click in " -"the black space on the map, where it is empty, to make sure nothing is " -"selected." -msgstr "" - -# 05a16266e03341a78e24f3b1e9aa2243 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:353 -msgid "Click on the second button, the **Draw** tool." -msgstr "" - -# c8b58068caae46e384b8e8aa64fc318f -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:358 -msgid "" -"Find an empty area on the map, and **double-click** with your mouse. This " -"**will draw a single point**." -msgstr "" - -# 16cf6ebcff0143b883234ab068d9fdd5 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:360 -msgid "" -"To **draw a line, single-click** with your mouse. **Move your mouse** and " -"click again. **Continue until you are happy with your line**. To **end the " -"line, double-click** your mouse." -msgstr "" - -# 681c03da84e84105b7eadf2ca5de3137 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:363 -msgid "" -"**Draw a polygon** the **same way** that you **draw a line, but** finish the " -"polygon by double-clicking on the point where you started the line." -msgstr "" - -# 6e2ab164cc3e443ebe9b1008195f5fd1 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:367 -msgid "4.5.5 How to Add Presets" -msgstr "" - -# 864b3c4d75934b208c781a1b2b578989 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:369 -msgid "" -"Now we know how to draw points, lines and shapes, but we still haven’t " -"defined what they represent. We want to be able to say that our points are " -"shops, schools, or something else, and whether our shapes are fields, " -"buildings, or something else. To provide information on the objects that we " -"create or edit we need to include presets in the object. Here are the steps:" -msgstr "" - -# 4429c534f4e447aba9309df4032606f2 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:374 -msgid "Click on the **Select tool**, in the column of buttons on the left." -msgstr "" - -# 8292c88b6d7c424887039460036c48db -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:379 -msgid "" -"Select one of the objects that you drew with the Draw tool. On the top menu, " -"click :guilabel:`Presets`. Move your mouse through the sub-menu to the type " -"of location you would like to define." -msgstr "" - -# 9d6389e5057b4e97a0340f2cd69ce5a4 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:382 -msgid "" -"Go to Preset menu. Click on item named **Building**, which has been added at " -"the bottom of the menu as shown in the figure below." -msgstr "" - -# 4d53cbfeedb84c08bad1c0a07833a4c1 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:388 -msgid "*Building presets box in JOSM*" -msgstr "" - -# d833daabd616417499f1d0b2a1e0d641 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:390 -msgid "" -"When you click on a preset, a form will pop up asking you for more " -"information. You do not have to fill in every field, but **you may wish to " -"add some of the important fields, such as the name of the object**." -msgstr "" - -# 789d37d4445d4f6e82978c8d29281db0 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:393 -msgid "" -"When you are finished entering the information, click :guilabel:`Apply " -"Preset`. If all goes as expected, your point, line, or shape should change " -"colors or display a symbol. This is because you have defined what it is." -msgstr "" - -# d203a29256eb4dbf9246bd0a65be00c3 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:397 -msgid "4.6 Draw Your Own Map" -msgstr "" - -# 3c94527e8c5b47d9b74cd82085cad594 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:399 -msgid "" -"Now let’s draw a map in order to practice the techniques you have learned. " -"You may wish to redraw the map that you drew on paper in previous module." -msgstr "" - -# 6f15a1330efe44f99f7bb87f6a06ad4f -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:402 -msgid "" -"**Drag the map away** from the sample map. Hold the right mouse button and " -"drag your mouse, **until you have a nice empty area** to draw on." -msgstr "" - -# 9da57f6e27004ba5b8d4f0064ecf6b6c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:405 -msgid "" -"**Use the Draw tool to create points, lines, and polygon**. Describe what " -"your objects are by selecting from the Presets menu." -msgstr "" - -# f80b1e74bd534f9888709b28e299a5f7 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:408 -msgid "" -"When you are finished, you should have your own map, similar to the sample " -"map that we opened in sample.osm." -msgstr "" - -# 5ac3fba4dcbc489384faa48d12758c0e -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:411 -msgid "Summary" -msgstr "" - -# 38214db668d44ae2b56b3824977a50a5 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:412 -msgid "" -"At this point, you should have learned how to setup JOSM on your computer " -"and how to use basic editing tools available in JOSM. In the next module, we " -"will take a closer look into the process of editing OpenStreetMap using the " -"JOSM editor." -msgstr "" - -# e3e2643b5df04430bd249c74c0e0c3ca -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:416 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-05-editing-with-josm.po b/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-05-editing-with-josm.po deleted file mode 100644 index 30fbb34c..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-05-editing-with-josm.po +++ /dev/null @@ -1,1415 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 639caf3f6d5d446db8790170f5a14827 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:10 -msgid "Chapter 5: Editing with JOSM" -msgstr "" - -# deb4d2daebc14e91a32f3a747d6b3d15 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 6cf3c769af144976b7a6446dbee1ecd1 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:14 -msgid "Using the editing tools in JOSM" -msgstr "" - -# c527f1dab3e8404a863e6595e5597369 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:15 -msgid "Knowing the shortcut buttons in JOSM" -msgstr "" - -# 35fe0b8421054278aeccb60a8c1f2cee -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:16 -msgid "Extending functionality with JOSM plug-ins" -msgstr "" - -# 817cd97044dd4202967c7541951e4ceb -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:17 -msgid "Familiarity with errors and editing tips" -msgstr "" - -# 8e38f1b6986b4c399e5ae066a7ad2ed3 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:18 -msgid "Knowing and understanding the stages of editing in JOSM" -msgstr "" - -# f6de3447bf6a492abdb0d31a4737a568 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:19 -msgid "Saving OSM file" -msgstr "" - -# d038c9bb38de4adaa878b55e3ca8843f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:21 -msgid "" -"In a previous session, you have already installed and configured JOSM as " -"well as master basic operations in JOSM such as drawing points, lines, and " -"polygons. You also used menu presets to add attributes to an object you " -"created on the map. Finally, you are to the point where you can digitize and " -"edit features on the map using JOSM." -msgstr "" - -# 117e5c1b08644fbeac1081c65239bfbd -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:24 -msgid "" -"In this session, we will look closely at the JOSM interface and learn how to " -"stage the map editing process in JOSM and also how to maximize the tools " -"that exist in JOSM." -msgstr "" - -# 023bf8218b8b4f2c8c69a2afff6800d5 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:28 -msgid "5.1 Editing tools in JOSM" -msgstr "" - -# 3c56599851bc4ec897d3bcb64edd1da4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:30 -msgid "" -"In this section, we build on our command of basic tools and techniques to " -"draw map features in JOSM and look closely at some advanced drawing tools. " -"To follow along with this section and practice using advanced JOSM tools, " -"please download in `Edit tools `_ then open JOSM " -"and point to the edittools package. It will look like the figure below:" -msgstr "" - -# 19d137fc01e844b3b8deecdc382889c0 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:36 -msgid "*The display of editing file in JOSM*" -msgstr "" - -# b28c3c4ff9ad4eb2b9e665d89d1a2f8b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:40 -msgid "5.1.1 Drawing Tools" -msgstr "" - -# e44a7fa5155e474bac67538b61e62daf -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:42 -msgid "" -"JOSM has some additional tools to make it easier to create high quality " -"lines and polygons. These tools are found in the :guilabel:`Tools` menu at " -"the top of JOSM. A quick glance reveals many functions that can help when " -"drawing lines and polygons, and editing objects on the map. We discuss the " -"most important of those tools in this section." -msgstr "" - -# f555c83028864d0bafaa55aa78d97ce8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:50 -msgid "**Options in JOSM Tools Menu**" -msgstr "" - -# ae1e0d1520fd42b3939dc233520df35b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:52 -msgid "" -"In applying the functions in this menu, you first must select a point, line " -"or polygon in the map window. The sample file you already downloaded " -"contains various elements that are labeled the names of different tools on " -"the menu." -msgstr "" - -# afb03d1b822c4649a9d6e348e7568e03 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:54 -msgid "" -"Try to select one of the elements in the file. Then go to the :guilabel:" -"`Tools` menu and click on the function identified on the feature you have " -"selected." -msgstr "" - -# eac5f5fe9f5643ca9909e47b90c0179a -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:56 -msgid "For example, click on the asymmetric circle." -msgstr "" - -# 9895441f41284d7ba8d87704d6004c27 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:61 -msgid "Next go to the :menuselection:`Tools ‣ Align Nodes in Circle`" -msgstr "" - -# 79f7e09879674c7faf17f61bb7d1a434 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:63 -msgid "The irregular circle will be aligned and symmetrical." -msgstr "" - -# 85c7d6569b674c32b1bf09d180ee75f2 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:65 -msgid "" -"Experiment with each of the tools using this sample file. A description of " -"some of the tools is provided below." -msgstr "" - -# 07ab423b23d642e0bcab9e3249456b21 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:67 -msgid "" -"**Split Way:** This allows you to divide a way into two separate ways. This " -"is useful if you want to add the attribute to the different road, such as " -"bridge. To use this function, select a point in the middle of way that you " -"want to cut, then select **Split Way** from the :guilabel:`Tools` menu, and " -"your way should be split into two ways." -msgstr "" - -# b29d12f88ae84f569148c60b155883af -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:69 -msgid "" -"**Combine Way:** This is **the opposite of Split Way**. To combine two ways " -"into one way, they have to share a single point. To use this function, " -"select the way you want to combine. You can select more than one object by " -"holding the **SHIFT** button on your keyboard and click on each way. When " -"you have selected the both of the ways, select :menuselection:`Tools ‣ " -"Combine Way`." -msgstr "" - -# 76ecc5970e3b49388a4b941ffde315fc -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:74 -msgid "*The result of the combine way operation in JOSM*" -msgstr "" - -# b9fbbc359e8e4a069582aff072c173a1 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:76 -msgid "" -"That if you want to combine ways that have different directions, you will " -"see this warning:" -msgstr "" - -# d92c4b1b976a480aa5152b55470db08f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:81 -msgid "" -"If the ways are connected, they can be aligned in the same direction by " -"selecting :guilabel:`Reverse and Combine`." -msgstr "" - -# 380f1715c8dd4fae867eba8f3c8ef233 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:83 -msgid "" -"**Reverse Way**: This will change the direction of a way. All ways in OSM " -"have a direction, shown in JOSM with an arrow pointing in the direction of " -"alignment. Direction is usual not a problem, except in cases where the one " -"way roads and river that flow in a certain direction. In this case, you need " -"to reverse the way so that it flows in the right direction." -msgstr "" - -# 2630049c7b9f40319e887b44dbbd909d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:88 -msgid "" -"**Simplify Way**: If your way has too many points in it and you want to make " -"it simpler, this operation will remove some points from a way without " -"adversely affecting the shape." -msgstr "" - -# 7ed8d223596b45eca8b3f43c0d217d95 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:93 -msgid "*The example of ways which will be simplified in JOSM*" -msgstr "" - -# 5f8c834617b44d059d3bc80691ad6f64 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:95 -msgid "" -"**Align Nodes in Circle**: If you try to make a circle, you draw a circle as " -"best you can then select the object. This function will help distribute the " -"points to make a perfect circle." -msgstr "" - -# c576895a9ee04ab0aa46919ab446053b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:97 -msgid "" -"**Create Circle**: Alternatively, you can use this tool, it will make a " -"perfect circle. Draw a way that represents the diameter of your circle." -msgstr "" - -# 50ce13940ad648b394836c145944b6a4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:102 -msgid "" -"**Align Nodes in Line**: This function will align a series of points into a " -"straight way. With long ways it is best to select sections of the line to " -"straighten. Be careful as this does have the tendency to shift the line a " -"little bit." -msgstr "" - -# 6f4a9713b0024630b264e634942f836f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:107 -msgid "*The Concept of Making A Way That Turned into A Straight*" -msgstr "" - -# b887560156d641a2a2ecc43834553af4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:109 -msgid "" -"**Orthogonalize Shape**: This function is more useful to draw a regular " -"shape such as building. After you draw an area, this function will reshaped " -"it to have square corners." -msgstr "" - -# 4ad550e966f44e0f82080e9a3e87b7ec -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:114 -msgid "*The concept of perfect the shape of polygon*" -msgstr "" - -# fed6810303554d01bd91fd5e0df1329b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:116 -msgid "" -"**Unglue way**: This tool allows you to detach the nodes that are connected. " -"For example, the common error is for a road shares the point with the corner " -"of a building. Of course roads don’t run into buildings usually, so this is " -"a mistake, and you can unglue the objects from one another." -msgstr "" - -# 473cc026024d41e69168b2bfc672c826 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:121 -msgid "" -"The common question is how to rotate a way or a polygon after the object was " -"drew." -msgstr "" - -# 0bd6166bf5324c0e8b01f893c321e833 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:123 -msgid "To rotate an object, first you need to select the object" -msgstr "" - -# 870789a667d545fa8b1967fc48693350 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:125 -msgid "Hold :kbd:`SHIFT+CTRL` in your keyboard" -msgstr "" - -# 2a9a432b4ee44f708b7a7c06fe294bbe -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:127 -msgid "Click and drag the mouse to rotate" -msgstr "" - -# a2c617bfdaf24d5fad8509a7000a8c83 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:132 -msgid "*The concept of rotating an object in JOSM*" -msgstr "" - -# dd6c0593e9234ab2b3833cd9bf1a9dd1 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:136 -msgid "5.1.2 Keyboard Shortcuts" -msgstr "" - -# 5b144a462fab4751bb44aa2a160f2038 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:138 -msgid "" -"After editing in OpenStreetMap, you will realize that you are spending a lot " -"of time with each click on the menu and submenu. To overcome this, JOSM has " -"a shortcut button that substitutes the lengthy menu process. You can simply " -"select the object directly and press the button in your keyboard. Here are " -"the most important shortcut keys." -msgstr "" - -# 177590ec552242e591509c3a62d3b97d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:143 -msgid "Select Tool" -msgstr "" - -# b2903aafec96478b959e909f82e803b6 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:147 -msgid "Draw Tool" -msgstr "" - -# 211dbcc4693a458fba47d88aa3df03be -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:151 -msgid "Zoom Tool" -msgstr "" - -# 4cc4f9816c0c4fb1bce07901ed904cf6 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:155 -msgid "Remove Object" -msgstr "" - -# 0deda17250c14cdf8f9d108abdac52dc -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:159 -msgid "Zoom In" -msgstr "" - -# 2c829894801d45d6831d4456317a9f4a -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:164 -msgid "Zoom Out" -msgstr "" - -# 4d8606a16c254a1ab05d2f384b228362 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:167 -msgid "5.1.3 JOSM Plugins" -msgstr "" - -# 3905d79107814f3e99d76ccd7d5e13a8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:169 -msgid "" -"After you have acquired some skill in editing the map, you may want to use " -"the additional JOSM features to improve your mapping skills. JOSM allows you " -"to install various plugins, extending the functionality of the software. In " -"this session, we will look some of the more useful plugins that exist for " -"JOSM." -msgstr "" - -# 44351563e3ee424dba83660d3478f125 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:172 -msgid "" -"**buildings_tools**: If you draw a lot of buildings, this tool will make the " -"process faster and easier. **Building Tools Plugin** is useful to digitize " -"the building. It allows you to digitize one side of square building and " -"extend the shapes with ease, saving mouse clicks and saving time. After the " -"plugin is installed, you will see the new button in left side of JOSM, that " -"look like this:" -msgstr "" - -# 06f384991abe4c9d9582ef62ead7ed93 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:178 -msgid "Open JOSM and make a new layer" -msgstr "" - -# 0e111145af2a43f09dde882680c5e25b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:180 -msgid "" -"Select :guilabel:`building_tools` and double click to draw a way on the map" -msgstr "" - -# 476bbb3b7d5c4569b9b018339bcb0038 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:182 -msgid "" -"Then drag your mouse and click again to draw a square as shown in the figure " -"below" -msgstr "" - -# 2de4e380450d4484927d10384cb18e6e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:190 -msgid "*The process of drawing a building with building tools plugin*" -msgstr "" - -# 0b242d1eaa1c434084f6eb16d4013d3f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:192 -msgid "" -"The tool not only creates a square with a triple click, but it also will " -"automatically apply the **building=yes** tag into the polygon." -msgstr "" - -# 82d670bdd615410397da8afffcc90d59 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:195 -msgid "**Creating Complex Buildings**" -msgstr "" - -# 7edc86ff081e43259f7c7f68dcbb0538 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:197 -msgid "" -"You can also create building more complicated buildings by first drawing " -"some overlapping buildings and merging them together." -msgstr "" - -# 1b18535f937b49988a8571bb786bdaa7 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:199 -msgid "Draw two buildings which overlap, so that they form a L shape." -msgstr "" - -# 88576b7e69104cacbe172ba7d562b650 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:201 -msgid "" -"Select both buildings (hold :kbd:`SHIFT` to select more than one object)." -msgstr "" - -# 0c522cdd68954eba83f7cda28fe36b7b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:203 -msgid "" -"Go to :menuselection:`Tools > Join overlapping areas` or hold :kbd:`SHIFT+J` " -"in your keyboard." -msgstr "" - -# 2f50abc4bcf74636a4f0856b384ff91e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:208 -msgid "" -"**DirectUpload:** If you collect a lot of GPS tracks and you want to save to " -"the OSM database, this plugin will make it easier for bulk uploads." -msgstr "" - -# 0412d18caef64aa68c2e2adcedbbb2ce -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:210 -msgid "" -"**editgpx**: If you want to upload the GPS track from Garmin device, you may " -"need to use this plugin. Due to a technical glitch, OSM will not receive GPS " -"track that have been saved on an external memory card in Garmin, but this " -"plugin can fix the file so they can be uploaded." -msgstr "" - -# ef190e6884be4037b8c4b25765eb81d8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:212 -msgid "" -"**fieldpapers**: This plugin loads Field Papers that have been scanned in " -"JOSM." -msgstr "" - -# 8dd301ec2def4f47ae535cc087c80bb6 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:214 -msgid "" -"**imagery_offset_db**: This plugin for mappers who discover areas where the " -"Bing satellite imagery is not aligned. This will be explained in more detail " -"in the next chapter." -msgstr "" - -# a64ab53c814a4d56a1e4cb9cb5fa5132 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:216 -msgid "" -"**mirrored_download**: With this plugin, you can download OSM data with a " -"wider area to edit." -msgstr "" - -# 1c8010581e5444f08fa8be971d8f66fc -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:218 -msgid "" -"**print**: To add Print function, if you want to print an area quickly and " -"where it need not look very good." -msgstr "" - -# 7270541de9f946888c7f9abda2af31c2 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:220 -msgid "**utilsplugin2**: To add additional tools and menus in JOSM." -msgstr "" - -# 6fbe602ae6d04bf9b5c51385f4992585 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:222 -msgid "" -"If you haven’t done so already, install the plugin shown in the figure below " -"following the instructions for `JOSM Plugins `__." -msgstr "" - -# 3ab8c2f70c744772ac4272ffd6068d27 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:227 -msgid "*The display of utilsplugin 2*" -msgstr "" - -# aa2759ae22c34f038005982433845708 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:229 -msgid "" -"After you install this plugin and restart JOSM, you will have a new menu at " -"the top of JOSM labeled :guilabel:`More Tools` as shown in the figure below." -msgstr "" - -# 614234f18a7f499d918188c71b70b47e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:234 -msgid "*The option of more tools menu in JOSM*" -msgstr "" - -# 7754c31bbf584da39c8a8fc4c238172d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:236 -msgid "" -"Create new layer and experiment with some of the new tools. We will explain " -"some of the new tools that are very useful:" -msgstr "" - -# 903716ad1c1145af92f56d92098ccad4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:238 -msgid "" -"**Add Nodes at Intersections**: This tool is very useful to add a missing " -"node in the selected way intersections. It’s good practice that the way " -"should have common nodes where they intersect." -msgstr "" - -# afe3a3a637944a5cb86e409208d6d85c -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:243 -msgid "*Adding node at intersections*" -msgstr "" - -# 3fc605d95dfd494799eb2764177f60bb -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:245 -msgid "" -"**Copy Tags from Previous Selection**: This function is very useful for " -"copying a tag easily. Suppose you want to create a lot of objects with the " -"same tagging scheme. Click on an object with the tagging scheme you want to " -"apply and press :kbd:`SHIFT+R` to copy a tag from the previously selected " -"object. You can repeat this process for all objects that you want to apply a " -"tag. Remember that the tags will be copied from the previously selected " -"object, so if you click on an object that has not been tagged the copy " -"function will have no effect.." -msgstr "" - -# 21fd61c3975c4c8ab9ab58470c489cad -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:250 -msgid "*Copying tag from the selected building*" -msgstr "" - -# 754845769ebe4defa99c19a31740136d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:252 -msgid "" -"**Add Source Tag**: This tool simplifies adding a source tag, given that the " -"last specified source will be added as source tag to your object. You can " -"insert source with just one click." -msgstr "" - -# 823a038a5a0548418ffd91dcb4839a0b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:254 -msgid "" -"**Replace Geometry**: This tool is very good if you want to improve the " -"drawing of an object, but retain the history, the attribute and the object " -"ID. Example, if you find a complex building drawn in a way that is not " -"appropriate, you can draw the object again, select the old object and new " -"object, select :guilabel:`Replace Geometry` to transfer all of the above " -"information." -msgstr "" - -# 6d5c7e1283c649b498e8442bcef3f305 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:259 -msgid "*Replace Geometry in JOSM*" -msgstr "" - -# 5cb242d5c5ea409290cd0308f742aa02 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:262 -msgid "**Selection**" -msgstr "" - -# fa86fdc2af624ff28dfb20b33c2fd2eb -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:264 -msgid "" -"Utilsplugin2 also provides a lot of tools in :guilabel:`Selection` menu. Try " -"experimenting with each of these tools." -msgstr "" - -# 1b07a0e0bfff4cfd9b9981e61f875477 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:270 -msgid "*The display of menu in selection tools*" -msgstr "" - -# a1f1b21e80014154b99fc8f058fc9431 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:272 -msgid "" -"One of the selection tools which we use frequently is **Unselect Nodes**: " -"This tool deselects all points. This can be useful if you draw a square to " -"select a lof of objects, but you don’t want to select a point that contains " -"all the lines and polygons. An example is shown in the figure below." -msgstr "" - -# 0468ba81f3a84e4886f86849acef0d47 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:279 -msgid "*The example cancel node in JOSM*" -msgstr "" - -# fe9b0dfe34e94574ab2e39f5170d00e3 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:283 -msgid "5.2 Editing Tips" -msgstr "" - -# dc90e6ab2e53470ba181f98b14fcae95 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:285 -msgid "" -"There are some common mistakes that mappers make when they start using " -"OpenStreetmap. In this chapter we’ll identify a few of the most frequent " -"errors and offer some tips for better mapping." -msgstr "" - -# 7d12b99efe3f41d98ff9c78354a10fc6 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:289 -msgid "5.2.1 Connecting Objects" -msgstr "" - -# ab0f482ab109460fbf37f62e0bccca62 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:291 -msgid "**Some objects should not connect...**" -msgstr "" - -# a3e95a77ac66461ea0b8d55bda58954f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:293 -msgid "" -"When you are creating polygon and line that are not supposed to be " -"connected, make sure that they are not merged together by sharing a node. " -"For example, highway nodes should not be snapped to buildings, because no " -"one likes a road that leads directly into a wall! If you want to disconnect " -"two or more objects that share the same node, select node and go to :" -"menuselection:`Tools -> Unglue Ways` or press :kbd:`G` as shown in the " -"figure below." -msgstr "" - -# 8bd5567cfb5c4ed58cc497a34acdb728 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:299 -msgid "*Building and Road Connected*" -msgstr "" - -# e06aa64bbd224db0a22a315e1f42946a -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:304 -msgid "*Building and Road Separated*" -msgstr "" - -# 33a15ec1e1b6486ca98af77e4cd53542 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:307 -msgid "**...but some objects should connect**" -msgstr "" - -# d58b422529d84e2b895afe6c4f256b07 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:310 -msgid "" -"Roads that intersect should always share a node as shown in the figure " -"below. If they do not share in a common node, then the computer has no way " -"of knowing that the roads actually connect to each other. Therefore if you " -"see the roads are not connecting to each other, please fix it by selecting " -"the node from the road that you want to connect then go to :menuselection:" -"`Tools -> Merge Node` or press :kbd:`M` in your keyboard and drag it." -msgstr "" - -# a7e84eb49e8f41c79f6c46174d2966a4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:316 -msgid "*Road must connect to each other*" -msgstr "" - -# 184338e25b8a4d4db73702af59ca9423 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:320 -msgid "5.2.2 Overlapping Object" -msgstr "" - -# 7dd36808884f4f35885d72def8c9a6c2 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:322 -msgid "" -"A common error is to have overlapping polygons when the objects they " -"represent do not overlap in real life. A building can not overlap to another " -"building. For example, a polygon drawn to represent a park outside a " -"building should not overlap with the building. Instead it should be drawn " -"next to the building." -msgstr "" - -# 595a7428135c4ffb9a388c07dfe98930 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:329 -msgid "*The example of overlap building*" -msgstr "" - -# bc51f28a339d43f89d96aaa0779d79e0 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:331 -msgid "" -"There are some exceptions to this rule, such as school. Within a school yard " -"you might identify individual buildings using polygons, yet you also might " -"want to create a polygon around the entire school yard. In this case it is " -"fine for the polygons to overlap, but the rule to follow here is to make " -"sure that the buildings are completely inside the landuse polygon." -msgstr "" - -# 4fa2217518304c55a685f8dd30bb68c4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:337 -msgid "*The example of overlap building that is true and false*" -msgstr "" - -# cbba6dc6f0c047b6aea896ca7c5669cd -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:341 -msgid "5.2.3 Other Errors" -msgstr "" - -# c520a78ba7f345e6828153e57ddc43a7 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:344 -msgid "Tag given in the node rather than on building" -msgstr "" - -# ae377823206141cd8182337d204ff89c -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:349 -msgid "*The example of building given a false tag (left) and true tag (right)*" -msgstr "" - -# 61a46a08d8e745469951c5f86bbddac4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:351 -msgid "" -"A common error is adding tag on a node that makes up part of a line or " -"polygon. This often happens when someone draws a building and then select " -"one of the nodes that participate in the object. The way to avoid creating " -"an improper way is by clicking directly on the line." -msgstr "" - -# 63cede9d537445e685ddde2c65c709dd -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:356 -msgid "" -"Intersection that meets in road corner/ intersections should be separated" -msgstr "" - -# a18d74edb8a54f51b773546049973a49 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:361 -msgid "*The wrong intersection (left) and true intersection (right)*" -msgstr "" - -# b8d3f419d16e4cf3b49c96fd9dc9d709 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:363 -msgid "" -"When roads intersect each other at road corners, you should not create a " -"curved line at intersection. Line should form an angle of 90° that " -"represents the actual conditions." -msgstr "" - -# 7bce0b5751c54557b53b4928112ecf4d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:367 -msgid "There is no tag in a node or a line" -msgstr "" - -# 942e17857e754d2385194662a67eadd5 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:372 -msgid "" -"To fix this, select an object and tag the object in accordance with the " -"information that describes the object. Alternatively, the object can be " -"removed if the object is in error." -msgstr "" - -# c0a192ff2bff448eb7cd82122a88fb8d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:377 -msgid "Line near, or with another line but they are not connecting" -msgstr "" - -# b9e0dbd13fbf42d782a98252b5da80a8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:379 -msgid "" -"The figure below shows an example of lines that should connect but do not." -msgstr "" - -# 8049d00080344f0cb94c28ee07941c7f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:384 -msgid "*The example of lines not connecting to each other*" -msgstr "" - -# 1d611787352a4859a7ab7bd769ee318f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:386 -msgid "" -"To fix it, you can select a node from the line that you want to connect, and " -"then select the :guilabel:`Draw Node` tool to add a node at the end of the " -"line. Alternatively, you can use the :guilabel:`Merge Node` tool (if the " -"front line is not connecting, that is a node), the following stages are:" -msgstr "" - -# 7dac99ad2dab464081b44f94b7b39d30 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:389 -msgid "" -"Select the two adjacent nodes, which is in the second line you want to " -"connect" -msgstr "" - -# 35c41538428841f9b6f2e578a281b7bf -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:391 -msgid "Select :menuselection:`Merge Node > Tools` menu" -msgstr "" - -# 91a085bb21ec4a9e8be831131a5dfc12 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:393 -msgid "" -"If the end of the first line is not yet connected, and there is not a point " -"to connect to in the second line, you can use the :menuselection:`Tools > " -"Join Node to Way`." -msgstr "" - -# 365be9bb5b2f4c3084c6d0ec7717309d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:397 -msgid "Way should not cross the building" -msgstr "" - -# 2a17b8c11f434b0fb990ea54ad3e9483 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:399 -msgid "In the figure below, a linear feature runs directly through a building." -msgstr "" - -# d5ae55dbbb7e43ef81c0e130c7fd074d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:404 -msgid "*The example of way cross the building*" -msgstr "" - -# 2700aa138df44945bf587d42a79651ac -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:406 -msgid "" -"To fix this, you need to use the latest satellite imagery so you can " -"determine which objects are correctly placed. If you are already using the " -"latest imagery, simply move the object to the appropriate place and delete " -"any obsolete features." -msgstr "" - -# ae8060902ddc4fd6b50c7d3acac0d978 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:410 -msgid "5.3 JOSM Editing Process" -msgstr "" - -# f9ca9ada166c48f2a9592aae3f0ad412 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:412 -msgid "" -"Editing OpenStreetMap with JOSM is similar to editing with the iD editor. " -"But because JOSM is a desktop application, it works a little bit " -"differently. The general process of editing and adding to OpenStreetMap with " -"JOSM will always follow this pattern:" -msgstr "" - -# 9c092d9559c84c2fbb30b2fbb368f379 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:415 -msgid ":guilabel:`Download` the current map data from OSM" -msgstr "" - -# 85031d1101694223abf0154e94d4013a -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:417 -msgid ":guilabel:`Edit` it using satellite imagery, GPS or Field Papers" -msgstr "" - -# 0690e93483344b64a1f9ae04d09cc945 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:419 -msgid ":guilabel:`Save` changes to OpenStreetMap" -msgstr "" - -# 7e34e2006e26434189b8eb3983257089 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:421 -msgid "In the following sections, we explore this pattern in greater detail." -msgstr "" - -# 620dcf592b724efc890ab597ec088e28 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:424 -msgid "5.3.1 Downloading OSM Data" -msgstr "" - -# 1dad5a196c194ff7bd7914305e757c0e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:426 -msgid "" -"The first step is to download the data for the area of interest that you " -"want to map. Remember that you need to do this every time that you want to " -"make changes to the map, because the map is often being updated by other " -"users and you will want the latest data." -msgstr "" - -# 128b54f2c92843269683ac735d288882 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:429 -msgid "" -"Click on :guilabel:`File` in the top left corner of JOSM and click :guilabel:" -"`Download from OSM`. This will open up the download window. You can access " -"this window more simply by clicking on the :guilabel:`download` button, " -"shown here:" -msgstr "" - -# 7556b6700d0b4ba49d4ac4a080931619 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:435 -msgid "" -"When the download window opens, you should see a map with a pink box drawn " -"on it. If you don’t see the map, click on the tab marked :guilabel:`Slippy " -"map` as shown in the figure below." -msgstr "" - -# 53084ac29bef4bf88a870c278a0d3156 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:441 -msgid "" -"3. The pink box represents the area of interest that we would like to " -"download for editing. Use your mouse to pan and zoom to an area that you " -"know very well, such as your hometown or neighborhood. The controls are the " -"same as in the JOSM map window. The right mouse button lets you drag the " -"map, and your scroll wheel allows you to zoom in and out." -msgstr "" - -# de62a50c193d4f60a6fde57da9eaa2e8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:445 -msgid "" -"4. Draw a box around the area that you want to download. To draw a new box, " -"click on the map, hold your left mouse button down, and drag your mouse to " -"create a box. Release the mouse button to finish drawing the box." -msgstr "" - -# 30410edaa7824a28ad115c648ea186fc -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:448 -msgid "" -"5. When you are satisfied with the size and location of the box, click :" -"guilabel:`Download` at the bottom of the window. JOSM will fetch the data " -"for this area from OpenStreetMap and open it in your map window for editing." -msgstr "" - -# 2ddee426f30444c4bba261fb4f0baf42 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:455 -msgid "5.3.2 Add Imagery" -msgstr "" - -# 1861e87673a746ddb1c4a2792b452b7e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:457 -msgid "" -"If you followed along when we added our first points with the iD editor, you " -"remember that beneath the map data there was a satellite image that helped " -"us identify objects on the ground. This imagery was licensed from Microsoft " -"Bing, which generously provides its imagery for OpenStreetMap users to use " -"as a reference while contributing to the map." -msgstr "" - -# 37ec6f5dc85d4a619886f0a1533e9115 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:461 -msgid "" -"To add the Bing satellite imagery in JOSM, click :guilabel:`Imagery` on the " -"top menu of JOSM and selecting :guilabel:`Bing Sat`." -msgstr "" - -# e16c1e4fc6914444a26576ca7890f7b9 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:468 -msgid "5.3.3 Edit with JOSM" -msgstr "" - -# 6f4e30d858244b4d878e2ab295aeaddd -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:470 -msgid "" -"To this point, we have been doing some pre-edit steps in JOSM starting with " -"downloading OSM data and adding satellite imagery as the background. Next, " -"we’ll edit the map and add new objects on it." -msgstr "" - -# e433b0edbb63458590da20141237292d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:473 -msgid "" -"You might rather see more or less data in your editing window. What you see " -"will depend on the size of your editable area. Please note, the data you are " -"working with is real data and the nodes, lines and polygon in your map area " -"represents actual objects on the ground." -msgstr "" - -# a71da0ff102a4e3ab01495f97a94c47e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:476 -msgid "" -"Use same steps that you have learned before to add nodes to your map. If you " -"see any error in your object, please fix it." -msgstr "" - -# 9005a649fb9d40bc8e06b9e9889a3238 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:478 -msgid "" -"2. You do not need to hurry, take your time to understand the steps. If you " -"are not really sure about the outline or identify of some object, you should " -"leave these off the map." -msgstr "" - -# a5b7eec8176741eda98ebf83d00526ee -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:481 -msgid "" -"3. If you want to move nodes, lines, or polygon, you can use :guilabel:" -"`Select Tools`. Click the object that you want to move and drag it to where " -"it should be.This step could be used to fix location of objects which have " -"wrong position." -msgstr "" - -# dca619f9a1e843d4b68d95a699cd75e4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:487 -msgid "" -"4. Use :guilabel:`Draw Tool` to draw nodes, lines, and polygon. Add " -"description and information of your object using Presets menu. You have done " -"this in previous chapter." -msgstr "" - -# 150a8ed97687411a88f93842aa75b27f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:491 -msgid "JOSM Layer" -msgstr "" - -# 300ab2bf617d49ac87bccd51af9cff9f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:493 -msgid "" -"You might be notice that everytime you add new object to JOSM, your object " -"will be added to layer panel at right side in JOSM. Your :guilabel:`Panel " -"Layer` should looks like this:" -msgstr "" - -# c117810b2f7f42818a4e1f17f4cef576 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:499 -msgid "" -"Every item listed is a different source of data that you have open in JOSM. " -"In the example shown in the figure above, :guilabel:`Data Layer 1` is the " -"OpenStreetMap data that we are currently editing. :guilabel:`BingSat` layer " -"is satellite imagery that is used as a background in JOSM." -msgstr "" - -# 297355afa6a84497bde8e20a777cb52d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:503 -msgid "" -"Those layers that are used as background images help us identify and " -"digitize objects in JOSM. These include satellite imagery, but also GPS " -"tracks and scans of Field Papers. We call these layers **base layers** and " -"our OSM data layer is main layer that we use to digitize and edit, add " -"objects, move objects, etc." -msgstr "" - -# 771c35257db549999248e0459a97f864 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:507 -msgid "" -"To move a layer, click on that layer in :guilabel:`Layers` panel and click :" -"guilabel:`up` or :guilabel:`down blue arrow` to move it." -msgstr "" - -# 7f0fd80fefbf4bafb5de092b1cc76f09 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:512 -msgid "" -"To hide a layer, select layer with your mouse and you can click :guilabel:" -"`Show/Hide` button:" -msgstr "" - -# fbcb20268fee42288ff53cfb6f63645b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:517 -msgid "" -"You should see your layer that you select will be hide in JOSM. If you want " -"to show it again, you can click the show/hide button and it would be " -"automatically show in JOSM." -msgstr "" - -# ad0146c5591e4411b01dd3da7ff3409d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:520 -msgid "You also can delete a layer using the :guilabel:`delete` button:" -msgstr "" - -# 29451a25dc914432876568f67e26915b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:525 -msgid "" -"4. Last, it is very important to know that you only can edit the :guilabel:" -"`Active` layer in JOSM. If you can not edit your map in JOSM, it might be " -"because your layer is not active. Most layer, such as GPS point, Field " -"Papers, and Aerial Imagery cannot be edited. The only layer that can be " -"edited are data from OpenStreetMap, which are usually called **Data Layer " -"1**." -msgstr "" - -# e57a9d7ab914405d94ef7de934f1d769 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:529 -msgid "" -"To make a layer active, select it in the :guilabel:`Layers` panel, and click " -"on the :guilabel:`Activate` button:" -msgstr "" - -# c2c1bad3546a4568876006c15961a0cf -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:535 -msgid "Tag" -msgstr "" - -# 94f7816a7d304111a6ba4d23748215fd -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:537 -msgid "" -"Tag is just like a label that you put to an object. For instance, if we add " -"an object in some area and that object is a mosque and its name is **Masjid " -"Raya Sabilal Muhtadin**; amenity that we can use is **place of worship** and " -"mosque as we know, is Muslim place of worship. Therefore, you can add a " -"**religion=Muslim** tag to the mosque as well as any other information you " -"can supply about that object. The tag will be saved as text, specifically as " -"a **key** and **value** combination. In OpenStreetMap, you can see all " -"information about an objects in properties panel at right side of your JOSM " -"window as shown in the figure below." -msgstr "" - -# ab0941e450d64341beac5c5048225057 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:546 -msgid "*Example Tag of object in JOSM*" -msgstr "" - -# 9dfee9aa157b4a66849e18499137eb0e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:550 -msgid "Editing Tags" -msgstr "" - -# 94c720852efd432983efa54a44bdd2d8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:552 -msgid "" -"You can add, edit, and remove tags directly from properties panel. But, tags " -"are automatically defined in English and sometimes it is confusing " -"especially if you do not understand English. Hence, non-English speakers may " -"find it is easier to manage tags using a Preset Menu. Needless to say, when " -"you add or edit tag, the attribute of object will be change as well." -msgstr "" - -# 294ebc4cda1c4f5a918138acd658f818 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:556 -msgid "To edit tag of an object, first **select the object**." -msgstr "" - -# 639f3e6abd6c48ddba1ccbe50e306097 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:558 -msgid "" -"You can edit the tag either: (1) **Using Presets Menu**, or (2) **Edit " -"Directly** in properties windows at right side of your JOSM." -msgstr "" - -# 18cf6b9da00c49e29124174885ddc8b1 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:561 -msgid "5.3.4 Save Changes" -msgstr "" - -# a878dd8dee1a426d8d83cbfbc6cb7448 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:563 -msgid "" -"The third and final step to complete our edits is to upload changes we have " -"made to the OpenStreetMap database. To save the changes, you must be " -"connected to the internet." -msgstr "" - -# 384e3dced1ad4ea7986f3e3679c056ed -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:566 -msgid "" -"1. Click :guilabel:`File` on the top menu, and then click :guilabel: `Upload " -"Data`. This will open up the upload window. You can access this window more " -"simply by clicking on the :guilabel:`upload` button, shown here:" -msgstr "" - -# ae665258146140bdaffa76827e132175 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:572 -msgid "" -"2. The window that appears shows a list of the objects that you are adding " -"and the objects you are modifying or deleting. In the box at the bottom you " -"are asked to provide a comment about the changes that you are making. Type " -"in here a brief description of your edits." -msgstr "" - -# ed7d42951f084253aa4d4568982690d4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:578 -msgid "Click :guilabel:`Upload Changes`" -msgstr "" - -# 8a61f3caac1a4855a3f2e260e489f2e3 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:580 -msgid "" -"Wait a few seconds for your changes to be uploaded, and then you are " -"finished! You have edited OpenStreetMap!" -msgstr "" - -# feeffab8804e4c33bb31229ccd3eb6a0 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:584 -msgid "5.3.5 Save OSM File" -msgstr "" - -# a4c72f97d2534716b227377750831229 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:586 -msgid "" -"When you edit using JOSM, you should download, edit and upload your changes " -"at regular intervals. Do not be afraid to upload your changes several times " -"during an editing session. This insures your changes upload to OSM database " -"completely and you face less risk of losing your work. There are some cases " -"where you have not finished your work, or your internet connection may be " -"suddenly turned off. If that happens, you can save your work locally in " -"JOSM. These are the steps to save your work:" -msgstr "" - -# 428a685a5b9349328a0ff45f90fc55c5 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:591 -msgid "" -"1. To save your OSM file, make sure your layer active. Click :menuselection:" -"`File > Save`. Choose your location in your computer and give a name to your " -"file. You also can save your file by click this button:" -msgstr "" - -# fb5fbcd29c41430dbc48e11803fcc9a8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:597 -msgid "" -"You can close your JOSM and your works has been saved. When you want to open " -"your file, open JOSM and go to :menuselection:`File > Open`." -msgstr "" - -# dbd9662dfcad4ff18f8db6195724fc74 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:600 -msgid "5.3.6 See Your Changes on The Map" -msgstr "" - -# 54ad2ba9382f4cd0ac48ee713f3e84c8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:602 -msgid "To see your edits on the map, take the following steps:" -msgstr "" - -# fff6a3256f034ce5962d891a15b56007 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:604 -msgid "" -"Open your internet browser and go to `openstreetmap.org `_" -msgstr "" - -# 90146fdb1fe147f8a9264981f0477548 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:606 -msgid "Move the map to the area that you edited." -msgstr "" - -# 6e3fe1c409184746bea275dceced631b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:608 -msgid "" -"You should see your changes now appearing on the map! If you don’t, try " -"pressing :kbd:`CTRL+R` to refresh the web page. Sometimes the map doesn’t " -"update properly and needs to be reloaded." -msgstr "" - -# d6f52d87ec4b4629bf4808be552ce6d6 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:610 -msgid "" -"What if you don’t see your changes? Don’t worry, it may take a few minutes " -"for the changes to be shown on the map. Also, check your additions in JOSM " -"to make sure that you added them correctly. A good general rule is, if your " -"point has an icon in JOSM, then it should be seen on the main map at the " -"OpenStreetMap website." -msgstr "" - -# abfd6de54286412ca46f59719299b49f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:614 -msgid "5.4 JOSM Data Quality Assurance" -msgstr "" - -# e40b70ecc0b64ef7921df6a33a63e2e1 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:616 -msgid "" -"Contributing to OpenStreetMap is easy to learn, but difficult to master. " -"Everybody makes mistakes, but the system works because even when one person " -"does something the “wrong” way, there are always other mappers ready to help " -"and fix errors. As you map more and more, the process will continue to get " -"easier, and you will learn the “proper” way to do things. This chapter is " -"devoted to helping you make quality contributions to OpenStreetMap. We will " -"begin by discussing various editing techniques in JOSM that will improve " -"your workflow, and how to avoid common mistakes that beginning mappers make. " -"Lastly, we will then discuss the JOSM validator tool, which is an automated " -"way of checking for errors." -msgstr "" - -# 204fbe3bfa2b4bed8f3a7ac13f3adf8a -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:624 -msgid "5.4.1 Warnings and Errors in JOSM" -msgstr "" - -# 92b381f04c314defaae16ba0687963a8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:626 -msgid "" -"There is a stage when you upload your work to OpenStreetMap when you get a " -"window notification as in the figure below:" -msgstr "" - -# d3e8dbc434584f80b0f3ae5bb777dcfe -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:631 -msgid "" -"This is the way JOSM tells us that something is wrong with our data and it " -"needs to be fixed before we upload it to the server." -msgstr "" - -# 9409d590b1a44879a983fea23675b54e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:633 -msgid "" -"JOSM comes with a :guilabel:`validation` tool that does an automated " -"analysis of possible mistakes. This is useful for finding errors that you " -"may have overlooked. When you run the validation tool, it returns two types " -"of problems:" -msgstr "" - -# 1c22dbb316fe4924b42cbcebb53d9aed -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:635 -msgid "" -"**Errors**: These are important to fix, and you should not ignore these. " -"Examples of errors include duplicated objects or overlapping lines and " -"polygons." -msgstr "" - -# 6e33c2c560b34e2b803e4eb269345d9c -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:637 -msgid "" -"**Warning:** These are problems that are important to fix, but in some " -"cases, they are tolerable." -msgstr "" - -# a4e6719d20ea4295bcdcb9c07bc5991d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:639 -msgid "" -"One thing to note is that if you download a large area of the map and run " -"the validation tool, you may get a very long list of errors and warnings. " -"This is because the validation tool works on the whole map in your editing " -"extents, --not only the changes that you have made. So you may see mistakes " -"that other mappers have made which you are free to fix or ignore. But the " -"validation tool gives you the opportunity to look at the mistakes one by one " -"and evaluate them." -msgstr "" - -# c0651555ba344c12b0c1738e7e9cc4be -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:645 -msgid "5.4.2 Validation Tool" -msgstr "" - -# 6a9778eab96a4623baf77ba5154a6a99 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:647 -msgid "Let’s learn how to use validation tool." -msgstr "" - -# 111333f713604532ad4910f0a3ac4a89 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:649 -msgid "" -"Download some area in JOSM. If you do not see :guilabel:`Validation Result` " -"at **right side panel** in your window, tick on the **blue checklist** icon " -"from the left panel in your JOSM window as circled in the figure below." -msgstr "" - -# 1bf9268836414897937cff38d633f009 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:654 -msgid "*Validation Result Button*" -msgstr "" - -# 71eb1d21b175436e91ffe7a10ba4cf53 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:656 -msgid "" -"**Ensure that nothing on the map is selected**. If you run the validation " -"tool with anything selected, it will only validate what you have selected, " -"and not the whole map. However your mouse in the validation window and " -"click :guilabel:`Validation`" -msgstr "" - -# 3ec215b79e0c4048b63c8cd056d7eae2 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:661 -msgid "" -"The map will change and any warnings will be circled in yellow, errors in " -"red. In the :guilabel:`Validation Results` window, as shown in the figure " -"below, you will see a list of warnings and errors, if there are any." -msgstr "" - -# 7f057c583e5943b8b2f2be24dfdceb99 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:666 -msgid "*Validation Layer and Validation Result*" -msgstr "" - -# 6d0c1d61ce5b4092aecabeaa358d490a -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:668 -msgid "" -"**Error** should almost always be fixed. You can zoom to an error, by right " -"clicking on it in the window and selecting :guilabel:`Zoom to Problem`. Then " -"you can fix the mistake manually." -msgstr "" - -# e32534e352894e4083b62e24658ccb88 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:670 -msgid "" -"5. **Some errors can be automatically fixed**, such as **Duplicated node** " -"errors. You can click on the folder for these types of errors and click the :" -"guilabel:`Fix` button in the window. Many errors, however, need to be " -"corrected manually." -msgstr "" - -# 34899aa53d394482bef2a7da8ac48bd7 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:676 -msgid "" -"Usually there are many more warnings than errors. By giving you a warning, " -"JOSM is telling you that it is probably a mistake, but not always. So you " -"will need to use your judgement to see if it is an error or not." -msgstr "" - -# 7ea7c219216d462b8f14a4b67d59c13d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:678 -msgid "" -"If you select a warning from the list and decide that it is not a problem, " -"click :guilabel:`Ignore` and it will be removed from the list." -msgstr "" - -# 1c6de1ee95204bcabee22b99dfb95fa4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:680 -msgid "" -"You can re-run the validation tool at any time by clicking :guilabel:" -"`Validation`." -msgstr "" - -# e13a75ff2f8b4cc68c8f932e6012714d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:683 -msgid "Summary" -msgstr "" - -# d4897bfa82b445508af43f12c8834ea5 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:685 -msgid "" -"Awesome! You have successfully learned how to edit OpenStreetMap in JOSM and " -"how to maximize some tools in JOSM to help us in editing our map. You also " -"know about mistakes and errors that should be avoided when editing in JOSM." -msgstr "" - -# 0ff2a045adc54bc5b0fd9124407ac5e4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:688 -msgid "" -"In next chapter, we will learn how to use **Global Positioning System** " -"(GPS) to collect data when doing a field survey and how to add it to " -"OpenStreetMap." -msgstr "" - -# b2cfaf78e5004ceb9a1d7c7057136037 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:690 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-06-using-gps.po b/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-06-using-gps.po deleted file mode 100644 index 1bfd3abd..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-06-using-gps.po +++ /dev/null @@ -1,677 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 98f2cfd852394b52ad5a0ce6eede45a0 -#: ../../source/training/osm/Chapter-06-using-gps.rst:10 -msgid "Chapter 6: Using GPS" -msgstr "" - -# fd4b485bf5294b44a561f776ffa00ebd -#: ../../source/training/osm/Chapter-06-using-gps.rst:12 -msgid "**Learning objectives:**" -msgstr "" - -# bfca61cebf9c43c3b095670d36b2e5dd -#: ../../source/training/osm/Chapter-06-using-gps.rst:14 -msgid "Understand GPS and the types of GPS" -msgstr "" - -# cd467f9f07244d01903a40af7d51b0d9 -#: ../../source/training/osm/Chapter-06-using-gps.rst:15 -msgid "Turn on a GPS unit" -msgstr "" - -# 632c9642834e497d8d7f002b70eb7ffb -#: ../../source/training/osm/Chapter-06-using-gps.rst:16 -msgid "Adjust GPS settings" -msgstr "" - -# 928ed40ac12148cda89aac6855acf686 -#: ../../source/training/osm/Chapter-06-using-gps.rst:17 -msgid "Understand factors that affect GPS accuracy" -msgstr "" - -# 73336677f58d4fdfa212b7f211a05c19 -#: ../../source/training/osm/Chapter-06-using-gps.rst:18 -msgid "Understand tracks and waypoints" -msgstr "" - -# b51c3e2bf17b4455a9b48a49d203ec04 -#: ../../source/training/osm/Chapter-06-using-gps.rst:19 -msgid "Collect data using GPS" -msgstr "" - -# 7e382349466647e294f23d607ae1fac9 -#: ../../source/training/osm/Chapter-06-using-gps.rst:20 -msgid "Copy GPS data (tracks and waypoints) to computer" -msgstr "" - -# 4dda42eb72e9442588795c113026350f -#: ../../source/training/osm/Chapter-06-using-gps.rst:21 -msgid "Open waypoints and tracks in JOSM" -msgstr "" - -# 19da7f27a55048348950a1a22be392e0 -#: ../../source/training/osm/Chapter-06-using-gps.rst:23 -msgid "" -"In this chapter we discuss one of the most important parts of mapping: how " -"to add actual information from field to map. We will learn several methods " -"to do field survey in this module. We will see what GPS is and how GPS work. " -"You will learn how to operate GPS and how to use the results for making a " -"map." -msgstr "" - -# 0001776e69374deaae8568c53e026ef7 -#: ../../source/training/osm/Chapter-06-using-gps.rst:29 -msgid "" -"Here we will explain how to operate Garmin eTrex Vista HCx, a GPS that is " -"commonly use for mapping activities. There are so many other GPS model that " -"can use the same operation so if you use different model, don’t worry – in " -"principle it is still the same." -msgstr "" - -# 7cabad609dbe43649e71b5b721c11b92 -#: ../../source/training/osm/Chapter-06-using-gps.rst:35 -msgid "6.1 What is GPS?" -msgstr "" - -# 224b8b561719443aa96b8a85ac42a992 -#: ../../source/training/osm/Chapter-06-using-gps.rst:37 -msgid "" -"A GPS is like a mobile phone, except that instead of receiving radio signals " -"from telephone companies, it receives signals from satellites that are going " -"around the Earth. By receiving these signals from the satellites, a GPS is " -"able to calculate its exact location on the planet. It records this location " -"in coordinates, which are two long numbers. One number tells you how far " -"east or west you are - this is called **longitude**. The second number tells " -"you how far north or south you are - this is called **latitude**. Every " -"place on Earth has unique geographic coordinates." -msgstr "" - -# a41b6c68558642d38849068862c140f2 -#: ../../source/training/osm/Chapter-06-using-gps.rst:54 -msgid "6.2 Turning on the GPS" -msgstr "" - -# 67a930980e6b4eceb38d7aa4720575e2 -#: ../../source/training/osm/Chapter-06-using-gps.rst:57 -msgid "" -"Before turning on your GPS, go outside where you have a clear view of the " -"sky." -msgstr "" - -# 79bdfdaf0cdb4db0a694cca505e70416 -#: ../../source/training/osm/Chapter-06-using-gps.rst:57 -msgid "" -"Because the GPS determines your location by receiving signals from " -"satellites, **it will not work indoors**." -msgstr "" - -# b216f521234e40089014b0cdcb3d93ad -#: ../../source/training/osm/Chapter-06-using-gps.rst:62 -msgid "" -"On the right side of the GPS, press and hold the :guilabel:`Power` button." -msgstr "" - -# 5561d178cabd4ecba9b347768939f9dd -#: ../../source/training/osm/Chapter-06-using-gps.rst:60 -msgid "" -"The GPS will start, and it will show you the Satellites page. You should see " -"something like the image below, where the GPS is seeking satellite signals. " -"When it has connected to three or more satellites, it can determine your " -"location." -msgstr "" - -# 19ce5d548f554968ad4fca4436b87ef0 -#: ../../source/training/osm/Chapter-06-using-gps.rst:69 -msgid "" -"Once your location is determined, the Satellites page will disappear and" -msgstr "" - -# 62c428f9fd344f5d9e4d1946264f2a74 -#: ../../source/training/osm/Chapter-06-using-gps.rst:69 -msgid "you will see the Main Menu." -msgstr "" - -# 00b13c8f639b4fd29f219788825493a3 -#: ../../source/training/osm/Chapter-06-using-gps.rst:76 -msgid "6.3 Navigating the GPS" -msgstr "" - -# 1258b8402a644f75aee0dd76245cdf32 -#: ../../source/training/osm/Chapter-06-using-gps.rst:78 -msgid "" -"The GPS has different pages and menus that allow you to do different things." -msgstr "" - -# 14e247b31b034edf8d078870de88e5e7 -#: ../../source/training/osm/Chapter-06-using-gps.rst:84 -msgid "To switch between pages, press the button marked :kbd:`X`, just above" -msgstr "" - -# 6b68aaa699d04d08b4f5fac7b6005e74 -#: ../../source/training/osm/Chapter-06-using-gps.rst:82 -msgid "" -"the power button on the right side of the device. This button also serves to " -"go back. If you press something by mistake and would like to cancel or go " -"back, press the :kbd:`X` button." -msgstr "" - -# 870ffeb552bf454b9b9a3031610f750c -#: ../../source/training/osm/Chapter-06-using-gps.rst:87 -msgid "" -"By pressing the :kbd:`X` button, you should be able to flip through different" -msgstr "" - -# 5c82e3ae634c497f8f5fd983ef2fcf33 -#: ../../source/training/osm/Chapter-06-using-gps.rst:87 -msgid "screens that will look something like this:" -msgstr "" - -# c170ba123e714ad6a097e3f675f0908a -#: ../../source/training/osm/Chapter-06-using-gps.rst:94 -msgid "" -"If you return to Satellites page, you will see that you are connected to" -msgstr "" - -# 65f3ef6376384e0db49e7aa1539e7c83 -#: ../../source/training/osm/Chapter-06-using-gps.rst:93 -msgid "" -"three or more satellites. In the upper left corner are your coordinates, " -"your latitude and longitude." -msgstr "" - -# 0b62d60deb74438bbd33e481f7485aa7 -#: ../../source/training/osm/Chapter-06-using-gps.rst:99 -msgid "Go to the Map page, and you can see a map of your current location. If" -msgstr "" - -# 6221188535bd46e4ae9b2232140e1ab4 -#: ../../source/training/osm/Chapter-06-using-gps.rst:97 -msgid "" -"you have added OpenStreetMap maps to your GPS, you may see roads and points-" -"of-interest. Otherwise, the map may look quite blank. Zoom in and out by " -"pressing the up and down arrow buttons on the left side of the GPS." -msgstr "" - -# 42d5ed318bf24016b0541a25a2dc7e35 -#: ../../source/training/osm/Chapter-06-using-gps.rst:102 -msgid "6.4 Tracks and waypoints" -msgstr "" - -# d95accef91964a91b8c4f060258f7fe6 -#: ../../source/training/osm/Chapter-06-using-gps.rst:104 -msgid "" -"A GPS records two kinds of information that are useful for creating maps or " -"saving the coordinates of a place. First, it allows you to save your " -"location in the memory of the GPS. When you save a location, the coordinates " -"will be saved with a name. For example, by default your first saved point " -"will be named 001, the second 002, and so on." -msgstr "" - -# 7bf2eef9e39b4b23a49e73a4cc98ac83 -#: ../../source/training/osm/Chapter-06-using-gps.rst:110 -msgid "" -"When you save a point, you can write down the number on a piece of paper, " -"along with a note about what it is, and any attributes or indicators you " -"would like to collect. Saved locations on your GPS are called waypoints." -msgstr "" - -# 2e468f014eda42d6ba6c2a7f379f1a96 -#: ../../source/training/osm/Chapter-06-using-gps.rst:115 -msgid "" -"Second, a GPS can save what are called tracks. While a waypoint only saves a " -"single location, a track will save a series of locations wherever you move. " -"For example, a track will record your location every one second, or every " -"one metre, and the result will be a series of dots that show the path of " -"where you have been. Tracks are useful for mapping objects that are " -"represented by lines or shapes, such as the course of a road or the shape of " -"a field." -msgstr "" - -# a12a9b6fcca442e4a9624ea52cd79539 -#: ../../source/training/osm/Chapter-06-using-gps.rst:126 -msgid "" -"If your GPS not started from 001 and you want to erase the previous point, " -"go to icon “Find” in the main menu. Press on “waypoint” and then submenu in " -"the right side to show Waypoint submenu. Drag to bottom and press “Delete” " -"and “all symbols” and then “Yes”." -msgstr "" - -# 4d5b5703aa1b4d149321c46f3bcb5c67 -#: ../../source/training/osm/Chapter-06-using-gps.rst:132 -msgid "6.5 Saving your location" -msgstr "" - -# c75eeb1702544b14b0c180baf2a8130c -#: ../../source/training/osm/Chapter-06-using-gps.rst:134 -msgid "To save your current location as a waypoint:" -msgstr "" - -# 9d040d86dd7b45b6bc81bfc1e3a03794 -#: ../../source/training/osm/Chapter-06-using-gps.rst:138 -msgid "click the :kbd:`X` button until your reach the Main Menu." -msgstr "" - -# a7ddcb30594649ee9442af4ebff26c7f -#: ../../source/training/osm/Chapter-06-using-gps.rst:137 -msgid "" -"Using the joystick, move it so that :guilabel:`Mark` is highlighted on the " -"screen. Push the joystick button down to open the **Save Waypoint** page." -msgstr "" - -# 1c8c3b82157b4dcba69dca20ac7916e3 -#: ../../source/training/osm/Chapter-06-using-gps.rst:143 -msgid "" -"You can see on this page some information about the waypoint that you are " -"saving. First is the name. If this is your first waypoint, it probably reads " -"“001”. This is the number you should record on paper along with the " -"information you want to collect about this object, e.g. name, address, " -"phone, etc. Next you will see the time and date when the point is recorded. " -"Below that are the coordinates, followed by the altitude." -msgstr "" - -# 53a6055db99e4781b40bf207632120f3 -#: ../../source/training/osm/Chapter-06-using-gps.rst:154 -msgid "" -"Use the joystick to move to the :guilabel:`OK` button at the bottom of the " -"screen." -msgstr "" - -# f857bf67d8de4665a56890a81bffbef0 -#: ../../source/training/osm/Chapter-06-using-gps.rst:152 -msgid "" -"Press the joystick button down to save this point. Be sure to write down in " -"your notebook the number of the point, along with a description of the place " -"and any other information you want to record about the place." -msgstr "" - -# 1eda744c2dd14771bb098c672c98c1e6 -#: ../../source/training/osm/Chapter-06-using-gps.rst:161 -msgid "" -"Press the :kbd:`X` button to go to the Map page. You should now see your " -"point" -msgstr "" - -# 342f867ec8e34aa4b3d91051d77cc874 -#: ../../source/training/osm/Chapter-06-using-gps.rst:161 -msgid "on the map." -msgstr "" - -# cc7d41c25d504f209d68d330e1368101 -#: ../../source/training/osm/Chapter-06-using-gps.rst:164 -msgid "6.6 Turning on the Track Log" -msgstr "" - -# c1482a4ec54d481c94cae11a938d67fa -#: ../../source/training/osm/Chapter-06-using-gps.rst:166 -msgid "" -"Now that we have learned how to save points, let’s learn how to turn the " -"track log on and off. When the track log is turned on, it will automatically " -"record your path. It’s good practice to turn on the log when you begin " -"mapping, and turn it off when you are finished. You will then be able to " -"look at the track on a computer and see the path that you mapped. If you " -"would like to map the course of a road, it is a good idea to save a waypoint " -"at the beginning and end of the road, writing in your notebook the name and " -"type of the road, and any other important information about the road." -msgstr "" - -# cbea4078d3384c0080ce994441bed56c -#: ../../source/training/osm/Chapter-06-using-gps.rst:177 -msgid "" -"To turn track log, click the :kbd:`X` button until your reach the page that" -msgstr "" - -# ed78694cd6d743eb83d66bd607cf867e -#: ../../source/training/osm/Chapter-06-using-gps.rst:177 -msgid "says Track Log." -msgstr "" - -# ccc7c8eb06324ff2a5ebad456beb9e38 -#: ../../source/training/osm/Chapter-06-using-gps.rst:184 -msgid "If you want To empty the track log (to delete earlier recordings), use" -msgstr "" - -# c3e74cc5695443458a49a9c9b049f72d -#: ../../source/training/osm/Chapter-06-using-gps.rst:183 -msgid "" -"the joystick to select :guilabel:`Clear`, and press the joystick down. The " -"bar at the top should read “0%”" -msgstr "" - -# ea1eac2f24964fbea6708934b80f860c -#: ../../source/training/osm/Chapter-06-using-gps.rst:187 -msgid "" -"To turn on the log, move the joystick to highlight :guilabel:`On`, and press " -"the joystick down." -msgstr "" - -# 3c14a5e203b04a838cfb7745cb7e5331 -#: ../../source/training/osm/Chapter-06-using-gps.rst:187 -msgid "The track log is now recording your path." -msgstr "" - -# 767ab4e8b65642608e9a8f57b48f5c36 -#: ../../source/training/osm/Chapter-06-using-gps.rst:190 -msgid "" -"Press the :kbd:`X` button to go to the Map page. As you move you will see " -"your" -msgstr "" - -# ef1171a8d1ff44c7bdee00ef447933de -#: ../../source/training/osm/Chapter-06-using-gps.rst:190 -msgid "track shown as a series of dots." -msgstr "" - -# af2dac0e4765453597d1d5fd34414bd0 -#: ../../source/training/osm/Chapter-06-using-gps.rst:193 -msgid "6.7 Copying waypoints and tracks to the computer" -msgstr "" - -# 5a0f5590862741478516a79329bbfc85 -#: ../../source/training/osm/Chapter-06-using-gps.rst:195 -msgid "" -"When you are finished mapping with the GPS you will want to copy the points " -"and tracks to your computer so that you can open them in JOSM and begin " -"editing." -msgstr "" - -# 0cfe02d63a1a4d68b8885ae2ee13d830 -#: ../../source/training/osm/Chapter-06-using-gps.rst:198 -msgid "" -"One way to copy waypoints and tracks is using the free BaseCamp software " -"supplied by Garmin and available for download from the Garmin website. " -"However in this module, we will use an opensource program called GPSBabel, " -"that provides several additional features." -msgstr "" - -# 0f7dec4fe531438b85b5a54fd4cc4103 -#: ../../source/training/osm/Chapter-06-using-gps.rst:204 -msgid "6.7.1 Installing GPS drivers" -msgstr "" - -# 4bdfac18c54e4f9785cda8815d16063b -#: ../../source/training/osm/Chapter-06-using-gps.rst:208 -msgid "" -"You may need to install GPS drivers on your computer. Open your training" -msgstr "" - -# f8a83394c7524586a65d0b9e529e8759 -#: ../../source/training/osm/Chapter-06-using-gps.rst:207 -msgid "" -"folder and find :file:`software/USBDrivers_23.exe`. Double-click it and " -"install." -msgstr "" - -# 7577a9477ee840bf917502b08f3e6cf7 -#: ../../source/training/osm/Chapter-06-using-gps.rst:212 -msgid "If you don’t have this file, you can download it. Open your internet" -msgstr "" - -# d0d316b05d6744ee81cd87ed64624819 -#: ../../source/training/osm/Chapter-06-using-gps.rst:211 -msgid "" -"browser and go to: `http://www8.garmin.com/support/download_details .jsp?" -"id=591 `_" -msgstr "" - -# 31e5438cdb214ed49c7f12fa162f67cf -#: ../../source/training/osm/Chapter-06-using-gps.rst:216 -msgid "" -"3 Click :guilabel:`Download` to get the installation file. Locate it on your" -msgstr "" - -# 640d9fa7335d4cc3915fc12294cafa3e -#: ../../source/training/osm/Chapter-06-using-gps.rst:215 -msgid "computer, and double-click to install." -msgstr "" - -# 578b2078f7284ff2b70494a4d83d2c94 -#: ../../source/training/osm/Chapter-06-using-gps.rst:219 -msgid "6.7.2 Attaching GPS to the Computer" -msgstr "" - -# 86427e6afeca43dcafa7045c99dad8a7 -#: ../../source/training/osm/Chapter-06-using-gps.rst:221 -msgid "" -"1. First, turn off the track log on your GPS by going to the Track page and " -"selecting :guilabel:`Off`." -msgstr "" - -# 5f69ed67b39c43d08e74692b96ae14b4 -#: ../../source/training/osm/Chapter-06-using-gps.rst:227 -msgid "" -"Attach the GPS to your computer with the cable. One end should plug into" -msgstr "" - -# 74c995d831b946b3a9b496cbe2f52434 -#: ../../source/training/osm/Chapter-06-using-gps.rst:225 -msgid "" -"your computer’s USB port, and the other goes into the back of the GPS, " -"beneath the rubber flap at the top. The GPS should be turned on to " -"facilitate copying of the points and tracks." -msgstr "" - -# 437bc7c03abc49aeafda63cc19f06c49 -#: ../../source/training/osm/Chapter-06-using-gps.rst:230 -msgid "6.7.2 Getting the GPSBabel setup program" -msgstr "" - -# 2aa7982dc7a54941b7d0bd7547705c4a -#: ../../source/training/osm/Chapter-06-using-gps.rst:232 -msgid "" -"GPSBabel is a program that allows us to copy data from the GPS. If you have " -"copy of GPSBabel in CD or flashdisk, you can skip this step and move to next " -"section. If you don’t have GPSbabel:" -msgstr "" - -# 7d2f89f50bc046ac95aaeadc3f61a11c -#: ../../source/training/osm/Chapter-06-using-gps.rst:236 -msgid "" -"Open your web browser and go to `www.gpsbabel.org `_" -msgstr "" - -# d4b42078c83846c6b72ded3139f263c8 -#: ../../source/training/osm/Chapter-06-using-gps.rst:238 -msgid "Click :guilabel:`Downloads` at the top of the page." -msgstr "" - -# 32422ade623c4b1f8f2901155d4120d7 -#: ../../source/training/osm/Chapter-06-using-gps.rst:243 -msgid "Scroll down the page. If your computer uses Windows, you want to" -msgstr "" - -# b73e638b67984480bf7de510eb343248 -#: ../../source/training/osm/Chapter-06-using-gps.rst:241 -msgid "" -"download the installation file for Windows. Click :file:`GPSBabel-1.5.1-" -"Setup.exe`. The file will be downloaded to your computer. Find GPSBabel " -"installation software and double click to install." -msgstr "" - -# 9224d1876caf4b599beecc550b3f9816 -#: ../../source/training/osm/Chapter-06-using-gps.rst:245 -msgid "Click :guilabel:`Next`." -msgstr "" - -# 8b6d950386544c0794ef23b518c745c1 -#: ../../source/training/osm/Chapter-06-using-gps.rst:247 -msgid "Clcik :guilabel:`I accept` and :guilabel:`Next`." -msgstr "" - -# 1c0b11efe145427bbcd966b85bc868ca -#: ../../source/training/osm/Chapter-06-using-gps.rst:249 -msgid "Continue clicking :guilabel:`Next` until the program installs." -msgstr "" - -# e954ca6a86104367963d6ddd9a4ca1ac -#: ../../source/training/osm/Chapter-06-using-gps.rst:251 -msgid "" -"When the program has finished installing, click :guilabel:`Finish` to start " -"GPSBabel." -msgstr "" - -# 3dd036785d89456997f6d9d09bee9cbd -#: ../../source/training/osm/Chapter-06-using-gps.rst:255 -msgid "6.7.3 Copying Tracks and Waypoints" -msgstr "" - -# 283e0930e77348a990b7ade65ac997a8 -#: ../../source/training/osm/Chapter-06-using-gps.rst:257 -msgid "" -"After you success install GPSBabel, it will automatically launch GPSBabel. " -"Otherwise, you can find GPSBabel icon in the desktop or start menu." -msgstr "" - -# 265cac69c79f45a2a79281da9eb51adf -#: ../../source/training/osm/Chapter-06-using-gps.rst:262 -msgid "" -"Click in the circle next to the word :guilabel:`Device` at the top of the" -msgstr "" - -# 5b24bbad441145c4b0ea25fdee3cc3f0 -#: ../../source/training/osm/Chapter-06-using-gps.rst:262 -msgid "window." -msgstr "" - -# 62f5659200cf41c49178fc48bc3ac3b4 -#: ../../source/training/osm/Chapter-06-using-gps.rst:267 -msgid "" -"In the drop-down menu labelled :guilabel:`Format`, select :guilabel:`Garmin " -"serial/USB protocol`" -msgstr "" - -# cf875335ca04488da42ffa17e6ae04a1 -#: ../../source/training/osm/Chapter-06-using-gps.rst:269 -msgid "" -"Go down to the middle of the window, under :guilabel:`Output`. In the drop-" -"down menu labelled :guilabel:`Format`, select :guilabel:`GPX XML`" -msgstr "" - -# 7c0ac1ab9fe34f84b9f702b0ef0214e8 -#: ../../source/training/osm/Chapter-06-using-gps.rst:276 -msgid "Click :guilabel:`File Name` and type a name for your saved file." -msgstr "" - -# 3cf69d0b98434a50b13c595d0495c808 -#: ../../source/training/osm/Chapter-06-using-gps.rst:275 -msgid "" -"It should be something that describes the data, such as the date and the " -"location. For example: :file:`jakarta-07-07-2014`." -msgstr "" - -# ad2d076aa2ea40ddb710e5566f8894e1 -#: ../../source/training/osm/Chapter-06-using-gps.rst:278 -msgid "Make sure your GPS is connected to the computer and turned on." -msgstr "" - -# 7b60355cd13d45d4bb7a384edfdf7b82 -#: ../../source/training/osm/Chapter-06-using-gps.rst:280 -msgid "Click :guilabel:`Apply` in the bottom right corner of the window" -msgstr "" - -# 43a258347b594847b59e081d3b3f7aa9 -#: ../../source/training/osm/Chapter-06-using-gps.rst:285 -msgid "If all goes well you should see a bar move across the screen," -msgstr "" - -# 3b15573eb0984cedbad5dcac77947ab2 -#: ../../source/training/osm/Chapter-06-using-gps.rst:283 -msgid "" -"indicating that the data is being retrieved from the GPS. When it is " -"finished, your points and track will be saved in the file that you selected" -msgstr "" - -# a3d07d7b27b843489f577c04dafc3d9a -#: ../../source/training/osm/Chapter-06-using-gps.rst:288 -msgid "6.8 Open Waypoints and Tracks in JOSM" -msgstr "" - -# 036cac486db349c59708e2c6fe699a90 -#: ../../source/training/osm/Chapter-06-using-gps.rst:290 -msgid "Now open JOSM. Go to :menuselection:`File → Open...`" -msgstr "" - -# a97662b4095549bcb683e01022c634ab -#: ../../source/training/osm/Chapter-06-using-gps.rst:292 -msgid "" -"Find and select the file that you created with GPSBabel. Click :guilabel:" -"`Open`." -msgstr "" - -# 3d101afb7f494524ae7f5e923713f304 -#: ../../source/training/osm/Chapter-06-using-gps.rst:294 -msgid "You should now see your points and tracks loaded into JOSM." -msgstr "" - -# 0f406814a19546e99639d0ffcce88340 -#: ../../source/training/osm/Chapter-06-using-gps.rst:300 -msgid "6.8.1 Change waypoints and tracks colour in JOSM" -msgstr "" - -# 7801070a5a20479faa3221daaefa624e -#: ../../source/training/osm/Chapter-06-using-gps.rst:302 -msgid "" -"To change tracks and waypoints colour, right click on the :guilabel:`track` " -"layer or :guilabel:`waypoints` layer and then select :guilabel:`Customize " -"Colours` and choose your preferred colour." -msgstr "" - -# 9cbaa887dc304010b103ce5d55db4a5d -#: ../../source/training/osm/Chapter-06-using-gps.rst:306 -msgid "" -"For tracks, not only you can change **line colour** but you can also change " -"**line width**. Right click on :guilabel:`track` layer and then select :" -"guilabel:`Customize Track Drawing`. Change :guilabel:`Drawing width of GPX " -"Lines` with your preferred number (The larger the number the thicker the " -"line)" -msgstr "" - -# b4bd7e507919424c92d6b48b12db1736 -#: ../../source/training/osm/Chapter-06-using-gps.rst:314 -msgid "Summary" -msgstr "" - -# 8ae4475239e541bfa8c378afec4ca26d -#: ../../source/training/osm/Chapter-06-using-gps.rst:316 -msgid "" -"Congratulations! Now you already learned about how to use GPS. If you still " -"need practice, try to save points from several location that you think " -"important." -msgstr "" - -# 554f1f76314944b798ed05a0080f5d1f -#: ../../source/training/osm/Chapter-06-using-gps.rst:320 -msgid "" -"In this chapter we have learned how to collect waypoints and tracks, " -"download them from the GPS, and display them in JOSM. Later we will use this " -"information to add new objects in OpenStreetMap." -msgstr "" - -# 456ca3f40b4a42178ebb50cc90208fd2 -#: ../../source/training/osm/Chapter-06-using-gps.rst:324 -msgid "" -"In the next chapter, we will learn about another survey method called Field " -"Papers. Field Papers allows you to create map without a GPS!" -msgstr "" - -# 25cc7aa84c444ed6a370d6de49b54f01 -#: ../../source/training/osm/Chapter-06-using-gps.rst:327 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-07-field-papers.po b/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-07-field-papers.po deleted file mode 100644 index 5a85a450..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-07-field-papers.po +++ /dev/null @@ -1,619 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 9adc9d76cd284fd1945c460e3f4a92bd -#: ../../source/training/osm/Chapter-07-field-papers.rst:10 -msgid "Chapter 7: Field Papers" -msgstr "" - -# e96d8214f7954c5886a22a38c7ad7b14 -#: ../../source/training/osm/Chapter-07-field-papers.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# def27042d3404d35aaa23df84e9ac8d4 -#: ../../source/training/osm/Chapter-07-field-papers.rst:14 -msgid "How to use Field Papers" -msgstr "" - -# 1c30907f90fc409fbc2008ce96d067dc -#: ../../source/training/osm/Chapter-07-field-papers.rst:15 -msgid "Make and print Field Papers" -msgstr "" - -# 82d7bb5dc1534b84b676cf72cf9be804 -#: ../../source/training/osm/Chapter-07-field-papers.rst:16 -msgid "Add data to print using Field Papers" -msgstr "" - -# bc6985209ea74076b01c5b8bbc878bca -#: ../../source/training/osm/Chapter-07-field-papers.rst:17 -msgid "Scan and upload Field Papers to Field Papers website" -msgstr "" - -# a283600fae524e53ad4ac758468128bb -#: ../../source/training/osm/Chapter-07-field-papers.rst:18 -msgid "Open Field Papers into JOSM" -msgstr "" - -# 8e5404a2663146cdb4d1d38d33026644 -#: ../../source/training/osm/Chapter-07-field-papers.rst:20 -msgid "" -"In this module we will see how we can record the coordinates of places " -"without a GPS. We will use a paper-based tool called Field Papers, which " -"allows you to print a map of an area, draw on it, add notes, and load the " -"paper back into JOSM, where you can add your locations to OpenStreetMap." -msgstr "" - -# 91492f44bec145f9a20adbc44ac93e9a -#: ../../source/training/osm/Chapter-07-field-papers.rst:25 -msgid "7.1 Overview of Field Papers" -msgstr "" - -# 88df4323cc954f6ba614781d306ffe0a -#: ../../source/training/osm/Chapter-07-field-papers.rst:27 -msgid "" -"Before going into detail about Field Papers, let’s look at a general " -"overview of how the Field Papers process works:" -msgstr "" - -# a2a82a2367c4462db0516281f83b0419 -#: ../../source/training/osm/Chapter-07-field-papers.rst:29 -msgid "" -"Locate the area of interest you want to map on the Field Papers website. " -"Create a map for the area of interest. Print out a map of this area. You can " -"choose to print the area of interest using the default OpenStreetMap " -"backdrop, or you may choose to print aerial imagery, if it is a available in " -"your area." -msgstr "" - -# be46fde1c1b44bacb031f6d5d70be56b -# 41321ae0a84c4ffb8407eec5377e378b -#: ../../source/training/osm/Chapter-07-field-papers.rst:36 -#: ../../source/training/osm/Chapter-07-field-papers.rst:87 -msgid "*Interface Field Papers*" -msgstr "" - -# 47b90d4e746d4a99ac9df744e7bd3025 -#: ../../source/training/osm/Chapter-07-field-papers.rst:38 -msgid "" -"Use your printed map to survey the area. Add more places by drawing them on " -"the map. Draw lines for roads, shapes for buildings, and so forth. Write " -"notes about each location directly on the map, or write numbers on the map " -"that relate to numbers in your notebook, where you can write more detailed " -"information about each object." -msgstr "" - -# e923e982684942b2a99bd31d1ab3a0ed -#: ../../source/training/osm/Chapter-07-field-papers.rst:43 -msgid "" -"Scan your paper into the computer. If you do not have a scanner, you can " -"take a photograph of the paper, if your camera is able to take high quality " -"pictures. Upload the image to the Field Papers website." -msgstr "" - -# f37aac904ab042298394bb3d16b80140 -# 235f9aadaa1949de91042295beba747d -#: ../../source/training/osm/Chapter-07-field-papers.rst:49 -#: ../../source/training/osm/Chapter-07-field-papers.rst:214 -msgid "*Field Papers Image*" -msgstr "" - -# 4cd5ac5c0ec0421596ca48f00d591f71 -#: ../../source/training/osm/Chapter-07-field-papers.rst:51 -msgid "" -"In JOSM, load the Field Papers. Use the objects you drew as a reference to " -"add the digitally into OpenStreetMap." -msgstr "" - -# c3ae57d5618449f7807e3bfd936ec27a -# a0d83c70239e4f4bbfdc460c92dc29a3 -#: ../../source/training/osm/Chapter-07-field-papers.rst:56 -#: ../../source/training/osm/Chapter-07-field-papers.rst:313 -msgid "*Interface Field Papers in JOSM*" -msgstr "" - -# ca90036eefbc4e0083ad0a27c191efc9 -#: ../../source/training/osm/Chapter-07-field-papers.rst:59 -msgid "7.2 How does Field Papers Work?" -msgstr "" - -# 75b8e607fb4d427598c888e9385b25fb -#: ../../source/training/osm/Chapter-07-field-papers.rst:61 -msgid "" -"If you follow the Field Papers process described above, you will be " -"collecting accurate geographic coordinate of places with nothing more than " -"paper. How is this possible?" -msgstr "" - -# aeb690bb85bc46a99c692b87bd446f0a -#: ../../source/training/osm/Chapter-07-field-papers.rst:67 -msgid "*Barcode Field Papers*" -msgstr "" - -# acb746d16e914d939d1cf208119fcfb7 -#: ../../source/training/osm/Chapter-07-field-papers.rst:69 -msgid "" -"When you print a Field Papers, the paper comes with a square barcode on the " -"bottom of the page. This barcode allows Field Papers to determine the exact " -"location of the map that you are using to survey. Later, when you load the " -"paper back into JOSM, all the objects that you drew will be in shown " -"relative to their actual locations. This is same with you using GPS for " -"collecting actual coordinates, except all you need is paper!" -msgstr "" - -# 54769d22f7eb4ced80bdaa06a523bd6f -#: ../../source/training/osm/Chapter-07-field-papers.rst:74 -msgid "Now let’s learn how to create and use Field Papers." -msgstr "" - -# dd0b8bceeb3842a5bccba569018201eb -#: ../../source/training/osm/Chapter-07-field-papers.rst:77 -msgid "7.3 Create and Print Field Papers" -msgstr "" - -# 9cb7e70bcc054611b779d1ad8386e049 -#: ../../source/training/osm/Chapter-07-field-papers.rst:79 -msgid "" -"Open your web browser. In the address bar at the top of the window, enter " -"`http://fieldpapers.org/ `_ and press :kbd:`Enter`" -msgstr "" - -# 24e595bb3f0e47a4803306b842b5ca08 -#: ../../source/training/osm/Chapter-07-field-papers.rst:82 -msgid "The website should look something like the figure below:" -msgstr "" - -# c34462aadf794049a0800fd8f92f5f24 -#: ../../source/training/osm/Chapter-07-field-papers.rst:89 -msgid "" -"Click :guilabel:`Make yourself an Atlas` to select the area that you want " -"print out." -msgstr "" - -# 3ecd7aeceb544288ae032d3b6740cf86 -#: ../../source/training/osm/Chapter-07-field-papers.rst:94 -msgid "*Make Field Papers*" -msgstr "" - -# 1a9d169f09b64fd6862dc222b5f8d35e -#: ../../source/training/osm/Chapter-07-field-papers.rst:96 -msgid "" -"You will be directed to a page where you can enter a place where you would " -"like to print out a map, and click on :guilabel:`Search` as shown in the " -"figure below." -msgstr "" - -# f71c42951b15452b835f5a2ceef58795 -#: ../../source/training/osm/Chapter-07-field-papers.rst:102 -msgid "*Search Location in Field Papers*" -msgstr "" - -# e783dd3732624cf1a1116e65ca76a359 -#: ../../source/training/osm/Chapter-07-field-papers.rst:104 -msgid "" -"Now you are presented with an interface where you can define the boundaries " -"of your Field Papers. You can drag the map with the same way when you drag " -"map in OpenStreetMap website, use the left button your mouse for drag map, " -"and scroll your mouse for zoom in and zoom out. Click on :guilabel:`+` and :" -"guilabel:`-` buttons in the upper left corner for zoom in and zoom out." -msgstr "" - -# da4bf90667b342ec9c57b738b4a63e1b -#: ../../source/training/osm/Chapter-07-field-papers.rst:112 -msgid "*Setting the area in Field Papers*" -msgstr "" - -# addf1596f16944aca3793b84dd9a6878 -#: ../../source/training/osm/Chapter-07-field-papers.rst:114 -msgid "" -"At the top your maps are some setting for print out Field Papers. The first " -"is used to adjust the paper size that you want use for print out Field " -"Paper. You can choose :guilabel:`letter`, :guilabel:`A3`, or :guilabel:`A4`." -msgstr "" - -# 9fde8c1de93e491bbdba8807e0e2925d -#: ../../source/training/osm/Chapter-07-field-papers.rst:120 -msgid "*Setting the paper size in Field Papers*" -msgstr "" - -# f244290eb49e4566b74c4eb30ed883c5 -#: ../../source/training/osm/Chapter-07-field-papers.rst:122 -msgid "" -"The second is used to adjust the paper orientation that you want use for " -"print out Field Paper. You can choose between :guilabel:`portrait` or :" -"guilabel:`landscape` as shown in the figure below." -msgstr "" - -# d1b2b05186c341e4b3989996b924e18e -#: ../../source/training/osm/Chapter-07-field-papers.rst:128 -msgid "*Setting Paper Orientation in Field Papers*" -msgstr "" - -# 86378e2c3880428a81d592de8ecf3400 -#: ../../source/training/osm/Chapter-07-field-papers.rst:130 -msgid "" -"Next you can select the type data for your Field Papers. You can select " -"different background for change map background. In this example shown in the " -"figure below, we will select :guilabel:`Satellite Only`." -msgstr "" - -# 02015e0c0fa74dfd97648f1fe94ebfd1 -#: ../../source/training/osm/Chapter-07-field-papers.rst:136 -msgid "*Setting Map Background on Field Papers*" -msgstr "" - -# a2b2baee04e14b658e24f62f0c82e4e8 -#: ../../source/training/osm/Chapter-07-field-papers.rst:138 -msgid "" -"You want to make sure that the window displays the area of interest that you " -"intend to map. You can use the control map window to change size page your " -"Field paper, or add more page or less page. Make sure that your map can " -"display building and road for field survey." -msgstr "" - -# cadc81887e6f47409cf3bd55d96152e6 -#: ../../source/training/osm/Chapter-07-field-papers.rst:142 -msgid "When you’re finished, click :guilabel:`Next`" -msgstr "" - -# 123fb9764bf543f0bd0fbb7b247361ca -#: ../../source/training/osm/Chapter-07-field-papers.rst:147 -msgid "*Next step to create Field Papers*" -msgstr "" - -# e7d695122950464f8283c741e3981101 -#: ../../source/training/osm/Chapter-07-field-papers.rst:149 -msgid "" -"Next :guilabel:`give a name to your map` in Field Papers as shown in the " -"figure below. If you want, you can add notes to be printed on the map, such " -"as questions you want to remember to answer or specific places you want to " -"identity." -msgstr "" - -# 34ee59e4617842f0b5ccfe25f2bca113 -#: ../../source/training/osm/Chapter-07-field-papers.rst:156 -msgid "*Fill Name Field Papers*" -msgstr "" - -# 91307576e6ee4e858a53941f5343ec73 -#: ../../source/training/osm/Chapter-07-field-papers.rst:158 -msgid "" -"Finally choose your layout. You can indicate whether you want pages only for " -"your maps, or if you want notes on the same page. If you choose the notes " -"option half of your page will be left blank for taking notes, and the other " -"half will contain your map. You can select :guilabel:`Maps Only` for default." -msgstr "" - -# 0dcb7ab544524259abfb56a677b946c0 -#: ../../source/training/osm/Chapter-07-field-papers.rst:165 -msgid "*Change Layout Field Papers*" -msgstr "" - -# cdc35dbb611647ff83d147667560f005 -#: ../../source/training/osm/Chapter-07-field-papers.rst:167 -msgid "Click on :guilabel:`Finished!`" -msgstr "" - -# 48976a468fc34cdf90ba88f6c228461d -#: ../../source/training/osm/Chapter-07-field-papers.rst:169 -msgid "" -"It may take a few minutes to prepare your final Field Papers map. When " -"finished, you will see your Field Paper on this page, shown in the figure " -"below." -msgstr "" - -# 6cebc76e3d654609969999f4cb783ca2 -#: ../../source/training/osm/Chapter-07-field-papers.rst:175 -msgid "*The process preparing Field Papers*" -msgstr "" - -# 3ad5a711a56b4490bbf695f11cb7e54b -#: ../../source/training/osm/Chapter-07-field-papers.rst:177 -msgid "" -"When your print is ready, Click :guilabel:`Download PDF`. The Field Paper " -"should begin downloading. If it loads in your browser, you may need to save " -"it by going to :menuselection:`File ‣ Save`." -msgstr "" - -# ed77ad8e9a5c4bb78d08d437eacbf672 -#: ../../source/training/osm/Chapter-07-field-papers.rst:183 -msgid "*Download Field Papers*" -msgstr "" - -# a7a6385e8f064118a3af7bf75e2c75cc -#: ../../source/training/osm/Chapter-07-field-papers.rst:185 -msgid "" -"When the download is finished, open the PDF file. Connect your computer to a " -"printer and print the page. If everything goes well, you should now have map " -"printed on paper." -msgstr "" - -# 2535d758ac474d539fb582ffad270d9f -#: ../../source/training/osm/Chapter-07-field-papers.rst:189 -msgid "7.4 Mapping with Field Papers" -msgstr "" - -# efcf0063e5d446ee917cbc34edf890c7 -#: ../../source/training/osm/Chapter-07-field-papers.rst:191 -msgid "" -"Take your Field Papers outside, and use it as a guide to walk and identify " -"new places that are not on the map." -msgstr "" - -# 8df96036d8d44f45b7987def9071fe9f -#: ../../source/training/osm/Chapter-07-field-papers.rst:193 -msgid "" -"Draw lines for roads, shapes for buildings, and so forth. Write notes about " -"each location directly on the map, or write numbers on the map that relate " -"to numbers in your notebook, where you can write more detailed information " -"about each object." -msgstr "" - -# 5d358da2eb7a4bf0a83396de20c03f14 -#: ../../source/training/osm/Chapter-07-field-papers.rst:197 -msgid "" -"When you are satisfied with your additions on the paper map, then you can " -"add them digitally into OpenStreetMap." -msgstr "" - -# e35160e0e2bb4965b1e5b34fa051252a -#: ../../source/training/osm/Chapter-07-field-papers.rst:200 -msgid "7.5 Scan and Upload Field Papers" -msgstr "" - -# cc22a317eb4743d1ac144a3a4c1cb522 -#: ../../source/training/osm/Chapter-07-field-papers.rst:202 -msgid "" -"Field Papers are very useful for mapping with nothing more than paper, but " -"they are not a 100% solution. We will still need to load our paper map into " -"JOSM, add our information digitally, and save our changes on OpenStreetMap." -msgstr "" - -# 1bd25157fd394316abd5dadaf78e9723 -#: ../../source/training/osm/Chapter-07-field-papers.rst:205 -msgid "" -"The first step is to scan your Field Papers into your computer. You can do " -"this by attaching a scanner to your computer, scanning the paper, and saving " -"it as an image file. If you don’t have a scanner, you can take a photography " -"of the paper, but you should be careful to take a very good photo. Make sure " -"that the paper is flat and your camera is directly in front of it. Be sure " -"to include the barcode in the image, as Field Papers will not work without " -"it. Here is an example of a scanned/photographed image:" -msgstr "" - -# df8f7313951243a48eefb8b20c637a51 -#: ../../source/training/osm/Chapter-07-field-papers.rst:216 -msgid "" -"Once you have your Field papers scanned and saved on the computer, open your " -"web browser and return to Field Papers website just as before." -msgstr "" - -# 9f5a16e8e3394881aab574aabdaa08fa -#: ../../source/training/osm/Chapter-07-field-papers.rst:219 -msgid "Click the :guilabel:`Upload` tab at the top of the page." -msgstr "" - -# 4644bfb5e4314de182b224e72742aaba -# 61e52a615a75453d826b1ba034e78f86 -#: ../../source/training/osm/Chapter-07-field-papers.rst:224 -#: ../../source/training/osm/Chapter-07-field-papers.rst:231 -msgid "*Upload Field Papers*" -msgstr "" - -# 62e724690e1b419ea91026e3ba80dc33 -#: ../../source/training/osm/Chapter-07-field-papers.rst:226 -msgid "" -"Click :guilabel:`Choose File` and navigate to the file where you scanned/" -"photographed your Field Papers." -msgstr "" - -# 1d443665d0e54a1f96f148ce96c496f5 -#: ../../source/training/osm/Chapter-07-field-papers.rst:233 -msgid "Click on :guilabel:`Upload`." -msgstr "" - -# 5f103e370cf04af4bbf970c11cb983b1 -#: ../../source/training/osm/Chapter-07-field-papers.rst:235 -msgid "" -"It may take a few minutes for your paper to upload, depending on the speed " -"of your connection. When the upload finished, you can see the page interface " -"as in the figure below:" -msgstr "" - -# 5847962f23144dfd817c2652089343fa -#: ../../source/training/osm/Chapter-07-field-papers.rst:241 -msgid "*The result from upload Field Papers*" -msgstr "" - -# 0aa84cfc249044cf9de2f4e4a2128c9b -#: ../../source/training/osm/Chapter-07-field-papers.rst:244 -msgid "7.6 Add Plugin Field Papers" -msgstr "" - -# 1ff4436156ae4d228d23ae8dcf92a8ce -#: ../../source/training/osm/Chapter-07-field-papers.rst:246 -msgid "" -"Before we open Field Papers in JOSM, we need install the Field Papers " -"plugin. The fieldpapers plugin enables JOSM to open Field Papers that have " -"been uploaded to the Field Papers website. The Field Papers will be used as " -"background, and we open it using the same procedure for opening satellite " -"imagery in JOSM." -msgstr "" - -# ee3da267c2a24a83839494729cb43754 -#: ../../source/training/osm/Chapter-07-field-papers.rst:250 -msgid "Open JOSM and go to :menuselection:`Edit --> Preferences`." -msgstr "" - -# f380636840d940be9ba9aa24221aeb0b -#: ../../source/training/osm/Chapter-07-field-papers.rst:252 -msgid "Click on :guilabel:`Plugins` tab." -msgstr "" - -# e44a9350c799476bb7d1697bc48075e3 -#: ../../source/training/osm/Chapter-07-field-papers.rst:254 -msgid "" -"Type :kbd:`fieldpapers` in the :guilabel:`Search` box. After you find it, " -"tick the fieldpapers box and Click :guilabel:`OK` as shown in the figure " -"below." -msgstr "" - -# dcb8bbd9af3a4aa99e7ea07139e74106 -#: ../../source/training/osm/Chapter-07-field-papers.rst:260 -msgid "*Field Papers Plugin*" -msgstr "" - -# 1adbad725f394c08b792b9567431bad5 -#: ../../source/training/osm/Chapter-07-field-papers.rst:262 -msgid "Restart JOSM so the plugin loads." -msgstr "" - -# c7bd8df9a9374b388508a4e2f287765b -#: ../../source/training/osm/Chapter-07-field-papers.rst:265 -msgid "7.7 Open Field Papers from JOSM" -msgstr "" - -# 0a116f88ba62475cabf0b46bfa19f03b -#: ../../source/training/osm/Chapter-07-field-papers.rst:267 -msgid "" -"Now you can add the results of your scanned Field Papers to JOSM and add " -"your information to OpenStreetMap. Return to the `Field Papers website " -"`_ in browser address bar." -msgstr "" - -# 2f4a9789504442f2b757cf26fcaaaa1c -#: ../../source/training/osm/Chapter-07-field-papers.rst:270 -msgid "" -"Click :guilabel:`Watch` – move your mouse to the bottom and click :guilabel:" -"`Snapshots` until your browser page looks like the figure below:" -msgstr "" - -# c60317050f644e22bf32719f8f4cfa9b -#: ../../source/training/osm/Chapter-07-field-papers.rst:276 -msgid "*List Field Papers in Snapshots*" -msgstr "" - -# ed9e1cbb1da24c1d91f9a5104fa9b16a -#: ../../source/training/osm/Chapter-07-field-papers.rst:278 -msgid "" -"To open Field Papers in JOSM, we need copy the photo ID from the Field " -"Papers that have been scanned. We can get the ID from the snapshot URL at " -"the Field Papers website. Click on the image until the url appears as shown " -"below, then copy the URL for example: *http://fieldpapers.org/snapshot.php?" -"id=fdsbgzns#17/-6.20049/106.82533*" -msgstr "" - -# 7b9d8a673e08470cb3e0e5a9a5627f42 -#: ../../source/training/osm/Chapter-07-field-papers.rst:285 -msgid "*URL from Snapshot Field Papers*" -msgstr "" - -# 299ec47fc982466d989f1b61b8c40cdc -#: ../../source/training/osm/Chapter-07-field-papers.rst:287 -msgid "Copy the URL by selecting it and pressing :kbd:`CTRL + C`." -msgstr "" - -# 920ab2b06e2b44dfbadf613507aa7058 -#: ../../source/training/osm/Chapter-07-field-papers.rst:289 -msgid "" -"Open JOSM and make sure the Field Papers plugin is listed in the menu on the " -"top of toolbar. Click :menuselection:`Field Papers ‣ Scanned Map`" -msgstr "" - -# 51368834dc514c1293709be80093d96a -#: ../../source/training/osm/Chapter-07-field-papers.rst:295 -msgid "*Field Papers Menu in JOSM*" -msgstr "" - -# 34556e571cd94724beaf7e7ed2a87c41 -#: ../../source/training/osm/Chapter-07-field-papers.rst:297 -msgid "" -"Then paste the URL that we have copied from the Field Papers site by " -"pressing :kbd:`Ctrl + V` on your keyboard." -msgstr "" - -# 997195ddc30d49bd979b53a4fd5c5677 -#: ../../source/training/osm/Chapter-07-field-papers.rst:302 -msgid "*Input Field Papers in JOSM*" -msgstr "" - -# 9451a9188c7040189f85824f8a25237d -#: ../../source/training/osm/Chapter-07-field-papers.rst:304 -msgid "Click :guilabel:`OK`." -msgstr "" - -# c4537eb60e2f45b2b50e6a4df984e5a5 -#: ../../source/training/osm/Chapter-07-field-papers.rst:306 -msgid "" -"If everything goes well, the Field Papers will open in JOSM. The next " -"module, we can see how to add objects from the scanned Field Papers to " -"OpenStreetMap." -msgstr "" - -# 91d2e36136304e9fad22d9288ae432f2 -#: ../../source/training/osm/Chapter-07-field-papers.rst:315 -msgid "" -"Also note that you can use scanned Field Papers in other online editors such " -"as ID Editor or Potlatch2 by clicking the link :guilabel:`Edit in ID` or :" -"guilabel:`Edit in Potlatch` on page Field Papers that have been scanned." -msgstr "" - -# b81612d9fe484e6d8ba6c194da26e7b4 -#: ../../source/training/osm/Chapter-07-field-papers.rst:322 -msgid "*Editing Field Papers with iD Editor*" -msgstr "" - -# da15a028df13403d9f5338b1d7652ee1 -#: ../../source/training/osm/Chapter-07-field-papers.rst:327 -msgid "*Interface Editing OSM data on iD Editor*" -msgstr "" - -# 89e2c6b018b44512b29dcca5dfa36b44 -#: ../../source/training/osm/Chapter-07-field-papers.rst:330 -msgid "Excercise!" -msgstr "" - -# 9c42a3b237b440358592dbf1cb2a85ce -#: ../../source/training/osm/Chapter-07-field-papers.rst:332 -msgid "" -"After you add your changes to OSM, they will be saved to the OSM servers. " -"When you want add some information to your map, you can print a Field Paper " -"that includes the changes you made. As this process is repeated, and you " -"acquire more details, the map will steadily improve!" -msgstr "" - -# a469f1987fa74e91973c3e69d87e8c92 -#: ../../source/training/osm/Chapter-07-field-papers.rst:337 -msgid "Summary" -msgstr "" - -# 8f3b3ab4f9d8428e92bf0a162a087f5f -#: ../../source/training/osm/Chapter-07-field-papers.rst:339 -msgid "" -"In this module, You have learned how to use Field Papers and how Field " -"Papers works as a data collection device. You have learned how to print, " -"mapping, and scans Field Paper, and how you can use them to improve " -"OpenStreetMap." -msgstr "" - -# 57b9783a7f584554880affa5f6d4bc7a -#: ../../source/training/osm/Chapter-07-field-papers.rst:343 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-08-conflict-resolution-in-osm.po b/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-08-conflict-resolution-in-osm.po deleted file mode 100644 index ed03c794..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-08-conflict-resolution-in-osm.po +++ /dev/null @@ -1,361 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# dd25d1d07c3e4ad48d6e3a49f9d29d3e -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:10 -msgid "Chapter 8: Conflict Resolution in OSM" -msgstr "" - -# 9e96445897404088bc35f7b5b0057f3c -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 6fcc1cfb2eb748a792a55885e854cf2f -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:14 -msgid "Finding and resolving conflicts in JOSM" -msgstr "" - -# 3124514c06e7445288e53a3dd7a9a15a -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:16 -msgid "Learning ways to avoid conflicts (using tasking manager)" -msgstr "" - -# 4187456375424e9e95dc2a6ee7dcdced -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:19 -msgid "8.1 Conflict in JOSM" -msgstr "" - -# e9303292e7694a688ffbb42458bf212f -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:21 -msgid "" -"When we are working with JOSM and about to upload the changes, sometimes we " -"encounter this message:" -msgstr "" - -# bb03c01bc03242be95a9ce88649b48ec -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:26 -msgid "" -"This happens when you download a group of data that includes a particular " -"point, let’s say point A. At the same time there are other people who also " -"downloaded point A, making changes to it and upload it back to OSM. Now when " -"you try to upload your changes (including point A) with your version, the " -"version is already different from the server version. This causes the server " -"to be confused on which version of Point A that is correct." -msgstr "" - -# cb161e2a67724db6941771120e310935 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:32 -msgid "8.1.1 Resolving a Conflict" -msgstr "" - -# e9ae38a24fa2440b8ac8c1e01fea3221 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:34 -msgid "" -"The process of resolving conflicts in JOSM is pretty simple, even though it " -"might be confusing at first. Basically, all conflicts that occur in JOSM " -"will leave you with two options – Your Version of the object and Their " -"Version of the object that is on the server. You just need to choose which " -"version you want to use, -your version or the new version in the server." -msgstr "" - -# 6355b5b92e7b4e8eafb63855c3ec49d5 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:39 -msgid "" -"When a conflict window appears, you might want to choose the “Syncronize " -"node ... only”, but this will only resolve the conflict that occurs on the " -"particular node. That is why it is better to choose the :guilabel:" -"`Synchronize Entire Dataset` option so that you can resolve the conflicts " -"all together." -msgstr "" - -# 43fa156845e64bcb896273edf8a91432 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:46 -msgid "" -"When you click on that button, there will be a new window that includes all " -"of the conflict details. The conflict messages might seems complicated, but " -"actually they are quite simple. You will know the type of conflict you " -"encounter by indicating where the symbol" -msgstr "" - -# 738690d7c80e47da98754c461ce78128 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:53 -msgid "" -"located. Conflict in this example indicating that it is on the properties, " -"such as location or the object’s position. You can see that the coordinate " -"and state are deleted." -msgstr "" - -# 04e0404a1b0947dba0aa1f142fae052d -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:56 -msgid "**Types of Conflict:**" -msgstr "" - -# 3d6f33ae9f07495992268fd31daf67ae -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:58 -msgid "**Properties:**  Object has been moved (coordinate) or deleted" -msgstr "" - -# 43c262e27eb140bebf8191a685307b22 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:60 -msgid "**Tag**:  Object has different tags on both version" -msgstr "" - -# 392909b703f849439e1a732c7aca8704 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:62 -msgid "**Node**:  There are differences on the node list" -msgstr "" - -# e36d439d7f0e4bc5ab5291aee72f9a48 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:64 -msgid "**Members**: There are differences regarding the members of a relation" -msgstr "" - -# e2c0927f827d426ca810e2a010c621cf -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:69 -msgid "" -"Conflict just shows up on two different edits at the same time. If there are " -"three or more different edits happen at the same time, chain of conflicts " -"will occurs. You can only solve two conflicts at the same time. You can " -"choose Your Version, Their Version, or merge the two changes." -msgstr "" - -# fc3cb8c6e3f3403f9d5204d46bd7a3eb -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:73 -msgid "" -"In this example, you don’t have option to merge the changes. Click on the :" -"guilabel:`My Version` column if you are sure that your version is the right " -"one. Click on :guilabel:`Their Version` if you think that other mapper’s " -"edit should be retained." -msgstr "" - -# cb7140beca92405b85168a373aba10d7 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:80 -msgid "" -"After you choose which version is best, click on the :guilabel:`Apply " -"Resolution` as shown in the figure above. After you finished resolving all " -"the conflicts, you can start to upload your changes." -msgstr "" - -# 760f562b14bc4ae4b7bde2727fced4dc -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:83 -msgid "" -"Do some more editing. Then click :guilabel:`Upload`. You will get a pop-up " -"like the one below that says:" -msgstr "" - -# 8fb0b1832a604c1189db3b8112a5b884 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:88 -msgid "On your Windows menu you have a **Conflict List Dialog**" -msgstr "" - -# b1ba6c6d2b694f01a66255a31901eb44 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:93 -msgid "" -"This window displays a list of conflicts. The total number of unresolved " -"conflicts is shown in the header. You can select or resolve a conflict by " -"clicking on it. This is useful when you have many conflicts to deal with." -msgstr "" - -# 6cb7fb3bfe7441de8bc53935bc7e0826 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:99 -msgid "" -"You cannot upload your changes until this list is empty and all conflicts " -"have been resolved." -msgstr "" - -# ad21a6f1124f455ab0db274541051baa -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:103 -msgid "8.1.2 Tips to Avoid Conflict" -msgstr "" - -# 72883ddea8e94b928a78b35d1ae19b3e -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:105 -msgid "**Upload frequently**" -msgstr "" - -# cfa8454fb18b419385e21481c0441f1a -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:107 -msgid "" -"To minimise the chance and number of conflicts it is important to upload " -"your edits regularly. Conflicts appear more frequently for those who tend to " -"save the area they are working on in their local computer, but wait a while " -"to upload their changes. It is best to download the area you are working on, " -"edit it and then immediately upload it. The longer the time between " -"downloading data and uploading changes to that data, the more likely it is " -"that someone has edited something in the meantime." -msgstr "" - -# bae130aa169b49df90d78bfa994f578d -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:113 -msgid "**ONLY edit in the area you download**" -msgstr "" - -# 358ae60a0aa7442083093d781745474a -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:115 -msgid "" -"Editing in the specific area you have downloaded minimises the risk of " -"conflict. Make sure you do not edit outside of the area that you have " -"downloaded. You can easily see the areas outside your download area in JOSM, " -"because the background is made up of diagonal lines instead of being solid " -"black." -msgstr "" - -# f5e3f3e4c5e14e9c901e43b098580353 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:123 -msgid "**Using the tasking manager**" -msgstr "" - -# a8b36fc9f1cd415992a540c6c5d2abae -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:125 -msgid "" -"The OSM Tasking Manager is a **tool** that mappers can use to **sort an area " -"into a grid**, and work together **to map in an organised way**. Apart from " -"being more organised, the tasking manager is also one way to avoid editing " -"conflicts, because it helps prevent more than one person from editing the " -"same area at the same time." -msgstr "" - -# aa67252f78da4c449bbf24b6ea1b01bc -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:130 -msgid "" -"The way the tasking manager operates is every mapper on a project selects " -"one box from a grid overlaid on the mapping project area. This box " -"represents a subsection of the mapping project area. When a mapper finishes " -"mapping all features in their box, they can mark it as complete. This way, a " -"team distributed in different areas can coordinate and work together to " -"finish mapping in that grid." -msgstr "" - -# 238509650217406d91c625a8c16b77ce -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:135 -msgid "To see how tasking manager works, let’s practice a bit more." -msgstr "" - -# 0399dac975d54b5fbde0e99844c47ff0 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:137 -msgid "" -"Open your internet browser and go to `tasks.hotosm.org `_. You will see a page like this:" -msgstr "" - -# 46652397d4de4ee394aa43b37ba21b61 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:143 -msgid "Click :guilabel:`Log in to OpenStreetMap`" -msgstr "" - -# 04caa58375bb48669034ea9ac1042cd1 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:148 -msgid "" -"Here you must agree to allow this application some access to your OSM " -"account. To do so, click :guilabel:`Save Changes`." -msgstr "" - -# 2ab52c0649d9447faf78839828ff2e1a -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:153 -msgid "" -"Now you will see a list of projects that currently active from many country " -"where they doing coordination for mapping activities." -msgstr "" - -# ecb035d3a7ae4281a54d475edd4767d2 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:158 -msgid "" -"Click on a project to see further information related to the task as shown " -"in the figure below." -msgstr "" - -# 1499bf14033f4ce6be203481e6e28f8e -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:163 -msgid "" -"This page shows you everything you need to know about the project. On the " -"left side of the page is a description of the mapping project and how it is " -"being organised. You can click on the different tabs to get more " -"information. On the right side is a grid showing the area to be mapped. Red " -"grid squares have been completed, green squares have been completed and " -"checked by another person, and the remaining squares still need to be mapped " -"or are being worked on." -msgstr "" - -# 42fdc06a32704b249298f513592757a7 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:169 -msgid "In the right side show an area that currently being map." -msgstr "" - -# 9d64d9cfe15048e4b512e55b80a3277b -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:171 -msgid "**Orange** box represent an area that already mapped" -msgstr "" - -# 7d53410fdfb1478db4222948962e2449 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:173 -msgid "" -"**Green** box represent an area that already mapped and validated by other " -"people" -msgstr "" - -# 56fbf81acbee447f919c69e9ba299d21 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:175 -msgid "" -"**Orange outline** box represent there is someone who currently map in that " -"area" -msgstr "" - -# 6c548dcde36a43cf8c2c2ee9f8e43469 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:177 -msgid "**Grey/empty** box represent the task is unfinished." -msgstr "" - -# 589a4e8127e4418aa850b3e35364ebb6 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:179 -msgid "" -"You can click on tab :guilabel:`Contribute`, with click on :guilabel:`Take a " -"task at random` if you want to pick task randomly or you can select a task " -"manually in slippy map and then click :guilabel:`Start Mapping`" -msgstr "" - -# c31ae046edc24d44995909e717bb2b8d -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:182 -msgid "" -"After that select :guilabel:`Edit with JOSM` (You need to open JOSM and " -"enable remote control first)" -msgstr "" - -# c90ea267797045c589ca96720be2d7b1 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:187 -msgid "" -"You can also open another editing software such as iD Editor, Potlach 2 and " -"Field Papers" -msgstr "" - -# 40c40f214f9f4fc8ab321e915f3a1e7f -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:189 -msgid "" -"After you finish editing and upload the data into OSM server, you need to go " -"back to the tasking manager and click :guilabel:`Mark task as done` making " -"sure to add a changeset comment for the edits you created. It’s important to " -"let other mappers know that you have finished the grid square. If you cannot " -"finish the task, click :guilabel:`Unlock it` so another mapper can finish " -"your task." -msgstr "" - -# cb83e955478940b698b17bf505de7de6 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:194 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-09-inserting-tag.po b/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-09-inserting-tag.po deleted file mode 100644 index 4dbb5a0f..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-09-inserting-tag.po +++ /dev/null @@ -1,305 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 1dc2b026be2b4674b7aae300cd094c51 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:10 -msgid "Chapter 9: Inserting Special Tag in JOSM" -msgstr "" - -# 3e6a48bc69ff452dbe557baa6bd36304 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 9e3627b4335844528254227ca52d4daf -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:14 -msgid "Be able to insert tag in iD Editor" -msgstr "" - -# fd8317e550634472840daca7f6c0c585 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:15 -msgid "Be able to insert tag in JOSM" -msgstr "" - -# 0445349bdbd74395b90e2396627cbaef -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:16 -msgid "Understanding standard tags that are used in OpenStreetMap" -msgstr "" - -# 2050de8897354fbc94311febc98959e8 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:18 -msgid "" -"You understand how to add data in OpenStreetMap and how to maintain the " -"quality of existing data so that we can contribute better. In this training " -"we want the objects that we mapped in OpenStreetMap to also appear as an " -"article in Wikipedia. Therefore we need to insert some special tags so that " -"later, articles based on mapped objects, can be uniformly displayed and in " -"accordance with applicable rules." -msgstr "" - -# 965efe769c844a90a129d406296b109c -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:24 -msgid "9.1 Inserting Tag in iD Editor" -msgstr "" - -# 149bbe539c7849cbb961b3393fae22d0 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:26 -msgid "" -"When we want to add special tags in iD Editor we must ensure that we are " -"connected to the Internet. Here are the steps for inserting a tag in iD " -"Editor." -msgstr "" - -# ecb43745b8544348adeb1d3b18b35a20 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:29 -msgid "Open the site: `www.openstreetmap.org `_" -msgstr "" - -# ebb35714e81349a1828c0a3941435865 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:31 -msgid ":guilabel:`Sign in` with your OSM account" -msgstr "" - -# 2ea8a27bc6a5426baea8dc1f0258fc5c -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:33 -msgid "Select edit with :guilabel:`iD Editor`" -msgstr "" - -# 43c9c3a83c854a43a84617972ff7f648 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:35 -msgid "Select object that you want to add the tag" -msgstr "" - -# c3dcc4fef1cb4c02bc190a5daa80daed -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:40 -msgid "*Display of tag in iD Editor*" -msgstr "" - -# f26d080f899e466a8ee0e192a9c1220d -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:42 -msgid "" -"Then select :guilabel:`All tags` and click :guilabel:`+` and add tag that " -"you want." -msgstr "" - -# d48a5c3bee0544e0b5ee3310a38ee2b0 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:47 -msgid "*Tag box in iD Editor*" -msgstr "" - -# 5e0596ca7db8476c976fda4899e3ca58 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:49 -msgid "After that, let’s :guilabel:`Save` your changes." -msgstr "" - -# 27f0c49ccd154b418215ac0d6ff25955 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:52 -msgid "9.2 Inserting Tag in JOSM" -msgstr "" - -# 28997d96e1044c028b823a062dcee4c8 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:54 -msgid "" -"Besides inserting a special tag to the object using iD Editor we can also " -"insert the tags to objects using JOSM. Basically inserting tags in JOSM " -"almost equal to iD Editor. Here are the steps:" -msgstr "" - -# 02b8977a50e24a8c9d764ce701e6301b -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:57 -msgid "Open JOSM in your computer/laptop" -msgstr "" - -# e2d1ad14cfdb48df8ef888081584330f -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:59 -msgid "Download area you want to edit" -msgstr "" - -# 766e90fc5f764f85a02f2cb190176fd2 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:61 -msgid "**Select the object** you want to add tags" -msgstr "" - -# d63d277d3c13448a9aa72e79bc787922 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:63 -msgid "" -"Then click :guilabel:`Add` on properties box on the right side as shown in " -"the figure below" -msgstr "" - -# 1108268ef1844010aa98ac63e8aabf21 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:68 -msgid "*Adding tag in JOSM*" -msgstr "" - -# 9b399147b8794bb9adf276f9f1a25970 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:70 -msgid "Type the **tag** that you want to use as shown in the figure below:" -msgstr "" - -# 6ef0d496edea46e78c9fe03eb79617cb -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:75 -msgid "*Adding key and value box*" -msgstr "" - -# 0b8bf7f5afa243b5a73810c04689e0af -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:77 -msgid "Then click :guilabel:`OK`" -msgstr "" - -# cdc4142b5be54ac1b3219395085050a2 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:80 -msgid "9.3 Presets Standardization" -msgstr "" - -# 7188bea5eb4d4abe9a0cf24c2c56d47e -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:81 -msgid "" -"OpenStreetMap allows all users to provide as many details as they can about " -"their map. This information can be imprinted on each object using the menu " -"presets available on OSM editor. We often find inconsistencies in the " -"provision of information on various objects. Therefore the presets help " -"standardization and uniformity of data." -msgstr "" - -# 4f97570e413543ba8d17c4cff0f9f57e -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:85 -msgid "Menu Presets are made for these purposes:" -msgstr "" - -# 2e19b2c53e5c4a5a92e61bf7c3ad1514 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:87 -msgid "To ensure the stability (consistency) of data" -msgstr "" - -# 142508b2192d408894417b6023598eac -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:89 -msgid "To facilitate the search and processing data" -msgstr "" - -# 4bab65bb0c834ebf877e1fd54091fd37 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:91 -msgid "As a benchmark in the provision of information through the presets" -msgstr "" - -# 92aa818f419445dbbfebabc1c3e2ba6d -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:93 -msgid "As a reference if you want to make improvements or validate the data" -msgstr "" - -# 084b253308c64706ac0c269b27ed5c0b -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:95 -msgid "Maximizing the use of existing Internal Presets in JOSM" -msgstr "" - -# 412774b36f2b41169679a04e17020fba -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:97 -msgid "Maximizing data visualization on OpenStreetMap website" -msgstr "" - -# ef7f7abc4a624748be2e31f7d44a7344 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:99 -msgid "" -"By using presets, standardization is enforced for all OSM users that use the " -"standard menu preset when editing the map. One of the advantages of using " -"internal presets that are already available in JOSM is the object " -"visualization will render correctly on the OSM website." -msgstr "" - -# c573970f013c46cb81ee3e896c074010 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:103 -msgid "" -"To see standardized features used in JOSM menu presets please visit the " -"following address: `http://wiki.openstreetmap.org/wiki/Id:Map_Features " -"`_" -msgstr "" - -# 7ac9a60edc2e4ea5b51e79d8af5f9911 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:109 -msgid "*Amenities list in Wiki OSM*" -msgstr "" - -# 1068f79ea4a244ba98022bc74fab1d3f -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:112 -msgid "Here are some informations that you should put into this project:" -msgstr "" - -# 203d612f6aeb491aae86e810f158cfd0 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:114 -msgid "**Building**" -msgstr "" - -# 7be8e1c6530545a98cbe14f18a2ebc7e -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:116 -msgid "Building name (key : name)" -msgstr "" - -# bfc19a82588b4584bb639fc7c5785cd4 -# 72782f2d24034d37b1341a6a6996c075 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:117 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:126 -msgid "Ownership (key : operator)" -msgstr "" - -# 4d9f6d2933574996ba97e5a5dbe9e523 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:118 -msgid "Building type (key : amenity)" -msgstr "" - -# 61cbb2c7b73a4230a31167b521f3b09e -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:119 -msgid "Building level (key : building:levels)" -msgstr "" - -# 4f4d4f7f98f34c37a9982c18bfaf73d4 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:120 -msgid "Address (key : addr:full)" -msgstr "" - -# f7f1437a8589465b88a8655a82d8d3fc -# 1069a95d5a32476c9cd0d6ba143cc1b3 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:121 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:128 -msgid "Reference (key : source:ref)" -msgstr "" - -# 7da629dd5df04d46a5a73bcfd62a26ab -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:123 -msgid "**Highway**" -msgstr "" - -# abb09597f86f4ae28c0617d628a966a3 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:125 -msgid "Highway name (key : name)" -msgstr "" - -# ae7d4ce9364e40eeb7a40fc7bb6737d2 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:127 -msgid "Highway type (key : highway)" -msgstr "" - -# 4dd98194e33a496ab8c461cf5db8247d -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:129 -msgid "Highway width (key : width)" -msgstr "" - -# b4be34e621af4f18af8f849c2d1c3a62 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:131 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-10-imagery-offset.po b/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-10-imagery-offset.po deleted file mode 100644 index 11300291..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-10-imagery-offset.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# cfe12206b86c4fc489b2e1dcae62c6a5 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:10 -msgid "Chapter 10: Imagery Offset" -msgstr "" - -# 6ad92495e25540d38d2fde6a5cf2d742 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 41be876735b649cd9046a2c90a1771fc -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:14 -msgid "Understanding definition of Imagery Offset" -msgstr "" - -# ed9ea07b930241cf97fdec7a51cc1ba4 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:15 -msgid "How to adjust the Imagery Offset" -msgstr "" - -# 6df098a94ca8444da175587578f51e83 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:18 -msgid "10.1 Overview of Imagery Offset" -msgstr "" - -# a501e0c165a5486ab0af00db19fdcab1 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:20 -msgid "" -"Using aerial imagery is the most widely used approach to mapping in " -"OpenStreetMap. Mappers typically use Bing Satellite, or imagery from another " -"provider as a background layer while mapping. We have already seen this in " -"previous sections." -msgstr "" - -# 494b1592175345fa95662c21996df8e3 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:24 -msgid "" -"Imagery providers usually do a pretty good job of georeferencing their " -"imagery, but occasionally the images can be out of position. This is " -"particularly true in hilly or mountainous areas, where it can be difficult " -"to stretch a flat image over an area of the Earth with many contours. When " -"you load imagery in JOSM, it can sometimes be ten meters or more from its " -"true position. This is called imagery offset." -msgstr "" - -# 838c0827a5c3461fbd8fcaa71cfdbfba -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:29 -msgid "" -"We’ve learned about two major ways of making maps – one is by utilizing " -"aerial imagery to identify features on the ground, and another is by using " -"GPS to record tracks and waypoints and then add them to OpenStreetMap. The " -"advantages of aerial imagery is obvious. It is easier for you to see the " -"whole picture, to observe various details from the image, consider your " -"knowledge of the area, and easily trace roads, buildings, and areas." -msgstr "" - -# f3c8c036d9f54fd7afc3a2614da7c5b3 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:33 -msgid "" -"One key advantage of GPS, is that it doesn’t suffer from offset like " -"imagery. A GPS will always provide you with a correct latitude and " -"longitude. The only exception is when the satellite signals are interrupted " -"by high buildings and mountains, but in this case it is easy to recognize " -"the error. Showing the GPS track in this image, compared with Bing aerial " -"imagery layer in the below figure:" -msgstr "" - -# 3fe88570202c4e86837c50b37c3774dc -# e0b7ca9db0d844bcadcbd975cf806a1c -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:40 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:70 -msgid "*Imagery Offset*" -msgstr "" - -# 79993d163a2d4cfb882321d57de7a901 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:42 -msgid "" -"It is clear that the GPS track is likely to be accurate and the satellite " -"imagery beneath it is out of place." -msgstr "" - -# 397ecf05f0cd4e458beeb8de273c765e -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:44 -msgid "" -"So now we must ask, “if the imagery may be out the place, how can we still " -"use it and make accurate maps?”" -msgstr "" - -# e7e0d7da189945a5816112c55d8ff23c -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:47 -msgid "10.2 CORRECTING IMAGERY OFFSET" -msgstr "" - -# a3299a239fd044c69c87e0dd7a431a0e -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:49 -msgid "" -"The best references for adjusting imagery are GPS tracks that follow roads. " -"And the more GPS tracks that you have to reference, the more accurate you " -"will be able to align your imagery. Since OpenStreetMap users often upload " -"their GPS tracks to the OSM database, we can download them and use them to " -"align our imagery." -msgstr "" - -# 09df8cf4f55a4f16bbe157cbe02857a0 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:53 -msgid "Click on the :guilabel:`Download` button." -msgstr "" - -# f73f57cacebc4b609825736d37685f06 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:58 -msgid "" -"Check the box next to :guilabel:`Raw GPS Data` near the top of the Download " -"window. Select your area and click :guilabel:`Download`." -msgstr "" - -# 0f9ff72b4350463cb455e1e966cd5155 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:64 -msgid "" -"This will download an additional layer to JOSM containing GPS tracks. " -"Depending on how many tracks have been uploaded by OSM users, you may see " -"few tracks (or even no tracks):" -msgstr "" - -# 55df30b222e94c5daf65b81037782287 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:72 -msgid "" -"To adjust an imagery layer, click on the :guilabel:`Adjust imagery offset` " -"button at the top of JOSM." -msgstr "" - -# e0b0e8d3a88e46278c8429fb01a70675 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:77 -msgid "" -"Ignoring the box that pops up, use your mouse to drag the imagery layer so " -"that it aligns correctly with the GPS tracks. The GPS tracks should line up " -"with the roads on the imagery as closely as possible. You will see the " -"offset numbers in the box change." -msgstr "" - -# dea49b733bc549138dbfac7055b9a2c0 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:84 -msgid "*Setting Imagery Offset*" -msgstr "" - -# a1119cf0743e4777b967951caf628d3c -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:86 -msgid "" -"If you like, you can save these offset settings by entering a bookmark name " -"and then clicking :guilabel:`OK`. You can then automatically apply the same " -"settings later by going to :menuselection:`Imagery ‣ Imagery Offset` and " -"clicking on your bookmark." -msgstr "" - -# 432054244a4141faaa18dc72772e4a91 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:90 -msgid "" -"If you do not want to save the offset, simply click :guilabel:`OK` without " -"entering a bookmark name." -msgstr "" - -# 75b78d124e0d4e7da3c7ba3c436ad98d -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:92 -msgid "" -"What if there are no GPS tracks on OpenStreetMap, and you don’t have a GPS? " -"Without GPS tracks, it is difficult to align imagery. If it is a relatively " -"empty area (not much mapped), you might choose to simply use the imagery as " -"it is and correct the data later." -msgstr "" - -# 2f709f179c3442c8a708988f87a1cb55 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:96 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-11-export-osm-data.po b/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-11-export-osm-data.po deleted file mode 100644 index 9947ee11..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/osm/Chapter-11-export-osm-data.po +++ /dev/null @@ -1,229 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# ff1336339ed540078f2ce5d73dee2582 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:10 -msgid "Chapter 11: Export OSM data" -msgstr "" - -# e8f22071b0954a3192bfb37fa5877a32 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:12 -msgid "**Learning Objectives:**" -msgstr "" - -# b823dbf199cf4e2bbfe0d778f0a1f775 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:14 -msgid "Learn how to use HOT Export" -msgstr "" - -# 8b397142d23b40ce84dada6cab44b341 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:15 -msgid "Learn how to use overpass turbo" -msgstr "" - -# 00d3cf631e1b49a18dd1c51b554558e0 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:17 -msgid "" -"After you learn how to add and edit in *OpenStreetMap (OSM)*, you may want " -"to export OSM data as back-up or for processing using GIS software such as " -"**QGIS** `www.qgis.org `_. In this chapter we will " -"learn how to use nay" -msgstr "" - -# 2d41fbcd1f1945e7873c7e47f1e5a656 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:23 -msgid "11.1 Hot Export Tool" -msgstr "" - -# f21fbe6e379a4f9a995501489d30c631 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:25 -msgid "" -"Open your browser and type `export.hotosom.org `_ " -"and it will show like this:" -msgstr "" - -# 8634f8ea881f4935bc3bb857e29f2656 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:30 -msgid "*Hot Export front page*" -msgstr "" - -# 5c8c3efa58684edb8d03b6d9bd0b29fb -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:32 -msgid "" -"To get data from this website, you will need to create an account first, if " -"you do not already have one. The first step is click :guilabel:`Create " -"Account` in the bottom left side of HOT Export page. After that fill in your " -"email, password and password confirmation. Then click :guilabel:`Create " -"Account` and open your email to confirm the email from HOT Export." -msgstr "" - -# cda1eb74a0394631a611ede895ee94fc -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:41 -msgid "*Screenshot in Create Account Page*" -msgstr "" - -# 5239d4266fe2451899a333231b087ab1 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:43 -msgid "" -"After you confirm the email, login with your account. Fill in your email and " -"password and then click :guilabel:`Log in`." -msgstr "" - -# 21fc5a3ea9524c759cfaf4eb5467416b -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:46 -msgid "After you successfully log in to the website, click :guilabel:`New Job`" -msgstr "" - -# d2fedf20024c4d7bbbc8fdc3a16aaa76 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:48 -msgid "" -"Fill in the name and job description. Then define your area of interest in " -"the box that displays OpenStreetMap. From this box you can create an area of " -"interest for export. Click :guilabel:`Select Area` and draw a box around the " -"area, The box can be manipulated by dragging its corner and centre. When you " -"finish, click :guilabel:`Create Job`." -msgstr "" - -# 5c52d582ea4a45ba90f0772c2278cacd -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:58 -msgid "*Create New Job in HOT Export*" -msgstr "" - -# 2b40541c7e724fef96c1677b53802b6b -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:60 -msgid "" -"Next, you need to fill **select preset** field as shown in the figure below, " -"or you can ignore it with select :guilabel:`no file` if preset file that you " -"need is not available. For translation file, you can fill with :guilabel:`no " -"file` if you don’t want to translate the preset. Click :guilabel:`Save` to " -"continue." -msgstr "" - -# 36a5db70312a46b79d7e7ada239c92c0 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:68 -msgid "*Setting data configuration in HOT Export*" -msgstr "" - -# 649f4d939e0a4acb93dd55dec859e317 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:70 -msgid "" -"The server will process your request. The progress for your request is " -"depend on how big the area you choose and server capacity. When the process " -"is complete, You can choose file format that you want, for example ESRI " -"Shapefile. All the request for HOT Export can be found in :guilabel:`Job` " -"page." -msgstr "" - -# 3890dcbed835483bb55e899efbead50c -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:80 -msgid "11.2 Overpass-Turbo" -msgstr "" - -# 904297ad5300453eb501356fd4b17e5a -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:82 -msgid "" -"If you only want specific object in OSM data, the right choice is to use " -"`Overpass Turbo `_. For example you only need " -"schools data in Jakarta and surrounding area. To download OpenStreetMap data " -"using Overpass Turbo you can follow this step:" -msgstr "" - -# d6dbdee17963411d8b0700038eb29bea -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:86 -msgid "Point your web browser to `Overpass Turbo `_" -msgstr "" - -# 3332c99cc7d6499c80829779a876fa1f -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:88 -msgid "" -"You can start find to your area of interest in OpenStreetMap using the " -"Slippy Map in the right side. You can drag and zoom in map with **(+)** and " -"zoom out map using **(-)**. You can also search directly with typing in " -"search box as shown in the Jakarta example shown below. There will be " -"several arear related to Jakarta and you can choose the right area that you " -"want to download." -msgstr "" - -# 5130cb3708ca4f1b9b2be9cbba95e8ae -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:97 -msgid "" -"If you don’t want to download the larger area you can resize the area and " -"draw a border by yourself with click :guilabel:`manually select box` from " -"the toolbar in the left side of the map. Draw a box in the slippy map to " -"define the target area." -msgstr "" - -# 12cc477bd29d4be1b63add2cc7a70ffb -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:104 -msgid "*Select area manually*" -msgstr "" - -# f365d143d87d40868d072839eb8e464e -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:106 -msgid "" -"To download OSM data specific to one feature, for example schools, click :" -"guilabel:`Wizard` menu. In the Wizard menu, you can filter your data with " -"using `JOSN `_ query, in the simple way it can be a " -"tag contains Key and Value, for example if you want to download schools " -"type :kbd:`amenity=school` in :guilabel:`Query Wizard`." -msgstr "" - -# e255b03172394f04a33571b9dd153777 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:114 -msgid "*Query box in Overpass Turbo*" -msgstr "" - -# bb044db5400b44a2b18b758b5194db70 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:116 -msgid "" -"Click :guilabel:`Build and Run Query`, wait for a moment until school " -"objects are displayed in the area of interest. You should see something like " -"the screenshot below which shows all the school objects in OSM in the area " -"of interest." -msgstr "" - -# c9166bb4327c4eb2b143bb53f3293f55 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:122 -msgid "" -"If you only want data type in point/node format, you can specify that in the " -"query box in the left side. To do this, erase school with way and relation " -"type, and then click :guilabel:`Run` menu in the top left side. The result " -"will be a school objects with only point/node data type filtered. You can " -"also add more detailed query in the query box and then click :guilabel:`Run`." -msgstr "" - -# 3a42cea00dca42e48d921403b4a2a6fe -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:131 -msgid "*Erase several query in query box*" -msgstr "" - -# 317f8554580a49a8b3059ba07b343936 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:133 -msgid "" -"To download the schools data you can click Export menu, there are several " -"data formats that you can choose such as **geoJSON, GPX, KML, .osm**, etc. " -"If you not familiar with geoJSON, you can select :guilabel:`level0` to " -"download .osm data format that you can use later with QGIS or other mapping " -"software." -msgstr "" - -# a46c7d7e78e34e789590cf05c295e5d6 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:140 -msgid "*Export Overpass Turbo result*" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/osm/index.po b/docs/i18n/en/LC_MESSAGES/training/osm/index.po deleted file mode 100644 index 2baa1e21..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/osm/index.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 8f51d64d27674d949373d14860805431 -#: ../../source/training/osm/index.rst:8 -msgid "Data Collection Using OpenStreetMap" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-00-Preface.po b/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-00-Preface.po deleted file mode 100644 index 9b846767..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-00-Preface.po +++ /dev/null @@ -1,231 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 6840389a11ae47bdbb01673f10c9f558 -# 7e89ac9a24934bc0a1cbc5ca5fe1dd53 -#: ../../source/training/qgis/Chapter-00-Preface.rst:8 -#: ../../source/training/qgis/Chapter-00-Preface.rst:98 -msgid "Preface" -msgstr "" - -# 937467e00786475bbbe655a65232c6f3 -#: ../../source/training/qgis/Chapter-00-Preface.rst:11 -msgid "Disclaimer" -msgstr "" - -# 6c76bf91c8454d1584bb4bbd025c9032 -#: ../../source/training/qgis/Chapter-00-Preface.rst:13 -msgid "" -"This document is initial draft and still in reviewing phase by these parties:" -msgstr "" - -# 54ff8e02a89845f5bbc709adc7384df5 -#: ../../source/training/qgis/Chapter-00-Preface.rst:15 -msgid "Badan Nasional Penanggulangan Bencana (BNPB)" -msgstr "" - -# 15fefec5c9704efa8225eae057f561f3 -#: ../../source/training/qgis/Chapter-00-Preface.rst:17 -msgid "Australia-Indonesia Facility for Disaster Reduction (AIFDR-DFAT)" -msgstr "" - -# ab8271c2a71d4a4baa27605fe2bcbaee -#: ../../source/training/qgis/Chapter-00-Preface.rst:19 -msgid "Humanitarian OpenStreetMap Team (HOT)" -msgstr "" - -# 5d15ec37d58e4063b3e8097080c5a658 -#: ../../source/training/qgis/Chapter-00-Preface.rst:21 -msgid "" -"All contents and materials on this document possibly changed without public " -"notice." -msgstr "" - -# 23714405f767452b843b40263397ae65 -#: ../../source/training/qgis/Chapter-00-Preface.rst:24 -msgid "License" -msgstr "" - -# 7855f996ce5040cf9a837f54ac14eb30 -#: ../../source/training/qgis/Chapter-00-Preface.rst:30 -msgid "" -"All contents and materials on this document is licensed as Creative Commons" -msgstr "" - -# 989b482689e94dda9d73ffae84b7f16c -#: ../../source/training/qgis/Chapter-00-Preface.rst:32 -msgid "Attribution Australia (CCbyA)." -msgstr "" - -# 247545ca285a496db71681ee5ce53f52 -#: ../../source/training/qgis/Chapter-00-Preface.rst:34 -msgid "You are free:" -msgstr "" - -# 9bf2a10d84554c08b13a629e44e4a6c1 -#: ../../source/training/qgis/Chapter-00-Preface.rst:36 -msgid "to copy, distribute, display, and perform the work" -msgstr "" - -# b8461370603042428e8e6b44a523ac7f -#: ../../source/training/qgis/Chapter-00-Preface.rst:38 -msgid "to make derivative works" -msgstr "" - -# 578917a5a27940c08602f3a3ad4dc9c3 -#: ../../source/training/qgis/Chapter-00-Preface.rst:40 -msgid "to make commercial use of the work" -msgstr "" - -# 4b937b1bbb9747edafaecc6c773dafa6 -#: ../../source/training/qgis/Chapter-00-Preface.rst:42 -msgid "You must give the original author credit." -msgstr "" - -# 48159265cd134c72b6bf88d5418d53f4 -#: ../../source/training/qgis/Chapter-00-Preface.rst:44 -msgid "More information about CCbyA License:" -msgstr "" - -# 2ed296bbafbf4806919968be15e7af33 -#: ../../source/training/qgis/Chapter-00-Preface.rst:46 -msgid "http://creativecommons.org/licenses/by/3.0/au/deed.en_GB" -msgstr "" - -# 45a8df61bcb945ac9b05bf7fbdc95213 -#: ../../source/training/qgis/Chapter-00-Preface.rst:49 -msgid "About Us" -msgstr "" - -# 6b532545c806452b9f139fd880759feb -#: ../../source/training/qgis/Chapter-00-Preface.rst:51 -msgid "**Badan Nasional Penanggulangan Bencana (BNPB)**" -msgstr "" - -# c640ecf7f6814cd296fda6900e1fd1e0 -#: ../../source/training/qgis/Chapter-00-Preface.rst:56 -msgid "" -"BNPB is Indonesia’s National Disaster Management Agency. BNPB is a non-" -"departmental ministerial-level government agency, tasked with providing " -"guidance and direction to the efforts of disaster management that includes " -"disaster prevention, emergency response, rehabilitation, and reconstruction " -"in a fair and equal. National Disaster Management Agency has the function as " -"a policy maker, formulator, and Refugee (IDP) management to act quickly and " -"appropriately and effectively and efficiently; and coordinating the " -"implementation of disaster management activities in a planned, integrated, " -"and comprehensive." -msgstr "" - -# a724440e023f43a08837c4bd4e306412 -#: ../../source/training/qgis/Chapter-00-Preface.rst:64 -msgid "http://bnpb.go.id" -msgstr "" - -# bb5fcbd8106a428980653d92db1ed201 -#: ../../source/training/qgis/Chapter-00-Preface.rst:66 -msgid "**Australia-Indonesia Facility for Disaster Reduction (AIFDR)**" -msgstr "" - -# 701c01671ab44f10b230fe6af8c7a898 -#: ../../source/training/qgis/Chapter-00-Preface.rst:71 -msgid "" -"The Australia-Indonesia Facility for Disaster Reduction (AIFDR) is a joint " -"initiative between the governments of Australia and Indonesia. We work to " -"strengthen Indonesia's ability to reduce the impact of disasters. The " -"Australian and Indonesian governments at a special ceremony on 15 July 2010 " -"launched the Australia-Indonesia facility. The launch marks an important " -"event in the strong relationship now shared by both countries and their " -"united commitment to better prepare for and respond to natural disasters in " -"Indonesia." -msgstr "" - -# 188cc91e8b034773ac5c4004bb17b50d -#: ../../source/training/qgis/Chapter-00-Preface.rst:78 -msgid "http://aifdr.org" -msgstr "" - -# c89369dbb97f439daac81f063aea99d2 -#: ../../source/training/qgis/Chapter-00-Preface.rst:80 -msgid "**Humanitarian OpenStreetMap Team (HOT)**" -msgstr "" - -# af49265ef6fc4728968eb1c6c26866c0 -#: ../../source/training/qgis/Chapter-00-Preface.rst:85 -msgid "" -"Free, collaborative maps are uniquely valuable to humanitarian work, " -"especially in places where base map data is often scarce, out of date, or " -"rapidly changing. OpenStreetMap is a web project to create a free and open " -"map of the entire world, built entirely by volunteers surveying with GPS, " -"digitizing aerial imagery, and collecting and liberating existing public " -"sources of geographic data. The Humanitarian OpenStreetMap Team (HOT) is an " -"initiative to apply the principles and activities of open source and open " -"data sharing towards humanitarian response and economic development." -msgstr "" - -# 1f365f241c3b4c18b77d10dd849c7f2f -#: ../../source/training/qgis/Chapter-00-Preface.rst:93 -msgid "http://hot.openstreetmap.org" -msgstr "" - -# 3755eee63d0e46b88f9083bdc977a70b -#: ../../source/training/qgis/Chapter-00-Preface.rst:100 -msgid "" -"A Geographic Information System (GIS) is a system designed to enable people " -"to work with data related to places on the Earth. A GIS allows the creation, " -"storage, manipulation, and analysis of geographic data. GIS is a very broad " -"concept and can involve complex hardware and software. But for most people’s " -"purposes, a simple GIS software application is all that is required" -msgstr "" - -# 89c2a4047c864a3894cc23033b01a9f0 -#: ../../source/training/qgis/Chapter-00-Preface.rst:105 -msgid "" -"GIS in general can be used for a variety of fields, including in disaster " -"management. Unfortunately, the GIS software currently on the market are very " -"expensive. Therefore we make a guide how to analyze the data with GIS " -"software, which is free and open for the purposes of disaster management, " -"particularly in the preparation of contingency plans." -msgstr "" - -# 2b8fd8da873d425a8789a329e443bad2 -#: ../../source/training/qgis/Chapter-00-Preface.rst:111 -msgid "" -"The software used is QGIS (QGIS) is a Geographic Information System (GIS) " -"that is user-friendly and open-source. InaSAFE is a free software and open-" -"source, that can create realistic scenario of natural disasters impact for " -"planning, preparation, and better response. InaSAFE is developed by AIFDR " -"through consultation with BNPB." -msgstr "" - -# a839d34daea64d29bb786e00581252c6 -#: ../../source/training/qgis/Chapter-00-Preface.rst:115 -msgid "" -"Analyzing Data with QGIS and InaSAFE is designed to complement the previous " -"unit to collect spatial data with OpenStreetMap for disaster management." -msgstr "" - -# accc91bb308e4bdf84b7ebc470225e2f -#: ../../source/training/qgis/Chapter-00-Preface.rst:118 -msgid "We hope it can be useful." -msgstr "" - -# 9b47bd80a1de4ba3a0dcd7187dedbf92 -#: ../../source/training/qgis/Chapter-00-Preface.rst:120 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-01-GIS_for_Disaster_Management.po b/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-01-GIS_for_Disaster_Management.po deleted file mode 100644 index d3d25cc3..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-01-GIS_for_Disaster_Management.po +++ /dev/null @@ -1,134 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# e40f0552c09f4aeca84676cfa5316ced -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:10 -msgid "Chapter 1: GIS for Disaster Management" -msgstr "" - -# a9de71f1654648aa98079f2462c896eb -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:12 -msgid "**Learning Objectives:**" -msgstr "" - -# d85efa9e7f204b76a7c3ddc8d8295c99 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:14 -msgid "Distinguishing between data and information" -msgstr "" - -# 764465c5907f4141845ca29ddc4d2e29 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:16 -msgid "Understand the concept of GIS" -msgstr "" - -# ffdf544c96484a5d98560a9e8c208a80 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:19 -msgid "1.1 The difference between data and information" -msgstr "" - -# c2fd2d63d6914d86a1f5ef94a02bfe3d -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:21 -msgid "" -"In the first unit, we looked at OpenStreetMap and how to collect data and " -"add it to the worldwide map. But what do we mean when we say that we collect " -"data? Is this the same as collecting information? Well, not exactly." -msgstr "" - -# 0ec20eb61b9541c69c8d7c24a193eb19 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:24 -msgid "" -"Data are raw facts. Information is data that is organised and presented in " -"such a way as to be useful. In other words, when we go mapping to collect " -"locations and facts about those locations, we have collected data - we have " -"collected facts. To turn this data into information, we must make sense of " -"it. We must present the data in such a way that it can be easily understood." -msgstr "" - -# b667e319bd8a4ecd8d0cb8a06dea08ca -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:29 -msgid "" -"OSM data is already made informative in an obvious way. The map that you see " -"when you visit the OSM website is there because a computer has processed all " -"of the OSM data and used it to paint a nice looking map. The map is " -"informative, and useful for us to see where places are in relation to us." -msgstr "" - -# 06546b30ddc14104b02ecb3714d8044b -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:34 -msgid "" -"In this unit we will take this even further. We will learn how to perform " -"geographic data analysis, and thereby learn how to make our data more " -"useful, informative and effective." -msgstr "" - -# 3e0967ec58004b0eafee89bec3cb7092 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:38 -msgid "1.2 Terminology of Geographic Information System (GIS)" -msgstr "" - -# 5b636b9b5e414c00a4dbb01820223899 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:40 -msgid "" -"A Geographic Information System (GIS) is a system designed to enable people " -"to work with data related to places on the Earth. A GIS allows the creation, " -"storage, manipulation, and analysis of geographic data. GIS is a very broad " -"concept and can involve complex hardware and software. But for most people’s " -"purposes, a simple GIS software application is all that is required, and in " -"this unit we will learn how to use the excellent open-source application, " -"QGIS." -msgstr "" - -# 05cee11b20034fec8f49673b47c2fdeb -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:46 -msgid "" -"GIS provides different ways to analyse data. It enables us to ask complex " -"questions, such as:" -msgstr "" - -# 07aa9ddf9ccc4bd69441f57cb98ca91c -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:48 -msgid "*Where are all schools with more than 100 students?*" -msgstr "" - -# 466d5c6750974acb84dff4ee6b6c0f87 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:50 -msgid "*How many children live in a certain district?*" -msgstr "" - -# 76e01e12c0604c55b2856be045fc97dd -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:52 -msgid "*How many women live within 500 meters of a certain hospital?*" -msgstr "" - -# 3fcf81e620c24f4cb8bf2d0df72fca1e -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:54 -msgid "*What is the shortest walking path from a given point to a hospital?*" -msgstr "" - -# e4d9f54666754ac8b64130c820f2f29f -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:56 -msgid "" -"GIS helps us to answer these sorts of questions. In the previous unit we " -"learned how to collect data, and in this unit we will see how to analyse it." -msgstr "" - -# 308e68d86994422196ab3ed2bcf33885 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:59 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.po b/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.po deleted file mode 100644 index bfc55ca6..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.po +++ /dev/null @@ -1,236 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# a16541491a3e4e01a14ee19cbfd90f51 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:10 -msgid "Chapter 2: QGIS and InaSAFE in Disaster Management" -msgstr "" - -# 7deaa4f96f2d423abcff729a3c4a0745 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:12 -msgid "**Learning Objective:**" -msgstr "" - -# 7b35477b425c4aaaa71cac4ba63f29bf -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:14 -msgid "Understand the role of GIS in disaster management" -msgstr "" - -# 12585697627847b8be5e6583c9bfabf2 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:16 -msgid "Understand the importance of data" -msgstr "" - -# 9aa8f3d2edb54c489ab5f9a80d8de939 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:18 -msgid "Understand the benefits of QGIS/InaSAFE in disaster management." -msgstr "" - -# a25403fe89ea4b52a798e2f23405ad2c -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:21 -msgid "2.1 GIS for Disaster Management" -msgstr "" - -# 0a266ca2e2a9415b853247c1ab6bf09c -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:23 -msgid "" -"GIS has an important role in disaster management. A disaster management is " -"intended to manage and support both government and community preparedness, " -"mitigation, prevention, response and recovery of a potentially hazardous " -"event, such as an earthquake or tsunami. The purpose of this disaster " -"management is to minimize casualties and losses in case of such an event." -msgstr "" - -# 06f5655b5b58451299a02a47f142cbee -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:29 -msgid "" -"Before contemplating a disaster management, one must first consider " -"potential disaster scenarios. A good disaster management will likely answer " -"questions such as:" -msgstr "" - -# 32e83e770a614c838294610b57760614 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:32 -msgid "*What sort of disaster is likely to happen?*" -msgstr "" - -# c29a5fec6d074b219be5373d726866c4 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:34 -msgid "*How we prevent the disaster?*" -msgstr "" - -# cd6685c07ad74a2aab976d321285701a -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:36 -msgid "*How widespread will the impact be?*" -msgstr "" - -# 4f066a97650e47da8250d92726c539bd -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:38 -msgid "*Who is responsible for helping?*" -msgstr "" - -# d8a00903a6dd441d99a7689ef6261c28 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:40 -msgid "*What should be given as aid?*" -msgstr "" - -# 7d5800c186954e4da3edf1ed43117610 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:42 -msgid "*What should we do when the disaster already happen?*" -msgstr "" - -# ec34eb1355ed46bcb2471c58ff945847 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:44 -msgid "*Where are the priority areas?*" -msgstr "" - -# b848494d2568410fb21fbbc6c9fe182b -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:46 -msgid "" -"In other words, disaster management answers the question, **who does what, " -"where and when?**" -msgstr "" - -# 6d1d3fa219a24d949d7cbdf6e0493e73 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:48 -msgid "" -"A Geographic Information System is able to help planners answer these " -"questions, especially the important spatial elements of contingency " -"planning. GIS may be used to model hazardous events so that they can be " -"better predicted." -msgstr "" - -# 6ce16c70bc04429ba3ce77288788c862 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:52 -msgid "" -"It may be used to plan evacuation routes prior to a disaster. When a " -"disaster occurs, GIS may also play a role in the emergency response phase. " -"It can be used to map the area affected and position of refugee camps, so " -"that helpers can be directed to the most useful locations to aid those " -"affected. After a disaster, GIS may also be used to plan for rehabilitation " -"and reconstruction. Overall, GIS helps to perform analysis of a disaster, " -"damage and losses caused, and opportunities for reducing risk." -msgstr "" - -# 0d7e8086ff6a4d01b406f76a7b906a50 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:60 -msgid "2.2 The Importance of Data" -msgstr "" - -# a403a9a5a60d4da0a7030b1af3ee8840 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:62 -msgid "" -"We previously learned how to start collecting exposure data. When thinking " -"about GIS it is important to remember that if your data is bad, your " -"analysis will be bad also. Hence the more detailed and accurate your data " -"is, the better your analysis and action may be during a disaster." -msgstr "" - -# 39f532ea7e614ba18334b82f5fb046dd -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:67 -msgid "" -"As we shall see in this unit, some data may be obtained from various " -"agencies that specialize in certain kinds of data. For example, we will " -"obtain our hazard models (hazard data) from various organizations that " -"specialize in this. As for exposure data, some data we may find through " -"agencies, such as population data. For infrastructure data, collecting data " -"at a community level is key, which is why in the previous unit we learned " -"how to utilize the crowd-sourced OpenStreetMap platform." -msgstr "" - -# b77a325070114388b301a44c4a0ecda4 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:74 -msgid "2.3 QGIS and InaSAFE" -msgstr "" - -# b37eda5561f14b6ebc2ab399a08887a3 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:76 -msgid "" -"QGIS is a user-friendly open-source Geographic Information System (GIS). It " -"runs on Windows, Mac OSX, and Linux. QGIS provides a continually growing " -"number of capabilities provided by core functions and plugins. You can " -"visualize, manage, edit, analyse data and compose printable maps." -msgstr "" - -# b222aa1d536b44ee91b9eb11d89db16f -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:80 -msgid "QGIS is great because:" -msgstr "" - -# d3c12ff0bd824437bfb1c7d4f54396d4 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:82 -msgid "It’s completely free. It doesn’t cost anything." -msgstr "" - -# ec532d1762cb478ab60acb420288f03b -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:85 -msgid "" -"It’s free, as in liberty. If you think a feature is missing, you can sponsor " -"the development of a feature," -msgstr "" - -# 42346b0839de4c8bbdef8c478a8e21ba -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:85 -msgid "or add it yourself if you are familiar with programming." -msgstr "" - -# b4cb22eb322d4ed485a7a593842b1601 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:87 -msgid "" -"It’s constantly developing and improving. Because many people continue " -"adding features, it keeps getting better." -msgstr "" - -# 775bb80cb9f448a192a9c0590a0919ef -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:90 -msgid "" -"Extensive help and documentation is available. If you have problems you can " -"always turn to the software documentation," -msgstr "" - -# de418582c8044151a1839dd3ff9b6adf -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:90 -msgid "other QGIS users, or even the developers." -msgstr "" - -# 38869ea2599d4f6b9c22ff011031168a -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:92 -msgid "" -"QGIS has many **plugins** which extend the core functionality of the " -"software. One of these plugins is InaSAFE, which can be used to analyse the " -"impact of a disaster and create a list of actions needed to be taken when a " -"disaster occurs. QGIS and InaSAFE can also help to determine the location of " -"ideal places of refuge, evacuation routes, areas likely to be damaged, and " -"more." -msgstr "" - -# 66f5ed3eb0fd467780f6026097392ed2 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:101 -msgid "" -"InaSAFE provides overviews of potential disaster scenarios, of their " -"outcomes, as well as maps which can aid decision makers when disaster " -"strikes. Maps are an effective way of communicating disaster impact, by " -"showing in a simple way the areas of damage, such as the extent of flood-" -"affected areas and buildings affected by a flood." -msgstr "" - -# 0f6ee9d78b604f1dacf7d59777bf7504 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:106 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-03-Basic_QGIS.po b/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-03-Basic_QGIS.po deleted file mode 100644 index b2a0dc62..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-03-Basic_QGIS.po +++ /dev/null @@ -1,837 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# c45771c889b14dd7bdb9d329e08ab910 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:10 -msgid "Chapter 3: The Basics of QGIS" -msgstr "" - -# ef145e4964e7429cb758a459ee15f822 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 42b245deedae4ff5bbd1f9de1f3e1de9 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:14 -msgid "Downloading QGIS" -msgstr "" - -# f4a4ae6d56e94e6bba6b8b051ddca52b -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:15 -msgid "Install QGIS" -msgstr "" - -# 2dd10d647497497b9fcf70ac8e2219fd -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:16 -msgid "Open a previously created QGIS project" -msgstr "" - -# 81ca044057814c8c874634295e30ff6d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:17 -msgid "Understand the layers panel" -msgstr "" - -# 8ea7cb6cfedd418283b0b85966915fd1 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:18 -msgid "Access basic tools through toolbar" -msgstr "" - -# 0670e44cb81c4996aac815cb76324877 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:19 -msgid "Clean up the toolbar" -msgstr "" - -# 672cc69459004466a62ffcaaf9b4b3d7 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:20 -msgid "Show a map in the map window" -msgstr "" - -# 934f388998bf4d7b82595660df36b9fb -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:22 -msgid "" -"In this chapter we begin using QGIS. We’ll see how to install the software " -"and understand the layout, interface and core functions of the software. By " -"the end of this chapter, you’ll be on your way to becoming a competent GIS " -"user!" -msgstr "" - -# 82b260b2d1c8419da9a111d8d73e0701 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:26 -msgid "" -"Note that if you have previously installed QGIS, feel free to skip ahead to " -"*section three*. Otherwise, let’s start here and get QGIS installed." -msgstr "" - -# db9a3b1fe7ed47b681b31450a6184c49 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:30 -msgid "3.1 Getting QGIS" -msgstr "" - -# a040a5950634435aa9e39fd7c90a2d4b -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:32 -msgid "" -"Open your web browser and in the address bar at the top of the window, type :" -"kbd:`qgis.org`. Press :guilabel:`Enter`." -msgstr "" - -# e03585457f4245ce8b0ad1573b988825 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:37 -msgid "The QGIS website will look something like this:" -msgstr "" - -# 27e7562cd50d46abafbad99c8e38e72d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:42 -msgid "Click :guilabel:`Download Now`" -msgstr "" - -# 8f7ff40cbf594915b57aa6fb79288102 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:47 -msgid "" -"If you are using Windows, scroll down to the :menuselection:`Long Term " -"Release` version and click on :guilabel:`QGIS Standalone Installer Version " -"2.8 (32 bit).` Your exact version number may be different." -msgstr "" - -# 56c78231afe845edbffd653cc8bad46d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:54 -msgid "" -"If you are not using Windows, select your Operating System from the menu. " -"Follow the installation instructions." -msgstr "" - -# a4ba6d1cb1a148d8bc4f51fe6b46f5d3 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:60 -msgid "" -"When the file is downloaded, run it and follow the instructions to install " -"QGIS." -msgstr "" - -# f0832d062d9d49cbaa68094306ad8365 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:63 -msgid "3.2 Installing QGIS" -msgstr "" - -# e6444037b6fb49f59b1c7eaee24d15bf -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:64 -msgid "Open the folder where you have the QGIS installation file." -msgstr "" - -# 71f3773b92ca43da96d6a77246187dc0 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:69 -msgid "" -"Run the installation file. If you are installing QGIS version 2.x, it should " -"look like this:" -msgstr "" - -# 45d62de749fd4afa84b2cc361b0e541a -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:74 -msgid "Click on :guilabel:`Next`." -msgstr "" - -# c4e80606e4ef49ab9e9e78934d72505d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:76 -msgid "" -"Click :guilabel:`I Agree` to agree with the conditions in the license " -"agreement." -msgstr "" - -# 5736169f6c4149919c17cff8c5bc4f92 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:81 -msgid "" -"The next window asks where you would like to install QGIS. In most cases, " -"the default should be fine. Click on :guilabel:`Next`." -msgstr "" - -# 45d176a453cd426799480e8e01d9c0a1 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:86 -msgid "" -"In the next window, click :guilabel:`Install` without checking any of the " -"boxes." -msgstr "" - -# ee522574c5854c58a47c22be6b9de7a4 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:91 -msgid "QGIS will begin to install. It may take a few minutes to complete." -msgstr "" - -# 9839862ce7aa4575ac553a08c2e1bbd1 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:96 -msgid "" -"click :guilabel:`Finish` to complete the installation. Your computer will " -"automatically reboot." -msgstr "" - -# 077a25ab59d7406d9d9e09bcd2689be5 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:101 -msgid "Now open QGIS from the Start Menu." -msgstr "" - -# 2cfca0eb0f244c2cad7ad997b85c415a -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:106 -msgid "QGIS will look something like this:" -msgstr "" - -# eed8035a1bc24d0f84089702d9bbc085 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:113 -msgid "3.3 QGIS user interface layout" -msgstr "" - -# 810b4b6880a84354aff57735ac043a97 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:115 -msgid "" -"Next we will open up a QGIS project, and take a look at the different pieces " -"of the QGIS interface. If you installed InaSAFE previously, make sure it is " -"closed by clicking on the X in the upper right corner of the InaSAFE panel. " -"If it isn’t open or you haven’t installed it yet, carry on. We will come " -"back to this later." -msgstr "" - -# 3e81055cafc04f3aa56750d9934524eb -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:120 -msgid "" -"Click on the folder icon on the upper toolbar or go to :menuselection:" -"`Project --> Open...`" -msgstr "" - -# 1ff52221fbd64022b8d0fed89112ba69 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:125 -msgid "" -"Navigate to the tutorial files and go into the **qgis/ directory**. Open the " -"file named **sleman_2_2.qgs**. QGIS should now look something like the " -"following image. Let’s pause for a moment and go over the various components " -"of the QGIS interface." -msgstr "" - -# 75e7e8f8d7024948ab0c51d3d1db6457 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:132 -msgid "**Map Canvas**" -msgstr "" - -# 52acd4579ddf4cbeb868d0514a79a2a5 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:134 -msgid "" -"This is the window where the map is shown. Our project has two different " -"files open, one which shows districts of the Sleman regency, and another " -"that shows the railway line running through the area. Both of these files " -"are drawn together in the map canvas." -msgstr "" - -# 7902db14786d4ffe8c649a0f26927065 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:139 -msgid "**Layers Panel**" -msgstr "" - -# f5444f1d337d4c069e1afa54692cd501 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:141 -msgid "" -"On the left side of QGIS is the layers list. This lists the layers, or " -"files, that are loaded into our QGIS project. In this project, we have two " -"layers, **Kecamatan_Sleman** and **railway_Sleman_OSM**." -msgstr "" - -# 3da1f223cf884512a126527c36699caf -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:144 -msgid "" -"The layers panel not only shows all the files that are currently open, it " -"also determines the order that they will be drawn on the map canvas. A layer " -"that is at the bottom of the list will be drawn first, and any layers above " -"it will be drawn on top." -msgstr "" - -# 8dd8a086945a4af69a7655f1fadaec6d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:147 -msgid "" -"Click on the layer :guilabel:`railway_Sleman_OSM` and drag it below the " -"layer named **Kecamatan_Sleman**." -msgstr "" - -# 6d4c9b43305d4e95b44478e75a6dd717 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:153 -msgid "" -"Notice how the map canvas changes. The railway layer is now shown below the " -"district layer, and part of the railway is now obscured. A map should never " -"show railway hidden beneath district areas, so go ahead and move the layers " -"back." -msgstr "" - -# f344997ec5454eb5ba4c34ebd700b420 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:156 -msgid "" -"Uncheck the box next to a layer’s name. It will be hidden from the map " -"canvas." -msgstr "" - -# ea7a054f0d2d4a9e879643773d870b6a -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:159 -msgid "" -"Expand collapsed items by clicking the arrow or plus symbol beside them. " -"This will provide you with more information on the layer’s current " -"appearance." -msgstr "" - -# 93818df660824ed6845ef50e75f03980 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:165 -msgid "" -"Right-click on a layer to view a menu with menu extra options. You’ll be " -"using some of them before long, so take a look around!" -msgstr "" - -# 5b3bcce90e3046ce863416f3de96e35d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:168 -msgid "**Toolbars**" -msgstr "" - -# 1371b279305a424e85d957a5e296159f -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:170 -msgid "" -"At the top of QGIS are a large number of tools, which are contained within " -"various *toolbars*. For example, the *File* toolbar allows you to save, " -"load, print, and start a new project. We already used one of these tools " -"when we opened this project." -msgstr "" - -# fdf88574766947ab863e007d9c8e3d90 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:177 -msgid "" -"By hovering your mouse over an icon, the name of the tool will appear to " -"help you identify each tool." -msgstr "" - -# 34b479ea26ac47959e76efe20f81a4ad -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:179 -msgid "" -"The number of tools (buttons) can seem a bit overwhelming at first, but you " -"will gradually get to know them. The tools are grouped into related " -"functions on toolbars. If you look closed you can see a vertical array of " -"ten dots to the left of each toolbar. By grabbing these with your mouse, you " -"can move the toolbar to a more convenient location, or separate it so that " -"it sits on its own." -msgstr "" - -# 685d9f2e9c1f42abbff2a26b7f612b27 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:188 -msgid "" -"If you feel overwhelmed by the number of toolbars, you can customize the " -"interface to see only the tools you use most often, adding or removing " -"toolbars as necessary." -msgstr "" - -# fc04a912e2ab499e898c330109f93e97 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:191 -msgid "" -"To add or remove a toolbar, right-click on any of the toolbars, or go to :" -"menuselection:`View --> Toolbars`." -msgstr "" - -# 57e2985b384147239937f6b9e67fd00a -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:196 -msgid "" -"Let’s remove some of the toolbars that we will not be using in this " -"training, to make the interface a bit cleaner. Right-click on the toolbar, " -"and uncheck the boxes next to the following toolbars:" -msgstr "" - -# 8da1a7bf63cf489ea2ec2bbf7a891812 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:199 -msgid "Advanced Digitizing" -msgstr "" - -# 559650b0c4c4442e8d942ffea8b40a4d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:201 -msgid "Database" -msgstr "" - -# a1c3466ffcea44bebce9fe7964df1f66 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:203 -msgid "GRASS" -msgstr "" - -# 74c5f7d9794a4a3f84c6901a226566c0 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:205 -msgid "Label" -msgstr "" - -# f3e79549d81b428fb3fc1c3a30936570 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:207 -msgid "Raster" -msgstr "" - -# 910102edc4e2453e94fbcadc0f8870fa -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:209 -msgid "Vector" -msgstr "" - -# 51d47d1cc2464a0a998da7dba6899359 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:211 -msgid "" -"After removing these toolbars and moving them around, your tools should look " -"like this:" -msgstr "" - -# b978db020782432eb021555c50041a76 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:216 -msgid "" -"Even if they are not visible in a toolbar, all of your tools will remain " -"accessible via the menus. For example, if you remove the *File* toolbar " -"(which contains the *Save* button), you can still save your map by going to :" -"menuselection:`Project --> Save`." -msgstr "" - -# b6323fa58bfa40299cb646398b983ebc -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:220 -msgid "**Status Bar**" -msgstr "" - -# 5786f557add644dbbbbc87ada841993c -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:222 -msgid "" -"The status bar shows information about the current map. It allows you to " -"adjust the map scale and see the mouse cursor’s coordinates on the map." -msgstr "" - -# 415220bc091d484aa7a08bd9cd6846fb -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:228 -msgid "" -"The coordinates of this map are the same type of coordinates that are " -"recorded by GPS devices. The status bar show shows the longitude and " -"latitude of your mouse cursor." -msgstr "" - -# bbdf9ffcdd7b429ba0fcfda3fbd7cbb4 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:231 -msgid "" -"This may not all be clear right now, but as you progress in your knowledge " -"of GIS is will make more and more sense." -msgstr "" - -# 8f0ad5d88420438c8333006086b94f04 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:234 -msgid "3.4 Adding a Vector Layer" -msgstr "" - -# 2c06f5a365be4f688c8ff7f056c76eb7 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:236 -msgid "Now we will add an additional layer containing roads to our project." -msgstr "" - -# c06f080caba648149f7b849231859db8 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:238 -msgid "Click on the :guilabel:`Add Vector Layer` button on the toolbar." -msgstr "" - -# 5c300d75a696404da2e9d47dbfee621e -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:243 -msgid "A dialog box will open. Click the :guilabel:`Browse` button." -msgstr "" - -# b6f29dc7836a4bcfa56f20bd0418541b -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:248 -msgid "" -"Navigate to the file :file:`qgis/Sleman/Jalan\\_Sleman\\_OSM.shp` (you may " -"need to unzip the file :file:`Sleman.zip`). Select the file and click :" -"guilabel:`Open`." -msgstr "" - -# 2ae2f773a6c74773bf42eea3f3dcde54 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:251 -msgid "" -"One of the most common file formats are **shapefiles**, which end with the " -"extension **.shp**. Shapefiles are often used to save geodata, and are " -"commonly used with GIS applications like QGIS." -msgstr "" - -# c5b81561d1b84dc8a0d67a8e2039d3c7 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:254 -msgid "" -"You should now see your new layer appear both in the map canvas and in the " -"layers panel. It should be drawn above both the district and railway layers." -msgstr "" - -# 4d78a3ebfa584b98aabe720f7e0f8aa7 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:261 -msgid "3.5 Basic QGIS Tools" -msgstr "" - -# 313a46994ed84d97bc1806467fd4f861 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:263 -msgid "" -"We’ve already taken a look at the QGIS toolbar and seen the tools for " -"opening a project and adding a new layer. Here’s a list of some other " -"commonly used tools. Feel free to play around with them if you like. The " -"important thing for now is to start getting familiar with QGIS." -msgstr "" - -# 2173753867d141dfb16481af79181647 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:269 -msgid "Toggle Editing" -msgstr "" - -# 85dbf269140f43238d27deaf20252dad -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:269 -msgid "Edit features in a layer" -msgstr "" - -# 46d8e81096494df596b6b00643812873 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:271 -msgid "Pan Map" -msgstr "" - -# 6a0a8291ab874ec780513801c9b142ea -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:271 -msgid "Drag the map to a new location" -msgstr "" - -# 2afa330b2fa041a5be83c6278594305b -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:273 -msgid "Zoom In" -msgstr "" - -# d4c5f74c38ab42709d02a917388a9207 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:273 -msgid "Zoom in on the map" -msgstr "" - -# f838591f5d2a4d8cbfc9e518fd4d00f6 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:275 -msgid "Zoom Out" -msgstr "" - -# 385df475910347e3aef9d2820444a054 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:275 -msgid "Zoom out on the map" -msgstr "" - -# b509eb6fa2474173a806117c41801186 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:277 -msgid "Zoom Full" -msgstr "" - -# adc3bf53da6d4ca4918ce34d776769e3 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:277 -msgid "Zoom so that all layers fit in the map window" -msgstr "" - -# 22ffedc2380a4dc7913d0b2267f07014 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:279 -msgid "Open Attribute Table" -msgstr "" - -# 03a9a37d56d34d12af6b20c434c8f945 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:279 -msgid "Open a layer’s attribute table" -msgstr "" - -# ef23ba8630474a57ad8fbcf2598b9e99 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:281 -msgid "Select Single Feature" -msgstr "" - -# 046bf362f9484879992a9b4350169a76 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:281 -msgid "Select a feature in the selected layer" -msgstr "" - -# 26ab9a9d1c354285885b05d5bb958173 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:285 -msgid "3.6 Navigating the Map" -msgstr "" - -# 8032ad77922842ada63cc4edf87db966 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:287 -msgid "" -"Before we examine the attributes of individual features, let’s take a quick " -"look at how to navigate the map. The main controls for moving the map around " -"and zooming in and out are by default on the panels at the top of QGIS." -msgstr "" - -# 55e801a95ee5491cae5f5c97565400fa -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:293 -msgid "" -"When you click on one of these buttons, it changes what you can do with your " -"mouse in the main map window." -msgstr "" - -# dc5bc276c8824eb4b5454f82e5983f9b -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:295 -msgid "" -"Select the first button that looks like a hand. Now hold the left mouse " -"button down and drag the mouse in the map window. This allows you to pan the " -"map, or move it around." -msgstr "" - -# def91eda80bb49d3884a1cdc132064dd -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:299 -msgid "" -"The button which has a plus sign below a magnifying glass allows you to zoom " -"in on the map. Select this button. Using your mouse, draw a box around an " -"area where you want to zoom in, and release your mouse." -msgstr "" - -# 74ea281c5c344f9e99f2e99a1e27705d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:303 -msgid "" -"The button which has a minus sign below a magnifying glass allows you to " -"zoom out on the map. Select this button and click on the map." -msgstr "" - -# 3f97c050cbb34c13b975e32128c618cd -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:306 -msgid "" -"The button that looks like a magnifying glass with red arrows pointing away " -"from it lets you zoom to the full extent of your map. Click this button to " -"see all of the data that is loaded in the project fit into the map canvas." -msgstr "" - -# d21588f26a06453fb177df5a68b9d1b9 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:310 -msgid "3.7 Managing Plugins" -msgstr "" - -# d1b620f566054e3daaf66f4acd357f55 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:312 -msgid "" -"QGIS has core functionality, which we will continue to explore in this " -"guide, but it also allows the use of additional **plugins**, which allow you " -"to add functionality to the software. Again, these plugins are free. To use " -"them, you simply need to connect to the internet and install. To install new " -"plugins, make sure you are connected to the internet. They first need to be " -"downloaded, and then activated. Some plugins are already downloaded and " -"available, and you can see them by going to :menuselection:`Plugins ‣ Manage " -"and Install Plugins`." -msgstr "" - -# 2e7a19a922c74edab7130c0decfb48a6 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:324 -msgid "" -"This displays a list of plugins that have already been downloaded and can be " -"activated. To enable a plugin, check the box next to it in this menu. For " -"now, let’s leave all the plugins as they are. We’re going to download and " -"activate a new plugin in the next section." -msgstr "" - -# e1cfc9ae021e4d23be7f4808a971ff6e -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:333 -msgid "3.7.1 Installing Plugins" -msgstr "" - -# ef73367b2d22431db8edac0808fb6b09 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:335 -msgid "" -"There are many more plugins, but they must first be downloaded. To download " -"a plugin, click the *Not installed* tab. This will load available plugin " -"repositories, and you will see a list of all available plugins for download." -msgstr "" - -# 610a7f8b13b54906a16bcd0c13ade938 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:341 -msgid "" -"Note that plugins which have already been downloaded can be activated or " -"deactivated from the *Installed* tab. If it has not yet been downloaded, " -"downloading a plugin from the *Not installed* tab will automatically " -"activate it." -msgstr "" - -# d940f4fe66d04e4e95d17acff92c01ab -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:345 -msgid "3.7.2 The OpenLayers Plugin" -msgstr "" - -# fe575981aad346db88aa40b8ffa5334e -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:347 -msgid "" -"The OpenLayers plugin allows you to view various web maps as a layer in " -"QGIS. This means that you can access the OSM slippy map, Google Maps and " -"Bing Maps from within QGIS. Follow along and we’ll see how this works." -msgstr "" - -# c427571556474817a8cc8f7d5a4ec76a -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:351 -msgid "" -"Go to :menuselection:`Plugins --> Manage and Install Plugins…` and click on " -"the :guilabel:`Not installed` tab. Type :kbd:`openlayers` into the Search " -"box." -msgstr "" - -# a53257f48c574bf9ad12e17473376316 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:357 -msgid "" -"Select :guilabel:`OpenLayers Plugin` from the list and click :guilabel:" -"`Install plugin`." -msgstr "" - -# a4914ea95fd24647b5056ab7b81c6406 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:362 -msgid "It may take a few minutes to download." -msgstr "" - -# 9af2e5ebb9ed465181b35630d0ec3c2c -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:367 -msgid "When the download finishes click :guilabel:`OK`." -msgstr "" - -# 81bc8bc3ac1e43fa9cc9a87d2ebe3735 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:372 -msgid "" -"Now the OpenLayers plugin is installed and activated. Click the :guilabel:" -"`Installed` tab to see it in your list of active plugins. Click :guilabel:" -"`Close` when you are finished." -msgstr "" - -# 21afc8285c474f09adab39cbe0c4ed4c -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:379 -msgid "" -"The new plugin provides a menu which offer extra functionality. Go to :" -"menuselection:`*Web --> OpenLayers plugin*` to see various map layers that " -"can be loaded." -msgstr "" - -# d4b65351a0f94d5c9b9f26c8699da35b -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:385 -msgid "" -"Go to :menuselection:`Web --> OpenLayers plugin --> Bing Maps --> Bing " -"Aerial`. A new layer called “Bing Aerial” will be added to the Layers panel, " -"and the imagery will load in the map canvas. If the layer is above your " -"other layers, drag it to the bottom of the layers list." -msgstr "" - -# fba2ca061a014088975d2d2c928c7f62 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:392 -msgid "Your project should now look like this:" -msgstr "" - -# 2a3552bf99914b4db8bdfb0e0cf235ef -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:397 -msgid "" -"If you pay attention, there is something wrong with the maps. Can you guess " -"what it is? All three layers above Bing Aerial layers should be shown on the " -"map." -msgstr "" - -# c5a6c4f4391245db9a6b204aae9a8974 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:401 -msgid "" -"To fix this, go to :menuselection:`View --> Panels` and check the box next " -"to :guilabel:`Layer order`." -msgstr "" - -# 5c4cbab1e21e4a31a38258470bb2ff62 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:406 -msgid "" -"The Layer order panel will appear next to Layers panel (1). Click that panel " -"and uncheck :guilabel:`Control Rendering Order` (2)." -msgstr "" - -# 943e04802824429ababcf7a590ca3983 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:412 -msgid "" -"Return to the Layers panel. The map should appear in correct order. All " -"layers above Bing Aerial will show up on the map canvas as in the image " -"below." -msgstr "" - -# 0e07bb2d2bb54abcab712ebaa16391ee -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:418 -msgid "" -"Adding a layer such as Bing Aerial will change the Coordinate Reference " -"System, or CRS, of your project. Essentially this means that your project is " -"not using longitude and latitude coordinates anymore. This shouldn’t affect " -"you right now, but it will make sense later when we cover CRSes." -msgstr "" - -# b583aa39f8c44c8c8c87f0c3f943de54 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:422 -msgid "" -"If the map data does not appear to match up correctly with the aerial " -"imagery, it may be due to different CRSes. You can fix this problem by going " -"to :menuselection:`*Project --> Project Properties*` and checking the box " -"next to *Enable ‘on the fly’ CRS transformation*." -msgstr "" - -# 29fd800d4724442081e1bef5206e8a60 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:432 -msgid "" -"Great! Now we can see our map data on top of an aerial photograph of the " -"earth. Note that this is the same imagery provided by Microsoft Bing that " -"you would load for editing in JOSM. Try unchecking the box next to the " -"layer :guilabel:`Kecamatan Sleman` so that you can see the area better. Zoom " -"in close to see detailed imagery with our street and railway layers " -"displayed on top." -msgstr "" - -# 6781502b7d1d473e8964f90315f39900 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:440 -msgid "" -"Remove the Bing Aerial layer by right-clicking it in the Layers panel and " -"clicking :guilabel:`Remove`." -msgstr "" - -# dcfdd1bdf26f4f089a220686bdd52ca6 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:442 -msgid "" -"Try out other layers that are available to you from the :menuselection:`Web " -"--> OpenLayers plugin` menu.." -msgstr "" - -# 59eb1c577d42480c8391753f651f9967 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:445 -msgid "3.7.3 Install InaSAFE Plugin" -msgstr "" - -# 8be92d5b2b91410e960b9926f9a3e7c5 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:447 -msgid "Now, we are going to install InaSAFE plugin." -msgstr "" - -# 3d7c89f0c7d34767bf7f573a25ad6b98 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:449 -msgid "Go to :guilabel:`Plugins Manage and install plugins` menu" -msgstr "" - -# 3795609a9dbb43e19cf65a0fe2f9da0a -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:454 -msgid "Go to the Search box and type :kbd:`“inasafe”`" -msgstr "" - -# db828777f983414eac8103f77f73117e -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:459 -msgid "" -"Select InaSAFE and click :guilabel:`Install plugin` and wait for a moment " -"until a pop-up notification showing that plugin has installed successfully." -msgstr "" - -# 401ddb407989462ca775b2a88f8772d4 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:464 -msgid "" -"Close the plugin manager window and we will learn about InaSAFE later in " -"Chapter 8." -msgstr "" - -# 372140b0e2e34580b158d568485bd96d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:466 -msgid "" -"Now you already know basic QGIS from installation, understand QGIS layout, " -"learning useful toolbar and basic operation in QGIS. You also already learn " -"about how to install InaSAFE, a plugin that we will learn more in the last " -"chapter of this module." -msgstr "" - -# 65bf9722093b493db85378cbdd7651b2 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:469 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-04-Map_Projection_Basic.po b/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-04-Map_Projection_Basic.po deleted file mode 100644 index 40f1074b..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-04-Map_Projection_Basic.po +++ /dev/null @@ -1,574 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 650c8d038b024dd689c0421908f46302 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:10 -msgid "Chapter 4: Map Projection Basics" -msgstr "" - -# e8940f9abaf442cda52e6de487cb0e98 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 34fc289c9907414d95e7f4d096ee1059 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:14 -msgid "Understand Coordinate Reference Systems (CRS)" -msgstr "" - -# 9657973d4b1b4c3fa183885e2ec57011 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:16 -msgid "Identify the CRS of a vector dataset" -msgstr "" - -# a50d718657f249fdbaaacdc2982fd8cb -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:18 -msgid "Doing “on the fly” reprojection" -msgstr "" - -# a6064ab708824b7ab39408ab0106f3f6 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:20 -msgid "Save dataset with a different CRS" -msgstr "" - -# 8cde9447b4714be4b13b1ef10e1b8cfc -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:22 -msgid "Georeference Digital Image" -msgstr "" - -# a1f90422924f4b17affcee6e01c177ad -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:24 -msgid "" -"We’ve talked a little bit about Coordinate Reference Systems (CRSs) " -"previously, but haven’t covered it in depth. In this chapter, we’ll look " -"more at what a CRS means practically, and how it affects our work in QGIS." -msgstr "" - -# 9de4f55848fe4c2a88a8ba57d4b126c6 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:29 -msgid "4.1 Coordinate Reference System (CRS)" -msgstr "" - -# 5efb75376026417faa06133cb7ef7464 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:31 -msgid "" -"The CRS that all the data as well as the map itself are in right now is " -"called WGS84. This is a very common Geographic Coordinate System (GCS) for " -"representing data. But there’s a problem, as we will see." -msgstr "" - -# c5500a1cb4584685859f2677ebd48ae4 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:35 -msgid "Open the project :file:`world.qgs`, located in the :file:`qgis/` folder" -msgstr "" - -# 4549bd672dc74eebba41eda611793cf6 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:37 -msgid "Zoom in to Indonesia by using the :guilabel:`Zoom In tool`." -msgstr "" - -# 19269dd9681f4b91bab767503120c6cc -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:42 -msgid "" -"Setting the scale in the Scale field, which is in the Status Bar along the " -"bottom of the screen. While over Indonesia, set this value to 1:20000000 " -"(one to twenty million)." -msgstr "" - -# 6dfab1444f4d4a52a25c7ad4b3ff9c64 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:48 -msgid "Now pan around the map while keeping an eye on the Scale field." -msgstr "" - -# f5a76cf4b4b34881baca402d0dc6dac3 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:50 -msgid "" -"Notice the scale changing? That’s because you’re moving away from the one " -"point that you zoomed into at 1:20000000, which was at the center of your " -"screen. All around that point, the scale is different." -msgstr "" - -# d34225e296d749e48019331bd4426ebe -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:53 -msgid "" -"To understand why, think about a globe of the Earth. It has lines running " -"along it from North to South. These longitude lines are far apart at the " -"equator, but they meet at the poles. In a GCS, you’re working on this " -"sphere, but your screen is flat. When you try to represent the sphere of the " -"earth on a flat surface, it becomes distorted, as if you took an orange peel " -"and tried to flatten it. What this means on a map is that the longitude " -"lines stay equally far apart from each other, even at the poles (where they " -"are supposed to meet). This means that, as you travel away from the equator " -"on your map, the scale of the objects that you see gets larger and larger. " -"What this means for us, practically, is that there is no constant scale on " -"our map!" -msgstr "" - -# 9a28b05aba984dd5af8792af65baffab -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:64 -msgid "" -"To solve this, we’ll use a Projected Coordinate System (PCS) instead. A PCS " -"“projects” or converts the data in a way that makes allowance for the scale " -"change and corrects it. Therefore, to keep the scale constant, we should " -"reproject our data to use a PCS." -msgstr "" - -# d1aceabec50b4d2395641a323182ae1f -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:68 -msgid "" -"**Projection** is the act of taking coordinates on a sphere (like the " -"earth), and manipulating them so that they can be displayed on a flat " -"surface." -msgstr "" - -# ebb3f650b4a64174830a41760c7371aa -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:72 -msgid "4.2 “On the Fly” Reprojection" -msgstr "" - -# c252803819ec4ab9a71996a4f5dc133f -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:74 -msgid "" -"Every QGIS project has a CRS, and each of the data layers have a CRS too. " -"Often these are the same. Your project may be in WGS84, and the layers too. " -"But sometimes you will add a layer that is not in the same CRS as the " -"project, and you need QGIS to convert it so that it can be displayed along " -"with the rest of the data. The term that we use for this is reprojecting *on " -"the fly*." -msgstr "" - -# 314b68b49e4c41f8be1a1ffef2a8b4d4 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:80 -msgid "" -"To enable “on the fly” projection, click on the :guilabel:`CRS` Status " -"button in the Status Bar along the bottom of the QGIS window:" -msgstr "" - -# 93a0129bb9974f4da7c80831abe53247 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:86 -msgid "" -"In the dialog that appears, check the box next to :guilabel:`Enable ‘on the " -"fly’` CRS transformation." -msgstr "" - -# f7cfd9835957403489db5cdaff42cea6 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:91 -msgid "" -"Type the :kbd:`NSIDC` into the Filter field. One CRS :guilabel:`NSIDC EASE-" -"Grid Global` will appear in the list below." -msgstr "" - -# b97a531336bf459eb749a197730a6ab2 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:96 -msgid "Click on it to select it, then click :guilabel:`OK`." -msgstr "" - -# eafc74cbad824c538215f098179061ad -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:98 -msgid "" -"Notice how the shape of Indonesia changes. All projections work by changing " -"the apparent shapes of objects on Earth." -msgstr "" - -# 3e64fcb76ab448b6a9afc226ead01676 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:100 -msgid ":guilabel:`Zoom in` to a scale of 1:20000000 again, as before." -msgstr "" - -# 56917aa1525041119b3ea6830950c55a -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:102 -msgid ":guilabel:`Pan` around the map." -msgstr "" - -# 56c871df3d3c47fcabbffe57e084318f -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:104 -msgid "Notice how the scale stays the same!" -msgstr "" - -# 315fa2e4218f4dd6a8ed6a9f73dd48a7 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:106 -msgid "" -"'On the fly' reprojection is useful for combining datasets that are in " -"different CRSes." -msgstr "" - -# aba1801d8c59445ebac2ff9ff8eda1aa -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:108 -msgid "" -"Deactivate “on the fly” reprojection again, by unchecking the box next to :" -"guilabel:`Enable ‘on the fly’` CRS transformation." -msgstr "" - -# dcd8d041d3b541598107d66943314594 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:110 -msgid "" -"Now let’s add another vector layer, located in :file:`qgis/peta\\_dunia/" -"Indonesia.shp`. What do you notice? The layer isn’t visible! But that’s easy " -"to fix,right?" -msgstr "" - -# 95ae0ee7f8374961acf41ba4e96a6ec5 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:112 -msgid "Right-click on the layer in the Layers list." -msgstr "" - -# 5aaf1bc28b9841969ae6eaa6e0e4d055 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:114 -msgid "Select :guilabel:`Zoom to Layer Extent`." -msgstr "" - -# 9572f950834a40648a556b765bb0d8ce -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:116 -msgid "OK, so now we see Indonesia... but where is the rest of the world?" -msgstr "" - -# 34babd0159c54211be8ab2ac57a921a4 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:118 -msgid "" -"It turns out that we can zoom between these two layers, but we can’t ever " -"see them at the same time. That’s because their Coordinate Reference Systems " -"are so different. The **continents** layer is in degrees, but the " -"**Indonesia** layer is in meters. In other words, one feature in the " -"continents layer might be 8.5 degrees away from the equator, but the same " -"feature in the Indonesia layer might be 900000 meters away from the equator." -msgstr "" - -# abfe11900b254bb49eaeaffaebd9325d -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:124 -msgid "" -"8.5 degrees and 900000 meters is about the same distance, but QGIS doesn’t " -"know that! One of our layers must be reprojected to match the other layer." -msgstr "" - -# 2df4a6b070734ef9b1a258575a3b95ab -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:127 -msgid "To correct this:" -msgstr "" - -# f58e9abbbb0143ebb18cc4e567958aed -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:129 -msgid "" -"Switch :guilabel:`Enable ‘on the fly’` CRS transformation on again as before." -msgstr "" - -# 7e8986e0da8f4461a09e90ef78c23a6c -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:131 -msgid "Zoom to the extents of the Indonesia dataset." -msgstr "" - -# a4a931b9f5754c069047e0444579a602 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:133 -msgid "" -"Now, because they’re made to project in the same CRS, the two dataset fit " -"perfectly:" -msgstr "" - -# 45fc5f31e34e49f7903ddc7e7d8fe3f2 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:138 -msgid "" -"When combining data from different sources, it’s important to remember that " -"they might not be in the same CRS. 'On the fly' reprojection helps you to " -"display them together." -msgstr "" - -# 70e6005558be4aa585cb98ec93e22ac6 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:142 -msgid "4.3 Dataset with different CRS" -msgstr "" - -# 5f63505751824cf287e5613e49adb82f -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:144 -msgid "" -"It’s great that QGIS can reproject layers on the fly so that we can work " -"with them in the same project. But this requires more time for our computer " -"to reproject the layers, and can slow down our work. For this, or for other " -"reasons, we might want to be able to reproject a dataset, and save it with " -"the new projection." -msgstr "" - -# b162d5d1d7c44cd2bdcee6d96960de63 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:149 -msgid "" -"Let’s reproject the :guilabel:`Indonesia` layer so that it is in the same " -"CRS as the project. To do this, we will need to export the data to a new " -"file using a new projection." -msgstr "" - -# 0963b0e1d71349aaa52cf4526520b8d2 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:152 -msgid "Right-click on the :guilabel:`Indonesia` layer in the Layers list." -msgstr "" - -# 1f3053a324d245ebaea4684741ecd36e -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:154 -msgid "" -"Select :guilabel:`Save As...` in the menu that appears. You will be shown " -"the :guilabel:`Save vector layer as...` dialog." -msgstr "" - -# 0c7fcdddd2aa4c73a873505f0a2096df -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:156 -msgid "Click on the :guilabel:`Browse` button next to the Save as field." -msgstr "" - -# f03347600cc5401495328947a431ceb6 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:158 -msgid "" -"Navigate to :file:`qgis/peta_dunia/` and specify the name of the new layer " -"as :kbd:`Indonesia_terproyeksi.shp`." -msgstr "" - -# 773633dea2f94f5fa9efa765a35c063e -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:160 -msgid "Leave the :guilabel:`Encoding` unchanged." -msgstr "" - -# d8fd093d69514c06920b2f582fec7b00 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:162 -msgid "" -"Change the value of the Layer CRS dropdown by click on :guilabel:`Select " -"CRS` icon in the right panel." -msgstr "" - -# 5e849479f22e44369d43bc0ededf23bd -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:168 -msgid "" -"A :guilabel:`Coordinate Reference System Selector` window will appear. Type :" -"kbd:`4326` in :guilabel:`Filter Box`" -msgstr "" - -# a541d4c269aa43c18796959c26539205 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:168 -msgid "and select :guilabel:`WGS 84` in the bottom side of the window." -msgstr "" - -# b93aa44043bc47eda51d4a04b34c0704 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:173 -msgid "Click :guilabel:`OK`. You will back to :guilabel:`Save As…` window." -msgstr "" - -# c4468f602b20474ca4a41f91c797d571 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:175 -msgid "Check the box next to :guilabel:`Add saved file to map`." -msgstr "" - -# 464a4addf0b148f2a1e4069511ef1ec7 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:177 -msgid "The :guilabel:`Save vector layer as...` window now looks like this:" -msgstr "" - -# 0e3152719f4141c9baeaf5f6e887321b -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:182 -msgid "" -"Click :guilabel:`OK` and after a minute, you should be presented with a " -"notification above map canvas telling that the process is finished." -msgstr "" - -# a70c6d216e264e278c87d0cde742fc49 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:184 -msgid "" -"Now your new layer, :guilabel:`Indonesia\\_terproyeksi`, will be shown in " -"the layers panel. If you turn off :guilabel:`on the fly` reprojection, this " -"layer will still be shown correctly, because it has been reprojected into " -"the same CRS as the project (and the :guilabel:`continents` layer)." -msgstr "" - -# fd4270a37aa6426989aebec5322a86d7 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:189 -msgid "4.4 Georeferencing Scanned Image" -msgstr "" - -# e57e434f242140f2a7d50f0d956026fa -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:191 -msgid "" -"Georeference is the process of associating a physical map or raster image of " -"a map with spatial locations and may be applied to any kind of object or " -"structure that can be related to a geographic location, such as point of " -"interest, roads, places, bridges, or buildings. Georeferencing is crucial to " -"making aerial or satellite imagery and also raster images to be able to " -"overlay with other spatial data, like vector data and raster data." -msgstr "" - -# 6670ab475d6f4ee88f7114aed62c4432 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:197 -msgid "" -"To georeference an image, we need to establish point with geographic " -"coordinates in these point, known as control points. This control point " -"refer to actual position of objects in earth. These coordinates are obtained " -"by doing field survey. For example, we need to georeference an aerial image " -"and we know location an object in aerial image with exact location in earth. " -"To georeference this, simply input the control points with coordinates that " -"we know from field survey. We need 4 control points or more to georeference " -"the image." -msgstr "" - -# 4386da2f1ab94c36a563883469e1df04 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:204 -msgid "" -"Let’s start to georeference an image that we got from `Geospasial BNPB " -"`_." -msgstr "" - -# 2f59826534ae44acb8d5485cafe1db56 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:206 -msgid "Go to :menuselection:`Raster --> Georeferencer --> Georeferencer…`." -msgstr "" - -# 17b049c26ba04d6a965768aa92e9f3d3 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:208 -msgid "" -"A new window will appear. Click :guilabel:`Open Raster` icon in upper left " -"side of the window." -msgstr "" - -# b1af2b5e8e23458b9e340e85e3a238d6 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:213 -msgid "" -"Select :file:`peta\\_krb\\_merapi\\_2002.jpg` and click :guilabel:`Open`." -msgstr "" - -# f84e77cbaa6a4a0395196a72f5ca6cc0 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:215 -msgid "" -"In Coordinate Reference System Selector type :kbd:`4326` in filter box and " -"select :guilabel:`WGS 84` as CRS." -msgstr "" - -# 08faa9c88a99421ab0cc23cc4ea28d78 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:217 -msgid "An image will be appear in Georeferencer Window." -msgstr "" - -# 583d4e2f98104c32970dcdeb4a2cac8f -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:219 -msgid "" -"You can use the :guilabel:`zoom/pan` controls in the toolbar to learn more " -"about the map." -msgstr "" - -# 486b0be878454eb8a0d2ad63ae716c50 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:224 -msgid "" -"If you look closely, you will see coordinate grid with markings. Using this " -"grid, you can determine the X and Y coordinates of the points where the grid " -"intersect. Click on :guilabel:`Add Point` in the toolbar." -msgstr "" - -# 0ed61d121f0a43aab7c7dceb81d15764 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:234 -msgid "A new pop-up window will appear, enter the coordinates." -msgstr "" - -# 0f62a5cc94de4982b5699fc4773e424a -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:232 -msgid "" -"For Indonesia enter X for Bujur (BT) and Y for Lintang (LS). Click :guilabel:" -"`OK`. It can use decimal degree (dd,dd), projected coordinates/UTM (mmmm," -"mmm) and degree minutes seconds (dd mm ss,ss) format. **Don’t forget to put " -"Negative ( - ) in Y/North value for area in South part of equator**." -msgstr "" - -# 70409d2ded554761b20dbe8565c1943e -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:239 -msgid "" -"Notice that GCP table in bottom window has a row with detail of your first " -"GCP." -msgstr "" - -# 4636b12ccb3b42809ff7a9d2702a9e6b -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:241 -msgid "" -"Now, let’s add at least 4 GCPs that cover entire image. More GCP’s points " -"will result more accurate image." -msgstr "" - -# 091f5b7138114f8f9f790f374cba2901 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:246 -msgid "" -"After input 4 or more points, click :guilabel:`Transformation Setting` in " -"toolbar." -msgstr "" - -# 94dbf800bec143bca676a2bb6c1069ad -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:248 -msgid "" -"Right click the entry in :guilabel:`GCP Table` to delete the GCP Point or " -"select :guilabel:`Delete Control Point` tool in toolbar above the image, " -"then use it to click on the Control Point in either the GCP table or " -"Workspace Window" -msgstr "" - -# 837da4e4faf349db8e75fac10ac19435 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:255 -msgid "" -"The Transformation Setting Window is displayed. Follow all setting like this:" -msgstr "" - -# bebb058662ce4219b80a45ffdcea2a19 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:260 -msgid "" -"In QGIS there are several method s for transforming the image, these are " -"linear, Helmert, the 1\\ :sup:`st`, 2\\ :sup:`nd` and 3\\ :sup:`rd` order " -"polynomials, and the thin plate spline. These different Transformation " -"Methods interpret your Control Point in different ways, and control how the " -"map is fitted and warped to your georeferenced base map." -msgstr "" - -# d0017358c3dd4216b2d09c6138f6f6a8 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:265 -msgid "" -"For best fit, the thin-plate spline or higher-number polynomial " -"transformations are often best. Its look like a true rubber sheeting method, " -"transforms the source Control Point exactly to the target Control Points, " -"and optimize for local accuracy opposed to global accuracy." -msgstr "" - -# 47aeaf15012f417a88e12b8d1e88e23e -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:270 -msgid "" -"To finish and export your georeferenced map, click the :guilabel:`Start " -"Georeferencing` button" -msgstr "" - -# 47cc919c702f4f9e8f43ecbbef9da6fd -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:270 -msgid "in the :guilabel:`Main Toolbar` at the top of the QGIS Workspace." -msgstr "" - -# d015286258f74edd87996be0d484e4fe -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:275 -msgid "" -"The Georeferencing is now complete. The georeferenced layer will loaded in " -"QGIS Map Canvas." -msgstr "" - -# 322c16b155e04175818ab053f39a463c -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:280 -msgid "" -"Knowing how to georeference is important when we want to digitize from a " -"paper map or an image that is not already georeferenced. Once the image " -"already georeferenced like this, it can apply the same digitization " -"techniques that we will learn in the next chapter to create vector " -"shapefiles that can be used in QGIS and InaSAFE." -msgstr "" - -# 8a98b9c7e07d40d48ecfb01d38d8bdca -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:284 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-05-Working_with_Vector_Data.po b/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-05-Working_with_Vector_Data.po deleted file mode 100644 index 3904ca7f..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-05-Working_with_Vector_Data.po +++ /dev/null @@ -1,1703 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# fdbcaa6303d944ba912f5f8778021bfc -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:10 -msgid "Chapter 5: Working with Vector Data" -msgstr "" - -# ae86270fc9f54ff08af04c31f0227c50 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 2e9bd6d06a7e44e9bc76e95b4b893281 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:14 -msgid "Understand vector data" -msgstr "" - -# 271f8600f3a1426aa5af183b3f416b4b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:15 -msgid "Identify attribute of vector data" -msgstr "" - -# b676d51b467e4dafb529876becd93985 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:16 -msgid "Create vector data" -msgstr "" - -# 08f67a4cbcd3401fbea6f81fe8b70cdf -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:17 -msgid "Add vector layers" -msgstr "" - -# aeb03e9776cd4cd08feaeaf117846ffa -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:18 -msgid "Symbolize vector layers" -msgstr "" - -# ae5658b0ca13407bbaaddbd7104f88b5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:19 -msgid "Add labels to vector layers" -msgstr "" - -# d1da7a15111f4ede836012907bd72f88 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:21 -msgid "" -"In this chapter, we will learn what is meant by vector data. We will " -"practice adding it to our QGIS projects, and we will learn how to style the " -"data in different ways." -msgstr "" - -# 930af21720534ba7b1e8a5c052f85d36 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:25 -msgid "5.1 Vector Data" -msgstr "" - -# 84ab037ec78c485fa1fc13a904f3f04e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:27 -msgid "" -"Vector data is the most common type of data found in GIS. A vector is " -"essentially something in the form of a dots, or lines connecting those dots. " -"In other words, points, lines, and polygons are all **vectors**. (curved " -"lines are vectors too, but we won’t worry about that for now) We are already " -"quite familiar with vector data because in the previous unit, we used JOSM " -"to create it!" -msgstr "" - -# e42ad942f86e42fea2921a347ed2d349 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:35 -msgid "" -"Each object in a vector dataset is referred to as a feature. When we are " -"using JOSM we often refer to them as objects, but in traditional GIS " -"terminology they are features. A polygon that represents a building is a " -"feature, as is a line that represents a river. Each feature has a geographic " -"location, and is attached to other data that describe the feature." -msgstr "" - -# 36fb0bdf2c8c43c59af5773cd85dc4a8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:40 -msgid "" -"One important thing to note is that QGIS layers can only contain one type of " -"feature. That is, one layer can’t contain both point features and line " -"features, because they are different types of data. Hence if you have a file " -"that contains school polygons and another file that contains school points, " -"you would add them as two separate layers." -msgstr "" - -# 9f4df6a0cef7484e81c824a68267e7eb -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:44 -msgid "" -"Almost always, polygon layers will be at the bottom of your layer list, line " -"layers in the middle, and point layers at the top. You don’t generally want " -"your polygons overlapping your lines and points." -msgstr "" - -# 23590e989ffd417c832e2c3ae510d9d3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:48 -msgid "5.2 Attribute Data" -msgstr "" - -# 97dfc9466ded4aa3a51123a7d9315038 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:50 -msgid "" -"It’s important to know that the data you will be working with does not only " -"represent where objects are in space, but also tells you what those objects " -"are." -msgstr "" - -# 98a25f5660ce418db30c35accde3c7ce -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:53 -msgid "" -"Open the project :file:`sleman_2_5.qgs`. This is the same project that you " -"worked with previously." -msgstr "" - -# 80c2e58ba44c48df953ab1e1d8b477e6 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:55 -msgid "Close the InaSAFE panel if you still have it open." -msgstr "" - -# 91988c2483d34f24a1a930feb6304acf -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:57 -msgid "" -"You can see in your project the position of Sleman districts, the railway, " -"and some roads, but you can’t see all of the data contained in those layers." -msgstr "" - -# cc29088d7b4c4468aff6330fb61ae4d2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:60 -msgid "Select :guilabel:`Jalan_Sleman_OSM` in the layers list." -msgstr "" - -# bbe7a49c38cb4420b599d2ee30629d71 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:65 -msgid "Click the :guilabel:`Open Attribute Table` button:" -msgstr "" - -# 49cf458407854185b4ee9945677e18eb -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:70 -msgid "" -"You will see a table with more data about the streets layer. This extra data " -"is called **attribute data**. The lines that you can see on your map " -"represent where the streets go - this is the **spatial data**. You will " -"remember in JOSM that there was the same division. The points, lines, and " -"shapes you drew tell us **where** , but the tags, or attributes, tell us " -"**what**. These definitions are commonly used in GIS, so it’s essential to " -"remember them!" -msgstr "" - -# 5438303de3f1437c9df7fb61749f7bb0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:79 -msgid "" -"Take a look at the attribute table. Each row in the table is associated with " -"one feature in the streets layer. Each column contains one of the " -"attributes. If you select other layers and click on the :guilabel:`Open " -"Attribute Table` button, you’ll see different tables." -msgstr "" - -# e4e2a68e63a7424b813db3064857f507 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:83 -msgid "Close the attribute table." -msgstr "" - -# 2dab9df2574c4d47a9b84c347d75a8b9 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:86 -msgid "5.3 Creating Vector Data" -msgstr "" - -# a303ecfe5f2f4e23b41da173173fb703 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:88 -msgid "" -"Before you can add new vector data, you need a vector dataset (a layer to " -"add it to). In our case, we’ll begin by creating a new data layer, and then " -"we will discuss how to edit existing vector layer in QGIS, and how to create " -"an entirely new dataset." -msgstr "" - -# 69fc3c7b0a974866a68e3b58b02bafb4 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:92 -msgid "" -"Create a new project in QGIS by clicking on the :guilabel:`New Project` icon." -msgstr "" - -# 75fe83dfb47b43628ee5725ce7b701d7 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:94 -msgid "" -"Go to :menuselection:`Layer ‣ Create Layer ‣ New Shapefile Layer`. You’ll be " -"presented with the following dialog:" -msgstr "" - -# 5e8735fe015044c7b958a1a2361c1345 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:99 -msgid "" -"At this point we must decide what kind of dataset we want to create. " -"Remember that a data layer can only contain feature of points, lines, or " -"polygons – never a mix. When we create the layer, we must define what type " -"of data it will contain." -msgstr "" - -# cc3d8b093c0c471283d01305bd7b448a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:103 -msgid "" -"Since polygon are made up of points and lines. Let’s jump into polygons. " -"Once you’ve mastered this, creating a point or a line should be easy!" -msgstr "" - -# 2e432204445442e79b4abe48af5b827b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:106 -msgid "Check the box next to **Polygon**." -msgstr "" - -# db6da8583bf34cfe9469aa90ec0f0564 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:111 -msgid "" -"We’ll specify the Coordinate Reference System (CRS) in the next box. By " -"default the box will contain the CRS of the project, which for us will be " -"WGS84. This is a widely used and very useful CRS, so let’s stick with it!" -msgstr "" - -# 2218a6ce00f340a0a19a76612d9b63ac -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:117 -msgid "" -"When we create our new layer, the attribute table will only have one column " -"by default - **id**. This attribute contains a unique id number for every " -"feature. We can add additional fields to the attribute table now, when we " -"create the layer. Let’s add a name field." -msgstr "" - -# f29caf87b3ee462e8ccae87987795f16 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:121 -msgid "" -"Type :kbd:`keterangan` into the boxt next to Name. The setting should match " -"those shown here:" -msgstr "" - -# abb81867968b438bbde11bfd722b51ea -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:126 -msgid "" -"Click the :guilabel:`Add to attributes list` button. Your attributes list " -"should now look like this." -msgstr "" - -# b40bfdca83ab47e5a27fcdce4ab80911 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:131 -msgid "Click :guilabel:`OK`. A save dialog will appear." -msgstr "" - -# cb5f5add1a7345149f24f4f4e466fd8a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:133 -msgid "Navigate to a directory of your choosing." -msgstr "" - -# 18d7b7da88dc48b1b1e595e390ada357 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:135 -msgid "Save the new layer as :file:`krb_merapi.shp`." -msgstr "" - -# dc91affbf64e4b52b44a785f9b2c4b10 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:137 -msgid "The new layer should appear in your Layer panel." -msgstr "" - -# bcfd7c5eb69a4c3b94d91dea92c5785c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:139 -msgid "" -"Shapefile is a commonly used geographic file format. It can easily be " -"converted into other formats, and most GIS software can read this type of " -"file." -msgstr "" - -# d4bd18fb6371409fb0029362a72ecd4e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:143 -msgid "5.3.1 Digitising Vector Data" -msgstr "" - -# 57ef212fe38d4d54b78cd989b666ac74 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:145 -msgid "" -"Digitising, as you might have guessed, is the art (or science) of creating " -"digital vector data from another source, such as a raster image. In order to " -"begin digitising, we must firt enter edit mode. GIS software commonly " -"requires a separate mode for editing, to prevent user from accidentally " -"editing or deleting important data. Edit mode is switched on or off " -"individually for each layer." -msgstr "" - -# c01692ac8a4c4bfa84457ca86abbbfc8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:150 -msgid "" -"Open raster layer :file:`peta_krb_merapi_2002_modified.tif` in left QGIS " -"toolbar:" -msgstr "" - -# 59c18eb325aa426fa17f790efcff0625 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:155 -msgid "Open vector layer :file:`krb_merapi.shp`:" -msgstr "" - -# a5096ca22b4b401a91642df8fea00459 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:160 -msgid "Select :file:`krb_merapi.shp` in the Layers panel." -msgstr "" - -# f6ef841b6baf4a8eb1bf317be0c8f894 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:162 -msgid "Click on the :guilabel:`Toggle Editing` button:" -msgstr "" - -# 30dff679b593477da5b71da709ffcb88 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:167 -msgid "" -"If you can’t find this button, ensure that the Digitising toolbar is " -"enabled. There should be a check mark next to the :menuselection:`View ‣ " -"Toolbars ‣ Digitizing` menu entry." -msgstr "" - -# 4fe8f049a6c24792aaab21c8382a1531 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:170 -msgid "One you are in edit mode, the digitising tools will become active:" -msgstr "" - -# 2fbcc3e10b9f45738d502266af08894d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:175 -msgid "From left to right on the image above, they are:" -msgstr "" - -# 93fb5ca6ffa9447d9ae751cf1d7ecb96 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:177 -msgid "**Toggle Editing**: activates / deactivates edit mode." -msgstr "" - -# f64cefd899c04ca080fce957aa795160 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:178 -msgid "**Save Layer Edits**: saves changes made to the layer." -msgstr "" - -# a1493dc4b41644b8a533a1f5bc672ec5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:179 -msgid "**Add Feature**: start digitising a new feature." -msgstr "" - -# 3f9fb0f6a8fa443399a846e2fa16fbb2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:180 -msgid "**Move Feature(s)**: move an entire feature around." -msgstr "" - -# 30814e3dbf4f48d8a61e6c4543dccbe8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:181 -msgid "**Node Tool**: move only one part of a feature." -msgstr "" - -# 4b3af2da2eef4a38b1b6c6b939842de8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:182 -msgid "" -"**Delete Selected**: delete the selected feature (only active if a feature " -"is selected)." -msgstr "" - -# 666f4f63744e44cb884e97af43b1dec4 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:183 -msgid "" -"**Cut Features**: cut the selected feature (only active if a feature is " -"selected)." -msgstr "" - -# aa9c9068ecd14cadb74bc73ba88e616c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:184 -msgid "" -"**Copy Features**: copy the selected feature (only active if a feature is " -"selected)." -msgstr "" - -# 6f183f0fca194e389227e46949f474fe -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:185 -msgid "" -"**Paste Features**: paste a cut or copied feature back into the map (only " -"active if a feature has been cut or copied)." -msgstr "" - -# a364d611e0b8426f90a9e4ba6b0bc30e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:188 -msgid "" -"Before you start digitising, go to :menuselection:`Setting ‣ Snapping " -"Options…`" -msgstr "" - -# ae4a628c769e49f1ace57bd7ebd6847c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:190 -msgid "" -"Change Snapping mode to **Advanced**, and check **krb_merapi** layer with " -"Mode **to vertex and segment** and Tolerance value is 1 and then set Units " -"to pixels:" -msgstr "" - -# 0763335270a044b0b054c70e2cbf8081 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:196 -msgid "" -"It’s important to check Avoid intersection if you want to create a polygon " -"with each feature snap each other." -msgstr "" - -# 2362bc79f8e843d0b621b53458d3f2d8 -# 4f738611aff843cf82a2e03ec5ebf6d1 -# 53a7690db51e41bbb958759f6f1974ee -# 89de36e070ea412eb05007fb8bbbf66a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:199 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:227 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:409 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:458 -msgid "Click :guilabel:`OK`." -msgstr "" - -# a21cfc30444b4fd8aa311a9d20943b6d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:201 -msgid "" -"Let’s add new feature. Click on the :guilabel:`Add Feature` button to start " -"digitising:" -msgstr "" - -# 3b2f479cf4514db686126a4bda018ff5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:206 -msgid "" -"You’ll notice that your mouse cursor become a crosshair. This allow you to " -"more accurately place the points you’ll be digitising. Remember that even as " -"you’re using the digitising tool, you can zoom in and out on your map by " -"rolling the mouse wheel, and you can pan around by holding down the mouse " -"wheel and dragging around in the map.*" -msgstr "" - -# 5650e284c0f1436c96691fdbb48ac008 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:211 -msgid "" -"Start by clicking on a point somewhere along the edge of the dark pink area." -msgstr "" - -# 735ca832628a4dc0b38e77f9ee087bd7 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:213 -msgid "" -"Place more points by clicking further along the edge, until the shape you’re " -"drawing completely covers the field. This is very similar to drawing a " -"polygon in JOSM." -msgstr "" - -# d38589b89386490385a50d8743b91c2e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:219 -msgid "" -"To place the last point, right-click where you want it to be. This will " -"finalise the feature and bring up the Attribute form filling dialog." -msgstr "" - -# 50beeb5b958744dea05028901ca2c3c2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:222 -msgid "Fill in the values as shown here:" -msgstr "" - -# 31336a0df33b41aca12685b38ea9b6ca -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:229 -msgid "" -"If you make a mistake while digitising a feature, you can always edit it " -"later. Simply finish digitising the feature and then follow these steps:" -msgstr "" - -# d779cd7722784a7085e6ffb7e14ba85d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:232 -msgid "Select the feature with the :guilabel:`Select Feature` tool:" -msgstr "" - -# 756b437eb3c44feb9be79ce44fc8fbb2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:237 -msgid "Then use one of these tools to edit the feature:" -msgstr "" - -# 863c7e0224e8469ea42d1e82023afe0a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:240 -msgid "Move feature(s) tools" -msgstr "" - -# 2dfc6aa139ed4402940e49742772baaa -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:240 -msgid "Move entire feature(s)" -msgstr "" - -# cd4dfdbcb76745ca898e00a77d7d1aa3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:242 -msgid "Node tools" -msgstr "" - -# 3b163ad209154a34ab579fdceaff5ade -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:242 -msgid "Move only one point where you may have misclicked" -msgstr "" - -# 0375e7cd08b64f13a9e0f1484fcc64c3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:245 -msgid "Delete selected" -msgstr "" - -# 29e075ae08b64b5eb0bc3af20aa93054 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:245 -msgid "Get rid of the feature entirely so you can try again" -msgstr "" - -# 707d990cf1514109bd0fc240788cdcd5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:248 -msgid "Undo" -msgstr "" - -# a329a1aa39cc4f46a2171b3a8aa8051e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:248 -msgid "Undo mistakes or press :kbd:`Ctrl + Z` on keyboard" -msgstr "" - -# cc48dac5f66d4adba68459821b725dcf -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:252 -msgid "Now try it on your own:" -msgstr "" - -# 5325dde85ce14560bcd16886979c99fc -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:254 -msgid "" -"Digitise all the hazard prone area from inner circle and then to outer " -"circle. Use the image to assist you and if you confused about what " -"information for each colours, you might need to look at the legend on the " -"right side." -msgstr "" - -# 1132dd2f34234744970242c39f24aca9 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:260 -msgid "Remember that each new feature need to have a unique id value!" -msgstr "" - -# d6d83173a7894eeb8282baa1f154a115 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:262 -msgid "" -"When you are finished adding feature to a layer, you must savee the changes " -"to that layer." -msgstr "" - -# 40f430f92d144edb86fbd0664b97679a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:264 -msgid "Click on the :guilabel:`Toggle Editing` button." -msgstr "" - -# 54ef7513fa5c460bbeeab610f7b67d58 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:266 -msgid "You will be asked to save your edits. Click :guilabel:`Save`." -msgstr "" - -# 1b4872cc7ea441f28e4bd701ccfd0706 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:271 -msgid "" -"Now you know how to create polygon feature! Creating points and line layer " -"is just as easy – you simply need to define the type of layer when you " -"create it, and of course you can only create point in point layers and lines " -"in line layers." -msgstr "" - -# 0482b456b8d6429da0d2738505af4144 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:276 -msgid "5.4 Adding Vector Data" -msgstr "" - -# 7b66f71c1f3f4e2f935b8c0cf819d73d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:278 -msgid "" -"As we mentioned previously, a shapefile is a commonly used geographic file " -"format. It can easily be converted into other formats, and most GIS software " -"can read this type of file. You may notice when adding a shapefile that " -"there are numerous files in your shapefile directory with the same name. " -"This is because a shapefile actually relies on a collection of several other " -"files to store the data and keep various settings. When you add a shapefile " -"to your project, you should always add the one that ends in **.shp**, but " -"the rest of the files are important too!" -msgstr "" - -# 3cf75a4a518d4d53af521fa50a322c04 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:284 -msgid "" -"Do you remember how to add a shapefile? Try adding the layer :file:" -"`POI_Sleman_OSM`, from the shapefile located in the tutorial directory. If " -"you don’t remember how to add a new vector layer, refer to the instructions " -"in chapter 2." -msgstr "" - -# a144b0a366694a059642c9713becccb2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:288 -msgid "Your project should look like this after the new layer has been added:" -msgstr "" - -# 8577461f7ee44578977a6cf05fa30a59 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:293 -msgid "**Databases**" -msgstr "" - -# ff035704b246435a901294a9694b43f5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:295 -msgid "" -"Shapefiles (and other types of files) are one way to store geographic data. " -"You can also load a vector layer into QGIS from a database. You may already " -"be familiar with Database Management Systems (DBMS) such as Microsoft " -"Access. GIS applications also make use of databases to store geographic " -"data. Databases can be hosted and used locally on your computer, or could be " -"shared between users over a network or even the internet." -msgstr "" - -# 476a4da5630e48ad9d98581ef8e23903 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:300 -msgid "" -"Let’s try adding a layer from a database. Click on the following icon. If " -"you can’t find it, right-click on the toolbar and make sure that the “Manage " -"Layers” toolbar is enabled." -msgstr "" - -# 23233154862f4157bc474a7e3247bc7f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:306 -msgid "You will see a dialog box. Click :guilabel:`New`." -msgstr "" - -# 06691d1fc8604af48279f96465bc0a1d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:311 -msgid "" -"Navigate to the :file:`qgis_data/Sleman` folder and find the file :file:" -"`guna_lahan.db`. Select the file and click :guilabel:`Open`." -msgstr "" - -# 0a501d6a7b9a45df9920016a96dac9b2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:314 -msgid "" -"Now in the original dialog box, you will see that the dropdown button now " -"contains **guna_lahan.db @...**, followed by the path of the database file " -"on your computer." -msgstr "" - -# a152eb510321435bb5ce4d13b7616c5f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:317 -msgid "Click :guilabel:`Connect`. You will see the following in the box:" -msgstr "" - -# 38f4ca29d7074a08b80e3b814e9f085e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:322 -msgid "" -"This database actually has three different layers available, all saved in " -"the database. Click on the first layer to select it, then hold SHIFT and " -"click the last layer to select them all." -msgstr "" - -# 838b8b6980314fb799f7616c362adaa5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:325 -msgid "Click :guilabel:`Add`. This will add all three layers to our project." -msgstr "" - -# c6179770f92d4f3681673679451aa4ae -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:327 -msgid "" -"Remember frequently to save your map! Your QGIS project file does not save " -"the data (data is saved in a shapefile or a database), but it does remember " -"the layers that you have added to the project, their order, and any settings " -"that you adjust." -msgstr "" - -# b089954544334c5b9e1faece85845eb8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:331 -msgid "" -"The layers you have just added are all polygon layers, so you will want to " -"drag them down below the line and point layers. If you have a checkbox " -"beneath your layers list that reads **Control rendering order**, go ahead " -"and check it." -msgstr "" - -# 7b8f3c76e5704421bb114377865694b7 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:335 -msgid "" -"Let’s remove a couple of layers to make it easier to deal with our data. " -"Right-click on the railway and district layers and click :guilabel:`Remove`. " -"Then order your layers like this:" -msgstr "" - -# 5b9cf1d729f641139303a4ee97761a04 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:342 -msgid "5.5 Symbology" -msgstr "" - -# 8c7e330c4a704e69b3cf66182a9a8c74 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:344 -msgid "" -"The symbology of a layer is its visual appearance on the map. One of the " -"basic strengths of GIS is that you have a dynamic visual representation of " -"the data you’re working with. Therefore, the visual appearance of the map " -"(which depends on the symbology of the individual layers) is very important. " -"The end user of the maps you produce will need to be able to easily see what " -"the map represents. Equally as important, you need to be able to explore the " -"data as you’re working with it, and good symbology helps a lot." -msgstr "" - -# b00179517fdf478a83469c02e5343c8e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:350 -msgid "" -"In other words, having proper symbology is not a luxury or just nice to " -"have. In fact, it’s essential for you to use a GIS properly and produce maps " -"and information that people will understand and be able to use." -msgstr "" - -# 3523fb0fe9a0464da14e25b7f4366f0e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:354 -msgid "5.5.1 Changing colors" -msgstr "" - -# 99fc2739c6e64184a49e128d2e5ad30e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:356 -msgid "" -"To change a layer’s symbology, we will open its Layer Properties. Let’s " -"begin by changing the color of the **pemukiman** layer." -msgstr "" - -# fd40e01aea5741bdaab4c2ba00f184c5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:359 -msgid "Right-click on the **pemukiman** layer in the Layers list." -msgstr "" - -# 54eacf6f2d0344daa431d9f2c2008a9c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:361 -msgid "Select the menu item Properties in the menu that appears." -msgstr "" - -# 26cb354385c54a4c971ba418c33c954d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:363 -msgid "" -"By default you can also access the Properties menu by double-clicking on the " -"name of the layer." -msgstr "" - -# 95b2d76fabe54408a824ee4502a55334 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:365 -msgid "In the Properties window select the :guilabel:`Style` tab." -msgstr "" - -# 3352e935f26a4e219be65e714c373c9f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:370 -msgid "Click the color button to change the color" -msgstr "" - -# dcf6381a10584542832f7bcd3e9de86f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:375 -msgid "" -"A standard color dialog will appear. Choose a **grey** color and click :" -"guilabel:`OK`." -msgstr "" - -# cc5917c86fd74d98b616cab2ebf19e8a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:380 -msgid "" -"Click :guilabel:`OK` again in the Layer Properties window, and you will see " -"the color change being applied to the layer." -msgstr "" - -# e319924f680b4198bc3d2913d1189f6b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:387 -msgid "5.5.2 Changing Symbol Structure" -msgstr "" - -# 77adf469712048c388ed51ffb79f4b6f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:389 -msgid "" -"This is good stuff so far, but there’s more to a layer’s symbology than just " -"its color. Next we want to change the color of the vegetation, but we also " -"want to eliminate the lines between the different types of vegetation so as " -"to make the map less visually cluttered." -msgstr "" - -# 7b825100209f4159a9aca280c9923d24 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:393 -msgid "" -"Open the Layer Properties window for the **vegetasi** layer. Under the Style " -"tab, you will see the same kind of dialog as before. This time, however, we " -"will do more than just change the color." -msgstr "" - -# 45e3754db85640678f12f6b1ec44260c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:396 -msgid "" -"Click on the Simple Fill under the symbol layer column panel. Then Symbol " -"layer dialog will appear next to the symbol layer column panel." -msgstr "" - -# b07e0459817643a3809576d4d128b838 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:402 -msgid "" -"Change the color inside the polygons in the layer by clicking the button " -"next to the Fill label:" -msgstr "" - -# ef999648e80243f8b2d784400c3553b3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:407 -msgid "" -"In the dialog that appears, choose a new color (that seems to suit " -"vegetation)." -msgstr "" - -# 23afe21cc157465eae694a2037688349 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:411 -msgid "Next, we want to get rid of the lines between all the farms." -msgstr "" - -# 6a00226fcb5b49ddb567e9df0795a5f9 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:413 -msgid "" -"Click on the Border style dropdown. At the moment, it should be showing a " -"short line and the words Solid Line." -msgstr "" - -# 73519971337b4f98895616cd53cf96cc -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:418 -msgid "Change this to **No Pen**." -msgstr "" - -# 7999f74d228147e0a4801355570d9571 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:420 -msgid "" -"Click :guilabel:`OK`, and then :guilabel:`OK` again. Now when we look at our " -"map, the **vegetasi** layer will have a new color and no lines between " -"polygons." -msgstr "" - -# 7f7f8a001283478aa6983e4345941c1c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:426 -msgid "" -"Try changing the symbology of the **pemukiman** layer so that it also does " -"not have outlines." -msgstr "" - -# 1e816148167648d0a82a704878dbd6be -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:429 -msgid "5.5.3 Scale-based Visibility" -msgstr "" - -# 147b519b03e4493cb5bd855f4358b3b3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:431 -msgid "" -"Sometimes you will find that one of your layers is not suitable for a given " -"scale. For example, if you have a layer which shows the earth’s continents " -"but not with very much detail, the continent lines may not be very accurate " -"when you are zoomed in very far to see streets." -msgstr "" - -# 3868cf016fa041918362a0757a30a56f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:435 -msgid "" -"Scale is a reference to how your map references what is actually on the " -"ground in terms of size. Scale is usually given in terms like 1:10000, which " -"means that one centimeter of length on your map is equal to 10000 " -"centimeters in the real world. When you zoom in or out on a map, the scale " -"changes, as you can see in the status bar at the bottom of QGIS." -msgstr "" - -# 17f3b66a22364c668f4c199e2208087e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:440 -msgid "" -"In our case, we may decide to hide our streets layer when we are zoomed out " -"very far (a small scale). For example, the streets layer is not very useful " -"when we are zoomed out far and it looks like a blob." -msgstr "" - -# a41626bc5133418ea903b7af9ebf15d5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:443 -msgid "Let’s enable scale-based rendering:" -msgstr "" - -# e278b7bc7d154b609a1889c0680c886a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:445 -msgid "Open the Layer Properties dialog for the **Jalan_Sleman_OSM** layer." -msgstr "" - -# 5cf4810cdeb94291bcb6a98d6e5da913 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:447 -msgid "Activate the General tab." -msgstr "" - -# d1288ead8af640649b1a9edc3dea5b5f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:452 -msgid "" -"Enable scale-based rendering by clicking on the checkbox labeled :guilabel:" -"`Scale dependent visibility`. Then change the value in “Maximum” to 1:10 and " -"“Minimum” to 1:100000" -msgstr "" - -# 3beff9404eb04e79a40a57f52b4ec3ac -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:460 -msgid "" -"Now look at your map and see what happens when you zoom in and out. The " -"streets layer should appear when you are at a large scale and disappear at " -"small scales." -msgstr "" - -# 59d83cf71b8146fa82281d8efc59dcd5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:463 -msgid "" -"You can use your mouse wheel to zoom in increments. Alternatively, use the " -"zoom tools to draw a box and zoom to it:" -msgstr "" - -# 7299497773b8470a856afdb40d2f4ab6 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:470 -msgid "5.5.4 Adding Symbol Layers" -msgstr "" - -# 57d394d7557547169b043ea04a3a2fed -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:472 -msgid "" -"Now that you know how to change simple symbology for layers, the next step " -"is to create more complex symbology. QGIS allows you to do this using symbol " -"layers." -msgstr "" - -# cba71e2391ec4f78940896372107bbd5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:475 -msgid "Go back to the **vegetasi** layer’s Symbol properties dialog as before." -msgstr "" - -# 363bd6901b9b4e95901efac58c7a8d35 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:477 -msgid "" -"In this example, the current symbol has no outline (i.e., it uses the No Pen " -"border style)." -msgstr "" - -# 2d4fbe9ca9114e9ab13849f27d10438b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:482 -msgid "Click on :guilabel:`Fill` then click :guilabel:`+` button on the left." -msgstr "" - -# 8788208dc2ff47c1a8fb25b2997b54a2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:487 -msgid "Click on it and another symbol layer will be added to the list:" -msgstr "" - -# b74b486d67ca47e0be0d402544c42355 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:492 -msgid "" -"Note that it may appear different in color, but we’re going to change that " -"anyway." -msgstr "" - -# 3914313e8c3e4effaad49a434e62c41b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:494 -msgid "" -"Now this layer has two different symbologies. In other words, both the green " -"color AND the blue color will be drawn. However, the blue color will be " -"drawn above the green, and since it is a solid color, it will completely " -"hide the green color. Let’s change it." -msgstr "" - -# e51fc211f291484499b7b4143c09fe5f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:498 -msgid "" -"It’s important not to get confused between a map layer and a symbol layer. A " -"map layer is a vector (or raster) that has been loaded into the map. A " -"symbol layer is part of the symbol used to represent a map layer. This " -"course will usually refer to a map layer as just a layer, but a symbol layer " -"will always be called a symbol layer, to prevent confusion." -msgstr "" - -# de56450f055c4de789b29d723564b659 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:503 -msgid "Set the border style to **No Pen**, as before." -msgstr "" - -# af37514388b0419ebb0a0cad1fb2f4a1 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:505 -msgid "" -"Change the fill style to something other than Solid or No brush. For example:" -msgstr "" - -# 870473929c3240198569e335010b835e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:510 -msgid "" -"Click :guilabel:`OK` and then :guilabel:`OK` and take a look at your layers " -"new symbology." -msgstr "" - -# b2efe83982f442a085ef94d98230a49c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:515 -msgid "" -"Now try it yourself. Add an additional symbology layer to the " -"**Jalan_Sleman_OSM** layer." -msgstr "" - -# 0018387cc5ea4506a2a62d0e56cc8caf -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:517 -msgid "Give the thickness of the original layer a value of 2.0" -msgstr "" - -# 0a9833f7f71d4400851692b02428daf7 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:519 -msgid "Give the thickness of the new symbology layer a value of 1.0" -msgstr "" - -# bef283205caf48fab5ec9c388e2e7bfa -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:521 -msgid "This will result in your roads looking something like this:" -msgstr "" - -# 50f3300004394b81a898ffd02cd3ec07 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:526 -msgid "" -"Our streets now appear to have an outline, but they seem disjointed, as if " -"they don’t connect with each other. To prevent this from happening, you can " -"enable symbol levels, which will control the order in which the different " -"symbol layers are rendered." -msgstr "" - -# cee43a267cf0446c816506378eb5d47b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:530 -msgid "" -"In the Layer Properties dialog, click on :menuselection:`Advanced ‣ Symbol " -"levels`:" -msgstr "" - -# f71a3d6110d04370aeca84231364014a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:535 -msgid "" -"The Symbol Levels dialog will appear. Check the box next to **Enable symbol " -"levels**." -msgstr "" - -# 4fb0f0c644714f63ab66cee8123d0663 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:540 -msgid "Your map will now look like this:" -msgstr "" - -# 4a507c17fc6d4476bf41a30a1b33237c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:545 -msgid "" -"When you’re done, you can save the symbol itself in QGIS so that you won’t " -"have to do all this work again if you want to use the symbol again in the " -"future. Save your current symbol style by clicking the :guilabel:`Save " -"Style ...` button under the Style tab of the Layer Properties dialog." -msgstr "" - -# 85c64fb0da6e4626877156c7da0342c2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:552 -msgid "" -"Give your style file a name and save. You can load a previously saved style " -"at any time by clicking the :guilabel:`Load Style ...` button. Before you " -"change a style, keep in mind that any unsaved style you are replacing will " -"be lost." -msgstr "" - -# 99309baea845434fa9e5f8b20842b5bf -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:556 -msgid "" -"Symbol levels also work for classified layers (i.e., layers having multiple " -"symbols). We will cover classification in the next section, but you can see " -"how it works here with roads." -msgstr "" - -# b2a0b5f75bbb434f94877e8813ea9eb4 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:560 -msgid "5.5.5 Symbol layer types" -msgstr "" - -# 29cd582f812842359ff08136f0612ada -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:562 -msgid "" -"In addition to setting fill colors and using predefined patterns, you can " -"use different symbol layer types entirely. The only type we’ve been using up " -"to now was the Simple Fill type. The more advanced symbol layer types allow " -"you to customize your symbols even further." -msgstr "" - -# f9650184f1e14626bb0277f6e946e89d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:566 -msgid "" -"Each type of vector (point, line and polygon) has its own set of symbol " -"layer types. First we will look at the types available for points." -msgstr "" - -# 72b1124dcfeb4740b7ff7a186971843e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:570 -msgid "a. Vector Points" -msgstr "" - -# 5b9face028cf40a38b3e760989d5158a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:572 -msgid "Change the symbol properties for the **POI_Sleman_OSM** layer:" -msgstr "" - -# cb8f1a7ba13d4f8ab388c3383b05f692 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:577 -msgid "" -"You can access the various symbol layer types by clicking a symbol layer (1) " -"then clicking the dropdown box in the upper right corner (2)" -msgstr "" - -# 67b251b007a04a409d9e72da79c8f14b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:583 -msgid "" -"Investigate the various options available to you, and choose a symbol layer " -"type other than the default **Simple Marker**." -msgstr "" - -# 741bab0082924e5a97cbf867a6d86083 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:586 -msgid "If in doubt, use an **Ellipse Marker**." -msgstr "" - -# 4f957655571b482b8509765da4f4fc55 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:588 -msgid "" -"Choose a light outline and dark fill, with a symbol width of 2.00 and symbol " -"height of 4.00." -msgstr "" - -# 0f30d69772c846a9a089cc116840bb07 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:597 -msgid "b. Vector Lines" -msgstr "" - -# 20b71faba08840e68c461134484d1cda -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:599 -msgid "" -"To see the various symbology options for vector lines, open the streets " -"layer properties and click on the dropdown box:" -msgstr "" - -# 18407be14d52492daca666a92068bcdb -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:605 -msgid "Click on :guilabel:`Marker line`." -msgstr "" - -# 85af2e2271604872aa3c43937dc15076 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:610 -msgid "Click :guilabel:`Simple Marker` on symbol layers (1)" -msgstr "" - -# 2c1d07620e344a659aecc60226108ca3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:615 -msgid "Change the symbol properties to match this dialog:" -msgstr "" - -# 28605e1deedd40a59e8f55ff7cc08fc7 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:620 -msgid "" -"Now, click on :guilabel:`Marker line` on symbol layers panel, then change " -"the interval to 2.00:" -msgstr "" - -# 4ebf6bf188954f869bae14a9ea257853 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:625 -msgid "Your road should now look something like this:" -msgstr "" - -# dcf07b2b07d24b41b98397a2a1f01aa3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:630 -msgid "" -"Once you have applied the style, take a look at its results on the map. If " -"the dots not shown up, check the advanced setting and go back to Symbol " -"level. Change the upper symbol layer to “2”. Then click OK. As you can see, " -"these symbols change direction along with the road but don’t always bend " -"along with it. This is useful for some purposes, but not for others. If you " -"prefer, you can change the symbol layer in question back to the way it was " -"before." -msgstr "" - -# 680a4d6147c4466da16a7b390f4860f0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:636 -msgid "" -"Try to change the appearance of the streets layer again, so that the roads " -"are dark gray or black, with a thin yellow outline, and a dashed white line " -"running in the middle." -msgstr "" - -# 04aa325169c34f858824175a9e383bac -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:643 -msgid "c. Vector Polygons" -msgstr "" - -# e45f925feafa4ac39099f2c0fbd924d4 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:645 -msgid "" -"Now let’s change the symbol layer type for the :guilabel:`pemukiman` layer. " -"Take a look at the dropdown menu as you’ve done for the point and line " -"layers, and see what the various options can do." -msgstr "" - -# 380d5d892c92410fb6711e1065377b88 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:651 -msgid "" -"Feel free to play around with the various options. We will use the Point " -"pattern fill with the following settings:" -msgstr "" - -# 785e4f9840c34e1a95bcfc75caf3ab83 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:659 -msgid "Add a new symbol layer with a normal Simple fill." -msgstr "" - -# e230183f7c7e4329b3851c87f3594c40 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:661 -msgid "Make it gray with no outlines." -msgstr "" - -# 479a849b1fd64dfe896cf660badb03e0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:663 -msgid "" -"Move it underneath the point pattern symbol layer with the Move down button:" -msgstr "" - -# bdc277ab85444a98b1ad78cff21e61fd -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:668 -msgid "The symbol properties should look like this:" -msgstr "" - -# 5c06936bfcbd45ad9ca3657998188b1e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:673 -msgid "" -"As a result, you have a textured symbol for the urban layer, with the added " -"benefit that you can change the size, shape and distance of the individual " -"dots that make up the texture." -msgstr "" - -# 4bc4b867b1fe431ebda15c140741fbdc -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:677 -msgid "5.5.6 Classified Symbology" -msgstr "" - -# 926c6f089fff45f6867c034165158b5d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:679 -msgid "" -"By classifying vector data according to their type, we can give them " -"different symbologies and they will still appear to flow into each other." -msgstr "" - -# 216f1a727956467fb09f20a4fcbe7914 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:686 -msgid "a. Classifying nominal data" -msgstr "" - -# 760fd1c086a7465099ec40a0aef4a1df -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:688 -msgid "Open Layer Properties for the :guilabel:`vegetasi` layer." -msgstr "" - -# fb21563b973943db9f3fa0f3d435dc85 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:690 -msgid "Go to the :guilabel:`Style` tab." -msgstr "" - -# a5f699331c7c42888e45fd7ac538ee99 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:692 -msgid "Click on the dropdown that says :guilabel:`Single Symbol`:" -msgstr "" - -# a05cd2d8d7ea41fb8d67f071c79be1d6 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:697 -msgid "Change it to :guilabel:`Categorized` and the interface will change:" -msgstr "" - -# 4a36a00a0feb4875a5247e74dd0849f0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:702 -msgid "Change the Column to **guna_lahan** and the Color ramp to **Spectral**:" -msgstr "" - -# 56b719bfb3fb44d9b0c24b786bf6dc4e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:707 -msgid "Click the button labeled :guilabel:`Classify`:" -msgstr "" - -# ebcba81c17244243af4ec380e0bb22b0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:712 -msgid "Click :guilabel:`OK`. You’ll see something like this:" -msgstr "" - -# 6495a429c3564dcb871325b9f3e8c446 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:717 -msgid "" -"Click the arrow (or plus sign) next to rural in the Layer list, you’ll see " -"the categories explained:" -msgstr "" - -# c6e5fb4385d54fb780fb64b2c75bfacb -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:722 -msgid "" -"So, this is useful! But it hurts your eyes to look at it, so let’s see what " -"we can do about that." -msgstr "" - -# 4a9c60bde9924338b041b02ba884ec20 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:724 -msgid "" -"Open :guilabel:`Layer Properties` and go to the :guilabel:`Style` tab again." -msgstr "" - -# f0519d4b23994854a5901dbd19b64990 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:726 -msgid "Click the :guilabel:`Change` button next to Symbol." -msgstr "" - -# 0f0c95ace637436f802e8a3d3f559b0d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:731 -msgid "" -"Remove the outline as you did in the previous chapter. (change the border " -"style to “No Pen”)" -msgstr "" - -# c45105bb96db4d34a3230c9aa2791d65 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:733 -msgid "Click the Delete all button:" -msgstr "" - -# 385fe65f04824065ba2c680318c591ce -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:738 -msgid "Now click :guilabel:`Classify` again, and the new symbols will appear." -msgstr "" - -# 73b610fece684c7b8ce601de4858fe3d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:740 -msgid "" -"You’ll notice they don’t have outlines. This is because because you just " -"removed the outlines!" -msgstr "" - -# 77c9a97cdb864683acaddbbe6d76f526 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:742 -msgid "" -"Change the color for each type of vegetation by double-clicking on the " -"colored block next to its name. You can change the color for each type of " -"vegetation to something that you think is more applicable, as we’ve done " -"here:" -msgstr "" - -# a1354845c52141c78d5ff71b73f8efac -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:749 -msgid "" -"Notice that the category on the bottom is empty. Select it, and click the :" -"guilabel:`Delete` button." -msgstr "" - -# 7a98f289c4b449dfb2e9dfc1d8dce1da -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:751 -msgid "When we click :guilabel:`OK` our map looks like this:" -msgstr "" - -# b4236354652d498b9ffbe85d692718a9 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:756 -msgid "" -"If you feel confident in your new classification skills, try to classify the " -"residential layer yourself. Use darker colors to distinguish it from " -"vegetation." -msgstr "" - -# 253dfa1895a7406eb825807cd3a1c9e6 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:761 -msgid "b. Ratio classification" -msgstr "" - -# 47bdc7d143014cd3a372a942fb9f0055 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:763 -msgid "" -"In the previous example, we classified the **vegetasi** layer by what is " -"known as **nominal classification**. This type of classification is when " -"categories are defined based on names. Next we will classify the " -"**pemukiman** layer based on the size of each feature. Classifiying with " -"attributes that contain only positive numbers, such as land area, is known " -"as **ratio classification**." -msgstr "" - -# 1a07ab685c7b4c82a90992e7430a8f59 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:768 -msgid "" -"Open the attribute table for the **pemukiman** layer. Notice the final " -"column, **luas_ha**. This attribute contains the size of the land area " -"contained within that feature polygon." -msgstr "" - -# 34870b41b6fc450bb0421c76d04ba16d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:774 -msgid "Open the layer properties for **pemukiman**." -msgstr "" - -# 539d487758414399b5fbb3582eca4d1f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:776 -msgid "" -"Change the Style type to **Graduated**, and use **luas_ha** as the column." -msgstr "" - -# cfa03047fc604052b033defdb2ff4555 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:781 -msgid "" -"Because we are categorizing with numbers this time, a color gradient will be " -"useful for representing our categories. Click on “Oranges” in the color " -"ramp, and then click :guilabel:`Classify`." -msgstr "" - -# 058b5a1f78a2409094507c1c78ce1d72 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:787 -msgid "Now you’ll have something like this:" -msgstr "" - -# f00b0cea52ad4a9aa28e468a815d3d19 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:792 -msgid "" -"Now you already know how to symbolize vector data into various types. You " -"can try to symbolize another data such as line or point to make your vector " -"data more informative." -msgstr "" - -# 61d91f3514fe459fa08435c3fef2f9fa -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:796 -msgid "5.6 The Label Tool" -msgstr "" - -# 8ac26d8e8c9741ff8b1c9b43d3c84053 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:798 -msgid "" -"Labels can be added to a map to show any information about an object. Any " -"vector layer can have labels associated with it. Labels rely on the " -"attribute data of a layer for their content." -msgstr "" - -# f0691ba0f9d047c8ae93813538b1f36c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:800 -msgid "" -"There are several ways to add labels in QGIS, but some are better than " -"others. You may notice that when you open the Layer Properties window for a " -"layer, there is a tab called “Labels.” While this tab is designed to put " -"labels on your map, it is not nearly as good as the so-called “Label Tool”, " -"which we will learn in this section." -msgstr "" - -# ea52465c41f64b8c89ab328a86c511b1 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:805 -msgid "5.6.1 Labeling Points" -msgstr "" - -# e24ca3d6d4874c19aab1227f5d5a9a14 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:807 -msgid "" -"Before being able to access the Label tool, you will need to ensure that it " -"has been activated." -msgstr "" - -# d1de358ef0b2453aab6cfc549cbda0f5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:809 -msgid "Go to the menu item :menuselection:`View ‣ Toolbars`." -msgstr "" - -# 6dfab45eaa884ea78bad4a9b19c9dfea -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:811 -msgid "" -"Ensure that the Label item has a checkmark next to it. If it doesn’t, click " -"on the :guilabel:`Label` item, and it will be activated. The :guilabel:" -"`Label` toolbar looks like this:" -msgstr "" - -# 6d528cd7f1104744b1002fdd6127dd8a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:817 -msgid "" -"Click on the **POI_Sleman_OSM** layer in the :guilabel:`Layers` list, so " -"that it is highlighted." -msgstr "" - -# ce4f8504dc1c4069954e55374bbdd524 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:819 -msgid "Click on the :guilabel:`Labelling` button:" -msgstr "" - -# dcff7582b588401eb96d755bd7f8e957 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:824 -msgid "This gives you the :guilabel:`Layer labeling settings` dialog." -msgstr "" - -# 2592284d0e294d0c934031457a2fa57d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:826 -msgid "Check the box next to :guilabel:`Label this layer with`...." -msgstr "" - -# 171706d3ae104844b841642c80d36a05 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:831 -msgid "" -"We must indicate which of the attribute fields we want to use for the " -"labels. The **NAME** field is the mostly likely candidate for a label, so " -"let’s select **NAME** from the list:" -msgstr "" - -# a87ce941d6714fa7b5faa3c70829a8fb -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:837 -msgid "Click :guilabel:`OK`. The map should now have labels like this:" -msgstr "" - -# 322e3de3ee084312bb931a6b63a2ce68 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:842 -msgid "" -"What we have so far is good, but as you can see, the labels are overlapping " -"the points that they are associated with. That doesn’t look very nice. The " -"text is also a bit larger than it needs to be. Let’s fix these problems!" -msgstr "" - -# 41f4cfca483148349e377c1b9d415864 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:845 -msgid "" -"Open the :guilabel:`Label` tool again by clicking on its button as before." -msgstr "" - -# cba3af33a636430ca6c3c36acd35d191 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:847 -msgid "Click on the :guilabel:`Text` tab button to change the text properties:" -msgstr "" - -# 421a115ededd46e4a78e2350a775e5f2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:852 -msgid "" -"A standard text change dialog appears, similar to those in many other " -"programs. Change the font to Arial size 9." -msgstr "" - -# 9ca08b2912d441a89857523aed949318 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:854 -msgid "" -"Now click on :guilabel:`Buffer` tab to add buffer on the text. Check box " -"labelled :guilabel:`Draw text buffer`" -msgstr "" - -# 9191fd6fa9094c0890f877f6193b6bb8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:859 -msgid "Your labels will now look like this:" -msgstr "" - -# 9d77591c08e7468c86b124f4ea2ff9f5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:864 -msgid "Now you can see why we usually need label buffers!" -msgstr "" - -# f9e0a3d2aacd4e47b554ee7d74ae0000 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:866 -msgid "" -"That’s the font problem solved! Now let’s look at the problem of the labels " -"overlapping the points." -msgstr "" - -# bb8c84339df24beeb578b913e6dd2d2b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:868 -msgid "In the Label tool dialog, click on :guilabel:`Distance` tab." -msgstr "" - -# 61867db3e28f4057be43bb6a4a5c0745 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:870 -msgid "Change the value of Label distance to 2." -msgstr "" - -# 64d31f8e01de49c49610b14d45b43fb9 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:875 -msgid "" -"Click :guilabel:`OK`. The labels no longer hover over the icons, but are " -"“buffered” a short distance away:" -msgstr "" - -# f011a4222f84497c9b831c10434857ad -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:881 -msgid "5.6.2 Labeling lines" -msgstr "" - -# 3120501c2d784ff2a5f2c70adfce43e0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:883 -msgid "" -"Now that you know how labeling works, there’s an additional problem. Points " -"and polygons are easy to label, but what about lines? If you label them the " -"same way as the points, your results would look like this:" -msgstr "" - -# 58841b179f314c14b9f7634728d983ef -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:889 -msgid "" -"This is not very useful! To make lines behave, we’ll need to edit some " -"options." -msgstr "" - -# 64144ec286804df891b39816ff12f56a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:891 -msgid "Hide the **POI_Sleman_OSM** layer so that it doesn’t distract you." -msgstr "" - -# c99e60e914294973ae4c8c5d4b0ae7a8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:893 -msgid "" -"Activate labels for the **Jalan_Sleman_OSM** layer as before. (Remember to " -"use the Label tool on the toolbar, not the one in Label Properties!)" -msgstr "" - -# 57d4c300e0584bac8e9f7cd7295c8f27 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:896 -msgid "" -"Set the font Size to 9 and activate the buffer so that you can see more " -"labels." -msgstr "" - -# be45175985e24c5c99c309945e885816 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:898 -msgid "Zoom in so that the scale is around 1:10000." -msgstr "" - -# 67e7a2e3145d4151a74b88cd551612c0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:900 -msgid "" -"In the Label tool dialog’s :guilabel:`Placement` tab, choose the following " -"settings:" -msgstr "" - -# 2b18392f517a4bbbbfd978a9b854434a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:905 -msgid "The map will look somewhat like this, depending on scale:" -msgstr "" - -# 710a630b985a483fa7d9e425e856567d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:910 -msgid "" -"It’s better than before, but still not ideal. For starters, some of the " -"names appear more than once, and that’s not always necessary. To prevent " -"that from happening:" -msgstr "" - -# f44039dbf7f240ee844e522b55b02ece -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:913 -msgid "Go to :guilabel:`Rendering` tab" -msgstr "" - -# 38f9ea2a36e84f5cb2c42e12deaf4b9b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:915 -msgid "" -"Enable the option Merge connected lines to avoid duplicate labels (also " -"under the Rendering tab - you may need to scroll down to see it)." -msgstr "" - -# 2a236b60b6a24652b103b2a2defa0d1e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:918 -msgid "" -"Another useful function is to prevent labels being drawn for features too " -"short to be of notice." -msgstr "" - -# 2e542102eab94b6c91a0d122ab710479 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:920 -msgid "" -"Set the value of Suppress labeling of features smaller than ... to 5 mm and " -"note the results when you click :guilabel:`Apply`." -msgstr "" - -# 06f1c7920d4d4d7295c8e45f7e829b75 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:923 -msgid "" -"Try out different Placement settings as well (also under the Placement tab). " -"As we’ve seen before, the horizontal option is not a good idea in this case, " -"so let’s try the curved option instead!" -msgstr "" - -# 672a746df5254ff4bec3f550fa42dab6 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:926 -msgid "" -"Select the :guilabel:`curved` option under the :guilabel:`Placement` tab of " -"the :guilabel:`Layer labeling settings` dialog." -msgstr "" - -# daf25c7268374e2c9b84ca37acf311bb -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:929 -msgid "Here’s the result:" -msgstr "" - -# a1c96525b8d6455591af9c06e5976d6d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:934 -msgid "" -"As you can see, this hides a lot of the labels that were previously visible, " -"because of the difficulty of making some of them follow twisting street " -"lines and still be legible. You can decide which of these options to use, " -"depending on what you think seems more useful or what looks better." -msgstr "" - -# 95716b6c97f841feaa9e511f53651ad6 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:938 -msgid "" -"Now that you know how attributes can make a visual difference for your map, " -"how about using them to change the symbology of objects themselves? That’s " -"the topic for the next section!" -msgstr "" - -# 19c950a68d194b9f93807ce00ed9b0d1 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:941 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-06-Working_with_Raster_Data.po b/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-06-Working_with_Raster_Data.po deleted file mode 100644 index a6f00360..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-06-Working_with_Raster_Data.po +++ /dev/null @@ -1,522 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 1ee150908776411b9081a2e34c1f6b8f -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:10 -msgid "Chapter 6: Working with Raster Data" -msgstr "" - -# d38eca356d154446b1f180311f22b96a -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 96f30e137aa746b797551f339596c8ff -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:14 -msgid "Load Raster Data" -msgstr "" - -# 0ffe9288b0ab44c0ad8a1bc78e03be70 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:15 -msgid "Change Raster Symbology" -msgstr "" - -# df3c15156952412491e4ff2ef161d75f -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:16 -msgid "Terrain Analysis" -msgstr "" - -# c573207bf2d148fdb3d122e03248ffd7 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:18 -msgid "" -"Thus far we’ve worked mostly with vector data, which consists of features, " -"and these features are themselves made up of points and lines. In this " -"chapter we will learn about raster data. Remember when you were editing " -"OpenStreetMap in JOSM? The points, lines and shapes that you drew were " -"vector data. But when you loaded Bing aerial imagery in the background, that " -"was raster data. So what’s the difference?" -msgstr "" - -# fb66f2dfeb5942db98dc4c7ddd44f44c -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:21 -msgid "" -"Raster data essentially comes in the form of an image. It is made up of " -"pixels, like a photograph, and a raster image will always be some number of " -"pixels wide and some number of pixels high. If you zoom in far enough on a " -"raster image, it will start to become blurry, just as if you opened a photo " -"on your computer and zoomed in very close. As we’ll see in this chapter, " -"however, a raster image can mean more than just a photograph from the sky. " -"Follow along and we’ll learn all about rasters!" -msgstr "" - -# eb850fa50a63460ea842f30cbd63095e -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:25 -msgid "6.1 Loading Raster Data" -msgstr "" - -# 393b4e0e18dc45c6b441612d47c0ef3b -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:27 -msgid "" -"Not all raster data consist of aerial photographs. There are many other " -"forms of raster data, and in many of those cases, it’s essential to " -"symbolise the data so that it becomes properly visible and useful. In this " -"section we’ll add a new kind of raster and see how to change its symbology." -msgstr "" - -# 6bcf37a53b574aa0892b9a5cf2c1fc52 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:30 -msgid "Click on the :guilabel:`Load Raster Layer` button:" -msgstr "" - -# def9fc21f814442b949e4fb631026653 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:35 -msgid "" -"The Load Raster Layer dialog will open. Find the file named **popmap10\\_all." -"tif**. Open it." -msgstr "" - -# 7b79ae50aafc4fdd974253d61b888b00 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:37 -msgid "" -"When it appears in the Layers Panel, right-click on it and click :guilabel:" -"`Rename`. Give it the name *Indonesian Population*." -msgstr "" - -# 20c8e9556e2d4e4e8b38ec781331cdcb -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:39 -msgid "" -"High resolution, contemporary data on human population distributions are a " -"prerequisite for the accurate measurement of the impacts of population " -"growth, for monitoring changes and for planning Interventions. The AsiaPop " -"project was initiated in July 2011 with an aim of producing detailed and " -"Freely-available population distribution maps for the whole of Asia.*" -msgstr "" - -# 3705299d82c94e50a581f98d3b8fd87b -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:41 -msgid "" -"When it loads, you’ll notice that the new raster image appears as whole " -"Indonesia’s Islands in grey colour." -msgstr "" - -# a66838f1de534d3a8a07af6859cb521a -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:46 -msgid "" -"The layer appears grey (and doesn’t give us any information) because its " -"symbology hasn’t been customised yet. In the colour aerial photograph we " -"loaded via *OpenLayer* Plugin, everything is already defined. But if you load " -"a raster image and it’s just a grey rectangle, then you know there’s no " -"symbology for it yet. It still needs to be defined. That’s what we will do " -"next." -msgstr "" - -# c9434b0628cb4813aa99d1325109785a -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:51 -msgid "6.2 Symbolise Raster Data" -msgstr "" - -# 156b1553eb7f4f269949b7c6892de5b1 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:53 -msgid "" -"Open the :guilabel:`Layer Properties dialog` for the Population layer, which " -"is now named *Indonesian Population*." -msgstr "" - -# 25169c5e1f6c40fe8e3d41eae6b22718 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:55 -msgid "" -"Switch to the :guilabel:`Style` tab. This shows the current symbology " -"settings, and as we’ve seen, they don’t give us much information on the " -"layer. Let’s make sure the layer has data in it." -msgstr "" - -# c9fc0da7ac394819a5bb395ce3195524 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:57 -msgid "" -"Change the :guilabel:`Render type` to :guilabel:`Singleband pseudocolor`. " -"Set colour to :guilabel:`YlOrBr` and change mode to :guilabel:`Equal " -"Interval` with :guilabel:`6 Classes`. Click :guilabel:`Classify` to show 6 " -"classes. As shown below:" -msgstr "" - -# 3638516c182f42be9a20dd06b000c92f -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:62 -msgid "Click *OK*. The raster should look like this:" -msgstr "" - -# e6e4bf00180a47e0aa89b6dfe96d5886 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:67 -msgid "" -"Good! This tell us that there is data in this layer. And by looking at it we " -"can get an idea in Java Island, population number higher than other island " -"in Indonesia." -msgstr "" - -# 05f8ebe98eb4408b90df83e596377c61 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:69 -msgid "" -"Let’s stop for a minute and understand what is happening here. Remember that " -"an image is made up of pixels, individual cells that contain a value, which " -"is usually a colour value. For example, if you zoom in very closely on a " -"photograph you can see those individual pixels, like this:" -msgstr "" - -# e21c586528ab4506873a64489e6aeed6 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:74 -msgid "" -"The value of each cell is saved in the file. Imagine the file being saved " -"something like this, where each square is a pixel:" -msgstr "" - -# 5dc237a510c34b2a8e6c090e8c627352 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:79 -msgid "" -"Of course the computer doesn’t understand words for colours. In fact the " -"value of each cell would be a number, which the computer then associates " -"with a certain colour. For our aerial image, this is already defined. Since " -"it is a normal image, it knows to associate the numbers for each pixel in " -"the file with the common colours that we see every day. But this new raster " -"image is different, because the values of each pixel don’t represent " -"colours, but rather altitude, and QGIS doesn’t know automatically how to " -"display it. Hence it shows every pixel in the image as grey, even if the " -"values in each pixel are different. When we change the symbology to " -"Psuedocolor, we can see all the different pixel values shown with various " -"colours." -msgstr "" - -# 198d1ce9eac1486e8334503f64690e31 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:83 -msgid "" -"It would be nice to represent our Indonesian Population layer as a greyscale " -"spectrum, rather than a variety of bright colours. Next we will tell QGIS to " -"symbolise the layer with colours in a spectrum, beginning at the lowest " -"pixel value in the file and ending at the highest pixel value. In other " -"words, if the pixel values looked like this:" -msgstr "" - -# f1923c6e47524311b15993181a55d7f6 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:88 -msgid "QGIS would create a spectrum equating numbers to colours like this:" -msgstr "" - -# 00dbdd0ca466440a81f913377383b867 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:93 -msgid "And render the image like this:" -msgstr "" - -# 94f7acb290f44f688b58f2b702be7ab4 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:98 -msgid "To do that, let’s start to symbolise Indonesia Population:" -msgstr "" - -# d64e6e86349546a39c17aabb81bf3ca3 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:100 -msgid "Open the :guilabel:`Layer Properties` Again." -msgstr "" - -# bd30723855f6405198dcc125d3b4a8aa -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:102 -msgid "Switch the render type back to :guilabel:`Singleband gray` (1)." -msgstr "" - -# 8c93b9a276ec49ef96a7d1a49b5d1902 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:104 -msgid "Check the box next to :guilabel:`Min / max` (2)." -msgstr "" - -# 92487dd074e4465cb8d2d45c071f03ef -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:106 -msgid "" -"Next to :guilabel:`Contrast enhancement` select :guilabel:`Stretch to " -"MinMax` (3)." -msgstr "" - -# 67282e5cd82641a59dd6f31e3c1c431b -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:108 -msgid "" -"Under :guilabel:`Load min / max values`, select :guilabel:`Estimate " -"(faster)`." -msgstr "" - -# 694674fce2ed4b83907e41360ce79f93 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:110 -msgid "Click the :guilabel:`Load` button:" -msgstr "" - -# 9b140d1d2a2742038813a89990ecbd16 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:115 -msgid "" -"Notice how the custom Min and Max values have changed. The lowest pixel " -"value in this image file is 0 and the highest is about 3024.93. But what are " -"the minimum and maximum values that should be used? The current values are " -"those that just gave us a grey rectangle. Instead, we should be using the " -"minimum and maximum pixel values that are actually in the image. You can " -"determine those values easily by loading the minimum and maximum values of " -"the raster." -msgstr "" - -# ca8b483263164594b325d25378adc43f -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:120 -msgid "" -"Click *OK.* You should see the values of the raster properly displayed, with " -"the darker colour representing small number of population in each pixel and " -"the lighter one, high number of population in each pixel:" -msgstr "" - -# 4ec537b5ef8240e381e4e5d6e709d3ec -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:125 -msgid "" -"We’ve learned to do this the tricky way, but can we do it faster? Of course! " -"Now that you understand what needs to be done, you’ll be glad to know that " -"there’s a tool for doing all of this more easily." -msgstr "" - -# d43b1dd6eec3416299acc7edbf537e0c -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:127 -msgid "" -"Remove :guilabel:`Indonesian Population` from the Layers panel, by right-" -"clicking it and clicking :guilabel:`Remove`" -msgstr "" - -# b49fc9cb09b045ec8fdc7414ac6e0dd2 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:129 -msgid "" -"Load the raster image again, renaming it to *Indonesian Population* as " -"before. It will be a grey rectangle again." -msgstr "" - -# 8f2a0c6f4cbd4c6ea2f4c4b5843bc3dc -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:131 -msgid "" -"Enable the tool you’ll need by enabling :guilabel:`View → Toolbars → Raster` " -"These icons will appear in the interface:" -msgstr "" - -# 39a2fb1f997e46028a8eeff7ebd2a251 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:136 -msgid "" -"The button on the right will stretch the minimum and maximum values to give " -"you the best contrast in the local area that you’re zoomed into. It’s useful " -"for large datasets. The button on the left will stretch the minimum and " -"maximum values to constant values across the whole image." -msgstr "" - -# c8f4e9806a834ed08aecafc6c7a13030 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:138 -msgid "" -"Click the right button labelled :guilabel:`(Stretch Histogram to Full " -"Dataset)`. You’ll see the data is now correctly represented as before!" -msgstr "" - -# 051ad95e358d4eaeb66cd0c2fa2f864b -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:141 -msgid "6.3 Terrain Analysis" -msgstr "" - -# 15323a5e641e4beeb65cd097dc424aef -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:143 -msgid "" -"Certain types of rasters allow you to gain more insight into the terrain " -"that they represent. Digital Elevation Models (DEMs) are particularly useful " -"in this regard. In this section we’ll do a little bit more with our DEM " -"raster, in order to try to extract more information from it." -msgstr "" - -# e214cc5117e546ba84722c82b15c50b7 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:146 -msgid "6.3.1 Calculating a hillshade" -msgstr "" - -# e879be3932e14770a51cab1733329dd4 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:148 -msgid "" -"The DEM you have on your map right now does show you the elevation of the " -"terrain, but it can sometimes seem a little abstract. It contains all the 3D " -"elevation information about the terrain that you need, but it doesn’t really " -"look 3-Dimensional. To get a better look at the terrain, it is possible to " -"calculate a hillshade, which is a raster that maps the terrain using light " -"and shadow to create a 3D-looking image." -msgstr "" - -# 71989287188041689abab6c699147dfd -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:151 -msgid "" -"To work with DEMs, we will use the all-in-one DEM (Terrain models) analysis " -"tool." -msgstr "" - -# 23e05137371e461b92dd7ebf77a11391 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:153 -msgid "" -"Open the file named :guilabel:`SRTM\\_Merapi.tif`, which is located in " -"**Merapi/SRTM**/." -msgstr "" - -# c4828df4fdfc4ab2a6c3ddb005a0a7c0 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:155 -msgid "When it appears in the :guilabel:`Layer` panel, rename it to **DEM**." -msgstr "" - -# e732789e39354fa5a5a82d10b446468e -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:157 -msgid "Click :guilabel:`Stretch Histogram to Full Dataset` button." -msgstr "" - -# fd086bd7891346df94ee94a79582797a -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:159 -msgid "Go to :guilabel:`Raster → Analysis → DEM (Terrain Models)…`" -msgstr "" - -# 2b7d66b8f6bc4dae971a58fcb100e819 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:164 -msgid "" -"In the dialog that appears, ensure that the input file is the **DEM** layer." -msgstr "" - -# abf708cd4f18491883f7110573951bbb -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:167 -msgid "" -"Set the output file to :guilabel:`hillshade.tif` in the directory :guilabel:" -"`Merapi/SRTM/`." -msgstr "" - -# e4cba23ddb5145b68e9b7dd3e890f2e4 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:172 -msgid "Check the box next to :guilabel:`Load into canvas` when finished." -msgstr "" - -# d45c0b414af647c98201b5c6c808db4a -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:177 -msgid "Leave all the other option unchanged." -msgstr "" - -# fb02bde2861d494fb51795e1518adb71 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:179 -msgid "Click :guilabel:`OK` to generate the hillshade." -msgstr "" - -# 0863b818f69742ea92fd364139e8350b -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:181 -msgid "" -"When the processing is complete. Click :guilabel:`OK` on the notification." -msgstr "" - -# e0069a80094b40b28107b51a893abbe8 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:183 -msgid "Click :guilabel:`Close` in the dialog." -msgstr "" - -# d04022e0f7e34b3c9ea3d9e04d66fecd -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:185 -msgid "" -"There should now be a new layer called *hillshade* that looks like this:" -msgstr "" - -# c2163494b922415689f0e1788b6daf85 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:190 -msgid "" -"This looks more Three-Dimensional, but can we improve on this? When you " -"open :guilabel:`DEM (Terrain Models)` tools, you will notice in the Mode " -"Options for hillshade there’re *Azimuth of the light* and *Altitude of the " -"light*." -msgstr "" - -# 64f656608e1149eeab2a26df59ecbed2 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:192 -msgid "" -":guilabel:`Azimuth of the light` defines in which direction the sun is, " -"whereas 0° represent north, east is 90°, south is 180° and west is 270°. " -"While :guilabel:`Altitude of the light` is the angle between the horizon and " -"the centre of the sun’s disc." -msgstr "" - -# c9ced26d6281409d89a55955fe9115a4 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:195 -msgid "" -"On its own, the hillshade looks like a plaster cast. It will look better if " -"we can combine it with our more colourful DEM. We can do this by making the " -"hillshade layer an overlay." -msgstr "" - -# aef5d6d11c1b420f93c02cfc7e3a0a9b -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:198 -msgid "6.3.2 Using a hillshade as an overlay" -msgstr "" - -# 42d9c0612d5849c29a3a3600b8210672 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:200 -msgid "" -"Hillshade can provide very useful information about the sunlight at a given " -"time of day. But it can also be used for aesthetic purposes, to make the map " -"look better. The key to this is setting the hillshade to being mostly " -"transparent." -msgstr "" - -# ef712e25651847f0ab6db301b9faa373 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:202 -msgid "" -"Change the symbology of the original :guilabel:`DEM` layer to use the :" -"guilabel:`Pseudocolor` scheme." -msgstr "" - -# 1e0f212b39fd4194b547352f3c8c7d7e -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:204 -msgid "" -"Click and drag the :guilabel:`DEM` layer beneath the :guilabel:`hillshade` " -"layer in the Layers panel." -msgstr "" - -# 882fb80077274eac9b842784cf4028bb -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:209 -msgid "Ensure that :guilabel:`Control rendering order` is checked." -msgstr "" - -# c16e26b26bf74316898f9414b522a63a -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:214 -msgid "" -"Now we will make the hillshade layer somewhat transparent. Open its :" -"guilabel:`Layer Properties` and go to the :guilabel:`Transparency` tab." -msgstr "" - -# 585010e7e1fc42139b85c5e61e7ac6c4 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:216 -msgid "Set the :guilabel:`Global transparency` to 50%:" -msgstr "" - -# 52aaf79b498c4dd28c04ed555b8ad2e9 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:221 -msgid "" -"Click :guilabel:`OK` in the Layer Properties dialog. You should get a result " -"similar to this:" -msgstr "" - -# f8083cd867964c8eaf283a77ced9b05f -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:226 -msgid "" -"Using a hillshade in this way, it’s possible to enhance the topography of " -"the landscape. If the effect doesn’t seem strong enough to you, you can " -"change the transparency of the hillshade layer; but of course, the brighter " -"the hillshade becomes, the dimmer the colours behind it will be. You will " -"need to find a balance that works for you." -msgstr "" - -# 8bc04e35e6d3494d811db381b5ecf6f9 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:228 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-07-Using_Map_Composer.po b/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-07-Using_Map_Composer.po deleted file mode 100644 index 1838f641..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-07-Using_Map_Composer.po +++ /dev/null @@ -1,559 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# c458bc6b9de9424bbef2d6650fc4c0a1 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:10 -msgid "Chapter 7: Using Map Composer" -msgstr "" - -# 81fec65a3aaf479c9d03b5cb55877fd6 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# a699c19b901d4316802d420bedf02e4b -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:14 -msgid "Arrange map layout" -msgstr "" - -# 9469baafd2414c23b1edcd294091b285 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:15 -msgid "Add new map" -msgstr "" - -# 04ff3dc5e17b451db0bdffdb47dc48cb -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:16 -msgid "Add title to a map" -msgstr "" - -# 05322b2954b347feac6b633366dfb9a3 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:17 -msgid "Add graphic and numeric scales" -msgstr "" - -# aab66241940a49aaaacbb61766aeb6aa -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:18 -msgid "Add grid to a map" -msgstr "" - -# f1e3d9c771d44e089885247954a0004d -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:19 -msgid "Add an inset" -msgstr "" - -# 3c5afa6697aa483197daa6b7ac72f97c -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:20 -msgid "Customise the content of the legend" -msgstr "" - -# 660874a6cf6c4d9986ca7de7dd3cb1ea -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:21 -msgid "Export a map to different formats (pdf, jpeg, svg)" -msgstr "" - -# a67587f17e94415c818060b3ad6b152a -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:23 -msgid "" -"A map is a means to communicate information (as well as new ideas) tothe " -"audience. We use symbology to convey the contents of our data so it can be " -"easily understood. When we create a map layout, we go one step further - we " -"present your map so that it becomes a means of information." -msgstr "" - -# 2fdfd606c6eb4d5790d5a1bf2812614a -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:26 -msgid "" -"No matter what media we plan to distribute your map by (whether it’s printed " -"or sent over the internet), we must pay attention to how you compose your " -"map elements in the layout. In this module we will discuss the presentation " -"of printed maps, and create our very own." -msgstr "" - -# 6dce0fc89a2f4a1793c0647543e9ffc0 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:30 -msgid "7.1 The Map Composer" -msgstr "" - -# 21d808a46f814c2ba79f311ba372fe05 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:32 -msgid "" -"The QGIS Map Composer allows you to prepare it for printing. Apart from the " -"map, you are able to add additional information such as images, labels, " -"legends, and scalebars." -msgstr "" - -# 461efc28a96f4e5f960e346e6608d299 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:34 -msgid "" -"Let’s start with some data in the Sleman regency that has already been " -"symbolised. Open the project named **print\\_2\\_11.qgs** in the **qgis/** " -"directory." -msgstr "" - -# a8f9216e83ad4b42aea6850698dad0be -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:39 -msgid "" -"This map shows some familiar layers from the previous module. We have the " -"roads and vegetation of Sleman, along with the three impact zones from a " -"Merapi eruption model." -msgstr "" - -# eb1cf76f8b084ac7939189cf4f8c9163 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:41 -msgid "" -"Let’s see how we can use Map Composer to adjust the layout and prepare this " -"map for printing." -msgstr "" - -# 76dec390d88845f8947546a368e163a5 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:43 -msgid "" -"Go to :menuselection:`Project ‣ New Print Composer`. Then, give an unique " -"title name for your layout, for example: :kbd:`My Layout 1`. Click :guilabel:" -"`OK`, then a new window will load that looks like this:" -msgstr "" - -# f06598b895ce4900acc74340dc2d826f -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:48 -msgid "" -"This is the window where you can compose the layout of a map that you want " -"to print. The blank white area is your “canvas”.It is a model of the paper " -"you are going to print out. You can put various elements onto this canvas, " -"such as your map (obviously), a title, scalebar, and legend. These are " -"elements commonly used on printed maps." -msgstr "" - -# e2c4f07482ad49858942cad61121c29e -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:51 -msgid "" -"Take a look at the right panel. In Composition tab, you change paper size, " -"number of pages, and quality of output." -msgstr "" - -# 09bfda9a429b4e569144d3680027ea2b -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:56 -msgid "" -"Take a look at the icons on the left of the window. We will use some of " -"these as we lay our map out, so here’s an overview of what they do:" -msgstr "" - -# 94f2085d917d47769568bfed1a7b1dff -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:59 -msgid "" -"**Add New Map** will add a map element. This is what we will use to add the " -"map from our project into our print layout. It should be noted, however, " -"that if we change the map in our QGIS project, it will not update the same " -"map that we have added to our print composer, as we shall see later." -msgstr "" - -# 55bdc3eb433a4c108bd61ad8f56e4058 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:65 -msgid "" -"**Add Image** allows us to add a picture. You can add a company or " -"organisational logo, or simply display images from a particular location. " -"You can also add an image of a compass (to point North)." -msgstr "" - -# 6dec62e07f0041efb0e4c5dfa31b9f71 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:70 -msgid "" -"**Add New Label** is used for adding text to the layout, such as titles or " -"other information." -msgstr "" - -# 2dbc53c00d21438791c65c626728f761 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:73 -msgid "" -"**Add New Legend** is for adding a legend, which will conform to the active " -"layer in the QGIS window." -msgstr "" - -# 9f4c0c5ac0c54fce8eb0126f95e6c525 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:76 -msgid "**Add New Scalebar** is used to add a scale to the layout." -msgstr "" - -# 4c175906300a4623a3f4298d50528e26 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:78 -msgid "" -"**Add Ellipse/Triangle/Rectangle** is used to add one of these geometric " -"shapes. For example, this might be used to indicate special areas or " -"highlight things on the map." -msgstr "" - -# b2e28a5caafa4141b840423c862b3c59 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:83 -msgid "**Add Arrow** is used to draw an arrow on the map layout." -msgstr "" - -# bd36208322004c2c831fe596d7b61d55 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:85 -msgid "" -"**Select / Move Item** allows us to choose and move the elements that are in " -"the map layout. With this tool selected, you can right-click on an element " -"to lock its position." -msgstr "" - -# 351ef7de74734085a2fa9695e58a2323 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:92 -msgid "7.2 Adding a New Map" -msgstr "" - -# ec169a7b164c47898f753370b2f5da28 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:94 -msgid "" -"In the Print Composer window, click on the :guilabel:`Add new map` button." -msgstr "" - -# c94d75eb367445eba1d8e96f42a89829 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:100 -msgid "Next, click and drag your mouse across the canvas, creating a box." -msgstr "" - -# 7750223794ae47cd88ac7f2805ec5baa -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:100 -msgid "Your map layout should look similar to this when you are done:" -msgstr "" - -# 1d7802cb69074e3f91d64f3cb48f36a0 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:105 -msgid "" -"If you are not happy with the placement of your map, you can drag the " -"corners to change the size, or drag the entire element around the canvas." -msgstr "" - -# 2e5e0f1a0e944572b6eb635beefd65b4 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:107 -msgid "" -"Once you are happy set the scale of your map by going to the :guilabel:`Item " -"Properties` tab on the right panel." -msgstr "" - -# 9ed8bd026d1e48b393dac68491c03de1 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:112 -msgid "" -"Edit the Scale and press :kbd:`Enter`. You’ll see that the scale (zoom " -"level) of the map element changes. A scale of about 200000 should be good " -"for this project." -msgstr "" - -# be185f4e1e5243e19d5bcacbe7c32a0c -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:114 -msgid "" -"Add a frame clicking the box next to :guilabel:`Frame`. Configure the frame " -"color and border thickness." -msgstr "" - -# 522e5e2121a24c879381a10a086a2eef -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:120 -msgid "" -"When you change the scale some parts of your map may become invisible. Click " -"on the :guilabel:`Move item content` button and drag the map so that it is " -"all visible." -msgstr "" - -# f0aeb75a849447e992309b48d1c5f753 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:127 -msgid "7.3 Adding a Title" -msgstr "" - -# 18870da7954543129e01163e64f335ab -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:129 -msgid "" -"Now we’ve got the most important thing added to our map layout - the map! " -"But let’s add some additional elements to make it more informative." -msgstr "" - -# 7c697b55c15146d59ceb864a832793a8 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:131 -msgid "" -"Let’s add a title to our map. Click on the :guilabel:`Add new label` button." -msgstr "" - -# 29a67bbd800241ce9e07c2432bfb5785 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:136 -msgid "" -"Adjust the size of the element. We will edit the text and the text " -"properties in the panel on the right." -msgstr "" - -# 9392827f204a4020bca0c8868e1b927a -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:138 -msgid "" -"Click the :guilabel:`Font` button and change the text size to 18 and make it " -"bold. Change the aligment to :guilabel:`Center`. Lastly, add the following " -"text, or create your own:" -msgstr "" - -# 3cfa7751004e42be8fc03d47bd67a2e4 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:147 -msgid "Your map layout should now look similar to this:" -msgstr "" - -# 963226199c074165b6e8a12f7c0abecc -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:154 -msgid "7.4 Adding a Scale Bar" -msgstr "" - -# b4dfcf261ad54a3e8829c8bee4fefcb3 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:156 -msgid "" -"Let’s add a scale bar, so that anyone who looks at our map will have an idea " -"what size area this map shows." -msgstr "" - -# 12542969f5e94d4b8946be9e9358942b -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:158 -msgid "Click on the :guilabel:`Add scale bar` button." -msgstr "" - -# 7e936c63168f44d6b5f0c035b254869e -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:163 -msgid "" -"Draw the new scalebar element on your map. A good location for it is in the " -"lower left corner of your map layout." -msgstr "" - -# 9170e42e527f4f4d9d2f1340f970f7cc -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:165 -msgid "" -"Next we need adjust the scalebar options. Since our project is in a PCS " -"(Projected Coordinate System), our measurements are in meters. Enter the " -"following values in the scalebar options:" -msgstr "" - -# b2465c49b46347ad9793c3b591d31be9 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:170 -msgid "This should result in a scalebar that looks like this:" -msgstr "" - -# 50f2e5a8a64a4512a84ef614763d43fc -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:177 -msgid "7.5 Creating a Grid" -msgstr "" - -# e954515a915c4aaea0f629eee9ab019f -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:179 -msgid "Now let’s create a grid for our map." -msgstr "" - -# 7704b451c40e426085e64b8ffca14769 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:181 -msgid "Choose the :guilabel:`Select` tool and click on the map." -msgstr "" - -# 6e6e3571419548e1a00775237fe1cbb6 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:186 -msgid "" -"In the panel on the right you should see the word :guilabel:`Grid`. Click on " -"it." -msgstr "" - -# d906c7ebafc1417bbce481936b518821 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:188 -msgid "Click on the box + and enter the following values:" -msgstr "" - -# 2322a75ac71640aa80c7305bf6feb124 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:193 -msgid "" -"We used coordinate reference systems with UTM (metre) on the project QGIS " -"and all map layers." -msgstr "" - -# 098a60496c1f47bbba0311c20303f5be -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:195 -msgid "" -"Scrool down :guilabel:`Item Properties` dialog and Check the box next to :" -"guilabel:`Draw Coordinates` and enter the following values:" -msgstr "" - -# dfa297be7cb242529997a4c26aeaaa9f -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:200 -msgid "" -"Your map should now have a grid appear over it, which will look something " -"like this:" -msgstr "" - -# aa9c380ad69a483fbd160683d0b066ae -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:207 -msgid "Tips:" -msgstr "" - -# aeee591616bf401da37d1774b17510ee -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:209 -msgid "" -"Play around a little bit with coordinate format. You can change decimal " -"degree as the coordinate fromat or change it into Degree Minute format (DD " -"MM) or Degree Minute Second (DD MM SS)." -msgstr "" - -# 275577fa86db43c085e34399cb7e8f45 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:211 -msgid "" -"You can also adjust the coordinate placement. You can place the text inside " -"or outside the frame, and make the orientation either vertical or horizontal." -msgstr "" - -# 4b4c0578ed0f4fbb9b517397ea715ba4 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:213 -msgid "" -"Change the font type and font size by clicking :guilabel:`Font` in the panel." -msgstr "" - -# c555647988354764a68b08e013e6244f -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:217 -msgid "7.6 Overview Inset" -msgstr "" - -# bcef0757700c4cb8a40646ed035d8995 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:219 -msgid "" -"Next, let’s add an inset that gives viewers of our map a little more " -"information about what they are looking at." -msgstr "" - -# 77cbb28d209243428a0100649a15f404 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:221 -msgid "Click on the Map and go to :guilabel:`Item` tab." -msgstr "" - -# 4358bd4392fb495fb3e5887177d4bec2 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:223 -msgid "Check the box next to Map 0 item to lock the item." -msgstr "" - -# 64cede4e44a642338dc2fd4d49493d5e -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:228 -msgid "Minimize the Print Composer and go back into QGIS." -msgstr "" - -# 5f880af35b524ecd9bc11b8ae9f0c01a -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:230 -msgid "" -"Add the layer :guilabel:`Indonesia.shp`, which is located in **qgis/peta" -"\\_dunia**. Cllick :guilabel:`Zoom Full`." -msgstr "" - -# 98cc4368121e4b3eadfffba22fdf7efa -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:235 -msgid "The new layer will load." -msgstr "" - -# 95562374f4d44b5d8a8bb1a279e08908 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:240 -msgid "" -"Return to the Map Composer and create a new map with the :guilabel:`Add new " -"map` button." -msgstr "" - -# 9eb82305815a445c9b82e27dea29d66d -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:245 -msgid "Draw a small box on the right side of your map layout." -msgstr "" - -# 5e5c3db0c0bc4979876ff5c097f10132 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:247 -msgid "" -"7. The current view of your QGIS project will appear in the new map element " -"(but notice that the old map element doesn’t change. It’s because we locked " -"the Map 0 in :guilabel:`Item` tab). Add a frame for the inset, so it will " -"look like this:" -msgstr "" - -# 6f41904df71b46c59e0fa485b593f68b -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:255 -msgid "7.7 Adding a Legend" -msgstr "" - -# 434f33a39a13462b87b6fb18c916d784 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:257 -msgid "" -"Now let’s add a legend so that viewers of our map will know what our " -"symbology represents." -msgstr "" - -# cc73008255b741efa1972a2d04c037c8 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:259 -msgid "Click on the :guilabel:`Add legend` button." -msgstr "" - -# 94560aebf59343838daab691ce93712e -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:264 -msgid "" -"Draw a box in the remaining empty space on your map layout. You will see a " -"legend with symbologies shown in a list." -msgstr "" - -# 56573e23eaca4aafa326bde9ca8b7ea5 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:266 -msgid "" -"3. In the panel on the right, click on :guilabel:`Legend items`. Uncheck :" -"guilabel:`Auto update` and use the edit button to change the names on the " -"legend. Use the :kbd:`+` and :kbd:`-` buttons to add or remove items from " -"the legend. Choose which elements are important to include." -msgstr "" - -# 027f901e0e44452eaba6674e8baf998d -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:272 -msgid "Our legend look like this:" -msgstr "" - -# e3e48782ff564808a087df741a6a7a8f -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:277 -msgid "When you are finished, your map layout should look similiar to this:" -msgstr "" - -# fa957116383b4978bb89a772540f156f -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:283 -msgid "" -"For save your map composer that you created, you can click on the :" -"menuselection:`Composer > Save Project`.So if you open the project QGIS and " -"you want use map composer that you saved, click on :menuselection:`Project > " -"Print Composer > My Layout 1`" -msgstr "" - -# 870fcd7f27ff4a9798dd63193d2c8dad -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:287 -msgid "7.8 Printing the Map" -msgstr "" - -# e08f87ec51954d939961891d54b48563 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:289 -msgid "" -"Lastly, you can print your map. Simply click the :guilabel:`Print` button " -"and follow the dialog." -msgstr "" - -# 600663e8aca74a8cb992fa38c9a7f97a -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:294 -msgid "You may also save the map as PNG image." -msgstr "" - -# ced815bf2d66424e89d9d4fee6408013 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:299 -msgid "" -"Additionally you can save the map as a PDF, which you can easily send over " -"email or print later when you have a chance." -msgstr "" - -# abcdf141290a4237831e54b01b32151e -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:304 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-08-Using_InaSAFE.po b/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-08-Using_InaSAFE.po deleted file mode 100644 index 445ad95e..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/qgis/Chapter-08-Using_InaSAFE.po +++ /dev/null @@ -1,1037 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 48e23f2f45bf48f7afb33785711cf916 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:10 -msgid "Chapter 8 Using InaSAFE" -msgstr "" - -# 6a43e49e7f844da0a3b31d0ba4167cb4 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:12 -msgid "**Learning Objectives**" -msgstr "" - -# 863bfa89e4634227af8d76b6b8f522c3 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:14 -msgid "Understand Hazard, Exposure and Impact" -msgstr "" - -# 8b68d36545a945c7a15e2c8c259b935f -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:15 -msgid "Learn InaSAFE interface" -msgstr "" - -# a0da77c6e77d4dd6b809f78889705fb3 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:16 -msgid "Run InaSAFE for Infrastructure" -msgstr "" - -# 6ed76ded86cf4fdb88d6c6c776b41215 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:17 -msgid "Use InaSAFE OpenStreetMap downloader" -msgstr "" - -# b12d99d86b1d4c0c99f3acec6df9336a -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:18 -msgid "Add keyword metadata" -msgstr "" - -# 59fcb9234237423ea0ab2d58b4801cb0 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:19 -msgid "Set outline impact analysis" -msgstr "" - -# af6a8eca81b440359814af047f063611 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:20 -msgid "Run InaSAFE for Population" -msgstr "" - -# c4cc23d7d2d24f38bc60296b03a7d73b -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:21 -msgid "Use aggregation layer" -msgstr "" - -# d74f973bf8c04d52b261893640d72d41 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:22 -msgid "Customize minimum needs" -msgstr "" - -# e8864d6adde74d9c8632e94fb767bf24 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:23 -msgid "Print InaSAFE Result" -msgstr "" - -# f1a6997a0bc748a49ae6e11c805d831b -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:24 -msgid "Save Impact Result data into new layer" -msgstr "" - -# ce3972d82a7c439fbac0060b8658da01 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:26 -msgid "" -"InaSAFE provides overviews of potential disaster scenarios, of their " -"outcomes, as well as map which can aid decision makers when disaster " -"strikes. In this chapter we will learn about how to use InaSAFE along with " -"other usefull features in InaSAFE for flood hazard scenario. If you interest " -"to learn more about InaSAFE with other hazard beside flood, you go and learn " -"in `InaSAFE website `_." -msgstr "" - -# e762677092844199a1e05fdc695adcca -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:33 -msgid "8.1 Hazards, Exposure and Impact" -msgstr "" - -# 8c59a89729114a6ca60c3b922f18ee2c -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:35 -msgid "" -"Let’s begin by reviewing he inputs and outputs of InaSAFE – **hazard**; " -"**exposure**; and **impact**. These terms are important for you to remember " -"because the analysis process depend on these three things." -msgstr "" - -# 6bf6484971344761b4149388734c55a3 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:39 -msgid "" -"**Hazards** (also called disasters) are what we call the data layers that " -"describe the extent and magnitude of natural events (such as earthquakes, " -"tsunamis, volcanic eruptions) that could potentially cause an event or " -"series of events that threaten and disrupt the lives and livelihoods of " -"people." -msgstr "" - -# 5788f342046649a8a89fcebe7173c848 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:44 -msgid "" -"In general, the hazards data we use in InaSAFE represents a single hazard " -"scenario. A scenario means that the hazard:" -msgstr "" - -# ee970ca1500344e48a235059163729bc -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:47 -msgid "is at a particular location" -msgstr "" - -# 6a27f76b8ba4474f9f8623e494c323ad -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:48 -msgid "has a measured intensity" -msgstr "" - -# d9ce220965de46ac819c74b6e85762ec -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:49 -msgid "has a measured duration" -msgstr "" - -# 892e876531d746a19da3feba0d1059e1 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:50 -msgid "has a certain time frame" -msgstr "" - -# 8617209e7a4540969347140537850b70 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:52 -msgid "" -"**Exposure** data represents things that are at risk when faced with a " -"potential hazard. This can be man-made features such as public buildings, " -"houses, roads and bridges, or it can be so-called natural features, such as " -"population, rice paddies and lakes. These exposed elements can be divided " -"into various categories, including physical elements (houses, power lines), " -"economic elements (agricultural land, access to employment), social elements " -"(vulnerable groups, population count), and environmental elements (air, " -"water, plants and animals)." -msgstr "" - -# 66c515711b53433c9bfe132de2028dbb -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:60 -msgid "" -"**Impact** is the result we get after InaSAFE processes the effect of the " -"hazard data upon the exposure data. For example, if there is an earthquake " -"model in Lembang, and we process it against building data in Bandung, our " -"impact layer may show those houses that would be severely damaged, those " -"somewhat damaged, and those mildly damaged. In other words, what goes in to " -"InaSAFE are hazards and exposure. What comes out is impact." -msgstr "" - -# 7ca918d31348404693ba657b2ea41def -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:67 -msgid "8.2 The InaSAFE Interface" -msgstr "" - -# 029a15cfdf5c4ad8bb218985c6dc950c -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:69 -msgid "" -"Before we run any scenarios, let’s take a closer look at the InaSAFE " -"interface." -msgstr "" - -# 942fe841940d45b9bba082344fde3a24 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:71 -msgid "" -"First, make sure you’ve installed the InaSAFE plugins. Follow the plugin " -"instructions in :ref:`chapter 3 `. Find and install the " -"plugin called InaSAFE." -msgstr "" - -# 41a498a020014dd9a5bb5e7190fd0335 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:74 -msgid "Open a new project in QGIS." -msgstr "" - -# 67b5e2d2968d4dde9840de5dbf46dd32 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:76 -msgid "" -"If the InaSAFE toolbar is not visible, right-click on the toolbars and make " -"sure that :guilabel:`InaSAFE` plugin is checked. The toolbar looks like this:" -msgstr "" - -# 3de4eb85f17b4f55b53431d30d2bdc1d -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:82 -msgid "" -"To show the InaSAFE panel, click on the :guilabel:`Toggle InaSAFE dock` " -"button." -msgstr "" - -# 2f0f82b3ac414a9fb8c43071072ce5b5 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:87 -msgid "" -"Just like QGIS toolbars, you can drag and drop the InaSAFE dock panel to " -"change its position on the QGIS interface. You can pull it away as a " -"separate window, or place it below the Layers panel. It’s convenient in its " -"location on the right side of QGIS, so we will leave it there." -msgstr "" - -# c1e343b43e5448d19bfc16d5ef1d7894 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:95 -msgid "" -"The InaSAFE panel consists of three parts: Questions, Results and Buttons. " -"The questions are mixed in with dropdown boxes - this is where we establish " -"our input data and define the scenario that we want InaSAFE to process. The " -"purpose of InaSAFE is to make your impact analysis very simple and easy to " -"do. The Questions section provides a simple way for you to formulate what " -"you want to know. All questions are created in the following format:" -msgstr "" - -# a524a3cdf6c948838417c1ad7cf76857 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:101 -msgid "" -"In the event of [**hazard**] how many [**exposure**] might [**impact**]?" -msgstr "" - -# 8fcb0633df3f4a65ba4a6de2c2a6cf22 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:103 -msgid "" -"For example: \"In the event of an earthquake how many buildings might be " -"destroyed?\"" -msgstr "" - -# 66c7096964ea4be89ed6ed6ded78e4c9 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:105 -msgid "" -"The Results section is filled in with information after InaSAFE is run, as " -"we shall see. The buttons at the bottom allow us to run a scenario, print " -"and access help." -msgstr "" - -# cc0ffdd6c967404f8b5a9236801f782a -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:109 -msgid "8.3 Run InaSAFE for Infrastructure" -msgstr "" - -# 7bf4196fb9cc420e84e900b52b30664c -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:112 -msgid "8.3.1 Adding Hazard Data" -msgstr "" - -# aaa6965bc25246fca965b27b20cf6754 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:114 -msgid "" -"We will learn about how to using InaSAFE to run impact scenario based on " -"Infrastructure data. Before we started let start how to add hazard data. " -"Hazards can be represented by vector layers or by raster layers. Remember " -"that raster layers are like images with many pixels, and each pixel " -"represents some data about an area on the ground. A raster that shows " -"elevation, for example, will contain pixels with different values based on " -"the altitude of the location. Similarly, a raster that represents a flood " -"will contain the depth of the flood in every pixel in the raster." -msgstr "" - -# aa364b7ac05e49f9acf233755fd09768 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:122 -msgid "" -"Let’s begin by adding our hazard layer to QGIS. It’s a raster model of flood " -"in Jakarta." -msgstr "" - -# f7020fa33c8a4bddadb3ae93a548e998 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:124 -msgid "Click the :guilabel:`Add Raster Layer` button." -msgstr "" - -# b529ee1efb534174aafd681a7faf3822 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:129 -msgid "" -"Open :file:`flood_hkv_current.tif`. This data is raster data (in .tif " -"format) which represents the flood prone area. The layer will look like this:" -msgstr "" - -# de785c5b329241fcae9d648fa81c51d2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:135 -msgid "" -"You will notice that the hazard drop-down box has been automatically filled " -"in the InaSAFE panel. This is because the data file has already been " -"prepared for us with keyword metadata (fancy words for settings) that tells " -"InaSAFE whether it’s a hazard or exposure layer. When we add the exposure " -"data, we will learn how to add these InaSAFE keywords ourselves." -msgstr "" - -# 6610c406133347948bd5cf54faf3bcbc -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:141 -msgid "8.3.2 Adding Exposure Data" -msgstr "" - -# feb7777ecf40430c984af98d8352d671 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:143 -msgid "" -"We can get the data from OpenStreetMap using OpenStreetMap Downloader. We " -"will get any OpenStreetMap data based on the current map extent in QGIS. If " -"your map extent displaying Indonesia, it will take a whole day according of " -"our internet connection. It better to zoom in in specific location to " -"minimize the bandwidth. Let’s learn how to use OpenStreetMap Downloader in " -"QGIS to get OpenStreetMap data." -msgstr "" - -# d96dfc29f9754c65ad86ff7746d10d21 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:149 -msgid "Click on :guilabel:`OpenStreetMap Downloader` button." -msgstr "" - -# fad061036e9449b698b720c6dcc3adcc -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:154 -msgid "" -"In the *Feature Types* you can choose all the OpenStreetMap data or specific " -"data that you want download such as :guilabel:`building polygons` and :" -"guilabel:`Roads`. Also you can download :guilabel:`political boundaries` and " -"select level administration in your area such as RW Jakarta is level 8." -msgstr "" - -# dfdbf074c8ca40a7bd9c1e9cd3879c22 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:159 -msgid "" -"Set you *output directory* to the destination you want by clicking “…” " -"button on the right side." -msgstr "" - -# 49e36c56d3114227b464e3d13aef470e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:164 -msgid "" -"If you want to use some prefix, for example :kbd:`jakarta` you can type in :" -"guilabel:`File name prefix` area." -msgstr "" - -# 238fc117ad67409092539f1d38926ba4 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:167 -msgid "" -"We can download all the map canvas extent but it takes a long time. " -"Otherwise if you want to download specific area, click on :guilabel:`Drag on " -"Map` button and create a bounding box by dragging it to set download area" -msgstr "" - -# 210ba62d1b7b4cd0b5d5f2101da14dd5 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:171 -msgid "Click on :guilabel:`OK` and wait until download finish." -msgstr "" - -# 854ad4e553d640dfb339e5605aafa1bc -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:176 -msgid "" -"You can hide the **Roads** by clicking the box next to :guilabel:`Roads` " -"layer list." -msgstr "" - -# 94276b31ae7441589dd60a241932008b -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:179 -msgid "8.3.3 Adding Keyword Metadata" -msgstr "" - -# b6366d960af24ee19fe2e8edde87beaf -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:181 -msgid "" -"In order for InaSAFE to know that our layers are hazard or exposure " -"datasets, we need to assign keywords to the layers using the InaSAFE keyword " -"tool. Let’s take a look at the keywords that have already been created on " -"the hazard layer." -msgstr "" - -# d636901fc1d249c3aebd3d955f7fc825 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:185 -msgid "" -"Select the :guilabel:`buildings` layer in the Layers panel, and click on " -"the :guilabel:`Keywords Creation Wizard` button." -msgstr "" - -# e4ba92b904814617a79c011147530f07 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:191 -msgid "" -"In the *InaSAFE Keywords Creation Wizard* window, we can follow the existing " -"instructions step by step and change several keyword fields." -msgstr "" - -# c4fa8f37ab034411942f9f349b9dcfed -# 2275b32ed9ab4861847b83bfa3eecd50 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:197 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:301 -msgid "Click :guilabel:`OK`." -msgstr "" - -# aa45f087bf224b1ebcfd67ac4a740a12 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:199 -msgid "Select the :guilabel:`Roads` layer and open again the keyword editor." -msgstr "" - -# 54c6130be3b74db69c8dd2026c0d5d3b -# 17f9858ec40a4da7a0da46be1fbea8c6 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:201 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:303 -msgid "Notice that the layer now appears in the InaSAFE panel." -msgstr "" - -# 33c9f7596a244968a1e0d915ad5d4ac1 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:207 -msgid "8.3.4 Set Outline Impact Analysis" -msgstr "" - -# e7180d1397c14e45b86f9f847025ec5d -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:209 -msgid "" -"If you have a laptop with small ram, run InaSAFE for large area with so many " -"data will takes a long time to finish. To solve that, we can set the " -"analysis area to smaller area to make the analysis quicker." -msgstr "" - -# 46e5230ad48b434c90d759200a42f557 -# 0fa6a2ec393a4854b58547b8b3109087 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:213 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:340 -msgid "" -"Select :guilabel:`Toggle Scenario Outlines` to showing analysis outline area." -msgstr "" - -# 3fe7a4284de14d009c4012a3305ea72f -# 132af9d8d9dd4823955c1b3fb8bfec10 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:218 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:345 -msgid "It will showing green box around in the map canvas." -msgstr "" - -# 9f3e8292be174ea1bdd4a3a624e92d4d -# d996d225a34147bd87fc70e88666ac3e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:223 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:350 -msgid "" -"This green box is the analysis area that InaSAFE will calculate all the data " -"inside the green box." -msgstr "" - -# 18c5e5f70143468288cad7f249eff409 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:225 -msgid "" -"To change the analysis area, click :guilabel:`Set analysis area` button." -msgstr "" - -# 52f9e47ced3b4258800e6343d818a565 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:230 -msgid "" -"Click :guilabel:`Use intersections of hazard, exposure and this bounding " -"box` and click on :guilabel:`Drag on map` button and create a box to set " -"analysis area. This will create blue box around map canvas." -msgstr "" - -# 87c33159809d4a45ae4cb971670f782f -# 06e7e81e68984edb8cff2de5b3520b0e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:237 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:363 -msgid "After that click :guilabel:`OK`." -msgstr "" - -# 3d113f2856f644729f4d942d2fd546b1 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:240 -msgid "8.3.5 Impact Analysis" -msgstr "" - -# 904e9dbe8ed2441b88c0fe520f3a91c2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:242 -msgid "" -"Now our hazard and exposure data are set in the InaSAFE panel, because the " -"appropriate keywords have been added to our layers. Note that if we were to " -"add a second exposure layer to our project, we would be able to choose which " -"exposure layer we wanted from the InaSAFE drop-down menu. The same applies " -"to hazard layers." -msgstr "" - -# 9d3c06f28fe94184b476adcc1b4074a0 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:248 -msgid "" -"The third drop-down box is the impact function (“Might”). This concludes our " -"question, and defines the function that InaSAFE will run behind the scenes. " -"InaSAFE developers have written many of these functions to analyse all sorts " -"of hazard and exposure layers. The function that is selected for us here " -"will process the hazard and exposure layers spatially to determine how the " -"exposure layer will “be flooded.”" -msgstr "" - -# 140f737d16344299bd71804815151f79 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:254 -msgid "" -"Click the :guilabel:`Run` button at the bottom to start the impact analysis. " -"At the end of the process, the statistics will be displayed in the Results " -"section, and a new layer will be added to the Layers panel that describes " -"the result of the analysis. The map will distinguish between buildings that " -"are affected and those that are not." -msgstr "" - -# 21ab84b1e89f4bf6bc7aef270802b341 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:263 -msgid "8.4 Run InaSAFE for Population" -msgstr "" - -# d219b42c57984b21836087217fdbdcae -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:265 -msgid "" -"In this section we will learn how to run impact analysis for population data " -"with InaSAFE. We still use raster hazard data for flood in Jakarta but we " -"will add another exposure data which is population from AsiaPop." -msgstr "" - -# c41b1f3822f441c2b5aaee415cbaa569 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:270 -msgid "8.4.1 Adding Exposure Data" -msgstr "" - -# 207b2643e2c44d0fb32b97ca591faa42 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:272 -msgid "" -"We already learn about how to symbolise this data in previous chapter " -"(chapter 6), so if you think the colour of this AsiaPop’s data different " -"than yours, you may need to symbolise it." -msgstr "" - -# 4352f1023586415f943c4921e129837a -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:276 -msgid "Click :guilabel:`Add Raster Layer` button and add :file:`popmap10_all`." -msgstr "" - -# f8a32a99d6604768871410a94220c775 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:278 -msgid "Change the layer order like this:" -msgstr "" - -# 07d7087f52e843e8b93d6aa98464ce1f -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:283 -msgid "" -"You can hide the vector data such as roads and building to create more clear " -"view in map canvas." -msgstr "" - -# a6b9d8131af94bdd86e87b901eec5845 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:286 -msgid "8.4.2 Adding Keyword Data for Population" -msgstr "" - -# 825e3a7e58be41ef92d586dbd967d914 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:288 -msgid "" -"Select the **popmap10\\_all** layer in the Layers panel, and click on the :" -"guilabel:`Keywords Creation Wizard` button." -msgstr "" - -# ce35274c095a42aabc177781b344006d -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:294 -msgid "" -"In the *Keywords Creation Wizard* window choose exposure as category layer, " -"we can follow the existing instructions step by step and change several " -"keyword fields. The last step, you can fill the :guilabel:`Title` with :kbd:" -"`people`." -msgstr "" - -# 021d9d8ee163436b8d6ad6d28ae08ded -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:309 -msgid "8.4.3 Using boundary as aggregation layer" -msgstr "" - -# 8f85713404c7433a8fdf4ef1e02e8722 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:311 -msgid "" -"We can let InaSAFE to give impact result to us according whole area or " -"divide it by administration boundary. It mean that the InaSAFE will provide " -"impact analyst result into each administration area that we provide. This " -"method will help us to know more specific result for each area, so we can " -"know how many people that might be affected and how many logistic we should " -"prepare for each administration area. To do this, we need to define " -"aggregation layer first using :guilabel:`Keyword Creation Wizard`." -msgstr "" - -# 16266f36dc3640bb92cc69a75e5df12e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:318 -msgid "" -"Click :guilabel:`Add Vector Layer` button and add :file:" -"`district_osm_jakarta.shp`." -msgstr "" - -# b2e716cd41b742469ef7275f81dbc08f -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:320 -msgid "" -"Select the **district_osm_jakarta.shp** layer in the Layers panel, and click " -"on the :guilabel:`Keywords Creation Wizard` button." -msgstr "" - -# 9923c26a84154a1f8afc2f344fb8e770 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:323 -msgid "" -"In the *Keywords Creation Wizard* window choose aggregation as category " -"layer." -msgstr "" - -# 6d5796711b7e45268f1e754e3b8da4a9 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:325 -msgid "" -"After that, you can follow the existing instructions step by step and change " -"several keyword fields. The last step, you can give the Title with :kbd:" -"`District Jakarta`." -msgstr "" - -# 89367be13d034901adb24897d0f8858d -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:333 -msgid "8.4.4 Set Outline Analysis" -msgstr "" - -# 016af56148e64185a8129c6d73425411 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:335 -msgid "" -"We already set the analysis area for calculating impact for building. This " -"time we will set the analysis area for population data." -msgstr "" - -# 48a44ef116ec445c857d6e26e791effa -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:338 -msgid "" -"Right click on :guilabel:`flood_hkv_current_jakarta` layer and click :" -"guilabel:`Zoom to Layer`" -msgstr "" - -# 1b9839425de346bfae40d247a5fcecfe -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:352 -msgid "To change the analysis area, click *Set analysis area* button." -msgstr "" - -# 97ad16634590429fa444e37c6a2657eb -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:357 -msgid "" -"Click :guilabel:`Drag on map` button and create a box to set around the " -"**flood\\_hkv\\_current\\_jakarta** area. This will create blue box around " -"map canvas." -msgstr "" - -# 1fad52d1ed964e1c8077408048b3c20d -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:365 -msgid "" -"We will run InaSAFE with Jakarta boundary as aggregation layer. To do this, " -"simply change :guilabel:`aggregate result by` in InaSAFE panel into district " -"boundary." -msgstr "" - -# 9dcd26bf6b424010bcdf64b8cf2c0b65 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:371 -msgid "" -"Now click, :guilabel:`Run` to calculate impact analysis and wait for a " -"moment." -msgstr "" - -# 5e65788dae974792933a0d6676348631 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:376 -msgid "" -"You will get impact result in the InaSAFE panel in the right side divided by " -"5 municipal in Jakarta." -msgstr "" - -# c96beac937394d7cad3f28d1b9df3897 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:383 -msgid "8.4.5 Configure Minimum Needs" -msgstr "" - -# ff93f93d03294101b714cb3b52da2b1f -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:385 -msgid "" -"When you scroll impact result from running InaSAFE scenario, you will notice " -"that there are some statistic that show how many rice, drinking water, clean " -"water, family kits and toilet for each municipals in Jakarta. It called " -"minimum needs per week for each people evacuated. The purpose of this " -"minimum needs is to provide quick method calculating support requirements " -"(in terms of food, water, etc) for displaced persons." -msgstr "" - -# c4dd3dd4dcdc4fa1bc7174fcaf1476af -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:391 -msgid "" -"The minimum needs (by default) are based on ‘Perka 7/2008’ BNPB according to " -"the following default formulas:" -msgstr "" - -# 8c731cc666734e0c87feaefa4dc30d84 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:394 -msgid "400g rice per person per day (2.8 kg per week)" -msgstr "" - -# 4a711bc4029a4308aec3cb2abe9c34df -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:395 -msgid "2.5l drinking water per person per day (17.51 L per week)" -msgstr "" - -# 8f5ed1565c354288b5d640a1615cd0cf -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:396 -msgid "15l clean water per person per day (105 L per week)" -msgstr "" - -# a9d50be902e34a28884e7d9fb497a6b5 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:397 -msgid "" -"One family kits per family per week (assumes five people per families which " -"not specified in perka)" -msgstr "" - -# 278ce869883f44caa193ab465644762e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:399 -msgid "20 people per toilet" -msgstr "" - -# dbc1578b16f941f8930bb798b06210da -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:401 -msgid "" -"If you feel not satisfied with these configuration, you can define your " -"custom minimum needs for your own area using *Minimum Needs Configuration*" -msgstr "" - -# 874e2996217a4e72990359c9b83041d2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:404 -msgid "" -"Click in :menuselection:`Plugin → InaSAFE → Minimum Needs Configuration`" -msgstr "" - -# 20591389f3cd498eb96f5332392179f2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:409 -msgid "" -"*Minimum Needs Manager* Window will appear. You can see in the :guilabel:" -"`Profile` selection there are 3 profile that already defined, **BNPB_en**, " -"**Philippine Minimum Needs_en**, **BNPB_id**, and **Tanzania**." -msgstr "" - -# 2c543278d8254af3b43c17849557a2fd -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:416 -msgid "" -"If you want to change the default minimum needs for each item in each " -"profile, simply select an item that you want to change and click" -msgstr "" - -# 8ce0dada049b49f38e49f88767ae6d56 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:422 -msgid "button in the right upper side of the window." -msgstr "" - -# 6c255de04c5445ccb228f25c43e504c3 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:424 -msgid "" -"You will enter *Resource editor* and from these editor, you can add or " -"modify resource by fill each field that you think it’s important" -msgstr "" - -# 2373052e01244b82a24c53492ee7780b -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:427 -msgid "" -"Click :guilabel:`Save Resource` if you already change the value from an item " -"or click :guilabel:`Discard Changes` if you didn’t change anything." -msgstr "" - -# f5f1ead51e4a41f381b0886ee948faad -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:430 -msgid "" -"If you want to create your own custom minimum needs, click :guilabel:`New` " -"in the bottom side of the window and you can start adding new item by click :" -"guilabel:`+` button in the right upper side of the window to open *Resource " -"editor.*" -msgstr "" - -# 4d2bd3d8d6c843309998a549e9288831 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:434 -msgid "" -"Click :guilabel:`Save` after you add several item to your custom minimum " -"needs." -msgstr "" - -# afbf2dfb31734cb5949e60da9ad389fb -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:437 -msgid "8.4.6 Run Impact Analyst with Modified Minimum Needs" -msgstr "" - -# f4758301ce144412bba8d0714b12e6b3 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:439 -msgid "" -"After you create your custom minimum needs you can run InaSAFE with your own " -"minimum needs:" -msgstr "" - -# 59c1f7f896534007b5d97d11ba5d63e8 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:441 -msgid "Go to :menuselection:`Plugins ‣ InaSAFE ‣ Minimum Needs Configuration`" -msgstr "" - -# cb8e1f4069974d408271918dcb8c5e56 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:443 -msgid "" -"In *Minimum Needs Manager* Window, select your custom profile in Profile " -"selector. After that close the *Minimum Needs Manager* Window." -msgstr "" - -# 10e381046cdf404980480c905409a532 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:446 -msgid "" -"Click :guilabel:`Options…` in InaSAFE Panel to open *InaSAFE impact function " -"configuration*" -msgstr "" - -# 650f7517871e43a7b13b913b40de8f76 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:451 -msgid "" -"Click :guilabel:`Minimum Needs` tab to see if your own Custom Minimum Needs " -"already set." -msgstr "" - -# 1fae5c91c3c749f08bb8c7ab1154e59d -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:453 -msgid "" -"Click :guilabel:`Run` to see the InaSAFE result with your custom minimum " -"needs." -msgstr "" - -# 77b8bd62a3004ea98aafcc3a4ba5a06e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:456 -msgid "8.5 Print InaSAFE Result" -msgstr "" - -# 54d8955d75f340ed9c5e8424cd54495a -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:458 -msgid "" -"The data displayed on the screen can be saved to a PDF file by clicking :" -"guilabel:`Print` at the bottom of the InaSAFE panel. Before we print the " -"InaSAFE result, we can improve our impact map by editing the symbology in " -"QGIS. Styles can be changed, other relevant layers can be added, and the " -"layout can be changed using the Print Composer." -msgstr "" - -# ef610b6fdd3b45ad976f4df5226dd682 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:463 -msgid "Click on the InaSAFE result layer and click :guilabel:`Print`." -msgstr "" - -# 61ae2aa775934f369679c17c4546d6e2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:465 -msgid "" -"A window will appear in which you can choose the extent to be printed. " -"Choose :guilabel:`Analysis extent` if you want to print the entire map " -"extent, or choose :guilabel:`Current extent` to print the analysis based on " -"the current view of the map." -msgstr "" - -# 89a538268f3148a6b7643246c0b0ba92 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:469 -msgid "" -"You may also choose a custom print template *a3-landscape-blue, a3-landscape-" -"orange, a3-portrait-blue, a3-portrait-orange, a4-landscape-blue, a4-" -"landscape-orange, a4-portrait-blue, and a4-portrait-orange*." -msgstr "" - -# 86f3d7f573894c23b47851ff1f20c916 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:474 -msgid "" -"If you want to add additional information before printing, click :guilabel:" -"`Open Composer`." -msgstr "" - -# 382949ba518d44f78329501f3a1d6fe3 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:476 -msgid "To save it in PDF format for printing, click :guilabel:`Open PDF`." -msgstr "" - -# fd74b476de6f4a8797ec2dc2a33010ad -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:478 -msgid "Choose your save location and click :guilabel:`Save`." -msgstr "" - -# dd77ed3a7b624ada841bba9d39470d83 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:483 -msgid "" -"After you wait for a while, InaSAFE will create 2 pdf output, first one is " -"the **map based** on your extent view and the second one is the **statistics " -"data**." -msgstr "" - -# fc7c4ff4a198497695e9b89665f91a5e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:490 -msgid "8.6 Save Your Results" -msgstr "" - -# d1cd2e09b1ca4134acfb8ba07a2407ab -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:492 -msgid "" -"You can save the impact layer that InaSAFE created, and you can save the " -"QGIS project to come back to it later, but note that the InaSAFE’s symbology " -"style cannot be saved. It will show you only black and white layer and you " -"need to symbolise again." -msgstr "" - -# 4c9b222d908447b0a7a785572fa12aea -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:497 -msgid "8.6.1 Save your InaSAFE result style" -msgstr "" - -# 850c4125c60f4d189d687b283187d88f -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:499 -msgid "" -"To get the style from your InaSAFE result, you need to save the InaSAFE " -"result’s style first." -msgstr "" - -# e14698936e9c482086a1fa10c3ed2a57 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:501 -msgid "" -"Right click on :guilabel:`Population which need evacuation`, and go to :" -"guilabel:`Properties`." -msgstr "" - -# 1f06e777d6a64e34b1d767beb915658b -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:504 -msgid "" -"Go to :guilabel:`Style` button on the bottom side the properties window and " -"click :guilabel:`Save Style …`." -msgstr "" - -# bf2f6b1456ba4dc0b4009950be6134c2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:510 -msgid "" -"Save your symbology style as :kbd:`population_result_style` and click :" -"guilabel:`Save button`." -msgstr "" - -# bfb1672fcc9b4a7fa75daf9eca085804 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:515 -msgid "" -"To save the newly generated layer, right-click on it in the Layers panel. " -"Click :guilabel:`Save As …`" -msgstr "" - -# 0944f84bc6ba4bd4a3452c1108dd9fc4 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:519 -msgid "8.6.2 Save InaSAFE Result layer" -msgstr "" - -# 65f60ecaaa1c454483558d9c3e82a082 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:521 -msgid "" -"After you saved your InaSAFE result style now you can save your InaSAFE " -"result layer and get the same style like the InaSAFE Result." -msgstr "" - -# ce7ed6bc076c48b1a8b2fed788ef8205 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:524 -msgid "" -"Right click on :guilabel:`Population which need evacuation`, and go to :" -"guilabel:`Save As…`" -msgstr "" - -# 727deb48e7154782a67b621432068ac2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:527 -msgid "" -"Click on :guilabel:`Browse` button and select a name and location for the " -"file. Click :guilabel:`OK`." -msgstr "" - -# 7cbbd4006ab7491ca8db00297e113ee7 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:530 -msgid "Load your saved layer using :guilabel:`Add Raster Layer` button." -msgstr "" - -# ba149d49c5ca4dcdaef48f0ccbcdf2e9 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:532 -msgid "" -"You will see black and white layer in map extent. Open the properties of " -"your saved layer to resolve this." -msgstr "" - -# c1a2324977024427b3a153e82606634d -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:535 -msgid "" -"Go to :guilabel:`Style` button on the bottom side the properties window and " -"click :guilabel:`Load Style…`" -msgstr "" - -# ee7393311f0f4d5db1b70a5369cc4eb2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:541 -msgid "" -"Select your :file:`population_result_style` and click :guilabel:`Open` " -"button." -msgstr "" - -# e363b7cd4ee7430b8744b3718d866e19 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:543 -msgid "" -"Now your saved layer will have the same style with your temporary InaSAFE " -"result layer." -msgstr "" - -# ebb6bff1ad454c5a9b607052b29e1d00 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:545 -msgid "" -"To use this style as default style you can click :guilabel:`Save as Default` " -"under :guilabel:`Style` button." -msgstr "" - -# f31cddc41395430fba19da6dc2874fc4 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:552 -msgid "8.6.3 Save Project" -msgstr "" - -# ca24adc8eb5e46138028f0dfbee254c0 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:554 -msgid "Click :guilabel:`Save As` button in toolbar." -msgstr "" - -# 2bb3e793786b493a8a2d61ad988fbfcf -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:559 -msgid "" -"Give a name to the project and put it in the directory where you want to " -"save your work. Then click :guilabel:`Save`." -msgstr "" - -# 003d724247c942e695bb9f89633c3a9a -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:565 -msgid "" -"Now you already learn about how to use InaSAFE from using InaSAFE Keyword " -"Wizard to define keyword attribute, how to run InaSAFE with InaSAFE dock and " -"Impact Function Wizard, how to modify minimum needs, and how to use OSM " -"Downloader to download OpenStreetMap data directly. InaSAFE it’s really help " -"use to know the impact of disaster and how we can create some plan if the " -"disaster happen in real life." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/qgis/index.po b/docs/i18n/en/LC_MESSAGES/training/qgis/index.po deleted file mode 100644 index f906db34..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/qgis/index.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# ada3d350d9f54bd7808ab430a9f6a51e -#: ../../source/training/qgis/index.rst:8 -msgid "QGIS and InaSAFE for Disaster Management" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/socialisation/datasets.po b/docs/i18n/en/LC_MESSAGES/training/socialisation/datasets.po deleted file mode 100644 index 8e80dd45..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/socialisation/datasets.po +++ /dev/null @@ -1,994 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 36010ba007eb41a4990cf90a641782b0 -#: ../../source/training/socialisation/datasets.rst:8 -msgid "Datasets" -msgstr "" - -# e983d89a332544f79a70ee6f30adfa99 -#: ../../source/training/socialisation/datasets.rst:9 -msgid "" -"The data used in this course is available for download at `data.inasafe.org " -"`_. Ask your trainer what data you will need to " -"download for the course, if it is not provided." -msgstr "" - -# ed67dfe299154f77a038f9c2bf6c2b55 -#: ../../source/training/socialisation/datasets.rst:13 -msgid "" -"If you are working through the training independently, use the following " -"data packages:" -msgstr "" - -# b79cecb932984affa6b2a9f5ffdf3179 -#: ../../source/training/socialisation/datasets.rst:16 -msgid "" -"`Introduction to QGIS.zip `_" -msgstr "" - -# 69f1a4b65e1f4925b3a304f1e252f898 -#: ../../source/training/socialisation/datasets.rst:17 -msgid "" -"`Run Basic InaSAFE v3.2.zip `_" -msgstr "" - -# a5ca7cea57764302be7f9d73afc651cd -#: ../../source/training/socialisation/datasets.rst:18 -msgid "" -"`Run Intermediate InaSAFE v3.2.zip `_" -msgstr "" - -# b497f80e79c3457eac9af237b024cdb2 -#: ../../source/training/socialisation/datasets.rst:19 -msgid "" -"`Other Hazards v3.2.zip `_" -msgstr "" - -# 3b74b71ab3b14971aaaa77f6af53bcd2 -#: ../../source/training/socialisation/datasets.rst:22 -msgid "Hazard data" -msgstr "" - -# 2dfc4e49849d489da14b1d6a287e3936 -#: ../../source/training/socialisation/datasets.rst:24 -msgid "Flood Model" -msgstr "" - -# 3482c3edd3de4024a9b9813d9bbc5cc2 -#: ../../source/training/socialisation/datasets.rst:26 -msgid "Jakarta_Flood_HKV_WGS84.tif" -msgstr "" - -# 83a1c82904364457b1bea91669f681a5 -#: ../../source/training/socialisation/datasets.rst:27 -msgid "A flood similar to the 2007 Jakarta event" -msgstr "" - -# 8f31b6f225884fd98ef3206f9adfef5d -# c3af48e8b9c14fd6a5fe1cc82828d45e -# f56b67e74a6341b599f306fa09298778 -# 71c115fcfe474a86a05fd25ec7b43227 -#: ../../source/training/socialisation/datasets.rst:28 -#: ../../source/training/socialisation/datasets.rst:76 -#: ../../source/training/socialisation/datasets.rst:104 -#: ../../source/training/socialisation/datasets.rst:241 -msgid "Raster" -msgstr "" - -# d354d5f099854c5b9da8e6b9795b87fb -# 1bd5dbb079214d6b9f8e0b6d77d3c131 -# 8b471e7ae400467e99360e3356da7d12 -# d2a1e8d3d6524b4cb0b7485afc1d6066 -#: ../../source/training/socialisation/datasets.rst:29 -#: ../../source/training/socialisation/datasets.rst:77 -#: ../../source/training/socialisation/datasets.rst:105 -#: ../../source/training/socialisation/datasets.rst:242 -msgid "Continuous" -msgstr "" - -# 21f6496f550f4e128547716930f216b2 -# aaeac556086648ed86c7b58b5807655a -# b86269697fe7452292fbe8c8bb29b7b8 -# 73cca060c9ad4372a08d829594b0081e -# 97c93d46df094e77a53923e10d3e33a6 -# 0a96e906f9d643acba1bc35dac49c375 -#: ../../source/training/socialisation/datasets.rst:30 -#: ../../source/training/socialisation/datasets.rst:54 -#: ../../source/training/socialisation/datasets.rst:78 -#: ../../source/training/socialisation/datasets.rst:106 -#: ../../source/training/socialisation/datasets.rst:182 -#: ../../source/training/socialisation/datasets.rst:205 -msgid "Single event" -msgstr "" - -# 149e8ffb6e764840b1edccba96b2666a -#: ../../source/training/socialisation/datasets.rst:31 -msgid "metres" -msgstr "" - -# 71423240e7dd4da4b533e82e993b5964 -#: ../../source/training/socialisation/datasets.rst:32 -msgid "HKV" -msgstr "" - -# 54be83fd656a41809f13f485a241669c -#: ../../source/training/socialisation/datasets.rst:33 -msgid "http://deltares.nl" -msgstr "" - -# 8db6ca876b79414a949513b606b91945 -# bb435b5eeb594694b3d76b619040bdfe -# e3dfc78fa1ad4741b1d57b968510fac6 -#: ../../source/training/socialisation/datasets.rst:34 -#: ../../source/training/socialisation/datasets.rst:81 -#: ../../source/training/socialisation/datasets.rst:108 -msgid "2012" -msgstr "" - -# 6e92a0b0135b4b618efee53552d7d935 -# c86d51d8f3ff403fa6db1633d14d3314 -# 57c4f2d9a4934c4cb7d29c2cd73baf04 -# 9047e418091a4132a6b1bbcefcc20aec -# 5cc543869f6e437da56fba93737f69a1 -#: ../../source/training/socialisation/datasets.rst:35 -#: ../../source/training/socialisation/datasets.rst:59 -#: ../../source/training/socialisation/datasets.rst:82 -#: ../../source/training/socialisation/datasets.rst:109 -#: ../../source/training/socialisation/datasets.rst:247 -msgid "" -"`Creative Commons by Attribution (CCbyA) `_" -msgstr "" - -# 8b3f3a12cda1444e804612f75f88284d -# f854b2b4571b454aadda00b02aa011bd -# 4ecc58d623c24a0a8a3642b9b81e8b91 -# 34a8d76958b64b8eaa3af2f166425b5b -# a99b2152cf1f4bdd9b69a62cbc18df65 -# afd4f76343504231bb1046a762f0aa45 -# cebe3920a6e74ef1a70ccd9d5832e4f3 -# 18f6bdd888194fa196dc1c8396615b0b -#: ../../source/training/socialisation/datasets.rst:36 -#: ../../source/training/socialisation/datasets.rst:60 -#: ../../source/training/socialisation/datasets.rst:269 -#: ../../source/training/socialisation/datasets.rst:270 -#: ../../source/training/socialisation/datasets.rst:313 -#: ../../source/training/socialisation/datasets.rst:379 -#: ../../source/training/socialisation/datasets.rst:406 -#: ../../source/training/socialisation/datasets.rst:407 -msgid "Jakarta" -msgstr "" - -# d70ec1b1dfd4424f85019618f1c9ea30 -#: ../../source/training/socialisation/datasets.rst:37 -msgid "" -"The flood model was created by scientists/engineers in coordination with DKI " -"Jakarta Public Works based on the 2007 flood conditions. The water depth is " -"the maximum depth occurring across the entire flooding period." -msgstr "" - -# 4c064772e98445329faed23ded14aee8 -#: ../../source/training/socialisation/datasets.rst:48 -msgid "Flood Footprint" -msgstr "" - -# ce981dda15c04eb58c8e71fda97007e0 -#: ../../source/training/socialisation/datasets.rst:50 -msgid "Jakarta_Flood_WGS84.shp" -msgstr "" - -# 0647ac50a2ec4cefb1503b753af32704 -#: ../../source/training/socialisation/datasets.rst:51 -msgid "A flood in Jakarta like 2013" -msgstr "" - -# cbdf09ed623b446f92d63407ee0b4b50 -# da97b471f1294e10bf082fa20df91193 -# a4a45d45937c4924acf9e476e0170395 -# 0bf12b1fb06d4cc7bdce602c88d25348 -# f9be5d2b9dc94edab737b56fec44ea96 -#: ../../source/training/socialisation/datasets.rst:52 -#: ../../source/training/socialisation/datasets.rst:132 -#: ../../source/training/socialisation/datasets.rst:180 -#: ../../source/training/socialisation/datasets.rst:203 -#: ../../source/training/socialisation/datasets.rst:390 -msgid "Polygon" -msgstr "" - -# d4d800075769493b8fc528a57af28cb6 -# 12b87bf9b81843cd905def804ebf9aab -# b562f43657eb4d0ea9b25edb827269b3 -# 4a77bd00a27b460d992c3fd45205abee -# e3d0f1af688e487a9ac7de1c7726d117 -# 308befd0204142d7a112cd6b0342feb6 -# 93b45815f08941b9ab3197dba46551f3 -# ed83577125e041689c3438abffc29055 -#: ../../source/training/socialisation/datasets.rst:53 -#: ../../source/training/socialisation/datasets.rst:133 -#: ../../source/training/socialisation/datasets.rst:157 -#: ../../source/training/socialisation/datasets.rst:181 -#: ../../source/training/socialisation/datasets.rst:204 -#: ../../source/training/socialisation/datasets.rst:281 -#: ../../source/training/socialisation/datasets.rst:354 -#: ../../source/training/socialisation/datasets.rst:391 -msgid "Classified" -msgstr "" - -# bca5770b8fdc4bdaaadfed12767505b5 -#: ../../source/training/socialisation/datasets.rst:55 -msgid "FLOODPRONE" -msgstr "" - -# 424e841f79ac4d3da1ddfe544f15ec9e -#: ../../source/training/socialisation/datasets.rst:56 -msgid "Wet (Yes), Dry (No)" -msgstr "" - -# 7046bbd47503481383981b566daecc3c -#: ../../source/training/socialisation/datasets.rst:57 -msgid "|OSM| and BPBD DKI Jakarta" -msgstr "" - -# 524ec28bc5e841f4ab7c5ed923a975fa -#: ../../source/training/socialisation/datasets.rst:58 -msgid "18 January 2013" -msgstr "" - -# 38012497a7204439baead6e0ce799f72 -#: ../../source/training/socialisation/datasets.rst:61 -msgid "" -"Along with sub-village boundaries that were mapped during the DKI mapping " -"project, this dataset was used to identify flood areas based on information " -"provided by the villages." -msgstr "" - -# d216a69e89644cceb05ea524ec2da149 -#: ../../source/training/socialisation/datasets.rst:72 -msgid "Earthquake" -msgstr "" - -# cea1c54c57c84170995439ef2260ab9b -#: ../../source/training/socialisation/datasets.rst:74 -msgid "Padang_EQ_2009_WGS84.tif" -msgstr "" - -# e77643b6c6744f6a8485fe193346d140 -#: ../../source/training/socialisation/datasets.rst:75 -msgid "Earthquake in Padang 2009" -msgstr "" - -# 3cabb942c1b2471da6d03c3bba736ff1 -#: ../../source/training/socialisation/datasets.rst:79 -msgid "MMI" -msgstr "" - -# 1a71cca2cfb3418185e392363a270048 -#: ../../source/training/socialisation/datasets.rst:80 -msgid "Badan Geologi and |GoA|" -msgstr "" - -# ba33bef128f2438489e58f0e2d1978aa -# 047274b9d43549b0bab303d8ccf6f6a6 -# c01b7b7ff62947298c61a0a053cf8fe0 -# 5c96d632622040d89986538d3a7b7080 -#: ../../source/training/socialisation/datasets.rst:83 -#: ../../source/training/socialisation/datasets.rst:271 -#: ../../source/training/socialisation/datasets.rst:314 -#: ../../source/training/socialisation/datasets.rst:410 -msgid "Padang" -msgstr "" - -# 4cad55996668433ca5ef2181abacf171 -#: ../../source/training/socialisation/datasets.rst:84 -msgid "" -"A shakemap is a representation of ground shaking produced by an earthquake. " -"This particular scenario was modelled on the 30th September 2009 Mw 7.9 " -"earthquake in Padang. ShakeMaps are generated automatically following " -"moderate and large earthquakes by USGS. For more information go to " -"http://earthquake.usgs.gov/earthquakes/map/. Pre-event / scenario based " -"shakemaps must be modelled by earthquake specialists." -msgstr "" - -# 463862cbc6784e04a6fbf0ef5950693b -#: ../../source/training/socialisation/datasets.rst:100 -msgid "Tsunami" -msgstr "" - -# 7d8dd7658f48433494797d30c79661c0 -#: ../../source/training/socialisation/datasets.rst:102 -msgid "Maumere_Tsunami_WGS84.tif" -msgstr "" - -# 8d1e2dcf155044c29f07ad553578cbfa -#: ../../source/training/socialisation/datasets.rst:103 -msgid "Tsunami in Maumere (Mw 8.1)" -msgstr "" - -# 88ddc799e260421089e61f00e26a4d86 -#: ../../source/training/socialisation/datasets.rst:107 -msgid "|GoA| and Badan Geologi" -msgstr "" - -# 4cf325caf78f4567b8c4bed275227bf9 -#: ../../source/training/socialisation/datasets.rst:110 -msgid "Maumere, Flores" -msgstr "" - -# fe83097656694d648615797f9d35f4ad -#: ../../source/training/socialisation/datasets.rst:111 -msgid "" -"In September 2011, the Indonesian government held a national exercise in " -"Maumere, Flores. |AIFDR| and |GoA| assisted Badan Geology to develop a " -"tsunami model for Maumere based on an Mw 8.1 earthquake. The Tsunami was " -"modelled using open source software called ANUGA and elevation data from " -"NEXTMap. The water depth is the maximum depth occurring across the entire " -"tsunami event. For more information visit http://anuga.anu.edu.au/ and " -"http://intermap.com/" -msgstr "" - -# e6b8ebedcce144f6aac26e844f3c9289 -#: ../../source/training/socialisation/datasets.rst:128 -msgid "Volcano" -msgstr "" - -# a6157c7cf4834ea4ab270e4f39adfa5b -#: ../../source/training/socialisation/datasets.rst:130 -msgid "Sinabung_Hazard_Map_2015_WGS84.shp" -msgstr "" - -# c74fc3f28a7f4938a11ebaf4b6f3d51f -#: ../../source/training/socialisation/datasets.rst:131 -msgid "Sinabung Hazard Map" -msgstr "" - -# 42fb111d16664c9ab0900865333e6562 -# 733887d791934a61bb772422069fc8e6 -#: ../../source/training/socialisation/datasets.rst:134 -#: ../../source/training/socialisation/datasets.rst:158 -msgid "Multiple event" -msgstr "" - -# e9158d53abb148caa3b97a918695a21a -# 1bd89371dda44c459cc7bbcf6637bf4a -# bd9b70959ad34fc1bc93627459cce0b8 -#: ../../source/training/socialisation/datasets.rst:135 -#: ../../source/training/socialisation/datasets.rst:183 -#: ../../source/training/socialisation/datasets.rst:206 -msgid "KRB" -msgstr "" - -# e4085ef697ef4694a8fcba7b7973ab7f -#: ../../source/training/socialisation/datasets.rst:136 -msgid "" -"Kawasan rawan bencana III - High; Kawasan rawan bencana II - Medium; Kawasan " -"rawan bencana I - Low" -msgstr "" - -# b20ab55349b649febe3e85db98803df7 -# 0306e5d1158b4fe48d0803d826726c94 -#: ../../source/training/socialisation/datasets.rst:137 -#: ../../source/training/socialisation/datasets.rst:161 -msgid "PVMG" -msgstr "" - -# 6a2040e3a3a34f949af04f0e11db558a -#: ../../source/training/socialisation/datasets.rst:138 -msgid "" -"http://www.vsi.esdm.go.id/galeri/index.php/Peta-Kawasan-Rawan-Bencana-" -"Gunungapi-01/Wilayah-Sumatera/KRB-G-Sinabung (published map)" -msgstr "" - -# 20b411c92d484f1b9771f94c19f1b9b4 -# 52208957f6314225a2f3fe299d4ed9eb -#: ../../source/training/socialisation/datasets.rst:139 -#: ../../source/training/socialisation/datasets.rst:163 -msgid "2015" -msgstr "" - -# f82ff5a114e349c49e8d3b3d645b48c7 -# b90cc276fc8843fb823004897fd7c066 -# f37cc19633f54f708595ec73e9342937 -# cb6a70f9ec614de88151f86c82a4d4bb -# 31545b432b024195878011a74807c1e8 -#: ../../source/training/socialisation/datasets.rst:141 -#: ../../source/training/socialisation/datasets.rst:160 -#: ../../source/training/socialisation/datasets.rst:165 -#: ../../source/training/socialisation/datasets.rst:317 -#: ../../source/training/socialisation/datasets.rst:318 -msgid "Sinabung" -msgstr "" - -# c53f02cfa1f045a281779db2cce22897 -#: ../../source/training/socialisation/datasets.rst:142 -msgid "" -"This map contains information about the hazard level for each zone. It can " -"be used to identify the potential impact." -msgstr "" - -# ca520c588cbe44a1808aa8bf747fb0cd -#: ../../source/training/socialisation/datasets.rst:152 -msgid "Volcano Point" -msgstr "" - -# 3d3911dcea8c4d0088083563b77513df -#: ../../source/training/socialisation/datasets.rst:154 -msgid "Sinabung_Mount_WGS84.shp" -msgstr "" - -# f416931eec684a558b0ba069ddd6f3c4 -#: ../../source/training/socialisation/datasets.rst:155 -msgid "Sinabung Mt" -msgstr "" - -# cda49e6ea5e648e695a67b3cfc4a62a5 -#: ../../source/training/socialisation/datasets.rst:156 -msgid "Point" -msgstr "" - -# d19eb7494fc7473eb7189771d5579873 -#: ../../source/training/socialisation/datasets.rst:159 -msgid "Name" -msgstr "" - -# f8d0a5b7bd0b48f38059a14d69a67927 -#: ../../source/training/socialisation/datasets.rst:162 -msgid "" -"http://www.vsi.esdm.go.id/galeri/index.php/Peta-Kawasan-Rawan-Bencana-" -"Gunungapi-01/Wilayah-Sumatera/KRB-G-Sinabung (publish map)" -msgstr "" - -# 7fc03f8e52644c36abcc5b60c963bc90 -#: ../../source/training/socialisation/datasets.rst:166 -msgid "The data shows the location of Mount Sinabung peak." -msgstr "" - -# 46284776b91b41b1b3a6892a65e5cd5d -#: ../../source/training/socialisation/datasets.rst:176 -msgid "Volcanic Ash" -msgstr "" - -# 91aa94b1fc444ce08bb3e2e36b6479fc -#: ../../source/training/socialisation/datasets.rst:178 -msgid "Sinabung_Volcanic_Ash_WGS84.shp" -msgstr "" - -# 15f966f49a5d445ba5acb92e436b3a44 -#: ../../source/training/socialisation/datasets.rst:179 -msgid "Sinabung Volcanic Ash" -msgstr "" - -# 29c79b0bcef045cb9f59ccb7922ce764 -#: ../../source/training/socialisation/datasets.rst:184 -msgid "High; Medium; Low" -msgstr "" - -# abdc15129e1e41a38cd79cff9d3efb41 -#: ../../source/training/socialisation/datasets.rst:185 -msgid "PVMG - BNPB" -msgstr "" - -# a18053d244e1474a9172c84cfeedab86 -#: ../../source/training/socialisation/datasets.rst:187 -msgid "2014" -msgstr "" - -# 914c1ccaadbf42768ff20faeb56098ac -#: ../../source/training/socialisation/datasets.rst:189 -msgid "Sinabung region" -msgstr "" - -# 2001a5416834425aac1a22630e56b3af -#: ../../source/training/socialisation/datasets.rst:190 -msgid "" -"The data show the spread of volcanic ash from Mount Sinabung during the 2014 " -"eruption." -msgstr "" - -# df566daa16ee4c7bb6e6aa47f697ae6a -#: ../../source/training/socialisation/datasets.rst:199 -msgid "Landslide" -msgstr "" - -# c1dd084ca02f4fcabed64052a4ac94d0 -#: ../../source/training/socialisation/datasets.rst:201 -msgid "NGK_Landslide_Vulnerability_WGS84.shp" -msgstr "" - -# 2470a9cc7cc44d9587149754989f8ada -#: ../../source/training/socialisation/datasets.rst:202 -msgid "Landslide Hazard Zone" -msgstr "" - -# 56396c730fdf42f5b00eb97c5c26d7ff -#: ../../source/training/socialisation/datasets.rst:207 -msgid "" -"High Landslide Vulnerability Zone - High; Moderate Landslide Vulnerability " -"Zone - Medium; Low Landslide Vulnerability Zone - Low" -msgstr "" - -# 37ec4fa85c3e471cbd5aa3c7b8b515f6 -#: ../../source/training/socialisation/datasets.rst:210 -msgid "PVMBG" -msgstr "" - -# 6d519acd73044e91afde9a02958a7ad9 -#: ../../source/training/socialisation/datasets.rst:211 -msgid "" -"http://vsi.esdm.go.id/galeri/index.php/Peta-Zona-Kerentanan-Gerakan-Tanah-01/" -"Peta-Zona-Kerentanan-Gerakan-Tanah/Prov-NTT (published map)" -msgstr "" - -# 0ae48b22aa894ffdb45225e62752ac6a -#: ../../source/training/socialisation/datasets.rst:212 -msgid "2009" -msgstr "" - -# b4e0b661230243eb9bc3c7ee43dbd563 -#: ../../source/training/socialisation/datasets.rst:215 -msgid "" -"Landslide vulnerability maps show the regions where landslides may occur. " -"Topographic and landuse changes after mapping can change the landslide zone " -"in the map. The high vulnerability zone is to be avoided for settlement " -"areas or strategic infrastructure. If it can't be avoided, build on the " -"moderate zone, but detailed research is needed to avoid landslide happen. In " -"moderate zone, detailed research is also needed when planning to cut the " -"slope." -msgstr "" - -# 9123112aa20349eeb444fbcb32d7df80 -#: ../../source/training/socialisation/datasets.rst:233 -msgid "Exposure data" -msgstr "" - -# 97f5f3d6a2fd4accbafa81f7b8a233c0 -#: ../../source/training/socialisation/datasets.rst:236 -msgid "Population" -msgstr "" - -# 91f287a78d3e4644ae7922a2e07ade4c -#: ../../source/training/socialisation/datasets.rst:239 -msgid "Java_Population" -msgstr "" - -# cfb9163a4efe40f98bd5d42ae7ac52df -#: ../../source/training/socialisation/datasets.rst:240 -msgid "population" -msgstr "" - -# d35d4c1c6aff447d9c9f0b1789230926 -#: ../../source/training/socialisation/datasets.rst:243 -msgid "Count" -msgstr "" - -# 645f6d0c78244ac994fb44619df1c59d -#: ../../source/training/socialisation/datasets.rst:244 -msgid "World Pop" -msgstr "" - -# 3c7b070c97ce47b1afabe806ca13fc8f -#: ../../source/training/socialisation/datasets.rst:245 -msgid "http://worldpop.org.uk" -msgstr "" - -# 54d4289c9fd349409ba116754d27ecf8 -# 05c1665f419941efb7932623f2500536 -#: ../../source/training/socialisation/datasets.rst:246 -#: ../../source/training/socialisation/datasets.rst:396 -msgid "2010" -msgstr "" - -# 1f38f636a8af4a9ea35a114b11f8f48b -#: ../../source/training/socialisation/datasets.rst:248 -msgid "ASEAN +" -msgstr "" - -# 0629f88d31c94b0689987e12818ce8ed -#: ../../source/training/socialisation/datasets.rst:249 -msgid "" -"High resolution (1 pixel represents 100m x 100m, contemporary data on human " -"population distributions are a prerequisite for the accurate measurement of " -"the impacts of population growth, for monitoring changes and for planning " -"interventions. The AsiaPop project was initiated in July 2011 with the aim " -"of producing detailed and freely-available population distribution maps for " -"the whole of Asia. This project has expanded as the World Pop project to " -"include other continents." -msgstr "" - -# e5293de04c804f88aa51deaee6cf6be0 -# e080ae26a51f46ff91acae2f2949b60e -# 0aa97473835d4ce58c10b9a10218b9b8 -# d14057d0983d48f5a3c6bbeeeaee402b -#: ../../source/training/socialisation/datasets.rst:265 -#: ../../source/training/socialisation/datasets.rst:309 -#: ../../source/training/socialisation/datasets.rst:375 -#: ../../source/training/socialisation/datasets.rst:402 -msgid "Training data provided:" -msgstr "" - -# a63dfff360b64d3fbbd6951324fd1b6d -# 3d602a05639a40d28111a4356ad31692 -# 824d2293a32f4fbeb261cbd559b880bb -# ce947515492e473a87c67eef36e76738 -#: ../../source/training/socialisation/datasets.rst:268 -#: ../../source/training/socialisation/datasets.rst:312 -#: ../../source/training/socialisation/datasets.rst:378 -#: ../../source/training/socialisation/datasets.rst:405 -msgid "**Training Package**" -msgstr "" - -# ddfae41ff14a43fd81862c5320dae490 -# af043a409a7d49129bfe1284c67e2b91 -# 82544a88203d4642a79d4a54cadbc6c2 -# 55577286200c47b881f002e54f4d84ee -#: ../../source/training/socialisation/datasets.rst:268 -#: ../../source/training/socialisation/datasets.rst:312 -#: ../../source/training/socialisation/datasets.rst:378 -#: ../../source/training/socialisation/datasets.rst:405 -msgid "**Name**" -msgstr "" - -# 51f76a52bddb4f0c84103d4f2e6b0cbc -# 63464ee5eb9942e5a88709e6101faa82 -# 05f12c5de5594cc0ae4b9d5f90d33c8b -# 2c1c502ea3a841d480505f401c5c3456 -#: ../../source/training/socialisation/datasets.rst:268 -#: ../../source/training/socialisation/datasets.rst:312 -#: ../../source/training/socialisation/datasets.rst:378 -#: ../../source/training/socialisation/datasets.rst:405 -msgid "**Coverage**" -msgstr "" - -# c52adc38f16a4eb39dedf3bb93d2ce30 -# 1727da6a65924756a40b90131c9ff179 -#: ../../source/training/socialisation/datasets.rst:269 -#: ../../source/training/socialisation/datasets.rst:313 -msgid "Basic InaSAFE" -msgstr "" - -# d79dcb510c1a44db8f6e0820183cc41f -# 20e5afedfc5942bba6a57b18660ba59c -#: ../../source/training/socialisation/datasets.rst:269 -#: ../../source/training/socialisation/datasets.rst:270 -msgid "Jakarta_Population_WGS84" -msgstr "" - -# 10b564ce4d6c4681ab0ceb253ec2abd6 -#: ../../source/training/socialisation/datasets.rst:270 -msgid "Intermediate InaSAFE" -msgstr "" - -# ca8348cca5e54c8fbe2410d69e22fd6f -# acc68363f30f4ac388585b6237fa5953 -# 226ce3cc8e3a426796bf00478826573a -# 0deb06e45b6648f196e74805953dd329 -# 5afd5e96603f4c42bf3ccfe639b72c66 -# 830e338043bf45a5abf8bae78b97e5a4 -# 2ca4ea56875b475986c6737dc6ea5494 -# a5d0288f5a96437fa862ceeedd1854f7 -# ba26faa3f6394ec19ed258a8cb5e07db -# 05b1f148e5a143039a90baec48fc84bf -#: ../../source/training/socialisation/datasets.rst:271 -#: ../../source/training/socialisation/datasets.rst:272 -#: ../../source/training/socialisation/datasets.rst:314 -#: ../../source/training/socialisation/datasets.rst:315 -#: ../../source/training/socialisation/datasets.rst:316 -#: ../../source/training/socialisation/datasets.rst:317 -#: ../../source/training/socialisation/datasets.rst:318 -#: ../../source/training/socialisation/datasets.rst:408 -#: ../../source/training/socialisation/datasets.rst:409 -#: ../../source/training/socialisation/datasets.rst:410 -msgid "Other Hazards" -msgstr "" - -# 0b4491c58d364371ac69c00589e80426 -#: ../../source/training/socialisation/datasets.rst:271 -msgid "West_Sumatera_Population_WGS84" -msgstr "" - -# e4be0bacd64a45ed98927c4d5cd1fd4f -#: ../../source/training/socialisation/datasets.rst:272 -msgid "NGK_Population_WGS84" -msgstr "" - -# 24d463f49ccf431c9c1360c6135e0813 -# dc7849fa89e44d309bd3de6aeb3d6db8 -#: ../../source/training/socialisation/datasets.rst:272 -#: ../../source/training/socialisation/datasets.rst:316 -msgid "Nagekeo" -msgstr "" - -# 9de9f62a15244824b39ed77e7761d449 -#: ../../source/training/socialisation/datasets.rst:276 -msgid "Buildings" -msgstr "" - -# f01ff0ae510a420f90bc300271296a99 -#: ../../source/training/socialisation/datasets.rst:278 -msgid "OSM Buildings" -msgstr "" - -# f038a5fc3ab24f8f8859028ce74c816a -# c775a35d8c0740e5b4ad878d9385a9a6 -#: ../../source/training/socialisation/datasets.rst:279 -#: ../../source/training/socialisation/datasets.rst:389 -msgid "see table below" -msgstr "" - -# e5012f1df09c418c80a75d7fcc3e6ff3 -#: ../../source/training/socialisation/datasets.rst:280 -msgid "Polygon or point" -msgstr "" - -# 959321e1b0b546f49800c6ff9cef347e -# 2fcdde3a432b4d89bf0ea5535a8eedb9 -#: ../../source/training/socialisation/datasets.rst:282 -#: ../../source/training/socialisation/datasets.rst:355 -msgid "Type" -msgstr "" - -# d5ee4d29c94f4867a09568de8590aaa5 -#: ../../source/training/socialisation/datasets.rst:283 -msgid "hospital, school, clinic, etc" -msgstr "" - -# 6f1ef79fbdc04b9c9ec91a6a7a23ce58 -# 2fa710505f09415889c8a75658deb5ca -#: ../../source/training/socialisation/datasets.rst:286 -#: ../../source/training/socialisation/datasets.rst:357 -msgid "OpenStreetMap" -msgstr "" - -# 58a34119da79454eba3e7718819c09b2 -# 35ec34d831234a5098de376a29866854 -#: ../../source/training/socialisation/datasets.rst:287 -#: ../../source/training/socialisation/datasets.rst:358 -msgid "http://openstreetmap.org" -msgstr "" - -# 6cbdf43903b4484f9db1adc44678ef5d -# 0d16e5989759407dad64d2d2cf310ed2 -#: ../../source/training/socialisation/datasets.rst:288 -#: ../../source/training/socialisation/datasets.rst:359 -msgid "July 2015" -msgstr "" - -# e9487f8da3624017a4e25e507c82fce3 -# b5a1af07513d44bdbbc4bb722b621a63 -#: ../../source/training/socialisation/datasets.rst:289 -#: ../../source/training/socialisation/datasets.rst:360 -msgid "" -"`Open Data Commons Open Database License (ODbL) `_" -msgstr "" - -# faeda11d8b804e0dabf132f4337a45e0 -# 70c8be89efb747459a19b0d71e3de4a2 -#: ../../source/training/socialisation/datasets.rst:290 -#: ../../source/training/socialisation/datasets.rst:361 -msgid "World - incomplete" -msgstr "" - -# 43d101cf381d46a49fc1242bb195a175 -#: ../../source/training/socialisation/datasets.rst:291 -msgid "" -"OpenStreetMap is a collaborative project to create a free editable map of " -"the world. Two major driving forces behind the establishment and growth of " -"OSM have been restrictions on the use or availability of map information " -"across much of the world and the advent of inexpensive portable satellite " -"navigation devices." -msgstr "" - -# e1c63e9126fc46cb87fbde901c1d4ea6 -#: ../../source/training/socialisation/datasets.rst:303 -msgid "" -"|GoA| has been working with the Humanitarian OpenStreetMap Team (HOT) since " -"2011 to pilot and train OpenStreetMap data capture in Indonesia. So far over " -"4 million buildings have been mapped. Some of the scenarios we use in the " -"training materials are situated in Jakarta, Yogyakarta (Merapi), Sumatra " -"(Padang) and Flores (Maumere)." -msgstr "" - -# 234cd2fac1aa4e588fcdf53cf8631d10 -#: ../../source/training/socialisation/datasets.rst:313 -msgid "Jakarta_Buildings_WGS84" -msgstr "" - -# bfed202a8a064e638a0b6c3a6f5cf7e5 -#: ../../source/training/socialisation/datasets.rst:314 -msgid "Padang_Buildings_WGS84" -msgstr "" - -# 0c8af832f5064510a3fe872da7cf90f0 -#: ../../source/training/socialisation/datasets.rst:315 -msgid "Maumere_Buildings_WGS84" -msgstr "" - -# 39b8c7774ac5466d983e2f53aa02f4c6 -# 8a5f33a86e78439694726aaef100352a -#: ../../source/training/socialisation/datasets.rst:315 -#: ../../source/training/socialisation/datasets.rst:408 -msgid "Maumere" -msgstr "" - -# 92d84694fb5a4f9fb6ccfe0e7c127384 -#: ../../source/training/socialisation/datasets.rst:316 -msgid "NGK_Buildings_WGS84" -msgstr "" - -# 76e52862e0e04e4da4c0a9b8334048df -#: ../../source/training/socialisation/datasets.rst:317 -msgid "Sinabung_Buildings_WGS84" -msgstr "" - -# 267e94aa89fb4aa8bc08f9683f2aa3c5 -#: ../../source/training/socialisation/datasets.rst:318 -msgid "Sinabung_Building-points_WGS84" -msgstr "" - -# 8466ffed68c24835bc05e6edf9278531 -#: ../../source/training/socialisation/datasets.rst:322 -msgid "" -"Each one of these areas has a different OpenStreetMap data collection " -"methodology. Below the data collection methodologies used in Jakarta and " -"Padang are explained:" -msgstr "" - -# 1179b6aee2c240618d9e077738c63199 -#: ../../source/training/socialisation/datasets.rst:326 -msgid "" -"BPBD DKI Jakarta (Regional Disaster Managers) and |BNPB| (National Disaster " -"Managers) with assistance from |GoA|, the World Bank, UNOCHA, HOT and " -"University of Indonesia, held workshops in each of Jakarta's six districts " -"in order to help village heads map their community boundaries and major " -"infrastructure. Over 500 representatives from Jakarta's 267 villages " -"participated in these workshops and have mapped an impressive 6,000 " -"buildings and all 2,668 sub-village boundaries (Rukun Warga-RW). For more " -"information go to `AIFDR Website `_" -msgstr "" - -# d655885f935d43d089e486b34458080a -#: ../../source/training/socialisation/datasets.rst:336 -msgid "" -"After the Haiti earthquake in 2010, there was a large effort to map Haiti " -"through OSM. Coordinating this effort was difficult, and so |GoA| funded the " -"creation of the OSM Tasking Manager. The OSM Tasking Manager is a web-based " -"tool in which a designated area is easily divided into a grid, and " -"individual users can select one piece at a time to quickly work together and " -"digitally map the target area. The tool was first piloted in Padang, where " -"contributors from around the world helped digitise over 95,000 buildings. " -"However, the buildings are only footprints - an on the ground mapping effort " -"is needed to record attributes about each building. The tool is now being " -"used across the world to coordinate OSM mapping efforts. It is available at " -"`tasks.hotosm.org `_" -msgstr "" - -# 5764b09adff2484d92aae3259c50c8f7 -# 9113dfc86e9642c5a07295c2f4bdd4b6 -#: ../../source/training/socialisation/datasets.rst:349 -#: ../../source/training/socialisation/datasets.rst:352 -msgid "Roads" -msgstr "" - -# 1d5badf44f00444fa0d6888ff027347e -#: ../../source/training/socialisation/datasets.rst:351 -msgid "OSM Roads" -msgstr "" - -# 0b500f97b96f462488c5d8002d0dac6d -#: ../../source/training/socialisation/datasets.rst:353 -msgid "Line" -msgstr "" - -# 48ceb85836504bd98acb6b1b3af06646 -#: ../../source/training/socialisation/datasets.rst:356 -msgid "types of roads" -msgstr "" - -# 23f1198a3d8b4277b746575e70204c6f -#: ../../source/training/socialisation/datasets.rst:362 -msgid "" -"OpenStreetMap is a collaborative project to create a free editable map of " -"the world. Two major driving forces behind the establishment and growth of " -"OSM have been restrictions on use or availability of map information across " -"much of the world and the advent of inexpensive portable satellite " -"navigation devices." -msgstr "" - -# 6bffe1233b3a4d7d94d9a0d3e7277911 -#: ../../source/training/socialisation/datasets.rst:379 -msgid "QGIS Introduction" -msgstr "" - -# 1e5d7d12e3014f938f31edd15f0ffb22 -#: ../../source/training/socialisation/datasets.rst:379 -msgid "Jakarta_Roads_WGS84" -msgstr "" - -# 3f9acfb868e04532b2482c9474cc88a6 -#: ../../source/training/socialisation/datasets.rst:383 -msgid "Aggregation Data" -msgstr "" - -# a11850b69c1248b4ad106551824e0fda -# 334e14ab17844aa38099da17b45596f6 -#: ../../source/training/socialisation/datasets.rst:386 -#: ../../source/training/socialisation/datasets.rst:388 -msgid "Administrative Boundary" -msgstr "" - -# 7fc1b96da57041f6b4d14cad21a3ad58 -#: ../../source/training/socialisation/datasets.rst:392 -msgid "Kabupaten / Kecamatan / Desa" -msgstr "" - -# c0f48d3d36704f089b1fa36a58b5d8a2 -#: ../../source/training/socialisation/datasets.rst:393 -msgid "toponymy of the area" -msgstr "" - -# 29d5b476894b40659edee1ae251c1d86 -#: ../../source/training/socialisation/datasets.rst:394 -msgid "BPS" -msgstr "" - -# 2c4ebe29b5cb48d7920cfc26ab7eb1cd -#: ../../source/training/socialisation/datasets.rst:399 -msgid "Administrative boundaries in Indonesia" -msgstr "" - -# eadaac501937467390f1736030625e2f -# ce246f0f52f14b17ac50ebc026fb48d3 -#: ../../source/training/socialisation/datasets.rst:406 -#: ../../source/training/socialisation/datasets.rst:407 -msgid "Run Intermediate InaSAFE" -msgstr "" - -# c26add1d6a4b41709b740ed82a81e84f -#: ../../source/training/socialisation/datasets.rst:406 -msgid "Jakarta_District_Boundary_WGS84" -msgstr "" - -# 5f16b5c5890d4c38a3bf5dcbeab39153 -#: ../../source/training/socialisation/datasets.rst:407 -msgid "Jakarta_Subdistrict_Boundary_WGS84" -msgstr "" - -# b05546b311cf44a48d95ef72c7727d1b -#: ../../source/training/socialisation/datasets.rst:408 -msgid "Sikka_Village_Boundary_WGS84" -msgstr "" - -# f9cf124bece547ab99db06bcdc8c2449 -#: ../../source/training/socialisation/datasets.rst:409 -msgid "NGK_Villages_BPS_WGS84" -msgstr "" - -# f3ba70b11bf44ca89b34c1db17043aa4 -#: ../../source/training/socialisation/datasets.rst:409 -msgid "Nagakeo" -msgstr "" - -# 9d58d97fd76143d8beb5a438417854f0 -#: ../../source/training/socialisation/datasets.rst:410 -msgid "Padang_Village_Boundary_WGS84" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/socialisation/faq.po b/docs/i18n/en/LC_MESSAGES/training/socialisation/faq.po deleted file mode 100644 index afe5704d..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/socialisation/faq.po +++ /dev/null @@ -1,268 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 955217cd8b0a41b3a43492ee8e3c4725 -#: ../../source/training/socialisation/faq.rst:8 -msgid "Frequently Asked Questions" -msgstr "" - -# e17967dae3484674810f0e213d1828d1 -#: ../../source/training/socialisation/faq.rst:9 -msgid "" -"A short list of questions to assist course participants with the common " -"questions asked by new users when performing a natural disaster scenario " -"analysis with QGIS and |project_name|." -msgstr "" - -# 247de2b86d4e45ab825d177c1a684669 -#: ../../source/training/socialisation/faq.rst:15 -msgid "" -"*What are the important things that need to prepared before running |" -"project_name|?*" -msgstr "" - -# 2831c9cea1424330bcf0982764d9acf9 -#: ../../source/training/socialisation/faq.rst:17 -msgid "" -"To run |project_name| you need one hazard dataset and one exposure dataset." -msgstr "" - -# bf77b1ecfa5c4a47b894ea6af7511d6f -#: ../../source/training/socialisation/faq.rst:18 -msgid "" -"The data must have keywords defined (current version) and it must be turned " -"on." -msgstr "" - -# 6076903db7df41b6b638137d5cc5b18a -#: ../../source/training/socialisation/faq.rst:19 -msgid "There must be an overlap between the hazard and exposure layers." -msgstr "" - -# 9e26c99c9719484fabeb5ac63ce8e2a8 -# b7e7ec1350a849ee90f2ad4f6c81be10 -#: ../../source/training/socialisation/faq.rst:20 -#: ../../source/training/socialisation/faq.rst:53 -msgid "" -"`See more in |project_name| concepts .. `__" -msgstr "" - -# 2d0cec0a44fd46008cbf2a5bc5c3f295 -#: ../../source/training/socialisation/faq.rst:23 -msgid "" -"*Why are there is no active layers available in the |project_name| dock?*" -msgstr "" - -# 74d6ae82f89946adb04344ee7672ccaf -#: ../../source/training/socialisation/faq.rst:25 -msgid "Check that your data layers are turned on" -msgstr "" - -# 7b2f0ed0dc854a90a80ae71481f0a0e2 -#: ../../source/training/socialisation/faq.rst:26 -msgid "Check that the layers have keywords defined." -msgstr "" - -# 4ff0323a0d7e40e9b8419cd22cb40675 -#: ../../source/training/socialisation/faq.rst:27 -msgid "" -"If keywords are not defined or are not current, use the keywords wizard." -msgstr "" - -# 5a9ec409db4d4dee8ca8e99b5bee6ead -#: ../../source/training/socialisation/faq.rst:30 -msgid "" -"*The data has keywords defined, but it is not showing up in the dock as an " -"option for |project_name| analysis?*" -msgstr "" - -# 48555bf0dbe04e64bb6a51f8755fc396 -#: ../../source/training/socialisation/faq.rst:32 -msgid "Check the keyword version is the same with the |project_name| version." -msgstr "" - -# e535d733a3514ef1a041db7db0778652 -#: ../../source/training/socialisation/faq.rst:33 -msgid "Use the keywords wizard to and update your keywords if necessary." -msgstr "" - -# 4a6b64ecf5494c9b8a1150ff23d195c2 -#: ../../source/training/socialisation/faq.rst:34 -msgid "Check that the layer appears in the map and is turned on." -msgstr "" - -# 96b9304b74364e4db046a710be44ba77 -#: ../../source/training/socialisation/faq.rst:37 -msgid "" -"*The data has keywords and is showing up in the dock, but there is no option " -"in the \"might\" list?*" -msgstr "" - -# 74d84c6c4b3a49088e11ad467ea5156c -#: ../../source/training/socialisation/faq.rst:39 -msgid "The impact function for that data might not be available yet." -msgstr "" - -# 6d17e693a0634ffba9ede8bed9449674 -#: ../../source/training/socialisation/faq.rst:40 -msgid "" -"`See the list of available impact functions in |project_name| concepts .. " -"`__" -msgstr "" - -# 181ee2e2db7a4b09936c26aa0aeacfe4 -#: ../../source/training/socialisation/faq.rst:43 -msgid "*Can InaSAFE summarise the impact summary results for different areas?*" -msgstr "" - -# a5db1161bdb14b19b4005b9ceed1c19e -#: ../../source/training/socialisation/faq.rst:45 -msgid "" -"Yes, you can use the aggregation feature in |project_name| to summarise the " -"impact summary results for smaller areas such as administration districts." -msgstr "" - -# 1cf9b9c856c14689bd2abb5c383fe4e5 -#: ../../source/training/socialisation/faq.rst:49 -msgid "" -"*Why are there no options for population in the keyword for my vector " -"population data?*" -msgstr "" - -# 59d33185597c416ca527a1547f4bb201 -#: ../../source/training/socialisation/faq.rst:51 -msgid "Make sure that your population data in in raster format" -msgstr "" - -# 666f733d03494fb7a88925feef6baefb -#: ../../source/training/socialisation/faq.rst:52 -msgid "" -"The current version of |project_name| only supports raster population data." -msgstr "" - -# d8258e229f114df19a4aeb42db3c8587 -#: ../../source/training/socialisation/faq.rst:56 -msgid "" -"*Can |project_name| be used to analyse hazard data besides flood, tsunami, " -"earthquake and volcanic hazard?*" -msgstr "" - -# 3d4eccf0824d4aff927b4e80d847d1b9 -#: ../../source/training/socialisation/faq.rst:58 -msgid "" -"Yes it can. |project_name| has a Generic Hazard Impact Function that can be " -"used to analyse other hazards as long as the data are classified." -msgstr "" - -# 241bcf0ca3234cfba4edb2368f88ce0b -#: ../../source/training/socialisation/faq.rst:60 -msgid "Classified data will have values such as Low, Medium and High." -msgstr "" - -# c159269c57d44b7a8bafaff9f072f1cc -#: ../../source/training/socialisation/faq.rst:63 -msgid "" -"*Why is there some data that is not relevant showing on my pdf map when I " -"print?*" -msgstr "" - -# 9c886b503dc54db39ec406084e6982c7 -#: ../../source/training/socialisation/faq.rst:65 -msgid "" -"Before you click the \"Print\" button, please turn off any layers you do not " -"want to see on the map." -msgstr "" - -# 42f4c19a897549389586ee86b42ba949 -#: ../../source/training/socialisation/faq.rst:67 -msgid "" -"Rearrange the order of layers to make sure the important things are on top." -msgstr "" - -# 270ee931c0be4f61af9a04683c4f09f7 -#: ../../source/training/socialisation/faq.rst:70 -msgid "" -"*Why are the impact results different in different parts of the impact " -"report?*" -msgstr "" - -# 451f069a69a344a28df5c9f247ff6c7c -#: ../../source/training/socialisation/faq.rst:72 -msgid "In the general report the results are rounded." -msgstr "" - -# 97c8d58e9a3245cfbcb380a1f4eb2565 -#: ../../source/training/socialisation/faq.rst:73 -msgid "In the detailed report the results may not be rounded as much." -msgstr "" - -# d52c43ee573e424f849ecbdaf970b984 -#: ../../source/training/socialisation/faq.rst:74 -msgid "" -"|project_name| provides an estimate of the impact. Rounded numbers are good " -"estimates." -msgstr "" - -# ea0814da9fed460aab4967d3e7c47765 -#: ../../source/training/socialisation/faq.rst:77 -msgid "" -"*My hazard and exposure data have different projections, can I still run an |" -"project_name| analysis on these data?*" -msgstr "" - -# 2dd645c560de4887899733c7001f2901 -#: ../../source/training/socialisation/faq.rst:79 -msgid "Yes you can, but you need to enable on the fly projection." -msgstr "" - -# 3e9201632f604efe897281b56c6f29d8 -#: ../../source/training/socialisation/faq.rst:83 -msgid "In QGIS, activate OTF CRS Transformation" -msgstr "" - -# b256776306d146f4ad9d8a3576cedeed -#: ../../source/training/socialisation/faq.rst:81 -msgid ":menuselection:`Project > Project Properties > CRS`" -msgstr "" - -# c71254f4e48749c5b08cb0c1b100e031 -#: ../../source/training/socialisation/faq.rst:82 -msgid "checkbox in the :guilabel:`Enable 'on the fly' CRS transformation`." -msgstr "" - -# b2d4a89cd4a64438922f0962c4ef35e3 -#: ../../source/training/socialisation/faq.rst:85 -msgid "" -"*My flood polygon hazard data includes a flood depth. Why can't I run an " -"analysis in |project_name| and set the threshold with these data?*" -msgstr "" - -# 5679af072a804c41936ab083f6c9c24a -#: ../../source/training/socialisation/faq.rst:87 -msgid "" -"At this moment, users can only set a flood depth threshold for raster data." -msgstr "" - -# feb9efaa3c974987b0944bb431e4c41f -#: ../../source/training/socialisation/faq.rst:88 -msgid "" -"If you would like to build a new impact function to work with different " -"types of hazard data, please contact the developer team." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/socialisation/inasafe_concepts.po b/docs/i18n/en/LC_MESSAGES/training/socialisation/inasafe_concepts.po deleted file mode 100644 index 21945f8e..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/socialisation/inasafe_concepts.po +++ /dev/null @@ -1,995 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# d1dafb1c8da6476a8c995c880c4fb0f1 -#: ../../source/training/socialisation/inasafe_concepts.rst:8 -msgid "|project_name| concepts" -msgstr "" - -# 108cc514e7924feda4a1d329cb44c6f4 -#: ../../source/training/socialisation/inasafe_concepts.rst:10 -msgid "" -"In this section we explain the key concepts of |project_name| and explore " -"the merits of disaster management planning." -msgstr "" - -# 2ec8dfb5188f480bba3591ec5248d5b0 -#: ../../source/training/socialisation/inasafe_concepts.rst:14 -msgid "How does |project_name| work?" -msgstr "" - -# a40d2389d61c4bd9b98d29b9e3a1eb68 -#: ../../source/training/socialisation/inasafe_concepts.rst:15 -msgid "" -"|project_name| combines one exposure data layer (e.g. location of buildings) " -"with one hazard scenario (e.g. the footprint of a flood) and returns a " -"spatial impact layer along with a statistical summary and action questions. |" -"project_name| is framed around answering questions such as: *'In the event " -"of a flood similar to the 2013 Jakarta event how many people might need " -"evacuating.'*" -msgstr "" - -# 755fca0784b9478b8e40749f7bb3b1f6 -#: ../../source/training/socialisation/inasafe_concepts.rst:26 -msgid "" -"|project_name| is also able to divide the impact results by administrative " -"boundary and provide a breakdown of information about the gender and age of " -"affected people." -msgstr "" - -# 4a2abc403fa843979dc2c5c471e200b0 -#: ../../source/training/socialisation/inasafe_concepts.rst:31 -msgid "Definitions:" -msgstr "" - -# 613786e61ffc4b95aa186dab3d61a6b2 -#: ../../source/training/socialisation/inasafe_concepts.rst:32 -msgid "Before we start, here are some definitions you may find useful." -msgstr "" - -# 626efeeea7094b9d844db2e707676f93 -#: ../../source/training/socialisation/inasafe_concepts.rst:35 -msgid "**Risk assessment:**" -msgstr "" - -# 3d7c3cfc3ff04a3da3772e315f3070bc -#: ../../source/training/socialisation/inasafe_concepts.rst:35 -msgid "" -"*\"A methodology to determine the nature and extent of risk by analysing " -"potential hazards and evaluating existing conditions of vulnerability that " -"together could potentially harm exposed people, property, services, " -"livelihoods and the environment on which they depend. \"*" -msgstr "" - -# 691f409d0cdf456093525109bdb252dc -#: ../../source/training/socialisation/inasafe_concepts.rst:42 -msgid "**Contingency planning:**" -msgstr "" - -# 676a96e4420746eda0adc4582b024415 -#: ../../source/training/socialisation/inasafe_concepts.rst:42 -msgid "" -"*\"A management process that analyses specific potential events or emerging " -"situations that might threaten society or the environment and establishes " -"arrangements in advance to enable timely, effective and appropriate " -"responses to such events and situations.\"*" -msgstr "" - -# a83f0fd5bdc64499b9dcee62e39dd3cb -#: ../../source/training/socialisation/inasafe_concepts.rst:49 -msgid "**Response:**" -msgstr "" - -# 0f039cd954ab48eebc80b55318f7eb7c -#: ../../source/training/socialisation/inasafe_concepts.rst:49 -msgid "" -"*\"The provision of emergency services and public assistance during or " -"immediately after a disaster in order to save lives, reduce health impacts, " -"ensure public safety and meet the basic subsistence needs of the people " -"affected.\"*" -msgstr "" - -# f5c0f1b172c74dffabec5b7630aec2da -#: ../../source/training/socialisation/inasafe_concepts.rst:56 -msgid "Source: ``_" -msgstr "" - -# 02ac0d40e06c40d39b07021a7cc70abd -#: ../../source/training/socialisation/inasafe_concepts.rst:59 -msgid "What is disaster management?" -msgstr "" - -# baca8bc9c6954aad8ffea27cb038ef1e -#: ../../source/training/socialisation/inasafe_concepts.rst:60 -msgid "" -"In the context of disaster management, the expected 'normal' situation is " -"that there is no disaster in progress, and people are going about their " -"normal daily lives. Disaster managers need to plan for the occasions when " -"the 'normal' situation has been replaced by a disaster and people can no " -"longer go about their normal daily lives. In order to prepare for such " -"situations, disaster managers need to have a basic understanding of " -"questions like: - how many people might be in the affected area?" -msgstr "" - -# 3ba46cbc47c145d3a85e82e22c9a07b2 -#: ../../source/training/socialisation/inasafe_concepts.rst:68 -msgid "how might those people be impacted?" -msgstr "" - -# 769a8c3796d24ff4af758e4e87fc47e2 -#: ../../source/training/socialisation/inasafe_concepts.rst:70 -msgid "" -"For example are they likely to be injured, stranded, deceased, or unable to " -"continue with their normal economic activities; have they lost access to " -"food and water?" -msgstr "" - -# c098c22d49e34ea6beffdcd16a378a4e -#: ../../source/training/socialisation/inasafe_concepts.rst:74 -msgid "how will roads in the affected area be impacted?" -msgstr "" - -# 8bc8579c835d40e593ffecf71b71d7c1 -#: ../../source/training/socialisation/inasafe_concepts.rst:76 -msgid "" -"how many dwellings in the affected will be affected? And to what degree?" -msgstr "" - -# 0a8e5870dafb44e7a5a8c05f94370744 -#: ../../source/training/socialisation/inasafe_concepts.rst:78 -msgid "" -"For example in a flood are buildings dry, wet (but still possibly habitable) " -"or flooded (with occupants evacuated)?" -msgstr "" - -# ca77973155bd4634b779d1c4b57f58f5 -#: ../../source/training/socialisation/inasafe_concepts.rst:81 -msgid "" -"if people are affected, how many of them are likely to be women, children, " -"pregnant, elderly etc.?" -msgstr "" - -# 22ab6457404b40d9b1482ba2e63099f7 -#: ../../source/training/socialisation/inasafe_concepts.rst:84 -msgid "" -"Knowing the likely answers to these questions can be helpful to disaster " -"managers. For example if you are aware of how many people live in flood " -"prone areas you can estimate how many temporary shelters might be needed in " -"the event of a disaster, how many provisions should be stockpiled in order " -"to provide for the daily needs of affected people and so on. Having " -"demographic breakdowns for the people likely to be affected, can help " -"disaster managers include things like special dietary requirements for " -"lactating women in their disaster management planning." -msgstr "" - -# 87bf32059a9145628ea68ebc5180bb8f -#: ../../source/training/socialisation/inasafe_concepts.rst:93 -msgid "" -"This planning might also take into account expected impacts on " -"infrastructure - for example by planning to have sufficient rescue boats " -"should all the local roads be flooded." -msgstr "" - -# 28f1ccd3d1a340529d3d9b94b78713d4 -#: ../../source/training/socialisation/inasafe_concepts.rst:98 -msgid "What is a hazard?" -msgstr "" - -# 9b4acd91dff24e808136ec930c82713f -#: ../../source/training/socialisation/inasafe_concepts.rst:103 -msgid "" -"In the context of |project_name| a hazard is any natural or human caused " -"event or series of events that may negatively impact the population, " -"infrastructure or resources in an area." -msgstr "" - -# fc191e71b2754747ab4893d12fee9b1a -#: ../../source/training/socialisation/inasafe_concepts.rst:107 -msgid "Some examples of natural hazards:" -msgstr "" - -# bc3d0cf2b28b47eea5cdf579f9eb447f -#: ../../source/training/socialisation/inasafe_concepts.rst:109 -msgid "" -"a flood (caused by overflowing rivers, storm surge, localised precipitation " -"that cannot drain effectively, or by engineering failure such as a dam or " -"levee breach)" -msgstr "" - -# d9ca050efa0f4f189f80b7fa186df6ef -#: ../../source/training/socialisation/inasafe_concepts.rst:111 -msgid "an earthquake and the resulting ground shaking that is produced by it" -msgstr "" - -# dcbddceeaf2c4d0cb6c2bf9240665061 -#: ../../source/training/socialisation/inasafe_concepts.rst:113 -msgid "a volcano and the resulting lava flow from a volcano" -msgstr "" - -# 46b851c55ba647f1b89231b0f77c331b -#: ../../source/training/socialisation/inasafe_concepts.rst:115 -msgid "ash fall from a volcano" -msgstr "" - -# 0d4a644b2f4e40588c443e595a06354e -#: ../../source/training/socialisation/inasafe_concepts.rst:117 -msgid "a tsunami" -msgstr "" - -# 5989fe7fb3704f249fdd7d8a6c8bfd6b -#: ../../source/training/socialisation/inasafe_concepts.rst:119 -msgid "Some examples of non-natural hazards:" -msgstr "" - -# d508c84fbcc54651bcbc36dfb6393808 -#: ../../source/training/socialisation/inasafe_concepts.rst:121 -msgid "a chemical spill" -msgstr "" - -# 37a9574f95a34788b2378d0bcca0a78a -#: ../../source/training/socialisation/inasafe_concepts.rst:123 -msgid "a nuclear plant failure" -msgstr "" - -# b012ebd662d24354afd5e67aba8de53c -#: ../../source/training/socialisation/inasafe_concepts.rst:125 -msgid "an industrial fire / explosion" -msgstr "" - -# 61196fad57dc49a0a011a2baf6712aa2 -#: ../../source/training/socialisation/inasafe_concepts.rst:127 -msgid "" -"It is important to note that |project_name| is not a hazard modelling tool. " -"That means that you need to obtain your hazard data from elsewhere and bring " -"it along ready to use in |project_name|. In this training course we will " -"focus on natural hazards, so we will take a moment here to explain how " -"hazard datasets might be made." -msgstr "" - -# 17c2f9039bfb4407a4169065a41608c8 -#: ../../source/training/socialisation/inasafe_concepts.rst:137 -msgid "There are three main ways that can be used to generate hazard datasets:" -msgstr "" - -# 99a84474e66348529043b00cad513a0a -#: ../../source/training/socialisation/inasafe_concepts.rst:139 -msgid "Local knowledge" -msgstr "" - -# 0454ec9feb5d4771bdff47478b535408 -# 501e5b0ed46841c68cfdf5bf7001c213 -#: ../../source/training/socialisation/inasafe_concepts.rst:141 -#: ../../source/training/socialisation/inasafe_concepts.rst:169 -msgid "Modelling" -msgstr "" - -# e1556fcfd23c4c309ea2503e95f307a7 -#: ../../source/training/socialisation/inasafe_concepts.rst:143 -msgid "Mapping" -msgstr "" - -# 8cdc30e6385b423eaf25d693b2830a24 -#: ../../source/training/socialisation/inasafe_concepts.rst:146 -msgid "Local Knowledge" -msgstr "" - -# fa56ea042fe94a44afd4d4eb512f4102 -#: ../../source/training/socialisation/inasafe_concepts.rst:148 -msgid "" -"This is probably the most practical way to gather hazard data quickly. One " -"approach that has been effective in Indonesia is to hold mapping workshops " -"where village chiefs and local officials are invited. The officials are " -"asked to indicate which villages and sub-villages within their area of " -"responsibility flood regularly." -msgstr "" - -# 95b0de9184864ba08d5d51ddcb95043a -#: ../../source/training/socialisation/inasafe_concepts.rst:154 -msgid "" -"Instead of simply mapping which areas are flooded, it is also possible to " -"take another approach and map each flood event, using the same boundaries " -"(village / sub-village). During the event community officials can use online " -"systems to update the status of the flood waters in their area." -msgstr "" - -# 3a5c796dc5ce43bd84b974c909ff63d0 -#: ../../source/training/socialisation/inasafe_concepts.rst:159 -msgid "" -"A key requirement for any local knowledge based process is that there are " -"suitable mapping units available to use for deciding if an area is flood " -"prone or not. In some cases participants may need to capture these, in other " -"cases village or sub-village boundaries can be used. Using administrative " -"boundaries may not always be ideal since the flood extents are unlikely to " -"align well with the boundaries, but it may be sufficient for broad planning " -"purposes; especially when response activities are managed at the same " -"administrative level." -msgstr "" - -# ca0fd08428c043b6bbce89b60e1cde09 -#: ../../source/training/socialisation/inasafe_concepts.rst:171 -msgid "" -"Modelling floods is an entire discipline in it's own right. Flood modelling " -"can be carried out by combining factors such as precipitation, geology and " -"runoff characteristics, terrain etc. to derive a model of impending or " -"current flood. Modelling can use data interpolation techniques - e.g. by " -"taking flood depth readings manually or using telemetry from various sites " -"around the flood prone area, flood depths can be interpolated to estimate " -"the depth at places that were not sampled." -msgstr "" - -# e6234e9e978b4e3ab0ef8cfbf00dac91 -#: ../../source/training/socialisation/inasafe_concepts.rst:179 -msgid "" -"Another modelling approach used by engineers is to install depth sensors " -"upstream of the catchment and then try to model how much water is coming " -"into the catchment area based on depth and flow rates. This has the " -"potential advantage of giving early warning before floods enter the flood " -"prone area, although it also has the disadvantage that localised rainfall " -"may not be accurately considered in the model." -msgstr "" - -# 99ccda1eb5ff4769b1f6f895ac898dff -#: ../../source/training/socialisation/inasafe_concepts.rst:186 -msgid "" -"Using a digital elevation model (DEM) and a stream network, it is also " -"possible to generate a simple model of which areas might be inundated by a " -"water rise in the river network of a certain amount. DEM cells adjacent to " -"the stream network which are below the flood-rise threshold will be " -"considered flooded and then those cell neighbours can in turn be considered " -"so as to ensure that only contiguous areas in the DEM are flagged as " -"inundated. There are various other approaches that can be used to model " -"flood potential that involve using a DEM." -msgstr "" - -# cd4488c2b27042b38e4115d263d7b520 -#: ../../source/training/socialisation/inasafe_concepts.rst:195 -msgid "" -"One advantage of using a modelling approach is that it allows us to do " -"forecasting for abnormal events. For example, there may not be localised " -"knowledge about 50 or 100 year flood events and their impacts, but these can " -"be estimated using modelling techniques." -msgstr "" - -# d288204d84df4f6bbf45b5c48af6be27 -#: ../../source/training/socialisation/inasafe_concepts.rst:201 -msgid "Single-event versus multiple-event hazards" -msgstr "" - -# 64f7314bc3554ea889d5dc7619095c31 -#: ../../source/training/socialisation/inasafe_concepts.rst:202 -msgid "" -"Hazard data used in |project_name| can represent either single-event or " -"multiple-event. Single event hazards are useful when you want to estimate " -"scenarios like *'how many people would be affected if we had another flood " -"like in 2013'.* A single event hazard covers a short span of time - like a " -"single flood or earthquake event. Single event data is also the most " -"suitable to use for events which are stochastic e.g. earthquakes which " -"seldom occur at the same place and with the same intensity more than once." -msgstr "" - -# 22e853f935cf431f87622a475bfcd348 -#: ../../source/training/socialisation/inasafe_concepts.rst:210 -msgid "" -"Multiple-event data are useful when you would like to plan for disasters " -"that repeatedly affect the same area. For example over the course of 10 " -"years, the same districts or sub-districts may get flooded, though not on " -"every event. Flood and volcano eruptions may be good candidates for using " -"multiple-event data in your disaster management planning." -msgstr "" - -# 89bd84b98a194e7a80e9ea25ae7c6a4d -#: ../../source/training/socialisation/inasafe_concepts.rst:217 -msgid "Requirements for using flood data in |project_name|" -msgstr "" - -# 2459e9e41eac4b2f97c50f146eb6eb69 -#: ../../source/training/socialisation/inasafe_concepts.rst:221 -msgid "**Key notes for floods**" -msgstr "" - -# d8dd1c7abb3c4329aad9806a40a4b5fc -# 3af9d90bdec047e89dfc265b138fdf54 -# f4486d9b45344046bdf146c7e0afcddc -# b3944cfe3918423ba3b752d918049991 -#: ../../source/training/socialisation/inasafe_concepts.rst:223 -#: ../../source/training/socialisation/inasafe_concepts.rst:273 -#: ../../source/training/socialisation/inasafe_concepts.rst:301 -#: ../../source/training/socialisation/inasafe_concepts.rst:330 -msgid "Format" -msgstr "" - -# 780e5d4a761d493b8f98a55f9fd2bdb4 -#: ../../source/training/socialisation/inasafe_concepts.rst:223 -msgid "Vector polygon data or raster data" -msgstr "" - -# 0653e1e92d594e42b1bb4240c970ac69 -#: ../../source/training/socialisation/inasafe_concepts.rst:225 -msgid "Vector" -msgstr "" - -# 5449794bd1fd4c85aec790a6a4e0df12 -#: ../../source/training/socialisation/inasafe_concepts.rst:225 -msgid "A field representing whether the polygon is flood prone or not." -msgstr "" - -# fc1c776435a942539c1b4a4df3981473 -#: ../../source/training/socialisation/inasafe_concepts.rst:227 -msgid "Raster" -msgstr "" - -# e7d1078e2a9c45178ea67acc898edd83 -#: ../../source/training/socialisation/inasafe_concepts.rst:227 -msgid "A simple grid with cell values that represent water depth" -msgstr "" - -# c8d1d6c117db4303bc187b79b34f3105 -# 108cfd6301284eea97d6b10944a3e221 -# a3191f3b4717439aa7c71e71c2573d5c -# d5af0bd8f71e4debaa945a810ff4b3f8 -#: ../../source/training/socialisation/inasafe_concepts.rst:229 -#: ../../source/training/socialisation/inasafe_concepts.rst:279 -#: ../../source/training/socialisation/inasafe_concepts.rst:307 -#: ../../source/training/socialisation/inasafe_concepts.rst:336 -msgid "Source" -msgstr "" - -# a7fb8c205a80465dac3a13cc61a0959c -# 9335520208ed424fa3593fbe858f2fa4 -# eb59ed9b1c074840a5def4fd29d33733 -#: ../../source/training/socialisation/inasafe_concepts.rst:229 -#: ../../source/training/socialisation/inasafe_concepts.rst:279 -#: ../../source/training/socialisation/inasafe_concepts.rst:307 -msgid "Can be obtained from community mapping or a national mapping agency" -msgstr "" - -# ccd35e3eca444602b098e07718f980f3 -#: ../../source/training/socialisation/inasafe_concepts.rst:234 -msgid "What is exposure?" -msgstr "" - -# 3ccda2d3e29649a8b554b86ff50c8cbf -#: ../../source/training/socialisation/inasafe_concepts.rst:239 -msgid "" -"In the context of |project_name|, exposure refers to people, infrastructure " -"or land areas that may be affected by a disaster. Currently |project_name| " -"supports three kinds of exposure data:" -msgstr "" - -# 10c3052303614bf6bdbe305e28d45377 -#: ../../source/training/socialisation/inasafe_concepts.rst:243 -msgid "roads" -msgstr "" - -# ce36a3cf1dd640c987b466e86f1e5e3f -#: ../../source/training/socialisation/inasafe_concepts.rst:245 -msgid "buildings" -msgstr "" - -# 6a09fc9cab96414c972e5e9194a60be0 -#: ../../source/training/socialisation/inasafe_concepts.rst:247 -msgid "population / people" -msgstr "" - -# bcbfb6223f5c4156944c2fcbe1ecdab4 -#: ../../source/training/socialisation/inasafe_concepts.rst:250 -msgid "Roads data" -msgstr "" - -# a8f858d1062c48c1b91adae94695838f -#: ../../source/training/socialisation/inasafe_concepts.rst:256 -msgid "" -"Road datasets are a useful data source when you want to understand the " -"impact of a flood on roads infrastructure. With the |project_name| flood on " -"roads impact functions; you can calculate which roads of which type might be " -"impacted by a flood." -msgstr "" - -# 4e406ec22d2e49f4bb8a998ca3291c5d -#: ../../source/training/socialisation/inasafe_concepts.rst:261 -msgid "" -"Very often there will be national datasets available for roads. In this " -"case you should contact your national mapping agency for up-to-date " -"datasets. The OpenStreetMap project is an excellent source of exposure data. " -"The data is freely available, generally well maintained and a vital resource " -"for disaster management planners. There are numerous ways to download " -"OpenStreetMap roads data, but our recommended way is to download the data " -"using the OSM download tool provided with |project_name|." -msgstr "" - -# b0ae74ddfb6d444492bd135419bfdda6 -#: ../../source/training/socialisation/inasafe_concepts.rst:271 -msgid "**Key notes for road data**" -msgstr "" - -# 400cb595f4aa4933952a32761d3ba14e -#: ../../source/training/socialisation/inasafe_concepts.rst:273 -msgid "Vector line data" -msgstr "" - -# 70a8ce9a29ca41ce8d7fed4574d38a63 -# 94163c7d5844444094a3a03a4bd5f513 -#: ../../source/training/socialisation/inasafe_concepts.rst:275 -#: ../../source/training/socialisation/inasafe_concepts.rst:303 -msgid "Field" -msgstr "" - -# 02ef8d80eb9049969764143667412144 -#: ../../source/training/socialisation/inasafe_concepts.rst:275 -msgid "A field representing road type" -msgstr "" - -# 6a26353c859346dfa4f84920cc485f5e -# e86c14bad7d64c8b9f62d9509e0b85a5 -# 3a11587e5f40495a91419a3181799461 -#: ../../source/training/socialisation/inasafe_concepts.rst:277 -#: ../../source/training/socialisation/inasafe_concepts.rst:305 -#: ../../source/training/socialisation/inasafe_concepts.rst:334 -msgid "Notes" -msgstr "" - -# 5371265949dd400eaf6d08eff2c5dc62 -#: ../../source/training/socialisation/inasafe_concepts.rst:277 -msgid "Topologically correct data are best but not essential" -msgstr "" - -# 39e4252162af4bdca6b8097c9cc9976d -#: ../../source/training/socialisation/inasafe_concepts.rst:284 -msgid "Buildings (structure) data" -msgstr "" - -# e5f0819601ef4b71a759d0b81add59ba -#: ../../source/training/socialisation/inasafe_concepts.rst:290 -msgid "" -"Like roads, building footprints can be a useful dataset to have for " -"understanding the impacts of a flood. For example you may wish to know 'how " -"many buildings might be flooded, and what types of buildings are they?'. In |" -"project_name| you do not need to use engineering quality data. We are more " -"concerned with the numbers and types of structures affected by a disaster " -"and do not work at engineering tolerances needed when, for example, planning " -"a new water mains system." -msgstr "" - -# f1638209e8fa458e832087119bc7f65c -#: ../../source/training/socialisation/inasafe_concepts.rst:299 -msgid "**Key notes for buildings data**" -msgstr "" - -# 34b981b5474b45c4878269b9646408ae -#: ../../source/training/socialisation/inasafe_concepts.rst:301 -msgid "Vector polygon data" -msgstr "" - -# 5ea12410182a4c7b82c82293fbf68f92 -#: ../../source/training/socialisation/inasafe_concepts.rst:303 -msgid "A field representing building type" -msgstr "" - -# 40b6b608022b419e9976d087d7dd3b8c -#: ../../source/training/socialisation/inasafe_concepts.rst:305 -msgid "|project_name| does not need 'engineering quality' data" -msgstr "" - -# 2b069bab51a445db901f3491eb805e93 -#: ../../source/training/socialisation/inasafe_concepts.rst:311 -msgid "Population data" -msgstr "" - -# c36b3995fece4921bbd0f5bcc67ef06b -#: ../../source/training/socialisation/inasafe_concepts.rst:316 -msgid "" -"Population data can often be obtained from your census bureau or through " -"various online data sources. One problem with population data is that it is " -"often quite coarse (represented using a raster with a large pixel size) and " -"so analysis at large scales (e.g. a small neighbourhood) using population " -"data may not always be the best idea. Currently |project_name| only " -"supports raster based census data, but in the near future we will be " -"releasing a version that supports assigning population estimates to " -"buildings using census data. One of the nicest online resources for " -"population data is 'WorldPop' - a project that aims to provide population " -"data for anywhere in the globe produced in a standardised and rigorous way." -msgstr "" - -# 296aad71fa964703b7564e17da31bb82 -#: ../../source/training/socialisation/inasafe_concepts.rst:328 -msgid "**Key notes for population data**" -msgstr "" - -# 56e44ab3655d487f88cf44d902b4ebff -#: ../../source/training/socialisation/inasafe_concepts.rst:330 -msgid "Raster 'cell' data" -msgstr "" - -# ee7ba2ee3cac42d784fed88cacae9035 -#: ../../source/training/socialisation/inasafe_concepts.rst:332 -msgid "Requirements" -msgstr "" - -# f9b25a835ba4429db684a5ac76358a00 -#: ../../source/training/socialisation/inasafe_concepts.rst:332 -msgid "Currently the data should be in EPSG:4326 CRS" -msgstr "" - -# f9ecd4546c4247b0ad7793ab09e725a6 -#: ../../source/training/socialisation/inasafe_concepts.rst:334 -msgid "Make sure you know if your data represent density or count" -msgstr "" - -# c05aaa9e15c1459ea8fe45af21442305 -#: ../../source/training/socialisation/inasafe_concepts.rst:336 -msgid "WorldPop or from a national census agency" -msgstr "" - -# fdd4ea0b12674703ba8cd23c0ec89245 -#: ../../source/training/socialisation/inasafe_concepts.rst:340 -msgid "What is aggregation?" -msgstr "" - -# 3fad5c7b981048f3949f4bdd2eacf555 -#: ../../source/training/socialisation/inasafe_concepts.rst:341 -msgid "" -"Aggregation is the process whereby we group the results of the analysis by " -"district so that you can see how many people, roads or buildings were " -"affected in each area. This will help you to understand where the most " -"critical needs are, and to generate reports as shown in the image below. " -"Aggregation is optional in |project_name| - if you do not use aggregation, " -"the entire analysis area will be used for the data summaries. Typically " -"aggregation layers in |project_name| have as attributes the name of the " -"district or reporting area. It is also possible to use extended attributes " -"to indicate the ratio of men and women; youth, adults and elderly living in " -"each area. Where these are provided and the exposure layer is population, |" -"project_name| will provide a demographic breakdown per aggregation area " -"indicating how many men, women etc were probably affected in that area." -msgstr "" - -# b1e71095e59f44fb87ce9e4a2a271ea5 -#: ../../source/training/socialisation/inasafe_concepts.rst:360 -msgid "What is contextual data?" -msgstr "" - -# 0676e2cc54e5446981377e8b79a2e804 -#: ../../source/training/socialisation/inasafe_concepts.rst:362 -msgid "" -"Contextual data are data that provide a sense of place and scale when " -"preparing or viewing the results of analysis, while not actually being used " -"for the analysis. For example you may include online maps to show the " -"underlying relief of the study area, or an aerial image to show what " -"buildings and infrastructure exist in the area." -msgstr "" - -# 5e8354c698324e14b3053d34d37b654c -#: ../../source/training/socialisation/inasafe_concepts.rst:372 -msgid "Bing Aerial imagery for Jakarta, courtesy Bing Maps Open Layers" -msgstr "" - -# 25a64b21d344475c87e423db5c281d16 -#: ../../source/training/socialisation/inasafe_concepts.rst:375 -msgid "What is the difference between raster and vector data?" -msgstr "" - -# 388055728db74492a1ce9ad3f9747323 -#: ../../source/training/socialisation/inasafe_concepts.rst:376 -msgid "" -"Vector data is arguably the most common kind of data you will find in the " -"daily use of GIS. It describes geographic data in terms of points that may " -"be connected into lines and polygons. Every object in a vector dataset is " -"called a feature, and is associated with data that describes that feature. " -"The basic shape of objects stored in the vector data is defined with a two-" -"dimensional coordinate system / Cartesian (x, y)." -msgstr "" - -# c141f826e23341e5801faee9961a88b0 -#: ../../source/training/socialisation/inasafe_concepts.rst:387 -msgid "" -"Raster data is different from vector data. While vector data has discrete " -"features constructed out of vertices, and perhaps connected with lines and/" -"or areas; raster data, is like an image. Although it may portray various " -"properties of objects in the real world, these objects don't exist as " -"separate objects; rather, they are represented using pixels or cells of " -"various different numerical values. These values can be real and represent " -"different characteristics of the geography, such as water depth or amount of " -"volcanic ash; or they can be a code than is related to the type of land use " -"or the hazard class." -msgstr "" - -# 42719c8f136b448f97311d2bcebf3ecf -#: ../../source/training/socialisation/inasafe_concepts.rst:401 -msgid "" -"Creating vector data is like using a pen, where you can draw a point, a line " -"or a polygon, Raster data is like taking a picture with a camera, where each " -"square has one value, and all the squares (pixels) combine to make a picture." -msgstr "" - -# 5da005ef4f404a71bc7c6afe2476f3c3 -#: ../../source/training/socialisation/inasafe_concepts.rst:406 -msgid "" -"Both vector and raster data can be used in |project_name|. For example, we " -"use vector data for the extent of a flood hazard and as well as roads and " -"building footprint; but we use raster data for modelled hazards such as " -"flood depth, tsunami inundation and for population exposure." -msgstr "" - -# 585faf152ce64d6bae4a7fbf9d2351d0 -#: ../../source/training/socialisation/inasafe_concepts.rst:412 -msgid "What is the difference between continuous and classified data?" -msgstr "" - -# 68604645efaa48b9bd1d5b92ba9fe4a4 -#: ../../source/training/socialisation/inasafe_concepts.rst:414 -msgid "" -"In |project_name| we differentiate between data which is continuous and data " -"which is classified. The terms can be applied equally to both hazard and " -"exposure data. **Continuous** data represent a **continuously varying " -"phenomenon** such as depth in meters, population counts and so on." -msgstr "" - -# cd8fa642724a4a28b749c0e9cf184afa -#: ../../source/training/socialisation/inasafe_concepts.rst:423 -msgid "Continuous population data - courtesy WorldPop" -msgstr "" - -# 487612500eda44c5aad6eb691333a344 -#: ../../source/training/socialisation/inasafe_concepts.rst:425 -msgid "" -"**Classified** data represent **named groups of values**, for example, high, " -"medium and low hazard. Grouping values works well when you wish to reduce " -"data preparation complexity or deal with local variances in the " -"interpretation of data. For example, a flood depth of 50cm may represent a " -"high hazard zone in an area where people commonly have basements in their " -"houses, and a low hazard zone in areas where people commonly build their " -"houses on raised platforms." -msgstr "" - -# e291d9f56a1c4af8bcef789f7a233f20 -#: ../../source/training/socialisation/inasafe_concepts.rst:437 -msgid "Classified raster flood data - courtesy BNPB/Australian Government" -msgstr "" - -# d16b1b81f6a4452ab80095f4b94b9de6 -#: ../../source/training/socialisation/inasafe_concepts.rst:440 -msgid "What is the analysis extent?" -msgstr "" - -# e153c66a6bef4152a86de0a0d32593aa -#: ../../source/training/socialisation/inasafe_concepts.rst:442 -msgid "" -"In |project_name| you need to explicitly state what the intended analysis " -"extent should be. In other words, you need to tell InaSAFE where the " -"analysis should be carried out. There is a tool in InaSAFE that will allow " -"you to drag a box around the intended analysis area - you should always " -"check that you have done this before starting your analysis. Analysis extent " -"in InaSAFE" -msgstr "" - -# e17e7341a32d43279413a7d1e1da2c62 -#: ../../source/training/socialisation/inasafe_concepts.rst:453 -msgid "Analysis extent in |project_name|" -msgstr "" - -# 9e41c1c073dd45c09ea4e12c99d7830d -#: ../../source/training/socialisation/inasafe_concepts.rst:455 -msgid "" -"|project_name| will show you what your current desired analysis extent is " -"(blue box), what the extent of your last analysis was (red box in the image " -"above) and what your effective extent is (green box in the image above). The " -"effective extent may not correspond exactly to your desired analysis extent " -"because |project_name| always aligns the extent to the edge of raster pixels." -msgstr "" - -# 8173c776961d4a9d84f78009b5be6749 -#: ../../source/training/socialisation/inasafe_concepts.rst:463 -msgid "What is an Impact Function?" -msgstr "" - -# 789128e4b0bf4600b3119ced2de76dd4 -#: ../../source/training/socialisation/inasafe_concepts.rst:469 -msgid "" -"An Impact Function (often abbreviated to IF) is software code in |" -"project_name| that implements a particular algorithm to determine the impact " -"of a hazard on the selected exposure. Running an impact function is done " -"when you have prepared all your input data, defined your analysis extent and " -"wish to now see the impact outputs." -msgstr "" - -# 949e20ec534a400e9878b00e8f82acaa -#: ../../source/training/socialisation/inasafe_concepts.rst:475 -msgid "" -"Again, we should emphasise here that Impact Functions **do not model " -"hazards** - they **model the effects** of one or more hazard events on an " -"exposure layer. |project_name| groups it's impact functions according to the " -"kind of hazard they work on:" -msgstr "" - -# ade655d0150547829ab6950bdc59a15d -#: ../../source/training/socialisation/inasafe_concepts.rst:481 -msgid "Supported data types for each hazard type in |project_name|" -msgstr "" - -# 79cba4b17b8a48fbbce02ae3a95db208 -#: ../../source/training/socialisation/inasafe_concepts.rst:488 -msgid "Earthquake Impact Functions" -msgstr "" - -# 61945906f32d46dea717b449c7516d93 -#: ../../source/training/socialisation/inasafe_concepts.rst:490 -msgid "**Earthquake hazard**: continuous raster" -msgstr "" - -# fbf23b53aa494063897cdd01f7fd7285 -# a3050f23b54e4934bc42873c73dbce07 -# 32cd0ab1800f491d904d8cf4e467805e -# 80e1d16d676745c6b2954c717bff6d4d -#: ../../source/training/socialisation/inasafe_concepts.rst:492 -#: ../../source/training/socialisation/inasafe_concepts.rst:507 -#: ../../source/training/socialisation/inasafe_concepts.rst:522 -#: ../../source/training/socialisation/inasafe_concepts.rst:536 -msgid "**Population exposure**: continuous raster with counts" -msgstr "" - -# fdf568af480443fabde7bf4d93914534 -# f2e03758b4734ce291b1a51c4174c30a -#: ../../source/training/socialisation/inasafe_concepts.rst:494 -#: ../../source/training/socialisation/inasafe_concepts.rst:509 -msgid "" -"**Building exposure**: classified polygon or point with a type attribute" -msgstr "" - -# c97bd1c7f6a74f97a5f81530db8a8d50 -#: ../../source/training/socialisation/inasafe_concepts.rst:503 -msgid "Flood Impact Functions" -msgstr "" - -# f51dbd36282140e6abb2f8a012281986 -#: ../../source/training/socialisation/inasafe_concepts.rst:505 -msgid "**Flood hazard**: continuous raster or classified polygon" -msgstr "" - -# 589048099f38451592b404ce201fec90 -#: ../../source/training/socialisation/inasafe_concepts.rst:518 -msgid "Volcano Impact Functions" -msgstr "" - -# 0351224d8d2d4aa7a06cbfcd49d49e91 -#: ../../source/training/socialisation/inasafe_concepts.rst:520 -msgid "**Volcano hazard**: continuous polygon or point" -msgstr "" - -# c58192c5369b430dad97f6fe801ae887 -# 3542555330bf4e7984d5f77b397e379d -#: ../../source/training/socialisation/inasafe_concepts.rst:524 -#: ../../source/training/socialisation/inasafe_concepts.rst:538 -msgid "**Building exposure**: classified polygon with a type attribute" -msgstr "" - -# 6bd5738cd337407f8ccee7dd7ef3aa43 -#: ../../source/training/socialisation/inasafe_concepts.rst:532 -msgid "Generic Impact Functions" -msgstr "" - -# 43a225f2c1b3400b8dec6aea88ef6c02 -#: ../../source/training/socialisation/inasafe_concepts.rst:534 -msgid "" -"**Volcano hazard**: classified polygon, classified raster or continuous " -"raster" -msgstr "" - -# 0ec3ac42c4f7440e86ead959bb634d05 -#: ../../source/training/socialisation/inasafe_concepts.rst:540 -msgid "" -"A note about generic impact functions: Generic IF's are useful when your " -"data does not conform to the a priori expectations of |project_name|. For " -"example, you may wish to produce a report on buildings that might be " -"affected by a landslide, drought, smoke haze or any other hazard that does " -"not have an explicit Impact Function in |project_name|." -msgstr "" - -# df4adc870bc94848b85d5184be5750d2 -#: ../../source/training/socialisation/inasafe_concepts.rst:546 -msgid "" -"Each Impact Function will generate outputs that may include: - an impact map " -"layer - an impact summary - minimum needs - action checklists" -msgstr "" - -# eec5fbad8f594f27b592d3341e0af4ee -#: ../../source/training/socialisation/inasafe_concepts.rst:558 -msgid "What is an impact layer?" -msgstr "" - -# 841bb12bd0d444fd814b94cadcff0af7 -#: ../../source/training/socialisation/inasafe_concepts.rst:559 -msgid "" -"An impact layer is a new GIS dataset that is produced as the result of " -"running an impact function. It will usually represent the exposure layer. " -"For example, if you do a flood analysis on buildings, the impact layer " -"produced will be a buildings layer but each building will be classified " -"according to whether it is dry, wet or flooded. |project_name| will " -"typically apply its own symbology to the output impact layer to make it " -"clear which are the impacted buildings. This is illustrated in the image " -"below." -msgstr "" - -# 9df4b6dbe422459683b9f254bb5ecbfc -#: ../../source/training/socialisation/inasafe_concepts.rst:567 -msgid "" -"It should also be noted that the impact layer will only include features / " -"cells that occur within the analysis extent. All others will be 'clipped " -"away'. It is very important to remember this when interpreting the map " -"legend and the impact summary (see section below) because they are only " -"relevant to the analysis area. The impact layer is not saved by default. If " -"you want to save this spatial data you need to do this yourself." -msgstr "" - -# 1757d956e4754e139008d15af8cc8612 -#: ../../source/training/socialisation/inasafe_concepts.rst:579 -msgid "What is the impact summary?" -msgstr "" - -# 521200b445c94b8c9bd0040d77cb0915 -#: ../../source/training/socialisation/inasafe_concepts.rst:580 -msgid "" -"Whereas the impact layer represents spatial data, the impact summary is " -"tabular and textual data. The impact summary provides a table (or series of " -"tables) and other textual information with the numbers of buildings, roads " -"or people affected, and includes other useful information such as minimum " -"needs breakdowns, action checklists and summaries. The impact summary " -"presents the results of the impact function in an easy to digest form. Our " -"expectation that the numbers show here would form part of the input to your " -"emergency management planning process - typically as a launch point for " -"discussion and planning on how to have sufficient resources in order to " -"cater for the impacted people, buildings or roads should a similar event to " -"the one on which the scenario is based occur. An example of an impact " -"summary is shown below." -msgstr "" - -# 5e5f85ff2ed947fb8d2a15b007eb6002 -#: ../../source/training/socialisation/inasafe_concepts.rst:597 -msgid "Example impact summary table showing breakdown of buildings flooded." -msgstr "" - -# 0dc7f90447864d1a94929ecd57d4c2fc -#: ../../source/training/socialisation/inasafe_concepts.rst:600 -msgid "What are minimum needs?" -msgstr "" - -# b09f346618a5441b96fe79cabbb73321 -#: ../../source/training/socialisation/inasafe_concepts.rst:601 -msgid "" -"Minimum needs are a population specific reporting component for the impact " -"summary. They are based on generic or regional preferences and define the " -"daily food and well-being requirements for each individual who may be " -"displaced during a disaster. For example you could specify that each person " -"should receive 20l of fresh drinking water per day, 50l of bathing water and " -"so on. |project_name| will calculate these numbers to provide an estimate of " -"the total needs for the displaced population." -msgstr "" - -# a3626409c20241f5a089e6807ecc9ad8 -#: ../../source/training/socialisation/inasafe_concepts.rst:614 -msgid "What are action checklists?" -msgstr "" - -# 19a42241efd44bd7a4d14c8c4f28fa14 -#: ../../source/training/socialisation/inasafe_concepts.rst:615 -msgid "" -"Action checklists are generated lists of things disaster managers should " -"consider when implementing their disaster management plan. Currently the " -"action checklists are fairly simplistic - they are intended to prompt " -"discussion and stimulate disaster managers to think about the important " -"contingencies they should have in place." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/socialisation/index.po b/docs/i18n/en/LC_MESSAGES/training/socialisation/index.po deleted file mode 100644 index 38bb262b..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/socialisation/index.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:30+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 250ee0e08c074dc0b8676a69557a2d58 -#: ../../source/training/socialisation/index.rst:8 -msgid "Socialisation Training Manual" -msgstr "" - -# 7a96bebf7547472db142e9d94b881a11 -#: ../../source/training/socialisation/index.rst:9 -msgid "" -"A short course intended to \"socialise\" the participants with the basic " -"workflows typically carried out when performing a natural disaster scenario " -"analysis with QGIS and |project_name|." -msgstr "" - -# b8e0b2547a61414996c3d89cc900b2ea -#: ../../source/training/socialisation/index.rst:14 -msgid "|project_name| is funded by:" -msgstr "" - -# 1cbf28eac9cb4b81be66a51fe63aefc7 -#: ../../source/training/socialisation/index.rst:22 -msgid "Preface" -msgstr "" - -# 729ffc28ab9142f6931280fd377064ef -#: ../../source/training/socialisation/index.rst:23 -msgid "" -"As one of the most hazard-prone and densely populated countries in the " -"world, Indonesia faces significant risk of loss of lives and challenges to " -"development progress as a result of natural disasters. The development of " -"disaster management plans is seen as an important step to strengthen " -"disaster risk reduction programs. However, this can only be effective when " -"risk assessments and contingency planning utilise realistic hazard " -"scenarios. Realistic hazard scenarios require scientific, sound and up-to-" -"date data hazard information as well as up-to-date, scale appropriate " -"exposure data. Such map-based risk assessments and contingency plans " -"contribute to better disaster management planning and response." -msgstr "" - -# 720e8b94b8d947878f4d0712e633aec3 -#: ../../source/training/socialisation/index.rst:36 -msgid "Course media" -msgstr "" - -# 75fc0abe4bf147bd8b90c14fc570321d -#: ../../source/training/socialisation/index.rst:37 -msgid "" -"All of the content for this course are available for free and can be freely " -"shared and redistributed under the Creative Commons Attribution 4.0 " -"International license." -msgstr "" - -# 9cd249e9fc624defb17199fa9867dc3b -#: ../../source/training/socialisation/index.rst:41 -msgid "" -"The data used in this course are available for download on `data.inasafe.org " -"`_. Ask your trainer which data you will need to " -"download for the course if it is not provided." -msgstr "" - -# e2d7f30b7d034717b47739eeff623b09 -#: ../../source/training/socialisation/index.rst:46 -msgid "" -"If you are working through the training independently, please use the " -"version 3.2 data packages: `data.inasafe.org/TrainingDataPackages `_." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/socialisation/introduction.po b/docs/i18n/en/LC_MESSAGES/training/socialisation/introduction.po deleted file mode 100644 index 50fb2491..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/socialisation/introduction.po +++ /dev/null @@ -1,134 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 01712ba7283e433985ef115667735d37 -#: ../../source/training/socialisation/introduction.rst:8 -msgid "Introducing |project_name|" -msgstr "" - -# 27eab81ed83d4418a2880d6073844126 -#: ../../source/training/socialisation/introduction.rst:10 -msgid "" -"In this section we will introduce |project_name| and provide some background " -"on the |project_name| project." -msgstr "" - -# f866840a68bc424ca41afe58d528501a -#: ../../source/training/socialisation/introduction.rst:14 -msgid "About the |project_name| project" -msgstr "" - -# b80d3b1c1f434992a7ec1629528912f0 -#: ../../source/training/socialisation/introduction.rst:16 -msgid "" -"The |project_name| project (http://inasafe.org) was started in order to " -"provide a tool for disaster managers who want to understand what the " -"potential impacts of a disaster will be. Initially the focus of activity was " -"in Indonesia - a country that is highly vulnerable to different disasters " -"including flood, tsunami, volcano, earthquakes, as well as other localised " -"disasters such as landslides, wildfire and so on. InaSAFE has since been " -"adopted for use in many other countries - it is not 'Indonesia specific'." -msgstr "" - -# 680a31d639134a55801d52a1d782ff89 -#: ../../source/training/socialisation/introduction.rst:24 -msgid "" -"The underlying goal of InaSAFE is to encourage and facilitate better " -"planning for disasters - our slogan is **\"better planning saves lives\"**." -msgstr "" - -# 14055465096a41e2a38c2e9349c56a38 -#: ../../source/training/socialisation/introduction.rst:31 -msgid "" -"Each country in the world faces its own unique challenges. According to the " -"Global Assessment Report GAR for Indonesia the chief concerns are Volcanoes " -"and Floods - other countries will face different challenges." -msgstr "" - -# bc1383219a5b4bb09f6924a034309552 -#: ../../source/training/socialisation/introduction.rst:39 -msgid "" -"Key disaster risks for Indonesia - Image courtesy ``_" -msgstr "" - -# 357a48f067f6491997c1a58ac2f620b5 -#: ../../source/training/socialisation/introduction.rst:46 -msgid "" -"Losses resulting from disasters in Indonesia - Image courtesy ``_" -msgstr "" - -# 3e45ab636ec34300977b176331414ece -#: ../../source/training/socialisation/introduction.rst:49 -msgid "" -"In the |project_name| project we strive to provide a tool that will enhance " -"the abilities of disaster managers to prepare for disasters and to reduce " -"the impact of those disasters on the local population and infrastructure." -msgstr "" - -# 707c4854ee304f13a5ecde4b9d838722 -#: ../../source/training/socialisation/introduction.rst:54 -msgid "Open source" -msgstr "" - -# 417a45a8fed148c9833acd78d16331f9 -#: ../../source/training/socialisation/introduction.rst:55 -msgid "" -"From the beginning, |project_name| has been an Open Source project (GPL " -"license). This means there are no licensing fees, the software can be freely " -"copied and shared with anyone, and the source codes used to create the " -"software are freely available which means that anyone with a little " -"technical knowledge can contribute to the project. Being an Open Source " -"project is important for us because we want as many people as possible to be " -"able to use and improve the software. If 'better planning saves lives', " -"having a tool that can be used by everyone to do better planning makes sense " -"right?" -msgstr "" - -# cab0b2730c2447469a18e1f46ff4932b -#: ../../source/training/socialisation/introduction.rst:65 -msgid "Open data" -msgstr "" - -# 6f2fb9de1ced4016a673a239289e4ce1 -#: ../../source/training/socialisation/introduction.rst:66 -msgid "" -"A key driving force in the ability to use tools such as |project_name| is " -"open access to relevant, up-to-date and well maintained geospatial data. " -"Without roads, buildings, administrative areas, flood and population data " -"etc., a tool like |project_name| would be impossible to use. OpenStreetMap." -"org, WorldPop and many government and non-government agencies around the " -"world have been leading the effort to make such datasets available. We " -"cannot emphasise enough the importance of government in taking a lead role " -"in making their data freely available so that it can be used for the benefit " -"of their citizens." -msgstr "" - -# 1be224a72e0e41a783f06ed963a8cb01 -#: ../../source/training/socialisation/introduction.rst:77 -msgid "Watch the |project_name| promotional movie" -msgstr "" - -# 38ccee89df39451ea95f7c0f4a138883 -#: ../../source/training/socialisation/introduction.rst:78 -msgid "" -"If you want to know more you can watch the promotional movie. ``_" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/socialisation/introduction_to_qgis.po b/docs/i18n/en/LC_MESSAGES/training/socialisation/introduction_to_qgis.po deleted file mode 100644 index 6acdd152..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/socialisation/introduction_to_qgis.po +++ /dev/null @@ -1,843 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 4d72ee773a0b4975ae579cff6c1f27ed -#: ../../source/training/socialisation/introduction_to_qgis.rst:10 -msgid "Introduction to QGIS" -msgstr "" - -# 5f679ab8acc94203a84322e50c6a501d -#: ../../source/training/socialisation/introduction_to_qgis.rst:13 -msgid "Introduction" -msgstr "" - -# 13da5079ee32470781bd66dbed5d5016 -#: ../../source/training/socialisation/introduction_to_qgis.rst:15 -msgid "" -"QGIS is a user-friendly open source Geographic Information System (GIS). It " -"runs on Linux, OS X, Windows and Android. QGIS supports numerous vector, " -"raster, database formats and provide extendable functionality. Learn more " -"about the project at: `http://www.qgis.org `__" -msgstr "" - -# a86eef5c1f124ca3941b9b4bbc2dc379 -#: ../../source/training/socialisation/introduction_to_qgis.rst:20 -msgid "QGIS is great because:" -msgstr "" - -# 82ac135d5ccb4113b85360c7ddba63f3 -#: ../../source/training/socialisation/introduction_to_qgis.rst:22 -msgid "It is completely free. It doesn’t cost anything." -msgstr "" - -# b58b6e1d12334b249347692f8e074606 -#: ../../source/training/socialisation/introduction_to_qgis.rst:24 -msgid "" -"It’s free, as in liberty. If you think a feature is missing, you can sponsor " -"the development of a feature, or add it yourself if you are familiar with " -"programming." -msgstr "" - -# 4ac9f317999d483fbc768749a321168b -#: ../../source/training/socialisation/introduction_to_qgis.rst:28 -msgid "" -"It’s constantly developing and improving. Because many people continue " -"adding features, it keeps getting better." -msgstr "" - -# 97bdd9fd16034c5db6b714f4d5d1312b -#: ../../source/training/socialisation/introduction_to_qgis.rst:31 -msgid "" -"Extensive help and documentation is available. If you have problems you can " -"always turn to the software documentation, other QGIS users, or even the " -"developers." -msgstr "" - -# 4f58537b655d4b6caa82d6afd39be9d0 -#: ../../source/training/socialisation/introduction_to_qgis.rst:35 -msgid "" -"QGIS provides a continuously growing number of capabilities provided by core " -"functions and plugins. You can visualise, manage, edit, analyse data and " -"compose printable maps. QGIS is also the platform which InaSAFE is built on, " -"and so the this document focuses on building foundational skills using QGIS." -msgstr "" - -# 95423db552b6400f9e6d3c88060059d5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:41 -msgid "Learning objectives:" -msgstr "" - -# 74b3dc03f5094f3ebe2821e7c8dd4604 -#: ../../source/training/socialisation/introduction_to_qgis.rst:43 -msgid "Understand how to get QGIS" -msgstr "" - -# 468543ba819a442186a0046d41fb64d5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:45 -msgid "Understand how to install QGIS" -msgstr "" - -# 9fa8a58ba81d4a3891e076a26459767b -#: ../../source/training/socialisation/introduction_to_qgis.rst:47 -msgid "Understand QGIS and its Layout" -msgstr "" - -# 00d1be537f7543b78b7012073c685515 -#: ../../source/training/socialisation/introduction_to_qgis.rst:49 -msgid "Understand QGIS toolbars and how to manage them" -msgstr "" - -# e510ef581e63424aa70688d07ffe069a -#: ../../source/training/socialisation/introduction_to_qgis.rst:51 -msgid "Learn basic operation in QGIS" -msgstr "" - -# e7dc852d20ff459e821f78c35505289b -#: ../../source/training/socialisation/introduction_to_qgis.rst:53 -msgid "How to install InaSAFE from QGIS" -msgstr "" - -# dee9aadaccba4a6c8f7fffcee04634f5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:55 -msgid "Introduction to the InaSAFE toolbar and functionality" -msgstr "" - -# c4f8ec96b79b496a8b9773a7c6c98462 -#: ../../source/training/socialisation/introduction_to_qgis.rst:58 -msgid "Data for this exercise:" -msgstr "" - -# c0738473337443398ade594033e0a2d7 -#: ../../source/training/socialisation/introduction_to_qgis.rst:60 -msgid "" -"The data for this exercise is available in Introduction to QGIS.zip which " -"can be downloaded in `InaSAFE Training Data Packages `__. For QGIS download you can download at `QGIS " -"Website `__ (we will explain how to download and " -"install QGIS later in this exercise). We will use the following QGIS project " -"and data:" -msgstr "" - -# 55112100dc96495685b545a974c9664a -#: ../../source/training/socialisation/introduction_to_qgis.rst:66 -msgid "DKI_Jakarta_Introduction.qgs" -msgstr "" - -# 07050c94300444e8a6c0565ccb9cbe8c -#: ../../source/training/socialisation/introduction_to_qgis.rst:68 -msgid "Jakarta_roads_WGS84" -msgstr "" - -# 87954fe9257b479cad82e9086a3c7769 -#: ../../source/training/socialisation/introduction_to_qgis.rst:70 -msgid "A flood in Jakarta like 2013" -msgstr "" - -# 93233c679bca4ba5bfe71d1baa7e1fb3 -#: ../../source/training/socialisation/introduction_to_qgis.rst:72 -msgid "A flood similar to the 2007 Jakarta event" -msgstr "" - -# 39c6f470f0424d4f81aa91d2db0d9cd3 -#: ../../source/training/socialisation/introduction_to_qgis.rst:75 -msgid "Exercises" -msgstr "" - -# ea7c04a01b7340a99af1445b512dfe82 -#: ../../source/training/socialisation/introduction_to_qgis.rst:78 -msgid "1. Getting QGIS" -msgstr "" - -# cafff7d3e6874fd1b98234bf579eb004 -#: ../../source/training/socialisation/introduction_to_qgis.rst:80 -msgid "You can download QGIS software by accessing the main QGIS website:" -msgstr "" - -# 37b3fadcfd694bb7afe759d6c4ce5021 -#: ../../source/training/socialisation/introduction_to_qgis.rst:82 -msgid "" -"Open your web browser and in the address bar at the top of the window type :" -"kbd:`qgis.org`. Press :kbd:`Enter`." -msgstr "" - -# 46ea03b3498b4b7e854c17c920966804 -#: ../../source/training/socialisation/introduction_to_qgis.rst:85 -msgid "The QGIS website will look something like this:" -msgstr "" - -# 0c91440c543c4402bc2b5836af25f609 -#: ../../source/training/socialisation/introduction_to_qgis.rst:89 -msgid "Click :guilabel:`Download Now`." -msgstr "" - -# a6bd12b7754445f4b30171e631a2adde -#: ../../source/training/socialisation/introduction_to_qgis.rst:91 -msgid "" -"If you are using Windows, there are 2 version of QGIS (version 2.10 and " -"version 2.8). Choose :kbd:`Long term release (eg. for corporate user)` and " -"click :guilabel:`QGIS Standalone Installer Version 2.8 (32 bit or 64 bit " -"depend your computer operating system)`. Your exact version number may be " -"different." -msgstr "" - -# c3184d5bc11a4f2aa8968e13d83b6f7f -#: ../../source/training/socialisation/introduction_to_qgis.rst:98 -msgid "" -"If you are not using Windows, select your operating system from the menu. " -"Follow the installation instructions." -msgstr "" - -# 8790737b60d746c58cc19a3309a21a46 -#: ../../source/training/socialisation/introduction_to_qgis.rst:102 -msgid "2. Installing QGIS" -msgstr "" - -# b0209c9fd88a489abcee9c7342e10686 -#: ../../source/training/socialisation/introduction_to_qgis.rst:104 -msgid "" -"After you download the QGIS software installer, the next step is to install " -"QGIS to your computer." -msgstr "" - -# a33c514bdc4044079f37ac947b08b99d -#: ../../source/training/socialisation/introduction_to_qgis.rst:106 -msgid "Open the folder where you have the QGIS installation file." -msgstr "" - -# d2392a46929f45f9807bbe3367c85f2b -#: ../../source/training/socialisation/introduction_to_qgis.rst:110 -msgid "" -"Run the installation file. If you are installing QGIS version 2.x, it should " -"look something like this:" -msgstr "" - -# 438ad65a43f24e908d457f78012246d0 -#: ../../source/training/socialisation/introduction_to_qgis.rst:114 -msgid "Click :guilabel:`Next` and follow the instructions." -msgstr "" - -# b67e7acca7ea4ca3bea86fddeaa7609d -#: ../../source/training/socialisation/introduction_to_qgis.rst:116 -msgid "" -"Once the installation is finished, you can open your QGIS in Start Menu." -msgstr "" - -# d068092ff28546e59f803232eafa21aa -#: ../../source/training/socialisation/introduction_to_qgis.rst:120 -msgid "QGIS will look something like this:" -msgstr "" - -# d101d071fb3d45eb9ccc6a32406088f9 -#: ../../source/training/socialisation/introduction_to_qgis.rst:125 -msgid "3. Understanding QGIS interface" -msgstr "" - -# bd48569f2e814c34be3b501942d0b87a -#: ../../source/training/socialisation/introduction_to_qgis.rst:127 -msgid "" -"Next, we will introduce the main QGIS interface. In general, there are four " -"elements in QGIS:" -msgstr "" - -# 547d9332b6554e9bbb3a2f1d7713cd21 -#: ../../source/training/socialisation/introduction_to_qgis.rst:132 -msgid "" -"**Layers Panel**: On the left side of QGIS is the layers panel. This panel " -"lists the layers, or files, that are loaded into our QGIS project. The " -"Layers Panel not only shows all the files that are currently open, it also " -"determines the order that they will be drawn on the map canvas. A layer that " -"is at the bottom of the list will be drawn first, and any layers above it " -"will be drawn on top." -msgstr "" - -# 314a89e674c547c6954ca1540a54ebb5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:139 -msgid "" -"**Toolbar**: At the top of QGIS are a large number of tools, which are " -"contained within various *toolbars*. For example, the :guilabel:`File` " -"toolbar allows you to save, load, print and start a new project. We already " -"used one of these tools when we opened this project." -msgstr "" - -# d791e1d923a249b8abecd7868cc898d1 -#: ../../source/training/socialisation/introduction_to_qgis.rst:147 -msgid "" -"By hovering your mouse over an icon, the name of the tool will appear to " -"help you identify each tool. The number of tools (buttons) can seem a bit " -"overwhelming at first, but you will gradually get to know them. The tools " -"are grouped into related functions on toolbars. If you look closely you can " -"see a vertical array of ten dots to the left of each toolbar. By grabbing " -"these with your mouse, you can move the toolbar to a more convenient " -"location, or separate it so that it sits on its own." -msgstr "" - -# ca519a80bb6941af92637aac291e2744 -#: ../../source/training/socialisation/introduction_to_qgis.rst:158 -msgid "" -"**Map Canvas**: On this area all of the map data that we load into QGIS will " -"be displayed here, both vector data and raster data." -msgstr "" - -# bc2c84373bbd45fc91c1854daf45566d -#: ../../source/training/socialisation/introduction_to_qgis.rst:161 -msgid "" -"**Status bar**: The status bar shows information about the current map. It " -"allows you to adjust the map scale and see the mouse cursor’s coordinates on " -"the map." -msgstr "" - -# da2d9fc184114c1f91164f66195904c2 -#: ../../source/training/socialisation/introduction_to_qgis.rst:167 -msgid "" -"The coordinates of this map are the same type of coordinates that are " -"recorded by GPS devices. The status bar shows the longitude and latitude of " -"your mouse cursor." -msgstr "" - -# 33a1c03307b542eba4782e60efd93d17 -#: ../../source/training/socialisation/introduction_to_qgis.rst:171 -msgid "4. Manage Toolbars" -msgstr "" - -# 2ca782127a734ddd95cda24b3306bb49 -#: ../../source/training/socialisation/introduction_to_qgis.rst:173 -msgid "" -"At the top of QGIS are a large number of tools, which are contained within " -"various 'toolbars.' For example, the File toolbar allows you to save, load, " -"print, and start a new project. We already used one of these tools when we " -"opened this project." -msgstr "" - -# 36adf3f26e70497cb9021601c268b575 -#: ../../source/training/socialisation/introduction_to_qgis.rst:179 -msgid "" -"By hovering your mouse over an icon, the name of the tool will appear to " -"help you identify each tool." -msgstr "" - -# 3e2dad811ae34063a4117c4baa1fe0cd -#: ../../source/training/socialisation/introduction_to_qgis.rst:182 -msgid "" -"The number of tools (buttons) can seem a bit overwhelming at first, but you " -"will gradually get to know them. The tools are grouped into related " -"functions on toolbars. If you look closed you can see a vertical array of " -"ten dots to the left of each toolbar. By grabbing these with your mouse, you " -"can move the toolbar to a more convenient location, or separate it so that " -"it sits on its own." -msgstr "" - -# 243d3c88b46d4e409d7c987352192f06 -#: ../../source/training/socialisation/introduction_to_qgis.rst:191 -msgid "" -"If you feel overwhelmed by the number of toolbars, you can customize the " -"interface to see only the tools you use most often, adding or removing " -"toolbars as necessary." -msgstr "" - -# 193d97ba40cb43b8a95f1f4c681f2fd8 -#: ../../source/training/socialisation/introduction_to_qgis.rst:195 -msgid "" -"To add or remove a toolbar, **right-click** on empty space in toolbars, or " -"go to :menuselection:`View ‣ Toolbars`." -msgstr "" - -# 3baab396780047f59d3b2e2dfeba9597 -#: ../../source/training/socialisation/introduction_to_qgis.rst:198 -msgid "" -"Rearrange the toolbar so that it’s on one line. Left-click and hold the " -"vertical dots on the left hand side of the tool. Drag to the first line of " -"the toolbar." -msgstr "" - -# 00b932d1ef134394beaee360ef00bee9 -#: ../../source/training/socialisation/introduction_to_qgis.rst:205 -msgid "5. QGIS Basic Tools" -msgstr "" - -# 82715a277d5b4049be420adaf5d93a4a -#: ../../source/training/socialisation/introduction_to_qgis.rst:207 -msgid "" -"We’ve already taken a look at the QGIS toolbar and have seen the tools for " -"opening QGIS. Here’s a list of some of the most commonly used tools. Feel " -"free to play around with them if you like. The important thing for now is to " -"start getting familiar with QGIS." -msgstr "" - -# c79350e27cc24ad792cf9685b0e4b854 -#: ../../source/training/socialisation/introduction_to_qgis.rst:213 -msgid "Add Vector Layer" -msgstr "" - -# cc041297ce5244ce821d516845d9c519 -#: ../../source/training/socialisation/introduction_to_qgis.rst:213 -msgid "Add vector data to Layer List" -msgstr "" - -# 1996f0e9497341cab95768cf0e8e82c5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:215 -msgid "Add Raster Layer" -msgstr "" - -# 8ba2808a6b314d238d7445e705a19948 -#: ../../source/training/socialisation/introduction_to_qgis.rst:215 -msgid "Add raster data to Layer List" -msgstr "" - -# 931e688baac747efa74915e9c15981f0 -#: ../../source/training/socialisation/introduction_to_qgis.rst:217 -msgid "New" -msgstr "" - -# d455fa03761a4c0898277921d6029ae3 -#: ../../source/training/socialisation/introduction_to_qgis.rst:217 -msgid "Create new QGIS project" -msgstr "" - -# b156d064104a41bebb9152b0b01b92c0 -#: ../../source/training/socialisation/introduction_to_qgis.rst:219 -msgid "Open" -msgstr "" - -# 217eb08b3a3b488990e3c41543ea2ca6 -#: ../../source/training/socialisation/introduction_to_qgis.rst:219 -msgid "Open QGIS project" -msgstr "" - -# ab42e7e791354881acdbe3bc91c7fb5c -#: ../../source/training/socialisation/introduction_to_qgis.rst:221 -msgid "Toggle Editing" -msgstr "" - -# 8a12fc00b481472f93095e84cbf62d3c -#: ../../source/training/socialisation/introduction_to_qgis.rst:221 -msgid "Edit features in a layer" -msgstr "" - -# a1ee368c561249278f579e81105c09ff -#: ../../source/training/socialisation/introduction_to_qgis.rst:223 -msgid "Pan Map" -msgstr "" - -# f1ec663ea89a4f6991c8b7c52ee11d00 -#: ../../source/training/socialisation/introduction_to_qgis.rst:223 -msgid "Drag the map to a new location" -msgstr "" - -# a6d012ab4afd4767ab76ab639561eb81 -#: ../../source/training/socialisation/introduction_to_qgis.rst:225 -msgid "Zoom In" -msgstr "" - -# 09dd3ce4b25f46e78bdd8e0eace053d0 -#: ../../source/training/socialisation/introduction_to_qgis.rst:225 -msgid "Zoom in on the map" -msgstr "" - -# d33b926aa74946abb47bf4f22349efe1 -#: ../../source/training/socialisation/introduction_to_qgis.rst:227 -msgid "Zoom Out" -msgstr "" - -# 9d35736b4dcd4ddc90a3ad614e3828b4 -#: ../../source/training/socialisation/introduction_to_qgis.rst:227 -msgid "Zoom out on the map" -msgstr "" - -# 7b4dfa96e20b4bd1a8c0f318c5af6965 -#: ../../source/training/socialisation/introduction_to_qgis.rst:229 -msgid "Zoom Full" -msgstr "" - -# 17b645d1deb5452383dfa19c4fddc53f -#: ../../source/training/socialisation/introduction_to_qgis.rst:229 -msgid "Zoom so that all layers fit in the map window" -msgstr "" - -# 6d20dce2643c413ba26cbb28eaeb561b -#: ../../source/training/socialisation/introduction_to_qgis.rst:231 -msgid "Identify features" -msgstr "" - -# 67045701a071423fa3ec8765c3a8af31 -#: ../../source/training/socialisation/introduction_to_qgis.rst:231 -msgid "Identify the attribute of an active layer in the map canvas" -msgstr "" - -# b272efaf29224772bedec635eba6c65a -#: ../../source/training/socialisation/introduction_to_qgis.rst:233 -msgid "Open Attribute Table" -msgstr "" - -# f7d1e9fff12248a484ee471da180e169 -#: ../../source/training/socialisation/introduction_to_qgis.rst:233 -msgid "Open a layer’s attribute table" -msgstr "" - -# 6558d0a6d1af4237be49771f9a34d0d5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:235 -msgid "Select Single Feature" -msgstr "" - -# 092fb0ee267c42c8a38e5b104cc85ffa -#: ../../source/training/socialisation/introduction_to_qgis.rst:235 -msgid "Select a feature in the selected layer" -msgstr "" - -# 57044d00cf43447b888aaf3715e9be30 -#: ../../source/training/socialisation/introduction_to_qgis.rst:239 -msgid "6. Navigating The Map" -msgstr "" - -# eef16a11f34e475c9d5beedef56d0759 -#: ../../source/training/socialisation/introduction_to_qgis.rst:241 -msgid "" -"Before we examine the attributes of individual features, let’s take a quick " -"look at how to navigate the map. The main controls for moving the map around " -"and zooming in-and-out are on the panels at the top of QGIS by default." -msgstr "" - -# 93bd08d1aa04493795b3b30e323b9905 -#: ../../source/training/socialisation/introduction_to_qgis.rst:246 -msgid "" -"When you click on one of these buttons, it changes the action of your mouse " -"in the main map window." -msgstr "" - -# fef468595cc24b90915431e626822410 -#: ../../source/training/socialisation/introduction_to_qgis.rst:248 -msgid "" -"Select the first button that looks like a hand. Now hold the left mouse " -"button down and drag the mouse in the map window. This allows you to **pan** " -"the map, or move it around." -msgstr "" - -# 0e9b1b17184044d483e6b4e9784e5b73 -#: ../../source/training/socialisation/introduction_to_qgis.rst:252 -msgid "" -"Select the button that has a plus :guilabel:`(+)` sign below a magnifying " -"glass allows you to **zoom in** on the map. Using your mouse, draw a box " -"around your area of interest and release your mouse." -msgstr "" - -# 27a5fc9ab7574f469dbc06e7a0e0e0e7 -#: ../../source/training/socialisation/introduction_to_qgis.rst:256 -msgid "" -"The button that has a minus :guilabel:`(-)` sign below a magnifying glass " -"allows you to **zoom out** on the map. Select this button and click on the " -"map." -msgstr "" - -# 8b0ecf140ce147058087bc0fd703359a -#: ../../source/training/socialisation/introduction_to_qgis.rst:259 -msgid "" -"The button that looks like a magnifying glass with red arrows pointing away " -"from it lets you **zoom to the full extent** of your map. Click this button " -"to see all the data that is loaded in the project fit into the map canvas." -msgstr "" - -# 545cb60759aa45078a88ab697e5a68d7 -#: ../../source/training/socialisation/introduction_to_qgis.rst:263 -msgid "" -"We can always change QGIS projection based on our data projection. It would " -"makes us easily to edit our data in further steps if QGIS has same " -"projection with our data." -msgstr "" - -# 3a308c81bfc749f98c0e1d88ef645f86 -#: ../../source/training/socialisation/introduction_to_qgis.rst:267 -msgid "7. Hide and move layers" -msgstr "" - -# 577ae95206e74732ab8a1ecef1073359 -#: ../../source/training/socialisation/introduction_to_qgis.rst:269 -msgid "" -"Sometimes if you handle many layers, you need to hide/unhide the layer to " -"make the map canvas more organized. For example, open the pre-saved QGIS " -"project, :file:`DKI_Jakarta_Introduction.qgs`. Once all the data are " -"displayed on your map canvas, try toggling the layer, **a flood similar to " -"the 2007 Jakarta Event** by clicking on the checkbox in the Layers Panel on " -"the left side of your screen." -msgstr "" - -# 69ce2161a5864c2386384192103efbbb -#: ../../source/training/socialisation/introduction_to_qgis.rst:278 -msgid "" -"After you uncheck the check box, the layer will disappear from map canvas. " -"This operation won’t remove your layer from layers list but only hide it " -"temporarily until you check again the check box. Try to turn ON the layer " -"again to unhide the layer." -msgstr "" - -# 843bdbb032664e09922c82576a4afccb -#: ../../source/training/socialisation/introduction_to_qgis.rst:283 -msgid "" -"What if your layer does not appear in the map canvas even though you already " -"turned ON your layers? In this example, the **Jakarta_roads_WGS84** layer " -"didn’t appear in Map Canvas even though it’s already turned ON. In this " -"case, it’s related to layer order. The layers in your Layers List are drawn " -"on the map in a certain order. The layer at the bottom of the list is drawn " -"first, and the layer at the top is drawn last. By changing the order of the " -"layers in the list, you can change the order they are drawn in." -msgstr "" - -# ca407eecfeb146b482f058b8346caf49 -#: ../../source/training/socialisation/introduction_to_qgis.rst:293 -msgid "For example in this layer order..." -msgstr "" - -# 8658f64f06974380854ddef6f1d423d0 -#: ../../source/training/socialisation/introduction_to_qgis.rst:297 -msgid "" -"… would result in **Jakarta_roads_WGS84** being hidden as they position " -"*underneath* **A Flood in Jakarta like 2013**. To solve this problem, simply " -"click the **Jakarta_roads_WGS84** layer and drag to the top of the Layer " -"List or reorder them to the correct order." -msgstr "" - -# 2c37699df5ad4a09a9e36885e817c91e -#: ../../source/training/socialisation/introduction_to_qgis.rst:304 -msgid "" -"What you see after you move the **Jakarta_roads_WGS84** layer? Did you now " -"can see the road network in DKI Jakarta after you move road layer to up?" -msgstr "" - -# a34ac7632aa54bc98c04046421c13ac6 -#: ../../source/training/socialisation/introduction_to_qgis.rst:308 -msgid "" -"You can see the road network now because the first order of these layer is " -"**Jakarta_roads_WGS84** and followed by other layer." -msgstr "" - -# fe46fc923440406097eea5813cc9bc5e -#: ../../source/training/socialisation/introduction_to_qgis.rst:312 -msgid "8. Symbolize layer" -msgstr "" - -# f780625d7a32425f9ddc9ce4acc3ef77 -#: ../../source/training/socialisation/introduction_to_qgis.rst:314 -msgid "" -"The symbology of a layer is its visual appearance on the map. One of the " -"basic strengths of GIS is that you have a dynamic visual representation of " -"the data you’re working with. Therefore, the visual appearance of the map " -"(which depends on the symbology of the individual layers) is very important. " -"For example in the project that you currently open :file:" -"`DKI_Jakarta_Introduction.qgs`, you will see the **A Flood in Jakarta like " -"2013** layer is cover all the area of DKI Jakarta. Is the flood really " -"happen in whole area of DKI Jakarta?" -msgstr "" - -# 73dffd7b10ee41f49d043f8fa9d9e028 -#: ../../source/training/socialisation/introduction_to_qgis.rst:322 -msgid "" -"For answer this, let’s turn OFF **Jakarta_roads_WGS84** and **A Flood " -"Similar to the Jakarta 2007 event** layers first and then open the attribute " -"of **A Flood in Jakarta like 2013** by right click the layer and select :" -"guilabel:`Open Attribute Table`. Take a look at attribute data by open this " -"attribute data first. You will see there are 6 columns in this data and one " -"of this column have name ‘affected’ and have value 1 and 0. This columns " -"explain for an object that have value 1 will stated as flooded and for an " -"object that have value 0 will stated as not flooded. Let’s try to select one " -"feature in this layer and see the highlighted feature in the attribute table." -msgstr "" - -# a076ab9e80c9432f85c547fdc882c2c7 -#: ../../source/training/socialisation/introduction_to_qgis.rst:332 -msgid "What is the value of affected layer from your selected feature?" -msgstr "" - -# 831e2f8f26984ad5bfe732a34fbb758e -#: ../../source/training/socialisation/introduction_to_qgis.rst:334 -msgid "" -"Not all the feature in this data have value 1 (or flooded). You need to see " -"which feature have value 1 to make you easier to interpret the hazard area. " -"To solve this problem, we will symbolize the data so it will only showing " -"flooded area." -msgstr "" - -# 28cd70c1448142e98ee992aede032e01 -#: ../../source/training/socialisation/introduction_to_qgis.rst:338 -msgid "" -"Right click in **A flood in Jakarta like 2013** layer and select :guilabel:" -"`Properties`." -msgstr "" - -# 423d0e08e4f84ec99f64effb62bc6113 -#: ../../source/training/socialisation/introduction_to_qgis.rst:340 -msgid "" -"Go to tab :guilabel:`Style` and change :guilabel:`Single Symbol` into :" -"guilabel:`Categorized`." -msgstr "" - -# 4f5270408efc46dc9d23131d8267f455 -#: ../../source/training/socialisation/introduction_to_qgis.rst:342 -msgid "" -"Select :guilabel:`affected` in Column as a column that we will use for " -"categorize the data." -msgstr "" - -# cdfdc976d0534feb8136930fd9ef2f42 -#: ../../source/training/socialisation/introduction_to_qgis.rst:344 -msgid "" -"Click :guilabel:`classify` and turn off the colour that have value 0 and no " -"value." -msgstr "" - -# 14596550532b42c1a29afd035ca5d4f9 -#: ../../source/training/socialisation/introduction_to_qgis.rst:346 -msgid "Click OK" -msgstr "" - -# 658240b869024d09ad8323b6bd323546 -#: ../../source/training/socialisation/introduction_to_qgis.rst:350 -msgid "" -"After you click :guilabel:`OK`, you will see only features that have value 1 " -"(flooded) will be displayed in map canvas, the other value won’t shown in " -"Map Canvas because you turn OFF the symbol that represent value 0. Symbology " -"help me understand better about the data that we will work on." -msgstr "" - -# 729fbae0105a4a6ea08becde00911829 -#: ../../source/training/socialisation/introduction_to_qgis.rst:356 -msgid "9. InaSAFE Installation and Set up" -msgstr "" - -# 95afb9aca1df46f5a0e4e83b756b42d4 -#: ../../source/training/socialisation/introduction_to_qgis.rst:358 -msgid "" -"As we know, InaSAFE plugin has been built for QGIS. It is one of the plugins " -"which are available in QGIS Repository. Make sure before you follow steps " -"below, you have a working internet connection. To get InaSAFE please follow " -"these steps:" -msgstr "" - -# c07468db01844cb2bb63540fb822797f -#: ../../source/training/socialisation/introduction_to_qgis.rst:362 -msgid "Go to :menuselection:`Plugins -> Manage and install plugins` menu." -msgstr "" - -# 235a012bce09488d830284db9e522809 -#: ../../source/training/socialisation/introduction_to_qgis.rst:366 -msgid "Go to the Search box and type :kbd:`InaSAFE`." -msgstr "" - -# 1f8cc07302bc40ccafc01626b842ac1c -#: ../../source/training/socialisation/introduction_to_qgis.rst:372 -msgid "Select InaSAFE and click :guilabel:`Install plugin` and" -msgstr "" - -# c9f241deeedb443cbabf5eac44f66830 -#: ../../source/training/socialisation/introduction_to_qgis.rst:371 -msgid "" -"wait for a moment until the InaSAFE dock appears in the right side of QGIS " -"main window." -msgstr "" - -# 0b40e9a568b149b39e08be0f5343b6a8 -#: ../../source/training/socialisation/introduction_to_qgis.rst:374 -msgid "Close the plugin manager window." -msgstr "" - -# 6b343c73afd045e08ab7e3e124141d57 -#: ../../source/training/socialisation/introduction_to_qgis.rst:376 -msgid "Congratulations! Now you have InaSAFE installed in QGIS." -msgstr "" - -# 77bc9ce871024a3f9077eee52df9deff -#: ../../source/training/socialisation/introduction_to_qgis.rst:379 -msgid "10. InaSAFE Toolbars" -msgstr "" - -# 97c02ff3889f4463bbbb823282465117 -#: ../../source/training/socialisation/introduction_to_qgis.rst:381 -msgid "" -"After successfully installing InaSAFE, You should now have an **InaSAFE " -"dock** on the right hand side of your screen. It should look like this:" -msgstr "" - -# 5b33780bcc5b4fbdbaad1e7fdf94f1d5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:386 -msgid "" -"InaSAFE also comes with a toolbar of its own! To retrieve the InaSAFE " -"toolbar, you can right-click on the top toolbar and check InaSAFE." -msgstr "" - -# 87cdda9057d644acadec070d18bf5ea2 -#: ../../source/training/socialisation/introduction_to_qgis.rst:392 -msgid "InaSAFE Dock" -msgstr "" - -# d2551e03fd26441585e6576d3f5d8f90 -#: ../../source/training/socialisation/introduction_to_qgis.rst:394 -msgid "Set Analysis Area" -msgstr "" - -# c80b1ec430964469b66c9e0bf2b98e2a -#: ../../source/training/socialisation/introduction_to_qgis.rst:396 -msgid "Toggle Scenario Outline" -msgstr "" - -# 2a69e38bf2d0455db4651d419a1fd0a5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:398 -msgid "Keyword Editor" -msgstr "" - -# 70f04aff836a49e18b859bbfa0604b7c -#: ../../source/training/socialisation/introduction_to_qgis.rst:400 -msgid "Impact Function Centric Wizard" -msgstr "" - -# f07b3e66ae5e4f419ea5dfa7f8637679 -#: ../../source/training/socialisation/introduction_to_qgis.rst:402 -msgid "OpenStreetMap Downloader" -msgstr "" - -# ce29f49edd63453ead54315d92c7e5e2 -#: ../../source/training/socialisation/introduction_to_qgis.rst:404 -msgid "Add OpenStreetMap Tile Layer" -msgstr "" - -# 03febbea8db74f3f962fe9ed23608924 -#: ../../source/training/socialisation/introduction_to_qgis.rst:407 -msgid "" -"Later we will explore and use these tools in **Run Basic InaSAFE** and " -"**Intermediate Modules**." -msgstr "" - -# ffc9e01eb3cf4b6e86a9446298b53e69 -#: ../../source/training/socialisation/introduction_to_qgis.rst:410 -msgid "Summary" -msgstr "" - -# 48049d53438442499532a843424a66dd -#: ../../source/training/socialisation/introduction_to_qgis.rst:412 -msgid "" -"In this exercise you have learned about QGIS, the free and open source " -"software for processing spatial data. You have learned where to get QGIS, " -"how to install QGIS, understand the QGIS layout and looked at some useful " -"toolbars, learning how to turn ON/OFF qgis layers, and learned how to " -"symbolize the data layers." -msgstr "" - -# 10e4d8ed5d9545d5b56e8bc6a346fd53 -#: ../../source/training/socialisation/introduction_to_qgis.rst:419 -msgid "" -"We also learned how to install InaSAFE through the QGIS plugin manager. " -"Later on we will learn how to operate InaSAFE with DKI Jakarta flood " -"scenario." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/socialisation/objective.po b/docs/i18n/en/LC_MESSAGES/training/socialisation/objective.po deleted file mode 100644 index 2d958e06..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/socialisation/objective.po +++ /dev/null @@ -1,399 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:30+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# e3e9c4d37bde4d2b9b07ba064dfd4a85 -#: ../../source/training/socialisation/objective.rst:8 -msgid "Course objectives" -msgstr "" - -# 46621f93c0ed4c64bc8ee1a08e1fcc83 -#: ../../source/training/socialisation/objective.rst:10 -msgid "" -"We will introduce you to |project_name| (http://inasafe.org) - an extension " -"for QGIS that allows disaster managers to do better planning for disasters. " -"In this course we explain the conceptual domain - what |project_name| does " -"(and does not do), why it is important to use a tool such as |project_name|, " -"what kinds of hazards |project_name| can be used with and so on. We then " -"delve into the practical side of using |project_name|." -msgstr "" - -# 45870115ad244a7882b86450ad233148 -#: ../../source/training/socialisation/objective.rst:17 -msgid "" -"On completion of the course participants should have acquired the following " -"skills related to using |project_name|:" -msgstr "" - -# 4141f75ecd784651bc8184a89bada7a9 -#: ../../source/training/socialisation/objective.rst:27 -msgid "General" -msgstr "" - -# 21f6c7acbf0544958cc45feae54fc28b -#: ../../source/training/socialisation/objective.rst:21 -msgid "Understand the conceptual space in which |project_name| can be used" -msgstr "" - -# 35f351e1d3bd4711973b7c8e1b5b132e -#: ../../source/training/socialisation/objective.rst:22 -msgid "Understand the concept of hazard data" -msgstr "" - -# 39f65dda50ed45ba97e0d1d7d0f63405 -#: ../../source/training/socialisation/objective.rst:23 -msgid "Understand the concept of exposure data" -msgstr "" - -# d5144887eb674acab5a4224567e0a734 -#: ../../source/training/socialisation/objective.rst:24 -msgid "Understand the concept of aggregation data" -msgstr "" - -# 467cfa131def4508ac0d0996e9fd545f -#: ../../source/training/socialisation/objective.rst:25 -msgid "Understand the concept of an impact layer" -msgstr "" - -# e9e74cce4bf34103b87dbeebe73095c9 -#: ../../source/training/socialisation/objective.rst:26 -msgid "Understand the concept of an impact summary" -msgstr "" - -# 2df796b431904e008fef5037b2582be9 -#: ../../source/training/socialisation/objective.rst:32 -msgid "Data preparation" -msgstr "" - -# 91254e8a412c47dd8bbdd037d7ceb426 -#: ../../source/training/socialisation/objective.rst:30 -msgid "Be able to import a hazard layer and assign it appropriate keywords" -msgstr "" - -# 5e0bc89be3e84d20b2698cff462ce4c7 -#: ../../source/training/socialisation/objective.rst:31 -msgid "Be able to import an exposure layer and assign it appropriate keywords" -msgstr "" - -# 665e31cacbe94e219caac240c8ba1dd1 -#: ../../source/training/socialisation/objective.rst:32 -msgid "" -"Be able to import an aggregation layer and assign it appropriate keywords" -msgstr "" - -# 27b22563a2ae4819855dc09f987de3ac -#: ../../source/training/socialisation/objective.rst:37 -msgid "Analysis – Run Basic InaSAFE" -msgstr "" - -# 25c6135eafc94537ab439f6ae5c10e80 -#: ../../source/training/socialisation/objective.rst:35 -msgid "Be able to run a flood analysis using |project_name| - on buildings" -msgstr "" - -# 4c93410bc31543d5a50ed874a3fa60ff -#: ../../source/training/socialisation/objective.rst:36 -msgid "Be able to run a flood analysis using |project_name| - on population" -msgstr "" - -# 9d2b78989446475794d4f8cecaf5170c -#: ../../source/training/socialisation/objective.rst:37 -msgid "Be able to generate a PDF map from the results of an analysis" -msgstr "" - -# acf9e1e62d1f43bbadcf608efd5d00fb -#: ../../source/training/socialisation/objective.rst:43 -msgid "Analysis – Run Intermediate InaSAFE" -msgstr "" - -# a29bfdb28ba3478e92fefc6760632571 -#: ../../source/training/socialisation/objective.rst:40 -msgid "Be able to define keywords using the |project_name| keywords wizard" -msgstr "" - -# c1ed09583492497b95046be2c366e4d4 -#: ../../source/training/socialisation/objective.rst:41 -msgid "Be able to run |project_name| with aggregation data" -msgstr "" - -# 380d8b1dce0243e6b676bfdb18133bb2 -#: ../../source/training/socialisation/objective.rst:42 -msgid "Be able to use the |OSM| downloader" -msgstr "" - -# f454612109ba4a53996c43ad2e33673a -#: ../../source/training/socialisation/objective.rst:43 -msgid "" -"Be able to set the analysis area using the |project_name| analysis area tool" -msgstr "" - -# 74b2ec699e474f9e9d1072f805929dac -#: ../../source/training/socialisation/objective.rst:50 -msgid "Analysis – Run Other Hazards" -msgstr "" - -# bec3251178594af1a06887536eaf4a40 -#: ../../source/training/socialisation/objective.rst:46 -msgid "" -"Be able to run InaSAFE with other hazards, such as Earthquake, Tsunami and " -"Volcano" -msgstr "" - -# 3f8de44bb6d8421f82df2d96ab31746f -#: ../../source/training/socialisation/objective.rst:47 -msgid "Be able to read metadata and assign keywords to hazard data;" -msgstr "" - -# e8b622ef629148b1abe04537d7e2e182 -#: ../../source/training/socialisation/objective.rst:48 -msgid "" -"Be able to use the |project_name| dock and the |project_name| Function " -"Centric Wizard; and" -msgstr "" - -# 61180b3f381442fbbe94a243477955ea -#: ../../source/training/socialisation/objective.rst:49 -msgid "" -"Be able to use the Generic Impact Function and understand how to use it to " -"work with their own data." -msgstr "" - -# ee982541e6bc460c8f5a75a394e187a9 -#: ../../source/training/socialisation/objective.rst:54 -msgid "Practical application" -msgstr "" - -# b9884ffed1b94c2c80884c6bc6715037 -#: ../../source/training/socialisation/objective.rst:53 -msgid "Be able to explain the purpose of |project_name|" -msgstr "" - -# 83d90de4639e416eaefa83982875f8f2 -#: ../../source/training/socialisation/objective.rst:54 -msgid "" -"Be able to interpret |project_name| analysis results and use them in " -"disaster management." -msgstr "" - -# d8bbfbc0239b4449bee69d3d0cd5616c -#: ../../source/training/socialisation/objective.rst:57 -msgid "Target audience" -msgstr "" - -# 7bc3d9a23282487eaa04a77504e7d1f7 -#: ../../source/training/socialisation/objective.rst:59 -msgid "Persons responsible for developing disaster management plans" -msgstr "" - -# c91db47ddf084c9bb870d4fbd9caa537 -#: ../../source/training/socialisation/objective.rst:60 -msgid "" -"Lecturers and students from relevant departments such as Geography, Geodesy, " -"Geomatics, Information Technology and other earth-related sciences" -msgstr "" - -# d7163b944768415782364d674873f400 -#: ../../source/training/socialisation/objective.rst:62 -msgid "Representatives from NGOs working in disaster risk reduction" -msgstr "" - -# e93b2bbfc73e47899807c93cfff90a19 -#: ../../source/training/socialisation/objective.rst:63 -msgid "Other relevant organisations and agencies" -msgstr "" - -# e320c0490ee741d4a93cd0d1b59d7b15 -#: ../../source/training/socialisation/objective.rst:66 -msgid "Prerequisites" -msgstr "" - -# d82574ac1fc7476bb2ea019dd1941d41 -#: ../../source/training/socialisation/objective.rst:68 -msgid "" -"Able to operate a computer (word processors, presentations, internet, " -"spreadsheets)." -msgstr "" - -# bfead2bee0e140278124e9069c726842 -#: ../../source/training/socialisation/objective.rst:70 -msgid "Basic skills in Geographic Information Systems (GIS) is an advantage." -msgstr "" - -# 5272629c0a0e42c8b0decf4de59196c9 -#: ../../source/training/socialisation/objective.rst:71 -msgid "Laptop with:" -msgstr "" - -# d14a1fa14df646eb9ed15091625a4553 -#: ../../source/training/socialisation/objective.rst:73 -msgid "Minimum RAM of 2 GB (recommended 4 GB)" -msgstr "" - -# d15bf8de07514b888c8ff311d7ae0c29 -#: ../../source/training/socialisation/objective.rst:74 -msgid "WIFI - connected to the internet" -msgstr "" - -# bdb33c58b335466094ad322ae138db29 -#: ../../source/training/socialisation/objective.rst:75 -msgid "" -"Windows (XP, 7, 8), Linux (Training Ubuntu later than 12.04) or similar (e." -"g. Mint or Debian), Mac OSX (Lion - 10.7, Snow Leopard -10.6)" -msgstr "" - -# 56b2433ba4474e718f9b18b4892a1026 -#: ../../source/training/socialisation/objective.rst:77 -msgid "" -"|QGIS| at least version 2.6 installed http://www.qgis.org or ability to " -"install software on computer (i.e. have administration password)" -msgstr "" - -# 98715828d6b2407490957a74dbc34c7d -#: ../../source/training/socialisation/objective.rst:80 -msgid "Credits" -msgstr "" - -# f0c58b9fe44545748c219a61d23ff361 -#: ../../source/training/socialisation/objective.rst:82 -msgid "" -"|project_name| was originally developed by the Australian Government in " -"partnership with The National Agency for Disaster Management (BNPB), " -"Indonesia, and the World Bank-(|GFDRR|)." -msgstr "" - -# 720369847a2d450f914f319dbf7b40a5 -#: ../../source/training/socialisation/objective.rst:86 -msgid "" -"This |project_name| Socialisation Training Manual was developed by Kartoza " -"in collaboration with the Australian Government and the Humanitarian " -"OpenStreetMap Team (HOT)." -msgstr "" - -# e5ce289d5d554050b573822cdb441fb8 -#: ../../source/training/socialisation/objective.rst:91 -msgid "Manual based on:" -msgstr "" - -# 5b9252115e0a47a596f6639ebb33af39 -#: ../../source/training/socialisation/objective.rst:93 -msgid "Version 3.2 of |project_name|" -msgstr "" - -# 630fd1a4c7b74b468955e1df15648a48 -#: ../../source/training/socialisation/objective.rst:94 -msgid "Version 2.8.3 of |QGIS|" -msgstr "" - -# 66ea8c4b9d28441dbf0dfa132f638169 -#: ../../source/training/socialisation/objective.rst:97 -msgid "Produced:" -msgstr "" - -# 027ff9db46fb4c3085d03bec38511c8b -#: ../../source/training/socialisation/objective.rst:99 -msgid "" -"August 2013 (original) September 2014 (update) September 2015 (major " -"revision)" -msgstr "" - -# e96b8e9dcd174c39b38a048c9bf2e59c -#: ../../source/training/socialisation/objective.rst:104 -msgid "More information:" -msgstr "" - -# 6a597cdeb5a54e89a0722410fd301999 -#: ../../source/training/socialisation/objective.rst:106 -msgid "" -"General information on |project_name| appears online at the |project_name| " -"website: http://www.inasafe.org" -msgstr "" - -# c72100a1aee043c286c515530f01eae3 -#: ../../source/training/socialisation/objective.rst:109 -msgid "Contact: info@inasafe.org" -msgstr "" - -# 96a207dca74a49b8be8ad0cf4e787d75 -#: ../../source/training/socialisation/objective.rst:111 -msgid "**OR**" -msgstr "" - -# c1bacca36d2b436483e8c47a41017f22 -#: ../../source/training/socialisation/objective.rst:113 -msgid "DMInnovation," -msgstr "" - -# d458a6030fa2411781169d6afd52df64 -#: ../../source/training/socialisation/objective.rst:115 -msgid "Menara Thamrin Suite 1505" -msgstr "" - -# 0306664c07f5460db516650c1d06f295 -#: ../../source/training/socialisation/objective.rst:117 -msgid "Jl. MH Thamrin Kav. 3, Jakarta 10250, Indonesia," -msgstr "" - -# 85432b2e1c4644fab6c60738f176400c -#: ../../source/training/socialisation/objective.rst:119 -msgid "Ph: +62 21 398 30088" -msgstr "" - -# 32813064b16d4d8dbc9f94873df62d46 -#: ../../source/training/socialisation/objective.rst:124 -msgid "Resources obtained by:" -msgstr "" - -# 290dbfab60804c6da80679d8f78e000d -#: ../../source/training/socialisation/objective.rst:126 -msgid "Linfiniti Sphinx Theme" -msgstr "" - -# 28d3001e1dca4666b49e8eb3ab6545fc -#: ../../source/training/socialisation/objective.rst:129 -msgid "Manual licensed under:" -msgstr "" - -# 54529af5a7cd4836bd6808707f577348 -#: ../../source/training/socialisation/objective.rst:131 -msgid "" -"Creative Commons by Attribution by Kartoza/|BNPB|/|GoA|/World Bank-|GFDRR|." -msgstr "" - -# 4c636046416249018b90a9e016dc45ee -#: ../../source/training/socialisation/objective.rst:134 -msgid "Authors:" -msgstr "" - -# ad4d24175a064bf6944b162c59a17831 -#: ../../source/training/socialisation/objective.rst:136 -msgid "`Tim Sutton `_, Lead Developer - Kartoza" -msgstr "" - -# e789d271b10b4ebb94ca1beb2ddbaf4d -#: ../../source/training/socialisation/objective.rst:138 -msgid "" -"`Charlotte Morgan `_, Spatial Data Analyst - " -"Geoscience Australia" -msgstr "" - -# f1f9a3dfa96a4c9e9d5b4c1b79a545bc -#: ../../source/training/socialisation/objective.rst:141 -msgid "" -"Adityo Dwijananto, Harry Mahardika and Wulansari Khairunisa - Humanitarian " -"OpenStreetmap Team Indonesia" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/socialisation/run_basic_inasafe.po b/docs/i18n/en/LC_MESSAGES/training/socialisation/run_basic_inasafe.po deleted file mode 100644 index a8f04cf9..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/socialisation/run_basic_inasafe.po +++ /dev/null @@ -1,859 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:30+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 487ff2ec640a47e380a22aaca3389bf4 -#: ../../source/training/socialisation/run_basic_inasafe.rst:10 -msgid "Run Basic |project_name|" -msgstr "" - -# 65db813ce2804a64b1afeb4572acf0df -#: ../../source/training/socialisation/run_basic_inasafe.rst:13 -msgid "Introduction" -msgstr "" - -# 2c186bd081a94743bd3aaaeee2ce9b04 -#: ../../source/training/socialisation/run_basic_inasafe.rst:15 -msgid "" -"In this exercise we will work through an example scenario where we show how " -"the different data elements used by |project_name| are combined in order to " -"analyse the potential impact of a flood in Jakarta on both the buildings and " -"the population." -msgstr "" - -# 01395e61e7fc412d870c4d349e6d577f -#: ../../source/training/socialisation/run_basic_inasafe.rst:20 -msgid "" -"After we have run the |project_name| analysis we will print the map and " -"analysis report as pdf and review the results. We will also learn how to " -"change the flood threshold and take a look at the default settings for " -"minimum needs. We will also learn how to save our work." -msgstr "" - -# 38154e80883542b4bbbe47435367f260 -#: ../../source/training/socialisation/run_basic_inasafe.rst:26 -msgid "Learning objective" -msgstr "" - -# 36d0f9cb3f1943b19a3b527d1fe06053 -#: ../../source/training/socialisation/run_basic_inasafe.rst:28 -msgid "" -"To develop the participant’s basic understanding of the |project_name| " -"workflow and application of |project_name| in the Disaster Management " -"sector. By the end of this exercise; participants will:" -msgstr "" - -# d46a1790716b4eb09cc1675425fe47f3 -#: ../../source/training/socialisation/run_basic_inasafe.rst:32 -msgid "Be able to run a flood analysis using |project_name| - on buildings;" -msgstr "" - -# aed0224b426a424f8838d83b52006a2a -#: ../../source/training/socialisation/run_basic_inasafe.rst:34 -msgid "Be able to run a flood analysis using |project_name| - on population;" -msgstr "" - -# 9255ef0fef7e4aaa8c327fa62c8de015 -#: ../../source/training/socialisation/run_basic_inasafe.rst:36 -msgid "Understand the flood impact default settings;" -msgstr "" - -# b78233029e084a2fb045eb96cc0ca390 -#: ../../source/training/socialisation/run_basic_inasafe.rst:38 -msgid "Understand the impact summary report;" -msgstr "" - -# dd9e71d967c64d3d87f351e0a30ceb38 -#: ../../source/training/socialisation/run_basic_inasafe.rst:40 -msgid "Be able to change the analysis threshold and run a new scenario;" -msgstr "" - -# fcf6188492eb4e2193276bcefa7c4e65 -#: ../../source/training/socialisation/run_basic_inasafe.rst:42 -msgid "Be able to generate a PDF map from the results of an analysis; and" -msgstr "" - -# b3b68c367af3457183454ad2853c7877 -#: ../../source/training/socialisation/run_basic_inasafe.rst:44 -msgid "Be able to save their work to share results with others." -msgstr "" - -# f2a211bd388f48abac25693d2016aa94 -#: ../../source/training/socialisation/run_basic_inasafe.rst:47 -msgid "Data for this exercise" -msgstr "" - -# 74dc981eefb34b5c98723f1e05a73de6 -#: ../../source/training/socialisation/run_basic_inasafe.rst:49 -msgid "" -"The data for this exercise are available in **Run Basic InaSAFE v3.2 zip** " -"which can be downloaded from `InaSAFE Training Data `__ Packages . We will use the following QGIS project " -"file and spatial data:" -msgstr "" - -# 80fb880b620d4e2a91c886c34612b7f7 -#: ../../source/training/socialisation/run_basic_inasafe.rst:54 -msgid "DKI_Jakarta_Basic.qgs" -msgstr "" - -# 22917b7b6598456fa2c107bfefb65ad2 -#: ../../source/training/socialisation/run_basic_inasafe.rst:56 -msgid "Jakarta_Flood_HKV_WGS84" -msgstr "" - -# b56de527448c40559bb43f9134dd9f71 -#: ../../source/training/socialisation/run_basic_inasafe.rst:58 -msgid "Jakarta_Buildings_WGS84" -msgstr "" - -# e214c4d08b7e4b6fa2d2dda1d5bdcb8a -#: ../../source/training/socialisation/run_basic_inasafe.rst:60 -msgid "Java_Population" -msgstr "" - -# a1889140efc84f639d860e190595c19a -#: ../../source/training/socialisation/run_basic_inasafe.rst:63 -msgid "Exercise" -msgstr "" - -# 65b6b8a7df724a5aa6aeb2b79f1ddddb -#: ../../source/training/socialisation/run_basic_inasafe.rst:66 -msgid "1. Open QGIS Project" -msgstr "" - -# e4fef38f784e41ffa8fccab2876f7eec -#: ../../source/training/socialisation/run_basic_inasafe.rst:68 -msgid "" -"Before we can run an |project_name| analysis, we must open a QGIS project. " -"Please open the QGIS project file :file:`DKI_Jakarta.qgs` from the :file:" -"`InSAFE Training Data > DKI Jakarta` folder. The project looks something " -"like this:" -msgstr "" - -# 7c3385354df94ad79dfc2f2089026640 -#: ../../source/training/socialisation/run_basic_inasafe.rst:78 -msgid "" -"As you can see from the picture above, you will presented with several data " -"in Jakarta from building, java population, raster and vector flood hazard." -msgstr "" - -# 7bd44c55f9ee445aa0feb617c5c0ff5d -#: ../../source/training/socialisation/run_basic_inasafe.rst:82 -msgid "You will see that the project has three layers loaded:" -msgstr "" - -# 00c1ec67d3c740f78962b1b7660b8667 -#: ../../source/training/socialisation/run_basic_inasafe.rst:84 -msgid "" -"Buildings: these are exposure data. We will use these to assess the flood " -"impact on buildings." -msgstr "" - -# fde76aa589f94aefbca60e1e1dfb73f5 -#: ../../source/training/socialisation/run_basic_inasafe.rst:87 -msgid "" -"Flood: this is the hazard model. We will use this to determine the depth of " -"water." -msgstr "" - -# e897e2a48bbb4f8898a8ce1977f03860 -#: ../../source/training/socialisation/run_basic_inasafe.rst:90 -msgid "" -"Population: this is a population raster. We will use it to determine the " -"number of people exposed to the flood." -msgstr "" - -# d33cd5c4c74b4ad2ba6e3e11a47b035a -#: ../../source/training/socialisation/run_basic_inasafe.rst:93 -msgid "" -"More detailed information about the data used in this exercise can be found " -"in (datasets.rst). The table below provides a brief summary about the source " -"of the data." -msgstr "" - -# 7f95f6e2bdd145e08ecc87facb1a85aa -#: ../../source/training/socialisation/run_basic_inasafe.rst:98 -msgid "**Data**" -msgstr "" - -# 016550ec6b3c4f8a84061cdc7df4641e -#: ../../source/training/socialisation/run_basic_inasafe.rst:98 -msgid "**Source**" -msgstr "" - -# 8eeb7232f4014d329cab0fc98c88a81d -#: ../../source/training/socialisation/run_basic_inasafe.rst:98 -msgid "**Description**" -msgstr "" - -# c19c8cee25904e9cbcf3cad6e422b629 -#: ../../source/training/socialisation/run_basic_inasafe.rst:100 -msgid "Buildings" -msgstr "" - -# 45ca60b7715c439483f3aee0a358fd8d -#: ../../source/training/socialisation/run_basic_inasafe.rst:100 -msgid "OpenStreetMap" -msgstr "" - -# fd74c37594b94ada8d1657f3566b5427 -#: ../../source/training/socialisation/run_basic_inasafe.rst:100 -msgid "" -"Most of the important buildings in Jakarta have been mapped through the " -"collaboration of BPBD DKI Jakarta, OpenStreetMap and the Australian " -"Government. `See more at... `__" -msgstr "" - -# 701ad21630fc4c8d8dfda3158cfa83ab -#: ../../source/training/socialisation/run_basic_inasafe.rst:106 -msgid "Java_population_WGS84" -msgstr "" - -# 91cb8a4247dd4b92b031063e560d9703 -#: ../../source/training/socialisation/run_basic_inasafe.rst:106 -msgid "WorldPop" -msgstr "" - -# ac50265271634c5ea24264c5231c1c12 -#: ../../source/training/socialisation/run_basic_inasafe.rst:106 -msgid "" -"High resolution, modelled data for human population distributions. `See more " -"at... `__" -msgstr "" - -# 079ff5d69cca49cc9990f9fd40d9dfe2 -#: ../../source/training/socialisation/run_basic_inasafe.rst:110 -msgid "a Flood similiar to 2007" -msgstr "" - -# 6132839d36634770a47ce34b4077d014 -#: ../../source/training/socialisation/run_basic_inasafe.rst:110 -msgid "Jakarta Event" -msgstr "" - -# c30678fa660342c89a65ab0dd6a0dd2d -#: ../../source/training/socialisation/run_basic_inasafe.rst:109 -msgid "HKV" -msgstr "" - -# 004bac09af5a49c096390abce4bbed05 -#: ../../source/training/socialisation/run_basic_inasafe.rst:109 -msgid "" -"The flood model was created by scientists/engineers in coordination with DKI " -"Jakarta Public Works based on the 2007 flood conditions. `See more at... " -"`__" -msgstr "" - -# 2925397a09734e8cb3709497e8ccda64 -#: ../../source/training/socialisation/run_basic_inasafe.rst:114 -msgid "" -"Let's move into the next section where we will run our first |project_name| " -"analysis using these data. We will be working with the flood hazard model to " -"look at the number of affected buildings. These data already have keywords " -"assigned so we are ready to run the analysis." -msgstr "" - -# 2253377a1064429ba57758dfe90a3cf0 -#: ../../source/training/socialisation/run_basic_inasafe.rst:120 -msgid "2. Run |project_name| Analysis for Building" -msgstr "" - -# e95ed59f301c4ee6a46c8238f40f0d42 -#: ../../source/training/socialisation/run_basic_inasafe.rst:122 -msgid "" -"Take a look at the |project_name| dock on the right side of QGIS. The |" -"project_name| dock should show that you are ready to run a flood analysis on " -"buildings. It poses the question “In the event of **a flood similar to the " -"2007 Jakarta event**, how many **buildings** might **be flooded**?” In this " -"analysis we will use the default flood depth threshold of 1.0 metre. Later " -"on we will learn how to change the threshold." -msgstr "" - -# a9f5602cfbc04f6caafcc0fc6eb88c6e -# 0cd8065898de41da9e57603fcd69018e -#: ../../source/training/socialisation/run_basic_inasafe.rst:129 -#: ../../source/training/socialisation/run_basic_inasafe.rst:294 -msgid "a. Run |project_name| Analysis" -msgstr "" - -# 35601b34b2014ad8983ef4574876515f -#: ../../source/training/socialisation/run_basic_inasafe.rst:135 -msgid "" -"Click :guilabel:`Run` in the lower right corner of the |project_name| panel " -"to start the analysis process. If everything was set up correctly, you " -"should get a result in the dock area after a few seconds, and a new map " -"layer should be added to the map." -msgstr "" - -# 148fcd081eb14925996d630dfeb97995 -#: ../../source/training/socialisation/run_basic_inasafe.rst:145 -msgid "b. Interpret the results" -msgstr "" - -# 652c94b0649d43b893eb4df7ef3101e0 -#: ../../source/training/socialisation/run_basic_inasafe.rst:147 -msgid "" -"The new impact layer will be generated and called **Estimated buildings " -"affected**. Let’s take a look for a while at the new impact layer generated " -"by |project_name|." -msgstr "" - -# 804c1c8f26f945b6b2c4c3f0b63e0071 -#: ../../source/training/socialisation/run_basic_inasafe.rst:151 -msgid "Zoom in to some area in Map Canvas" -msgstr "" - -# 871363af5b4843e1995d84e8c496b4e7 -#: ../../source/training/socialisation/run_basic_inasafe.rst:153 -msgid "" -"Here we have zoomed in to a location showing two rivers going through the " -"middle of Jakarta. There will be three new different colours generated from |" -"project_name| (green, orange, and red)." -msgstr "" - -# b2492d13fd89420884d6bb380104f4ac -#: ../../source/training/socialisation/run_basic_inasafe.rst:161 -msgid "" -"If you didn't see these colours, you might need to turn off the data layer " -"above the *Estimated building affected* layer." -msgstr "" - -# 3bf5c1bcf4fa4d9b86978ff29445efd4 -#: ../../source/training/socialisation/run_basic_inasafe.rst:163 -msgid "" -"The red buildings are situated in water greater than one metre, the orange " -"buildings are situated in water between zero and one metre, while the green " -"buildings are considered unaffected as they are situated in water less than " -"the threshold of one metre." -msgstr "" - -# d0d3b7ecd8874267aaf8e5d455614f5f -#: ../../source/training/socialisation/run_basic_inasafe.rst:168 -msgid "" -"Click :guilabel:`Estimated building affected` in the layer list to select it " -"and click :guilabel:`Identify Feature` tool and then click on building to " -"know what attribute of the building." -msgstr "" - -# a2c5bc5be443447481047e26ec801dbd -# 0d3dea67018a476f8e9661a8594e0d28 -#: ../../source/training/socialisation/run_basic_inasafe.rst:176 -#: ../../source/training/socialisation/run_basic_inasafe.rst:334 -msgid "" -"In the |project_name| panel we now see the impact summary. The details of " -"are explained below." -msgstr "" - -# 927d511675e144b29c472774c2442fa6 -#: ../../source/training/socialisation/run_basic_inasafe.rst:183 -msgid "" -"**Hazard Category**: divides the results into several categories based on " -"the threshold set in the hazard analysis. In this impact summary, |" -"project_name| divides the impact buildings into three category: number of " -"building inundated (building affected by water deeper than the analysis " -"threshold), number of wet building (building affected by flood water but not " -"as deep as the analysis threshold), and number of dry building (building " -"that are not affected by any flood water)" -msgstr "" - -# ad7c7bab244e4bc08545ac3b9da11f5a -#: ../../source/training/socialisation/run_basic_inasafe.rst:192 -msgid "" -"**Building type:** divides the exposed buildings into several categories " -"based on the building type attribute for each building. In this impact " -"summary, |project_name| breaks down the results into a more detailed report " -"by looking at each type of the building, for example the number of inundated " -"hospitals and the total number of hospital in analysis area." -msgstr "" - -# 6b25e4b4d6a2456dbfe928c7c4b74c30 -# e69c943a063344738ac1f795792c20ca -#: ../../source/training/socialisation/run_basic_inasafe.rst:199 -#: ../../source/training/socialisation/run_basic_inasafe.rst:349 -msgid "" -"**Action checklist:** designed to make disaster managers think about what " -"they need to do/discuss when planning for a similar event in the future." -msgstr "" - -# 3c3346abe0704678942b51376af4956b -#: ../../source/training/socialisation/run_basic_inasafe.rst:203 -msgid "" -"**Note:** provides details about the input data and any limitations or " -"assumptions in the analysis or report summary. In this example, it explains " -"why building are said to be inundated, wet and dry." -msgstr "" - -# b55617b4d09a4bf59917dd0cd7ed7d66 -#: ../../source/training/socialisation/run_basic_inasafe.rst:208 -msgid "" -"**Detailed building type report:** statistical breakdown of the number of " -"results. In this example is the number of important infrastructure. When you " -"choose to use an aggregation layer with your analysis (we will do this " -"later) this table will show the number of buildings by aggregation boundary." -msgstr "" - -# c7ed4df80a654fb9811b6cda99395bce -#: ../../source/training/socialisation/run_basic_inasafe.rst:214 -msgid "**Hazard details:** explains where the hazard data come from" -msgstr "" - -# 987fa7c6ad0a4edcacb051d08c48b52c -#: ../../source/training/socialisation/run_basic_inasafe.rst:216 -msgid "**Exposure detail:** explains where the exposure come from" -msgstr "" - -# 2f668a30845b44668c4952cf0f763749 -#: ../../source/training/socialisation/run_basic_inasafe.rst:218 -msgid "" -"The results show the buildings that will be affected by flood water 1m deep. " -"But what if the disaster manager decides that buildings in 80cm of water are " -"also flooded? In order to assess this new scenario, we need to change the " -"water depth threshold at which buildings are considered to be inundated. " -"With |project_name| it is easy to run a new scenario, all you need to do is " -"change the **Thresholds [m]** in the Options tab to 0.8 and run the scenario " -"again. We will do this next." -msgstr "" - -# ef088502639944ee8f30a998682352ce -#: ../../source/training/socialisation/run_basic_inasafe.rst:227 -msgid "c. Changing threshold" -msgstr "" - -# 3b242cbcb08b4c319d9d28c6418b5ff3 -#: ../../source/training/socialisation/run_basic_inasafe.rst:229 -msgid "" -"In the Jakarta flood scenario we are running; the threshold refers to the " -"depth of water that a disaster manager decides is the boundary between " -"buildings being flooded (affected) and buildings not being affected." -msgstr "" - -# ebe97a22ae314e00bdcaa04282e16b32 -#: ../../source/training/socialisation/run_basic_inasafe.rst:234 -msgid "" -"You only can change the threshold mostly for Raster Hazard Type. Default " -"threshold for this hazard is 1m or 100cm." -msgstr "" - -# e0323e171b51487dbb3168cf6134322f -#: ../../source/training/socialisation/run_basic_inasafe.rst:236 -msgid "" -"If you want to open |project_name| question panel again, click on :guilabel:" -"`Show question form` at the top of the |project_name| panel. You will see " -"the |project_name| question panel again and you can click the :guilabel:" -"`Options` button next to :guilabel:`be flooded`." -msgstr "" - -# 1ca531d8536d478a918804111d5f52d6 -#: ../../source/training/socialisation/run_basic_inasafe.rst:245 -msgid "It will open the |project_name| impact function configuration." -msgstr "" - -# c2d2db8d61b5422fa156c1203b70be11 -#: ../../source/training/socialisation/run_basic_inasafe.rst:251 -msgid "" -"Here you can change the threshold of the flood according to your need, in " -"this example we change it to 0.8m. After you change the threshold to 0.8, " -"click :guilabel:`OK` to close the dialog and then run the analysis again to " -"see the change in the results." -msgstr "" - -# 74d043f1ce324fc9bfd281fd9b74b85d -#: ../../source/training/socialisation/run_basic_inasafe.rst:256 -msgid "" -"When the function completes, take a look at the impact summary in the |" -"project_name| panel. How do the results compare to the first analysis " -"results? The result should be different to the first analysis because in the " -"first analysis |project_name| buildings are said to be inundated if the " -"**flood level exceeds 1.0m** and now we have changed the flood level to " -"**0.8m**, this means that building are said to be inundated when the **flood " -"level exceed 0.8m**. This means that more building will be defined as " -"inundated with the lower flood threshold value because a greater area of " -"Jakarta is flooded at this depth." -msgstr "" - -# 6b22d83573bb4d3eb5d7854ffb7c6c3f -#: ../../source/training/socialisation/run_basic_inasafe.rst:265 -msgid "ask your tutor to explain if you do not understand this." -msgstr "" - -# c1eedc11172c46b1bc29aca6abe66675 -#: ../../source/training/socialisation/run_basic_inasafe.rst:267 -msgid "" -"This completes our first |project_name| analysis using the flood hazard " -"model to look at the number of affected buildings." -msgstr "" - -# c44a8f9cf7b049eea01a8d61b49282ca -#: ../../source/training/socialisation/run_basic_inasafe.rst:270 -msgid "3. Run |project_name| for population" -msgstr "" - -# 1939e99cae6d4d2eb5949e6d2617ad90 -#: ../../source/training/socialisation/run_basic_inasafe.rst:272 -msgid "" -"We are now ready to run our second |project_name| analysis using the flood " -"hazard data for Jakarta. We will be working with the flood hazard model " -"again, but this time to look at the number of impacted people. These data " -"already have keywords assigned so we will be ready to run the analysis as " -"soon as we have turned on the relevant data layers." -msgstr "" - -# ab424d9db5f545b0b8ad1002756392b2 -#: ../../source/training/socialisation/run_basic_inasafe.rst:278 -msgid "" -"In the QGIS, turn OFF the **Buildings** and **estimated building affected** " -"(the layers generated from |project_name| analysis and turn ON " -"**Java_Population_WGS84** layer." -msgstr "" - -# dceacf5e123d46338a6622092fa94609 -#: ../../source/training/socialisation/run_basic_inasafe.rst:281 -msgid "" -"Confirm that the |project_name| panel on the right side is set to query how " -"many people might need evacuation:" -msgstr "" - -# d761beb0f1f741be90edd50eb384c7a8 -# 0c508ae508264f76958629231cd5aa66 -# 943ebd0bdca64741a14d35b114880945 -# f2bb00acd8234557a1b8b9061e804bb6 -#: ../../source/training/socialisation/run_basic_inasafe.rst:283 -msgid "A flood similar to the 2007 Jakarta event" -msgstr "" - -# ef22c5f8ab674241aded7037061e71a8 -#: ../../source/training/socialisation/run_basic_inasafe.rst:285 -msgid "People" -msgstr "" - -# 3893c050ec3a4582b4818ec77ee8fabb -#: ../../source/training/socialisation/run_basic_inasafe.rst:287 -msgid "Need evacuation" -msgstr "" - -# 652c823934504d7f803a485f921499de -#: ../../source/training/socialisation/run_basic_inasafe.rst:296 -msgid "" -"If everything is setup correctly, the |project_name| dock should show that " -"you are ready to run a flood analysis on population. It poses the question " -"“In the event of **a flood similar to the 2007 Jakarta event**, how many " -"**people** might **need evacuation**?” In this analysis we will use the " -"default flood depth threshold of 1.0 metre to find out how many people are " -"in 1 metre of water. After everything is setup accordingly click :guilabel:" -"`Run` to process the new scenario." -msgstr "" - -# 881c3418cd8240169cbbc4d3b2331692 -#: ../../source/training/socialisation/run_basic_inasafe.rst:304 -msgid "" -"Notice that if you click on the drop-down list on \"How Many **People**, the " -"**building** option is not available. This is because **building** is not " -"checked in the Layers panel." -msgstr "" - -# 8542d1c212af427fa77927ea0bfe5615 -#: ../../source/training/socialisation/run_basic_inasafe.rst:309 -msgid "b. Interpret The Results" -msgstr "" - -# 3015e281cb48497daa13e2000d20e2c7 -#: ../../source/training/socialisation/run_basic_inasafe.rst:311 -msgid "" -"If everything was set up correctly, you should get a result in the dock area " -"after a few seconds, and a new map layer should be added to the map. The new " -"impact layer will be called **population which need evacuation**. Let’s " -"explore the result again to make you understand more about the |" -"project_name| result." -msgstr "" - -# 16b99c899aaf44ca85f90d630518aa45 -#: ../../source/training/socialisation/run_basic_inasafe.rst:316 -msgid "" -"Turn Off **Estimated building affected** layer and drag the **population " -"which need evacuation** above **a flood similar to 2007 Jakarta event**" -msgstr "" - -# 565b8d9406484bac8442ee408ce63f7c -#: ../../source/training/socialisation/run_basic_inasafe.rst:319 -msgid "Zoom in the area you choose" -msgstr "" - -# 397a4bf4096c461ab2044b62cd64a528 -#: ../../source/training/socialisation/run_basic_inasafe.rst:321 -msgid "" -"Select **population which need evacuation** in the layer list and use :" -"guilabel:`Identify Feature` tool again to select a pixel (square) in the map " -"canvas." -msgstr "" - -# 97e6d9cf25ea448388cfcbee0616ddaf -#: ../../source/training/socialisation/run_basic_inasafe.rst:325 -msgid "" -"Here we clicked on one of the light green pixels and find that there is a " -"value of 80.75106, which means there are approximately 80 people in this one " -"pixel (square) needed to evacuate because of the flood." -msgstr "" - -# f048e1427ac24cb685e9205462afc203 -#: ../../source/training/socialisation/run_basic_inasafe.rst:341 -msgid "" -"**Population needing evacuation:** |project_name| estimates the number of " -"affected people in the analysis area. It is assumed that all of these people " -"will need to be evacuated." -msgstr "" - -# fd2880e3182c41e88df5a5141f24593f -#: ../../source/training/socialisation/run_basic_inasafe.rst:345 -msgid "" -"**Needs per week:** are calculation numbers of food, water and other " -"products that needed by evacuated people. These needs should be provided " -"weekly." -msgstr "" - -# 6de5dfb657a3476cb4bcaad6d4ab51ca -#: ../../source/training/socialisation/run_basic_inasafe.rst:352 -msgid "" -"**Notes:** provides details about the input data and any limitations or " -"assumptions in the analysis or report summary. In this example, it explains " -"the total people in the analysis area and the source of minimum needs." -msgstr "" - -# 71615dfcc4a447a99f7206919fa34b7b -#: ../../source/training/socialisation/run_basic_inasafe.rst:356 -msgid "" -"**Detailed gender and age report:** provides a breakdown of the number of " -"affected people by age (youth, adults and elderly) and gender based on the " -"default world population demographics and calculates the minimum needs for " -"women’s hygiene and pregnant women." -msgstr "" - -# ffc92cda4e294160a812cfac54e9fbbb -#: ../../source/training/socialisation/run_basic_inasafe.rst:361 -msgid "" -"**Detailed minimum needs report:** provides a breakdown of the number " -"minimum needs for evacuated people which based on **PERKA No 7/2008**. This " -"minimum need consist of rice, drinking water, clean water, family kits and " -"toilet and provided weekly." -msgstr "" - -# 186d526cc7a44c22a8a1de573916dedb -#: ../../source/training/socialisation/run_basic_inasafe.rst:371 -msgid "c. Understand defaults minimum needs" -msgstr "" - -# 46dae17c42bc4b44815d3cee201249d5 -#: ../../source/training/socialisation/run_basic_inasafe.rst:373 -msgid "" -"The |project_name| impact summary for flood impact on people includes " -"details for the amount of drinking water, rice, clean water, and family kits " -"and for the number of toilets that should provide for displaced persons each " -"week. The minimum needs in the Jakarta flood impact assessment are based on " -"**Head of Indonesia National Disaster Management Agency, BNPB, regulation, " -"PERKA No 7/2008 guideline procedure for fulfillment of basic needs in " -"Disaster Response.** According to the following default formula:" -msgstr "" - -# 3e21c4cfed30448d94cddc1a1805a984 -#: ../../source/training/socialisation/run_basic_inasafe.rst:382 -msgid "400g rice per person per day (2.8kg per week)" -msgstr "" - -# 066dd79d497b450d81a109cce405d764 -#: ../../source/training/socialisation/run_basic_inasafe.rst:384 -msgid "2.5l drinking water per person per day (17.5l per week)" -msgstr "" - -# 8a3f76feb4a84472b0fac8db757114bb -#: ../../source/training/socialisation/run_basic_inasafe.rst:386 -msgid "15l clean water per person per day (105l per week)" -msgstr "" - -# 16810b1a7dcb43de8c0000f026469b5a -#: ../../source/training/socialisation/run_basic_inasafe.rst:388 -msgid "" -"one family kit per family per week (assumes five people per family which is " -"not specified in perka)" -msgstr "" - -# e4da029a6c8544ab94d07ead40732fed -#: ../../source/training/socialisation/run_basic_inasafe.rst:390 -msgid "20 people per toilet" -msgstr "" - -# b571b90f258c4495babea46e51e9148c -#: ../../source/training/socialisation/run_basic_inasafe.rst:392 -msgid "" -"As described above, the impact summary and minimum needs calculation is " -"based on the default world population demographics (which assumes a ratio of " -"26.3% youth, 65.9% adult and 7.9% elderly)." -msgstr "" - -# 1d9807d005804e3fae08829a5623c4ce -#: ../../source/training/socialisation/run_basic_inasafe.rst:396 -msgid "" -"You may like to refer to local population statics (for example - `Population " -"of DKI Jakarta `__) to change these defaults for your analysis area, " -"similarly if you have other regulation for minimum needs, you can change in " -"the Impact Function Configuration in Minimum Needs Tab or if you want to " -"create your own minimum needs, you can use minimum needs configuration (see " -"more at `Minimum Needs Configuration manuals `__)." -msgstr "" - -# a506ca282123442198e89b8e388d1e9e -#: ../../source/training/socialisation/run_basic_inasafe.rst:409 -msgid "4. Print and Save your |project_name| Results" -msgstr "" - -# fae4d7e1b98b4dc89499c75c5a52cbe5 -#: ../../source/training/socialisation/run_basic_inasafe.rst:411 -msgid "" -"We can also print the analysis results; the impact map and the impact " -"summary, as two separate pdf files. To print |project_name| result:" -msgstr "" - -# 06ee6321cb174e95bc58496a50a429d9 -#: ../../source/training/socialisation/run_basic_inasafe.rst:414 -msgid "Click :guilabel:`Print` at the bottom of the |project_name| panel." -msgstr "" - -# d2f0899240b54eddbf43bde0a597d03d -#: ../../source/training/socialisation/run_basic_inasafe.rst:416 -msgid "A window will pop up as shown below." -msgstr "" - -# 1da96d28ccad43b2b976edfef1571f6c -#: ../../source/training/socialisation/run_basic_inasafe.rst:422 -msgid "**Area to print**: leave this set to the default **analysis extent**." -msgstr "" - -# 05ac442b982a4691bb05664e1e8c1006 -#: ../../source/training/socialisation/run_basic_inasafe.rst:424 -msgid "**Template to use**: leave this set to the **default portrait - a3**." -msgstr "" - -# 549dd59c7950486e92bd528d838dc8d9 -#: ../../source/training/socialisation/run_basic_inasafe.rst:426 -msgid "" -"For more information about printing, click :guilabel:`Help` in the print " -"window." -msgstr "" - -# 2dbd04acc63b4e38908ee1fd06d2b831 -#: ../../source/training/socialisation/run_basic_inasafe.rst:428 -msgid "Click :guilabel:`Open PDF`." -msgstr "" - -# 92127b1debdb40a79326ee0d0f26d482 -#: ../../source/training/socialisation/run_basic_inasafe.rst:430 -msgid "" -"Navigate to where you would like to save the PDF. By default, the filename " -"is related to the scenario (in this case it will say Buildings_inundated) " -"but you can name the file name by yourself, for example :file:" -"`Jakartaflood_building_1m`. In this case adding 1m to the file name reminds " -"us that in this flood impact scenario our threshold flood depth was 1 metre. " -"Click :guilabel:`Save`." -msgstr "" - -# 309117a9baa54c7698f0713a53331a5b -#: ../../source/training/socialisation/run_basic_inasafe.rst:439 -msgid "" -"Two PDFs will be generated, one shows a map with the impact layer and the " -"other has tables from the impact summary. Take a look at the result." -msgstr "" - -# f26270a3d27a41939969c3fa1887cd89 -#: ../../source/training/socialisation/run_basic_inasafe.rst:446 -msgid "" -"We are now already have the impact result in pdf files, but what if we want " -"to keep the impact result in shapefile? Is the impact result shapefile " -"automatically stored?" -msgstr "" - -# 9ce1cf96443c438cb8170749f7417f43 -#: ../../source/training/socialisation/run_basic_inasafe.rst:450 -msgid "" -"The |project_name| impact result layer is saved in temporary folder, this " -"means that it will automatically deleted if you restart your computer, " -"unless you save your QGIS project. If you want to keep your |project_name| " -"results (so you can refer to them again or share them with others), you need " -"to manually save the |project_name| impact layer |project_name| as new layer " -"in same directory as your project." -msgstr "" - -# 473a45b3b1e242efb874183cdd797b0a -#: ../../source/training/socialisation/run_basic_inasafe.rst:457 -msgid "" -"Right click on your |project_name| analysis result, for example **estimated " -"building affected** or **population which need evacuation** and click :" -"guilabel:`Save As...`" -msgstr "" - -# d43a8414201b43bfb64be195432681d9 -#: ../../source/training/socialisation/run_basic_inasafe.rst:460 -msgid "" -"A new window will appear. Click :guilabel:`Browse…` and name your new layer " -"and click :guilabel:`Save` and then click :guilabel:`OK`." -msgstr "" - -# 71998ce54d05417c975e6f737810f9dd -#: ../../source/training/socialisation/run_basic_inasafe.rst:463 -msgid "" -"If you want to save your current project you can save it by clicking on :" -"menuselection:`Project > Save As...` to save your current project. It’s " -"better to not overwrite the training project so you can exercise again later." -msgstr "" - -# 6428972ccccc4e1fb31bb214e352f8b3 -#: ../../source/training/socialisation/run_basic_inasafe.rst:468 -msgid "Summary" -msgstr "" - -# 4d24fbf473db4a47a23827ac09e4d56e -#: ../../source/training/socialisation/run_basic_inasafe.rst:470 -msgid "" -"In this exercise you have learned how to run a basic |project_name| analysis " -"using an existing QGIS project file and what the minimum component that must " -"be there to run |project_name| properly. Those components are hazard and " -"exposure data. In this exercise, you have run an |project_name| impact " -"assessment for a flood scenario in Jakarta using two types of exposure data. " -"The hazard data you used was a modelled flood raster and the exposure data " -"were buildings and population. These analyses produced impact layers and " -"impact summaries for affected buildings and impacted people." -msgstr "" - -# 7db94557739a448ca399d27765d87861 -#: ../../source/training/socialisation/run_basic_inasafe.rst:480 -msgid "" -"You have also learned how to modify the analysis options through the Impact " -"Function configuration, how to print |project_name| results in PDF format, " -"understand what minimum needs is and how to save both your impact layers and " -"your QGIS project file." -msgstr "" - -# 71daeacf7c0e4f26b21297fcc6d65580 -#: ../../source/training/socialisation/run_basic_inasafe.rst:485 -msgid "" -"In the next section you will learn more about how to run |project_name| in " -"more detail. In that module you will learn how to use more |project_name| " -"tools such as Agreggation options, OSM Downloader, Minimum Needs " -"Configuration, etc." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/socialisation/run_intermediate_inasafe.po b/docs/i18n/en/LC_MESSAGES/training/socialisation/run_intermediate_inasafe.po deleted file mode 100644 index 63e02855..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/socialisation/run_intermediate_inasafe.po +++ /dev/null @@ -1,627 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# d6a23771ef144ecc9cc7015b01bfe1c9 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:10 -msgid "Run Intermediate |project_name|" -msgstr "" - -# 9f1a19d606904fe3836d73e179ab9c29 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:13 -msgid "Introduction" -msgstr "" - -# 369be9b47a944c87958fbe18c7ae66dd -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:15 -msgid "" -"In `Run Basic InaSAFE `__ we learned how to run a flood analysis on " -"population and buildings, adjust the flood impact default settings and " -"analyze impact summary report, and change analysis threshold. We also " -"learned how to save our work and generate a pdf of the analysis results. In " -"this exercise we will learn more techniques such as how to run |" -"project_name| with aggregation data to produce reports broken down by " -"districts or regions. We will also learn how to download data using the " -"OpenStreetMap downloader and how to run |project_name| analysis on the " -"downloaded building polygons and roads. Last but not least, we will learn " -"how to define the analysis area." -msgstr "" - -# 2602e24c7bf549c688b4fe1c662a0d1a -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:26 -msgid "Learning Objective" -msgstr "" - -# 97a8c0243c6e4529862f7840d787431f -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:28 -msgid "" -"To improve the participant’s understanding of additional |project_name| " -"function and features. By the end of this exercise, participants will be " -"able to:" -msgstr "" - -# a3d2b2b4320a49a1be6ff9e6d6221401 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:31 -msgid "Define keywords using the |project_name| keyword wizard" -msgstr "" - -# 98a2bd08e93840ef895310bd2e848a70 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:33 -msgid "Run |project_name| with aggregation data" -msgstr "" - -# e1d6f110907349eabb9b583e45e3a49d -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:35 -msgid "Use the OpenStreetMap Downloader to download data for |project_name|" -msgstr "" - -# d424259698db45cc9682bb0f8f5bec27 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:37 -msgid "" -"Set the |project_name| analysis area using the |project_name| analysis area " -"tool." -msgstr "" - -# 5ee6067bcd39494db0595c83145f72fb -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:40 -msgid "Data for this exercise" -msgstr "" - -# 4be0f2109ade40c9a7b047d11c2bb8f2 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:42 -msgid "" -"The data for this exercise are available in DKI Jakarta.zip which can be " -"downloaded from `InaSAFE Training Data `__. We will use the following data:" -msgstr "" - -# ee14bf84260e422baf45af2c8cccb584 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:45 -msgid "Jakarta Flood 18113 WGS84" -msgstr "" - -# b0657f08c2354133936b82f23ebdbd74 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:47 -msgid "Jakarta District Boundary WGS84" -msgstr "" - -# b63ac58fbd8746898da22087c0b89e79 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:49 -msgid "Jakarta Subdistrict Boundary WGS84" -msgstr "" - -# c9877cdc81c940b48c0a0d4c38ea874e -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:51 -msgid "Jakarta Population WGS84" -msgstr "" - -# e7a878fa782b433abb59998560b27c64 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:54 -msgid "Exercise" -msgstr "" - -# a13e2fb7233341dab68a3a55fd47a3e0 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:57 -msgid "Run |project_name| for Population Data" -msgstr "" - -# e5920bc13dd540ed995312252c406737 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:60 -msgid "A. Add and symbolize vector data" -msgstr "" - -# c2cdbcf4131c47078c86ff7248249af8 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:62 -msgid "" -"Click :guilabel:`Open` and select :file:`DKI Jakarta Intermediate.qgs`. " -"There is a notification to save the current project, choose whether to save " -"your current work or discard your current work. Once :file:" -"`DKI_Jakarta_Intermediate` is opened, you will see the following:" -msgstr "" - -# 4784a3dd2b5f42e2b560b14c81633690 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:70 -msgid "" -"Next, add :file:`Jakarta Flood 18113 WGS84` data from :file:`Run " -"Intermediate InaSAFE > DKI Jakarta > 01 Hazard Data`. This is the flood " -"hazard data for Jakarta from an actual flood event. During Jakarta floods in " -"January 2013, the provincial disaster manager collected information about " -"the flood, including the location of flooded areas by sub-village boundary " -"(see more about this data at :ref:`datasets`.)" -msgstr "" - -# 35cec35fe9a048debb61dbfc135b056c -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:76 -msgid "" -"Let us symbolize this layer so that it shows only affected areas (if you " -"forget how to symbolize, you can go to :ref:`introduction_to_qgis`.) The " -"layer should look like this:" -msgstr "" - -# c259dc2d4d2a4267a4d38db55a61fa0a -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:84 -msgid "" -"Using this layer, we will be able to see which area in Jakarta are " -"categorized as flooded/affected area by analyzing the data using |" -"project_name|. On the InaSAFE Dock, you will notice that the hazard is not " -"there and only exposure data (population) is visible, even though you " -"already turned ON the data layer." -msgstr "" - -# 98832aa5fe8f48f39e257327ee72a601 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:94 -msgid "" -"Do you know why |project_name| did not display the Jakarta Flood Vector " -"Hazard data on the dock? The answer will be provided in the next section." -msgstr "" - -# 72c82e1a02334ed6ad1626b3243217cc -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:98 -msgid "B. Define keyword for hazard data" -msgstr "" - -# 0183add1ef2b48b480a38ff3293be6d6 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:100 -msgid "" -"|project_name| need a keyword to determine what type of data the user " -"provide for analysis (hazard data, exposure data or aggregation data). If " -"the data provided does not have a keyword, it will show a warning message " -"“Layer Keyword Missing” in the |project_name| Dock. Try selecting :guilabel:" -"`A Flood in Jakarta like 2013` layer and look at the |project_name| dock, " -"You will see the following:" -msgstr "" - -# 312f8352df264c78bc26d34f26aa79a6 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:111 -msgid "" -"As you can see from the picture above, this layer keywords are missing and " -"we need to open the keyword wizard to solve this problem. The keywords " -"wizard will take you through a step-by-step process of assigning keywords to " -"your data." -msgstr "" - -# 0f6152a3b30a442395dbbe623dd0e152 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:116 -msgid "" -"Select **A Flood in Jakarta like 2013** layer and click :guilabel:`Keyword " -"Creation Wizard`. A window will appear and follow the steps provided by the :" -"guilabel:`Keyword Creation Wizard.` If you get stuck, you can follow the " -"diagram below to understand the steps and the choices you will be offered." -msgstr "" - -# 0cbb669bb7c6498fb219ac784854fb68 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:123 -msgid "Steps in the Keyword Creation Wizard" -msgstr "" - -# 0a5e9c8f92ad41579fbef6ef53087152 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:125 -msgid "" -"Starting at the top of the diagram and working down; in the first step you " -"will choose if your data are hazard, exposure or aggregation data. Your " -"choice will determine the next options offered. You can always go back and " -"change things later." -msgstr "" - -# a0236c7cef2e48b6a6c31611ec340a8e -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:130 -msgid "" -"If you choose Hazard or Exposure, you will need to select the type of hazard " -"or exposure. Next, you will choose whether the layer mode is continuous or " -"classified (if you forget what Continuous or Classified means, you can " -"reference the `Key Concept of Disaster Management section `__). Both " -"Hazard and Exposure types have the same step after you define the layer " -"mode: defining which unit or attribute represents the hazard." -msgstr "" - -# 62033b6258d1407e97bf8429d40e7d1a -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:139 -msgid "" -"The steps will be different for aggregation data. After you define the data " -"as aggregation data, you will select the attribute to represent the names of " -"aggregation areas. After you select it, you will be asked to define the " -"population ratio. Finally, you will need to enter the source of data and the " -"name of your layer to be displayed in the |project_name| dock." -msgstr "" - -# 1dad774e1392433db48ec7a439c69c0a -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:154 -msgid "" -"After you set the keyword using the Keyword Wizard, you can see in the |" -"project_name| panel on the right side that the layer keyword has been set. " -"Verify that it looks like the image below? If it does not, you should go " -"back and try to define the keyword again." -msgstr "" - -# e2d635fe31f047afb6efcab5635d87c6 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:163 -msgid "" -"After you set the keyword to match the image above, the hazard data will " -"appear in the hazard panel of the |project_name| Dock." -msgstr "" - -# f90055d4c425401db36752f68dfeef76 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:170 -msgid "" -"Now all the keyword data has been set and we can move into the next section " -"to run |project_name| with population data." -msgstr "" - -# 5adb8206371c411189fbb52dee14d7ec -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:174 -msgid "C. Run |project_name| for population with aggregation" -msgstr "" - -# 909bce8d5a3f4f7b974f0961d5feaab0 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:176 -msgid "" -"We have seen the result of |project_name| on buildings and populations with " -"raster hazard data. Now we will run |project_name| analysis using flood " -"vector hazard data and raster population as exposure data. This time, " -"however, we will use aggregated data. Using |project_name| with aggregated " -"data will help you to get detailed result since the aggregated data can " -"provide detailed information on specific administrative (or other) area. |" -"project_name| allow us to add administrative data with specific boundaries " -"that we can use to aggregate results." -msgstr "" - -# 1e4f41edd39d4c5ea1888b2baa9d0d4c -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:182 -msgid "" -"To do this, look at the Layer List and make sure to turn ON the **Jakarta " -"District** layer. Next, take a look at the |project_name| dock under the " -"heading *Aggregate results by*." -msgstr "" - -# 3ac088bbb4424886b2e2b656e7956fd4 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:189 -msgid "" -"Why are we not able to see the **Jakarta District** layer that we just " -"turned ON before? Check the layer by selecting it on the Layer List. Did you " -"see the keyword? The reason why this layer did not appear in the |" -"project_name| Dock is because it did not have keyword data defube. Go ahead " -"and add a keyword for **Jakarta District** using the :guilabel:`Keyword " -"Creation Wizard`. For your reference, refer to the keyword diagram as " -"explained above." -msgstr "" - -# 03cac07903924d0785155880ec8aa50c -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:196 -msgid "" -"Now you will able to select **Jakarta District** under 'Aggregate results " -"by' in the |project_name| Dock. The |project_name| Dock should look like " -"this:" -msgstr "" - -# 4e6d14c7677148abb0a642023fe22f09 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:203 -msgid "" -"Click :guilabel:`Run` and wait until |project_name| finishes analyzing the " -"data. A new impact layer will be added to the Layer List. When you look at " -"the result, it looks the same as |project_name| analysis result without " -"aggregation, but if you scroll down to the bottom you will see the detailed " -"result. As explained before, using aggregation will let you get detailed " -"information for a specific area or administration region." -msgstr "" - -# 6975fc0a2eef421fb88a793e1a9e5dbd -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:214 -msgid "" -"In the screenshot above, we see detailed impact results for each district in " -"Jakarta for the detailed gender report, the detailed age report and the " -"detailed minimum needs report. You can also use *jakarta subdistrict* rather " -"than using *jakarta_district* for aggregation if you want to get more " -"detailed results. Try running the analysis again using *jakarta " -"subdistrict*. The aggregation option in |project_name| can also be applied " -"for buildings and roads (in addition to population). In the next exercise, " -"we will learn to run |project_name| for roads and buildings." -msgstr "" - -# 82d9c6b993204a8290361f73129e4d05 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:223 -msgid "2. Running |project_name| for roads and buildings" -msgstr "" - -# 064c42e0de7944a69a5fbc2b15c46322 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:226 -msgid "A. Download building polygons and roads with OpenStreetMap Downloader" -msgstr "" - -# 7390880c688c40ceb66d287685364873 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:228 -msgid "" -"We have completed running |project_name| with population and vector hazard " -"data. Now, we will run |project_name| with different type of vector exposure " -"data: roads and buildings polygons. We will obtain these dataset using one " -"of |project_name| features, :guilabel:`OpenStreetMap Downloader`. :guilabel:" -"`OpenStreetMap Downloader` is a feature that enables downloading " -"OpenStreetMap data and directly loading it into QGIS. This feature requires " -"an internet connection as it fetches the data via a web service. Once " -"downloaded, the data will be available as shapefiles and symbolized neatly " -"(more information at `OpenStreetMap Downloader page `__)." -msgstr "" - -# fdfa33873c104ac4a52f0685e1a5919d -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:239 -msgid "To use this feature for our next exercise, follow these steps:" -msgstr "" - -# 22cec9a2783245a8b91fa2e685b733f6 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:241 -msgid ":guilabel:`Zoom in` to any flooded area that you prefer." -msgstr "" - -# 33b1f5c2bf0b48cb8cd17c972f6e1c46 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:243 -msgid "Click the :guilabel:`OpenStreetMap Downloader` icon." -msgstr "" - -# 6d242b25686344139a0c02236eec5779 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:245 -msgid "" -"Select :guilabel:`Building Polygons` and :guilabel:`Roads` as the feature " -"types to download." -msgstr "" - -# 4d5c4aa1549d4bb5af57954b346dfad3 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:247 -msgid "" -"Click :guilabel:`Drag on Map` to select the boundary box from which data " -"will be downloaded." -msgstr "" - -# 1c64cf0e3bcc4b7caea365ea7dfa9c44 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:249 -msgid "" -"Choose the your output directory, where OSM data will be stored. Adding a " -"file name prefix makes it easier to identify the data downloaded." -msgstr "" - -# bb16eb1aefff4e368e989ef932637949 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:255 -msgid "Click :guilabel:`OK`." -msgstr "" - -# a8a35c60aa5c477a8072609c554513e5 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:257 -msgid "" -"It may take a while to download all the data in the given area based on how " -"big the area is (generally dataset at city level and below should work " -"well). After you download the data, a new layer will appear in the Layer " -"List. The amount of data available depends on the OpenStreetMap data " -"available in the downloaded region. If you want to get more data in your " -"area, you can participate in OpenStreetMap and start map the area." -msgstr "" - -# 63a0dd3f1af1437e9f2aee8aa18c662d -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:264 -msgid "" -"Since the data already downloaded, we are ready to run |project_name| " -"analysis. But can |project_name| run the data for only the small part of the " -"whole hazard data? We will find the answer in the next section." -msgstr "" - -# ab25ea201a6d4a278a5ae5564c54a136 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:269 -msgid "B. Define your custom analysis area" -msgstr "" - -# 82a6ca3c14534a1f94744e874a7f61b9 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:271 -msgid "" -"|project_name| has a feature that allows you specify exactly which area " -"should be used for your analysis. If you have exposure data that is not the " -"same size, you can use this feature to define your own analysis area." -msgstr "" - -# 95b0bb0c8f854358bfccb1dd58c4b3fd -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:276 -msgid "" -"Click :guilabel:`Set Analysis Area` to show set analysis extent feature." -msgstr "" - -# 9eea1fdf59a74c43af4fceb8ab126c15 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:278 -msgid "" -"Select :guilabel:`Use intersection of hazard, exposure and this bounding " -"box`." -msgstr "" - -# 4b3a49fba4264f3787550a86a0e07bc6 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:280 -msgid "" -"Click :guilabel:`Drag on Map` to draw the bounding box around building " -"polygons and roads." -msgstr "" - -# 04905f30dafa4104b5a329d1038a894a -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:283 -msgid "Click :guilabel:`OK`" -msgstr "" - -# e7902e4d709b488fa37549ff054619ba -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:285 -msgid "" -"if you click Draw on Map, the window will be temporarily hidden so that you " -"can drag a rectangle on the map. After you have finished dragging the " -"rectangle, the window will reappear." -msgstr "" - -# 414c5842f7e34e37b82504089f634a41 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:293 -msgid "" -"To verify that your analysis area has been successfully defined, click :" -"guilabel:`Toggle Scenario Outlines`. A green box will appear around your " -"data." -msgstr "" - -# 7815265f23c54d56b1ac5811afb1704f -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:300 -msgid "" -"Using Toggle Scenario Outlines help you understand which area that |" -"project_name| will analyze. It is also an important step before running |" -"project_name| analysis because not all of the data you put in the Layer List " -"will be automatically defined by |project_name|." -msgstr "" - -# bfdaf167aaef4d0db3763e8acf01d299 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:305 -msgid "" -"Take a look at the |project_name| panel dock to make sure building polygons " -"and roads have a keyword defined. If they do not you can define one using :" -"guilabel:`InaSAFE Keyword Wizard`. After the keyword has been already set, " -"we are ready to run |project_name| for building polygons and roads." -msgstr "" - -# d654e7a746034396b67d3f7f567b8e81 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:310 -msgid "C. Run |project_name| analysis for building polygons" -msgstr "" - -# fd06fb1bafa34bc0b303a423ba5d6b12 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:312 -msgid "" -"Let us run analysis for building polygons first. Make sure you set the |" -"project_name| dock as pictured below:" -msgstr "" - -# 8e80c787d34f421dbc09a6ba63ebd34e -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:319 -msgid "" -"We will run |project_name| for flood vector hazard and building polygons " -"with data aggregated by Jakarta district Click :guilabel:`Run` to begin |" -"project_name| analysis. After running, you will find the impact result layer " -"in Layer List." -msgstr "" - -# 2d06381d1c884529ba4f4472807bd470 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:327 -msgid "" -"Looking at the **Detailed building type report** (pictured above) we only " -"see two districts in Jakarta (Jakarta Timur and Jakarta Selatan). Your " -"results may differ since it depend on the analysis area selected and also " -"the aggregation layer that you used for analysis." -msgstr "" - -# 118871b888d14cbbadd79a7199b10964 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:332 -msgid "" -"|project_name| did not separate the impact result into three categories as " -"in the `Run Basic InaSAFE `__ because in the previous exercise we used raster " -"data containing flood depth in each pixel yet in this exercise, the hazard " -"data that we use only depicts affected areas. Therefore, |project_name| will " -"calculate how many buildings are inside the affected area but not level of " -"impact on each building." -msgstr "" - -# 6643bd063dce47678848f45c94e61415 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:339 -msgid "" -"We just succeeded running |project_name| on flood vector hazard with " -"building polygon. Next, we will run |project_name| for roads. What are the " -"results that you expect to get when you run |project_name| for roads?" -msgstr "" - -# 0f5e6062b0aa4d81866dfbd09c68bd69 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:344 -msgid "D. Run |project_name| for roads" -msgstr "" - -# d08d16c049fc4adeab2ebd982295324c -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:346 -msgid "" -"In this last exercise, we will run |project_name| on roads data that we " -"previously downloaded from OpenStreetMap. Make sure that you select roads as " -"exposure data in the |project_name| dock, as shown in the screenshot below:" -msgstr "" - -# 30b44e10dbaf4090821a02f44ebb6db6 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:354 -msgid "" -"Click :guilabel:`Run` to start |project_name| analysis. A new impact layer " -"will be added to your Layer List and in the map canvas you will see green " -"roads as not flooded and red as flooded. Select the **Flooded roads** layer " -"to see statistics from the |project_name| analysis." -msgstr "" - -# e33c763704824ba48e1150584d71c9f4 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:363 -msgid "" -"In this analysis, |project_name| will generate statistics on how many roads " -"are temporarily closed in the affected area and also a breakdown of the " -"result by road type. If you are using aggregation, there will be detailed " -"results for each aggregation. In the action checklist, you will see several " -"questions that can be used for points of discussion related to road impact, " -"and disaster logistics planning, for example: *Which roads can be used to " -"evacuate people or to distribute relief items?*" -msgstr "" - -# 4cc815bf245b4320bd8d10004dd8c0d9 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:371 -msgid "Summary" -msgstr "" - -# de3c4479250b4623a7f66ecc4071cd3f -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:373 -msgid "" -"In this exercise, you have learned how to run |project_name| analysis with " -"different hazard data formats and with new type of exposure data. You have " -"also learned two fundamental steps to remember before you run |project_name|:" -msgstr "" - -# 63649e596f4940cbb5e6b57f3cee2ddb -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:377 -msgid "" -"First, you learned how to define a keyword for your data so it can be " -"analyzed with |project_name|. Without a keyword, |project_name| will not " -"recognize your data, so you need to define it whether the data is hazard, " -"exposure or aggregation data. You can set the keyword using the :guilabel:" -"`Keyword Creatuib Wizard` feature." -msgstr "" - -# 6b3244e12e2f49ddb37987a0d892c1db -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:383 -msgid "" -"Second, it is important to review the analysis area using *Toggle Scenario " -"Outline* before you run |project_name| analysis. This is because, |" -"project_name| sometimes does not automatically set the analysis area " -"according to the intersection of hazard and exposure data. If |project_name| " -"did not set the analysis area, you need to define it manually using the :" -"guilabel:`Set Analysis Area` feature." -msgstr "" - -# 5e8d568c8aaf4b19957d48fdaef2a1ee -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:389 -msgid "" -"In this exercise, you have learned how to download buildings and roads data " -"from OpenStreetMap using :guilabel:`OpenStreetMap Downloader`. With this " -"feature you can define the size of the area and what type of data you want " -"to download. The availability of the data depend on how complete the data " -"are in OpenStreetMap." -msgstr "" - -# 81399a44ded04930a1cf58a374df4620 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:395 -msgid "" -"In the next section, you will learn how to run |project_name| with other " -"type of hazard data such as tsunami, earthquake, volcano and generic data." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/socialisation/run_other_hazards.po b/docs/i18n/en/LC_MESSAGES/training/socialisation/run_other_hazards.po deleted file mode 100644 index 769da2ae..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/socialisation/run_other_hazards.po +++ /dev/null @@ -1,1246 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:56+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 0a4040804ad14f25ab0557b70a0c87a5 -#: ../../source/training/socialisation/run_other_hazards.rst:10 -msgid "Other Hazards" -msgstr "" - -# c501cbb6c8184fff97ee9145ea42716e -#: ../../source/training/socialisation/run_other_hazards.rst:13 -msgid "Introduction" -msgstr "" - -# a530cfc49b5f415a88ad20651407ad00 -#: ../../source/training/socialisation/run_other_hazards.rst:15 -msgid "" -"|project_name| was designed to predict the result of a disaster by giving us " -"the potential impact on buildings, populations and roads based on specific " -"scenarios. From previous exercises, we have learned how to use Basic and " -"Intermediate |project_name| functionality. We also learned about using tools " -"in |project_name| such as define keywords, configure minimum needs and area " -"analysis, using aggregation as well as many others." -msgstr "" - -# d6d4a0219fed48238377cf4af268ca1a -#: ../../source/training/socialisation/run_other_hazards.rst:20 -msgid "" -"In previous exercises, we used the \"flooding in Jakarta\" scenario and " -"related data to learn |project_name| functionality. In addition to floods, |" -"project_name| impact analyses can be run for many hazard types including " -"earthquakes, tsunamis and volcanos. In this exercise, we will explore and " -"learn to run other hazard scenarios in |project_name| using |project_name| " -"dock and |project_name| Function Centric Wizard. Last but not least, we will " -"also use the Generic Impact Function." -msgstr "" - -# abb82c8a36714e7da527eb5cf01d1488 -#: ../../source/training/socialisation/run_other_hazards.rst:26 -msgid "Learning objectives:" -msgstr "" - -# 88b7206596d54b8f903e5b25607d20e6 -#: ../../source/training/socialisation/run_other_hazards.rst:28 -msgid "" -"To improve the participant’s understanding of how to use |project_name| to " -"run impact analyses for hazards other than floods. By the end of this " -"exercise, participants will be able to:" -msgstr "" - -# 5fc672495f3245c2956bd8503a57adf7 -#: ../../source/training/socialisation/run_other_hazards.rst:31 -msgid "" -"Run |project_name| with other hazards such as Earthquakes, Tsunamis and " -"Volcanos;" -msgstr "" - -# 8bf6bb24eee443b4a42847249ea94c1f -#: ../../source/training/socialisation/run_other_hazards.rst:33 -msgid "Be able to read metadata and assign keywords to hazard data;" -msgstr "" - -# 4ef2c4aec7534b02afd5adb17c0b5a14 -#: ../../source/training/socialisation/run_other_hazards.rst:35 -msgid "" -"Be able to use the |project_name| dock and the |project_name| Function " -"Centric Wizard; and" -msgstr "" - -# 9ee71e057bb944b7a2e214d414cb6d36 -#: ../../source/training/socialisation/run_other_hazards.rst:37 -msgid "" -"Be able to use the Generic Impact Function and understand how to use it to " -"work with their own data." -msgstr "" - -# 30ca66abac0f4c98bb0ca280dc499189 -#: ../../source/training/socialisation/run_other_hazards.rst:40 -msgid "Data for This Exercise:" -msgstr "" - -# 8acb446840514acda2120293d5682f94 -#: ../../source/training/socialisation/run_other_hazards.rst:42 -msgid "" -"The data used for this exercise is the same as that used in previous " -"exercises. The data can be downloaded from |project_name| `Training Data " -"Packages `__ Once " -"the data has been downloaded, we will use the following QGIS project file " -"and spatial data:" -msgstr "" - -# 3575416692604daabd0639c853c7ddcd -#: ../../source/training/socialisation/run_other_hazards.rst:45 -msgid "Padang.qgs" -msgstr "" - -# 39c15b7beaa34636bb74a425b1ddf3fc -#: ../../source/training/socialisation/run_other_hazards.rst:47 -msgid "Maumere.qgs" -msgstr "" - -# abce09416a7f4d5095e5b6828acdff96 -#: ../../source/training/socialisation/run_other_hazards.rst:49 -msgid "Sinabung_Hazard_Map_2015_WGS84.shp" -msgstr "" - -# 909a8392312d4066a928f8497d933577 -#: ../../source/training/socialisation/run_other_hazards.rst:51 -msgid "Sinabung_buildings_WGS84.shp" -msgstr "" - -# d6cdbd75f045428f8a011528b0357f43 -#: ../../source/training/socialisation/run_other_hazards.rst:53 -msgid "NGK_Landslide_Vulnerability_WGS84.shp" -msgstr "" - -# 950c963178de42ffaad6158f248f6094 -#: ../../source/training/socialisation/run_other_hazards.rst:55 -msgid "NGK_Buildings_WGS84.shp" -msgstr "" - -# 05db59cd55534230b51448b1195ca2ed -#: ../../source/training/socialisation/run_other_hazards.rst:57 -msgid "NT_Population_WGS84.tiff" -msgstr "" - -# 055545fbd15240a1948d3e0d8895206c -#: ../../source/training/socialisation/run_other_hazards.rst:60 -msgid "1. Run |project_name| for Earthquake" -msgstr "" - -# 51b956959dda47f5b218a5644fdad845 -#: ../../source/training/socialisation/run_other_hazards.rst:63 -msgid "1.1 Run |project_name| for Building" -msgstr "" - -# 89b1d80f9ebd44179f7e5b4a984924a6 -#: ../../source/training/socialisation/run_other_hazards.rst:66 -msgid "a. Open Project" -msgstr "" - -# 262cfa09f4b441b59e4b56f7e7fb70ad -#: ../../source/training/socialisation/run_other_hazards.rst:68 -msgid "" -"Indonesia’s location on the edges of the Pacific, Eurasian, and Australian " -"tectonic plates makes it not only a site of numerous volcanoes but also " -"frequent earthquakes. The hazard layer we are going to use for this example " -"has been provided by Badan Geologi and AIFDR, Australian Government and " -"describes the shaking or Modified Mercalli Intensity (MMI) Scale." -msgstr "" - -# ea84f93d059e4895b11096ca8a5cca08 -#: ../../source/training/socialisation/run_other_hazards.rst:71 -msgid "" -"This particular scenario is a modelled version of the 2009 Padang " -"earthquake. Please open QGIS project file :file:`Padang.qgs` from the :file:" -"`InSAFE Training Data > West Sumatera` folder. Once opened, you will see the " -"below :" -msgstr "" - -# 945f50a22569450d96a57d445a039729 -#: ../../source/training/socialisation/run_other_hazards.rst:76 -msgid "" -"In the |project_name| dock, note that the |project_name| form is still " -"empty. It means that your hazard and exposure data does not yet have " -"keywords assigned. Therefore, you must first define keywords for each " -"dataset in the project." -msgstr "" - -# f94e549ad3034033964787de8b67d253 -#: ../../source/training/socialisation/run_other_hazards.rst:79 -msgid "" -"To define keywords, please click on the :guilabel:`Keywords Creation Wizard` " -"icon and follow the instructions provided. You can refer back to the `Run " -"Intermediate InaSAFE `__ module for step-by-step instructions. " -"Once you have finished defining keywords for each layer, your |project_name| " -"form should look like this :" -msgstr "" - -# b1749939d0024d149d7a4b0cc6b73f08 -#: ../../source/training/socialisation/run_other_hazards.rst:87 -msgid "b. Run |project_name|" -msgstr "" - -# 12f7f08bebcf48578dc2a683a9bddea0 -#: ../../source/training/socialisation/run_other_hazards.rst:89 -msgid "" -"Once your |project_name| dock appears the same as the above image, you are " -"ready to run an earthquake analysis on buildings. It poses the question “In " -"the event of an **Earthquake in Padang 2009**\", how many **buildings** " -"might **be affected?**. Click :guilabel:`Run` on the bottom right corner in " -"your |project_name| Dock. If everything was set up correctly, you should get " -"a result in the dock area after a few seconds, and a new map layer should be " -"added to the map. The new layer is named **Estimated Buildings Affected**." -msgstr "" - -# 8c97d3f1b18949da82785f786d51162d -#: ../../source/training/socialisation/run_other_hazards.rst:101 -msgid "c. Interpret the Results" -msgstr "" - -# e8850575914b40e99ded85ff43f5f9d4 -#: ../../source/training/socialisation/run_other_hazards.rst:103 -msgid "Let’s take a look at the new data layer generated from |project_name|." -msgstr "" - -# 7a60da0a7dde455d843e5a45a27f2dd3 -#: ../../source/training/socialisation/run_other_hazards.rst:105 -msgid "Zoom in to any area in the Map Canvas" -msgstr "" - -# 91a08c887f1c4b8c8149dccd3c3ca739 -#: ../../source/training/socialisation/run_other_hazards.rst:107 -msgid "" -"There will be three new different colours generated from |project_name| " -"(yellow, orange, and red)." -msgstr "" - -# 90f0556eb659409bac3fa37fd9b7e9a3 -#: ../../source/training/socialisation/run_other_hazards.rst:109 -msgid "" -"The red buildings are located in highly affected areas which have MMI Values " -"greater than 8 MMI. The orange buildings are located in medium affected " -"areas which have MMI between 6 to 8 MMI while the yellow buildings are " -"considered located in areas with low impact which have MMI Values of less " -"than 6 MMI." -msgstr "" - -# c7f94c58c139455d935eeed90bf6faea -#: ../../source/training/socialisation/run_other_hazards.rst:111 -msgid "" -"Click :guilabel:`Estimated buildings affected` in the layer list to select " -"it, click the :guilabel:`Identify Feature` tool, and then click on building " -"to view attributes of the building." -msgstr "" - -# fab88fb0df624041b27db883c9656221 -#: ../../source/training/socialisation/run_other_hazards.rst:113 -msgid "" -"Default Threshold for Earthquake are 6 MMI for Low Threshold, 7 MMI for " -"Medium and 8 MMI for high threshold. You can change the threshold of MMI " -"Value for each affected area before run |project_name|. Please click Options " -"In your |project_name| Dock. This configuration will make your result " -"different with Run |project_name| using default threshold." -msgstr "" - -# 868ac4daabe64742868b81992238a728 -# 514e64abb76a4000a222eca48dd90e47 -#: ../../source/training/socialisation/run_other_hazards.rst:118 -#: ../../source/training/socialisation/run_other_hazards.rst:456 -msgid "" -"In the |project_name| panel we now see the impact summary. Details are " -"explained below." -msgstr "" - -# 3e144f4af19a4946bc2a12a7ac3c03cf -#: ../../source/training/socialisation/run_other_hazards.rst:123 -msgid "" -"**Hazard Category:** divides the results into several categories based on " -"the threshold set in the hazard analysis. In this impact summary, |" -"project_name| divides the impact buildings into three categories based on " -"MMI." -msgstr "" - -# 368488860cb3455e9909cba3f455b755 -#: ../../source/training/socialisation/run_other_hazards.rst:125 -msgid "" -"**Building type:** divides the exposed buildings into several categories " -"based on the building type attribute for each building. In this impact " -"summary, |project_name| breaks down the results into a more detailed report " -"by looking at each type of the building." -msgstr "" - -# cc5be8a533c84f83a1a1543de7e6aee5 -# 1610c22e32d246459da6f53eb59a815b -#: ../../source/training/socialisation/run_other_hazards.rst:127 -#: ../../source/training/socialisation/run_other_hazards.rst:202 -msgid "" -"**Action checklist:** designed to make disaster managers think about what " -"they need to do/discuss when planning for a similar event in the future." -msgstr "" - -# 7f958205b73348b78fa2c06c1f64b063 -#: ../../source/training/socialisation/run_other_hazards.rst:129 -msgid "" -"**Note:** provides details about the input data and any limitations or " -"assumptions in the analysis or report summary. In this example, it explains " -"why buildings are said to be inundated, wet and dry." -msgstr "" - -# df45e575aac442a2bacfdd0be8e7d0ef -#: ../../source/training/socialisation/run_other_hazards.rst:131 -msgid "" -"**Detailed aggregation categorical report:** statistical breakdown of the " -"number of results. This example shows the count of important infrastructure. " -"When you choose to use an aggregation layer with your analysis (we will do " -"this later) this table will show the number of buildings by aggregation " -"boundary." -msgstr "" - -# ec585dfa367440a7881d65beb28de1a4 -#: ../../source/training/socialisation/run_other_hazards.rst:133 -msgid "**Hazard details:** explanation of where the hazard data come from" -msgstr "" - -# 931bdc4c21984f7390262fa570b7b192 -#: ../../source/training/socialisation/run_other_hazards.rst:135 -msgid "**Exposure detail:** explanation of where the exposure come from" -msgstr "" - -# 227abfe7ec5f4f129f94f49024895048 -#: ../../source/training/socialisation/run_other_hazards.rst:138 -msgid "1.2 Run |project_name| for Population" -msgstr "" - -# 0a2286c3a2dc46d2b7404b15688788a1 -#: ../../source/training/socialisation/run_other_hazards.rst:140 -msgid "" -"We are now ready to run our second |project_name| analysis using earthquake " -"data in Padang. We will be working with the same earthquake data again, but " -"this time looking at the number of impacted people in a specific area. If " -"you finished defining keywords, these data should have keywords assigned so " -"you will be ready to run |project_name|." -msgstr "" - -# e64e3a29cf774e349bde536aed6c1d08 -#: ../../source/training/socialisation/run_other_hazards.rst:143 -msgid "" -"In QGIS, turn off the **Buildings** and **estimated buildings affected** " -"(the layers generated from |project_name| analysis and turn ON the " -"population layer). Because we want to look at the number people who might be " -"killed or displaced in a specific area, we also need to turn ON **the " -"Village** layer in QGIS. This layer will be used as an aggregation layer " -"that can show us the result for each administrative area. If you forget the " -"steps needed to define a layer as an aggregation, please refer to the `Run " -"Intermediate InaSAFE `__" -msgstr "" - -# db624badd859463eb47846c7e7efd943 -#: ../../source/training/socialisation/run_other_hazards.rst:148 -msgid "" -"Confirm that the |project_name| panel on the right side is set to query how " -"many people might die or be displaced :" -msgstr "" - -# 254d6363872242f7b9da2c19133a3a8c -#: ../../source/training/socialisation/run_other_hazards.rst:150 -msgid "Earthquake in Padang 2009" -msgstr "" - -# 5765c2fca3af42fd9759866a624d9b8e -#: ../../source/training/socialisation/run_other_hazards.rst:152 -msgid "Population" -msgstr "" - -# 30daf50c6da84513bda275d87c7c53ef -#: ../../source/training/socialisation/run_other_hazards.rst:154 -msgid "Die or be displaced according Pager mode" -msgstr "" - -# a0f9600905cf4d10a745b9850381575a -#: ../../source/training/socialisation/run_other_hazards.rst:156 -msgid "Village" -msgstr "" - -# 182d7b00a1404b7e82e2e6c9aff1c8af -#: ../../source/training/socialisation/run_other_hazards.rst:160 -msgid "Your |project_name| form should appear like the below screenshoot:" -msgstr "" - -# ad43fcae4e22417dabef659afb5a6058 -# 07a8867d55d5417daa849cac97f18ae9 -# 80532b577bed4ceca375ebf98dd71c27 -#: ../../source/training/socialisation/run_other_hazards.rst:166 -#: ../../source/training/socialisation/run_other_hazards.rst:427 -#: ../../source/training/socialisation/run_other_hazards.rst:488 -msgid "a. Run |project_name|" -msgstr "" - -# 5a90ddcef1e24311bcac334daf07b356 -#: ../../source/training/socialisation/run_other_hazards.rst:168 -msgid "" -"If everything is setup correctly, the |project_name| dock should show that " -"you are ready to run a flood analysis on population. It poses the question " -"“In the event of an **Earthquake in Padang (2009)**, how many **people** " -"might **die or be displaced according to the Pager Model**?” In this " -"analysis we still use Shakemap data which has values from 6 – 8 MMI. If you " -"want to see the minimum relief needs that should be provided based on the " -"result, you can click :guilabel:`Options` and select :guilabel:`Minimum " -"Needs`." -msgstr "" - -# befa338c131e42c9b5a59927ae7c26fb -#: ../../source/training/socialisation/run_other_hazards.rst:172 -msgid "" -"You can refer to the `Run Basic InaSAFE `__ to learn more about the basis of " -"default minimum needs in |project_name| or if you want edit an item or add " -"new minimum needs, you can refer to the `Minimum Needs Configuration manuals " -"`__. After everything is setup accordingly, click :" -"guilabel:`Run` to process the new scenario." -msgstr "" - -# 349eb441a85049e1be0e074e8cf81744 -# beefdd3ed2bc4c4b813607c1966f1859 -#: ../../source/training/socialisation/run_other_hazards.rst:177 -#: ../../source/training/socialisation/run_other_hazards.rst:440 -msgid "b. Interpret The Result" -msgstr "" - -# 7b57f03b3b8640978fe05383e66eb185 -#: ../../source/training/socialisation/run_other_hazards.rst:179 -msgid "" -"If everything was set up correctly, you should get a result in the dock area " -"after a few  seconds, and a new map layer should be added to the map. The " -"new impact layer will be called Estimated displaced population per cell. " -"Let’s explore the result again to help you better understand its meaning :" -msgstr "" - -# 20e3285d45fe49b2a41cf1e24ab4b2f5 -#: ../../source/training/socialisation/run_other_hazards.rst:182 -msgid "" -"Turn off the **Estimated building affected** layer and drag the Estimated " -"displaced population per cell above Earthquake in Padang 2009." -msgstr "" - -# b2abc08da77145a4b01792a818180126 -#: ../../source/training/socialisation/run_other_hazards.rst:184 -msgid "Zoom in to the area you choose." -msgstr "" - -# b883fce502f540348f105d1455877a39 -#: ../../source/training/socialisation/run_other_hazards.rst:186 -msgid "" -"Select Estimated displaced population per cell in the layer list and use " -"the :guilabel:`Identify Feature` tool again to select a pixel (square) in " -"the map canvas." -msgstr "" - -# ae9c586d4b014a8daa46bc0f0c0cc2ed -#: ../../source/training/socialisation/run_other_hazards.rst:188 -msgid "" -"In the screenshot below, clicking on one of the brown pixels displays a " -"value of 98.94451, which means there are approximately 98 people in this one " -"pixel (square) whom might die or be displaced." -msgstr "" - -# 4484907d7beb483897bfeff336a71adc -# 56c42500f0d446d2ae64f73be2065d4e -#: ../../source/training/socialisation/run_other_hazards.rst:193 -#: ../../source/training/socialisation/run_other_hazards.rst:524 -msgid "" -"In the |project_name| panel we now see the impact summary. The details are " -"explained below." -msgstr "" - -# b8a9c0ad545a4cf290aca04e6d7d529e -#: ../../source/training/socialisation/run_other_hazards.rst:198 -msgid "" -"**Population needing evacuation:** |project_name| estimates the number of " -"affected people in the analysis area. It is assumed that all of these people " -"will need to be evacuated." -msgstr "" - -# b07c88589d064705a02e5e572d12f8d4 -#: ../../source/training/socialisation/run_other_hazards.rst:200 -msgid "" -"**Needs per week:** are calculated numbers of food, water and other products " -"needed by evacuated people on a weekly basis." -msgstr "" - -# 5172c18d5dec43268853b0d9bda4d9a7 -#: ../../source/training/socialisation/run_other_hazards.rst:204 -msgid "" -"**Notes:** provides details about the input data and any limitations or " -"assumptions in the analysis or report summary. In this example, it explains " -"the total number of people in the analysis area and the source of minimum " -"needs." -msgstr "" - -# dfeebf4b25e644b084244c4166b808d4 -#: ../../source/training/socialisation/run_other_hazards.rst:206 -msgid "" -"**Detailed gender and age report:** provides a breakdown of the number of " -"affected people by age (youth, adults and elderly) and gender based on the " -"default world population demographics and calculates the minimum needs for " -"women’s hygiene and pregnant women. If you using aggregation layer, the " -"result will be broken down based on administrative area." -msgstr "" - -# 67928a73b8c342d9b7b39cb309560042 -#: ../../source/training/socialisation/run_other_hazards.rst:212 -msgid "2. Run |project_name| for Tsunami" -msgstr "" - -# 53903ce83d5f4943bc80a60da9b44d42 -#: ../../source/training/socialisation/run_other_hazards.rst:214 -msgid "" -"The 1992 Flores earthquake occurred on December 12, 1992 on the island of " -"Flores in Indonesia. With a magnitude of 7.8, it was the largest and also " -"the deadliest earthquake in 1992. This earthquake triggered another hazard " -"in that area a tsunami in Maumere, Flores." -msgstr "" - -# aee6bcfdf536483498c0757360adde08 -#: ../../source/training/socialisation/run_other_hazards.rst:217 -msgid "" -"Next, we will run another scenario in |project_name| using Tsunami Hazard " -"Model. It is a modelled version of a Magnitude 8.1 earthquake generating a " -"tsunami which impacts Maumere." -msgstr "" - -# d4621e446cf04a8091ed5cc99896c2c8 -#: ../../source/training/socialisation/run_other_hazards.rst:221 -msgid "2.1 Open Project" -msgstr "" - -# 1674ef3713a2404d8a0bfb6d53b8d634 -#: ../../source/training/socialisation/run_other_hazards.rst:223 -msgid "" -"Please open the QGIS project file :file:`Maumere.qgs` from the :file:" -"`InaSAFE Training Data > Maumere` folder. Once opened, the project should " -"appear similar to the screenshot below:" -msgstr "" - -# 109f9fbf8a06400abb5f7429efef2b54 -#: ../../source/training/socialisation/run_other_hazards.rst:229 -msgid "" -"You will see in the |project_name| dock that keywords for each layer have " -"not yet been defined. As before, we use the :guilabel:`Impact Function " -"Centric Wizard` icon to define keyword. For detailed steps, please reference " -"the `Run Intermediate InaSAFE `__ module" -msgstr "" - -# 24ee1458021e4fc8bd8ff90edc4ef2dc -#: ../../source/training/socialisation/run_other_hazards.rst:232 -msgid "2.2 Run |project_name|" -msgstr "" - -# a12c115b543a402dbf9c42667f757b2e -#: ../../source/training/socialisation/run_other_hazards.rst:234 -msgid "" -"Once you have finished defining keywords for each layer, your |project_name| " -"form should look like this :" -msgstr "" - -# b95913c0278145669ed4fc071a887c5f -#: ../../source/training/socialisation/run_other_hazards.rst:239 -msgid "" -"In this scenario we will use Buildings as an exposure and Village Boundary " -"as an aggregation layer. Once your |project_name| form appears the same as " -"the above screenshoot, click :guilabel:`Run` at the bottom right corner in " -"your |project_name| dock." -msgstr "" - -# f201412e722e4219aba6a01d68e8c530 -#: ../../source/training/socialisation/run_other_hazards.rst:243 -msgid "2.3 Interpret the Result" -msgstr "" - -# c036bde5b5dc404c9c7b2e7bab8d5b47 -#: ../../source/training/socialisation/run_other_hazards.rst:245 -msgid "" -"If everything was set up correctly, you should get a result in the dock area " -"after a few  seconds, and a new map layer should be added to the map. The " -"new impact layer will be called Estimated buildings affected. Let’s explore " -"the result again to help you understand more." -msgstr "" - -# 2ae5467066d3482ba30d4059bc0a478a -#: ../../source/training/socialisation/run_other_hazards.rst:249 -msgid "Zoom in to any area you choose" -msgstr "" - -# 44ee0554a1584a1eb358c43c83ba3cdb -#: ../../source/training/socialisation/run_other_hazards.rst:251 -msgid "" -"Here we have zoomed in to a location in Maumere. There will be three new " -"different colours generated from |project_name| (green, orange, and red)." -msgstr "" - -# 502d4589ed3d4f6fa775dc7fd2db35c1 -#: ../../source/training/socialisation/run_other_hazards.rst:253 -msgid "" -"The red buildings are situated in water greater than one metre; the orange " -"buildings are situated in water between zero and one metre; and the green " -"buildings are considered unaffected as they are situated in water less than " -"the threshold of one metre." -msgstr "" - -# b85fc5ceb7734622892f4480ad3e346a -#: ../../source/training/socialisation/run_other_hazards.rst:258 -msgid "" -"Click **Estimated building affected** in the layer list to select it and " -"click :guilabel:`Identify Feature` tool and then click on building to know " -"what attribute of the building." -msgstr "" - -# 5326b5f597e1429a8e9873d3c242b3f6 -#: ../../source/training/socialisation/run_other_hazards.rst:263 -msgid "" -"Here we clicked on one of the brown pixels and find that there is a value of " -"depth 0.929329631. This means that the building is located in an affected " -"area which is predicted to be flooded with 92 cm of water." -msgstr "" - -# cb11de86830142efad1a6deee6d884f7 -#: ../../source/training/socialisation/run_other_hazards.rst:265 -msgid "" -"In the |project_name| panel we now see the impact summary. Detalils are " -"explained below." -msgstr "" - -# 433307143fe24673acaa68c220909978 -#: ../../source/training/socialisation/run_other_hazards.rst:270 -msgid "" -"**Hazard Category**: divides the results into several categories based on " -"the threshold set in the hazard analysis. In this impact summary, |" -"project_name| divides the impact buildings into three categories: number of " -"building inundated (affected by water deeper than the analysis threshold), " -"number of wet building (affected by tsunami's impact but not flooded as deep " -"as the analysis threshold), and number of dry buildings (not affected by any " -"tsunami impact)" -msgstr "" - -# b8416b5d0cd74da99f1b1f2e6ea9d66b -# f1e791d7156b4a1cb637ac757567bf1b -#: ../../source/training/socialisation/run_other_hazards.rst:272 -#: ../../source/training/socialisation/run_other_hazards.rst:377 -msgid "" -"**Building type**: divides the exposed buildings into several categories " -"based on the building type attribute for each building." -msgstr "" - -# b0918c68e8eb47f1b5d5dc934ea58e52 -# 04b0aa6d96fa4c48b18670ad5cb87679 -#: ../../source/training/socialisation/run_other_hazards.rst:274 -#: ../../source/training/socialisation/run_other_hazards.rst:379 -msgid "" -"**Action checklist**: designed to make disaster managers think about what " -"they need to do/discuss when planning for a similar event in the future." -msgstr "" - -# 5a20be9e82624fffa96bdf1119223dc6 -#: ../../source/training/socialisation/run_other_hazards.rst:276 -msgid "" -"**Note**: provides details about the input data and any limitations or " -"assumptions in the analysis or report summary. In this example, it explains " -"why building are predicted to be inundated, wet and dry." -msgstr "" - -# 9f2d0d1879b34fa8ac5a319d8b176bf5 -#: ../../source/training/socialisation/run_other_hazards.rst:278 -msgid "" -"**Detailed building type report**: statistical breakdown of the results. " -"This example shows the count of important infrastructure. When you choose to " -"use an aggregation layer with your analysis (we will do this later) this " -"table will show the number of buildings by aggregation boundary." -msgstr "" - -# df24ebae27f9433abc6373c6ba5664a6 -# b54a28276ea646429982542355728920 -#: ../../source/training/socialisation/run_other_hazards.rst:283 -#: ../../source/training/socialisation/run_other_hazards.rst:480 -msgid "**Hazard details**: explanation of where the hazard data come from" -msgstr "" - -# e19294195f234a79bc6e21cb33d632fe -# 767e68ae01914858a4d4c0f62582a092 -#: ../../source/training/socialisation/run_other_hazards.rst:285 -#: ../../source/training/socialisation/run_other_hazards.rst:482 -msgid "**Exposure detail**: explanation of where the exposure come from" -msgstr "" - -# 9d3c746bd7504ae094b00d97ef812933 -#: ../../source/training/socialisation/run_other_hazards.rst:287 -msgid "" -"The results show the buildings that will be affected by flood water 1 m " -"deep. What if the disaster manager decides that buildings in 80 cm of water " -"are also considered flooded? You can change the water depth threshold to see " -"the steps, refer to the `Run Basic InaSAFE `__ module." -msgstr "" - -# e946c7e21c7945b59265930c89437a0a -#: ../../source/training/socialisation/run_other_hazards.rst:292 -msgid "3. Run |project_name| for Volcano" -msgstr "" - -# f305e52f9aab4a2f9fbfc278adc6b15b -#: ../../source/training/socialisation/run_other_hazards.rst:294 -msgid "" -"Indonesia has many volcanoes, and most of them are still active today. In " -"fact, one of the most frequent disasters in Indonesia is volcano eruptions. " -"There are 129 active volcanoes across the country, and it is valuable to " -"know how many people and how much infrastructure is within a certain " -"perimeter of the vent." -msgstr "" - -# edfa6ff92d9b453c865567bfff3032d9 -#: ../../source/training/socialisation/run_other_hazards.rst:297 -msgid "" -"|project_name| also has an impact function for volcano eruption scenarios. " -"This function can run some type of hazard data. For detail information about " -"the |project_name| volcano hazard function, please look at the `Hazard Data " -"Section `__" -msgstr "" - -# 61e2c19c3940466792732c3bea99389b -#: ../../source/training/socialisation/run_other_hazards.rst:300 -msgid "" -"In this section we will be using the Sinabung volcano hazard from the " -"National Disaster Management Agency (BNPB) as hazard data and building from " -"OpenStreetMap as exposure data. For this run, we will using Impact Function " -"Centric Wizard (IFCW). For more information about IFCW you can refer to `Key " -"concepts in disaster management planning with InaSAFE `__" -msgstr "" - -# aca0f332e9d146c2b736b20270047dbf -#: ../../source/training/socialisation/run_other_hazards.rst:306 -msgid "3.1 Open Project" -msgstr "" - -# 9d4c9445366f4b20b2b79d687a2ce745 -#: ../../source/training/socialisation/run_other_hazards.rst:308 -msgid "" -"Please open a new QGIS project in order to use IFCW to run this project. You " -"new QGIS project should look like this:" -msgstr "" - -# e10213f419cc4b76ae5e9cb0598ad97b -#: ../../source/training/socialisation/run_other_hazards.rst:315 -msgid "3.2 Run |project_name|" -msgstr "" - -# a338b2ad63f543feb453f179f49c36a5 -#: ../../source/training/socialisation/run_other_hazards.rst:317 -msgid "" -"To use the **Impact Function Centric Wizard**, please click :guilabel:" -"`Impact Fuction Centric Wizard` icon." -msgstr "" - -# b27cbe8af97d4acc8508e1aae1dd863b -#: ../../source/training/socialisation/run_other_hazards.rst:322 -msgid "" -"After clicking that icon, you will see the following dialogue box appear:" -msgstr "" - -# fc633ecc0f9a466e9ae2471328db2a8c -#: ../../source/training/socialisation/run_other_hazards.rst:327 -msgid "" -"In the box above, there are some fields that help us select the scenario to " -"use. Green fields mean those scenarios are available and ready to run in |" -"project_name|. Grey fields means those scenarios are not available in |" -"project_name| at the moment." -msgstr "" - -# d3671bac84f84d9e8caf56e453060074 -#: ../../source/training/socialisation/run_other_hazards.rst:330 -msgid "" -"Because we want to run Volcano with building in this session, please click :" -"guilabel:`Field Volcano and Structure`. The resulting dialogue box appears " -"like this:" -msgstr "" - -# 97d524f1f13e4bd69311aeafa831013c -#: ../../source/training/socialisation/run_other_hazards.rst:335 -msgid "" -"You can click :guilabel:`Next` and follow the instructions in the IFCW box." -msgstr "" - -# 3be2f920d5e84af693c15204fc98bccc -#: ../../source/training/socialisation/run_other_hazards.rst:337 -msgid "" -"Hazard Data that we want to use for this scenario can be found in :file:" -"`InaSAFE Training Data > Sinabung > Hazard Data` folder. Please select :file:" -"`Sinabung_Hazard_Map_2015_WGS84.shp` . Building Exposure data can be found " -"in :file:`InSAFE Training Data > Sinabung > Exposure Data` folder. Please " -"select :file:`Sinabung_buildings_WGS84.shp` ." -msgstr "" - -# 74cf8ca32a0640019be22f205aa6bcd3 -#: ../../source/training/socialisation/run_other_hazards.rst:345 -msgid "" -"..note:: The differences between Volcano and Volcanic Ash can be seen in" -msgstr "" - -# b1375d7fd6ba454793e32cb3774a0bfc -#: ../../source/training/socialisation/run_other_hazards.rst:343 -msgid "" -"`Hazard Data Section `_ and for detail explanation about type of data you can be " -"found in `Key concepts in disaster management planning with |project_name| " -"`_." -msgstr "" - -# 5c3e5db3e9e14713915a70d81012e85b -#: ../../source/training/socialisation/run_other_hazards.rst:347 -msgid "" -"If you have followed the instruction in IFCW box, before running |" -"project_name| you should see the final form below:" -msgstr "" - -# e740470fc5a3420690599414d29aa441 -#: ../../source/training/socialisation/run_other_hazards.rst:352 -msgid "" -"If your IFCW box looks like the screenshot above, click :guilabel:`Run` and " -"wait for analysis processing until a result box appears." -msgstr "" - -# 1b83a5f595c64b12a0b6411b9eb3f41a -#: ../../source/training/socialisation/run_other_hazards.rst:358 -msgid "3.3 Interpret the Result" -msgstr "" - -# 67d30bd945534414bef351886e3bb371 -#: ../../source/training/socialisation/run_other_hazards.rst:360 -msgid "" -"Once you have finished running the analysis, you will see the result has new " -"layer named “Buildings Affected by each Hazard Zone” . This layer will show " -"you which buildings are affected for each hazard zone. There will be three " -"new colours of building generated from |project_name| (green, orange, and " -"red)." -msgstr "" - -# 7a3f5db9f2b8454ebdfd7b099ef36ba7 -#: ../../source/training/socialisation/run_other_hazards.rst:364 -msgid "" -"The red buildings mean these buildings are located in a Low Risk Zone (Risk " -"Zone 1), the green buildings mean these buildings are located in an " -"Intermediate Risk Zone (Risk Zone 2) and blue buildings are considered " -"situated in a High Risk Zone (Risk Zone 3) of Sinabung Volcano." -msgstr "" - -# f55f799aea004f5f8c087fd4e9f9aa51 -#: ../../source/training/socialisation/run_other_hazards.rst:369 -msgid "" -"In the |project_name| result box, we now see the impact summary. It is very " -"similar to the |project_name| Dock. Details are explained below." -msgstr "" - -# bc2fa9d865414db885550311b40ba6ef -#: ../../source/training/socialisation/run_other_hazards.rst:375 -msgid "" -"**Hazard Category**: divides the results into several categories based on " -"the threshold set in the hazard analysis." -msgstr "" - -# af3407511c8a460cbaa5c27b20aeb80e -#: ../../source/training/socialisation/run_other_hazards.rst:375 -msgid "" -"In this impact summary, |project_name| divides the impacted buildings into " -"three categories for each hazard zone of Sinabung Volcano." -msgstr "" - -# c3d0c351706e46d3ae6ba55c0b12193b -# 05eaf2bf4a9a401eba60ea2e1ead347c -#: ../../source/training/socialisation/run_other_hazards.rst:382 -#: ../../source/training/socialisation/run_other_hazards.rst:473 -msgid "" -"**Note**: provides details about the input data and any limitations or " -"assumptions in the analysis or report summary." -msgstr "" - -# 5ad79e71325041dbb01c5dde3d6534dc -#: ../../source/training/socialisation/run_other_hazards.rst:382 -msgid "" -"In this example, it explains why buildings are predicted to be inundated, " -"wet, or dry." -msgstr "" - -# d893a15b081244bcbbfca5d721b7b6e9 -#: ../../source/training/socialisation/run_other_hazards.rst:386 -msgid "" -"**Detailed building type report**: statistical breakdown of the number of " -"results." -msgstr "" - -# 5fd67b34c15e438280acfa1cfc8ed16d -#: ../../source/training/socialisation/run_other_hazards.rst:385 -msgid "" -"This example shows the count of important infrastructure. When you choose to " -"use an aggregation layer with your analysis (we will do this later) this " -"table will show the number of buildings by aggregation boundary." -msgstr "" - -# f69590d621b44c91a3263e2092040c8a -#: ../../source/training/socialisation/run_other_hazards.rst:388 -msgid "" -"You have now run |project_name| for a volcano scenario using the Impact " -"Function Centric Wizard (IFCW). Quite different than the |project_name| " -"Dock, this tool is designed to help a user run |project_name| more easily " -"without needing to open all the required data one by one in QGIS. IFCW " -"provides precise guidance and detail about what actions should be taken step " -"by step until the scenario is ready to run. This tool is very useful, " -"especially for |project_name| user who are less familiar with QGIS and " -"Spatial Data." -msgstr "" - -# 904bea691f48411298e0c9df10f37cad -#: ../../source/training/socialisation/run_other_hazards.rst:393 -msgid "4. Generic Impact Function in |project_name|" -msgstr "" - -# 53bb7b4721714e038ee09d2c733b522b -#: ../../source/training/socialisation/run_other_hazards.rst:395 -msgid "" -"|project_name| can run analyses for multiple hazards, using scenarios that " -"we set up based on data availability. These scenarios include five types of " -"hazards : floods, earthquakes, volcanos, volcanic ash and tsunamis. What if " -"our hazard scenario is not included in this list (for example, a land slide " -"or drought). To solve this problem, |project_name| provides a tool called " -"the **Generic Impact Function** that can run analyses for any hazard not " -"available via a specific Scenario Impact Function." -msgstr "" - -# b6f0ec4ede71456dbd13bb9211e70f38 -#: ../../source/training/socialisation/run_other_hazards.rst:400 -msgid "4.1 Open Project" -msgstr "" - -# 1fb38971ae144b008c3cf3ee638a3f1f -#: ../../source/training/socialisation/run_other_hazards.rst:402 -msgid "" -"Next, we will explore this tool using a landslide hazard in Nagekeo, East " -"Nusa Tenggara with building and population data for each scenario. Please " -"open the QGIS project file :file:`Nagekeo.qgs` from the :file:`InSAFE " -"Training Data > Nagekeo` folder. Once opened, the project should look like " -"the screenshot below:" -msgstr "" - -# 4b4ca9d18e9a488b8dc06ca7352e3e8d -#: ../../source/training/socialisation/run_other_hazards.rst:409 -msgid "" -"In the |project_name| dock, the |project_name| form still appears empty. " -"This means that your hazard and exposure data lacks keywords. Before " -"proceeding, you should define keywords for each dataset in this project." -msgstr "" - -# 275370c6e9d842a4a8c9b1ccb6bc26b8 -#: ../../source/training/socialisation/run_other_hazards.rst:412 -msgid "" -"To define a keyword, please click on the :guilabel:`Keywords Creation " -"Wizard` icon" -msgstr "" - -# 010f0457a368402f9b1576fc2ddabaa0 -#: ../../source/training/socialisation/run_other_hazards.rst:417 -msgid "" -"and follow the instructions. You can refer to the `Run Intermediate InaSAFE " -"`__ if you need additional assistance. Once you finish defining " -"keyword for each layer, your |project_name| form should appear like the " -"below screenshot:" -msgstr "" - -# 62d733b837f14165a25a95dc99683f89 -#: ../../source/training/socialisation/run_other_hazards.rst:424 -msgid "4.2 Run |project_name| for Building" -msgstr "" - -# 63f9bd209c914005ab8782386df6e927 -#: ../../source/training/socialisation/run_other_hazards.rst:429 -msgid "" -"Your |project_name| Dock now poses the question “In the event of **Landslide " -"Hazard Zone**,how many **buildings** might **be affected**?\" Click :" -"guilabel:`Run` on the bottom right corner in your |project_name| Dock. If " -"everything was set up correctly, you should get a result in the dock area " -"after a few seconds, and a new map layer should be added to the map. The new " -"layer will be named “Buildings Affected by each hazard zone”." -msgstr "" - -# a1665e38b86b42299feeb3cd46ba47ad -#: ../../source/training/socialisation/run_other_hazards.rst:442 -msgid "Let’s take a look at the new data layer generated from |project_name|:" -msgstr "" - -# 28d3c686dc02453f81f8282f14e3ca0f -#: ../../source/training/socialisation/run_other_hazards.rst:444 -msgid "Zoom in to an area in the Map Canvas" -msgstr "" - -# be435b1f7c6944d9894ad6f2a45c2505 -#: ../../source/training/socialisation/run_other_hazards.rst:446 -msgid "" -"There will be three new colours generated from |project_name| (red, green, " -"blue and purple)." -msgstr "" - -# a5e09ab2ddd343cfb625e27547e098f0 -#: ../../source/training/socialisation/run_other_hazards.rst:449 -msgid "" -"The red buildings are located in a high vulnerability zone, the blue " -"buildings are located in" -msgstr "" - -# 4c77c07c67284f95ab9bd2e796ffb4fb -#: ../../source/training/socialisation/run_other_hazards.rst:449 -msgid "" -"moderate vulnerability zone, green buildings are located in a Low Landslide " -"Vulnerability Zone and the purple buildings are not affected by landslide." -msgstr "" - -# d4438b8bc83f4ab98bbfb33fe48f8a28 -#: ../../source/training/socialisation/run_other_hazards.rst:451 -msgid "" -"Click building affected in the layer list to select it. Next, click the :" -"guilabel:`Identify Feature` tool and then click on a building to view " -"attributes of the building." -msgstr "" - -# 07b53ae5439f4804a3ebb39523909af7 -#: ../../source/training/socialisation/run_other_hazards.rst:463 -msgid "" -"**Hazard Category**: divides the results into three categories based on the " -"hazard data classification area." -msgstr "" - -# 80ea18fdbf284ccd9f872f479078d156 -#: ../../source/training/socialisation/run_other_hazards.rst:462 -msgid "" -"In this impact summary, |project_name| divides the impacted buildings into " -"High, Moderate, and Low Landslide vulnerability zone." -msgstr "" - -# 20a96e5eaafc4873aa54c42138d9e92c -#: ../../source/training/socialisation/run_other_hazards.rst:467 -msgid "" -"**Building type**: divides the exposed buildings into several categories " -"based on the building type attribute" -msgstr "" - -# c6c2b08742f746e28b54b4f0345181cb -#: ../../source/training/socialisation/run_other_hazards.rst:466 -msgid "" -"for each building. In this impact summary, |project_name| breaks down the " -"results into a more detailed report by looking at each type of the building." -msgstr "" - -# a0572c9ebe5840438d6c9267d955d70e -# 487c813ce92c412299155f2c06240954 -#: ../../source/training/socialisation/run_other_hazards.rst:470 -#: ../../source/training/socialisation/run_other_hazards.rst:535 -msgid "" -"**Action checklist**: designed to make disaster managers think about what " -"they need to do/discuss when planning for" -msgstr "" - -# 50747e95dbaa4eaa9f6ae904b71d4663 -# 1dc135df3ffa49b7a1c1b25f5b5066c1 -#: ../../source/training/socialisation/run_other_hazards.rst:470 -#: ../../source/training/socialisation/run_other_hazards.rst:535 -msgid "a similar event in the future." -msgstr "" - -# 09731dda7fad44a1be67dc987474ae27 -#: ../../source/training/socialisation/run_other_hazards.rst:473 -msgid "" -"In this example, it explains why building are said to be inundated, wet, or " -"dry." -msgstr "" - -# d91c598204c34cd5a81fbf0ae921846e -#: ../../source/training/socialisation/run_other_hazards.rst:478 -msgid "" -"**Detailed aggregation categorical report**: statistical breakdown of the " -"number of results." -msgstr "" - -# 561864db31e04d29959cbb258d65fe17 -#: ../../source/training/socialisation/run_other_hazards.rst:476 -msgid "" -"This example shows a count of important infrastructure. When you choose to " -"use an aggregation layer with your analysis (we will do this on population) " -"this table will show the number of buildings grouped by aggregation boundary." -msgstr "" - -# 545eb3494eb846f1aa82574b8c73413a -#: ../../source/training/socialisation/run_other_hazards.rst:485 -msgid "4.3 Run |project_name| for Population" -msgstr "" - -# 0ff7126c1e9a4b149e32ecf2af6436bf -#: ../../source/training/socialisation/run_other_hazards.rst:490 -msgid "" -"Turn off the Buildings Affected by each hazard zone (the layers generated " -"from |project_name| analysis and turn ON the **PopulationSP_2010** layer. " -"Because we want to look at the number of people who might die or be " -"displaced in a specific area, we also need to turn ON the **Village** layer " -"in QGIS. This layer will be used as an aggregation layer that can show us " -"results grouped by administrative boundary." -msgstr "" - -# eee8a88b7bbf459fb164babac67b6eaa -#: ../../source/training/socialisation/run_other_hazards.rst:495 -msgid "" -"If you forget the steps to define and aggregation layer, refer to the `Run " -"Intermediate InaSAFE `__ section. Edit the question form in the |" -"project_name| Dock so that it appears similar to the below screenshot:" -msgstr "" - -# a48206b2360c4d5b9f2fa3fed02102cc -#: ../../source/training/socialisation/run_other_hazards.rst:501 -msgid "Next, click :guilabel:`Run` to start the analysis." -msgstr "" - -# 1cbc05e0418641af9f8f880a39c8dddf -#: ../../source/training/socialisation/run_other_hazards.rst:504 -msgid "b. Interpret the Result" -msgstr "" - -# 1a02b95b32694078bef1af0463fc32ea -#: ../../source/training/socialisation/run_other_hazards.rst:506 -msgid "" -"If everything was set up correctly, you should get a result in the dock area " -"after a few  seconds, and a new map layer should be added to the map. The " -"new impact layer will be called **People Impacted by Each Hazard Zone**. " -"Let’s explore the result again to help you understand more." -msgstr "" - -# ba61c6e7836d4a33a1925eaf19035788 -#: ../../source/training/socialisation/run_other_hazards.rst:510 -msgid "Zoom in to any area." -msgstr "" - -# ef3e1cf40ba5460cbebae8590feb04fa -#: ../../source/training/socialisation/run_other_hazards.rst:513 -msgid "" -"Select People Impacted by Each Hazard Zone in the layer list and use the :" -"guilabel:`Identify Feature` tool again to select a pixel" -msgstr "" - -# e18274bc7311431bb2492b0b57d26b46 -#: ../../source/training/socialisation/run_other_hazards.rst:513 -msgid "(square) in the map canvas." -msgstr "" - -# 7a6bbf5a36bd49aab06b1cfc3a81b891 -#: ../../source/training/socialisation/run_other_hazards.rst:515 -msgid "" -"Here we clicked on one of the yellow pixels and see a value of 220.283, " -"which means there are approximately 220 people in this one pixel (square) " -"who might be impacted." -msgstr "" - -# fae5ccab91214d5ea415de11c8bfaf4d -#: ../../source/training/socialisation/run_other_hazards.rst:530 -msgid "" -"**Population needing evacuation**: |project_name| estimates the number of " -"affected people in the analysis area." -msgstr "" - -# 8b54fd3ee4924694872188cc842d5e60 -#: ../../source/training/socialisation/run_other_hazards.rst:530 -msgid "It is assumed that all of these people will need to be evacuated." -msgstr "" - -# 8c7a9871bfb24828855501dc215a27cc -#: ../../source/training/socialisation/run_other_hazards.rst:532 -msgid "" -"**Needs per week**: are calculated numbers of food, water and other products " -"that are needed by evacuated people on a weekly basis." -msgstr "" - -# 9fa175d404c54d059a119dba99a0b8b7 -#: ../../source/training/socialisation/run_other_hazards.rst:538 -msgid "" -"**Notes**: provides details about the input data and any limitations or " -"assumptions in the analysis or report summary." -msgstr "" - -# 010ba059de094918bf78f4e6c84ca48e -#: ../../source/training/socialisation/run_other_hazards.rst:538 -msgid "" -"In this example, it explains the total number of people in the analysis area " -"and the source of minimum needs." -msgstr "" - -# 0ed91d88454e44708bfb13d10c6b3b63 -#: ../../source/training/socialisation/run_other_hazards.rst:543 -msgid "" -"**Detailed gender and age report**: provides a breakdown of the number of " -"affected people by age" -msgstr "" - -# 363347712c1f4a81a5b76969594b529c -#: ../../source/training/socialisation/run_other_hazards.rst:541 -msgid "" -"(youth, adults and elderly) and gender based on the default world population " -"demographics and calculates the minimum needs for women’s hygiene and " -"pregnant women. If you using aggregation layer, the result will break down " -"the result based on administrative boundaries." -msgstr "" - -# 4088f9420fc74007827f706fa3e43549 -#: ../../source/training/socialisation/run_other_hazards.rst:548 -msgid "" -"In the result of |project_name|, Action Checklist and Notes might be " -"unrelated with hazard that we runned. For instance, if we run drought hazard " -"the action checklist might be has some topics such as how many building " -"closed, or people die or displaced. Those topics not really related with " -"drought." -msgstr "" - -# 2f02da2d5ea5483a868ed4a4a7596e8c -#: ../../source/training/socialisation/run_other_hazards.rst:552 -msgid "Summary" -msgstr "" - -# cd3cd588e34f4e029aef8b0b289cbcab -#: ../../source/training/socialisation/run_other_hazards.rst:554 -msgid "" -"Congratulation! You have now learned to use most of |project_name|'s " -"functionality. You can run analyses for specific hazard using tools such as " -"the Impact Function Centric Wizard (IFCW) and the Generic Impact Function " -"which will make using |project_name| easier." -msgstr "" - -# 1046a6e282f84cb4a8ac85ec766d3775 -#: ../../source/training/socialisation/run_other_hazards.rst:557 -msgid "" -"Now, to become an expert user of |project_name|, try utilizing all those " -"tools that you explored in this module using your own scenarios and data, " -"and practice interpreting the results." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/test_data.po b/docs/i18n/en/LC_MESSAGES/training/test_data.po deleted file mode 100644 index b61a4ee1..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/test_data.po +++ /dev/null @@ -1,149 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 5038adbb257644d2bb9e36e95b46bac8 -#: ../../source/training/test_data.rst:8 -msgid "Training Data" -msgstr "" - -# f0c97e942c5a4a68bcb93a845414b14c -#: ../../source/training/test_data.rst:10 -msgid "" -"Example data for use with |project_name| trainings is available for download " -"via :ref:`direct download `, :ref:`Bittorrent Sync " -"`, or :ref:`Docker `." -msgstr "" - -# 1e4e1b5d8bfd49c48aa317a89620429e -#: ../../source/training/test_data.rst:15 -msgid "Direct Download" -msgstr "" - -# 93acc62974794f78ab62cf7a040f2b4d -#: ../../source/training/test_data.rst:17 -msgid "" -"To obtain a specific training dataset go to http://data.inasafe.org and " -"download the package you need." -msgstr "" - -# 04ffef9f0ec14f3ea62d2fe7df831c04 -#: ../../source/training/test_data.rst:23 -msgid "BitTorrent Sync" -msgstr "" - -# a4ffba775c3444eda0ccf3749e72177a -#: ../../source/training/test_data.rst:25 -msgid "" -"The training data can be quite large in size, so if you have a bad internet " -"connection (or want to download everything at once), all of the materials " -"are also available with BitTorrent Sync." -msgstr "" - -# 61733bba5cf34d44aefadb2cb57db6b0 -#: ../../source/training/test_data.rst:27 -msgid "" -"To obtain the training data using BitTorrent Sync, first visit http://www." -"bittorrent.com/sync and download and install the software. Note that it is " -"not necessary to provide your email address." -msgstr "" - -# b46918dd1aad4f1a9b3a9fdf4a776cc4 -#: ../../source/training/test_data.rst:29 -msgid "" -"When installation is complete, open BitTorrent Sync. To download the " -"training data to your computer, click on the :guilabel:`Options` button and " -"then click :guilabel:`Enter a key...`" -msgstr "" - -# f99aa94f70254f2cb8aafddc95643bcf -#: ../../source/training/test_data.rst:34 -msgid "Enter the following key: BSU2UCAVRV7P4CHRYOZGIRQ2VN6CH4JP3" -msgstr "" - -# a792573c36854d80abdfee73616ffd8a -#: ../../source/training/test_data.rst:36 -msgid "" -"After you enter the key you must choose a folder on your computer where you " -"would like to synchronize the files. Create a new folder and select it." -msgstr "" - -# d9875922413c4a2a8edda5884f853679 -#: ../../source/training/test_data.rst:38 -msgid "" -"The files will begin to synchronize with the folder on your computer. It may " -"take awhile to download, depending on the speed of your connection." -msgstr "" - -# 2396ee15e8884c639cc63fc8fa5ebf2b -#: ../../source/training/test_data.rst:40 -msgid "" -"If you are using Linux the BitTorrent Sync interface will be available in " -"your web browser at http://localhost:8888 after you start the application." -msgstr "" - -# b5c75e6be7e947ba8ba6b0adbba29d83 -#: ../../source/training/test_data.rst:45 -msgid "Using Docker" -msgstr "" - -# 66c9661818dc4abe885bbab836504607 -#: ../../source/training/test_data.rst:46 -msgid "" -"If you are comfortable using `docker `_, you may clone " -"the training data by using the btsync Dockerfile." -msgstr "" - -# 783e1cedfe6440618e6c71fbea37abf0 -#: ../../source/training/test_data.rst:48 -msgid "" -"Copy the `inasafe-infrastructure `_ git repository." -msgstr "" - -# b82763753de640efa2bf02b8199669bd -#: ../../source/training/test_data.rst:52 -msgid "To clone the data files, run ::" -msgstr "" - -# 8848fa5e9dcd46a7b292c6ea3954dcf6 -#: ../../source/training/test_data.rst:57 -msgid "in a shell." -msgstr "" - -# a2e7c3b779154f348fff74ac34a27370 -#: ../../source/training/test_data.rst:59 -msgid "" -"This will automatically start a docker container, download and run " -"Bittorrent Sync with the correct key and synchronize all data to the :file:`/" -"var/docker/volumes/btsync` directory." -msgstr "" - -# 4d762ad3cddc436ebc7aab92b2da5c92 -#: ../../source/training/test_data.rst:63 -msgid "" -"The directory that docker will synchronize with is configurable by adjusting " -"the DATADIR variable in the :file:`rundocker.sh` script." -msgstr "" - -# 91540718de544cbabc6bef1ceae0961b -#: ../../source/training/test_data.rst:65 -msgid "" -"To start a sync container with any other secret run :command:`rundocker.sh` " -"with a KEY added as argument: ::" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/tot/501_adult_learning.po b/docs/i18n/en/LC_MESSAGES/training/tot/501_adult_learning.po deleted file mode 100644 index 30e359c6..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/tot/501_adult_learning.po +++ /dev/null @@ -1,1434 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# c0d37e22b68047a5b8a145223531d576 -#: ../../source/training/tot/501_adult_learning.rst:6 -msgid "Module 1: Adult Learning" -msgstr "" - -# b246d90016bf4e12b57c11be9f91f879 -#: ../../source/training/tot/501_adult_learning.rst:9 -msgid "Overview" -msgstr "" - -# a67516eabfa44ee3910c10d9b730e3a2 -#: ../../source/training/tot/501_adult_learning.rst:12 -msgid "Basic Competency" -msgstr "" - -# 29e2cb2004ea4591aa3549472c27602d -#: ../../source/training/tot/501_adult_learning.rst:13 -msgid "Master how to implement adult learning" -msgstr "" - -# 7d5883f35f834b6d8bd36e5f082ed45e -#: ../../source/training/tot/501_adult_learning.rst:16 -msgid "Indicators" -msgstr "" - -# afba6f82f1634ddbbad0b6a9c7b80067 -#: ../../source/training/tot/501_adult_learning.rst:17 -msgid "Understand the principles of adult learning" -msgstr "" - -# 4b73f414ecc641c5ba54d213d6cc82e3 -#: ../../source/training/tot/501_adult_learning.rst:18 -msgid "Analyzing the characteristics of adult learning" -msgstr "" - -# c20c05f8933841e5acfa8151669dbf5a -#: ../../source/training/tot/501_adult_learning.rst:19 -msgid "" -"Determining strategies, teaching methods or techniques that apply adult " -"learning" -msgstr "" - -# 2a2014c4b2024a2bba3b2567898f02c5 -#: ../../source/training/tot/501_adult_learning.rst:21 -msgid "Evaluating adult learning" -msgstr "" - -# 5e1dcef926cd4898b962389710723fc9 -#: ../../source/training/tot/501_adult_learning.rst:24 -msgid "Materials" -msgstr "" - -# 0a30260c702d42a19e85ba3acc5a650e -#: ../../source/training/tot/501_adult_learning.rst:25 -msgid "**Adult Learning**" -msgstr "" - -# 2123022bf24c4452a4df4dca5e3435d7 -#: ../../source/training/tot/501_adult_learning.rst:27 -msgid "Principles of adult learning" -msgstr "" - -# abe0d455b34442c8b49a152203c8520c -#: ../../source/training/tot/501_adult_learning.rst:28 -msgid "Characteristics of adult learning" -msgstr "" - -# 057b4dc9be334404ba55761ed1ad6ff6 -#: ../../source/training/tot/501_adult_learning.rst:29 -msgid "Strategies, teaching methods or techniques that apply in adult learning" -msgstr "" - -# a07b777f58ef4fd2a2e0b10bb7ff3027 -#: ../../source/training/tot/501_adult_learning.rst:30 -msgid "Adult learning evaluation" -msgstr "" - -# f0acae09172f48fc9323bd0cfbfcbaf7 -#: ../../source/training/tot/501_adult_learning.rst:33 -msgid "Learning Activities" -msgstr "" - -# e0d23ad1e6ca42a4bb64d18a9196aca8 -#: ../../source/training/tot/501_adult_learning.rst:35 -msgid "**1. Opening and workshop information**" -msgstr "" - -# c619c91282934e059aebdae89b49b47e -#: ../../source/training/tot/501_adult_learning.rst:37 -msgid "Time: 10 minutes Material: Slide PPT Activity:" -msgstr "" - -# a5e8df8706af43bc9f29a21e8c27d8ca -#: ../../source/training/tot/501_adult_learning.rst:41 -msgid "Facilitator welcomes participants to the training; opening invocation" -msgstr "" - -# 556db0245dc74cbebd41e0d41dc6191a -#: ../../source/training/tot/501_adult_learning.rst:42 -msgid "Information on code of conduct during training" -msgstr "" - -# fc6dc14b820946d19f21b997cadc1a74 -#: ../../source/training/tot/501_adult_learning.rst:43 -msgid "Facilitator explains the topics and goals of session one" -msgstr "" - -# 99c5b7832b834f93ba92365c2aebb16b -#: ../../source/training/tot/501_adult_learning.rst:45 -msgid "**2. QA Session about Adult Learning Characteristic**" -msgstr "" - -# d00e7d192bf94941a9c8b3251af81945 -#: ../../source/training/tot/501_adult_learning.rst:47 -msgid "Time: 25 minutes Material: Slide PPT Activity:" -msgstr "" - -# ae09c5abba444d4383740536f8e39b05 -#: ../../source/training/tot/501_adult_learning.rst:51 -msgid "" -"Facilitator puts a question about the definition and characteristics of an " -"adult" -msgstr "" - -# 361b650427814e1d8c3b92e1da4aa9ba -#: ../../source/training/tot/501_adult_learning.rst:53 -msgid "Facilitator explains the definition of adult learning" -msgstr "" - -# 4cfd383e5d1b4f79adc5924ffa935778 -#: ../../source/training/tot/501_adult_learning.rst:54 -msgid "" -"Facilitator puts a question about adult learning characteristics and " -"principles." -msgstr "" - -# ed0f91a8171244d68fb33b6153f171c2 -#: ../../source/training/tot/501_adult_learning.rst:57 -msgid "**3. Group Discussion: Adult Learning Strategy**" -msgstr "" - -# fa2ff73579c142a2bde81a7aa16dd7ab -#: ../../source/training/tot/501_adult_learning.rst:59 -msgid "Time: 25 minutes Material: Plano Paper Activity:" -msgstr "" - -# 8c9625582eee4868a9ccf6695c8f4e1a -#: ../../source/training/tot/501_adult_learning.rst:63 -msgid "" -"Facilitator asks participants to each count 1 to 4 one after another and " -"divides them into 4 groups. Those mentioning same number form one group." -msgstr "" - -# 67af0101697b4a2d8a35581405f8d3cd -#: ../../source/training/tot/501_adult_learning.rst:66 -msgid "Each group elects its chief and secretary" -msgstr "" - -# 9296a109b6f74fc596b97dc7ba132cb3 -#: ../../source/training/tot/501_adult_learning.rst:67 -msgid "" -"The chief presides at discussion on adult learning strategies, the outcome " -"of which is written down on flipchart paper by the secretary." -msgstr "" - -# c09c6264a89d455b808d18db982f652f -#: ../../source/training/tot/501_adult_learning.rst:70 -msgid "**4. Group Presentation**" -msgstr "" - -# ddb3994674734b2c88e7aef048178b63 -#: ../../source/training/tot/501_adult_learning.rst:72 -msgid "Time: 20 minutes Material: Slide PPT/Plano Paper Activity:" -msgstr "" - -# 63e2ebc58f9f491da31c9e4a52b86325 -#: ../../source/training/tot/501_adult_learning.rst:76 -msgid "" -"Facilitator asks the chief of each group to move forward and take part in a " -"draw to decide which group is responsible as presenter." -msgstr "" - -# 4fc839425d8f479e8bac4ade7c328279 -#: ../../source/training/tot/501_adult_learning.rst:78 -msgid "" -"Facilitator asks other groups to put questions or give comments to the " -"presenter group; Facilitator leads the Q&A session" -msgstr "" - -# 169b80eb4fc74bbd99c4164465e2cfca -#: ../../source/training/tot/501_adult_learning.rst:80 -msgid "Facilitator mentions adult learning strategies not yet mentioned." -msgstr "" - -# 7ea543b7d14a4747936dacca751bbcd3 -#: ../../source/training/tot/501_adult_learning.rst:82 -msgid "**5. Pair Discussion**" -msgstr "" - -# c65a02661758474aa0a6e9b96c233219 -#: ../../source/training/tot/501_adult_learning.rst:84 -msgid "Time: 20 minutes Material: HVS Paper Activity:" -msgstr "" - -# 9e390fe272ac402da484b5d47043ab3c -#: ../../source/training/tot/501_adult_learning.rst:88 -msgid "Facilitator asks participants to find a partner" -msgstr "" - -# 4bcbf14eb89c4c01980ed2388bc043b8 -#: ../../source/training/tot/501_adult_learning.rst:89 -msgid "" -"Each group of two is asked to discuss how to evaluate adults (adult earning " -"evaluation)" -msgstr "" - -# b4ae61959ed44feabdb22347a7d126fd -#: ../../source/training/tot/501_adult_learning.rst:91 -msgid "Result of discussion is displayed before the class" -msgstr "" - -# 94b3e3d2bde0446fad5d46de8a578f1c -#: ../../source/training/tot/501_adult_learning.rst:92 -msgid "" -"With the sound of music as the background, facilitator randomly throws a " -"small ball at a participant who will then throw it to another group. The " -"group who is in possession of the ball when the music stops will become " -"presenter." -msgstr "" - -# 40aeef56d04a425fac3c6e403b9988bc -#: ../../source/training/tot/501_adult_learning.rst:96 -msgid "" -"Facilitator asks other groups to put questions or give comments to the " -"presenter. Facilitator leads the Q&A session." -msgstr "" - -# 936a0041eb654785b112fbbe8965df20 -#: ../../source/training/tot/501_adult_learning.rst:99 -msgid "Facilitator further explains adult learning evaluation" -msgstr "" - -# 306a3a41cc1c4806a9895241dde9f9aa -#: ../../source/training/tot/501_adult_learning.rst:101 -msgid "**6. Reflection and Closing**" -msgstr "" - -# 4980ff6e0f304aedba1665305ebcf12b -#: ../../source/training/tot/501_adult_learning.rst:103 -msgid "Time: 5 minutes Material: - Activity:" -msgstr "" - -# 7bc7848f858b4353886d7a0fc01c2efc -#: ../../source/training/tot/501_adult_learning.rst:107 -msgid "" -"Facilitator asks one of the participants to reflect on the proceeding of the " -"first session." -msgstr "" - -# 88b7ee73e4a640f9b4a02ce13b90ae0a -#: ../../source/training/tot/501_adult_learning.rst:111 -msgid "Reading Material" -msgstr "" - -# f7918881872f4f6cacd19929eb241360 -#: ../../source/training/tot/501_adult_learning.rst:114 -msgid "Introduction" -msgstr "" - -# afa35ececde9415481782eda7190e1fe -#: ../../source/training/tot/501_adult_learning.rst:116 -msgid "" -"The participants of the training in Scenario Development for Contingency " -"Planning using OpenStreetMap (OSM) and QGIS/ |project_name| software are " -"adults. Their learning characteristics are unique and different from those " -"of children. As such, it is crucial that trainers learn about adult learning " -"characteristics. The understanding of adult learning characteristics is " -"needed to determine compatible and effective training strategies for " -"training participants." -msgstr "" - -# 44fc779f34b74c8db237b9384542b31c -#: ../../source/training/tot/501_adult_learning.rst:124 -msgid "" -"Adult Learning or Education is known as Andragogy, the antonym of Pedagogy " -"(children education). The term andragogy is derived from latin words Andro " -"(Adult) and agogos which means to lead or guide, hence the term andragogy " -"can be defined as the science of how to lead or guide adults, in other " -"words: the science of teaching adults." -msgstr "" - -# 98dd2837c05948179edacdd008f022f2 -#: ../../source/training/tot/501_adult_learning.rst:131 -msgid "" -"Basically education is a process of facilitating a person to search and find " -"the knowledge needed in life through learning, rendering all human " -"activities potential to be used as part of learning process. Andragogy " -"strategy stimulates adults to engage in the process of searching and finding " -"the knowledge they need in life. Adults learn in a continuous way from their " -"experience." -msgstr "" - -# 9ea1c9017be042f6bd0f717f45bbeb85 -#: ../../source/training/tot/501_adult_learning.rst:139 -msgid "1. Adult Learning Characteristics" -msgstr "" - -# a756d240d02d49ed8945c4216fb62493 -#: ../../source/training/tot/501_adult_learning.rst:141 -msgid "" -"Adult education is an endeavor aimed at self development made by individuals " -"without legal forces, without making this endeavor their main activity " -"(Reeves, Fansler, and Houle in Supriyanto, 2007). According to UNESCO " -"(Townsend Coles 1977 in Lanundi (1982), adult education is defined as the " -"entire body of organized educational processes, whatever the content, level " -"and method, whether formal or otherwise, whether they prolong or replace " -"initial education in schools, colleges and universities as well as in " -"apprenticeship, whereby persons regarded as adult by the society to which " -"they belong develop their abilities, enrich their knowledge, improve their " -"technical or professional qualifications and bring about changes in their " -"attitudes or behavior in the twofold perspective of full personal " -"development and participation in balanced and independent social, economic " -"and cultural development. Meanwhile, according to Bryson in Supriyanto " -"(2007) Adult education comprises all educational activities in which adults " -"engage in their daily life using only a part of their time and energy in " -"order to gain additional intellectual knowledge." -msgstr "" - -# 1ef12c80f6854caf84c59b00bf9a3686 -#: ../../source/training/tot/501_adult_learning.rst:166 -msgid "The definition above shows that:" -msgstr "" - -# d3c59a1da8c44d9ebafd3dd7fa4a989f -#: ../../source/training/tot/501_adult_learning.rst:161 -msgid "Adults are normally capable of self-directing," -msgstr "" - -# 72222f21f393402bb5417186d0932d91 -#: ../../source/training/tot/501_adult_learning.rst:162 -msgid "Adults have varied experiences," -msgstr "" - -# 3a4e42c1259d4110b9e7d0f060dbe27b -#: ../../source/training/tot/501_adult_learning.rst:163 -msgid "" -"Adults are prepared to learn as a consequence of their position in " -"transition of development," -msgstr "" - -# e2976da0b81d4cb9b7b3e96f48f5f1b6 -#: ../../source/training/tot/501_adult_learning.rst:165 -msgid "Adults prefer problem-centerd or performance-centered learning." -msgstr "" - -# a95635e2f7d640d8b95319cb042b4ead -#: ../../source/training/tot/501_adult_learning.rst:166 -msgid "The following are complete characteristics of adults:" -msgstr "" - -# c2641e0b7f3d434792d769e9a202a748 -#: ../../source/training/tot/501_adult_learning.rst:168 -msgid "Adults have the ability to self-direct." -msgstr "" - -# 6f3f7c0c5f454b0687d5bd9ee2a5563b -#: ../../source/training/tot/501_adult_learning.rst:169 -msgid "" -"Adults have a lot of experience which functions as learning process for them." -msgstr "" - -# 37f417b66f154efbbe818654c3c186eb -#: ../../source/training/tot/501_adult_learning.rst:170 -msgid "" -"Adults are prepared to learn everything they need to learn; their " -"experience is built from problem solving or finding solutions to daily tasks." -msgstr "" - -# 299e0f7064104a24a4b811f2c1778c21 -#: ../../source/training/tot/501_adult_learning.rst:172 -msgid "" -"Orientation of learning: Education is a development process of self ability; " -"knowledge and skills are applied for a better life. Learning orientation is " -"focused on activities." -msgstr "" - -# 1be6a4f7235b48918f06510d42f05adc -#: ../../source/training/tot/501_adult_learning.rst:176 -msgid "" -"The characteristics of adult learning according to Soedomo (1989) in " -"Supriyadi (2007):" -msgstr "" - -# a8c2376e6c704c48b0c6854e054b8bcb -#: ../../source/training/tot/501_adult_learning.rst:179 -msgid "Adult learning facilitates exchanges of opinions, demands and values" -msgstr "" - -# c74ec377100345e9b36634ccf6cb5062 -#: ../../source/training/tot/501_adult_learning.rst:180 -msgid "It facilitates a two-way communication" -msgstr "" - -# 476093a727704a5dbdfef1fdadec2e81 -#: ../../source/training/tot/501_adult_learning.rst:181 -msgid "Learning atmosphere expected is one that is fun and challenging" -msgstr "" - -# 08e405b52e114671a84c8a8631f68e7f -#: ../../source/training/tot/501_adult_learning.rst:182 -msgid "It prioritizes the roles of learning participants" -msgstr "" - -# 1673f17e616f4a0fb8ccf25e37da6620 -#: ../../source/training/tot/501_adult_learning.rst:183 -msgid "Adults learn when their opinion is respected" -msgstr "" - -# cc7a9a7668aa4709b01b2c58dc8b7ee5 -#: ../../source/training/tot/501_adult_learning.rst:184 -msgid "Adults learn in a unique way" -msgstr "" - -# 3f60691b46a64d2285c839bba2da9825 -#: ../../source/training/tot/501_adult_learning.rst:185 -msgid "There needs to be a trust between mentor and learners" -msgstr "" - -# 227c75bf1d7840ecb7f79bdba9daed36 -#: ../../source/training/tot/501_adult_learning.rst:186 -msgid "Opinions are generally varied among adults" -msgstr "" - -# 8077f92100a74d568d18addee63a2b2a -#: ../../source/training/tot/501_adult_learning.rst:187 -msgid "Adults have varied intelligence" -msgstr "" - -# a3bbc044cf674c8088f26eec4d9592c2 -#: ../../source/training/tot/501_adult_learning.rst:188 -msgid "Various learning methods may emerge" -msgstr "" - -# 433223f294d64297b764262459801194 -#: ../../source/training/tot/501_adult_learning.rst:189 -msgid "Adults learn to know their strong points and shortcomings" -msgstr "" - -# 79de4abfeeda4c4689703b02eb895bd9 -#: ../../source/training/tot/501_adult_learning.rst:190 -msgid "Learning orientation for adults is focused on real life" -msgstr "" - -# 61128e98ac1c46e98211e15ad53b2369 -#: ../../source/training/tot/501_adult_learning.rst:191 -msgid "Adults self--motivate" -msgstr "" - -# 6e641f9ae62b42f899f85f8f7ef7394b -#: ../../source/training/tot/501_adult_learning.rst:193 -msgid "The characteristics of adult learning can be elaborated as follows:" -msgstr "" - -# a4fa1935ba6a428baa769d1f42ca8ab7 -#: ../../source/training/tot/501_adult_learning.rst:195 -msgid "" -"Adults learn because of demands in their work, for self-development or the " -"desire to enhance their role. In contrast with children who tend to receive " -"learning material conveyed by their teacher, adults learn something when it " -"meets their work demands, is crucial for self-development and their role " -"enhancement. To this end, in adult learning, it is important to explain to " -"adults taking part in learning process the relations between material " -"presented and the demands in their work, roles and their needs of self " -"development." -msgstr "" - -# d924e23ce2a544729ffe90e300981a94 -#: ../../source/training/tot/501_adult_learning.rst:203 -msgid "" -"Adults prefer to learn things that are practical, can immediately be applied " -"and bring benefits in their life. Adults generally have rich theoretical " -"knowledge, hence the needs to have learning materials for adults that are " -"practical and applicable." -msgstr "" - -# 7ffd3229407940aaa82517a3bce2e1a0 -#: ../../source/training/tot/501_adult_learning.rst:207 -msgid "" -"In the process of learning, adults want to be treated as a mature person/ to " -"be respected." -msgstr "" - -# e62e038e50904950a7311c4a0de33afe -#: ../../source/training/tot/501_adult_learning.rst:209 -msgid "" -"Adults have rich experience and insight and learn new things based on their " -"experience. Every adult person generally has a lot of experience especially " -"in the field s/he has been focusing on. When engaging adults in learning new " -"things, it is better to build on their experience." -msgstr "" - -# 0bd61ce94b244c1d86496ba6033421ce -#: ../../source/training/tot/501_adult_learning.rst:215 -msgid "" -"Adults learn by sharing their opinion with others. As they are rich in " -"experience, sharing opinion is one of effective ways for them to learn." -msgstr "" - -# e72cf56841ca4ad28559c0a0e2b980a9 -#: ../../source/training/tot/501_adult_learning.rst:218 -msgid "" -"Adults question why they have to learn something before they start to learn " -"it. If children tend to receive certain topics without questioning, adults " -"need to know whether something they are about to learn will bring them " -"direct benefits." -msgstr "" - -# 30a639e7e9fe41548fd21fffdeb6eaae -#: ../../source/training/tot/501_adult_learning.rst:223 -msgid "" -"Adults focus on problem solving when learning; their orientation is not in " -"the learning material. When they find what they learn suitable for solving " -"problems they face, they learn well." -msgstr "" - -# 86e7d54ee0174c0db174ea34564688d8 -#: ../../source/training/tot/501_adult_learning.rst:227 -msgid "" -"Adults like an atmosphere of learning that promotes self-confidence. This is " -"related to their desire to be respected. Start with simple things to " -"increase their confidence." -msgstr "" - -# 42f9109a3692466cbf41ba21cd3a0b97 -#: ../../source/training/tot/501_adult_learning.rst:230 -msgid "" -"Adults need longer time to learn as they need to validate new information. " -"When they receive information, they will validate it based on their " -"experience." -msgstr "" - -# 3e13abf665944207aadcfc2d62a6569d -#: ../../source/training/tot/501_adult_learning.rst:233 -msgid "" -"Adults will continue learning process when their learning experience is " -"satisfactory." -msgstr "" - -# d66072689cb74a0694065d0576771713 -#: ../../source/training/tot/501_adult_learning.rst:236 -msgid "*The difference between Pedagogy and Andragogy*" -msgstr "" - -# fa69ba7a156f4aefb78c3ee9bb0ddba5 -#: ../../source/training/tot/501_adult_learning.rst:239 -msgid "Aspect" -msgstr "" - -# 90548771740140eeaf3448afe13168fa -#: ../../source/training/tot/501_adult_learning.rst:239 -msgid "Pedagogy" -msgstr "" - -# f6da6e89b98043b4ad5a805b14a258c7 -#: ../../source/training/tot/501_adult_learning.rst:239 -msgid "Andragogy" -msgstr "" - -# f5bb2c4f6d1c450488faf5029109394d -#: ../../source/training/tot/501_adult_learning.rst:241 -msgid "Trainee’s self concept" -msgstr "" - -# f11c6d1b023541beb7f3dadeec3f1fa0 -#: ../../source/training/tot/501_adult_learning.rst:241 -msgid "Dependent" -msgstr "" - -# 736d20fa5352460b851c83724b893847 -#: ../../source/training/tot/501_adult_learning.rst:241 -msgid "Ability in self-directing" -msgstr "" - -# 97e3af8f763341e99baaba035fcd2b26 -#: ../../source/training/tot/501_adult_learning.rst:244 -msgid "Function of trainee's experience" -msgstr "" - -# 4a56d09965374d8f9ee107e9bb36c6b3 -#: ../../source/training/tot/501_adult_learning.rst:244 -msgid "Little experience" -msgstr "" - -# f932d3408da04231945313d651a82952 -#: ../../source/training/tot/501_adult_learning.rst:245 -msgid "Experience as point of departure in building experience" -msgstr "" - -# 89518209517b48bf8fb665784d2860bb -#: ../../source/training/tot/501_adult_learning.rst:244 -msgid "A lot of experience" -msgstr "" - -# 9d67ba27a41d49f08481459ed2c0e7fc -#: ../../source/training/tot/501_adult_learning.rst:245 -msgid "Experience as learning source" -msgstr "" - -# f091212cbb084848a5b7559c8278efe3 -#: ../../source/training/tot/501_adult_learning.rst:249 -msgid "Learning preparedness" -msgstr "" - -# fe5b841bb32041ecb4ff4494247133f8 -#: ../../source/training/tot/501_adult_learning.rst:249 -msgid "Uniformity based on age" -msgstr "" - -# 5e4cd69fdb684ccb96313e82d1dddf41 -#: ../../source/training/tot/501_adult_learning.rst:250 -msgid "Organized in a curriculum" -msgstr "" - -# 0d72d1beca4847449cfa25d35ae74ff1 -#: ../../source/training/tot/501_adult_learning.rst:249 -msgid "Prepared to learn what is needed" -msgstr "" - -# 703bbce9114948188dc7f5f2e02a3dea -#: ../../source/training/tot/501_adult_learning.rst:251 -msgid "Based on problem solving or finding solution to daily task" -msgstr "" - -# 163d4b91a0814918b8863bce6c0d37d7 -#: ../../source/training/tot/501_adult_learning.rst:255 -msgid "Learning orientation" -msgstr "" - -# 2759a37b276e4b179ffaac1af25034cb -#: ../../source/training/tot/501_adult_learning.rst:255 -msgid "Education as a process of conveying knowledge" -msgstr "" - -# 88b55f652a8a4531a11b5b50bcb832d1 -#: ../../source/training/tot/501_adult_learning.rst:257 -msgid "The knowledge will bring benefit in the future" -msgstr "" - -# a5b21b0e3a274945996b46c510789eeb -#: ../../source/training/tot/501_adult_learning.rst:259 -msgid "Orientation to learning subjects" -msgstr "" - -# 2ef6df7472a24492bc8a7c4d765775b0 -#: ../../source/training/tot/501_adult_learning.rst:255 -msgid "Education as a process to develop selfability" -msgstr "" - -# 47bcff1c2e544d879bbaa26734804305 -#: ../../source/training/tot/501_adult_learning.rst:257 -msgid "Knowledge and skills are applied for a better life" -msgstr "" - -# 832c98bab22b40699c47e371ac0680ee -#: ../../source/training/tot/501_adult_learning.rst:260 -msgid "Orientation is focused on activities" -msgstr "" - -# 946649f36de14754a87669c7f9b6a80f -#: ../../source/training/tot/501_adult_learning.rst:265 -msgid "2. Principle of Adult Learning" -msgstr "" - -# 5558fbbdf58249e3a5a48eb9986e0c53 -#: ../../source/training/tot/501_adult_learning.rst:267 -msgid "" -"In adult learning, there are principles that differentiate it from other " -"types of education. These principles can create an effective and efficient " -"learning atmosphere. The principles can be explained as follows:" -msgstr "" - -# 31938481a3574a59bf0ea9c8bed1cdc6 -#: ../../source/training/tot/501_adult_learning.rst:272 -msgid "" -"Principle of partnership: The principle of partnership guarantees a forged " -"partnership between facilitator and participants. The participants are not " -"treated as students but as learning partners. The relationship created is " -"not one of giving orders but of assistance in that trainers will put their " -"best effort to assist training participants." -msgstr "" - -# 3dc8804067bf432c80d717fdfbd8dc8b -#: ../../source/training/tot/501_adult_learning.rst:278 -msgid "" -"Principle of real experience: This principle guarantees that adult learning " -"and education is conducted in real life situation. Adult learning and " -"education activities are not conducted in a class or simulated situation, " -"but in a real situation." -msgstr "" - -# 80ea38bcecd44f65b7afee5e19685ad8 -#: ../../source/training/tot/501_adult_learning.rst:283 -msgid "" -"Principle of togetherness: This principle requires the use of group " -"activities in adult learning and education to guarantee maximum interaction " -"between participants facilitated by the facilitator." -msgstr "" - -# 3cb8dbdd917c48c883ae65eec519701d -#: ../../source/training/tot/501_adult_learning.rst:287 -msgid "" -"Principle of participation: This principle seeks to encourage maximum " -"participants’ involvement in learning process, facilitated by the " -"participants themselves. In adult learning and education activities all " -"participants are to take active part in the whole process of learning from " -"planning, implementation and evaluation of learning activities." -msgstr "" - -# 824e734032c349d38b6724560552f782 -#: ../../source/training/tot/501_adult_learning.rst:293 -msgid "" -"Principle of self-reliance: This principle encourages participants " -"independence in seeking learning goals. Adult learning seeks to produce " -"independent human being able to play the role of subject or actor, hence the " -"need for self-reliance principle." -msgstr "" - -# 1fea9bffdd544146a1de291118ffdc00 -#: ../../source/training/tot/501_adult_learning.rst:298 -msgid "" -"Principle of sustainability: This principle guarantees continuity between " -"the material that is being learned at present, that has been learned and " -"that will be learned in the future. With this principle, the concept of life " -"long education in adult learning will materialize." -msgstr "" - -# 7fcd478524b448358d7f005ebb0bad27 -#: ../../source/training/tot/501_adult_learning.rst:304 -msgid "" -"Principle of benefit: This principle guarantees that what is learned in " -"adult education is compatible with the needs felt by participants. Adults " -"are prepared to learn when they realize there are needs to be addressed. " -"This awareness will stimulate the emergence of motivation to learn among " -"adults and a sense of preparedness will emerge as they feel they are " -"responsible for this as an adult." -msgstr "" - -# a204c91f49ce49a8ba61761198c0a43e -#: ../../source/training/tot/501_adult_learning.rst:312 -msgid "" -"Principle of preparedness: This principle guarantees participants’ mental " -"and physical preparedness to be able to take part in learning activities. " -"Adults will never be able to participate in learning process if they are not " -"yet prepared (either physically and metally) to do it." -msgstr "" - -# 4a7a6956ee2b407986adc38e0fdb3db6 -#: ../../source/training/tot/501_adult_learning.rst:317 -msgid "" -"Principle of locality: This principle guarantees the learned material is " -"locally specific. Generalisation of learning outcome in adult learning will " -"be dificult to do. The outcome in adult learning generally comprises " -"specific abilities to solve participants’ current problem in their " -"respective locality. Such skill can not be generalized as a theory or " -"principle that can be applied anywhere, anytime. The present learning " -"outcome might not be useful to solve similar problems in two or three years’ " -"time. This outcome will also not be applicable anywhere and is only suitable " -"for participants respective locality as it is processed from participants " -"experience." -msgstr "" - -# b38f4150586649f181042a6686ea9a25 -#: ../../source/training/tot/501_adult_learning.rst:330 -msgid "" -"Principle of integration: This principle guarantees integration of adult " -"learning material. Learning plan in adult education must cover materials " -"that are non-partial and integrated in nature, forming a unity." -msgstr "" - -# 498a4573f1d3469687ffcfd3ace2ed6d -#: ../../source/training/tot/501_adult_learning.rst:336 -msgid "3. Adult Learning Strategy" -msgstr "" - -# 783b6431f15c443b8c2d3706f4d9ffe2 -#: ../../source/training/tot/501_adult_learning.rst:338 -msgid "" -"Identification of learning strategies is based on the objective to achieve. " -"Based on this, there are two types of learning strategies i.e. : (a) the " -"strategy that is designed to assist people in addressing their past " -"experience in a new way, and (b) the strategy that is designed to bring " -"about new knowledge and skills (enrichment of experience)." -msgstr "" - -# 011d0a04073041989b3e06febbd02656 -#: ../../source/training/tot/501_adult_learning.rst:345 -msgid "" -"The process of addressing past experience: This strategy is employed for " -"training participants who already possess the knowledge and skills relating " -"to training material to be conveyed. The role of facilitators here is to " -"assist participants in making generalization by exploring participants " -"experience and giving feedbacks. Participants are expected to have a big " -"role in terms of expressing their experience and opinion, analyzing their " -"experience, exploring alternatives and benefits. The goals will be reached " -"when the atmosphere is free of threats and when participants feel the need " -"to find new approaches in addressing their past problems." -msgstr "" - -# 8e548ad883fb48a499db9ce06f46cef4 -#: ../../source/training/tot/501_adult_learning.rst:356 -msgid "" -"The process of enriching experience: This strategy is employed for " -"participants who have yet the knowledge and skills that are presented in the " -"training. Here, facilitators role is to provide new data and concept for the " -"participants to absorb and practice. In this case, it is necessary to have " -"clarity in terms of how to best present the training and motivate " -"participants to identify the relevance of the new material in their life." -msgstr "" - -# 456f3046afd54b05be7c398c33d57500 -#: ../../source/training/tot/501_adult_learning.rst:365 -msgid "" -"Based on the aims elaborated above, we now know that there are two types of " -"adults in adult learning i.e. adults with prior knowledge and adults without " -"prior knowledge. But it is necessary to remember that adults already possess " -"several characteristics that play a role in determining the best strategies " -"for them. In general, adult learning is expected to involve participatory " -"method i.e. active participation of training participants as well as other " -"arrangements such as training material, date and time of training, etc. " -"Principally, in participatory method facilitators don’t act as teacher and " -"lecture all the time, and involve participants in every activity. This " -"strategy can be further explained as follows:" -msgstr "" - -# 9f218933324b41cfa344267c3b4d0c3d -#: ../../source/training/tot/501_adult_learning.rst:377 -msgid "**a. Practical, problem-centered learning**" -msgstr "" - -# cc14303e5b974f1c844a19fd86c82851 -#: ../../source/training/tot/501_adult_learning.rst:379 -msgid "" -"One of the characteristics of adults is that they learn through problem " -"solving and are not lesson-oriented. They learn well when they find what " -"they learn during a training can be used to solve their problems. To this " -"end, strategies to be used are as follows: before the start of the learning " -"process, facilitators must identify trainees’ needs and problems. It is " -"better to start with identifying authentic problems of training participants " -"in their daily life. Should the facilitators feel the need to introduce new " -"theories or information, they need to ensure that these theories and " -"information are related to problems faced by trainees and real life " -"examples. In problem solving oriented training, methods that can be employed " -"are e.g. Q&A session and discussion. The latter can be divided into several " -"steps:" -msgstr "" - -# 5451a684a59049e8885c1f8c2f3af840 -#: ../../source/training/tot/501_adult_learning.rst:394 -msgid "Group members are aware of the existence of problems" -msgstr "" - -# b6929e1ff8144d87b1f9344f2a9eedef -#: ../../source/training/tot/501_adult_learning.rst:395 -msgid "Individually, members find ideas on how best to solve the problems" -msgstr "" - -# 8942b8b70be74cef905068d5a4fcd191 -#: ../../source/training/tot/501_adult_learning.rst:396 -msgid "" -"Group members search for facts or reflect on their experience to support " -"their ideas." -msgstr "" - -# 16335eb969a44f3eadb2ba581e93d82f -#: ../../source/training/tot/501_adult_learning.rst:398 -msgid "Discussion among group members on how to solve the problems" -msgstr "" - -# a8cf5aeea11a4a30b70b414bff361f41 -#: ../../source/training/tot/501_adult_learning.rst:399 -msgid "Group members conclude their discussion." -msgstr "" - -# c147ba0c46d94a14beca045bb2a1db58 -#: ../../source/training/tot/501_adult_learning.rst:401 -msgid "" -"With regards to practical learning, adults also need practical activities. " -"Material presented must be practiced to be instilled properly, the " -"appropriate methods being inter alia demonstration, simulation and " -"practicing. For example, to reach competency in how to use GPS and input " -"additional data in OSM, it would render a training meaningless when " -"participants only know and understand how to use GPS and add OSM data " -"without demonstration by facilitators, simulation by some of participants " -"and practical session involving all participants. What is necessary with " -"regards to this competency is how to turn on GPS and the initial GPS " -"setting." -msgstr "" - -# 387553c397ae44358d0fa4138cae81f7 -#: ../../source/training/tot/501_adult_learning.rst:412 -msgid "" -"**b. Adults prefer a learning process that integrates new information into** " -"**their experience**" -msgstr "" - -# f9616bcf09c44bb6b142ee94444626db -#: ../../source/training/tot/501_adult_learning.rst:415 -msgid "" -"There are two aspects of adult learning i.e. the process of addressing " -"their past experience and the process of enriching experience. Therefore, " -"learning process for adults must assist them in exploring their experience " -"in order to learn new things. A cooperative group learning can also help " -"them to share opinion with others. Furthermore, we need to help them " -"understand new information, the proper methods of which would be inter alia " -"Q&A session and discussion. For example, in presenting the lesson on “How to " -"Operate OSM”, it is better for the facilitators to not lecture on:" -msgstr "" - -# 308260923a7240bbac95835c3c555b4d -#: ../../source/training/tot/501_adult_learning.rst:425 -msgid "How to visit OpenStreetMap site," -msgstr "" - -# 6ba0118715544c38bfc37c14195718d6 -#: ../../source/training/tot/501_adult_learning.rst:426 -msgid "How to navigate maps," -msgstr "" - -# b21a4bc967374814b7041f8b6f0a363b -#: ../../source/training/tot/501_adult_learning.rst:427 -msgid "How to save Images from OSMan map," -msgstr "" - -# b57b11c128b64d418fb4f354c89b373b -#: ../../source/training/tot/501_adult_learning.rst:428 -msgid "How to create OpenStreetMap account," -msgstr "" - -# 81216860bfc54a519022913825580c89 -#: ../../source/training/tot/501_adult_learning.rst:429 -msgid "OSM Map Editing." -msgstr "" - -# 2d2f7cc8e535463982f2e40416142e07 -#: ../../source/training/tot/501_adult_learning.rst:431 -msgid "" -"Rather, the facilitators need to explore the degree of participants " -"experience or knowledge on the subject through Q&A session, after which a " -"discussion follows focusing on difficulties encountered on the subject. The " -"facilitators then can provide additional material that they feel needed by " -"the participants taking into account their prior experience and knowledge." -msgstr "" - -# 7b62428de57c480c83fd1249719dc86b -#: ../../source/training/tot/501_adult_learning.rst:438 -msgid "**c. Adults prefer a learning process that enhances their self-esteem**" -msgstr "" - -# 247ced540cc34be5ad146f1d8ee8c2a4 -#: ../../source/training/tot/501_adult_learning.rst:440 -msgid "" -"In order to make adults confident, we can start with simple things with low " -"possibility of failure. The degree of difficulty of material presented may " -"escalate as their confidence rises. For example, when conducting training on " -"how to operate JOSM, in the event some participants are not yet familiar " -"with internet, facilitators can start with light skills such as how to " -"download JOSM. The method employed for this task may be in dividing " -"participants in groups of two. Participants who are already capable of doing " -"the task show their partner how to do it, after which the faciliators may " -"proceed to individual task. This method is meant to not encumber " -"participants at the beginning of training. Other aspects on how to operate " -"JOSM may follow the same template. The point is that participants must not " -"be humiliated for their lack of internet skills." -msgstr "" - -# 5109bef42b534ddeb3ff5251b3ff067f -#: ../../source/training/tot/501_adult_learning.rst:456 -msgid "**d. Adults prefer individual attention when learning**" -msgstr "" - -# 4778f27dd7704c198484116045115302 -#: ../../source/training/tot/501_adult_learning.rst:458 -msgid "" -"Know their needs, fulfill their individual needs such as break, food, drink " -"etc. Engage them in discussion about planning targets, and assist them in " -"achieving them. Never hesitate to ask for their opinion in writing, during " -"sessions or informally outside training sessions. They appreciate having " -"their personal interests listened to." -msgstr "" - -# f255ad1100074038a1ca4b8999f24e4e -#: ../../source/training/tot/501_adult_learning.rst:465 -msgid "" -"The success of adult learning strategies also hinges on an agreeable " -"learning atmosphere conducive to learning. A conducive atmosphere to " -"learning according to Suprijanto (2007) constitutes the following:" -msgstr "" - -# 3f36d1ecbd6544a18ac54de1d8963c5e -#: ../../source/training/tot/501_adult_learning.rst:470 -msgid "" -"An atmosphere that encourages participants to be active and develop their " -"skills" -msgstr "" - -# cc303e0e219048a4a71efa595cbf9998 -#: ../../source/training/tot/501_adult_learning.rst:472 -msgid "An atmosphere of mutual respect and appreciation" -msgstr "" - -# fa6ee15db69f40aca2948a16c1e65943 -#: ../../source/training/tot/501_adult_learning.rst:473 -msgid "An atmosphere of mutual trust and openness" -msgstr "" - -# 44e25b1ce5f74f028d70cd0f13f4be07 -#: ../../source/training/tot/501_adult_learning.rst:474 -msgid "An atmosphere of self-discovery" -msgstr "" - -# 73731604403548b7ae9331f626746b20 -#: ../../source/training/tot/501_adult_learning.rst:475 -msgid "An atmosphere that is non-threatening" -msgstr "" - -# c4ebbfcc8d4d4dc7a95135af88f50a9c -#: ../../source/training/tot/501_adult_learning.rst:476 -msgid "An atmosphere of acknowledging self-distinctness" -msgstr "" - -# acd952983d19476095ecb39801147eea -#: ../../source/training/tot/501_adult_learning.rst:477 -msgid "An atmosphere that allows room for difference, mistakes and doubts" -msgstr "" - -# e0f41f651b4443c4bf1d31c4467b7479 -#: ../../source/training/tot/501_adult_learning.rst:478 -msgid "" -"An atmosphere that enables participants to learn according to their " -"interest, attention, and resources in their locality" -msgstr "" - -# 56da711516d9444b8215fc91bf2c1fda -#: ../../source/training/tot/501_adult_learning.rst:480 -msgid "" -"An atmosphere that enables participants to acknowledge and explore " -"weaknesses and strengths of themselves as individuals, their groups and " -"society" -msgstr "" - -# 1fb229556d95427eb4d20527d3a609f5 -#: ../../source/training/tot/501_adult_learning.rst:482 -msgid "" -"An atmosphere that enables participants to grow with values and norms in " -"their community" -msgstr "" - -# d58761eaa55b4f3d93c243434a78c10c -#: ../../source/training/tot/501_adult_learning.rst:487 -msgid "4. Adult Learning Evaluation" -msgstr "" - -# 18b1821f782e436ea6673dafa898073e -#: ../../source/training/tot/501_adult_learning.rst:489 -msgid "" -"Evaluation is an activity to determine how far a learning program is " -"implemented according to expectations. Therefore, evaluation is focused on " -"activities to determine how far a program is successful (micro: facilitator, " -"macro: institution). According to Fajar, A., (2002), evaluation can be " -"defined as an effort to gain various kinds of information periodically, " -"continuously and comprehensively about learning process and outcome, as well " -"as the growth and development of participants’ attitudes and behaviors. The " -"above definition shows that evaluation is also carried out during training " -"program and not only at the end of training. Evaluation constitutes a " -"process to paint a picture of changes among participants after training. The " -"word process means that evaluation is a continuous endeavor, using certain " -"methods to reach expected outcome. This process also sees that evaluation is " -"conducted by gathering facts in a systematic way. This definition shows that " -"an evaluation requires data gathering or measurement." -msgstr "" - -# 1d5657fac6194517bf6f542de34aefc2 -#: ../../source/training/tot/501_adult_learning.rst:509 -msgid "" -"The techniques, methods or tools of evaluation comprise all methods or " -"procedures taken to gather information or data needed as material to " -"evaluate. The techniques used in evaluation play an important role in the " -"outcome. Basically, evaluation techniques or methods can be divided into two " -"types i.e . test technique or method and non-test technique or method. In " -"cognitive aspects, a test in the form of questions (both in writing or " -"verbally) can be used. It is expected that this aspect can enhance the " -"affective aspect of training participants. Affective aspect can be " -"identified through observation and questionnaire, while psycho-motor aspect " -"can be evaluated through activities conducted and results achieved." -msgstr "" - -# d6bc32da52ff41ee8c49063e17925d90 -#: ../../source/training/tot/501_adult_learning.rst:523 -msgid "" -"The theory of evaluation above is actually similar in both pedagogy and " -"andragogy, with the difference being only in ways of evaluating. In adult " -"learning, the evaluation method must reflect freedom in that the evaluation " -"must come from the person learning, not forced from outside. This implies " -"that adults must be able to evaluate themselves. Therefore, the term ‘test’ " -"for adults should be referred to more appropriately as self-examination. An " -"example of evaluation method suitable for adults is as follows:" -msgstr "" - -# 13cbfb6cf663488eaff00e754e6b9ef2 -#: ../../source/training/tot/501_adult_learning.rst:532 -msgid "" -"Feedback: each participant is given an opportunity to express their thoughts " -"and feeling regarding the lesson presented." -msgstr "" - -# 1701383c7305432283ba23fff3cee079 -#: ../../source/training/tot/501_adult_learning.rst:535 -msgid "" -"Reflection: participants are given the opportunity to reflect. Reflection is " -"subjective and personal so facilitators need not to respond." -msgstr "" - -# 11bdec6899de401e92addc4dbd2647a2 -#: ../../source/training/tot/501_adult_learning.rst:538 -msgid "" -"Group discussion: participants are given the opportunity to discuss their " -"respective evaluation result and put it in a report." -msgstr "" - -# eaefb1eac8964e4db14e24fd02ca617f -#: ../../source/training/tot/501_adult_learning.rst:541 -msgid "" -"Questionnaire: a form with list of questions prepared for participants to " -"answer." -msgstr "" - -# 0bdc7f19f0dc49a0bbd4c2628c01a14c -#: ../../source/training/tot/501_adult_learning.rst:543 -msgid "" -"Management team: a team is formed consisting a number of participants as " -"moderator, note taker and evaluator. This team is in charge of writing a " -"brief and concise report and writing evaluation for the day’s activities." -msgstr "" - -# c1ed300337914551b0c0924144112d4f -#: ../../source/training/tot/501_adult_learning.rst:549 -msgid "" -"The above methods can be completed with Performance Evaluation, an " -"assessment which constitutes a non-test evaluation conducted by observing " -"participants’ activities. This evaluation is suitable to evaluate how far " -"participants achieve certain competencies in carrying out certain tasks: " -"practice and simulation. In performance evaluation, the following points " -"need consideration:" -msgstr "" - -# 547ad7074b604e6290cf3dacf781151f -#: ../../source/training/tot/501_adult_learning.rst:556 -msgid "" -"Performance steps expected from participants to be carried out to show their " -"level of competency." -msgstr "" - -# f55796d643d54f6ca62d902a5992bd29 -#: ../../source/training/tot/501_adult_learning.rst:558 -msgid "" -"The completeness and precision of aspects to be evaluated in the performance." -msgstr "" - -# 42a30f061be340b1a0d079441e77c64d -#: ../../source/training/tot/501_adult_learning.rst:559 -msgid "Specific abilities needed to carry out tasks." -msgstr "" - -# bd5a9f3ef78546f7ba2da00ea9ffd665 -#: ../../source/training/tot/501_adult_learning.rst:560 -msgid "" -"When possible, skills to be evaluated are not too many to provide enough " -"time for a thorough observation." -msgstr "" - -# c22ac6947de14914ba478ef4226ff008 -#: ../../source/training/tot/501_adult_learning.rst:562 -msgid "" -"Skills to be evaluated is listed based on the first to the last aspects " -"observed." -msgstr "" - -# 36d042a45c6a40389b648abe1a3c5598 -#: ../../source/training/tot/501_adult_learning.rst:565 -msgid "*Performance Evaluation Techniques*" -msgstr "" - -# e1c4a762aa004100a724727cde98b4c4 -#: ../../source/training/tot/501_adult_learning.rst:567 -msgid "" -"Performance observation needs to be carried out in various contexts to " -"determine the level of competence of certain skills. The following tools or " -"instruments may be used to observe participants performance:" -msgstr "" - -# 8a3332a19927440494d484254646bc88 -#: ../../source/training/tot/501_adult_learning.rst:572 -msgid "Check list" -msgstr "" - -# 1d07769bdb1e4835afec50aedde40b7d -#: ../../source/training/tot/501_adult_learning.rst:574 -msgid "" -"Performance evaluation can be conducted using a check list (yes-no " -"questions). With this check list, participants will get points when certain " -"criteria of mastering certain competency are observed by evaluators. In the " -"event no competency is observed, participants will not get any point. The " -"weakness of this method is that evaluators only have two absolute options, " -"right or wrong; observed and not observed. There is no middle ground. " -"Nevertheless, check list is more practical to be used to observe subjects in " -"great number. The following is an example of a check list." -msgstr "" - -# 9c3af009593d4dee9059254d616c3cf0 -#: ../../source/training/tot/501_adult_learning.rst:585 -msgid "**Example of checklist**" -msgstr "" - -# dc484e71ab2e433c9f5e7cc7ce7302df -# f5d184a1b1314ccab0a9d29409cb7e38 -#: ../../source/training/tot/501_adult_learning.rst:588 -#: ../../source/training/tot/501_adult_learning.rst:615 -msgid "No." -msgstr "" - -# b9b0cf645f5e436fb898a2a02cefc524 -# 6da7e1bf32d44cb186ae9dc01fcb963a -#: ../../source/training/tot/501_adult_learning.rst:588 -#: ../../source/training/tot/501_adult_learning.rst:615 -msgid "Scoring Aspect" -msgstr "" - -# c3b171dad25d4aaba866a716fc21fd8f -#: ../../source/training/tot/501_adult_learning.rst:588 -msgid "Good" -msgstr "" - -# 95686486246c43c0912664a5914735ce -#: ../../source/training/tot/501_adult_learning.rst:588 -msgid "Not Good" -msgstr "" - -# 3e0fbf21afaf4eb4ad5a428845d4d98e -# b137edefbf2a4f1d84ec92eed2e9bf87 -#: ../../source/training/tot/501_adult_learning.rst:596 -#: ../../source/training/tot/501_adult_learning.rst:625 -msgid "Total Score" -msgstr "" - -# b3d9ca481b1e4173a8bb64a1eef4de98 -# 696736fe0d724ea989e353169d37a248 -#: ../../source/training/tot/501_adult_learning.rst:598 -#: ../../source/training/tot/501_adult_learning.rst:627 -msgid "Maximum Score" -msgstr "" - -# e3721b1e85c740bd917d398324236b81 -#: ../../source/training/tot/501_adult_learning.rst:602 -msgid "Rating scale" -msgstr "" - -# aed18b8c707740d1a73075654b7e6417 -#: ../../source/training/tot/501_adult_learning.rst:604 -msgid "" -"Performance evaluation using rating scale enables evaluators to give median " -"scores for mastery of certain competencies, as scores are given in a " -"continuum where there are more than two options of scoring category. " -"Evaluation scale is spread from not perfect to very perfect. For example, 1 " -"= not competent, 2 = sufficiently competent, 3 = competent and 4 = very " -"competent. The following is an example of rating scale." -msgstr "" - -# c90a89342df94d91a4a949386303aab0 -#: ../../source/training/tot/501_adult_learning.rst:612 -msgid "**Example of rating scale**" -msgstr "" - -# 832b974755b344cdbcf171f6dcfaf1b4 -#: ../../source/training/tot/501_adult_learning.rst:615 -msgid "Score" -msgstr "" - -# acb46f2ca0db4380ad0e26ea5a75fea2 -#: ../../source/training/tot/501_adult_learning.rst:617 -msgid "1" -msgstr "" - -# 54a77db2ba044f72aaf286cd33be81fe -#: ../../source/training/tot/501_adult_learning.rst:617 -msgid "2" -msgstr "" - -# a014713484d843c0880d9a732959507a -#: ../../source/training/tot/501_adult_learning.rst:617 -msgid "3" -msgstr "" - -# f4b1732096404c96aa2a983b2b9f1e8e -#: ../../source/training/tot/501_adult_learning.rst:617 -msgid "4" -msgstr "" - -# 1e54ac8ddcd5439785c55d04a7b40f91 -#: ../../source/training/tot/501_adult_learning.rst:627 -msgid "9" -msgstr "" - -# 837ee98703a64a3e9a0be3a21cd89672 -#: ../../source/training/tot/501_adult_learning.rst:630 -msgid "Remarks:" -msgstr "" - -# 2e59279306f049f19ae4b38643f49665 -#: ../../source/training/tot/501_adult_learning.rst:632 -msgid "" -"1 = Not competent 2 = Sufficiently Competent 3 = Competent 4 = Very competent" -msgstr "" - -# 3b0e7b9e18894e4e8c134cb30d966a93 -#: ../../source/training/tot/501_adult_learning.rst:634 -msgid "" -"In the event a participant gains a score of 16, s/he can be qualified as " -"\"very competent\". Other qualification is also determined according to " -"scores obtained. In school settings, this performance evaluation can be " -"carried out by teachers. For adults, it is the responsibility of " -"facilitators together with training participants. The forms that have been " -"filled out can serve as a matter of discussion or records for management " -"team." -msgstr "" - -# 2bc61838323f49e2ab8e4649e68bb12e -#: ../../source/training/tot/501_adult_learning.rst:643 -msgid "**Bibliography**" -msgstr "" - -# ef4ffb63db9a420dad5eeaa1d750c52b -#: ../../source/training/tot/501_adult_learning.rst:646 -msgid "Budimansyah, D. 2002. Model Pembelajaran dan Penilaian Portofolio." -msgstr "" - -# 86ec81a6fb924716adc90a193840b04a -#: ../../source/training/tot/501_adult_learning.rst:646 -msgid "Bandung: Genesindo." -msgstr "" - -# dd494acce5da42bca7ce70da531c030d -#: ../../source/training/tot/501_adult_learning.rst:649 -msgid "" -"Degeng, N.S. 2003. Evaluasi Pembelajaran. Makalah disampaikan dalam acara TOT" -msgstr "" - -# d32f1e59d54d4bd18908bd7cd5d8416a -#: ../../source/training/tot/501_adult_learning.rst:649 -msgid "AA dan Pekerti dosen Kopertis Wilayah VII tanggal 15-21 Juni 2003." -msgstr "" - -# 3f5b363d52354d45b76d6f469cef18ea -#: ../../source/training/tot/501_adult_learning.rst:651 -msgid "Lanandi, A.G. 1982. Pendidikan Orang Dewasa. Jakarta: PT Gramedia." -msgstr "" - -# cb5604b70d904c488f20f7c28773196c -#: ../../source/training/tot/501_adult_learning.rst:654 -msgid "Mc. Tighe, JU and Ferrara (1995). Assessing learning in the classroom." -msgstr "" - -# 3aec9fabde26433c9573b596ec21c3fa -#: ../../source/training/tot/501_adult_learning.rst:654 -msgid "Website: ttp://www.msd. net/Assessment/authenticassessment. html." -msgstr "" - -# 490b81f814fd4c6d8f783b2e5c0f5ca1 -#: ../../source/training/tot/501_adult_learning.rst:657 -msgid "" -"Phopham, W. James, 1995. Classroom Assessment: What Teachers Need to Know," -msgstr "" - -# 9a2b821857804ddc875f7c12e151f487 -#: ../../source/training/tot/501_adult_learning.rst:657 -msgid "United States of America, Allyn & Bacon – Simon & Scuster Company." -msgstr "" - -# 3fa9a3db4a1e4d55ac96f586ee8f5084 -#: ../../source/training/tot/501_adult_learning.rst:660 -msgid "Supriyanto. 2007. Pendidikan Orang Dewasa (Dari Teori Hingga Aplikasi)," -msgstr "" - -# 83fa94f117324c9d85ce3c070bc4567c -#: ../../source/training/tot/501_adult_learning.rst:660 -msgid "Banjarbaru: Bumi Aksara" -msgstr "" - -# b50da1a556984d6f88c0d4796a423ac2 -#: ../../source/training/tot/501_adult_learning.rst:662 -msgid "Zainudin. 1986. Andragogi. Bandung: Penerbit Angkasa" -msgstr "" - -# ad5bc2a6d9f24e08972aec2844ecdfc3 -#: ../../source/training/tot/501_adult_learning.rst:664 -msgid "" -"Padmowihardjo, S. (2006). Pendidikan Orang Dewasa. Jakarta: Universitas " -"Terbuka." -msgstr "" - -# f3efde3c3d91434eb1e5dac36c23617b -#: ../../source/training/tot/501_adult_learning.rst:666 -msgid "" -"http://ippamaradhi.multiply.com/journal/item/102/10-Prinsip-Pendidikan-Orang-" -"Dewasa" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/tot/502_communication_skills.po b/docs/i18n/en/LC_MESSAGES/training/tot/502_communication_skills.po deleted file mode 100644 index b521c50f..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/tot/502_communication_skills.po +++ /dev/null @@ -1,2494 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 45cd697930ed44478d1fae3996d290f9 -#: ../../source/training/tot/502_communication_skills.rst:6 -msgid "Module 2: Communication Skills" -msgstr "" - -# a941d990cba14803b15f46774cef5abd -#: ../../source/training/tot/502_communication_skills.rst:9 -msgid "Overview" -msgstr "" - -# 7f3375dc88354e2288951121ea645247 -#: ../../source/training/tot/502_communication_skills.rst:12 -msgid "Basic Competency" -msgstr "" - -# f41be223b730495ba1f65d27fd47db8f -#: ../../source/training/tot/502_communication_skills.rst:13 -msgid "Demonstrate communication skills in training" -msgstr "" - -# 3e37905d166d4ca6ae4aa8f0f82b54cb -#: ../../source/training/tot/502_communication_skills.rst:16 -msgid "Indicators" -msgstr "" - -# e4056b44ddb846fb9036db0e5102ac77 -#: ../../source/training/tot/502_communication_skills.rst:17 -msgid "Describe the principles of effective communication" -msgstr "" - -# 810bd614b8414985845e5fafd90bf417 -#: ../../source/training/tot/502_communication_skills.rst:18 -msgid "Describe the communication models in training" -msgstr "" - -# b2ea51c505b744f98af275d66b4e348e -#: ../../source/training/tot/502_communication_skills.rst:19 -msgid "Demonstrate nine basic skills components in teaching/ training" -msgstr "" - -# 4943923109184e418f0327907f7bd58e -#: ../../source/training/tot/502_communication_skills.rst:22 -msgid "Materials" -msgstr "" - -# eed478d977fa49d3b86660cad8fcbe4e -#: ../../source/training/tot/502_communication_skills.rst:23 -msgid "**Communication Skills**" -msgstr "" - -# daac9ef68ea549da94f482c73879e19b -#: ../../source/training/tot/502_communication_skills.rst:25 -msgid "The principles of effective communication" -msgstr "" - -# fb50d2ac82f04cc19658ee3815cfeeba -#: ../../source/training/tot/502_communication_skills.rst:26 -msgid "Communication models in training" -msgstr "" - -# b1bd41cca59e49b196b6a4e5885e6a57 -#: ../../source/training/tot/502_communication_skills.rst:27 -msgid "Components of teaching / training basic skills" -msgstr "" - -# 4f83ec6074e74c0dbee617fe7f1d8048 -#: ../../source/training/tot/502_communication_skills.rst:30 -msgid "Activities" -msgstr "" - -# 0ab09aebb9bf4951be9e50e30f3c6bbf -#: ../../source/training/tot/502_communication_skills.rst:32 -msgid "**TIME**" -msgstr "" - -# 09d79e42010b4d94bc609c7ab7f7d955 -#: ../../source/training/tot/502_communication_skills.rst:32 -msgid "**ACTIVITY**" -msgstr "" - -# cfa745a616e64d50a48c52ac5835d58c -#: ../../source/training/tot/502_communication_skills.rst:32 -msgid "**SUMMARY**" -msgstr "" - -# 51ddf12c7c6742c386cc8c85e4bbe632 -#: ../../source/training/tot/502_communication_skills.rst:32 -msgid "**MATERIAL**" -msgstr "" - -# f22b348d581b427eabda3b09b948c1bc -# 80358e4da56e4e3d964f5a0ffc1a9e0f -#: ../../source/training/tot/502_communication_skills.rst:34 -#: ../../source/training/tot/502_communication_skills.rst:75 -msgid "5 mins" -msgstr "" - -# 70dd96f4ee874f06bf9e2bb9fde688e6 -#: ../../source/training/tot/502_communication_skills.rst:34 -msgid "" -"The facilitator welcomes the participants and opens the training with prayer" -msgstr "" - -# 4a1c92ae9a4f43d5a729b3793f58c3b6 -#: ../../source/training/tot/502_communication_skills.rst:36 -msgid "Informs the rules of training" -msgstr "" - -# 9650345c1a0d43a58a77ece91e7b8b58 -#: ../../source/training/tot/502_communication_skills.rst:37 -msgid "The facilitator explains the topic and the purpose of the first session" -msgstr "" - -# 489b3b5b7c384050a3646b010e9909b4 -#: ../../source/training/tot/502_communication_skills.rst:34 -msgid "Opening Information" -msgstr "" - -# 4cb092bbf2dc4443a148a02ecbb50ade -# c74f3598cd234527b5fb57fdd723d7af -# 38cd350841a94bceb9dd2a9dcabf6d22 -# 90c3fb0e949744bfaed500d1ed9f92b2 -#: ../../source/training/tot/502_communication_skills.rst:34 -#: ../../source/training/tot/502_communication_skills.rst:40 -#: ../../source/training/tot/502_communication_skills.rst:51 -#: ../../source/training/tot/502_communication_skills.rst:63 -msgid "PPT" -msgstr "" - -# 97478070ae12418c88c3ea52c575fe0d -#: ../../source/training/tot/502_communication_skills.rst:40 -msgid "20 mins" -msgstr "" - -# c7612db2512d46439d4e4d9229920d2a -#: ../../source/training/tot/502_communication_skills.rst:40 -msgid "" -"The facilitator asks two participants to come forward to communicate without " -"being given any topic" -msgstr "" - -# f535976dcb324241a61abba53128344a -#: ../../source/training/tot/502_communication_skills.rst:42 -msgid "" -"Afterwards, ask 2 other participants to communicate with a topic and give " -"them time to have a small talk first" -msgstr "" - -# 09136a2ad14a4099af41da8d54fd6f6f -#: ../../source/training/tot/502_communication_skills.rst:45 -msgid "" -"Participants are asked to analyze the difference of the two communications " -"demonstrated, to look for the the answer of what makes effective " -"communication" -msgstr "" - -# 2e79578110c247c1952bf8578ca0c68e -#: ../../source/training/tot/502_communication_skills.rst:48 -msgid "Trainer reinforces with the principles of effective communication" -msgstr "" - -# 8f1fcda506814bb1b52f9016e1933a16 -#: ../../source/training/tot/502_communication_skills.rst:40 -msgid "Demonstration Question & Answers" -msgstr "" - -# f4af4338073f44d3b503f77261e3f91a -# 2ecf8cdfcc594de2860c79bbca945fda -#: ../../source/training/tot/502_communication_skills.rst:51 -#: ../../source/training/tot/502_communication_skills.rst:63 -msgid "30 mins" -msgstr "" - -# f3d80c9de92f4fee8596dc38c19db8d6 -#: ../../source/training/tot/502_communication_skills.rst:51 -msgid "" -"Facilitator raises an issue of communication model in training to the " -"participants" -msgstr "" - -# 4155bfce8a0a4b2cbda3b50e845dfce6 -#: ../../source/training/tot/502_communication_skills.rst:53 -msgid "Give participants 2-5 minutes the chance to **think** independently" -msgstr "" - -# 4b53732e46d04a848ff93a0082934276 -#: ../../source/training/tot/502_communication_skills.rst:55 -msgid "" -"When finished, ask them to discuss the same issue with the person next to " -"them for 3-5 minutes (**pair**)" -msgstr "" - -# 837df37c3c6f424eabb0cc83222bdae0 -#: ../../source/training/tot/502_communication_skills.rst:58 -msgid "" -"Finally, select a pair to express their opinions in front of the class " -"(**share**)" -msgstr "" - -# 9e3273715f704098a3e88f9ab00b2d55 -#: ../../source/training/tot/502_communication_skills.rst:60 -msgid "Facilitator reinforces with communication models in training" -msgstr "" - -# ff59aa58c80a481b9116b8c7564a9ca9 -#: ../../source/training/tot/502_communication_skills.rst:51 -msgid "Think, pair and share" -msgstr "" - -# 714c0fb34cd747cc88d8013743813261 -#: ../../source/training/tot/502_communication_skills.rst:63 -msgid "Trainer delivers the materials of 9 basic skills in teaching" -msgstr "" - -# 9155c50f1c964c1497257b86950b5fe4 -#: ../../source/training/tot/502_communication_skills.rst:65 -msgid "" -"Participants are asked to create training materials as a group to practice " -"the 9 basic skills in teaching" -msgstr "" - -# 39ade21c2ec44232a72769dd7daf2a3b -#: ../../source/training/tot/502_communication_skills.rst:68 -msgid "2 groups are selected to simulate the basic skills in teaching" -msgstr "" - -# 7e2c933baf494b738cff6ce416779825 -#: ../../source/training/tot/502_communication_skills.rst:70 -msgid "Other participants will act as observers" -msgstr "" - -# 63fe81f906024e93a93580ce876d90c2 -#: ../../source/training/tot/502_communication_skills.rst:71 -msgid "Discuss the result of the observations" -msgstr "" - -# c74db8bbd4074f77b7f16b8388905d46 -#: ../../source/training/tot/502_communication_skills.rst:72 -msgid "Facilitator reinforces with the 9 basic skill in teaching" -msgstr "" - -# 113c2804a8994f5aadefa8da23d44c1a -#: ../../source/training/tot/502_communication_skills.rst:63 -msgid "Simulation" -msgstr "" - -# a1ca012445e943518d38f5603ac52528 -#: ../../source/training/tot/502_communication_skills.rst:75 -msgid "" -"The facilitator asks one of the participants to reflect the implementation " -"of the first session" -msgstr "" - -# 31512f6783fb436186c36fbe8d4e93f3 -#: ../../source/training/tot/502_communication_skills.rst:75 -msgid "First session reflection and closing" -msgstr "" - -# 00fbd192b0d3419bb88469b14dc38618 -#: ../../source/training/tot/502_communication_skills.rst:80 -msgid "Reading Material" -msgstr "" - -# 4179556cee7f4277ab1539a3bc21bcb3 -#: ../../source/training/tot/502_communication_skills.rst:82 -msgid "Foreword" -msgstr "" - -# f4473baff9c3441bab1a9f0b4daa0a5e -#: ../../source/training/tot/502_communication_skills.rst:83 -msgid "" -"Communication is the main skill for someone to become a trainer. There are " -"several things that need to be understood including the meaning and purpose " -"of communication and Principles of Proper or Effective Communication. So is " -"the case for the trainer of Contingency Plan Development Scenarios using " -"OpenStreetMap (OSM) and QGIS / InaSAFE." -msgstr "" - -# d3fbf093125147a498aa416f2d1cd36a -#: ../../source/training/tot/502_communication_skills.rst:89 -msgid "" -"Communication in everyday life plays a very important part, this is because " -"communication has the function to connect a person’s wishes to others. " -"Specifically, communication runs four functions, i.e. the function of " -"control, motivation, emotional expression and information." -msgstr "" - -# 968f2fecb25c4736a8473a289e275efd -#: ../../source/training/tot/502_communication_skills.rst:94 -msgid "" -"Communication is generally defined as the process of creating the meaning of " -"ideas or ideas presented. The trainer’s interests in training will naturally " -"require effective communication, used as a mean to convey ideas and motivate " -"someone to do something in accordance with the purpose of the training. The " -"ideas will be presented in this training are all about disaster, in " -"particular the Contingency Plan Development Scenarios using OpenStreetMap " -"(OSM) and QGIS / InaSAFE. Related to this, the trainer has to have the basic " -"skills in teaching or training because training is basically teaching the " -"participants to be able to do something." -msgstr "" - -# 8951f647d110490487fc4e83c65dc177 -#: ../../source/training/tot/502_communication_skills.rst:105 -msgid "1. The principles of effective communication" -msgstr "" - -# c4fcd395ab914c8c944af9553243389c -#: ../../source/training/tot/502_communication_skills.rst:106 -msgid "" -"Communication is generally defined as the process of creating the meaning of " -"ideas or ideas presented. In this case communication requires at least 4 " -"components or elements, i.e. (1) The sender or messenger/ communicator, (2) " -"the message, (3) the recipient of the message/ communicant, (4) Media/ " -"channel. In effective communication process, communicator and communicant " -"not only performed linear communication, but also expected to performed " -"circular communication." -msgstr "" - -# dee3cb0048ac44eb837c1e746d852776 -#: ../../source/training/tot/502_communication_skills.rst:114 -msgid "" -"Linear communication model is a process that consists of two straight lines, " -"where the communication process starts from the communicator and ends at the " -"communicant. The circular model of communication, on the other hand, is a " -"communication process that not only starts from the communicator and ends at " -"the communicant, but also pays attention to the feedback from the " -"communicant, making the model a full circle process. This means that the " -"trainer can be the source of information at one time and the recipient at " -"another time, vice versa. Participants can be the recipient of information " -"but also the source of information. So communication is a simultaneous " -"notice or exchange." -msgstr "" - -# ff700ce28289468c8e79f9693e0523e8 -#: ../../source/training/tot/502_communication_skills.rst:124 -msgid "" -"The communication process indicates that the trainee can act both as the " -"recipient of information/ message and the source of information/ message. " -"But the trainer as the actor in the process of communication still has to " -"control the training process. Therefore the trainer remains as the " -"communicator, as communicator plays a very important part especially in " -"controlling the course of communication, so that the message is well " -"received by the recipient (communicant) or the participants. This is in " -"accordance with the function of communication." -msgstr "" - -# c1af829c7f254d9496b9b7dd86362e9a -#: ../../source/training/tot/502_communication_skills.rst:133 -msgid "" -"The function of communication according to Gordon I Zinmmerman in Thomas M. " -"Scheidel (1976) is a function of the content, which involves the exchange of " -"information we need to complete our task, and the function of relationship, " -"which involves the exchange of information about how our relationship is " -"with others. While the function of communication according to Thomas M. " -"Scheidel (1976) is: \"We communicate primarily to represent and support self-" -"identity, to establish social contact, to influence others to feel, think " -"and act as we want." -msgstr "" - -# 286f2ca409a74599be619f2170b58650 -#: ../../source/training/tot/502_communication_skills.rst:142 -msgid "" -"The two opinions above indicate that the purpose of communication is for the " -"recipient to understand and comprehend the message conveyed by the " -"messenger. Trainers are expected to explain the wish or the idea according " -"to the purpose of the training to the participants with a simple but precise " -"or accurate way. Here communication process is expected to pay attention to " -"the feedback from the participants." -msgstr "" - -# 5a1ddc873d8d474581207051f24b8bf0 -#: ../../source/training/tot/502_communication_skills.rst:149 -msgid "" -"Communication is the message conveyed to the communicant (recipient) by the " -"communicator (source) through certain channels either directly/ indirectly " -"for the purpose of giving impact/ effect to the communicant as desired by " -"the communicator. It goes through 5 stages, i.e. (1) Interpretation, (2) " -"Encryption, (3) Delivery, (4) Acceptance, and (5) Feedback. To achieve the " -"objective of communication, the principles of effective communication are " -"also required. To have a smooth communication, it is necessary to use the " -"principle of effective communication. Principles include Respect, Empathy, " -"Audible, Clarity, and Humble." -msgstr "" - -# 4d4b8b084e57466884ac82c0175dcac9 -#: ../../source/training/tot/502_communication_skills.rst:159 -msgid "**Respect**." -msgstr "" - -# 4d98af39fba9466bb5eff213242aa4df -#: ../../source/training/tot/502_communication_skills.rst:161 -msgid "" -"Respect is the positive feeling or respect for the listener. Everyone wants " -"to be appreciated and respected and it has become the need of each " -"individual. For that reason, the trainer is expected to respect the other " -"person, or in this case the trainees." -msgstr "" - -# baee2f16e08746b7abcd6048b9afe26a -#: ../../source/training/tot/502_communication_skills.rst:166 -msgid "**Empathy**." -msgstr "" - -# c932b9cf22954127b52b73bbd420c66f -#: ../../source/training/tot/502_communication_skills.rst:168 -msgid "" -"Empathy is the ability to put yourself in situations or conditions faced by " -"others. Communication will be well established in accordance with good " -"psychological condition of our counterpart. To empathize means that the " -"trainer has to put himself as a good listener, even before anyone else " -"listens to him. And he must be able to feel what is perceived by the " -"trainees." -msgstr "" - -# cddc5f17d8364f4999c5192971967ea7 -#: ../../source/training/tot/502_communication_skills.rst:175 -msgid "**Audible**." -msgstr "" - -# 1371cf0e0a294183b12935c926813ff7 -#: ../../source/training/tot/502_communication_skills.rst:177 -msgid "" -"Audible implies that the message must be able to be heard and understood. In " -"this matter what has to be done by the trainer are" -msgstr "" - -# 338df5e3cf6d4546b455eb32dfb99554 -#: ../../source/training/tot/502_communication_skills.rst:179 -msgid "" -"The message must be easily understood, using proper and correct grammar. " -"Avoid languages unfamiliar to others." -msgstr "" - -# 60a9ed9eadb04308b3d308bec0890ff2 -#: ../../source/training/tot/502_communication_skills.rst:181 -msgid "" -"Convey the important part of the message by simplifying the message, " -"straight to the point because most people don’t like listening to long-" -"winded things." -msgstr "" - -# 230d4e7bc3114a30935279aa53f3e273 -#: ../../source/training/tot/502_communication_skills.rst:184 -msgid "" -"Use body language. Facial expressions, eye contact, hand gestures and body " -"positions can be easily read by the interlocutor." -msgstr "" - -# 96053ca984a44f628213b66389e6528e -#: ../../source/training/tot/502_communication_skills.rst:186 -msgid "" -"Use illustrations or examples. Analogy really helps in conveying the " -"message. You could use real life examples and illustrations." -msgstr "" - -# 7fcb879f22344fe99136c21b2353956c -#: ../../source/training/tot/502_communication_skills.rst:189 -msgid "**Clarity**." -msgstr "" - -# 2ab5c6fac8234000ba782384f5d8855a -#: ../../source/training/tot/502_communication_skills.rst:191 -msgid "" -"Clarity is the clarity of the messages we convey. On this principle the " -"trainer has set clear objectives before the training and uses a good tone of " -"voice." -msgstr "" - -# b09d45b2866d40c28057dc84540e2436 -#: ../../source/training/tot/502_communication_skills.rst:195 -msgid "**Humble**." -msgstr "" - -# ac91203c535d466a933860484901d091 -#: ../../source/training/tot/502_communication_skills.rst:197 -msgid "" -"Humility gives positive prestige for the communicator. In this case, humble " -"is done by giving participants a chance to speak first and the trainer being " -"a good listener. This attitude builds respect and eventually develops " -"respect for the participants." -msgstr "" - -# 1fb9211d8e3f4c84b7891a7a0ba09a18 -#: ../../source/training/tot/502_communication_skills.rst:204 -msgid "2. Communication models in training" -msgstr "" - -# effc742c553941d7a391216b6a570ce2 -#: ../../source/training/tot/502_communication_skills.rst:205 -msgid "" -"Communication in training is a process of delivering communication " -"conditioned for training purposes. The training process is essentially a " -"communication process delivering messages containing training materials. In " -"this regard the training is expected to use a circular model of " -"communication, which is a process that not only starts from the communicator " -"and ends at communicant, but also pays attention to the feedbacks from the " -"communicant, to make the communication effective." -msgstr "" - -# 3edb06acad364f3d834be0249e1cc75c -#: ../../source/training/tot/502_communication_skills.rst:213 -msgid "" -"Effective communication in training is expected to use verbal and non-verbal " -"communication. Verbal communication is communication using verbal symbols/ " -"words verbally. Non-verbal communication is the kind of communication not " -"using verbal words, but gestures, body language, facial expressions, and eye " -"contact. It could also be done with the use of objects such as clothes, " -"haircuts and so forth." -msgstr "" - -# 46284ae2b7414a5ba0a4183982ec990d -#: ../../source/training/tot/502_communication_skills.rst:220 -msgid "" -"Non-verbal communication will help the trainer to become an interesting " -"speaker. Verbal communication has to be supported by means of talking such " -"as intonation, giving emphasis, sound quality, style of speech and emotion. " -"It also uses gestures, body language, facial expressions, eye contact, and " -"supported by the use of objects such as clothes, haircuts, and so forth." -msgstr "" - -# c3a1acf773384ef79e016622f3d4b2b8 -#: ../../source/training/tot/502_communication_skills.rst:227 -msgid "Training methods" -msgstr "" - -# 21e22405e54b458691f3c545873659fc -#: ../../source/training/tot/502_communication_skills.rst:228 -msgid "" -"Training is essentially a learning process that contains three elements, i." -"e. inputs (raw materials to be processed), process (activity to process " -"inputs) and outputs (results that have been processed). Input of the " -"training is the participants before starting the training, the training " -"process is the interaction between the components of teaching and learning " -"which are the objectives, materials, methods, participants, facilities and " -"assessment. The output of the training is the participants after finishing " -"the training." -msgstr "" - -# 6b53eada519b47c5a6ae0f0a3f60ec8a -#: ../../source/training/tot/502_communication_skills.rst:236 -msgid "" -"A process is considered good if the output quality is better than the input. " -"The learning process or training is a behavioral change, which occurs as the " -"result of experience. This means it can only be called as a learning process " -"if a person is showing different behavior. He needs to prove the new " -"knowledge of facts, or do something which he couldn’t previously. Thus, the " -"learning process puts someone from one capability or competence status to " -"the other." -msgstr "" - -# f1c5ca27fb01476da81f34d63e69dae8 -#: ../../source/training/tot/502_communication_skills.rst:243 -msgid "" -"Communication model training is one component in the training process " -"because it is actually a method implementation in training. To maximize " -"output in the training, a trainer has to select a training method in " -"accordance with the other components, such as the objectives, materials, " -"trainees, facilities and assessment. So to be able to achieve the objectives " -"set in the training, methods of training and communication should receive " -"special attention in any training process." -msgstr "" - -# 9535d5cedfd8493590c1f1e35b16a233 -#: ../../source/training/tot/502_communication_skills.rst:251 -msgid "" -"A good trainer should understand the characteristics of participants in " -"order for him to succeed in carrying out his teaching role. A trainer is " -"expected to plan the learning process according to the circumstances and the " -"personality of the trainees. A method is a way to achieve the objectives " -"well. The methods can be classified into 5, i.e. direct learning, indirect " -"learning, interactive learning, experiential learning, and independent " -"learning." -msgstr "" - -# 761eb1358f39473c846e08bc9658a5fa -#: ../../source/training/tot/502_communication_skills.rst:258 -msgid "" -"**Direct learning**: Direct learning is the kind of learning that is " -"directed by the trainer. This strategy is effective to determine the " -"information or skills to build incrementally. Direct learning is usually " -"deductive. Examples of the direct learning methods are: lecture, discussion, " -"demonstration and drill exercises." -msgstr "" - -# ac6cd7da2c1c4a0f987e8ba92666d6a8 -#: ../../source/training/tot/502_communication_skills.rst:263 -msgid "" -"**Indirect learning**: Generally centered on the trainees. The role of the " -"trainer shifted from a lecturer to a facilitator. The trainer manages the " -"learning environment and gives the trainees the opportunity to get involved. " -"Examples of indirect methods of learning are inquiry, case studies, problem " -"solving, concept mapping." -msgstr "" - -# a2635cdc87ef48b9897b9419e9056786 -#: ../../source/training/tot/502_communication_skills.rst:268 -msgid "" -"**Interactive learning**: Interactive learning emphasizes on discussion and " -"sharing among participants. Discussion and sharing give trainees the " -"opportunity to react to ideas, the trainer’s or his partner’s experience and " -"approach and to build an alternative way to think and feel. Examples of this " -"method are class discussions, small group discussions or projects, work in " -"pairs." -msgstr "" - -# 2566d5e6e7624fafb98b36555ea93d09 -#: ../../source/training/tot/502_communication_skills.rst:274 -msgid "" -"**Experiential learning**: Empirical learning is oriented on inductive " -"activities, centered on the trainees, and is activity based. Personal " -"reflection on the experience and planning formulation towards implementation " -"in other contexts is a critical factor in an effective empirical learning. " -"Examples of empirical learning method are role playing, observation / " -"survey, and simulation." -msgstr "" - -# f51bb180f04a4850930f804a628a36a9 -#: ../../source/training/tot/502_communication_skills.rst:280 -msgid "" -"**Independent learning**: Independent learning is a teaching strategy that " -"aims to develop individual initiative, self-reliance, and self improvement. " -"The focus is on the trainees’ planning with the help from the trainer. Self-" -"learning can also be done with a friend or in a small group. Examples of " -"Independent learning methods are research projects and computer-based " -"learning." -msgstr "" - -# 967cd958d87a469887f38bd63295f0c5 -#: ../../source/training/tot/502_communication_skills.rst:287 -msgid "**a. Methods in direct learning**" -msgstr "" - -# a0a9b51344dd4aeda21793218f464eb6 -#: ../../source/training/tot/502_communication_skills.rst:289 -msgid "" -"Direct learning is usually identified with the lecture method, where " -"learning is presumably making the participants less active. However, direct " -"learning can still be used together with question and answer, " -"demonstrations, and exercises. Furthermore, a few ways can be used to make " -"more this method more effective, for example:" -msgstr "" - -# fc35e5fc77154938aa6686a4e2748830 -#: ../../source/training/tot/502_communication_skills.rst:295 -msgid "" -"Participants review the training materials that have been studied and the " -"new materials recently presented:" -msgstr "" - -# 139ebc26fa3a4ba5a04477382f2dd213 -#: ../../source/training/tot/502_communication_skills.rst:298 -msgid "materials well managed part by part" -msgstr "" - -# 4d607d6935a24f7da97a5d33275e39ac -#: ../../source/training/tot/502_communication_skills.rst:299 -msgid "use visual media (important to read)" -msgstr "" - -# 6a122fdf0c4f43aa98f5beedad14466c -#: ../../source/training/tot/502_communication_skills.rst:301 -msgid "Participants exercise with the trainer’s guidance." -msgstr "" - -# 629f70222f044de28d35de3988363bd2 -#: ../../source/training/tot/502_communication_skills.rst:302 -msgid "Participants exercise independently" -msgstr "" - -# bc616af00303481bad84fcc639be5faa -#: ../../source/training/tot/502_communication_skills.rst:303 -msgid "" -"Participants’ improvement of skills/ knowledge are monitored periodically" -msgstr "" - -# 6d5d6ae29c00444f9bf7ce8da1cc8df5 -#: ../../source/training/tot/502_communication_skills.rst:305 -msgid "" -"**Various methods can be developed when students receive an explanation from " -"the teacher, among others:**" -msgstr "" - -# b504b13c94e44ed3848dd2c5a294bc98 -#: ../../source/training/tot/502_communication_skills.rst:308 -msgid "" -"**Example and analogy**: A trainer provides examples and illustrations " -"associated with the materials. He can also make comparisons between " -"participants' experiences with the training materials." -msgstr "" - -# 242bbb387b9a42c79403b33a7ff09d3f -#: ../../source/training/tot/502_communication_skills.rst:311 -msgid "" -"**Games**: A trainer uses games in learning. The games are expected to be in " -"accordance with the training topic. Examples of them would be guessing " -"pictures, mystery in a box, or various types of quizzes from TV can be " -"implemented in a training class with some modifications (e.g. who wants to " -"millionaires, GameZone, word games, etc.)." -msgstr "" - -# 057d240c12af4e8a8020f6b63c731db0 -#: ../../source/training/tot/502_communication_skills.rst:316 -msgid "" -"**Response card**: Trainer asks participants to answer questions on a card " -"or piece of paper anonymously. Question cards or answer cards can be " -"developed. On the cards participants get different questions and they would " -"be asked to answer by raising hands; use open-ended, productive or " -"imaginative questions. On the answer cards the participants get answer " -"cards, he would rasie his hand when the card matches the trainer’s " -"questions; use open-ended, productive or imaginative questions." -msgstr "" - -# 272ee5f136464deba786333a0a6c17e6 -#: ../../source/training/tot/502_communication_skills.rst:323 -msgid "" -"**Polls**: A trainer can conduct a short survey to obtain data quickly. This " -"can be done with a verbal survey, for example by asking participants to " -"raise their hands or lift the answer cards" -msgstr "" - -# af35f43e74774b09bde8c10d9e9a2362 -#: ../../source/training/tot/502_communication_skills.rst:326 -msgid "**Problems**: Trainer asks problems related with training topic." -msgstr "" - -# ff4ecb7733a34e94b2b85a4707c23076 -#: ../../source/training/tot/502_communication_skills.rst:327 -msgid "" -"**Demonstrations**: Trainer or participants can demonstrate something " -"according to the topic by using gestures or properties." -msgstr "" - -# 20c261d1be7d4df59a5de4197d3fb1c2 -#: ../../source/training/tot/502_communication_skills.rst:329 -msgid "" -"**Review newspaper or news**: Participants are asked to review newspaper or " -"news from other readings." -msgstr "" - -# e1ca0953e80f48f880eb467356573158 -#: ../../source/training/tot/502_communication_skills.rst:331 -msgid "" -"**Brainstorm**: Participants are asked to argue about something related with " -"the training topics. Opinions will be accommodated for with conclusions " -"drawn on the subject matter discussed." -msgstr "" - -# 4d812cd1422d4a45849a2be1c9dd695f -#: ../../source/training/tot/502_communication_skills.rst:335 -msgid "" -"**The method can be developed after the participants received proper " -"explanation from the trainer, among others:**" -msgstr "" - -# b29ead379eae426ba64fa7e99a95fb38 -#: ../../source/training/tot/502_communication_skills.rst:338 -msgid "" -"**Sharing notes**: after a series of events trainee compare their notes with " -"other colleagues’" -msgstr "" - -# cc44393ab05d4620b372ef14c06a5329 -#: ../../source/training/tot/502_communication_skills.rst:340 -msgid "" -"**Q&A**: participants are given the opportunity to ask questions related to " -"the concept and its application. If there are no questions from the " -"participants, the trainer can ask them first." -msgstr "" - -# 070041a4410141aa94afd3387b1da999 -#: ../../source/training/tot/502_communication_skills.rst:343 -msgid "" -"**Headline**: trainer summarizes lessons with key words to be easily " -"remembered." -msgstr "" - -# 268b2a375f01491f98ff5b1cadc11657 -#: ../../source/training/tot/502_communication_skills.rst:346 -msgid "" -"**Methods to determine participants’ mastery of the concepts that have been " -"studied**" -msgstr "" - -# b1f23ca344dc47f6b5bc241fd3cd2dba -#: ../../source/training/tot/502_communication_skills.rst:349 -msgid "" -"**One minute paper**: This activity can be done at the end of training. Ask " -"the participants to take out a piece of paper. Ask an open-ended or closed " -"question related with the concepts that have been studied. Give one or two " -"minutes for participants to answer." -msgstr "" - -# 865a439441044539b209c37fb79090c9 -#: ../../source/training/tot/502_communication_skills.rst:353 -msgid "" -"**Reflection**: ask one or two participants to come forward and express " -"their impressions towards the learning. Reflection can also provoke feelings " -"and difficulty in following the study." -msgstr "" - -# 7adc0425c0dd4cdebc2b9c91d21ca59a -#: ../../source/training/tot/502_communication_skills.rst:356 -msgid "" -"**Quiz**: participants raise several issues or questions related with the " -"concept and ask other participants to answer. Quiz can be done by including " -"the name of the participants or anonymously. Quiz can also be used with " -"competition, puzzles, or the like. Quiz can be done verbally; using open-" -"ended, productive, or imaginative questions." -msgstr "" - -# 503555d34d4843c78825937a63e0601f -#: ../../source/training/tot/502_communication_skills.rst:361 -msgid "" -"**Tournament**: participants compete in groups to solve problems related to " -"the concepts that have been studied. The winning group will get a certain " -"reward." -msgstr "" - -# 0695bc5608f644088937203dfa2a3f13 -#: ../../source/training/tot/502_communication_skills.rst:364 -msgid "" -"**Review**: Ask participants to review the lessons with others or give them " -"a review test scores." -msgstr "" - -# 6bc2cf2a861c4bc59b78909fae25c628 -#: ../../source/training/tot/502_communication_skills.rst:367 -msgid "**b. Indirect learning method**" -msgstr "" - -# 408cb554750544ad9cf28950d0d84849 -#: ../../source/training/tot/502_communication_skills.rst:369 -msgid "" -"**Inquiry**: participants conduct observation. Based on the result, they may " -"ask questions. Furthermore, participants formulate allegations, and collect " -"data. Based on the data, participants are asked to conclude." -msgstr "" - -# 85e327be90aa4a118efa17e39aff346c -#: ../../source/training/tot/502_communication_skills.rst:372 -msgid "" -"**Problem solving**: Each participant is asked to formulate a problem " -"clearly and concisely, identifying factors that cause the problem, collect " -"required information (facts and knowledge), determine various solutions and " -"choose the most appropriate one, test the chosen solution, and review the " -"result." -msgstr "" - -# 6d0ee9e9ab4b41f092a2ccdb67eb8879 -#: ../../source/training/tot/502_communication_skills.rst:376 -msgid "" -"**Trading**: Each participant writes down one thing (e.g. experience, " -"creative ideas, questions, opinion, etc.) on a piece of paper, then stick it " -"up on his shirt. Walk around to sell and buy (read) the results of others. " -"Set a rule that every work has to be sold and bought. Classically, present " -"the result in turn. Trainer will provide reinforcement." -msgstr "" - -# 2accd3f3fb8c4d01ba444a5dbde91838 -#: ../../source/training/tot/502_communication_skills.rst:381 -msgid "" -"**Case study analysis**: participants are given a case to be solved either " -"individually or in groups based on data, facts or concepts they have learned " -"in class." -msgstr "" - -# 0c1aa17a5bc6440589a6efe78cef104b -#: ../../source/training/tot/502_communication_skills.rst:384 -msgid "" -"**Evaluating a friend’s work**: it can be done after developing a product. " -"Participants generally use a rubric to evaluate the results of his friend’s " -"work" -msgstr "" - -# 09cfc73adcb44f839bc4459de72f276d -#: ../../source/training/tot/502_communication_skills.rst:388 -msgid "**c. Interactive learning method**" -msgstr "" - -# 3c30d16029944c8fb1c429c63922ba30 -#: ../../source/training/tot/502_communication_skills.rst:390 -msgid "" -"**Group discussion**: Trainer asks participants to form groups of three or " -"more to share information." -msgstr "" - -# 3f08c0d71f7347ac94ea038b28918d02 -#: ../../source/training/tot/502_communication_skills.rst:392 -msgid "" -"**Think, pair and share**: propose a problem to the participants. Give " -"participants 2-5 minutes chance to think. When finished, ask them to discuss " -"the same issue with the person next to them for 3-5 minutes (pair). Finally, " -"select a pair to express their opinions in front of the class (share)." -msgstr "" - -# aebe38f29ac94cdc9f706a980d998285 -#: ../../source/training/tot/502_communication_skills.rst:396 -msgid "" -"**Group investigation**: Participants form groups. Trainer calls the leader " -"of the groups and gives different materials/ task. Each group will discuss " -"the task cooperatively and will perform investigations. Upon completion, a " -"representative will present the results of the discussion. Trainer will " -"provide reinforcement." -msgstr "" - -# 0a926588d2124451abb609c969f6ef45 -#: ../../source/training/tot/502_communication_skills.rst:401 -msgid "" -"**TGT (Team Game Tournament) method**: Trainer presents new material. " -"Participants form study groups heterogeneously. Each group will participate " -"in academic tournament. Each will represent the group in the tournament. " -"Give reward to the winning team." -msgstr "" - -# 6459de10048d463b948fe6f5ef01a31b -#: ../../source/training/tot/502_communication_skills.rst:405 -msgid "" -"**Jigsaw**: Trainer prepares a number of tasks matching the number of " -"groups. Participants will form groups with the number of members equal to " -"the number of groups (participants have to memorize the group members). Each " -"group member will be given different part of the materials. Participants " -"from different groups will form new groups and discuss their parts. Upon " -"completion of discussions with a group of experts, each group member will go " -"back to the original group and, in turn, teach/ report the discussion result " -"to other group members. Participants randomly present all the tasks given by " -"the trainer. Reinforcement." -msgstr "" - -# 2933d0154d6d4ee7ba197acc4ad22bcb -#: ../../source/training/tot/502_communication_skills.rst:414 -msgid "" -"**Debate**: The trainer divides the participants into two debate groups of " -"pros and cons. Each group will read the materials that will be debated. " -"Appoint one member of the pros group to speak and rebutted by a member of " -"the cons, and so on. Trainer writes down ideas from the debate on a board " -"the number of ideas the trainer expected has been met. The trainer adds more " -"unrevealed ideas. From the ideas on the board, the trainer asks participants " -"to draw conclusion/ summary by referring to the competency desired." -msgstr "" - -# ee7a806e0fda4089af0c71d67701df2d -#: ../../source/training/tot/502_communication_skills.rst:421 -msgid "" -"**STAD (Student Team Achievement Division)**: Learning from trainer. " -"Participants form groups. Each group discusses issues given (each " -"participant should understand the group’s answer). One person from each " -"group will work on the questions (quiz). Scores of each member will " -"determine the score of the group. Reinforcement." -msgstr "" - -# 29a1e8b2c4f04a0087729cfef221af4e -#: ../../source/training/tot/502_communication_skills.rst:426 -msgid "" -"**Collaborative learning group**: participants form heterogeneous groups of " -"3-6 people. Ask one of the participants to become the leader and another to " -"take note. Give participants the opportunity to learn collaboratively. The " -"result will be submitted in the form of a written report." -msgstr "" - -# 7d2aa27422c34be5ba2dd4bd912f21d8 -#: ../../source/training/tot/502_communication_skills.rst:430 -msgid "" -"**Learn in pairs**: Trainer asks participants to perform tasks or " -"discussions with friends nearby in pairs. Pairs are suitable for learning " -"complicated tasks." -msgstr "" - -# e46da3a0057b47cda205d6aeab7214d9 -#: ../../source/training/tot/502_communication_skills.rst:434 -msgid "**d. Experiential learning method**" -msgstr "" - -# 419fb2e75ee54dd29e52fd2daf98bb44 -#: ../../source/training/tot/502_communication_skills.rst:436 -msgid "" -"**Role play**: each group is asked to design a role play based on the " -"concept being studied. Groups will respond to other groups’ role play result." -msgstr "" - -# 105a06ff47e74a61933d989158067f34 -#: ../../source/training/tot/502_communication_skills.rst:438 -msgid "" -"**Simulation/ exercise**: after participants learnt about certain motoric " -"skills, they will randomly be asked to exercise the skills they have learnt " -"in class." -msgstr "" - -# 647a4a3580cf448ca372e439661329ff -#: ../../source/training/tot/502_communication_skills.rst:442 -msgid "**e. Independent learning**" -msgstr "" - -# 99e6ff1852974639a9245aed41ed802f -#: ../../source/training/tot/502_communication_skills.rst:444 -msgid "" -"**Project:** Project method is a way of presenting the lessons, starting " -"from a problem where the solution requires a review of various point of " -"views. The rationale for the use of this method is that the problem can only " -"be solved by different school of thoughts or knowledge. Only problems that " -"need unit problem solving can be solved with project method." -msgstr "" - -# f500592ddf1c4c97a25f6894182ae107 -#: ../../source/training/tot/502_communication_skills.rst:451 -msgid "3. Components of basic skills in teaching / training" -msgstr "" - -# fc588a1552694ac0b8d557142afa003f -#: ../../source/training/tot/502_communication_skills.rst:452 -msgid "" -"In interaction or face-to-face meeting with the trainees, trainer requires " -"some basic teaching skills. It is absolutely necessary to help the trainer " -"in playing the role in educational interaction. The trainer’s teaching basic " -"skills are not different than the teachers who teach in the classroom. Those " -"basic skills are:" -msgstr "" - -# 222f486818d947d4b4a469b8d21ec595 -#: ../../source/training/tot/502_communication_skills.rst:457 -msgid "Skill to open and close the session" -msgstr "" - -# 04c40e6ddb9d49208a8d2df1495bf021 -#: ../../source/training/tot/502_communication_skills.rst:458 -msgid "Explanation skill" -msgstr "" - -# c0c6406ca335461ab5256e47cda9cdf3 -#: ../../source/training/tot/502_communication_skills.rst:459 -msgid "Inquiry basic skill" -msgstr "" - -# 0c340956e541435aab2ed94291c40514 -#: ../../source/training/tot/502_communication_skills.rst:460 -msgid "Skill to make variations" -msgstr "" - -# 888ca109646f4c04a4e92fa00b543680 -#: ../../source/training/tot/502_communication_skills.rst:461 -msgid "Skills to provide reinforcement" -msgstr "" - -# 06ff088639294f62ae6c4f16ea0e8141 -#: ../../source/training/tot/502_communication_skills.rst:462 -msgid "Skills to manage the class" -msgstr "" - -# 4cdb30bc85144c0ba17e27b4a1dae9ec -#: ../../source/training/tot/502_communication_skills.rst:463 -msgid "Skills to guide a small group discussion" -msgstr "" - -# 20f4c3a2f7264955997a21bb555b40f1 -#: ../../source/training/tot/502_communication_skills.rst:464 -msgid "Individual teaching skill" -msgstr "" - -# 8d9485c1d7a04f98923aa6c35a465942 -#: ../../source/training/tot/502_communication_skills.rst:465 -msgid "Skill of small groups" -msgstr "" - -# d186543442624a3293ff0086fdc83e79 -#: ../../source/training/tot/502_communication_skills.rst:467 -msgid "**a. Skill to open and close the session**" -msgstr "" - -# 61b0038bcb184d1fabbc214a9b3ec79d -# b2ebbfce74be4ca5a3c49ff5435ded95 -# 11a0ae98f0f146dda95d7e645679d7d7 -# 3a4d626347ce4371b7e59eecb34f4bbc -#: ../../source/training/tot/502_communication_skills.rst:469 -#: ../../source/training/tot/502_communication_skills.rst:646 -#: ../../source/training/tot/502_communication_skills.rst:716 -#: ../../source/training/tot/502_communication_skills.rst:812 -msgid "**Definition and Purpose**" -msgstr "" - -# 1e069e444d90468e99442fbbfca83ecf -#: ../../source/training/tot/502_communication_skills.rst:471 -msgid "" -"Opening a session is associated with the trainer creating conducive mental " -"atmosphere and attracting participants’ attention to focus on what will be " -"studied. While closing the session is when the trainer ending the core of " -"the activities, which is giving an overall picture of what has been studied, " -"knowing the participants, and the trainer’s rate of success in the training " -"process. Opening and closing of the session have are meant to:" -msgstr "" - -# cc3c2ffb808f4d61b03c9fad1bdde3c7 -#: ../../source/training/tot/502_communication_skills.rst:478 -msgid "attract interests and motivate participants on the task at hand" -msgstr "" - -# 8e3723fff72647b29c6d620e9d9845e5 -#: ../../source/training/tot/502_communication_skills.rst:479 -msgid "enable participants to know the limits of the task at hand" -msgstr "" - -# f1dffaf9efe6488c8aa825da01bd07c4 -#: ../../source/training/tot/502_communication_skills.rst:480 -msgid "enable participants to find out the approach that is going to be used" -msgstr "" - -# 5f2b568e92ca42199dc32a04e3d7dae2 -#: ../../source/training/tot/502_communication_skills.rst:481 -msgid "" -"enable participants to determine the relationship between mastered " -"experiences with new things to be learned" -msgstr "" - -# 22ca398791104b5ea43c9d0bcb18a2cb -#: ../../source/training/tot/502_communication_skills.rst:483 -msgid "" -"give the participants the possibility to combine facts, skills, and concepts " -"covered in an event" -msgstr "" - -# 3d5df3688dfa437db34d214a5b6892ad -#: ../../source/training/tot/502_communication_skills.rst:485 -msgid "enable participants to determine the level of success" -msgstr "" - -# 325eafaa59f749859c8c6842485370c2 -#: ../../source/training/tot/502_communication_skills.rst:487 -msgid "**Components of Opening the Session Skill**" -msgstr "" - -# 11d0dd6b41194b60bdf9aa0e48c02f42 -#: ../../source/training/tot/502_communication_skills.rst:489 -msgid "Opening a session can be done by:" -msgstr "" - -# ce20536caaac4043baea98310a556864 -#: ../../source/training/tot/502_communication_skills.rst:491 -msgid "Attracting participants’ interest" -msgstr "" - -# 4a2bfcbb8f9844e1890368bfecdf6fab -#: ../../source/training/tot/502_communication_skills.rst:493 -msgid "" -"A few ways can be done by the trainer to attract the participants’ interest, " -"among others:" -msgstr "" - -# d610ad1610234e1ba8d1ffbabc6ab205 -#: ../../source/training/tot/502_communication_skills.rst:496 -msgid "Variation of training style and patterns of interaction" -msgstr "" - -# eeb125cbda344dae91e9cbc94989cf82 -#: ../../source/training/tot/502_communication_skills.rst:497 -msgid "The use of training aids" -msgstr "" - -# 1c551ea9cca6414caae064977ba3bdc6 -#: ../../source/training/tot/502_communication_skills.rst:499 -msgid "Motivating" -msgstr "" - -# cb4301693a2d4234bcaf16d84511e52a -#: ../../source/training/tot/502_communication_skills.rst:501 -msgid "Creating motivation can be done by:" -msgstr "" - -# a64883cff5604d1c839aaee60d2c0ca8 -#: ../../source/training/tot/502_communication_skills.rst:503 -msgid "Showing warmth and enthusiasm" -msgstr "" - -# e14efb27125a481e9d5497302a319760 -#: ../../source/training/tot/502_communication_skills.rst:504 -msgid "Creating curiosity" -msgstr "" - -# 8277395f8c9e4b5a84177d0be43152ce -#: ../../source/training/tot/502_communication_skills.rst:505 -msgid "Expressing opposite ideas" -msgstr "" - -# 54c6fa653c0347ca8f9cf0504b4d6fcf -#: ../../source/training/tot/502_communication_skills.rst:506 -msgid "Paying attention to the participants’ interests" -msgstr "" - -# 6b36a4e964bb4776b0fd3f95f0070a6b -#: ../../source/training/tot/502_communication_skills.rst:508 -msgid "Giving references" -msgstr "" - -# c37c3e93a8864a9c866dfe6b142be4ee -#: ../../source/training/tot/502_communication_skills.rst:510 -msgid "" -"Giving references is an effort to give clear picture of the things that will " -"be studied by means of inserting a short series of specific and relevant " -"alternatives, by:" -msgstr "" - -# 7088fd611f9841bbb411863b9c04dc65 -#: ../../source/training/tot/502_communication_skills.rst:514 -msgid "Expressing the objectives and limitation of task" -msgstr "" - -# a1a5c80aa80e4b6b98a79f8f87e7c229 -#: ../../source/training/tot/502_communication_skills.rst:515 -msgid "" -"Advising steps to be taken, reminding the subject matter to be discussed" -msgstr "" - -# 2bdfe0013f0f4f7aa0dbf12835ca5554 -#: ../../source/training/tot/502_communication_skills.rst:516 -msgid "Asking questions" -msgstr "" - -# 7224583f04194480a0d11f9b33aa422a -#: ../../source/training/tot/502_communication_skills.rst:518 -msgid "Making connections" -msgstr "" - -# 2b482a619d904d06acee50551b700d0a -#: ../../source/training/tot/502_communication_skills.rst:520 -msgid "Some of the trainer’s efforts in making connections:" -msgstr "" - -# 7f62b6f4d4794fb5b7166a35abf917fa -#: ../../source/training/tot/502_communication_skills.rst:522 -msgid "" -"Making links between relevant aspects of training with the materials known " -"to participants" -msgstr "" - -# cbf9ba29e9864259aca72b5c05a34028 -#: ../../source/training/tot/502_communication_skills.rst:524 -msgid "Comparing or contrasting the new knowledge and the ones known to them" -msgstr "" - -# c7ad48aaee5e49f1806a480dd12c6677 -#: ../../source/training/tot/502_communication_skills.rst:525 -msgid "Explaining the concept first and then the detailed description" -msgstr "" - -# 901bf9a5513949f389926ef45bc0952c -#: ../../source/training/tot/502_communication_skills.rst:527 -msgid "**Basic Skills Components of Closing the Session**" -msgstr "" - -# ca29fd313a6142fabe95eea2fbbf7861 -#: ../../source/training/tot/502_communication_skills.rst:529 -msgid "" -"Closing the session is intended to obtain a complete picture at the end of " -"the activity, and to determine the participants’ level of achievement or the " -"participants' success rate. There are a few ways to that can be done in " -"closing the session, among others:" -msgstr "" - -# cae8c8796a144bea8bb5c6094915ac2f -#: ../../source/training/tot/502_communication_skills.rst:534 -msgid "Review the core content of the session and making a summary" -msgstr "" - -# cfb64646daa2400392013e6dfbfb0301 -#: ../../source/training/tot/502_communication_skills.rst:535 -msgid "Evaluate the various forms of evaluation, for example:" -msgstr "" - -# 60634440fcff430ebe3307529979d5fd -#: ../../source/training/tot/502_communication_skills.rst:537 -msgid "Demonstrate skills" -msgstr "" - -# b2f83f7f1e7248d5ae5ffa58ed01abd9 -#: ../../source/training/tot/502_communication_skills.rst:538 -msgid "Ask participants to apply new ideas in other situations" -msgstr "" - -# 630f734adf874eb881b3f54ad3df04f6 -#: ../../source/training/tot/502_communication_skills.rst:539 -msgid "Explore the participants’ opinions" -msgstr "" - -# a5b5d79d30474253b118ae1dc7db3770 -#: ../../source/training/tot/502_communication_skills.rst:540 -msgid "Provide written questions" -msgstr "" - -# 705989e190af4c33bd8cb7c385535d8b -#: ../../source/training/tot/502_communication_skills.rst:542 -msgid "**Use Principles**" -msgstr "" - -# 371d692b73b045359868ae8f4574a86b -#: ../../source/training/tot/502_communication_skills.rst:544 -msgid "" -"A few principles that need to be considered by a trainer when opening and " -"closing the session are:" -msgstr "" - -# 23d757d19f2b4649967bde99516269b6 -#: ../../source/training/tot/502_communication_skills.rst:547 -msgid "Significance" -msgstr "" - -# 243197bb662045d4bdfc0be4b8f2f7ee -#: ../../source/training/tot/502_communication_skills.rst:548 -msgid "" -"To draw participants’ attention or motivation, a trainer has to select a way " -"relevant with the content and the objective of the teaching" -msgstr "" - -# 5012b619d30d4c61884276ef5a2bf6ce -#: ../../source/training/tot/502_communication_skills.rst:550 -msgid "Sequential and continuous" -msgstr "" - -# 3c5a92f892e84c76833b454e84659e34 -#: ../../source/training/tot/502_communication_skills.rst:551 -msgid "" -"Activities taken by trainer in introducing and summarizing the main points " -"of the lessons should be an integral part, the link between one part and " -"another or with the participants’ experience should be clear" -msgstr "" - -# 856d2a91c7074ab0bf7778d588dabb8f -#: ../../source/training/tot/502_communication_skills.rst:555 -msgid "**b. Explanation skill**" -msgstr "" - -# 903ae285a37f43a08daa1160572852e5 -# 3866edf1b0ba4fc898a957593997f4ea -#: ../../source/training/tot/502_communication_skills.rst:557 -#: ../../source/training/tot/502_communication_skills.rst:880 -msgid "**Definition**" -msgstr "" - -# bc440aca8762495797e2293832396c59 -#: ../../source/training/tot/502_communication_skills.rst:559 -msgid "" -"Explaining/ describing something is presenting verbal information that is " -"organized systematically to show an association with one another. The " -"emphasis of explaining is the participants’ reasoning process and not " -"indoctrination. Examples: providing an overview of a situation, revealing " -"causes of an event, etc. The success of explaining is marked by the " -"participants’ understanding of something. The structure of teaching " -"materials in explaining is usually planned in a way that can be controlled. " -"Logical description, the skill to reveal the materials and the strategy to " -"organize the materials are the main procedure to explain." -msgstr "" - -# c8cc95fe041241c9a634ea9ad3c7e638 -#: ../../source/training/tot/502_communication_skills.rst:569 -msgid "" -"Explaining is linked with the effort to create linkages between the known " -"and the unknown. A full explanation is always accompanied by evidence and " -"the cause and effect is based on the logical relationships between " -"generalization, provisions, and realities according to the participants’ " -"perception system." -msgstr "" - -# fd1934c6eb74475db63d19d4ad61f288 -#: ../../source/training/tot/502_communication_skills.rst:574 -msgid "The objective of explanation skills are to:" -msgstr "" - -# fcf2014b4688444391d4618be5ccfbbe -#: ../../source/training/tot/502_communication_skills.rst:576 -msgid "Provide understanding to others" -msgstr "" - -# fa4b4aa5b1d345b78f3c7954f509762c -#: ../../source/training/tot/502_communication_skills.rst:577 -msgid "Make participants think logically and systematically" -msgstr "" - -# ec0ce23c52384366b98aa9eea1c0ba11 -#: ../../source/training/tot/502_communication_skills.rst:578 -msgid "Train participants to think based on the causes and reasons" -msgstr "" - -# f75b99ab43384b0591fbe6ad8f009839 -#: ../../source/training/tot/502_communication_skills.rst:579 -msgid "Train participants in making decisions independently" -msgstr "" - -# 4dde98eec1eb4a46b7a27ece8d9029dc -#: ../../source/training/tot/502_communication_skills.rst:580 -msgid "Instill the right way of thinking attitude" -msgstr "" - -# 24f7c8c919754e92818153d2842e579c -#: ../../source/training/tot/502_communication_skills.rst:581 -msgid "" -"Guide participants to a clear understanding in solving the question: What, " -"Why and How" -msgstr "" - -# 377891dba76148c6972e34fec4866d20 -#: ../../source/training/tot/502_communication_skills.rst:583 -msgid "Engage participants in thinking to solve problems" -msgstr "" - -# 16fd82e4dc3249ef9b58c0e6d7cdb828 -#: ../../source/training/tot/502_communication_skills.rst:584 -msgid "Obtain feedback from participants based on levels of understanding" -msgstr "" - -# eb0e3008fc874a07a4c24560108dbaf3 -#: ../../source/training/tot/502_communication_skills.rst:585 -msgid "" -"Assist participants to use the process of transmission and evidences in " -"solving problems" -msgstr "" - -# 641252939e0649c69e75eef40974ab47 -#: ../../source/training/tot/502_communication_skills.rst:588 -msgid "**Components of Explanation Skills**" -msgstr "" - -# 453c792b918b4655b06ba65bdb71ef13 -#: ../../source/training/tot/502_communication_skills.rst:590 -msgid "In the planning process, the components of explanation skills include:" -msgstr "" - -# 35db9947554e49548254889b139e67bb -#: ../../source/training/tot/502_communication_skills.rst:592 -msgid "Planning explanation" -msgstr "" - -# 580d9e1f941f42ed8ecf3be3149faa3e -#: ../../source/training/tot/502_communication_skills.rst:594 -msgid "" -"In planning explanation, we need to pay attention to the contents of the " -"message that will be conveyed and the readiness of the recipient. Things " -"related to the content of the message (the material) including:" -msgstr "" - -# b4f8c7fa87e244e982c51d3b6acab0e4 -#: ../../source/training/tot/502_communication_skills.rst:598 -msgid "Analyzing problems holistically" -msgstr "" - -# ff86308c3e834983acc053e3bba522b6 -#: ../../source/training/tot/502_communication_skills.rst:599 -msgid "" -"Determining the type of existing relationship between the linked elements" -msgstr "" - -# 39f978020ae44d3a8ca662408dc13f55 -#: ../../source/training/tot/502_communication_skills.rst:600 -msgid "" -"Using the law, formulation, or generalization that is suitable with the " -"determined relationship" -msgstr "" - -# 470f6fd4df01402f8fb662f2d44f8f86 -#: ../../source/training/tot/502_communication_skills.rst:603 -msgid "" -"What we need to pay attention when associated with the message recipient " -"(participant) is to whom the explanation will be presented to, such as age, " -"gender, ability, social background, and participants’ learning environment. " -"Thus what needs to be considered in connection with the recipient of this " -"message is:" -msgstr "" - -# 158d8d1a0d02460189a5e07310e0728a -#: ../../source/training/tot/502_communication_skills.rst:609 -msgid "The explanation must be relevant to the participants’ problems" -msgstr "" - -# 06793bc9fac0407cb8776a6dad84b063 -#: ../../source/training/tot/502_communication_skills.rst:610 -msgid "The explanation has to be easily accepted by the participants" -msgstr "" - -# 309e79f44d7b47deb7f4ac96a64c4f32 -#: ../../source/training/tot/502_communication_skills.rst:611 -msgid "" -"The explanation has to match the participants’ wealth of knowledge at the " -"time" -msgstr "" - -# f1e59a9496b840b9805d22530a795549 -#: ../../source/training/tot/502_communication_skills.rst:614 -msgid "Presenting explanation" -msgstr "" - -# 8cc978c8b4154b9a9fe8bd58d62707a5 -#: ../../source/training/tot/502_communication_skills.rst:616 -msgid "A few things to notice in presenting an explanation are:" -msgstr "" - -# f8acf90478394f328adc165efb103a69 -#: ../../source/training/tot/502_communication_skills.rst:618 -msgid "Clarity, can be achieved by:" -msgstr "" - -# bc32e71aa99c486d98447d4229c28b73 -#: ../../source/training/tot/502_communication_skills.rst:620 -msgid "The articulation has to be clear, the words, the idioms and the voice" -msgstr "" - -# 6e627137ea2d4f0e8ba4b90aacf86eb6 -#: ../../source/training/tot/502_communication_skills.rst:621 -msgid "" -"Conversation has to go smooth by avoiding unnecessary words, e.g. ee, aa, " -"etc." -msgstr "" - -# 6878010e4360453c855fccd13544ad5e -#: ../../source/training/tot/502_communication_skills.rst:623 -msgid "" -"Sentences have to be arranged with good grammar by avoiding incomplete " -"sentences" -msgstr "" - -# 5c4b5f03c3e84b589990c10cde2714bb -#: ../../source/training/tot/502_communication_skills.rst:625 -msgid "Technical or new terms should be defined clearly" -msgstr "" - -# 5a0e0496bc5e41838cadbb9b4bcb7f87 -#: ../../source/training/tot/502_communication_skills.rst:626 -msgid "" -"Using pause time (silent) to see whether the explanation has been understood " -"by the participants" -msgstr "" - -# ab54b46f07514970a2b1b2280c4f95d5 -#: ../../source/training/tot/502_communication_skills.rst:629 -msgid "Usage of examples and illustrations, including" -msgstr "" - -# 98cf00e3bd3844c99439750de99d49ae -#: ../../source/training/tot/502_communication_skills.rst:631 -msgid "Inductive: Example/ illustration concept/ generalization" -msgstr "" - -# 92f5a495020e423484c775c2c26feb75 -#: ../../source/training/tot/502_communication_skills.rst:632 -msgid "Deductive: Concept/ generalization examples/ illustrations" -msgstr "" - -# 35eedfa58b084a9181f21369ffbb8fa7 -#: ../../source/training/tot/502_communication_skills.rst:634 -msgid "" -"Provision of emphasis, including the use of voice variation, mimic, " -"gestures, summary, repetition, giving symbols, etc." -msgstr "" - -# 2087e17b3ddf469e917f18a1425a57f2 -#: ../../source/training/tot/502_communication_skills.rst:636 -msgid "It is important to show important parts that need attention from others" -msgstr "" - -# 0b73096e2d1543818c861108a79495e8 -#: ../../source/training/tot/502_communication_skills.rst:637 -msgid "" -"Organization, including creating relationship between examples, clear " -"generalization and summarizing during or at the end of the presentation" -msgstr "" - -# 2c6fece841dd4df4af992e657aefe96c -#: ../../source/training/tot/502_communication_skills.rst:639 -msgid "" -"Feedback, including a behavioral change from the participants and providing " -"the opportunity for participants to answer questions as well as expressing " -"opinions on whether the explanation given by the trainer is useful" -msgstr "" - -# 4694d9cd86834a62a2310534765bea8a -#: ../../source/training/tot/502_communication_skills.rst:644 -msgid "**c. Inquiry basic skill**" -msgstr "" - -# 8572294e5e3f4a3a84d592d735157cdc -#: ../../source/training/tot/502_communication_skills.rst:648 -msgid "" -"Asking a question can be interpreted as a greeting delivered with the " -"intention of requesting a response from others. In the teaching process, the " -"given response reflects the extent to which level of knowledge the " -"participants have. So asking questions in the session is important because " -"the trainer’s skill in asking effective questions will be the stimulus that " -"will stimulate thinking skills and will encourage participants." -msgstr "" - -# eb5a897317b0421fa47e8d0a439cac60 -#: ../../source/training/tot/502_communication_skills.rst:655 -msgid "The purpose of asking includes:" -msgstr "" - -# 2d465564bfd44be49c07312332b8a31c -#: ../../source/training/tot/502_communication_skills.rst:657 -msgid "Stimulate participants’ thinking skills" -msgstr "" - -# fee49c38a96d419c8735445040632ab8 -#: ../../source/training/tot/502_communication_skills.rst:658 -msgid "Assist participants in learning" -msgstr "" - -# 937b42660c7c4937a572ef3890065c36 -#: ../../source/training/tot/502_communication_skills.rst:659 -msgid "" -"Direct the participants independent interaction level on level of self-" -"learning interaction." -msgstr "" - -# 52e96fab4b704e969f2096e983cd9a3b -#: ../../source/training/tot/502_communication_skills.rst:661 -msgid "" -"Increase participants’ thinking component of low-level components to a " -"higher level" -msgstr "" - -# f50f63858c004173a8e7b280a7132dde -#: ../../source/training/tot/502_communication_skills.rst:663 -msgid "Assist participants in achieving the learning objectives" -msgstr "" - -# 190330f89af24a7ca144c2d25fe64158 -#: ../../source/training/tot/502_communication_skills.rst:665 -msgid "**Components of Inquiry Basic Skill**" -msgstr "" - -# 5a6d72b54cc441ed9f05cd3351b93bac -#: ../../source/training/tot/502_communication_skills.rst:667 -msgid "Basic skills" -msgstr "" - -# a603b9a2acd34d6abf8222a441485c41 -#: ../../source/training/tot/502_communication_skills.rst:669 -msgid "Components included in the inquiry basic skill are:" -msgstr "" - -# 546e0b07df684d679b97aa7066f9a8d2 -#: ../../source/training/tot/502_communication_skills.rst:671 -msgid "Disclosure of questions clearly and concisely" -msgstr "" - -# b6f7a699dfe7483d9e4e11be4abce57b -#: ../../source/training/tot/502_communication_skills.rst:672 -msgid "" -"Details in asking questions so that participants can answer correctly, the " -"trainer needs to provide information that will help make examples of the " -"question" -msgstr "" - -# cb7627c55c6845bf8bd6edb6bf1f8f17 -#: ../../source/training/tot/502_communication_skills.rst:675 -msgid "Convergence towards the accepted answer" -msgstr "" - -# 2bd21f5f61c245679aca58cd07e506b1 -#: ../../source/training/tot/502_communication_skills.rst:676 -msgid "" -"Convergence can be done by means of: providing a broad question (open-ended) " -"which will convert into a narrow question" -msgstr "" - -# f358eddaae394bb8b48b6ec50eec6fa5 -#: ../../source/training/tot/502_communication_skills.rst:678 -msgid "Transfer of turns to answer" -msgstr "" - -# e300405db51a43528d81222bbcbb844b -#: ../../source/training/tot/502_communication_skills.rst:679 -msgid "" -"Transfer of turns can be done by asking different participants to answer the " -"same question" -msgstr "" - -# 7721062a79bb4964903afb64c886e4f0 -#: ../../source/training/tot/502_communication_skills.rst:681 -msgid "The spread of questions" -msgstr "" - -# ba388b0f31f94126bab7f10ee9ddd932 -#: ../../source/training/tot/502_communication_skills.rst:683 -msgid "" -"For certain purposes the coach can throw the question to the whole class, to " -"a participant or spread from one participant to the others." -msgstr "" - -# aae46ce6e9934c449ce36065ac3ca822 -#: ../../source/training/tot/502_communication_skills.rst:686 -msgid "Provision of time to think" -msgstr "" - -# 878fddb367d3463d8b2f7d9926a24dca -#: ../../source/training/tot/502_communication_skills.rst:688 -msgid "" -"In asking question, a trainer has to stay silent a moment before appointing " -"a participant to answer the questions" -msgstr "" - -# ef65781bf77945c3bd7dc8d8ed52d55a -#: ../../source/training/tot/502_communication_skills.rst:691 -msgid "Provision of guidance" -msgstr "" - -# 41de9ff5fdc749c2975d07892abd4115 -#: ../../source/training/tot/502_communication_skills.rst:693 -msgid "" -"For participants having difficulty in answering the question, a strategy to " -"provide guidance needs to be given. The strategy includes the disclosure of " -"the question with other form or manner, asking other simpler questions, and " -"repeats the previous explanations." -msgstr "" - -# a51102126b724c14867833f1b396ac08 -#: ../../source/training/tot/502_communication_skills.rst:699 -msgid "Advance level skills, components added:" -msgstr "" - -# eaa7dca4b2534bf2ab233bb26234b5ca -#: ../../source/training/tot/502_communication_skills.rst:701 -msgid "The conversion of rate of cognitive guidance in answering the question" -msgstr "" - -# e092ec24f791450c8f1e0b965b0d1bd5 -#: ../../source/training/tot/502_communication_skills.rst:702 -msgid "" -"To develop the participants’ way of think we need cognitive level of " -"guidance questions (recall, comprehension, application, systematic analysis, " -"and evaluation)" -msgstr "" - -# e43a513188d8467b99649f903af19a7c -#: ../../source/training/tot/502_communication_skills.rst:705 -msgid "Setting the order of questions" -msgstr "" - -# 9f6dd4efa41b47cda91fca570b405832 -#: ../../source/training/tot/502_communication_skills.rst:706 -msgid "The questions asked have to have a logical sequence" -msgstr "" - -# 3dad2316c9a441a0a9cd613ced7ebd0d -#: ../../source/training/tot/502_communication_skills.rst:707 -msgid "The use of tracing questions" -msgstr "" - -# 5c00b6310d644aec9b85045af0b60509 -#: ../../source/training/tot/502_communication_skills.rst:708 -msgid "" -"To find out to which extent the participants’ skill in regards to the " -"answer, the tracing skill that needs to be mastered by the trainer. Tracing " -"can be done by asking participants to give explanation on the answer, giving " -"a reason, providing relevant examples, etc." -msgstr "" - -# f73a6e55db234a2990cc66f09734015a -#: ../../source/training/tot/502_communication_skills.rst:712 -msgid "The skill to encourage interaction between participants" -msgstr "" - -# 1225906e82c04dd58f0de9ab9ef6a549 -#: ../../source/training/tot/502_communication_skills.rst:714 -msgid "**d. Skills to provide reinforcement**" -msgstr "" - -# 3a1e7fbfab8647088c9c795b50da5286 -#: ../../source/training/tot/502_communication_skills.rst:718 -msgid "" -"There are two kinds of reinforcements, positive and negative reinforcement. " -"Positive reinforcement is the trainer’s behavior in responding positively to " -"a particular behavior of participants that allows such behavior to reoccur. " -"While negative reinforcement is the removal or a reduction of unpleasant " -"stimuli to encourage the reoccurrence of the behavior that arises as the " -"result of the reduction or removal." -msgstr "" - -# bbc15ebaeb5a4b49892941624e468bd3 -#: ../../source/training/tot/502_communication_skills.rst:725 -msgid "The purpose of reinforcement is to:" -msgstr "" - -# 5fdd31bb39d74bf684121fa3c86c6280 -#: ../../source/training/tot/502_communication_skills.rst:727 -msgid "increase the participants’ attention" -msgstr "" - -# 938b4f3e26b741b2b7de4988def21356 -#: ../../source/training/tot/502_communication_skills.rst:728 -msgid "Smoothen/ facilitate the learning process" -msgstr "" - -# bbe5be906c7948ee99b348d71fcbda4a -#: ../../source/training/tot/502_communication_skills.rst:729 -msgid "Generating and maintaining motivation" -msgstr "" - -# 7e9758dae1824fc58270f4e23b8fa5a3 -#: ../../source/training/tot/502_communication_skills.rst:730 -msgid "Controlling or changing disturbing attitudes and behavior" -msgstr "" - -# 3970bfb9b34845cc970c757fbe45ce5c -#: ../../source/training/tot/502_communication_skills.rst:731 -msgid "Developing and organizing themselves in learning" -msgstr "" - -# 248b90e789c54d96a4280042b6bca50a -#: ../../source/training/tot/502_communication_skills.rst:732 -msgid "" -"Driving the way of thinking that is good / divergent and personal initiative" -msgstr "" - -# 5d8fb9366ba5467eacd32e7444ffca47 -#: ../../source/training/tot/502_communication_skills.rst:734 -msgid "Reinforcement is given during:" -msgstr "" - -# 622c4579fe1c443c8bf9f8552e19ac66 -#: ../../source/training/tot/502_communication_skills.rst:736 -msgid "Attention to the coach, friend, or the object of discussion" -msgstr "" - -# 507c0307530e4c9cb86e7dc550501689 -#: ../../source/training/tot/502_communication_skills.rst:737 -msgid "The study, reading, working on the board behavior" -msgstr "" - -# dd89dec5f55d46a78c9d53c0573909c0 -#: ../../source/training/tot/502_communication_skills.rst:738 -msgid "The completion of work" -msgstr "" - -# 19520dc926d9491bb74574e4af2d7419 -#: ../../source/training/tot/502_communication_skills.rst:739 -msgid "The quality of work/ tasks (grooming, beauty)" -msgstr "" - -# 3cd1da51661e4d3484ff5e43120fb802 -#: ../../source/training/tot/502_communication_skills.rst:740 -msgid "Repair/ improvement tasks" -msgstr "" - -# 968d547f2a854ea79f70a4df40fd1a08 -#: ../../source/training/tot/502_communication_skills.rst:741 -msgid "Independent tasks" -msgstr "" - -# 1883ecdceeae427a8e3bb8165df387dc -#: ../../source/training/tot/502_communication_skills.rst:743 -msgid "**Components of Reinforcement Basic Skills**" -msgstr "" - -# aa07ad7322ea47988b9ec0cd49e43efb -#: ../../source/training/tot/502_communication_skills.rst:745 -msgid "" -"The use of in-class skill components should be carefully selected, tailored " -"to the participants' ages, capability level, needs and background, the " -"purpose and nature of the task. Reinforcement must be meaningful from the " -"participants." -msgstr "" - -# 70fad9b6994a4e0b8b3024bf5256bfbd -#: ../../source/training/tot/502_communication_skills.rst:749 -msgid "Some components of providing reinforcement are:" -msgstr "" - -# 14e66dbf658e49f8b4e60c7872aeeaf1 -#: ../../source/training/tot/502_communication_skills.rst:751 -msgid "Positive reinforcement" -msgstr "" - -# 6d1d7e84f68f433f987cece7a78a2b3d -#: ../../source/training/tot/502_communication_skills.rst:753 -msgid "Verbal reinforcement" -msgstr "" - -# af03d5b5aacf4e3cb9c6363c50e62229 -#: ../../source/training/tot/502_communication_skills.rst:755 -msgid "" -"Reinforcement can be verbal words that are spoken by the teacher. Examples " -"of it are good, well, precise, I appreciate the income, very intelligent " -"mind, etc." -msgstr "" - -# 53d3d867c64a440182558a2c9487d1d2 -#: ../../source/training/tot/502_communication_skills.rst:759 -msgid "Gestural reinforcement" -msgstr "" - -# 4b60cbeb87ae4e818600c2d1848aa01b -#: ../../source/training/tot/502_communication_skills.rst:761 -msgid "" -"This reinforcement is given in the form of gestures, facial or limb " -"movements that can give the impression to the students. For example: Lifting " -"an eyebrow, smiling, leering eyes, applause, nodding in agreement, raising " -"the thumb sign, etc." -msgstr "" - -# dfb211bd2cea40a9b776cb5ad507e25b -#: ../../source/training/tot/502_communication_skills.rst:766 -msgid "Approaching reinforcement" -msgstr "" - -# 3ad56634fe704226b84aca3ca93e8f92 -#: ../../source/training/tot/502_communication_skills.rst:768 -msgid "" -"This reinforcement is done by approaching students to express the trainer’s " -"concern for the work, behavior or appearance of the participants. For " -"example: the trainer sits in a group, stands next to a participant. Often " -"the trainer approaches participants to give them verbal reinforcement." -msgstr "" - -# 07cb62aab5a7433b8717d945dc5aeaf2 -#: ../../source/training/tot/502_communication_skills.rst:774 -msgid "Reinforcement through touches" -msgstr "" - -# 3bc48a7c6f754aae9354ee4a592f56fd -#: ../../source/training/tot/502_communication_skills.rst:776 -msgid "" -"A trainer can express appreciation to the participants by patting them, " -"shaking their hands or raising their hands." -msgstr "" - -# c6d239e715764e90a788983fdc128ee8 -#: ../../source/training/tot/502_communication_skills.rst:779 -msgid "Reinforcement by providing fun activities" -msgstr "" - -# 3a58cddc9f334b1595f73bfa5bd74469 -#: ../../source/training/tot/502_communication_skills.rst:781 -msgid "" -"This reinforcement may be in the form of asking participants to help his " -"friends when he has finished his work properly, participants are asked to " -"lead activities, etc." -msgstr "" - -# 480dd40c2d404cb4a970bff6ff58a9ce -#: ../../source/training/tot/502_communication_skills.rst:785 -msgid "Symbolic reinforcement or with objects" -msgstr "" - -# 5da8064f8e7d4bb9b03080a89dc9239e -#: ../../source/training/tot/502_communication_skills.rst:787 -msgid "" -"This form of reinforcement is the trainer’s effort in using a variety of " -"symbols to support the reinforcement of positive behavior of participants. " -"This form of reinforcement include commentary written in the work book, " -"giving stamps, money data collection, star, percentage and so on." -msgstr "" - -# 4efb8d79d4b646a59e72e3fa6c344d9d -#: ../../source/training/tot/502_communication_skills.rst:792 -msgid "Negative reinforcement" -msgstr "" - -# 3d9ef67682e244fbbd3cf5d517b096ac -#: ../../source/training/tot/502_communication_skills.rst:794 -msgid "" -"The way this is done is the same with positive reinforcement, except that it " -"is not pleasant for the participants in order to reduce or remove their " -"actions." -msgstr "" - -# 6fc3f0eb603d4679b2c67c47b671cced -#: ../../source/training/tot/502_communication_skills.rst:798 -msgid "How to use the components:" -msgstr "" - -# 2289ecbfa0e2472aa372e62e882b4322 -#: ../../source/training/tot/502_communication_skills.rst:800 -msgid "Varies" -msgstr "" - -# ea29aa040fbd4d75880088c3daddf164 -#: ../../source/training/tot/502_communication_skills.rst:801 -msgid "Provide better reinforcement directly and immediately" -msgstr "" - -# 21f4c52d3e484a639d3422292fe2bc4e -#: ../../source/training/tot/502_communication_skills.rst:802 -msgid "" -"For certain purposes the use of reinforcement can never be given. For " -"example, for participants who answered incorrectly, reinforcement is given " -"to participants in the effort of answering but not on the quality of the " -"answer. The trainer acts should be followed by asking the first participant " -"to imitate the answer or giving consideration to his answer" -msgstr "" - -# 1e21d76056ee4bd58314980a4fa9a1fc -#: ../../source/training/tot/502_communication_skills.rst:807 -msgid "" -"Providing reinforcement is a behavior that is easier said than done. " -"Therefore intensive exercises are done by the trainer candidates." -msgstr "" - -# 0f83cbbd571e4cd6b15542cf9f36bd77 -#: ../../source/training/tot/502_communication_skills.rst:810 -msgid "**e. Basic skills in Using Variations**" -msgstr "" - -# ba22cb7bdf66492fafdcfa0400669780 -#: ../../source/training/tot/502_communication_skills.rst:814 -msgid "" -"Using variations is defined as the trainer’s effort in in the context of the " -"training process that aims to overcome the participants’ boredom in " -"following the training, so that participants always show perseverance, as " -"well as enthusiasm and active participation." -msgstr "" - -# 2d05b2fbfb9d4819a6d17d47a58da78d -#: ../../source/training/tot/502_communication_skills.rst:819 -msgid "Use in class is for:" -msgstr "" - -# fc86123f1834403d84876ce07bb778e4 -#: ../../source/training/tot/502_communication_skills.rst:821 -msgid "" -"Maintaining and improving the participants in issues related to the learning " -"aspects" -msgstr "" - -# 805f0f9e6ee44d13b0f8389a80954e5b -#: ../../source/training/tot/502_communication_skills.rst:823 -msgid "" -"Improving the possibility of motivation and curiosity through investigation " -"and exploration" -msgstr "" - -# 72c42ebf51fc4de2bb6b6b6c3b767bf6 -#: ../../source/training/tot/502_communication_skills.rst:825 -msgid "Establishing a positive attitude towards the trainer" -msgstr "" - -# cd35720008a843a0a315f60865c4369f -#: ../../source/training/tot/502_communication_skills.rst:826 -msgid "" -"The possibility of individual participants to be served so that it gives the " -"ease in learning" -msgstr "" - -# 56978df78a92460b967e5d6052456671 -#: ../../source/training/tot/502_communication_skills.rst:828 -msgid "" -"Encouraging learning activities that engage participants in a variety of " -"activities. Learning, interesting and useful in a variety of cognitive levels" -msgstr "" - -# 825a51a71d13456493e191fe28ad735a -#: ../../source/training/tot/502_communication_skills.rst:831 -msgid "**Components of Making Variations Skill**" -msgstr "" - -# 8120c7fb458d41618e1848efc54149d7 -#: ../../source/training/tot/502_communication_skills.rst:833 -msgid "Variation in training style" -msgstr "" - -# 64210443d612438a891de64a6bb749d9 -#: ../../source/training/tot/502_communication_skills.rst:835 -msgid "Variety of trainer’s teaching styles include these components:" -msgstr "" - -# 68f86e3519144d95a05abdc8812ddb1c -#: ../../source/training/tot/502_communication_skills.rst:837 -msgid "Voice variation: loud weak, fast slow, high low, great and small" -msgstr "" - -# e392438c5fcd47449f3b629ac9efaf08 -#: ../../source/training/tot/502_communication_skills.rst:838 -msgid "" -"Concentration of attention. Focusing attention can be done verbally, or by " -"using capital symbols" -msgstr "" - -# 3fa72f24c7224294a782070703199fe7 -#: ../../source/training/tot/502_communication_skills.rst:840 -msgid "" -"Silence. By the time the trainer has finished explaining, activities are " -"often observed to pause abruptly in a short moment" -msgstr "" - -# 6f393e0747e847a9af61dd8b136ccb56 -#: ../../source/training/tot/502_communication_skills.rst:842 -msgid "" -"There is a time of silence when the trainer is moving from one teaching " -"segment to the other" -msgstr "" - -# a664a9b38a734ba59f7f1075b3199845 -#: ../../source/training/tot/502_communication_skills.rst:844 -msgid "" -"Eye contact. To improve the relationship with the students and avoid " -"impersonal things, then eye contact is required during teaching process" -msgstr "" - -# 16e509094d344fcd9ab0cfd43f2c91a5 -#: ../../source/training/tot/502_communication_skills.rst:846 -msgid "" -"Gestures and lyrics: the change in face expression, head movement, body " -"movement is very important in communication process" -msgstr "" - -# f19f2023bee547bb821854b4853e8bef -#: ../../source/training/tot/502_communication_skills.rst:848 -msgid "" -"The change in trainer’s position. The participants’ attention can be " -"improved by the change in trainer’s position in the communication " -"interaction process" -msgstr "" - -# 06ee169a799d48558fdbd815812ba125 -#: ../../source/training/tot/502_communication_skills.rst:852 -msgid "Variations in the use of media and teaching materials" -msgstr "" - -# 66bc292d7c7d42ab9eb0eea21bfdc6f8 -#: ../../source/training/tot/502_communication_skills.rst:854 -msgid "" -"Variations in any type of media or variations between media type need to be " -"considered in the learning process" -msgstr "" - -# 24045d2ade3646868a1c67f9fe92349f -#: ../../source/training/tot/502_communication_skills.rst:857 -msgid "Variations of interaction pattern and participant’s activity" -msgstr "" - -# 84882a92a0094e8bb6206b5ff5fde1e6 -#: ../../source/training/tot/502_communication_skills.rst:859 -msgid "" -"The range of interaction can move between the two extreme poles, the trainer " -"as the center of activities and participants as the center of activities. " -"Changes in the interaction between the two poles will result in an activity " -"pattern that is experienced by the participants. From the description above, " -"it is clear that the skills in using variations are wider compared with the " -"skill of providing reinforcement and inquiry skills." -msgstr "" - -# 726530bead434a3da1ef5d959ac978ce -#: ../../source/training/tot/502_communication_skills.rst:867 -msgid "**The principles that need to be understood**" -msgstr "" - -# 3024bbaacf0f415a9d57b22947118e41 -#: ../../source/training/tot/502_communication_skills.rst:869 -msgid "" -"The principles which will need the use of natural variation among others are:" -msgstr "" - -# 1d4894a7fd7244a1900f8bd5130a8289 -#: ../../source/training/tot/502_communication_skills.rst:871 -msgid "Changes have to be smooth and accurate" -msgstr "" - -# 73da6b01a3fe40a69169f79485a9281e -#: ../../source/training/tot/502_communication_skills.rst:872 -msgid "The use of variation technique should be smooth and accurate" -msgstr "" - -# 7a4c8ac0cabc49e3b2567c9442f25dd0 -#: ../../source/training/tot/502_communication_skills.rst:873 -msgid "" -"The use of the variation components must be completely structured and " -"planned in advance" -msgstr "" - -# df10a677d58745f5a7e9ce52f7501350 -#: ../../source/training/tot/502_communication_skills.rst:875 -msgid "" -"The use of variation components to be flexible and spontaneous based on " -"participant feedback" -msgstr "" - -# aea3d8c8180d41159cb1003495398c2e -#: ../../source/training/tot/502_communication_skills.rst:878 -msgid "**f. Classroom Management Skills**" -msgstr "" - -# 002ea49b55414623b4997c8423c7dcfe -#: ../../source/training/tot/502_communication_skills.rst:882 -msgid "" -"Classroom management is the creation of conditions that enable the training " -"management to take place optimally. This is in contrast to the management of " -"learning, i.e. the teaching itself involving the material components, " -"methods, and training aids in achieving the learning objectives." -msgstr "" - -# a3156ce1e57f48ebaaf6a1af690404e6 -#: ../../source/training/tot/502_communication_skills.rst:887 -msgid "" -"Examples of learning management problems are unclear learning objectives, " -"the subject matter is too easy or too hard, medium or inappropriate learning " -"methods, the materials are not in systematic order, etc. While examples of " -"classroom management problems are sleepy participants, crowded classroom, " -"participants not doing the tasks, participants teasing others, broken seats, " -"dirty classroom, etc." -msgstr "" - -# bb4efb8f360b4426b076a6e0b5ee7978 -#: ../../source/training/tot/502_communication_skills.rst:894 -msgid "" -"Managing a class is a function of the trainer as a manager. Management means " -"the organization or management in order for things to run smoothly, " -"effectively, and efficiently. So in this case the function of a trainer is " -"as a manager or an organizer. While the purpose of managing the class is: " -"(1) to create and maintain an optimal learning condition, (2) to restore in " -"the event of disruption to the learning process" -msgstr "" - -# 1520495a5c1c40a39ef2f827429251f5 -#: ../../source/training/tot/502_communication_skills.rst:901 -msgid "**Classroom Management Approaches**" -msgstr "" - -# f7244a5f40e34daa9d38a2c304e56402 -#: ../../source/training/tot/502_communication_skills.rst:903 -msgid "Various classroom management approaches are:" -msgstr "" - -# 66a7595b418e4fae990b9a6fc760004b -#: ../../source/training/tot/502_communication_skills.rst:905 -msgid "Behavior Modification approach" -msgstr "" - -# 1735df6712f04cb8b94063be0162b894 -#: ../../source/training/tot/502_communication_skills.rst:906 -msgid "Social climate approach" -msgstr "" - -# d4b0d54e6410484598cbc04f94877af8 -#: ../../source/training/tot/502_communication_skills.rst:907 -msgid "Group process approach" -msgstr "" - -# 9a8113641f7a4c31a9ab1708544ae7b6 -#: ../../source/training/tot/502_communication_skills.rst:909 -msgid "**Behavior Modification Approach**" -msgstr "" - -# e8bd3293ed6d48a1a993f15f453160ee -#: ../../source/training/tot/502_communication_skills.rst:911 -msgid "" -"Behavior modification approach departs from behavior psychology with the " -"basic assumption that human behavior either good or bad, to a certain " -"extent, is the result of learning process. Thus, human behavior can be " -"modified." -msgstr "" - -# 7db0c59bd1ab4ba88a82d396462036f7 -#: ../../source/training/tot/502_communication_skills.rst:915 -msgid "" -"Modifications include using positive reinforcement techniques, negative " -"reinforcement, deletion, and punishment. Positive reinforcement is a " -"response to a behavior, which can increase the likelihood of reoccurrence of " -"such behavior. Negative reinforcement is a reduction to the removal of an " -"unpleasant stimulus to encourage the recurrence of a behavior that arises as " -"a result of the reduction or removal." -msgstr "" - -# 5e272a473ea1485491c59c9a51167dbe -#: ../../source/training/tot/502_communication_skills.rst:922 -msgid "Principle of use:" -msgstr "" - -# 2e809f1a024448a7b956b3527317d0d0 -#: ../../source/training/tot/502_communication_skills.rst:924 -msgid "Avoidance of painful stimulus" -msgstr "" - -# 7d1b581c0d504c8abc8e4f8241a20267 -#: ../../source/training/tot/502_communication_skills.rst:925 -msgid "Clear target" -msgstr "" - -# b194a84b158c4a3c82c1a868c97c4fc5 -#: ../../source/training/tot/502_communication_skills.rst:926 -msgid "Provision of immediate reinforcement" -msgstr "" - -# 16c53a4253eb45bfa1b79dcbc649067b -#: ../../source/training/tot/502_communication_skills.rst:927 -msgid "Presenting various stimulus" -msgstr "" - -# e3386592ab7e49c692a612702d09269a -#: ../../source/training/tot/502_communication_skills.rst:928 -msgid "Enthusiasm" -msgstr "" - -# cb10595696d64c459b93d356a4560346 -#: ../../source/training/tot/502_communication_skills.rst:929 -msgid "Combined with other techniques" -msgstr "" - -# 5815644560e34d61837f919502ea79fa -#: ../../source/training/tot/502_communication_skills.rst:931 -msgid "**Social Climate Approach (Social-Emotional Climate)**" -msgstr "" - -# 2458747b0c6147649862ca12ec258357 -#: ../../source/training/tot/502_communication_skills.rst:933 -msgid "" -"Social-emotional climate approach departs from clinical psychology and " -"counseling, with the basic assumption that the teaching and learning " -"activities are effective and efficient when there are social-emotional " -"relationships between participants and trainers and between participants. " -"This can be pursued by means of:" -msgstr "" - -# dba6cd1b2f34488b9cabb909612e374e -#: ../../source/training/tot/502_communication_skills.rst:939 -msgid "Open attitude" -msgstr "" - -# c3181d79095d42f7b053b17ce101901b -#: ../../source/training/tot/502_communication_skills.rst:940 -msgid "Acceptance and respect of participants" -msgstr "" - -# bda1b5e44b4444c8a31810d6ddfaae4c -#: ../../source/training/tot/502_communication_skills.rst:941 -msgid "Empathy" -msgstr "" - -# 3cbe368acf0c496aa399f1c926e5b64e -#: ../../source/training/tot/502_communication_skills.rst:942 -msgid "Attitude to discuss the situation violations and violators" -msgstr "" - -# 265bf13630fc4ff5a11007f98bb81130 -#: ../../source/training/tot/502_communication_skills.rst:943 -msgid "Democratic attitudes" -msgstr "" - -# 92798ee239f14e6c9324645957942e1f -#: ../../source/training/tot/502_communication_skills.rst:945 -msgid "**Group Process Approach**" -msgstr "" - -# 6969646dc237497e883cd63e1953b6a9 -#: ../../source/training/tot/502_communication_skills.rst:947 -msgid "" -"Group process approach departs from social psychology and group dynamics, " -"with the basic assumption that the effective and efficient teaching and " -"learning activities take place in the context of a group, i.e. the class. " -"For that task the trainer has to create a class that has strong ties and can " -"work effectively and efficiently." -msgstr "" - -# ab989d87fa8d4fe1866407e9dc758880 -#: ../../source/training/tot/502_communication_skills.rst:953 -msgid "" -"To create a good group bonding atmosphere we need the establishment of " -"common goals in the group, clear rules to bind the participants into groups, " -"and leadership within the group. And to maintain a healthy working " -"environment, the trainer needs to do for example:" -msgstr "" - -# 56a1638109d345689bf33ea48ef97d1a -#: ../../source/training/tot/502_communication_skills.rst:958 -msgid "Encourage and equalize participation" -msgstr "" - -# e55551cb247f47b28cd394a854ed864a -#: ../../source/training/tot/502_communication_skills.rst:959 -msgid "Work out a compromise" -msgstr "" - -# 4e1150ad9bb949528d3eb516de7dedf2 -#: ../../source/training/tot/502_communication_skills.rst:960 -msgid "Reduce tension" -msgstr "" - -# 8c44a76243744dcdb3c4ab42204685c1 -#: ../../source/training/tot/502_communication_skills.rst:961 -msgid "Clarify communications" -msgstr "" - -# 00ff6709766b47d3a2364c5faaa8329a -#: ../../source/training/tot/502_communication_skills.rst:962 -msgid "Addressing conflicts between individuals or groups" -msgstr "" - -# 1743748f61c44d5d937b4b875bfab0f0 -#: ../../source/training/tot/502_communication_skills.rst:963 -msgid "" -"Showed that the presence of the participants are physically and " -"psychologically" -msgstr "" - -# e6bfe0db162740fea63adff510581454 -#: ../../source/training/tot/502_communication_skills.rst:965 -msgid "Describe sanctions" -msgstr "" - -# 48efc85603b745daa325647d0d8f715c -#: ../../source/training/tot/502_communication_skills.rst:968 -msgid "Bibliography" -msgstr "" - -# 488f2e5bc18d4a3f9b4017a949d92ea9 -#: ../../source/training/tot/502_communication_skills.rst:970 -msgid "" -"**Arend, Ricard.** 1997. Classroom Instructional Management. New York: The Mc" -msgstr "" - -# 634f3aa783ad4c38836f16ec79a2df56 -#: ../../source/training/tot/502_communication_skills.rst:970 -msgid "Graw-Hill Company." -msgstr "" - -# a1efc8ba45854aa1a23575397e8ca80d -#: ../../source/training/tot/502_communication_skills.rst:973 -msgid "" -"**Brent D. Ruben dan Lea P. Stewart.** 2013. *Komunikasi dan Perilaku " -"Manusia*" -msgstr "" - -# 2837ed233e5541199593853c749efebe -#: ../../source/training/tot/502_communication_skills.rst:973 -msgid "" -"*(Edisi Kelima), terjemahan Ibnu Hamad*. Jakarta: PT RajaGrafindo Persada." -msgstr "" - -# d3b6793bd9f541a68383ac198c402b4c -#: ../../source/training/tot/502_communication_skills.rst:976 -msgid "" -"**Bahri Syaeful dan Aswan Zain.** 2006. *Strategi Belajar Mengajar*. " -"Jakarta :" -msgstr "" - -# 0a9eb2313f764594bdc8be0e37871e63 -#: ../../source/training/tot/502_communication_skills.rst:976 -msgid "Rineka Cipta." -msgstr "" - -# 89737a8d654f4581ad62b0835b7d8f3d -#: ../../source/training/tot/502_communication_skills.rst:979 -msgid "" -"**Budimansyah, D.** 2002. *Model Pembelajaran dan Penilaian Portofolio*." -msgstr "" - -# a1d1b48795c5427e8e67d3eb5506d7f9 -#: ../../source/training/tot/502_communication_skills.rst:979 -msgid "Bandung: Genesindo." -msgstr "" - -# 428f3b7b0fcd47008943b5dd7f09393a -#: ../../source/training/tot/502_communication_skills.rst:982 -msgid "" -"**Joyce, B. and Weil, M.** (1980) Models of Teaching. Englewood Cliffs, New" -msgstr "" - -# deb45c421710462bb362dc91a7a5c91c -#: ../../source/training/tot/502_communication_skills.rst:982 -msgid "Jersey: Prentice-Hall Inc." -msgstr "" - -# 71ef564dd30948a29463e05c2767dd11 -#: ../../source/training/tot/502_communication_skills.rst:985 -msgid "" -"**Sanjaya Wina.** 2007. *Strategi Pembelajaran: Berorientasi Standar Proses*" -msgstr "" - -# da6663cb6f4a40159be6f08b7120c448 -#: ../../source/training/tot/502_communication_skills.rst:985 -msgid "*Pendidikan*. Jakarta: Kencana Prenada Media Group." -msgstr "" - -# 421500150c684a6a80177d71efbc4795 -#: ../../source/training/tot/502_communication_skills.rst:989 -msgid "" -"**Thomas M. Sheidel.** 1976. Speech Communication and Human Interaction. 2nd" -msgstr "" - -# 973ae41f06754701acdd81678755af77 -#: ../../source/training/tot/502_communication_skills.rst:988 -msgid "Edition. Glenville, III. Scott, Foresman & Co." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/training/tot/index.po b/docs/i18n/en/LC_MESSAGES/training/tot/index.po deleted file mode 100644 index fb058599..00000000 --- a/docs/i18n/en/LC_MESSAGES/training/tot/index.po +++ /dev/null @@ -1,42 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 62dc6db078be43ed9b8edef400b66771 -#: ../../source/training/tot/index.rst:8 -msgid "Training of Trainer Module" -msgstr "" - -# 87d347cdca6e474eb8f4695f2c405f4c -#: ../../source/training/tot/index.rst:10 -msgid "" -"The main objective of this training is to train people to be leaders and " -"trainers in Scenario Development program for Contingency Planning (SD4CP) in " -"their respective regions. After completing the training, participants will " -"have the facilitation skills in OSM / QGIS / InaSAFE which are needed as a " -"facilitator, and training skills to help train others in developing a " -"realistic disaster scenario that can be used in contingency plans. This will " -"lead to better decision-making during the process of making contingency " -"plans. It is also expected that TOT participants can provide technical " -"assistance in their respective regions." -msgstr "" - -# 291434d6ae124a03b3ca7b155840ebee -#: ../../source/training/tot/index.rst:20 -msgid "The course is scheduled to run for one day." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/batch_runner.po b/docs/i18n/en/LC_MESSAGES/user-docs/application-help/batch_runner.po deleted file mode 100644 index f50f4c50..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/batch_runner.po +++ /dev/null @@ -1,112 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-24 19:22+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 9155c06e4a9942629a057ecd282d114e -# ca640a8b67a148498436fe4f07774d69 -#: ../../source/user-docs/application-help/batch_runner.rst:8 -msgid "Batch Runner" -msgstr "" - -# 7500d4b6463b4a65b055f4fb3a3afaa8 -#: ../../source/user-docs/application-help/batch_runner.rst:15 -msgid "*Batch Runner*" -msgstr "" - -# 7f94fe15baa8448e8d7be5566b489255 -#: ../../source/user-docs/application-help/batch_runner.rst:17 -msgid "" -"With this tool you can set up numerous scenarios and run them all in one go. " -"For example, in a typical use case you might define a number of flood impact " -"scenarios all using a standard dataset, such as :file:`flood.shp`. As new " -"flood data becomes available you replace :file:`flood.shp` and rerun the " -"scenarios using the batch runner. Using this approach you can quickly " -"produce regional contingency plans as your understanding of hazards changes. " -"When you run the batch of scenarios, PDF reports are generated automatically " -"and all placed in a single common directory making it easy for you to browse " -"and disseminate the reports produced." -msgstr "" - -# 569a2d6bc6784b8cb7453eab1c5cfcef -#: ../../source/user-docs/application-help/batch_runner.rst:29 -msgid "Steps for using the Batch Runner" -msgstr "" - -# 57f40193d9754eb5a28b549c0d92b237 -#: ../../source/user-docs/application-help/batch_runner.rst:31 -msgid "Create a normal scenario. Run the scenario to make sure it is valid." -msgstr "" - -# 5d6a7e7fcff64cd3ae535b9411f4516b -#: ../../source/user-docs/application-help/batch_runner.rst:32 -msgid "" -"Save the scenario :ref:`tb_save_scenario` use an easily accessible folder." -msgstr "" - -# e1c30cf1304d46e2879785506a5dc49a -#: ../../source/user-docs/application-help/batch_runner.rst:33 -msgid "Repeat the previous step until a few scenarios have been saved." -msgstr "" - -# 8878ac20d3d2450d9b4b8b7593370e06 -#: ../../source/user-docs/application-help/batch_runner.rst:34 -msgid "" -"Go to the Window menu --> Plugins --> InaSAFE --> Batch Runner you should " -"see a dialog box like below" -msgstr "" - -# 8bbae10d1564426491b48d4657963001 -#: ../../source/user-docs/application-help/batch_runner.rst:41 -msgid "*Batch Runner Directory*" -msgstr "" - -# 8fbfa8382df6420e85077f5e34c898bb -#: ../../source/user-docs/application-help/batch_runner.rst:43 -msgid "" -"Set the scenario directory to the one used in step 2. If this is done " -"correctly the results table will list your saved scenarios." -msgstr "" - -# ee642acea8ed4eb984e220f69e7a6c80 -#: ../../source/user-docs/application-help/batch_runner.rst:44 -msgid "" -"Set output destination to an easily accessible directory, this is where all " -"your reports will go." -msgstr "" - -# 1705d7f644b144a3af24813a4572981b -#: ../../source/user-docs/application-help/batch_runner.rst:45 -msgid "Run all your scenarios it should look like below" -msgstr "" - -# 558bf7dab1de499f8464491de4189296 -#: ../../source/user-docs/application-help/batch_runner.rst:52 -msgid "*Batch Runner Busy*" -msgstr "" - -# 24f20c06aa144df7821665df850b5812 -#: ../../source/user-docs/application-help/batch_runner.rst:54 -msgid "" -"look in the output destination. You should see all the reports and a batch " -"report confirmation." -msgstr "" - -# 431cf363dc3f49f5a9dbea4eeb8fe764 -#: ../../source/user-docs/application-help/batch_runner.rst:62 -msgid "*Batch Runner Results*" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/converter.po b/docs/i18n/en/LC_MESSAGES/user-docs/application-help/converter.po deleted file mode 100644 index c17ccec2..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/converter.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 7b12560027a74c15b89f7610755e8435 -#: ../../source/user-docs/application-help/converter.rst:8 -msgid "Shakemap Converter" -msgstr "" - -# fe9d947922b84cb0bbea74baf92602a8 -#: ../../source/user-docs/application-help/converter.rst:10 -msgid "" -"Shakemaps are useful for carrying out contingency planning for an earthquake " -"event. Normally these are distributed as grid.xml files which are not usable " -"in |project_name| or QGIS. The Shakemap Converter tool imports a grid.xml " -"file as a GEOTIFF file so that it can be used within |project_name|." -msgstr "" - -# 66012ebfae8c43299e86b6e74b0ff71e -#: ../../source/user-docs/application-help/converter.rst:15 -msgid "" -"Two different interpolation algorithms can be used during the import process " -"- **Nearest Neighbour** and **Inverse Distance**. After the conversion, the " -"tool automatically creates |project_name| keyword metadata for the layer so " -"that it can be used immediately for analysis." -msgstr "" - -# 87d809ed3a5d40359dd48f11ebfc62f8 -#: ../../source/user-docs/application-help/converter.rst:25 -msgid "*Converter*" -msgstr "" - -# 0181301c1a2b42549d48f140b4bb9cde -#: ../../source/user-docs/application-help/converter.rst:27 -msgid "To use this tool effectively:" -msgstr "" - -# 98de207c682a461e80a9bcb07b7708e6 -#: ../../source/user-docs/application-help/converter.rst:29 -msgid "Select a :file:`grid.xml` file for the input layer." -msgstr "" - -# a37e5bfd1f414a169a7988c1e9733ae3 -#: ../../source/user-docs/application-help/converter.rst:30 -msgid "Add the title of the shakemap that will be used for the keywords." -msgstr "" - -# 44427227fa3a412397caafd06a22bdc9 -#: ../../source/user-docs/application-help/converter.rst:31 -msgid "Add the source of the shakemap that will also be used for the keywords." -msgstr "" - -# 330aa238e2ef4e7b87f3ba3248fdc994 -#: ../../source/user-docs/application-help/converter.rst:32 -msgid "Choose where to write the output layer to." -msgstr "" - -# a87f810d2a954d478881ee64d51e0109 -#: ../../source/user-docs/application-help/converter.rst:33 -msgid "" -"Choose the interpolation algorithm that should be used when converting the " -"xml grid to a raster. If unsure keep the default." -msgstr "" - -# 6a7cc8ed8ccf446280eaaa7e6e8086ba -#: ../../source/user-docs/application-help/converter.rst:36 -msgid "" -"You can obtain shake data for free from the `USGS shakemap site `_." -msgstr "" - -# 8132a3d8949943a7a77366ea3cd35798 -#: ../../source/user-docs/application-help/converter.rst:39 -msgid "" -"When you download the grid file, you should right-click on it and choose :" -"menuselection:`Save as` in order to ensure that it is saved properly. OSX " -"and Linux users may also consider using command line tools to fetch the grid " -"file:" -msgstr "" - -# 3eab9a3a46dc4ebc964b57fd8d4a0d98 -#: ../../source/user-docs/application-help/converter.rst:43 -msgid "OSX::" -msgstr "" - -# 4ea7c9012bed475fb91f7ec8b80eb82a -#: ../../source/user-docs/application-help/converter.rst:47 -msgid "Linux::" -msgstr "" - -# 62351b5d56aa4edd8747d5a29bc69f12 -#: ../../source/user-docs/application-help/converter.rst:51 -msgid "Replace the in the commands above with the actual shake id." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/data_driven_age.po b/docs/i18n/en/LC_MESSAGES/user-docs/application-help/data_driven_age.po deleted file mode 100644 index 21e971f1..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/data_driven_age.po +++ /dev/null @@ -1,196 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 63eedc6dd6694b9581c3fc735504d31c -#: ../../source/user-docs/application-help/data_driven_age.rst:8 -msgid "Data Driven Age Post-processor" -msgstr "" - -# fb27b22fcfab4508bd5c2aa03dfdabfa -#: ../../source/user-docs/application-help/data_driven_age.rst:11 -msgid "Purpose" -msgstr "" - -# 237d9062eaea473da4aee5f815eb5391 -#: ../../source/user-docs/application-help/data_driven_age.rst:12 -msgid "" -"Data driven age processing is carried out during aggregation to determine " -"how many people are affected by a hazard according to their age distribution " -"(youth, adult, elderly). This feature is similar to the gender post-" -"processor. With data driven age, a custom age distribution ratio is used. " -"This is specified either in the data attributes of the aggregation polygons, " -"or by setting a global ratio for the whole aggregator vector layer using the " -"keywords editor or keywords wizard." -msgstr "" - -# e2510608b38d45c3827156b90eabec07 -#: ../../source/user-docs/application-help/data_driven_age.rst:20 -msgid "" -"This feature is used to give more specific information by giving the number " -"of affected youth, adult and elderly in an area such as within the " -"boundaries of a village. This can help better identify what areas should be " -"priorities during rescue operations and to give more attention to the " -"vulnerable population (e.g. elderly) and their needs." -msgstr "" - -# a64d80344e9744eca3ef035e82994eac -#: ../../source/user-docs/application-help/data_driven_age.rst:27 -msgid "Guidelines" -msgstr "" - -# 66a7aff31a644ecb89224e6f0ca9110a -#: ../../source/user-docs/application-help/data_driven_age.rst:30 -msgid "Data needed" -msgstr "" - -# 77fe3110226f47fba9b45bee984637e1 -#: ../../source/user-docs/application-help/data_driven_age.rst:32 -msgid "" -"The aggregator vector layer should contain percentage of age distribution in " -"the attribute table." -msgstr "" - -# 615adb8207b243faa707a43e67d09929 -#: ../../source/user-docs/application-help/data_driven_age.rst:36 -msgid "YOUTH" -msgstr "" - -# 71b20913ec074706b7bfc3cd8aaeff46 -#: ../../source/user-docs/application-help/data_driven_age.rst:36 -msgid "ADULT" -msgstr "" - -# e26b2c846dc246089358b6ca5a2582f4 -#: ../../source/user-docs/application-help/data_driven_age.rst:36 -msgid "ELDERLY" -msgstr "" - -# 0fb2c8a4c60642dda14591e8f0330fc9 -# 20169671e47e42f6b7b628833dd8f17f -#: ../../source/user-docs/application-help/data_driven_age.rst:38 -msgid "0.30" -msgstr "" - -# 54142f82856549b6aa726dab08a5bcbd -#: ../../source/user-docs/application-help/data_driven_age.rst:38 -msgid "0.40" -msgstr "" - -# 227ee67044b7499aacf4227401a0b012 -#: ../../source/user-docs/application-help/data_driven_age.rst:40 -msgid "0.25" -msgstr "" - -# 7206fd2e1d0f475b943c6e6a8676d8f4 -#: ../../source/user-docs/application-help/data_driven_age.rst:40 -msgid "0.65" -msgstr "" - -# 69541e37c5bd4c8eb0a8ee132ea94803 -#: ../../source/user-docs/application-help/data_driven_age.rst:40 -msgid "0.10" -msgstr "" - -# 5db66218e03d4ef896f6bd2a295d9086 -#: ../../source/user-docs/application-help/data_driven_age.rst:44 -msgid "Category" -msgstr "" - -# 1d5700614f70493596f7e9c768bbefef -#: ../../source/user-docs/application-help/data_driven_age.rst:46 -msgid "Ratio attributes or Ratio defaults should be populated up." -msgstr "" - -# a2fc00a05fe44aada8a8dcb85bf53f81 -#: ../../source/user-docs/application-help/data_driven_age.rst:49 -msgid "Key" -msgstr "" - -# 90e6b30b479b4cc7a645c42dbae88cf9 -#: ../../source/user-docs/application-help/data_driven_age.rst:49 -msgid "Allowed Values" -msgstr "" - -# 27df81ea9fcc42318c1436e7f6e8058f -#: ../../source/user-docs/application-help/data_driven_age.rst:51 -msgid "youth ratio attribute / youth ratio default" -msgstr "" - -# 1a0d571624c54d44ace6e81e427be25a -#: ../../source/user-docs/application-help/data_driven_age.rst:51 -msgid "youth" -msgstr "" - -# ad2a21f80d5946899b1e7d51ea7da157 -#: ../../source/user-docs/application-help/data_driven_age.rst:53 -msgid "adult ratio attribute / adult ratio default" -msgstr "" - -# 6fc69ceb8c7d49699cc9f2f5164afc59 -#: ../../source/user-docs/application-help/data_driven_age.rst:53 -msgid "adult" -msgstr "" - -# 9d145271135e4082a0a84462fd336c43 -#: ../../source/user-docs/application-help/data_driven_age.rst:55 -msgid "elderly ratio attribute / elderly ratio default" -msgstr "" - -# 1d0dcf70f97b4a34b91ad498027e2698 -#: ../../source/user-docs/application-help/data_driven_age.rst:55 -msgid "elderly/elder" -msgstr "" - -# 2191334430684b9baa438955c0b9c73f -#: ../../source/user-docs/application-help/data_driven_age.rst:60 -msgid "" -"Age postprocessing options can be specified either using ratio attributes or " -"ratio defaults." -msgstr "" - -# 43739be3f4694eaf89441a9db8e8b135 -#: ../../source/user-docs/application-help/data_driven_age.rst:63 -msgid "" -"1. **Ratio Attributes:** In this mode, data used for postprocessing is from " -"the attributes of the aggregation layer itself. Consider the example below " -"where each aggregation area has an attribute indicating the ratios of age or " -"gender." -msgstr "" - -# 88ff3d12434e4730a0e43e5c0c42ed63 -#: ../../source/user-docs/application-help/data_driven_age.rst:72 -msgid "" -"In the keywords editor you can refer to these attributes and the age and " -"gender ratios will be extrapolated based on the defined values." -msgstr "" - -# 5989e3cf71564c8094dc91d793857ee9 -#: ../../source/user-docs/application-help/data_driven_age.rst:80 -msgid "" -"2. **Ratio Defaults:** In this mode, the default values will be used. In " -"this case you may not know per-area what the age and gender breakdowns are " -"but rather apply the ratios globally (to all aggregation areas)." -msgstr "" - -# 07a63df1f23b418e88a0716f4fb122d5 -#: ../../source/user-docs/application-help/data_driven_age.rst:90 -msgid "" -"A similar user interface is provided in the :ref:`keywords wizard " -"` user interface." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/dock.po b/docs/i18n/en/LC_MESSAGES/user-docs/application-help/dock.po deleted file mode 100644 index c5bea464..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/dock.po +++ /dev/null @@ -1,532 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# c04dffd74fd2457a89cd0f4d1ee98407 -#: ../../source/user-docs/application-help/dock.rst:8 -msgid "|project_name| Panel" -msgstr "" - -# 8c62821d8be84e64bc9323be27c755c1 -#: ../../source/user-docs/application-help/dock.rst:10 -msgid "" -"This document describes the usage of the |project_name| 'dock panel' - the " -"primary interface for running risk scenarios within the QGIS environment." -msgstr "" - -# e9b75e64deea419296cf59b25df2c8dc -#: ../../source/user-docs/application-help/dock.rst:13 -msgid "" -"In order to use |project_name| effectively, you should also read the :doc:" -"`keywords` and :doc:`impact_functions` documentation before getting started." -msgstr "" - -# ab2ee68a68d34c6d9e6db26e985bdb52 -#: ../../source/user-docs/application-help/dock.rst:17 -msgid "" -"The |project_name| dock panel is the main way to interact with the tools " -"that are provided in |project_name|. After you have installed the |" -"project_name| plugin, the dock panel will automatically load in QGIS and " -"appear somewhere on your screen. It looks like this:" -msgstr "" - -# ed7b9faec5644bcdbf2e3d247fcd9e78 -#: ../../source/user-docs/application-help/dock.rst:27 -msgid "*Docking Panel*" -msgstr "" - -# f56eece0029b4d359d69c3528ebfd3fa -#: ../../source/user-docs/application-help/dock.rst:30 -msgid "" -"Drag and drop the dock panel to reposition it in the user interface. For " -"example, dragging the panel towards the right margin of the QGIS application " -"will dock it to the right side of the screen." -msgstr "" - -# 9db9f8779c4a48bd86489f193882b97b -#: ../../source/user-docs/application-help/dock.rst:39 -msgid "*Dock positioned on the right with a project loaded*" -msgstr "" - -# 8f442e5b8f1549719f9546162c1978ec -#: ../../source/user-docs/application-help/dock.rst:41 -msgid "There are three components within the panel:" -msgstr "" - -# 8ea7ab068a2349f2bf673bece64479ed -#: ../../source/user-docs/application-help/dock.rst:43 -msgid "the :guilabel:`Questions` area" -msgstr "" - -# 6946e464c90744809a337c0c92bad0d8 -#: ../../source/user-docs/application-help/dock.rst:44 -msgid "the :guilabel:`Results` area" -msgstr "" - -# ef49c9f901864bc686b326968cbfc414 -#: ../../source/user-docs/application-help/dock.rst:45 -msgid "the :guilabel:`Buttons` area" -msgstr "" - -# 77ceb14f2fbb440e8a004e92169fd557 -#: ../../source/user-docs/application-help/dock.rst:47 -msgid "" -"At any time you can obtain help in |project_name| by clicking on the :" -"guilabel:`Help` buttons provided on each dock and dialog." -msgstr "" - -# 2690cd022ac540caaf0da972c389c266 -#: ../../source/user-docs/application-help/dock.rst:51 -msgid "The questions area" -msgstr "" - -# 2782b966aab7448dba28797737e87e52 -#: ../../source/user-docs/application-help/dock.rst:53 -msgid "" -"The objective of |project_name| is to make it easy to perform an impact " -"analysis. The questions area provides a simple way to formulate the scenario " -"question. All questions are formulated in the form:" -msgstr "" - -# 76a6b96d958f455ca98d979669981f2f -#: ../../source/user-docs/application-help/dock.rst:58 -msgid "If [**hazard**] how many [**exposure**] might [**impact**]." -msgstr "" - -# 9a551e3dc72b44cba8e3b4ff919eb985 -#: ../../source/user-docs/application-help/dock.rst:60 -msgid "For example:" -msgstr "" - -# edaecbc808fe41729e848243e16f790b -#: ../../source/user-docs/application-help/dock.rst:62 -msgid "If **there is a flood** how many **schools** might **be closed**." -msgstr "" - -# 11476a9c6f614906a334a6eeac08bd2d -#: ../../source/user-docs/application-help/dock.rst:64 -msgid "" -"In order to answer such questions, the |project_name| developers have built " -"a number of **impact functions** that cover scenarios such as flood, " -"tsunami, volcanic ash fall, earthquake and more. Visit :ref:" -"`impact_functions` for detailed information on each impact function." -msgstr "" - -# b6eab0aaeaca4d20aa8ebccb26348dcf -#: ../../source/user-docs/application-help/dock.rst:69 -msgid "" -"To formulate these questions, various layers must be loaded into QGIS that " -"represent either **hazard** or **exposure** information." -msgstr "" - -# 119c8d48155542d39ef5309449973280 -#: ../../source/user-docs/application-help/dock.rst:72 -msgid "" -"A **hazard** (:guilabel:`In the event of`) may be represented as, for " -"example, a raster layer in QGIS where each pixel in the raster represents " -"the current flood depth following an inundation event." -msgstr "" - -# 8333f3d06f944de58180df7bae5a8405 -#: ../../source/user-docs/application-help/dock.rst:75 -msgid "" -"An **exposure** (:guilabel:`How many`) layer could be represented, for " -"example, as vector polygon data representing building outlines, or a raster " -"outline where each pixel represents the number of people resident in that " -"cell." -msgstr "" - -# 5aa5c2ff7f69462eb7c9819b2c443da2 -#: ../../source/user-docs/application-help/dock.rst:80 -msgid "" -"The **impact function** (:guilabel:`Might`) will combine these two input " -"layers in a mathematical model in order to postulate what the impacts of the " -"hazard will be on the exposure infrastructure or people." -msgstr "" - -# bbecf57301eb48f79afb4df41ce1e7a3 -#: ../../source/user-docs/application-help/dock.rst:84 -msgid "" -"By selecting a combination from the :guilabel:`In the event of` and :" -"guilabel:`How many` combo boxes, an appropriate set of impact functions will " -"be listed in the :guilabel:`Might` combo box." -msgstr "" - -# e2d8bf9be4f54c00a800f40978d83c3c -#: ../../source/user-docs/application-help/dock.rst:88 -msgid "" -"How does the |project_name| plugin determine whether a layer should be " -"listed in the :guilabel:`In the event of` or :guilabel:`How many` combo " -"boxes? The plugin relies on simple keyword metadata associated with each " -"layer." -msgstr "" - -# ebb9f940dad244e38f138f9b5cc15ce8 -#: ../../source/user-docs/application-help/dock.rst:93 -msgid "" -"The keyword system is described in detail in :doc:`keywords`. Each layer " -"that has a keyword defining its **category** as **hazard** will be listed in " -"the :guilabel:`In the event of` combo box. Similarly, a **category** of " -"**exposure** in the keywords will result in a layer being listed under the :" -"guilabel:`How many` combo box." -msgstr "" - -# 24905d4449134b7db728ae65068df2a9 -#: ../../source/user-docs/application-help/dock.rst:99 -msgid "" -"|project_name| uses the combination of **category**, **subcategory**, " -"**units** and **datatype** keywords to determine which **impact functions** " -"will be listed in the :guilabel:`Might` combo box." -msgstr "" - -# e33e7c703dc94346a898161ad44dd238 -#: ../../source/user-docs/application-help/dock.rst:103 -msgid "" -"The impact function can be configured (if applicable) by pressing the :" -"guilabel:`...` button next to the chosen impact function." -msgstr "" - -# 0db68d3522374745898c87692c3b7e7a -#: ../../source/user-docs/application-help/dock.rst:106 -msgid "" -"This is explained in more detail below under :ref:`analysis_parameters`." -msgstr "" - -# c45ad098cec44f7aa95dec15d7ef291e -#: ../../source/user-docs/application-help/dock.rst:108 -msgid "" -"As of InaSAFE 1.2, you can also choose an aggregation layer for both raster " -"and vector layers." -msgstr "" - -# e724cafc68394df89ac482357047abff -#: ../../source/user-docs/application-help/dock.rst:111 -msgid "" -"Aggregation allows you to specify an additional layer when defining the " -"analysis criteria. This layer is used to provide a by-area breakdown of the " -"results of the analysis. For example, if you are carrying out an analysis " -"for a city, you can use district areas within the city to provide per-area " -"results. In the absence of an aggregation layer, the analysis extent is used " -"as the aggregation unit. To use this option you must load a polygon layer " -"into QGIS that represents the areas you wish to summarise by." -msgstr "" - -# 2a842ac5df1c46e58fbb21ce11f00214 -#: ../../source/user-docs/application-help/dock.rst:119 -msgid "" -"After running an analysis, the questions area is hidden to maximise the " -"amount of space allocated to the results area (see below). You can re-open " -"the question area at any time by pressing the :guilabel:`Show question form` " -"button." -msgstr "" - -# 3285d28d54f340279555e5a6e15a71b5 -#: ../../source/user-docs/application-help/dock.rst:125 -msgid "The results area" -msgstr "" - -# 7323e00f797944feaf82347b8e01b1ea -#: ../../source/user-docs/application-help/dock.rst:127 -msgid "" -"The results area is used to display feedback to the user. Once an impact " -"scenario has been run (see next section), a summary table will be shown." -msgstr "" - -# c14ef4d5baa24660ae9e46899fb05780 -#: ../../source/user-docs/application-help/dock.rst:136 -msgid "*Results shown after processing of scenario*" -msgstr "" - -# 083cbaa56e4344a096611e9ddd1dd44b -#: ../../source/user-docs/application-help/dock.rst:138 -msgid "" -"If you select an **impact layer** (i.e. a layer that was produced using an |" -"project_name| impact function), in the QGIS Layers panel, this summary will " -"also be displayed in the results area." -msgstr "" - -# 9ad4d74764c34a5b8db2227a671ea8cf -#: ../../source/user-docs/application-help/dock.rst:142 -msgid "" -"When you select a **hazard** or **exposure** layer in the QGIS Layers panel, " -"the keywords for that layer will be shown in the :guilabel:`Results` area, " -"making it easy to understand what metadata exists for that layer." -msgstr "" - -# d9f632bfe21c465d8b0855c5e3f00ab5 -#: ../../source/user-docs/application-help/dock.rst:151 -msgid "*Showing keywords for active layer*" -msgstr "" - -# 8c3fe1a8582a4fab9a7db0b245b3434f -#: ../../source/user-docs/application-help/dock.rst:153 -msgid "" -"The :guilabel:`Results` area is also used to display status information. For " -"example, when a suitable combination of **hazard** (:guilabel:`In the event " -"of`), **exposure** (:guilabel:`How many`) and **impact function** (:guilabel:" -"`In the event of`) are selected, the results area will be updated to " -"indicate that you can proceed to run the impact scenario calculation. The :" -"guilabel:`Run` button will be activated." -msgstr "" - -# 61398f4673e04e13b5f49fb1284f77cf -#: ../../source/user-docs/application-help/dock.rst:165 -msgid "*Run button activated*" -msgstr "" - -# 4e779efe9608485d98c94b40c4761917 -#: ../../source/user-docs/application-help/dock.rst:167 -msgid "" -"Finally, the results area is also used to display error messages so that the " -"user is informed as to what went wrong and why. You may need to scroll down " -"a bit in the window." -msgstr "" - -# 70a11a0da7f241dea01b9eb6ff23f9c8 -#: ../../source/user-docs/application-help/dock.rst:176 -msgid "*Showing error messages*" -msgstr "" - -# 2b2c5665e05e4911b3037c630a8e26b4 -#: ../../source/user-docs/application-help/dock.rst:178 -msgid "" -"To allow more space for the results your question is automatically hidden to " -"make the results area as large as possible for displaying the results. If " -"you want to have a look again what the question was that you formulated " -"click on the :guilabel:`Show question form` button at the top of the results " -"area." -msgstr "" - -# c357acedd7084cf1bf718f5898ee8346 -#: ../../source/user-docs/application-help/dock.rst:189 -msgid "*Show question form*" -msgstr "" - -# 8f609c4db5ac45dbbc822784846a9c97 -#: ../../source/user-docs/application-help/dock.rst:191 -msgid "" -"To hide the question again to have more space for the results, simply make " -"active the layer which |project_name| created during the calculation in the " -"Layers panel." -msgstr "" - -# e2a9a762c3114b1db35ac8dc9251f9a7 -#: ../../source/user-docs/application-help/dock.rst:195 -msgid "" -"At the bottom of the error display you may see a button like the following. " -"Click on this button to display a box which contains diagnostic information " -"that can be submitted as part of a bug report if you think the error was " -"incorrect." -msgstr "" - -# 26039dd0772547afa738e3e387e6d36b -#: ../../source/user-docs/application-help/dock.rst:204 -msgid "The buttons area" -msgstr "" - -# b4db349d90044872bf13aab52216eb80 -#: ../../source/user-docs/application-help/dock.rst:206 -msgid "The buttons area contains four buttons:" -msgstr "" - -# 041955547b0842e8b676672c3013fd4a -#: ../../source/user-docs/application-help/dock.rst:213 -msgid "*Buttons Area*" -msgstr "" - -# 835ff369a5f54900879f6f351f95105f -#: ../../source/user-docs/application-help/dock.rst:215 -msgid "" -":guilabel:`Help` - click on this if you need context help, such as the " -"document you are reading right now!" -msgstr "" - -# 2530b4c75f304cff8ca54e1b7a8084c4 -#: ../../source/user-docs/application-help/dock.rst:217 -msgid "" -":guilabel:`About` - click on this to get information about |project_name|." -msgstr "" - -# 497a779f073246a9a9e574fbfe69a900 -#: ../../source/user-docs/application-help/dock.rst:218 -msgid "" -":guilabel:`Print...` - click on this if you wish to create a PDF of your " -"impact scenario project or to generate a report and open it in composer for " -"further tuning. An **impact layer** must be active before this button will " -"be enabled." -msgstr "" - -# d4a6a1bbdcaa4bb0b505d2396e3001d7 -#: ../../source/user-docs/application-help/dock.rst:222 -msgid "" -":guilabel:`Run` - when the combination of options in the questions area is " -"suitable to be run, this button is enabled." -msgstr "" - -# a0192127e426438fbc1de810180a49c4 -#: ../../source/user-docs/application-help/dock.rst:226 -msgid "Data conversions when running a scenario" -msgstr "" - -# 4db6e39820a548e0aee49f6e940f6b12 -#: ../../source/user-docs/application-help/dock.rst:228 -msgid "" -"When running a scenario, the data being used needs to be processed into a " -"state where it is acceptable for use by the impact function. In particular " -"it should be noted that:" -msgstr "" - -# 25c83c3130524166970e697ba4dd7972 -#: ../../source/user-docs/application-help/dock.rst:232 -msgid "Remote datasets will be copied locally before processing" -msgstr "" - -# cf79e0a2422d496da9ee4937159c8943 -#: ../../source/user-docs/application-help/dock.rst:233 -msgid "" -"All datasets will be clipped to the intersection of the **hazard** layer, " -"the **exposure** layer and the current view extents" -msgstr "" - -# 70b4f1fdc98c42529f97725f955d564b -#: ../../source/user-docs/application-help/dock.rst:235 -msgid "" -"All clipped datasets will be converted (reprojected) to Geographic " -"(EPSG:4326) coordinate reference system before analysis" -msgstr "" - -# 96a09ef2446b470ba9a173638a7edf95 -#: ../../source/user-docs/application-help/dock.rst:241 -msgid "Setting analysis parameters" -msgstr "" - -# 7ee12cb27c96495c9efba0f31fa90067 -#: ../../source/user-docs/application-help/dock.rst:243 -msgid "" -"Depending on the impact function you choose there will be different options " -"to adjust the parameters of the the question you are asking. Some impact " -"functions have more configurable options and some have less. This depends on " -"the impact function itself and the question you are asking." -msgstr "" - -# 7f966eb41115473a9bd1c28819eed79e -#: ../../source/user-docs/application-help/dock.rst:248 -msgid "" -"To open the impact function configuration dialog click on the :guilabel:`..." -"` Button next to the :guilabel:`Might` combo box." -msgstr "" - -# ec08975488884c60877f3293de4f7e13 -#: ../../source/user-docs/application-help/dock.rst:256 -msgid "*Open the impact function configurator*" -msgstr "" - -# 7286541c283c4b8fb797eff29cb8899a -#: ../../source/user-docs/application-help/dock.rst:258 -msgid "There will be up to three tabs available:" -msgstr "" - -# 0039d4aa87554515ba2f61892f89db93 -#: ../../source/user-docs/application-help/dock.rst:260 -msgid "" -":guilabel:`Options`: Depending in the impact function you select, you can " -"influence the result of your question here (the impact function) by setting " -"different initial values which are presented depending on the function you " -"choose (not all impact functions may be customised)." -msgstr "" - -# f50c2dde6ef8410ca5985dc2e03ed2a9 -#: ../../source/user-docs/application-help/dock.rst:264 -msgid "" -":guilabel:`Postprocessors`: This takes the results from the impact function " -"and calculates derivative indicators. For example, if you have an affected " -"population total, the gender postprocessor will calculate gender specific " -"indicators such as additional nutritional requirements for pregnant women." -msgstr "" - -# 99b905b409d84cc49b690c0a28a6f932 -#: ../../source/user-docs/application-help/dock.rst:268 -msgid "" -":guilabel:`Minimum Needs`: If the impact function calculates effects on " -"people, this calculates the minimum needs of the people affected by the " -"impact scenario. To use this you should have the necessary data available " -"and calculate this by using the :ref:`minimum_needs`." -msgstr "" - -# e35ae668bd7148a3b99da89b9625886c -#: ../../source/user-docs/application-help/dock.rst:282 -msgid "Generating impact report" -msgstr "" - -# c6feeb7acb654228915193c46d7bfcf4 -#: ../../source/user-docs/application-help/dock.rst:284 -msgid "" -"When scenario analysis is complete you may want to generate a report. " -"Usually the :guilabel:`Print...` button will be enabled immediately after " -"analysis. If it is still inactive, select the impact layer in the Layers " -"panel." -msgstr "" - -# eabc21359f754c91933596866fef3d78 -#: ../../source/user-docs/application-help/dock.rst:288 -msgid "" -"To generate a report click on the :guilabel:`Print...` button in the buttons " -"area. This will open an :guilabel:`Impact report` dialog." -msgstr "" - -# d8846dec8883463388c8aae327a5759f -#: ../../source/user-docs/application-help/dock.rst:296 -msgid "*Impact report configuration*" -msgstr "" - -# 665ef6a98b3142b3b8fa00b29382da78 -#: ../../source/user-docs/application-help/dock.rst:298 -msgid "The dialog has three components:" -msgstr "" - -# c74587c84ec849a590d6b2ba1c81dae2 -#: ../../source/user-docs/application-help/dock.rst:300 -msgid "" -":guilabel:`Area to print` allows you to customise the extent of the report " -"map. There are two options available. Choose :guilabel:`Current extent` if " -"the current canvas extent represents the necessary area. Choose :guilabel:" -"`Analysis extent` to set the extent of the report map to the impact layer " -"extent." -msgstr "" - -# f3b1742499ba42a394fdc12186f5406b -#: ../../source/user-docs/application-help/dock.rst:306 -msgid "" -":guilabel:`Template to use` allows you to select a template for the report. " -"The combo box lists all templates bundled with the plugin as well as " -"templates from the user-defined template directory (see :ref:" -"`toolbar_options` for information on how to set the templates directory). It " -"is also possible to select a custom template from any location - activate " -"the radio button under the combo box and provide a path to the template " -"using the :guilabel:`...` button." -msgstr "" - -# 29d4ddb6076f4010800f3ab92c3e778a -#: ../../source/user-docs/application-help/dock.rst:313 -msgid "" -"At the bottom are four buttons: :guilabel:`Open PDF` will generate the " -"report and export it in PDF format. The resulting file(s) will be opened in " -"your default PDF viewer. :guilabel:`Open composer` is used when you need to " -"adjust the generated report before printing. Click this button and the " -"report will be opened in the QGIS composer, where you can edit it as needed." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/impact_functions.po b/docs/i18n/en/LC_MESSAGES/user-docs/application-help/impact_functions.po deleted file mode 100644 index 90ed941c..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/impact_functions.po +++ /dev/null @@ -1,141 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-01 22:03+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 4fd1705e66cf47eeb70b711581e06153 -#: ../../source/user-docs/application-help/impact_functions.rst:8 -msgid "Understand Impact Functions" -msgstr "" - -# e0c4221a299a4d8b9fdd3c88faf48021 -#: ../../source/user-docs/application-help/impact_functions.rst:10 -msgid "" -"This document explains the purpose of impact functions and lists the " -"different available impact function and the requirements each has to be used " -"effectively." -msgstr "" - -# b76f25e952c84f359fcb93b69144981e -#: ../../source/user-docs/application-help/impact_functions.rst:15 -msgid "What is an impact function?" -msgstr "" - -# c593910df53c489c8731b9cd2e2b8f7e -#: ../../source/user-docs/application-help/impact_functions.rst:17 -msgid "" -"An impact function is a software program that computes an impact assessment " -"given a number of inputs. The impact assessment will typically have a " -"*spatial* component (e.g. a GIS layer which can be incorporated into a map) " -"and a *non-spatial* component (e.g. a list of actions you may want to " -"consider carrying out, or a list of estimates of disaster risk reduction " -"elements such as how many bags of rice to make available)." -msgstr "" - -# fd7ea4ba93564badbe3b54274af4c88d -#: ../../source/user-docs/application-help/impact_functions.rst:26 -msgid "Selecting an impact function" -msgstr "" - -# 35a44408369846b5b3ec914427e601b1 -#: ../../source/user-docs/application-help/impact_functions.rst:28 -msgid "" -"Impact functions are bundled with the |project_name| software. The graphical " -"user interface (provided as a plugin for QGIS) will offer a list of impact " -"functions that can be used based on the layers you have loaded and their :" -"doc:`keywords `." -msgstr "" - -# d06d96c7311c4f05a7e10ca33e1f252f -#: ../../source/user-docs/application-help/impact_functions.rst:34 -msgid "Exploring impact functions" -msgstr "" - -# 0928baee3b234e8a974af0ebd1d31090 -#: ../../source/user-docs/application-help/impact_functions.rst:36 -msgid "" -"You can use the impact function table to explore all of the possible impact " -"functions that can be used. They are listed in a table with a series of pick-" -"lists (combo boxes) above which can be used to filter the functions based on " -"different criteria as illustrated below." -msgstr "" - -# d620297297864ed9a8aa74d6a6187fce -#: ../../source/user-docs/application-help/impact_functions.rst:47 -msgid "*Unfiltered impact function table*" -msgstr "" - -# a0e1774096cb4d518d0bcf005cce6333 -#: ../../source/user-docs/application-help/impact_functions.rst:49 -msgid "" -"When applying a filter set, the list of available functions that meet those " -"criteria is updated as shown below." -msgstr "" - -# e78c0ac799624ca0851bcf0c7a03cea6 -#: ../../source/user-docs/application-help/impact_functions.rst:57 -msgid "*Filtered impact function table*" -msgstr "" - -# fafd1bda38ed467b984ea3d3f5d56ade -#: ../../source/user-docs/application-help/impact_functions.rst:59 -msgid "" -"The impact function table is simply a browser to help you to familiarise " -"yourself with the functions available. For the actual usage of the functions " -"you need to have layers available (i.e. loaded in QGIS) with the appropriate " -"keywords for your target function." -msgstr "" - -# 7ff308d63f7242a8b8104645367205e7 -#: ../../source/user-docs/application-help/impact_functions.rst:65 -msgid "Configurable impact functions" -msgstr "" - -# d7811963e88e4630ba6903f324265e33 -#: ../../source/user-docs/application-help/impact_functions.rst:67 -msgid "" -"Some impact functions can be configured before use. For example if you have " -"a raster flood hazard layer where each pixel represents flood depth, you can " -"set depth thresholds (low / medium / high)." -msgstr "" - -# 648f2a2619f84d93a80c917b5955dbde -#: ../../source/user-docs/application-help/impact_functions.rst:72 -msgid "Creating impact functions" -msgstr "" - -# 5c85f4b5546c47aebd115e3e0d4135bf -#: ../../source/user-docs/application-help/impact_functions.rst:74 -msgid "" -"If you feel there is an important impact function which is missing, there " -"are two avenues you can follow:" -msgstr "" - -# ec979050a11647f7be31fd20e43a681c -#: ../../source/user-docs/application-help/impact_functions.rst:77 -msgid "" -"If you have basic python programming skills, you could implement a new " -"impact function yourself." -msgstr "" - -# 68b8784132c4428da85efa2ddb8ac1c4 -#: ../../source/user-docs/application-help/impact_functions.rst:79 -msgid "" -"You can file a ticket on our `issue tracking system `_, and if time and resources allow we will implement " -"it for you." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/impact_layer_merge_tool.po b/docs/i18n/en/LC_MESSAGES/user-docs/application-help/impact_layer_merge_tool.po deleted file mode 100644 index ce6cc950..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/impact_layer_merge_tool.po +++ /dev/null @@ -1,336 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 039dd008a7414484a0e8777af393661d -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:8 -msgid "The Impact Layer Merge Tool" -msgstr "" - -# c3c24556df6b4b1b8a844577b40f26fc -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:10 -msgid "" -"In some cases you may wish to create a report containing the combined output " -"of two impact functions for the same area for the **same hazard** but " -"**different exposures**. For example, you may carry out an assessment of the " -"impact of a flood on population and on buildings and combine the results " -"into a single report. The Impact Layer Merge tool allows you to do this." -msgstr "" - -# 6c2c3aedcf7e4ccaa4b0d1481dba4415 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:22 -msgid "*Opened impact merge dialog*" -msgstr "" - -# a30f97b33fb24f9a91773e5fe0c34b14 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:25 -msgid "Prerequisites" -msgstr "" - -# 10939c7dc1e045129389e181b03329cf -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:27 -msgid "" -"In order to use this tool, please bear in mind the following requirements:" -msgstr "" - -# 7268222e7ffd44bc971a53b0a9137049 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:29 -msgid "Both impact layers should be loaded in your current project" -msgstr "" - -# b1ca8f24d04443348c12c52be90685ab -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:30 -msgid "" -"Both impact layers should have been created for the same geographic region" -msgstr "" - -# cf6bfe32144843a290bc078b18d09a38 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:31 -msgid "The same aggregation area should be used for both assessments" -msgstr "" - -# 29dd67f2aa8e4901b9ee93724bde9314 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:34 -msgid "Procedure" -msgstr "" - -# dabb8db67e8d40e7be0a88a4ed9edf8b -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:36 -msgid "To use this tool, follow this procedure:" -msgstr "" - -# 4b0d8472933e43d8bc1f985ddfc5e356 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:38 -msgid "" -"Run an impact assessment for an area using aggregation. such as flood impact " -"on buildings aggregated by municipal boundaries." -msgstr "" - -# f06c1d956acb4e8fb65c534c9cfaab2b -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:40 -msgid "" -"Run a second impact assessment for the same area using the same aggregation. " -"e.g. flood impact on people aggregated by municipal boundaries." -msgstr "" - -# 64a924a0493240b48bcdc3d3de0aca12 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:42 -msgid "" -"Open the Impact Merge tool and select each impact layer from the pick lists " -"provided." -msgstr "" - -# 7922256af6724dd98f41a7cf5c33075f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:44 -msgid "" -"Select the aggregation layer that was used to generate the first and second " -"impact layer." -msgstr "" - -# 8ccc9a08787840f29c04b2b7ec8f5e2f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:46 -msgid "Select an output directory." -msgstr "" - -# 34890d7014dc48e4b2205c48042bff85 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:47 -msgid "" -"Check the box next to :guilabel:`Use customized report template` and select " -"the report template file if you want to use your own template. Note that all " -"the map composer components that are needed must be completed." -msgstr "" - -# fe4afb2258784cad9413ec26319f7dd4 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:50 -msgid "" -"Click :guilabel:`OK` to generate the per aggregation area combined summaries." -msgstr "" - -# c888b0dfde8c4b12bfd521919843e80f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:53 -msgid "Generated outputs" -msgstr "" - -# 481b824f6026482b8c68d5aab24ed45e -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:55 -msgid "" -"The tool will generate a PDF per aggregation area. The PDFs will be placed " -"in the designated output directory after completion of the merge process. " -"The output will consist of a map page and a table page. These are " -"illustrated below:" -msgstr "" - -# b4ce03768f4e408b85fe205e738525a7 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:65 -msgid "*Map page generated by the impact merge tool*" -msgstr "" - -# 0cbf80374f5a4e9dbce92b0599c41772 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:73 -msgid "*Table page generated by the impact merge tool*" -msgstr "" - -# f2969273dc74433a9079929067f19096 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:75 -msgid "" -"In the case of impact assessments where no aggregation has been used, only a " -"single PDF report is generated. In the case of impact assessments where " -"aggregation has been used, one PDF is generated per aggregation area." -msgstr "" - -# ae0d654165d347baaba53a20c8532a42 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:79 -msgid "" -"After report generation completes, the output directory will be opened " -"automatically." -msgstr "" - -# 75857b1427e44c2083f1f6df4f587dfc -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:83 -msgid "Using customised templates" -msgstr "" - -# a4a709f109ff4577be746fa928864f5e -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:84 -msgid "" -"The default template report is located in :file:`/resources/qgis-composer-" -"templates/merged-report.qpt`. If that template does not satisfy your needs, " -"you can use your own report template. Before using your own report template, " -"make sure that your template contains all of these elements with id:" -msgstr "" - -# d80f52afc7dc421da904800b581f2c2f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:90 -msgid "**impact-map**, a QgsComposerMap" -msgstr "" - -# 56206dd11776491aae49f9f070508280 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:91 -msgid "**safe-logo**, a QgsComposerPicture" -msgstr "" - -# 586e70f101724ae0a30ff7fb886986ec -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:92 -msgid "**summary-report**, a QgsComposerLabel" -msgstr "" - -# 876e736fc8c14070bb6453e3ab50d74b -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:93 -msgid "**aggregation-area**, a QgsComposerLabel" -msgstr "" - -# b501bd72637f4e45b7250088c11e7a3f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:94 -msgid "**map-scale**, a QgsComposerScaleBar" -msgstr "" - -# f31edd65855741a685cff99f99a3259c -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:95 -msgid "**map-legend**, a QgsComposerLegend" -msgstr "" - -# 19dbd3c019f2460e895c748f2a56eec4 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:96 -msgid "**organisation-logo**, a QgsComposerPicture" -msgstr "" - -# 6d70996d54f9417caec98a987c8e0315 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:97 -msgid "**merged-report-table**, a QgsComposerHTML" -msgstr "" - -# 298d875c5f0441dbb9fd094ce7f81db3 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:99 -msgid "" -"If any of those elements does not exist on the report template, the tools " -"will tell you what element is missing on the template." -msgstr "" - -# 2232728964524ab799dd8b045b53f06b -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:102 -msgid "You can arrange those elements in any position you want." -msgstr "" - -# 89d53b5331d148c8ad167a8c0311e44f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:105 -msgid "Map template elements" -msgstr "" - -# 3ab56b8713d94619909be5a587ae2a20 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:106 -msgid "" -"In terms of value replacement, there are three groups of elements on the " -"template:" -msgstr "" - -# 07121ad53ddf41cbaf093bd1af85f965 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:108 -msgid "" -"1. Elements that can be changed with the |project_name| Options tool. To " -"change the value of these elements, please go to **InaSAFE Options** and " -"change the value of the related field. Those elements are:" -msgstr "" - -# 40b5c1baefa44d82ad47dd5d2b0cf9ee -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:113 -msgid "" -"**organisation-logo**. It corresponds to the :guilabel:`Organisation logo` " -"field in InaSAFE Options. If you do not fill this field, then the default " -"one, :file:`supporters.png`, will be used." -msgstr "" - -# 7f0e399bfb4743cc989c323e1e339705 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:117 -msgid "" -"**disclaimer**. This corresponds to the :guilabel:`Disclaimer text` field in " -"InaSAFE Options. If you do not fill in this field the default text will be " -"used: \"InaSAFE has been jointly developed by Indonesian Government-BPNB, " -"Australian Govenment-AIFDR and the World Bank-GFDRR. These agencies and the " -"individual software developers of InaSAFE take no responsibility for the " -"correctness of outputs from InaSAFE or decisions derived as a consequence.\"" -msgstr "" - -# 15318aad487b4def8ea90b7dda838d18 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:124 -msgid "" -"2. Elements containing tokens. The id of these elements is not significant, " -"only the token it contains. At render time, these tokens will be replaced. " -"If you want to have a label containing the value of these elements, enclose " -"these elements with [] on a label i.e **[impact-title]** or **[hazard-" -"title]**. The elements are listed below:" -msgstr "" - -# 6fa62273a623439080cd2333a1d542d9 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:129 -msgid "" -"**impact-title** - indicates the title of two impacts. The value will be " -"\"*first_impact_title* and *second_impact_title*\"" -msgstr "" - -# 1ddcdf546c0044fea2ade3ba6f6d0983 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:130 -msgid "" -"**hazard-title** - indicates the hazard title used to generate the impact " -"layer." -msgstr "" - -# 2e9eddd655fa4c3392e783819a42f3f0 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:132 -msgid "" -"3. Elements that are direcly updated by the renderer. All of these elements " -"below are generated automatically by the tools." -msgstr "" - -# dd25d8b273414bff99755133a4ef4b42 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:135 -msgid "**impact-map**. This contains the map of two impact layers." -msgstr "" - -# 9f3f061f71c444a18ca25399c682224f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:136 -msgid "" -"**summary-report**. This contains the summary of the impact from two impact " -"layers." -msgstr "" - -# 177bdbfa00c64aff86359916e7760d63 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:137 -msgid "**aggregation-area**. This contains the name of the aggregation area." -msgstr "" - -# e91fad77fd924e89b3fdf7780e28ec5d -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:138 -msgid "" -"**map-scale**. This indicates the scale of the map. To work with any layer " -"projection preferences, we encourage you to use a numeric scale bar." -msgstr "" - -# 7bb4a52dbfdc4c2f91ab8dd9a2e1c9ae -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:139 -msgid "" -"**map-legend**. This shows the legend of merged impact layers. The map " -"legend on default template is set to have 2 columns showing each impact " -"layer legend." -msgstr "" - -# 0a9ae0e4b0914755bdd091d922cf082d -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:140 -msgid "" -"**merged-report-table**. This contains the detailed information of each " -"impact." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/index.po b/docs/i18n/en/LC_MESSAGES/user-docs/application-help/index.po deleted file mode 100644 index c6245a64..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/index.po +++ /dev/null @@ -1,30 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# b5c5fca9eb1140b298b5a17ee53d4bfc -#: ../../source/user-docs/application-help/index.rst:8 -msgid "Application Help" -msgstr "" - -# fe9f3bd58258452c8d91805751fe1e35 -#: ../../source/user-docs/application-help/index.rst:10 -msgid "" -"This section explains in detail the different functions available in |" -"project_name|, where to find them and how to use them." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/keywords.po b/docs/i18n/en/LC_MESSAGES/user-docs/application-help/keywords.po deleted file mode 100644 index 774cae29..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/keywords.po +++ /dev/null @@ -1,726 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-02 19:18+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# e71a75dd0b1040e3b3eb032a66715f1c -#: ../../source/user-docs/application-help/keywords.rst:8 -msgid "Keywords System" -msgstr "" - -# 058e5595c46b4594a99ffc622904b4cf -#: ../../source/user-docs/application-help/keywords.rst:10 -msgid "" -"This document describes the purpose and usage of the |project_name| keywords " -"system." -msgstr "" - -# 34f09385ea3743cf8df98d4378b1a28b -#: ../../source/user-docs/application-help/keywords.rst:13 -msgid "" -"Please also refer to the documentation on the :ref:`keywords wizard " -"` and the :ref:`keywords editor `, tools " -"which help in the creation of keywords files." -msgstr "" - -# b37d6c313e9c44dcae8106508e2b327e -#: ../../source/user-docs/application-help/keywords.rst:19 -msgid "Purpose" -msgstr "" - -# e9d4e2d7b8894ce58358613a619bdece -#: ../../source/user-docs/application-help/keywords.rst:21 -msgid "" -"The keywords system is used by :ref:`impact functions ` to " -"determine the nature of the input layers that have been passed to them." -msgstr "" - -# a257ec94579f454ebd6244f4261b61e7 -#: ../../source/user-docs/application-help/keywords.rst:24 -msgid "" -"Each input dataset used by |project_name| needs to have an accompanying " -"keywords file. The purpose of the keywords file is to provide additional " -"metadata needed by the impact functions. For example, the keywords file will " -"indicate whether a given dataset should be treated as a *hazard* or an " -"*impact* layer. It is also used to indicate the context of the layer (e.g. " -"\"it's a *flood* layer\", \"it's an *earthquake* layer\")." -msgstr "" - -# 98b113d3d6d44eda8fcff9365d8f15e2 -#: ../../source/user-docs/application-help/keywords.rst:33 -msgid "" -"By convention and expectation, the keywords file should be named with the " -"same base name of the GIS datasource it accompanies. For example a flood " -"dataset saved as" -msgstr "" - -# 3016180079e442fb941883d4a99dfbc3 -#: ../../source/user-docs/application-help/keywords.rst:37 -msgid ":file:`C:\\\\gisdata\\\\flood.tif`" -msgstr "" - -# d9e3e9c1c54448e0a21becb1d203648d -#: ../../source/user-docs/application-help/keywords.rst:39 -msgid "would need to have an accompanying keywords file saved as:" -msgstr "" - -# dec30b06385746e4827fdf39d935ea97 -#: ../../source/user-docs/application-help/keywords.rst:41 -msgid ":file:`C:\\\\gisdata\\\\flood.keywords`" -msgstr "" - -# a217441e6778482bbe7920b35d763e24 -#: ../../source/user-docs/application-help/keywords.rst:43 -msgid "" -"We recommend that you **avoid using spaces** in your file names and file " -"paths!" -msgstr "" - -# b83b569429544207a2de997802f239f1 -#: ../../source/user-docs/application-help/keywords.rst:46 -msgid "" -"The |project_name| plugin provides an editor for these keywords. The purpose " -"of this document is to describe the keywords editor and to provide " -"guidelines as to the use of keywords." -msgstr "" - -# b1dd0b192f2b41e79000fc4885ef352d -#: ../../source/user-docs/application-help/keywords.rst:50 -msgid "" -"Currently keywords are not validated by the library. This means that if you " -"misspell a keyword, use the wrong letter case (e.g. upper case instead of " -"lower case) or provide the wrong keyword for the context (e.g. provide a " -"subcategory of flood to an exposure category), the system will not be able " -"to determine what to do with the file. For that reason you should follow the " -"guidelines below carefully to ensure you have entered your keywords " -"correctly." -msgstr "" - -# 82a14cca424b4bc09bff6989212d8eb3 -#: ../../source/user-docs/application-help/keywords.rst:60 -msgid "Guidelines" -msgstr "" - -# 6d3d84ac88f1414f9fc7ba745c516bdf -#: ../../source/user-docs/application-help/keywords.rst:62 -msgid "In this section we lay out the guidelines for keyword usage." -msgstr "" - -# 44a4f92dcc5443889dac9f5b46ef69c9 -#: ../../source/user-docs/application-help/keywords.rst:65 -msgid "Category" -msgstr "" - -# 01aa74b7ab2b4f72a4f40b33c35c76c9 -#: ../../source/user-docs/application-help/keywords.rst:67 -msgid "" -"Every dataset should have a category assigned to it. The category should be " -"written in lower case." -msgstr "" - -# dfe74bd774ad40509418a94ec3b521c8 -# fb5480b4fc294108a1e33205f93b8011 -# 3e3d8d7219404bca8cdc527a0e7d54d2 -# 9420e95446754afcb520d4453adb176d -# 56c097c8bc194defa743ab1056b97177 -# 066fd08f72cc4ebdb694a81ecdbd205b -# 15027b2284c447099d08c05946f3fd55 -# cff59ee2d95b4d2fb748d72695ed480b -# e7642a4a7d6044b8b6c2b7403d8242d7 -#: ../../source/user-docs/application-help/keywords.rst:73 -#: ../../source/user-docs/application-help/keywords.rst:95 -#: ../../source/user-docs/application-help/keywords.rst:112 -#: ../../source/user-docs/application-help/keywords.rst:142 -#: ../../source/user-docs/application-help/keywords.rst:171 -#: ../../source/user-docs/application-help/keywords.rst:190 -#: ../../source/user-docs/application-help/keywords.rst:213 -#: ../../source/user-docs/application-help/keywords.rst:230 -#: ../../source/user-docs/application-help/keywords.rst:250 -msgid "Key" -msgstr "" - -# 858f5cda51c44bb3bf459f66e3abc276 -# 673f7646250d4a71bebf106157c475ad -# f6bec53f023945cba5c0588c10025f00 -# 568041f8fd5d40ba8f8d9909c95b7f98 -# 2986d9ccf6564251920a58e2ac148ee7 -# bdc96922c60641ac9ff83cac36503ec3 -# a45ae09d43cb454e8b36e2d3b93d2065 -# 4709260d511442f38db9ecda623fd9b7 -# 1e1d2a81157249488f3bfbbf7204b94c -#: ../../source/user-docs/application-help/keywords.rst:73 -#: ../../source/user-docs/application-help/keywords.rst:95 -#: ../../source/user-docs/application-help/keywords.rst:112 -#: ../../source/user-docs/application-help/keywords.rst:142 -#: ../../source/user-docs/application-help/keywords.rst:171 -#: ../../source/user-docs/application-help/keywords.rst:190 -#: ../../source/user-docs/application-help/keywords.rst:213 -#: ../../source/user-docs/application-help/keywords.rst:230 -#: ../../source/user-docs/application-help/keywords.rst:250 -msgid "Allowed Values" -msgstr "" - -# c07abbabb5ce41c699c7dc04cc1ab3fc -# 03cd41f38c2c40829273484a73414467 -#: ../../source/user-docs/application-help/keywords.rst:75 -#: ../../source/user-docs/application-help/keywords.rst:76 -msgid "category" -msgstr "" - -# 1c790cd80aeb4758b95dc7cd5e1daf8f -#: ../../source/user-docs/application-help/keywords.rst:75 -msgid "exposure" -msgstr "" - -# 748400762cbe4aca973a409467c6f4a3 -#: ../../source/user-docs/application-help/keywords.rst:76 -msgid "hazard" -msgstr "" - -# 5bdae38305674938b48bc05bb6f6ea57 -# 001753b4d07f46e69a5e78eb9a3ec7ee -#: ../../source/user-docs/application-help/keywords.rst:80 -#: ../../source/user-docs/application-help/keywords.rst:120 -msgid "Example keywords file entry: ::" -msgstr "" - -# d44a93817bd043809c39c94b6a9350e3 -#: ../../source/user-docs/application-help/keywords.rst:86 -msgid "Subcategory" -msgstr "" - -# c17c67251e8f48aeb3955f1cb1a32ae0 -#: ../../source/user-docs/application-help/keywords.rst:88 -msgid "The selection of a subcategory value is dependent on the category:" -msgstr "" - -# 2fd2aaaca1df472098dce49ec7a38139 -#: ../../source/user-docs/application-help/keywords.rst:90 -msgid "Valid subcategories for category 'hazard':" -msgstr "" - -# a66e636433dd443b86b9912401cb7032 -# 8a49c56a164c45e9a9a58f786161c6cc -# cf13d829715947c882971614f1f6b492 -# 75c7aff5956e426b94c4bc22ded4aed3 -# 91930404c4db40f8a017819f9a3786e3 -# 1a5a6095f5784962a2b605e2dc4cec6e -# 4c81e844ab144416a17d98e067432c31 -# f756e508ee8a461dae83c1ac93fdad71 -# 4fd1d43096ca48768821cce2c3e02168 -#: ../../source/user-docs/application-help/keywords.rst:97 -#: ../../source/user-docs/application-help/keywords.rst:98 -#: ../../source/user-docs/application-help/keywords.rst:99 -#: ../../source/user-docs/application-help/keywords.rst:100 -#: ../../source/user-docs/application-help/keywords.rst:101 -#: ../../source/user-docs/application-help/keywords.rst:102 -#: ../../source/user-docs/application-help/keywords.rst:114 -#: ../../source/user-docs/application-help/keywords.rst:115 -#: ../../source/user-docs/application-help/keywords.rst:116 -msgid "subcategory" -msgstr "" - -# 3a6636cab86c43baa6c35b35c80a2d70 -#: ../../source/user-docs/application-help/keywords.rst:97 -msgid "earthquake" -msgstr "" - -# 3dd1d120f19944e3874f3da6a7cfe06a -#: ../../source/user-docs/application-help/keywords.rst:98 -msgid "flood" -msgstr "" - -# f194ac5245694e5990da4204da9677e2 -#: ../../source/user-docs/application-help/keywords.rst:99 -msgid "generic" -msgstr "" - -# 8d78a957cb17436ab75e0cf998db9e9b -#: ../../source/user-docs/application-help/keywords.rst:100 -msgid "tephra*" -msgstr "" - -# 3674c34ede2542fe91e68b2e772b99c1 -#: ../../source/user-docs/application-help/keywords.rst:101 -msgid "tsunami" -msgstr "" - -# ad55ee1c2783441d9dd2687ff466cd2c -#: ../../source/user-docs/application-help/keywords.rst:102 -msgid "volcano" -msgstr "" - -# c854797937ab48fcbfc2314e45b79da3 -#: ../../source/user-docs/application-help/keywords.rst:105 -msgid "*tephra is volcanic ashfall*" -msgstr "" - -# 126b297447c94def98128dc507b668c5 -#: ../../source/user-docs/application-help/keywords.rst:107 -msgid "Valid subcategories for category 'exposure':" -msgstr "" - -# 42d72caab8ab4c9d84ac74d3e113aa47 -#: ../../source/user-docs/application-help/keywords.rst:114 -msgid "population" -msgstr "" - -# 2abd1dcbb60b4a68af14c7a37f432832 -#: ../../source/user-docs/application-help/keywords.rst:115 -msgid "road" -msgstr "" - -# cffae577051a4c59a57c5a67111ba0a6 -#: ../../source/user-docs/application-help/keywords.rst:116 -msgid "structure" -msgstr "" - -# 8ea609ca03cd4742962fe75fc91c80d0 -#: ../../source/user-docs/application-help/keywords.rst:127 -msgid "Units" -msgstr "" - -# 7529cc43ebbe44c08fae6e359ff8fcc2 -#: ../../source/user-docs/application-help/keywords.rst:129 -msgid "" -"The units keyword is used to indicate the metric or imperial units " -"represented by each data entity (a grid cell or a vector feature) in a layer." -msgstr "" - -# 5d038d787755465a82f04e1a1f587d1c -#: ../../source/user-docs/application-help/keywords.rst:134 -msgid "Valid units for hazard subcategories" -msgstr "" - -# 1d0375e42140472b91db6f9e075694e5 -#: ../../source/user-docs/application-help/keywords.rst:137 -msgid "Valid units for subcategory 'flood' or subcategory 'tsunami':" -msgstr "" - -# 6f522318ca764d40aeecc35f4d0a1ad2 -# 4aca045ece6742009cb3fd1dd371c4d3 -# 96e01b7feb824a04b87a5f6311b237c0 -# 02c54d6e95024538944a71a04c6c8155 -# aafe12cf074d40e0a4b58dcf817becf5 -# 9c0dfd8837d148d880590febf5d86238 -# 351de67ec01b4c5e92cd105b2c157552 -# d554d0e2b4d948239097b5faf3e6a4be -# 9acb89fb19d642628ad8ec0a26cdc686 -# f595d9a1416840a5a7e6137ae488b498 -# 2c93cf0aa63d4c9db0cfe289bff42a1c -# 8a4e93705b354e2bad01c1d28ed35b68 -#: ../../source/user-docs/application-help/keywords.rst:144 -#: ../../source/user-docs/application-help/keywords.rst:145 -#: ../../source/user-docs/application-help/keywords.rst:146 -#: ../../source/user-docs/application-help/keywords.rst:147 -#: ../../source/user-docs/application-help/keywords.rst:173 -#: ../../source/user-docs/application-help/keywords.rst:174 -#: ../../source/user-docs/application-help/keywords.rst:192 -#: ../../source/user-docs/application-help/keywords.rst:193 -#: ../../source/user-docs/application-help/keywords.rst:215 -#: ../../source/user-docs/application-help/keywords.rst:232 -#: ../../source/user-docs/application-help/keywords.rst:233 -#: ../../source/user-docs/application-help/keywords.rst:252 -msgid "units" -msgstr "" - -# a426491ebd584d2dbbe84ea15a68c027 -#: ../../source/user-docs/application-help/keywords.rst:144 -msgid "metres" -msgstr "" - -# dde7ad4a86664480b68b647f740cd97a -#: ../../source/user-docs/application-help/keywords.rst:145 -msgid "feet" -msgstr "" - -# 8f4a1f6a1e0749f1b1ff5e74ed776282 -#: ../../source/user-docs/application-help/keywords.rst:146 -msgid "wet / dry" -msgstr "" - -# aebaadf387df4c4289d87f55462147f0 -# 4c135dd3e15b4824b18574c3da649504 -# fa11fce451bc4f9d8fdd7d5ed16e1f16 -#: ../../source/user-docs/application-help/keywords.rst:147 -#: ../../source/user-docs/application-help/keywords.rst:173 -#: ../../source/user-docs/application-help/keywords.rst:193 -msgid "normalised" -msgstr "" - -# fcc8e2603bfd42b2a91f042b87370fed -#: ../../source/user-docs/application-help/keywords.rst:150 -msgid "" -"**metres**: Metres are a metric unit of measure. There are 100 centimetres " -"in one metre. In this case **metres** are used to describe the water depth." -msgstr "" - -# 1b53ed601ecc4f9692af0e98014daa35 -#: ../../source/user-docs/application-help/keywords.rst:153 -msgid "" -"**feet**: Feet are an imperial unit of measure. There are 12 inches in one " -"foot and three feet in one yard. In this case **feet** are used to describe " -"the water depth." -msgstr "" - -# 49e822c7dffa446fb909579035a0fe9e -#: ../../source/user-docs/application-help/keywords.rst:157 -msgid "" -"**wet / dry**: This is a binary description for an area. The area is either " -"**wet** (affected by flood water) or **dry** (not affected by flood water). " -"This unit does not describe how **wet** or **dry** an area is." -msgstr "" - -# beac64010b02439c8e89d3fd055bab44 -# f74231f1aeba4d8991c7ce1b063d8f67 -# fdcb7b8b184c4d99b49a7faf48d45fab -#: ../../source/user-docs/application-help/keywords.rst:161 -#: ../../source/user-docs/application-help/keywords.rst:177 -#: ../../source/user-docs/application-help/keywords.rst:200 -msgid "" -"**normalised**: Normalised data can be hazard or exposure data where the " -"values have been classified or coded." -msgstr "" - -# 05e3420bb55f4dd5895e30dd83251312 -#: ../../source/user-docs/application-help/keywords.rst:166 -msgid "Valid units for subcategory 'volcano' or subcategory 'tephra':" -msgstr "" - -# 6f1259ad8e454853b901375915161aaa -#: ../../source/user-docs/application-help/keywords.rst:174 -msgid "volcano categorical" -msgstr "" - -# 8f5d52da5db54da28d32d967d8f018a9 -#: ../../source/user-docs/application-help/keywords.rst:180 -msgid "" -"**volcano categorical**: This is a ternary description for an area. The area " -"is either has **low**, **medium**, or **high** impact from the volcano." -msgstr "" - -# 6d0f98b399bd4157ba45292534de2507 -#: ../../source/user-docs/application-help/keywords.rst:185 -msgid "Valid units for subcategory 'earthquake':" -msgstr "" - -# 641faaca4dc648079bb977c280f40b30 -#: ../../source/user-docs/application-help/keywords.rst:192 -msgid "MMI" -msgstr "" - -# 98484af722fd45c29efd29fb921d7255 -#: ../../source/user-docs/application-help/keywords.rst:196 -msgid "" -"**MMI**: The Modified Mercalli Intensity (MMI) scale describes the intensity " -"of ground shaking from a earthquake based on the effects observed by people " -"at the surface." -msgstr "" - -# 4d4e89a15fe7468d9a321106128c68c5 -#: ../../source/user-docs/application-help/keywords.rst:205 -msgid "Valid units for exposure subcategories" -msgstr "" - -# c1ba92b64bb44f25badb452b7dedc323 -#: ../../source/user-docs/application-help/keywords.rst:208 -msgid "Valid units for subcategory 'population':" -msgstr "" - -# c227d8a2fdda4cc2b54e55c56a9bdc70 -#: ../../source/user-docs/application-help/keywords.rst:215 -msgid "people per pixel" -msgstr "" - -# d2e2d5298e774d4e9ecc90695b88c5ef -#: ../../source/user-docs/application-help/keywords.rst:218 -msgid "" -"**people per pixel**: Count is the number of people in each cell. For " -"example **population count** might be measured as the number of people per " -"pixel in a raster data set. This unit is relevant for population rasters in " -"geographic coordinates." -msgstr "" - -# 5e019562412a49ff9dccf3b12964ae94 -#: ../../source/user-docs/application-help/keywords.rst:225 -msgid "Valid units for subcategory 'structure':" -msgstr "" - -# f47f466d131f454485dd4d9ccde95f55 -#: ../../source/user-docs/application-help/keywords.rst:232 -msgid "building type" -msgstr "" - -# 60cab12a9d874b4da53326b27f9f47e8 -#: ../../source/user-docs/application-help/keywords.rst:233 -msgid "building generic" -msgstr "" - -# 2c26ed66e6904c5bbebc3a45ea07c4f3 -#: ../../source/user-docs/application-help/keywords.rst:236 -msgid "" -"**building type**: Building type is a unit that represents the type of the " -"building. In this case, building type will be used to group the results of " -"the impact function." -msgstr "" - -# 1ade93ed619747568d8dae49c0e88770 -#: ../../source/user-docs/application-help/keywords.rst:240 -msgid "" -"**building generic**: Building generic means that there is no building type " -"attribute in the exposure data." -msgstr "" - -# c64196093abc44c3b4c55648d373362a -#: ../../source/user-docs/application-help/keywords.rst:245 -msgid "Valid units for subcategory 'road':" -msgstr "" - -# 84e298da035d4fbe8a6ea313b6a5d808 -#: ../../source/user-docs/application-help/keywords.rst:252 -msgid "Road Type" -msgstr "" - -# e36f7fd9fe16441e95529b0bf03b5e36 -#: ../../source/user-docs/application-help/keywords.rst:255 -msgid "" -"**Road Type**: Road type is a unit that represent the type of the road. In " -"this case, road type will be used to group the result of impact function." -msgstr "" - -# dffdd6411d3d4121a66fa871ebc51408 -#: ../../source/user-docs/application-help/keywords.rst:260 -msgid "Datatype" -msgstr "" - -# b1e5c7a7d7a04c5c897d204537f78bc8 -#: ../../source/user-docs/application-help/keywords.rst:262 -msgid "" -"The datatype keyword indicates what kind of geospatial data is represented " -"(Numeric, Polygon, Line, Point)." -msgstr "" - -# c1ad77adb23447b4b7ac2d71ea445c50 -#: ../../source/user-docs/application-help/keywords.rst:267 -msgid "Assumptions" -msgstr "" - -# 48ea1f098a6e458abd6439db1576ab2d -#: ../../source/user-docs/application-help/keywords.rst:269 -msgid "" -"The following assumptions are made about keywords, which may or may not be " -"programmatically enforced by the |project_name| library and GUI:" -msgstr "" - -# 95ebcdd3d06c4428a591cd080c92dfa8 -#: ../../source/user-docs/application-help/keywords.rst:272 -msgid "" -"There should only be **one keyword for a given key** in the keywords file." -msgstr "" - -# fa9aee7b1e974e938fc4b7cdb05000ff -#: ../../source/user-docs/application-help/keywords.rst:273 -msgid "" -"Keywords for **category** are **enforced** to be one of 'hazard' or " -"'exposure' by the GUI." -msgstr "" - -# e4550841eb954ace957d5abe530884f5 -#: ../../source/user-docs/application-help/keywords.rst:275 -msgid "" -"All keywords should be in **lower case**, **without spaces** with the " -"exception of 'Title' whose value may contain both spaces and mixed case " -"letters." -msgstr "" - -# 6e084f71bfec4d06a3a2664be2a44e93 -#: ../../source/user-docs/application-help/keywords.rst:278 -msgid "" -"Values for keywords should generally be lower case, with the exception of " -"**datatype values, which may be in upper case** (e.g. MMI)" -msgstr "" - -# 07d7b06bea824eb1a08e3a9bf595ec6a -#: ../../source/user-docs/application-help/keywords.rst:280 -msgid "" -"Keys and values should **not contain colons**. In the keyword editor, any " -"colons will be replaced with a full stop character." -msgstr "" - -# 5aa5ca0d1cce40d99bd38b61804a4e4f -#: ../../source/user-docs/application-help/keywords.rst:283 -msgid "" -"All other keywords and values that do not fit the above domain lists may be " -"used but they may produce undesired results." -msgstr "" - -# d04abc0e448247fe88d32ee4d10b62c1 -#: ../../source/user-docs/application-help/keywords.rst:287 -msgid "Translations" -msgstr "" - -# 0f067b98e830476b8413a0d0b6feb39b -#: ../../source/user-docs/application-help/keywords.rst:289 -msgid "" -"Although |project_name| is available in different languages, the 'key' in " -"the keywords files should always be written in English." -msgstr "" - -# ba6b2ff22e6e42e08ac879ff1b091059 -#: ../../source/user-docs/application-help/keywords.rst:293 -msgid "Keywords for remote and non-file based layers" -msgstr "" - -# a6c8e7e0eb0a45ebadc15dc10bfe0c3c -#: ../../source/user-docs/application-help/keywords.rst:295 -msgid "" -"If you are using a PostgreSQL, WFS, Spatialite or other non-file based " -"resource, you can still create keywords. In these circumstances the keywords " -"will be written to a sqlite database - by default this database is stored " -"as :file:`keywords.db` within the |project_name| root directory." -msgstr "" - -# 5b4409beea3c4a7aa9e4e7315644444d -#: ../../source/user-docs/application-help/keywords.rst:301 -msgid "" -"You may wish to use a different location for the :file:`keywords.db` " -"keywords database - you can configure this by using the |project_name| " -"options dialog. The options dialog can be launched by clicking on the |" -"project_name| plugin toolbar's options icon (as shown below) or by going to :" -"menuselection:`Plugins ‣ InaSAFE ‣ InaSAFE Options`." -msgstr "" - -# 6c170d31ede645a5830d3c99c80d5b19 -#: ../../source/user-docs/application-help/keywords.rst:312 -msgid "*The options button*" -msgstr "" - -# 00b24c77ef8f45e7a24c3f2a11f58f6f -#: ../../source/user-docs/application-help/keywords.rst:314 -msgid "" -"When the options dialog is opened, the keywords database path can be " -"specified under the :guilabel:`Advanced` tab under :guilabel:`Keyword cache " -"for remote datasources` as shown below." -msgstr "" - -# 81ced1aa24304b90a0ed3359300c1373 -#: ../../source/user-docs/application-help/keywords.rst:323 -msgid "*Path to options database*" -msgstr "" - -# e0e9b1a671d5489db42b818a3b42ea7d -#: ../../source/user-docs/application-help/keywords.rst:327 -msgid "" -"Support for remote and non-file based layers was added in |project_name| " -"version 0.3." -msgstr "" - -# cfcd780b55704cc1b8efb445ba431f16 -#: ../../source/user-docs/application-help/keywords.rst:329 -msgid "" -"The database can be opened using a sqlite editor such as sqliteman, but the " -"data in the keywords table is not intended to be human readable or edited. " -"The table columns consist of an MD5 hash based on the URI for the datasource " -"(typically the database connection details) and a blob which contains the " -"keywords as a pickled python dictionary." -msgstr "" - -# f39046f3b87c486ba4f1959c256c8482 -#: ../../source/user-docs/application-help/keywords.rst:336 -msgid "" -"See :doc:`./options` for more information about the |project_name| options " -"dialog." -msgstr "" - -# 9604f09173704081818159f3dd15ad04 -#: ../../source/user-docs/application-help/keywords.rst:340 -msgid "Sharing your keywords cache" -msgstr "" - -# d3fbd97a3d0b44db92e605f774f271d4 -#: ../../source/user-docs/application-help/keywords.rst:342 -msgid "" -"In theory you can place the keywords file on a network share and create a " -"shared keyword repository in a multi-user environment, but you should note " -"that the layer URI hashes need to be identical in order for a layer's " -"keyword to be found. This means that, for (contrived) example: ::" -msgstr "" - -# 3842b7bc9e214b44b9395dc3128fd75f -#: ../../source/user-docs/application-help/keywords.rst:351 -msgid "would not be considered the same as ::" -msgstr "" - -# d1b622bcb94a44508785a72de9646376 -#: ../../source/user-docs/application-help/keywords.rst:356 -msgid "" -"since the user credentials differ, resulting in a different URI. To work " -"around this you could create a common account so that every user will " -"effectively use the same URI to load that layer e.g. ::" -msgstr "" - -# 550db95e8bbc4c9da7d62b613260c011 -#: ../../source/user-docs/application-help/keywords.rst:363 -msgid "" -"For certain resources (e.g. ArcInfo coverages, Spatialite databases) where " -"the keywords cache is also used, you should take care to use a common mount " -"point or network share to access the data if you wish to successfully hit " -"the cache with the layer's URI. For example you could have all users mount " -"your data to the same place. Under Unix-like operating systems this could " -"look something like this:" -msgstr "" - -# 956bd80f1f954f58a05f6da936a1b5d2 -#: ../../source/user-docs/application-help/keywords.rst:370 -msgid ":file:`/mnt/gisdata/jk.sqlite`" -msgstr "" - -# 44b267791aa441be8dd608086d0b9c3e -#: ../../source/user-docs/application-help/keywords.rst:372 -msgid "" -"Under Windows you could always use the same drive letter and path to the " -"share, e.g.:" -msgstr "" - -# c0cdf278dd5e46abbc3f335b825589e4 -#: ../../source/user-docs/application-help/keywords.rst:375 -msgid ":file:`Z:\\\\gisdata\\\\jk.sqlite`" -msgstr "" - -# 668144e49482438681ff8c96f8f596f7 -#: ../../source/user-docs/application-help/keywords.rst:378 -msgid "Getting help" -msgstr "" - -# b00da58ef8f74f1ca16c8c8503cf6888 -#: ../../source/user-docs/application-help/keywords.rst:380 -msgid "" -"If you need help using the keywords editor, click on the :guilabel:`Help` " -"button at the bottom of the dialog and this page will be displayed." -msgstr "" - -# 7e6598dc1fcd4ec19d37197858f14190 -#: ../../source/user-docs/application-help/keywords.rst:384 -msgid "" -"This document is automatically generated. It can be regenerated by running " -"the python script /inasafe-doc/scripts/generate_keywords.py." -msgstr "" - -# 4c8c00b24d1f460db01099eb9f08e1a0 -#: ../../source/user-docs/application-help/keywords.rst:387 -msgid "This document was generated based on |project_name| 2.1.0b0." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/keywords_editor.po b/docs/i18n/en/LC_MESSAGES/user-docs/application-help/keywords_editor.po deleted file mode 100644 index 671b1bef..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/keywords_editor.po +++ /dev/null @@ -1,196 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# f6590829120f41abb859a1ba200262f8 -#: ../../source/user-docs/application-help/keywords_editor.rst:8 -msgid "Keywords Editor" -msgstr "" - -# 22f2ac418076470290e3fbab6b362747 -#: ../../source/user-docs/application-help/keywords_editor.rst:10 -msgid "" -"The keywords editor provides an interface for creating |project_name| " -"keywords. If you are a new user, you should probably use the :ref:`Keywords " -"Wizard ` rather than the keywords editor as it makes it " -"easy to specify correct keywords if you are not familiar with the system." -msgstr "" - -# b5c6588a9b3049809bb9f087b4feea8a -#: ../../source/user-docs/application-help/keywords_editor.rst:16 -msgid "" -"For more general discussion on the keywords system used by |project_name|, " -"see the :ref:`keywords system ` documentation." -msgstr "" - -# 9a95edee58d04736895191cd28bf0dbd -#: ../../source/user-docs/application-help/keywords_editor.rst:20 -msgid "The keywords editor graphical user interface" -msgstr "" - -# c3883756cc8642dd91ee0138543cd437 -#: ../../source/user-docs/application-help/keywords_editor.rst:22 -msgid "" -"The graphical user interface for keywords may appear in one of two modes:" -msgstr "" - -# 7ba23ae2f3ca499aac0888eb7365df3c -#: ../../source/user-docs/application-help/keywords_editor.rst:24 -msgid "" -"**Minimal mode**: In this mode, only the following options are provided:" -msgstr "" - -# 9dd1a2c3cc8446278b1ebed69c421bd9 -#: ../../source/user-docs/application-help/keywords_editor.rst:26 -msgid "" -"**Title** - a friendly name for the dataset which will be displayed in " -"reports, the user interface and so on." -msgstr "" - -# c56fa70c936948c382f647ea706f6db1 -#: ../../source/user-docs/application-help/keywords_editor.rst:28 -msgid "**Source** - a field to inform from whom/where the dataset is obtained." -msgstr "" - -# 2af770d18404481c80f0466c23a6fbc0 -#: ../../source/user-docs/application-help/keywords_editor.rst:29 -msgid "**Category** - A mandatory choice between 'hazard' and 'exposure'." -msgstr "" - -# e744c22082104cf08ef3c3ff4e165cb6 -#: ../../source/user-docs/application-help/keywords_editor.rst:30 -msgid "" -"**Subcategory** - An amalgamated subcategory/units picklist (in the case of " -"hazard) or amalgamated subcategory/datatype (in the case of exposure). In " -"this case, the secondary characteristic (units or datatype) are shown in " -"square brackets after the subcategory name e.g. :samp:`flood [m]` is used " -"for subcategory 'flood', units 'm'." -msgstr "" - -# 530ee1b434584e779f4e3fd2f60e7f52 -#: ../../source/user-docs/application-help/keywords_editor.rst:37 -msgid "This is an example of the keywords editor in minimal mode:" -msgstr "" - -# b235835d862f4267818d806701360523 -#: ../../source/user-docs/application-help/keywords_editor.rst:44 -msgid "*Opened keyword editor window*" -msgstr "" - -# 88778e392a8e4820a67f48c7fd33409d -#: ../../source/user-docs/application-help/keywords_editor.rst:46 -msgid "" -"**Advanced mode**: In this mode several extra options are provided in " -"addition to the minimal mode options. Unlike minimal mode, in advanced mode " -"only basic validation is performed and the user is given more flexibility to " -"manually define and remove key/value pairs. Three additional sections are " -"available:" -msgstr "" - -# 60f1d21bfc0c44a995d22b460c5d7be6 -#: ../../source/user-docs/application-help/keywords_editor.rst:53 -msgid "" -"**Predefined** - In this section, the user selects from a constrained list " -"of keywords, enters any value and then adds the key/value pair to the " -"keywords list (see below)." -msgstr "" - -# 4355a5a55f5e4ac9bb787a6d6df72648 -#: ../../source/user-docs/application-help/keywords_editor.rst:56 -msgid "" -"**User defined** - In this section, there is no constraint on the keywords " -"entered - any single lower case word will be accepted for both the key and " -"the value components." -msgstr "" - -# 69f4a7f36c1a4106804260b98b4c3f97 -#: ../../source/user-docs/application-help/keywords_editor.rst:59 -msgid "" -"**Current keywords** - In this area a complete list of all the keywords for " -"the dataset is displayed. The keywords list here is updated when any changes " -"are made in both the simple and advanced mode editors. It is also possible " -"in this area to manually remove unwanted keywords using the :guilabel:" -"`Remove selected` button. Multiple keywords can be removed in a single " -"operation by holding :kbd:`CTRL` and clicking on multiple keyword entries in " -"the current keywords list and then clicking :guilabel:`Remove selected`." -msgstr "" - -# 39d6fbdd5d5a4a8c937e08ebf8814db1 -#: ../../source/user-docs/application-help/keywords_editor.rst:74 -msgid "*Advanced mode of keyword editor*" -msgstr "" - -# 16d9c37416364e20b1dd7a3db5476e8b -#: ../../source/user-docs/application-help/keywords_editor.rst:77 -msgid "" -"Switching from hazard to exposure will clear parts of the GUI since most " -"keywords are category dependent. In particular, selecting **'hazard'** will " -"remove the **'datatype'** key/value pair, and selecting **'exposure'** will " -"remove the **'units'** key value pair." -msgstr "" - -# 57adec2ed9c24d7cb6fef4361398bc44 -#: ../../source/user-docs/application-help/keywords_editor.rst:84 -msgid "Invoking the keywords editor" -msgstr "" - -# 5eb23cb535bc4c2c8e66353131725ad9 -#: ../../source/user-docs/application-help/keywords_editor.rst:85 -msgid "" -"The keywords editor can be invoked by selecting any layer in the QGIS Layers " -"panel and then going to :menuselection:`Plugins ‣ InaSAFE ‣ Keyword Editor`. " -"Alternatively, you may click the :guilabel:`Keywords Editor` button on the " -"toolbar:" -msgstr "" - -# b40017db2496412a858f686744211f41 -#: ../../source/user-docs/application-help/keywords_editor.rst:96 -msgid "*InaSAFE toolbar*" -msgstr "" - -# 5729904aa73f4864bb0ecc2ef4b3aaa0 -#: ../../source/user-docs/application-help/keywords_editor.rst:98 -msgid "" -"If you have not selected a layer, the keyword editor icon in the toolbar and " -"menus will be disabled and appear greyed out." -msgstr "" - -# 057ea1b290174290a54970cfe45dec5c -#: ../../source/user-docs/application-help/keywords_editor.rst:103 -msgid "Saving your edits" -msgstr "" - -# 7d51fcc44ff64a42bc797a618e2f078f -#: ../../source/user-docs/application-help/keywords_editor.rst:105 -msgid "" -"To save your keyword edits, click the :guilabel:`OK` button and the :file:`*." -"keywords` file will be written to disk." -msgstr "" - -# 76556714c8bc43d18d857ed8dc5f77a9 -#: ../../source/user-docs/application-help/keywords_editor.rst:109 -msgid "Cancelling your edits" -msgstr "" - -# 7202fb13de72467085687d5d65bbeb97 -#: ../../source/user-docs/application-help/keywords_editor.rst:111 -msgid "" -"Cancel your changes at any time by clicking the :guilabel:`Cancel` button. " -"No changes will be written to disk and the :file:`*.keywords` file will " -"remain in its original state." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/keywords_wizard.po b/docs/i18n/en/LC_MESSAGES/user-docs/application-help/keywords_wizard.po deleted file mode 100644 index b40d03f7..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/keywords_wizard.po +++ /dev/null @@ -1,160 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# ecd59a8b9742477ea9231ad9481370f5 -#: ../../source/user-docs/application-help/keywords_wizard.rst:8 -msgid "Keywords Wizard" -msgstr "" - -# 4fec90d86a9b4f04957076317452d4d8 -#: ../../source/user-docs/application-help/keywords_wizard.rst:10 -msgid "" -"This wizard will lead you through the process of defining keywords for an " -"exposure, hazard or aggregation layer. Unlike the :ref:`keywords editor " -"`, the keywords wizard understands the constraints and " -"rules that determine which keywords can be applied to any given layer. For " -"example, if you have a raster layer, the keywords wizard will use impact " -"function metadata to prevent you from declaring that the layer contains road " -"exposure data since by definition, such data must be vector line data." -msgstr "" - -# 5829bd8233e440ce805e386f704fd5e1 -#: ../../source/user-docs/application-help/keywords_wizard.rst:18 -msgid "" -"Each impact function includes metadata that defines what rules should apply " -"to data that will be used with that impact function. At startup, the wizard " -"scans this metadata and uses it to define its rules." -msgstr "" - -# 2f813425e9404f86999f521100d105b2 -#: ../../source/user-docs/application-help/keywords_wizard.rst:22 -msgid "" -"For more general discussion on the keywords system used by |project_name|, " -"see the :ref:`keywords system ` documentation." -msgstr "" - -# 41aedac78d45401d99a30c4ee6c6aa89 -#: ../../source/user-docs/application-help/keywords_wizard.rst:26 -msgid "Invoking the wizard" -msgstr "" - -# 56ec97571ac64b0ea29bb5e74077b28d -#: ../../source/user-docs/application-help/keywords_wizard.rst:28 -msgid "" -"You can run the wizard by clicking on the icon in the InaSAFE toolbar that " -"looks like this:" -msgstr "" - -# 4fe8918b247e4374b3db71bcfb026a9e -#: ../../source/user-docs/application-help/keywords_wizard.rst:36 -msgid "" -"You should have at least one layer loaded and active in QGIS before " -"attempting to launch the keywords wizard." -msgstr "" - -# b1d571df3b7145069d7748688b3f3d27 -#: ../../source/user-docs/application-help/keywords_wizard.rst:39 -msgid "Once loaded the wizard will appear:" -msgstr "" - -# 7c20ab8735ea47d0ba1a1e7bc7f5a77e -#: ../../source/user-docs/application-help/keywords_wizard.rst:46 -msgid "" -"If the layer already has keywords assigned to it, the wizard will default to " -"existing keywords on each step (where applicable)." -msgstr "" - -# 5326953c26e745748a5cd3c42dbdb629 -#: ../../source/user-docs/application-help/keywords_wizard.rst:50 -msgid "Cancelling the wizard" -msgstr "" - -# 9bfce1724e064e78a3c3d7b7bf36f8df -#: ../../source/user-docs/application-help/keywords_wizard.rst:52 -msgid "" -"The wizard can be cancelled at any time by clicking the :guilabel:`Cancel` " -"button at the bottom of the wizard. No changes will be written to the " -"keywords file if the wizard is cancelled." -msgstr "" - -# 4a59b606a94c4bfa971b8faf3ccf31bf -#: ../../source/user-docs/application-help/keywords_wizard.rst:58 -msgid "Using the wizard" -msgstr "" - -# ad8f09b71e5745d6bd2f941731b57d8a -#: ../../source/user-docs/application-help/keywords_wizard.rst:60 -msgid "" -"To use the wizard, simply follow the prompts presented on each page of the " -"wizard. There are three standard forms of user input expected:" -msgstr "" - -# 5ff7c18328704514b29376d95dd7e2d9 -#: ../../source/user-docs/application-help/keywords_wizard.rst:63 -msgid "" -"1.) **List selection** - In this case options are provided in a list. " -"Clicking on an item will usually display additional helpful text in the " -"information area of the dialog." -msgstr "" - -# 61f87638da13457b86938934caeba96b -#: ../../source/user-docs/application-help/keywords_wizard.rst:73 -msgid "" -"2) **Field selection** - Whilst it appears to look like the list selection " -"above, in this case the list is automatically generated from the available " -"attributes of the layer." -msgstr "" - -# 54d39d4d8cf047578fa00a5055ff672e -#: ../../source/user-docs/application-help/keywords_wizard.rst:82 -msgid "" -"3) **Free form text** - In some cases you may be prompted to enter free form " -"text in order to define some additional metadata." -msgstr "" - -# 8168214f5e8448828b2bf6a7aa9cf64a -#: ../../source/user-docs/application-help/keywords_wizard.rst:90 -msgid "" -"4) **Drag and drop list** - In this context the user should make concept " -"mappings by dragging items from the left list (represented by unique field " -"values from the attributes table) onto concepts in the right hand tree. For " -"example, below we see the user mapping all polygons that have their " -"'floodprone' field value as 'YES' or 'yes' onto the 'wet' concept in the " -"tree view on the right." -msgstr "" - -# 9865d0f1b3a64c2aa30db1256459913c -#: ../../source/user-docs/application-help/keywords_wizard.rst:103 -msgid "Completing the wizard" -msgstr "" - -# a29504ca45124877acf975d0b437c265 -#: ../../source/user-docs/application-help/keywords_wizard.rst:105 -msgid "" -"On completion of the keywords wizard, a :file:`.keywords` file will be " -"written to disk and the keywords for the layer will be displayed in the dock " -"area when that layer is active in QGIS." -msgstr "" - -# 4c7cf9148531496fa608d1f862da437d -#: ../../source/user-docs/application-help/keywords_wizard.rst:115 -msgid "" -"The keywords wizard generates keywords that are not compatible with versions " -"of |project_name| older than 2.1." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/minimum_needs.po b/docs/i18n/en/LC_MESSAGES/user-docs/application-help/minimum_needs.po deleted file mode 100644 index 67816fa8..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/minimum_needs.po +++ /dev/null @@ -1,113 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# a00ddaa0ea9348f9a95164b6fdd82ffa -# 7b9c46b711da47b89fc53e4ff6f5fef0 -#: ../../source/user-docs/application-help/minimum_needs.rst:8 -msgid "Minimum Needs Tool" -msgstr "" - -# 94b568165fac4bd5b5d6502d67e0d45e -#: ../../source/user-docs/application-help/minimum_needs.rst:10 -msgid "" -"The purpose of the minimum needs tool is to provide a quick method of " -"calculating support requirements (in terms of food, water, etc.) for " -"displaced persons." -msgstr "" - -# e5796e4602ea497c82ef965e8059cd2f -#: ../../source/user-docs/application-help/minimum_needs.rst:14 -msgid "" -"The minimum needs are based on 'Perka 7/2008' according to the following " -"default formulas:" -msgstr "" - -# 54321812a59645f69cb016d4b1f80e09 -#: ../../source/user-docs/application-help/minimum_needs.rst:17 -msgid "400g rice per person per day (2.8kg per week)" -msgstr "" - -# 4013047e8e9941d2972ee5a07743232d -#: ../../source/user-docs/application-help/minimum_needs.rst:18 -msgid "2.5l drinking water per person per day (17.5l per week)" -msgstr "" - -# 1560750705bd4b4eaf881b899b1aeec7 -#: ../../source/user-docs/application-help/minimum_needs.rst:19 -msgid "15l clean water per person per day (105l per week)" -msgstr "" - -# 827c7aea7fb24eafb207370186407676 -#: ../../source/user-docs/application-help/minimum_needs.rst:20 -msgid "" -"one family kit per family per week (assumes five people per family which is " -"not specified in perka)" -msgstr "" - -# 24c223dc951542569f1b1ef35811ce8a -#: ../../source/user-docs/application-help/minimum_needs.rst:22 -msgid "20 people per toilet" -msgstr "" - -# a29996563c034cb5a6a11db13a13666c -#: ../../source/user-docs/application-help/minimum_needs.rst:24 -msgid "" -"In the current version of |project_name|, these guidelines cannot be " -"adjusted by the user. In a future version we will provide this facility." -msgstr "" - -# 9ff0850015654b74bc7b5ce4c983d06c -#: ../../source/user-docs/application-help/minimum_needs.rst:27 -msgid "" -"In order to use this tool, you must first load a polygon layer in QGIS that " -"contains areas (e.g. administrative areas) with an attribute that represents " -"the number of displaced people in each area." -msgstr "" - -# 524d9a0c88b540e396a9d446e40abe62 -#: ../../source/user-docs/application-help/minimum_needs.rst:31 -msgid "" -"When the layer is loaded, click on the :guilabel:`Minimum Needs` tool in the " -"toolbar:" -msgstr "" - -# 89712312486a45908b40ce991de22c6b -#: ../../source/user-docs/application-help/minimum_needs.rst:39 -msgid "*Minimum Needs Tool*" -msgstr "" - -# 24ca239e05b54ceab7511481d2510a83 -#: ../../source/user-docs/application-help/minimum_needs.rst:41 -msgid "" -"In the dialog that appears, choose the QGIS layer that contains the " -"administrative boundaries and then select the attribute in that layer that " -"represents the number of displaced people." -msgstr "" - -# 5af13494b28e45e595f191b6802b8392 -#: ../../source/user-docs/application-help/minimum_needs.rst:45 -msgid "When you are ready, click the :guilabel:`OK` button in the dialog." -msgstr "" - -# 8169c494ebb54fa093fde84a0db26feb -#: ../../source/user-docs/application-help/minimum_needs.rst:47 -msgid "" -"After the analysis is completed, new keywords will be associated with the " -"layer that indicate the needs according to the formulas defined above." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/needs_manager.po b/docs/i18n/en/LC_MESSAGES/user-docs/application-help/needs_manager.po deleted file mode 100644 index 926ada5f..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/needs_manager.po +++ /dev/null @@ -1,298 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.2\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-01 22:03+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# f932bb74212f447484674f378ca246bc -# 430009fc2d174df487ce0371b5bec5f5 -#: ../../source/user-docs/application-help/needs_manager.rst:8 -#: ../../source/user-docs/application-help/needs_manager.rst:19 -msgid "Minimum Needs Manager" -msgstr "" - -# 7dee6df492224f2eaa64ae7321ec9158 -#: ../../source/user-docs/application-help/needs_manager.rst:10 -msgid "" -"As of version 2.2, the minimum needs system have received a major overhaul. " -"The minimum needs manager is a new tool that allows you to define 'profiles' " -"of minimum needs to make them relevant to your country or region." -msgstr "" - -# 20ad7496209146d1aa37e53015f7dae1 -#: ../../source/user-docs/application-help/needs_manager.rst:21 -msgid "We ship |project_name| with standard profiles for:" -msgstr "" - -# d926d1f37aa8486faa46d63cc5dea604 -#: ../../source/user-docs/application-help/needs_manager.rst:23 -msgid "Indonesia - based on 'Perka 7/2008'" -msgstr "" - -# dfbc9870708a4d1faace9d10a01ac629 -#: ../../source/user-docs/application-help/needs_manager.rst:24 -msgid "" -"Philippines (based on 'Guidelines on Evacuation Center Coordination and " -"Management Joint Memorandom Circular No. Series of 2013')" -msgstr "" - -# dc30d2a762b34b9dbabd18a4674e9412 -#: ../../source/user-docs/application-help/needs_manager.rst:27 -msgid "There are two key concepts to be aware of in the minimum needs manager:" -msgstr "" - -# 19d3c68b4d3c419dadfd1b6f380b51f3 -#: ../../source/user-docs/application-help/needs_manager.rst:29 -msgid "profiles" -msgstr "" - -# dd81280ca2f14324b9cee4e0d3b43533 -#: ../../source/user-docs/application-help/needs_manager.rst:30 -msgid "resources" -msgstr "" - -# b01d6d2b402242fbb43144cae723c1f1 -#: ../../source/user-docs/application-help/needs_manager.rst:33 -msgid "Minimum needs profiles" -msgstr "" - -# 3b5d2d75966b4f1c84d8b6255beb0897 -#: ../../source/user-docs/application-help/needs_manager.rst:35 -msgid "" -"A profile is a collection of resources that define the minimum needs for a " -"particular country or region. Typically a profile should be based on a " -"regional, national or international standard. The actual definition of which " -"resources are needed in a given profile is dependent on the local conditions " -"and customs for the area where the contingency plan is being devised." -msgstr "" - -# 2406db4ce0124972a867fdb88bc95a83 -#: ../../source/user-docs/application-help/needs_manager.rst:42 -msgid "" -"For example in the middle east, rice is a staple food whereas in South " -"Africa, maize meal is a staple food and thus the contingency planning should " -"take these localised needs into account." -msgstr "" - -# 0fbb637040644db290065ceb6df64b21 -#: ../../source/user-docs/application-help/needs_manager.rst:47 -msgid "Minimum needs resources" -msgstr "" - -# 5cb8b065d5224fbd9869893ddeed194b -#: ../../source/user-docs/application-help/needs_manager.rst:49 -msgid "" -"Each item in a minimum needs **profile** is a resource. Each resource is " -"described as a simple natural language sentance e.g.:" -msgstr "" - -# 84c01721c089468bac36617ac2afc9c4 -#: ../../source/user-docs/application-help/needs_manager.rst:52 -msgid "\"Each person should be provided with 2.8 kilograms of Rice weekly.\"" -msgstr "" - -# 8814471ed7514b4cadd75ef7fd09223e -#: ../../source/user-docs/application-help/needs_manager.rst:54 -msgid "" -"By clicking on a resource entry in the profile window, and then clicking " -"the :guilabel:`black pencil` icon you will be able to edit the resource " -"using the resource editor. Alternatively you can create a new resource for a " -"profile by clicking on the black :guilabel:`+` icon in the profile manager. " -"You can also remove any resource from a profile using the :guilabel:`-` icon " -"in the profile manager." -msgstr "" - -# 53fc0dccf11c4a1781638c48afbd831c -#: ../../source/user-docs/application-help/needs_manager.rst:65 -msgid "Resource editor" -msgstr "" - -# a3bdd164dc294d9d8473760e69615527 -#: ../../source/user-docs/application-help/needs_manager.rst:67 -msgid "" -"When switching to edit or add resource mode, the minimum needs manager will " -"be updated to look like the screenshot above. Each resource is described in " -"terms of:" -msgstr "" - -# b08789276c894e3dbb35a8b33f448061 -#: ../../source/user-docs/application-help/needs_manager.rst:71 -msgid "resource name e.g. Rice" -msgstr "" - -# 2bc8ab99d26c4660a91165eb3f1c848b -#: ../../source/user-docs/application-help/needs_manager.rst:72 -msgid "a description of the resource e.g. Basic food" -msgstr "" - -# 55ab9e87ac07422cb3404393fa489c0e -#: ../../source/user-docs/application-help/needs_manager.rst:73 -msgid "unit in which the resource is provided e.g. kilogram" -msgstr "" - -# 2a9c3cdcdd9644d8a3b6e62738f9d324 -#: ../../source/user-docs/application-help/needs_manager.rst:74 -msgid "pluralised form of the units e.g. kilograms" -msgstr "" - -# c0a533543bf14051a211952be2b074c9 -#: ../../source/user-docs/application-help/needs_manager.rst:75 -msgid "abbreviation for the unit e.g. kg" -msgstr "" - -# 87c31264bdce4b5ab89e4fa1ea56f8e6 -#: ../../source/user-docs/application-help/needs_manager.rst:76 -msgid "" -"the default allocation for the resource e.g. 2.8. This number can be " -"overridden on a per-analysis basis." -msgstr "" - -# fe4d50d8149d4011ab8002fbeb90c520 -#: ../../source/user-docs/application-help/needs_manager.rst:78 -msgid "" -"minimum allowed which is used to prevent allocating e.g. no drinking water " -"to displaced persons" -msgstr "" - -# c44efd5593864e59961a26a209a3f6da -#: ../../source/user-docs/application-help/needs_manager.rst:80 -msgid "" -"maximum allowed which is used to set a sensible upper limit for the resource" -msgstr "" - -# 9ef705edead54149b86df74f423db12f -#: ../../source/user-docs/application-help/needs_manager.rst:81 -msgid "" -"a readable sentence which is used to compile the sentence describing the " -"resource in reports." -msgstr "" - -# 8f79244176984da3976a454a67bedbad -#: ../../source/user-docs/application-help/needs_manager.rst:84 -msgid "" -"These parameters are probably all fairly self explanatory, but the readable " -"sentence probably needs further detail. The sentence is compiled using a " -"simple keyword token replacement system. The following tokens can be used:" -msgstr "" - -# b3f82f3650614b259ec369c53f2d01a1 -#: ../../source/user-docs/application-help/needs_manager.rst:88 -msgid "``{{ Default }}``" -msgstr "" - -# ce346bd04ac94d429d30bf24a6e8f003 -#: ../../source/user-docs/application-help/needs_manager.rst:89 -msgid "``{{ Unit }}``" -msgstr "" - -# 93966076ccbd4cbc85c7deb2f8f0814b -#: ../../source/user-docs/application-help/needs_manager.rst:90 -msgid "``{{ Units }}``" -msgstr "" - -# 526c238f2c274d99b091e9efef0f026e -#: ../../source/user-docs/application-help/needs_manager.rst:91 -msgid "``{{ Unit abbreviation }}``" -msgstr "" - -# 1031afc4ea3048cea96994dcfcc51041 -#: ../../source/user-docs/application-help/needs_manager.rst:92 -msgid "``{{ Resource name }}``" -msgstr "" - -# abea995d893b4debb70ec3230f85f26e -#: ../../source/user-docs/application-help/needs_manager.rst:93 -msgid "``{{ Frequency }}``" -msgstr "" - -# 24d976575cba4933b20919cba1aed4a5 -#: ../../source/user-docs/application-help/needs_manager.rst:94 -msgid "``{{ Minimum allowed }}``" -msgstr "" - -# 33e811ea39b54d5f8bdc8e80c613ef4e -#: ../../source/user-docs/application-help/needs_manager.rst:95 -msgid "``{{ Maximum allowed }}``" -msgstr "" - -# de3081d7fa3d4f83acd576a13107ef5e -#: ../../source/user-docs/application-help/needs_manager.rst:97 -msgid "" -"When the token is placed in the sentence it will be replaced with the actual " -"value at report generation time. This contrived example shows a tokenised " -"sentence that includes all possible keywords::" -msgstr "" - -# 984a4331a01c44cf9d2d67beb65cc293 -#: ../../source/user-docs/application-help/needs_manager.rst:106 -msgid "Would generate a human readable sentence like this::" -msgstr "" - -# d82ae2ce8ba2429998b46915fc16a16f -#: ../../source/user-docs/application-help/needs_manager.rst:113 -msgid "" -"Once you have populated the resource elements, click the :guilabel:`Save " -"resource` button to return to the profile view. You will see the new " -"resource added in the profile's resource list." -msgstr "" - -# 6f5dbdb6fbd149069026d1ebc14dac5e -#: ../../source/user-docs/application-help/needs_manager.rst:119 -msgid "Managing profiles" -msgstr "" - -# e88116239d64498eb29d0a170150a904 -#: ../../source/user-docs/application-help/needs_manager.rst:121 -msgid "" -"In addition to the profiles that come as standard with |project_name|, you " -"can create new ones, either from scratch, or based on an existing one (which " -"you can then modify)." -msgstr "" - -# 0eb3fe3652904eaeaae9a52ddc67451e -#: ../../source/user-docs/application-help/needs_manager.rst:125 -msgid "" -"Use the :guilabel:`New` button to create new profile. When prompted, give " -"your profile a name e.g. :kbd:`JakartaProfile`." -msgstr "" - -# b3e7e96020504feaa01e479e569bf0a4 -#: ../../source/user-docs/application-help/needs_manager.rst:128 -msgid "" -"**Note:** The profile must be saved in your home directory under :file:`." -"qgis2/minimum_needs` in order for |project_name| to successfully detect it." -msgstr "" - -# 044d6a6b7c0a457c80732dbb1e2d0178 -#: ../../source/user-docs/application-help/needs_manager.rst:131 -msgid "" -"An alternative way to create a new profile is to use the :guilabel:`Save as` " -"to clone an existing profile. The clone profile can then be edited according " -"to your specific needs." -msgstr "" - -# 44adc07ef71949cab1edbc4eee3e55c7 -#: ../../source/user-docs/application-help/needs_manager.rst:135 -msgid "Active profile" -msgstr "" - -# 8ba954dd2d994be5a71e17e9508f7d63 -#: ../../source/user-docs/application-help/needs_manager.rst:137 -msgid "" -"It is important to note, that which ever profile you select in the :guilabel:" -"`Profile` pick list, will be considered **active** and will be used as the " -"basis for all minimum needs analysis." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/openstreetmap_downloader.po b/docs/i18n/en/LC_MESSAGES/user-docs/application-help/openstreetmap_downloader.po deleted file mode 100644 index fcd2aa40..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/openstreetmap_downloader.po +++ /dev/null @@ -1,318 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 7ec6e0bc73124e7da232a06942b83f4c -# fa39b4f3c41d4d0b8f811323f26df839 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:8 -msgid "OpenStreetMap Downloader" -msgstr "" - -# 355e7ec4fe4442a5921e8ebd0e8e4255 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:10 -msgid "" -"This tool fetches building ('structure') and highway ('road') data from the " -"OpenStreetMap project for you." -msgstr "" - -# 05865e840b2142eea5aafa222e3b2a6c -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:18 -msgid "*OpenStreetMap Downloader*" -msgstr "" - -# 63cae60ffee444da8955239e5fb9500a -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:20 -msgid "" -"The tool requires an internet connection as it fetches the data via a web " -"service running on `Linfiniti's OSM Reporter `_ " -"website." -msgstr "" - -# fd9a4cef33b3464b804a7919596e9bab -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:23 -msgid "" -"The data, once downloaded, becomes available as a shapefile. A style file is " -"automatically created so that it symbolises nicely in QGIS. In addition, the " -"correct keyword metadata is created for the downloaded dataset so that it " -"can be used directly in |project_name| impact scenario analyses." -msgstr "" - -# 739758e4830a4b1fa1994814b8d0218a -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:28 -msgid "" -"The downloader service has limitations as to the size of datasets that can " -"be retrieved. As such you may experience issues trying to fetch large " -"amounts of data, such as country-wide building footprint data. Generally " -"datasets at a city level and below should work well." -msgstr "" - -# 7901f858ddf345d09e48bf16460353c0 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:34 -msgid "To use this tool effectively:" -msgstr "" - -# d11e4d586e074d888e14b00802a66e66 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:36 -msgid "" -"Use QGIS to zoom in to the area for which you want building data to be " -"retrieved. For fine-grained control, you can set the bounding box manually " -"in the area provided at the bottom of the dialog." -msgstr "" - -# e479ef4b6ab0434e8eda137d90c43998 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:40 -msgid "" -"Check that the output directory is correct. Note that the saved datasets " -"will be called :file:`buildings.shp` and :file:`roads.shp` (and their " -"associated files)." -msgstr "" - -# c6795785a9d047bf9ce852181e333ed7 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:43 -msgid "" -"By default simple file names will be used (e.g. :file:`roads.shp`, :file:" -"`buildings.shp`). If you wish you can specify a prefix to add in front of " -"this default name. For example using a prefix of 'padang-' will cause the " -"downloaded files to be saved as :file:`padang-roads.shp` and :file:`padang-" -"buildings.shp`. Note that the only allowed prefix characters are A-Z, a-z, " -"0-9 and the characters '-' and '_'. You can leave this blank if you prefer." -msgstr "" - -# c5f7df5c98644ecbae4552f8dd1dd92a -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:51 -msgid "Click :guilabel:`OK` to retrieve the data." -msgstr "" - -# cf5547a46b0e4584a0d8d2630c2a98f2 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:54 -msgid "" -"If a dataset already exists in the output directory it will be overwritten. " -"This tool requires a working internet connection and fetching buildings will " -"consume your bandwidth." -msgstr "" - -# 43d909ac69a34da2b6d22ae626cb1716 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:59 -msgid "" -"Downloaded data is copyright OpenStreetMap contributors (`click for more " -"info `_)." -msgstr "" - -# 0ebec96cf1394eebb9c52e60684798f9 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:63 -msgid "Building data" -msgstr "" - -# fc82f3bdf17c4f1285a0ef2e6fcda9da -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:65 -msgid "" -"|project_name| supports the use of building data in various impact " -"functions. In particular we support building footprints sourced from the " -"`OpenStreetMap `_ project (OSM)." -msgstr "" - -# f0f55a67b95643a687632ebf31d2ca39 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:69 -msgid "" -"The following building types are derived (depending on the various tags " -"assigned to them in OSM):" -msgstr "" - -# 45429822934d43bc8e07b322c6a13d11 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:72 -msgid "School" -msgstr "" - -# fe253b46a2204cb18fb9026e5185c602 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:73 -msgid "University/College" -msgstr "" - -# bf59ac75a21043608482ccffbcf8a899 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:74 -msgid "Government" -msgstr "" - -# 30ad3b0bff7a43b6a34e0b4331a00e9a -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:75 -msgid "Clinic/Doctor" -msgstr "" - -# 704d087bba674ed4889873a16c4a63e8 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:76 -msgid "Hospital" -msgstr "" - -# 0c940990df494af59b15bf0db82d0f86 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:77 -msgid "Fire Station" -msgstr "" - -# 01480ed567e94eb08782d77b0674166e -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:78 -msgid "Police Station" -msgstr "" - -# 937cd10b020b41aca824906f4fb6e0f2 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:79 -msgid "Public Building" -msgstr "" - -# 6e045e3082c7463081f999a8b8f0804a -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:80 -msgid "Place of Worship - Islam" -msgstr "" - -# d4459fe527e649c9a603bd695e521572 -# 7e4ab86ad96a48658d2953399e0524e2 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:81 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:83 -msgid "Place of Worship - Unitarian" -msgstr "" - -# c4a6ef2fcde54eaf8e51fb297f958c2d -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:82 -msgid "Place of Worship - Buddhist" -msgstr "" - -# 7f695168d2184e03a5ff0993a2ac72b7 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:84 -msgid "Supermarket" -msgstr "" - -# 8e33d04239144c37a13bec4c8654ce6a -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:85 -msgid "Residential" -msgstr "" - -# c668f389596649b2a548ef4971fab7c1 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:86 -msgid "Sports Facility" -msgstr "" - -# 2e5f5adf8e71474b935c2432a8f5fcec -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:87 -msgid "Place of Worship" -msgstr "" - -# 32257d0883574e53a1fe776910d04821 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:88 -msgid "Commercial" -msgstr "" - -# 83452678424e47118ae2304aec3aae8b -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:89 -msgid "Industrial" -msgstr "" - -# e1d4df514b9046b6a680aa5a83f00a2f -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:91 -msgid "" -"These derived types will be present in a field called 'type' when " -"downloading the building data. Note that depending on the area for which you " -"have downloaded, only some of these categories may be present in your " -"buildings dataset." -msgstr "" - -# fa29a4de464a41f7ad9c02b77914fe7b -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:97 -msgid "Roads data" -msgstr "" - -# 5b27d798c0ab4cc1adbfe6a850d5e93b -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:99 -msgid "" -"|project_name| supports the use of road data in various impact functions. In " -"particular we support roads sourced from the `OpenStreetMap `_ project (OSM)." -msgstr "" - -# 96788c928f9e483b80fd239ac908c160 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:103 -msgid "" -"The following road types are derived (depending on the various tags assigned " -"to them in OSM):" -msgstr "" - -# 5b38b0f4806847fbbe8cb9ff96dbdf0b -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:106 -msgid "Motorway / highway (includes 'trunk' from OSM)" -msgstr "" - -# 114e06abd2c148ed9019ff4c5abbb357 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:107 -msgid "Motorway link" -msgstr "" - -# 4e31dfd1a0ce4e1fa6e27eb7b137f347 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:108 -msgid "Primary road" -msgstr "" - -# b99adb73cd274133b338b11ded2950a2 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:109 -msgid "Primary link" -msgstr "" - -# 090d1ddfa57c4d82aa564025fce71780 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:110 -msgid "Tertiary" -msgstr "" - -# b2d8717c314b4638b69c18b0ec70b268 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:111 -msgid "Tertiary link" -msgstr "" - -# 4d6eadf835af4b9a80671b5e8beb0979 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:112 -msgid "Secondary" -msgstr "" - -# 88349a50b83445f2b07f968cbfca1271 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:113 -msgid "Secondary link" -msgstr "" - -# 82cb84ade0fd4636ab1cca9565ea2b7c -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:114 -msgid "" -"Road, residential, living street, etc. (includes all highways tagged with " -"'living_street', 'residential', 'yes', 'road', 'unclassified', 'service', '' " -"and NULL highways)" -msgstr "" - -# 87f279a3554e4486895429bdf7b9e959 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:117 -msgid "Track" -msgstr "" - -# 97702d3a730047268800c5d36ddbb9f8 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:118 -msgid "" -"Cycleway, footpath, etc. (includes 'cycleway', 'footpath', 'pedestrian', " -"'footway' and 'path' highway tags)." -msgstr "" - -# f76e28e551e840a7b4b3d1f416f75db5 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:121 -msgid "" -"The roads data is symbolised using a rule based renderer in QGIS. As you " -"zoom out the roads will be rendered using different styles to avoid an " -"overly cluttered map at small scales." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/options.po b/docs/i18n/en/LC_MESSAGES/user-docs/application-help/options.po deleted file mode 100644 index 1e37082a..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/options.po +++ /dev/null @@ -1,281 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 846e09479abf4cb68badae06952a735d -#: ../../source/user-docs/application-help/options.rst:8 -msgid "Options" -msgstr "" - -# cd2b828e8a2b487c84d6bbd916056aa3 -#: ../../source/user-docs/application-help/options.rst:10 -msgid "" -"The |project_name| plugin provides an options dialog which allows you to " -"define various options relating to how |project_name| will behave. The " -"options dialog can be launched by clicking on the |project_name| plugin " -"toolbar's :guilabel:`Options` button (as shown below) or by going to :" -"menuselection:`Plugins ‣ InaSAFE ‣ InaSAFE Options`." -msgstr "" - -# 58e7d51a2b774ddf9bfb353030d74634 -#: ../../source/user-docs/application-help/options.rst:21 -msgid "*Options button*" -msgstr "" - -# e898bed77bc74d7fb2a6bafbdd63d78a -#: ../../source/user-docs/application-help/options.rst:23 -msgid "This following dialog will appear, which is divided into three tabs:" -msgstr "" - -# cc11790a299543c68da5a00ae932a733 -#: ../../source/user-docs/application-help/options.rst:25 -msgid ":ref:`basic_options`" -msgstr "" - -# 2774b9be0f994555aa23a3c2e3758054 -#: ../../source/user-docs/application-help/options.rst:26 -msgid ":ref:`template_options`" -msgstr "" - -# 67d3cf5ec47a411487d4987f82b2d10d -#: ../../source/user-docs/application-help/options.rst:27 -msgid ":ref:`advanced`" -msgstr "" - -# 38d4f503ae83433a8fadf15cc2b532ef -#: ../../source/user-docs/application-help/options.rst:33 -msgid "*Options dialog*" -msgstr "" - -# 997a597643e04dc0b377a2f7921be062 -#: ../../source/user-docs/application-help/options.rst:35 -msgid "The following options are available on the :guilabel:`Options Dialog`:" -msgstr "" - -# 0edfccf037f24f6ab95a32017f5de277 -#: ../../source/user-docs/application-help/options.rst:40 -msgid "Basic Options" -msgstr "" - -# cd8e843ea75343a99ecf8e0354c308f7 -#: ../../source/user-docs/application-help/options.rst:41 -msgid "" -":guilabel:`Only show visible layers in the InaSAFE dock`: This option will " -"determine whether **all** hazard and impact layers should be listed in the |" -"project_name| dock's combo boxes or (when checked) only visible layers." -msgstr "" - -# 90f96b39276c48cabf0fecd70e990337 -#: ../../source/user-docs/application-help/options.rst:44 -msgid "" -":guilabel:`Set QGIS layer name from 'title' in keywords`: This option will " -"cause QGIS to name layers in the :guilabel:`Layers tree` using the `title` " -"keyword in the layer's keywords file. If the layer has no 'title' in its " -"keywords, or it has no keywords at all, the normal QGIS behaviour for naming " -"layers will apply." -msgstr "" - -# 657e78bf1adb4ac1ac204ba70dcc2cdf -#: ../../source/user-docs/application-help/options.rst:49 -msgid "" -":guilabel:`Zoom to impact layer on scenario estimate completion`: This " -"option will cause the map view to zoom in/out in order to completely contain " -"the |project_name| impact scenario map output when an analysis completes." -msgstr "" - -# b7838e8ebbbf464480e19b362c00ee19 -#: ../../source/user-docs/application-help/options.rst:52 -msgid "" -":guilabel:`Hide exposure layer on scenario estimate completion` : This " -"option will cause QGIS to turn off the exposure layer used when |" -"project_name| completes the current analysis. You can re-enable the layer " -"visibility again by checking its checkbox in the legend." -msgstr "" - -# ea4d725ef8cb4bd188585bc608b7f0b1 -#: ../../source/user-docs/application-help/options.rst:57 -msgid "" -":guilabel:`Clip datasets to visible extent before analysis`: This option " -"will cause QGIS to clip hazard and exposure layers to the currently visible " -"extent on the map canvas." -msgstr "" - -# d777f78e76134d8cb86dfc18f25c6a66 -#: ../../source/user-docs/application-help/options.rst:60 -msgid "" -":guilabel:`When clipping, also clip features (e.g. will clip polygon " -"smaller)`: This option will clip any polygons that extend beyond the " -"analysis extents so that they are contained by the analysis extent. For " -"example if you have a flood hazard polygon layer that extends far beyond " -"your area of interest, the flood polygons will be reduced so that only the " -"part inside of your area of interested is retained. This can speed up " -"processing time." -msgstr "" - -# 98309130d77b4b79a812aa1b9350bd98 -#: ../../source/user-docs/application-help/options.rst:67 -msgid "" -":guilabel:`Show intermediate layers generated by postprocessing`: This " -"option will cause QGIS to show the intermediate files generated by the " -"postprocessing steps in the map canvas." -msgstr "" - -# e98c9d0b9f8b468e80767b3be841dcca -#: ../../source/user-docs/application-help/options.rst:70 -msgid "" -":guilabel:`Female ratio default value`: This is the default female to total " -"population ratio used for generating gender breakdowns." -msgstr "" - -# d5754ee34e324833bc01ddb93a17fb72 -#: ../../source/user-docs/application-help/options.rst:76 -msgid "Template Options" -msgstr "" - -# c344ace32d0e4ab7823d7e6c7e8ca9bc -#: ../../source/user-docs/application-help/options.rst:77 -msgid "" -":guilabel:`Prompt me in cases when a template has missing elements`: When " -"enabled, this option will cause |project_name| to prompt the user when a " -"template has a missing element if the user tries to print the report or open " -"it in the composer." -msgstr "" - -# 4d7e040d2fc64daaaad2763d600076e2 -#: ../../source/user-docs/application-help/options.rst:81 -msgid "" -":guilabel:`Use custom organisation logo`: This option is used to determine " -"the custom logo that will be used as an organisational logo in the PDF of " -"your impact scenario project. If this option is disabled, |project_name| " -"will use the default organisation logo. See :ref:`toolbar_reports` in the |" -"project_name| User's Manual for more information on the reports." -msgstr "" - -# 6ff6c8688a1f4b8fa08a4d7b620b067d -#: ../../source/user-docs/application-help/options.rst:87 -msgid "" -":guilabel:`Show organisation logo in the main panel too`: If this is enabled " -"then the selected organisation logo (if any) will be displayed in the bottom " -"of the |project_name| dock panel." -msgstr "" - -# b5858cecc7514115aceb4655310fcbc8 -#: ../../source/user-docs/application-help/options.rst:90 -msgid "" -":guilabel:`Use custom north arrow image`: This option is used to determine a " -"custom north arrow that will be used as the north arrow image in the PDF of " -"your impact scenario project. If this option is disabled, InaSAFE will use " -"the default north arrow image." -msgstr "" - -# 0233cf9f05ce4f0ea56e110a42849d42 -#: ../../source/user-docs/application-help/options.rst:94 -msgid "" -":guilabel:`Additional report templates directory`: This option is used to " -"determine a directory with custom templates. Templates from this directory " -"will be available for use when generating reports in your impact scenario " -"project." -msgstr "" - -# 92c09cc4d0234b8984eff8de9d50e2eb -#: ../../source/user-docs/application-help/options.rst:98 -msgid "" -":guilabel:`Use custom organisation disclaimer text`: This option is used to " -"change the default disclaimer text printed in reports. If this is enabled, " -"enter your own text and it will be used instead of the default one. See :ref:" -"`toolbar_reports` in the |project_name| User's Manual for more information " -"on the reports." -msgstr "" - -# 0642902ba8444192a20fa13d606ef483 -#: ../../source/user-docs/application-help/options.rst:107 -msgid "Advanced" -msgstr "" - -# 4fe99052592d4dada890de154903a8f7 -#: ../../source/user-docs/application-help/options.rst:109 -msgid "" -":guilabel:`Keyword cache for remote datasources`: This option is used to " -"determine where keywords are stored for datasets when it is not possible to " -"write them into a :file:`.keywords` file. See :ref:`keywords_system` in the |" -"project_name| User's Manual for more information on the keywords system." -msgstr "" - -# b29fba494e1341208a2e9a60cd7b8e16 -#: ../../source/user-docs/application-help/options.rst:114 -msgid "" -":guilabel:`Help to improve InaSAFE by submitting errors to a remote server`: " -"This option, when enabled, will submit diagnostic information back to an |" -"project_name| project server in the event of any error taking place that we " -"are able to trap. The information provided is useful to the |project_name| " -"team to improve the robustness of the software and to spot trends in issues " -"people encounter. Please note the warning text below this option which is " -"included here in full:" -msgstr "" - -# ed9794f54137448bb9f01d47928e55a1 -#: ../../source/user-docs/application-help/options.rst:125 -msgid "" -"The above setting requires a QGIS restart to disable/enable. Error messages " -"and diagnostic information will be posted to http://sentry.linfiniti.com/" -"inasafe-desktop/ . Some institutions may not allow you to enable this " -"feature - check with your network administrator if unsure. Although the data " -"is submitted anonymously, the information contained in tracebacks may " -"contain file system paths which reveal your identity or other information " -"from your system." -msgstr "" - -# 245d6e1949a342519f2aff206a5efddd -#: ../../source/user-docs/application-help/options.rst:134 -msgid "" -":guilabel:`Enable developer mode for dock webkit (needs restart)`: With " -"this option enabled, you can right-click on the report area and use the " -"webkit debug tools to debug the output. **This option is intended for " -"advanced users only.**" -msgstr "" - -# 3c636225a6fe4c549c5e1aeed3044d03 -#: ../../source/user-docs/application-help/options.rst:138 -msgid "" -":guilabel:`Use QGIS zonal statistics`: With this button you can toggle " -"between using QGIS internal zonal statistics or the one that comes with |" -"project_name|." -msgstr "" - -# 43e3863327ae4069b9501ca58aa54726 -#: ../../source/user-docs/application-help/options.rst:143 -msgid "" -"You can click on the :guilabel:`Help` button at any time and it will open " -"the help documentation browser to this page." -msgstr "" - -# e23295f3e37b423fbc0ac861b472997c -#: ../../source/user-docs/application-help/options.rst:147 -msgid "" -"Pressing :guilabel:`Cancel` at any time will close the options dialog and " -"any changes made will **not** be applied. Pressing :guilabel:`OK` at any " -"time will close the options dialog and any changes made **will** be applied " -"immediately." -msgstr "" - -# 5d9f1ec5f58845aabf5207c033dd15e2 -#: ../../source/user-docs/application-help/options.rst:152 -msgid "" -"The exact button order shown on this dialog may differ depending on your " -"operating system or desktop environment." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/reports.po b/docs/i18n/en/LC_MESSAGES/user-docs/application-help/reports.po deleted file mode 100644 index c8516eb6..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/reports.po +++ /dev/null @@ -1,275 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# ed161969a72943df8209deb7758036cf -#: ../../source/user-docs/application-help/reports.rst:8 -msgid "Reports" -msgstr "" - -# c2ad21f230464e58af46d3e7effbd892 -#: ../../source/user-docs/application-help/reports.rst:10 -msgid "" -"Reports about the impact scenario project are generated using QGIS composer " -"templates. The default template is shipped with the plugin, but you can " -"easily create your own templates in QGIS and use them as a basis for your " -"reports." -msgstr "" - -# 865bb219900943329ccdeb6289d3f972 -#: ../../source/user-docs/application-help/reports.rst:16 -msgid "Localised templates are supported via the following simple schema:" -msgstr "" - -# 6c9ea3921bf8457880e22cf2114573ab -#: ../../source/user-docs/application-help/reports.rst:18 -msgid "" -"If there is a specified template called :file:`/path/to/template/foo.qpt` " -"then the plugin looks in the template directory :file:`/path/to/template/` " -"for a file called file :file:`foo-LANG.qpt`, where \"LANG\" is the language " -"code of the system locale." -msgstr "" - -# 9adb19f896f2459aba25be2444c09c2a -#: ../../source/user-docs/application-help/reports.rst:23 -msgid "" -"If such a file exists it will be used for report creation, otherwise the " -"original template :file:`/path/to/template/foo.qpt` will be used." -msgstr "" - -# 7ff3be05c1e44fcf9112a0f1445aa271 -#: ../../source/user-docs/application-help/reports.rst:28 -msgid "Report template elements" -msgstr "" - -# 76eb40f5e27f44a28800bb3297e51876 -#: ../../source/user-docs/application-help/reports.rst:30 -msgid "A template contains the following types of elements:" -msgstr "" - -# 8633d56a10664c1ebc0e9000516c8469 -#: ../../source/user-docs/application-help/reports.rst:32 -msgid "Static elements" -msgstr "" - -# 91bd6a93b86f4ed692d41aa57b085cc5 -#: ../../source/user-docs/application-help/reports.rst:33 -#: ../../source/user-docs/application-help/reports.rst:44 -msgid "Elements containing tokens for replacement" -msgstr "" - -# 66fa48c5d7ce43e3a7099dec0cd59329 -#: ../../source/user-docs/application-help/reports.rst:34 -#: ../../source/user-docs/application-help/reports.rst:53 -msgid "Elements that are directly updated by the renderer" -msgstr "" - -# 7b07fe59eec74ec28ede1ec37792a45a -#: ../../source/user-docs/application-help/reports.rst:37 -msgid "Static Elements" -msgstr "" - -# 6e4a54ed53f945bb983c6fa56c7f6eaf -#: ../../source/user-docs/application-help/reports.rst:39 -msgid "" -"These are elements which are not changed during report generation, e.g. some " -"logos/images, additional texts, etc. You can safely remove such elements or " -"replace them with your own as needed." -msgstr "" - -# 988008dc359e47a481e821005dd9866c -#: ../../source/user-docs/application-help/reports.rst:46 -msgid "" -"In this case the element name is not significant, only the token(s) it " -"contains. At render time any of the tokens in these elements will be " -"replaced with translated content (if an alternative locale is in effect) " -"from the plugin according to the keywords listed below in this document." -msgstr "" - -# 57d58e6d037141128413f25ffa302ed4 -#: ../../source/user-docs/application-help/reports.rst:55 -msgid "" -"In this case any content that may be present in the element is completely " -"replaced by the realtime map renderer, although certain styling options (e." -"g. graticule settings on the map) will remain in effect." -msgstr "" - -# 16c30b0ebf5a43d39a5971447a225f07 -#: ../../source/user-docs/application-help/reports.rst:59 -msgid "" -"These elements are recognised by their IDs and currently the plugin supports " -"the following elements:" -msgstr "" - -# 464b0575e9064a48a98f6d66a54f20b8 -#: ../../source/user-docs/application-help/reports.rst:62 -msgid "" -"**safe-logo** --- QGIS composer image, which is used for displaying the |" -"project_name| logo with website url" -msgstr "" - -# dcf90082af9b4de0b222b488a83f6331 -#: ../../source/user-docs/application-help/reports.rst:64 -msgid "" -"**organisation-logo** --- QGIS composer image, which is used for displaying " -"an organisational logo; By default a combined supporters logo is used; To " -"use a custom logo image, set the path to your PNG file in the Options dialog " -"(see :ref:`toolbar_options` for details)." -msgstr "" - -# 5f2dee19dc9848108e0d7c9185472511 -#: ../../source/user-docs/application-help/reports.rst:69 -msgid "" -"**impact-map** --- QGIS composer map, which is used for displaying the " -"impact scenario" -msgstr "" - -# 58391e7e87764e979dff751954e9119a -#: ../../source/user-docs/application-help/reports.rst:71 -msgid "" -"**impact-legend** --- QGIS composer legend, which is used for displaying the " -"legend of the impact scenario" -msgstr "" - -# be5272472ce7499585d65d6a0e1c8c3d -#: ../../source/user-docs/application-help/reports.rst:73 -msgid "" -"**impact-report** --- QGIS composer label, which is used for displaying the " -"impact report table" -msgstr "" - -# 162c77b90edc46a389ed2c179e9f2f8f -#: ../../source/user-docs/application-help/reports.rst:76 -msgid "" -"As QGIS composer doesn't support automatic resizing of elements based on " -"their contents, make sure that labels have dimensions large enough to show " -"the full table." -msgstr "" - -# fd8eca09f870433baf45ecbe1bcfa53e -#: ../../source/user-docs/application-help/reports.rst:81 -msgid "Replaceable keywords" -msgstr "" - -# bc4176399a6b41f9b6cb8835dc0fe5a1 -#: ../../source/user-docs/application-help/reports.rst:83 -msgid "" -"This section describes tokenised keywords that are passed to the map " -"template. To insert any of these keywords into the map template, simply " -"enclose the key in [] (e.g. [place-name]) and it will be replaced by the " -"text value (e.g. Tondano). The list includes static phrases which have been " -"internationalised (and so they will be displayed in the language of the " -"selected map local, defaulting to English where no translation is available)." -msgstr "" - -# 849976b6bf9d4c9897b9f34532ee842b -#: ../../source/user-docs/application-help/reports.rst:91 -msgid "The following tokenised keywords are supported:" -msgstr "" - -# c9a9b2029d3e4459944517bceba72dd0 -#: ../../source/user-docs/application-help/reports.rst:93 -msgid "**impact-title** --- title of the impact scenario map" -msgstr "" - -# 206df42863e7436e935c19815cf7eca0 -#: ../../source/user-docs/application-help/reports.rst:94 -msgid "**date** --- date of the assessment" -msgstr "" - -# 0a5c1e8b314946f5b23e02dd73f77ebc -#: ../../source/user-docs/application-help/reports.rst:95 -msgid "**time** --- time of the assessment" -msgstr "" - -# 8d2fdb19a5ac4654bed441c90b95140c -#: ../../source/user-docs/application-help/reports.rst:96 -msgid "**safe-version** --- version of the plugin used" -msgstr "" - -# a4e36bd1fd0144dab0d30a623bd1a817 -#: ../../source/user-docs/application-help/reports.rst:97 -msgid "" -"**disclaimer** --- disclaimer text; By default this text is used: \"InaSAFE " -"has been jointly developed by Indonesian Government-BPNB, Australian " -"Govenment-AIFDR and the World Bank-GFDRR. These agencies and the individual " -"software developers of InaSAFE take no responsibility for the correctness of " -"outputs from InaSAFE or decisions derived as a consequence.\" To use custom " -"disclaimer text, enter desired text in the Options dialog (see :ref:" -"`toolbar_options` for details)." -msgstr "" - -# 9f361b660dfd4136a292bddd62e50164 -#: ../../source/user-docs/application-help/reports.rst:107 -msgid "Custom templates" -msgstr "" - -# b47e1ff234374faeb710ff9df3e144c9 -#: ../../source/user-docs/application-help/reports.rst:109 -msgid "" -"You have a few options to customise the template **without doing any " -"programming**. There are three primary ways you can achieve this:" -msgstr "" - -# f89e79e07fd240e5b8677663faec91ba -#: ../../source/user-docs/application-help/reports.rst:113 -msgid "" -"Moving replaceable keywords into different elements, or removing them " -"completely" -msgstr "" - -# 2a1d285a27234f148932a6853ae5ca72 -#: ../../source/user-docs/application-help/reports.rst:115 -msgid "" -"Changing template elements look and feel (e.g. setting up fonts, colors, " -"borders, etc.), moving the template elements themselves around or adding / " -"removing them completely" -msgstr "" - -# aff84c0da9964368bfc7814d9eabbe1f -#: ../../source/user-docs/application-help/reports.rst:118 -msgid "" -"Creating your own template from scratch and using it instead of default one" -msgstr "" - -# f31abab7594c49cbae8df9c95ac3d8c9 -#: ../../source/user-docs/application-help/reports.rst:120 -msgid "" -"The default template is provided as :file:`inasafe/safe_qgis/resources/qgis-" -"composer-templates/inasafe.qpt` and can be modified by opening the template " -"using the QGIS map composer, making your changes and then overwriting the " -"template or saving it in any directory." -msgstr "" - -# b19b92142fe643a4b5d3f6e7ca2bd75d -#: ../../source/user-docs/application-help/reports.rst:126 -msgid "" -"You should take care to test your template changes before using it in a " -"production environment." -msgstr "" - -# 8df2ba0f5e2d4f4dbb5f4c030e8c5f14 -#: ../../source/user-docs/application-help/reports.rst:129 -msgid "" -"In addition to the default template you can have as many custom templates as " -"you want. Just create templates, put them in a folder and go to :" -"menuselection:`Plugins ‣ InaSAFE ‣ InaSAFE Options` or click on the |" -"project_name| plugin toolbar's :guilabel:`Options` button. In the Options " -"dialog specify the :guilabel:`Report template` setting. It should contain " -"the full path to the folder with your custom templates." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/save_scenario.po b/docs/i18n/en/LC_MESSAGES/user-docs/application-help/save_scenario.po deleted file mode 100644 index 26016801..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/save_scenario.po +++ /dev/null @@ -1,60 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 69419d0fe7e949c2bc5e1b0c5f33c0f0 -#: ../../source/user-docs/application-help/save_scenario.rst:8 -msgid "Save Scenario" -msgstr "" - -# cf4f45960e364723803f7db3d5f78d4d -#: ../../source/user-docs/application-help/save_scenario.rst:10 -msgid "" -"The Save Current Scenario tool allows you to save scenarios (:ref:" -"`tb_save_scenario`) and batch run them again in the batch runner tool (:ref:" -"`batch_runner`) in one go:" -msgstr "" - -# 42fb28c1b1f6492587f5042f3f34e622 -#: ../../source/user-docs/application-help/save_scenario.rst:19 -msgid "*Save current scenario*" -msgstr "" - -# 4f84cadfe4244c9495fb906974e67322 -#: ../../source/user-docs/application-help/save_scenario.rst:21 -msgid "" -"This is the tool you need to prepare/save scenarios for the :ref:" -"`tb_batch_runner`. It lets you save the current visible scenario in QGIS to " -"a :file:`.txt` file. Once saved you can reopen this file as a scenario again " -"in Batch runner and recalculate it." -msgstr "" - -# a9addeb6fb65494eaa26b503cdc3da73 -#: ../../source/user-docs/application-help/save_scenario.rst:26 -msgid "" -"A more detailed description of the batch runner is available in :ref:" -"`batch_runner`." -msgstr "" - -# 40e8826584454677abe66eb9dc9e1e47 -#: ../../source/user-docs/application-help/save_scenario.rst:29 -msgid "" -"This tool currently does not store the impact function parameters you may " -"have set. Consequently all impact functions will run using their default " -"options." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/user_extents.po b/docs/i18n/en/LC_MESSAGES/user-docs/application-help/user_extents.po deleted file mode 100644 index 7d3151a1..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/application-help/user_extents.po +++ /dev/null @@ -1,108 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.2\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-01 22:03+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# b3a7db31339843358da3700f7f742773 -#: ../../source/user-docs/application-help/user_extents.rst:8 -msgid "User Extents" -msgstr "" - -# a15711bd9eff4b0e9ac4ec1e0a900705 -#: ../../source/user-docs/application-help/user_extents.rst:10 -msgid "" -"As of version 2.2, it is possible to explicitly define the extents that " -"should be used for the analysis. You can use the new :menuselection:" -"`Plugins-->InaSAFE-->Set the analysis area for InaSAFE` to invoke the " -"extents selection dialog." -msgstr "" - -# 4329a822ca174332acc796b66e93c83d -#: ../../source/user-docs/application-help/user_extents.rst:20 -msgid "User extents dialog" -msgstr "" - -# eed6acfb973f43f5b93b299feaff94f0 -#: ../../source/user-docs/application-help/user_extents.rst:22 -msgid "" -"It is important do understand the logical workflow for your custom defined " -"extents and their relation to the layer and viewport extents. There are " -"three possible permutations for the basic extents clipping behaviour:" -msgstr "" - -# fa2794c60e494645b535e84e4fe77500 -#: ../../source/user-docs/application-help/user_extents.rst:29 -msgid "" -"**No clipping**: use full extents of the union of the hazard and exposure" -msgstr "" - -# 8b5505ada4e8451e92d0b968565c12cd -#: ../../source/user-docs/application-help/user_extents.rst:27 -msgid "" -"datasets regardless of your current viewport (where you are zoomed to on the " -"map. You can enable this behaviour in the options dialog by unticking :" -"guilabel:`Clip datasets to visible extents before analysis`." -msgstr "" - -# a7a4906633fc4467b04ab88c50100e7c -#: ../../source/user-docs/application-help/user_extents.rst:34 -msgid "" -"**Clip to visible viewport extents**: use the common overlapping area of" -msgstr "" - -# 03f3138b4f8d4dbe9fd46572ac646f5f -#: ../../source/user-docs/application-help/user_extents.rst:32 -msgid "" -"hazard, exposure and the current extents for the analysis (enable this " -"behaviour by ticking :guilabel:`Clip datasets to visible extents before " -"analysis`)." -msgstr "" - -# 4dca80f0a1ee475e8e300fa2edf60e59 -#: ../../source/user-docs/application-help/user_extents.rst:39 -msgid "" -"**Clip to the user defined extents**: use the common overlapping area of" -msgstr "" - -# aba76d48bfdb454b85990eaf0fac87a5 -#: ../../source/user-docs/application-help/user_extents.rst:37 -msgid "" -"hazard, exposure and the user defined extents for the analysis (enable this " -"behaviour by using :menuselection:`Plugins-->InaSAFE-->Set the analysis area " -"for InaSAFE`)." -msgstr "" - -# 2e50309ebf2d4d708667b5d51e0aed0b -#: ../../source/user-docs/application-help/user_extents.rst:41 -msgid "" -"When you select an area using the user extents dialog (either by pressing " -"the :guilabel:`Select on map` button, or by manually typing the extents " -"coordinates) the user extent will be shown with a blue rectangle on the map " -"if you have rubber band previews enabled. Creating a user defined analysis " -"extent will enable the third behaviour described above, and any analysis " -"done will disregard the current viewport extents and only consider the " -"intersection of the user defined analysis ares and the hazard and exposure " -"layers." -msgstr "" - -# ecc93f27a6224e2183168bde736e6058 -#: ../../source/user-docs/application-help/user_extents.rst:49 -msgid "" -"**Note:** To disable user defined extents, :menuselection:`Plugins--" -">InaSAFE-->Set the analysis area for InaSAFE` then click the :guilabel:" -"`clear` button." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/functionality.po b/docs/i18n/en/LC_MESSAGES/user-docs/functionality.po deleted file mode 100644 index 87d9c4ab..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/functionality.po +++ /dev/null @@ -1,296 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 37d605beb94a4139b66984afec8ccecf -#: ../../source/user-docs/functionality.rst:8 -msgid "Functionality" -msgstr "" - -# 6180f372c0ac49009c5f6421ca58f62f -#: ../../source/user-docs/functionality.rst:10 -msgid "" -"This document describes |project_name|'s functionality in regard to what " -"inputs are needed to carry on an analysis. At the highest level |" -"project_name| will take a hazard layer (such as ground shaking, water depth " -"or ash load) and an exposure layer (such as population density or building " -"footprints) and combine them according to an impact function to produce an " -"impact layer and a report." -msgstr "" - -# d3ebac3bbd5c4604adcd9a19117c17d7 -#: ../../source/user-docs/functionality.rst:18 -msgid "Hazard layers" -msgstr "" - -# 628098aaa35e41d081431b7cdfa2c093 -#: ../../source/user-docs/functionality.rst:20 -msgid "The supported hazard layers are:" -msgstr "" - -# 15bdb34dedde44ec8a36cad924ba0286 -#: ../../source/user-docs/functionality.rst:23 -msgid "Hazard" -msgstr "" - -# 395e69b3e23545ad96c6473e97d9c10d -# 7f24b78fbe0e4623813ac3379af45be2 -#: ../../source/user-docs/functionality.rst:23 -#: ../../source/user-docs/functionality.rst:44 -msgid "Spatial type" -msgstr "" - -# df1aa8c74dea4ab4b3ea5e564700d2b5 -#: ../../source/user-docs/functionality.rst:23 -msgid "Hazard type" -msgstr "" - -# 6910076ea1624e12ac0adb85857cc482 -# d4217bbe26934133955ec267030ef203 -#: ../../source/user-docs/functionality.rst:23 -#: ../../source/user-docs/functionality.rst:44 -msgid "Attribute name" -msgstr "" - -# 0481067f75c645739d75ea49f7d4e7a3 -# 44fda5d8851249d3974035a206ca469c -#: ../../source/user-docs/functionality.rst:23 -#: ../../source/user-docs/functionality.rst:44 -msgid "Hazard units/fields" -msgstr "" - -# d40ff0ca7c6f486386ec98f17d1835df -#: ../../source/user-docs/functionality.rst:23 -msgid "Parameters" -msgstr "" - -# 38c5392c70da440d9693d5fa85d82348 -# 232789bdada44c87912f5490b2c4e4fa -# 8d96ec8f4fb24c30abb3bd43c01379e2 -#: ../../source/user-docs/functionality.rst:25 -#: ../../source/user-docs/functionality.rst:27 -#: ../../source/user-docs/functionality.rst:29 -msgid "Volcano" -msgstr "" - -# ff0c89de45f7428db15246354acdfcf4 -# 70d2bff9fbdb4a2e840b873c3046918f -# bda7d13f56914ecda647442d71f840f1 -# eecc8780545c43faa61e2928fdeb20ff -# c073df031423428f89874f7bc79dc4d3 -#: ../../source/user-docs/functionality.rst:25 -#: ../../source/user-docs/functionality.rst:31 -#: ../../source/user-docs/functionality.rst:33 -#: ../../source/user-docs/functionality.rst:37 -#: ../../source/user-docs/functionality.rst:46 -msgid "Raster" -msgstr "" - -# ab3d0f208afb465fb84602efa8044167 -#: ../../source/user-docs/functionality.rst:25 -msgid "Ash load" -msgstr "" - -# 7dcfed285b8549bb89a6eee2f35e4ce6 -# b04ca6bf587a4728b29e4a38f7c31b60 -# 6fec9a00f5a2413894c524a2486a3025 -# 0bd2c7d5f4974f2bbf147d0210219f9e -# e416bf177b5042459adfa2bd7162c963 -#: ../../source/user-docs/functionality.rst:25 -#: ../../source/user-docs/functionality.rst:31 -#: ../../source/user-docs/functionality.rst:33 -#: ../../source/user-docs/functionality.rst:37 -#: ../../source/user-docs/functionality.rst:46 -msgid "N/A" -msgstr "" - -# 78787007414c47bcb40c2c16a3ce251a -#: ../../source/user-docs/functionality.rst:25 -msgid "kg/m^2" -msgstr "" - -# 5b83508324d949dcb639fcd4d6f5d12c -# 432ba9b77829400f90ecb56b34ca9825 -#: ../../source/user-docs/functionality.rst:27 -#: ../../source/user-docs/functionality.rst:47 -msgid "Point" -msgstr "" - -# c483fba3d3384b3ab67b97bf9c0cd218 -#: ../../source/user-docs/functionality.rst:27 -msgid "Distance from vent" -msgstr "" - -# 35268157739f4b44a130b265a411cd08 -#: ../../source/user-docs/functionality.rst:27 -msgid "Name" -msgstr "" - -# 54b9cdf07b674f949ade61a237df4941 -# b01719ea70fe47018ff3a3c0cfb537a3 -# 2a81a6b249644670afeecf7ebdf51135 -# 1679c50691bd4da8b19f243e5c63f5bc -#: ../../source/user-docs/functionality.rst:27 -#: ../../source/user-docs/functionality.rst:29 -#: ../../source/user-docs/functionality.rst:47 -#: ../../source/user-docs/functionality.rst:48 -msgid "text" -msgstr "" - -# 4c962fa0e4b748eb97d6b8b6b18a6d8d -#: ../../source/user-docs/functionality.rst:27 -msgid "Radius [km]" -msgstr "" - -# e2fb75ac327d487283eaf5534f231770 -# 4a781f8fc6c64e0db9f7b004698ec308 -# d6c77bd3db4d450db1cc28097554d956 -#: ../../source/user-docs/functionality.rst:29 -#: ../../source/user-docs/functionality.rst:35 -#: ../../source/user-docs/functionality.rst:48 -msgid "Polygon" -msgstr "" - -# 57069e57a33f449f820e0cf569eb4479 -#: ../../source/user-docs/functionality.rst:29 -msgid "Category" -msgstr "" - -# 8dfe21d3914d437d982b1e5921c9532e -#: ../../source/user-docs/functionality.rst:29 -msgid "KRB" -msgstr "" - -# 228e8444eb294a9a8fe3846c756794c3 -#: ../../source/user-docs/functionality.rst:31 -msgid "Earthquake" -msgstr "" - -# d5985974a27040f0ad6966800c649fb6 -#: ../../source/user-docs/functionality.rst:31 -msgid "Shakemap" -msgstr "" - -# d1519092cc8b496ca9417b6a4e43b4ae -#: ../../source/user-docs/functionality.rst:31 -msgid "MMI" -msgstr "" - -# 1c93d0e3a0d04896a807d5d0373684c5 -# 8137d608ba43431f878248b2c5a51a9d -#: ../../source/user-docs/functionality.rst:33 -#: ../../source/user-docs/functionality.rst:35 -msgid "Flood" -msgstr "" - -# bee4967d45d54d1f973b2e4dabe8344f -# 7ee909c8b9e842fe81de2427547d0d0c -#: ../../source/user-docs/functionality.rst:33 -#: ../../source/user-docs/functionality.rst:37 -msgid "Depth" -msgstr "" - -# bf78592a92ef4eb1b7a213812215ecf5 -# 662103f71a5143a3bc7744066462c6c3 -#: ../../source/user-docs/functionality.rst:33 -#: ../../source/user-docs/functionality.rst:37 -msgid "m" -msgstr "" - -# 1c25518b89b14057984bcb050146bc7a -# 3b0a97c03050439f87d2ed61f7809b82 -#: ../../source/user-docs/functionality.rst:33 -#: ../../source/user-docs/functionality.rst:37 -msgid "Threshold [m]" -msgstr "" - -# 0fc03e9e0e4648d7a6d044063a1468c1 -#: ../../source/user-docs/functionality.rst:35 -msgid "Wet/Dry" -msgstr "" - -# e5e0d7d90b614b849c95458a940d5252 -#: ../../source/user-docs/functionality.rst:35 -msgid "affected" -msgstr "" - -# 02fb08db8b4248df9ba21f5823684b7c -#: ../../source/user-docs/functionality.rst:35 -msgid "1/0" -msgstr "" - -# 2c5977a3d64e46508321adc7bf855d77 -#: ../../source/user-docs/functionality.rst:35 -msgid "Threshold [%]" -msgstr "" - -# 0b97a9456587493499df619612af74bf -#: ../../source/user-docs/functionality.rst:37 -msgid "Tsunami" -msgstr "" - -# 8fd88558eaa7415a93fcea2af88e72d8 -#: ../../source/user-docs/functionality.rst:41 -msgid "Exposure layers" -msgstr "" - -# 836d793b77384525b168512d16f5dde8 -#: ../../source/user-docs/functionality.rst:44 -msgid "Exposure" -msgstr "" - -# e84db019b6454329936a69d10c4f6a62 -#: ../../source/user-docs/functionality.rst:44 -msgid "Exposure type" -msgstr "" - -# 491aaa6de25b477aa4b5a0987528a2c3 -#: ../../source/user-docs/functionality.rst:46 -msgid "Population" -msgstr "" - -# 86f4ca15a1cb45a581582869390808c7 -#: ../../source/user-docs/functionality.rst:46 -msgid "Density" -msgstr "" - -# 392c934553584999b9ff3fc22da4cf82 -#: ../../source/user-docs/functionality.rst:46 -msgid "People per pixel" -msgstr "" - -# dffc2ef494604f35bedf47b74f89d6fb -# c85ace7dc3374d46be2f135aeab60b1c -#: ../../source/user-docs/functionality.rst:47 -#: ../../source/user-docs/functionality.rst:48 -msgid "Structures" -msgstr "" - -# e86c1f9554f74132bbac6b6dafee880a -# af7cacec4c034d40bba2306b5f025832 -#: ../../source/user-docs/functionality.rst:47 -#: ../../source/user-docs/functionality.rst:48 -msgid "Structure type" -msgstr "" - -# db725312609a477f8afe7b9950b0a198 -# 3417ac0e246e41689e0ce44b06649086 -#: ../../source/user-docs/functionality.rst:47 -#: ../../source/user-docs/functionality.rst:48 -msgid "type" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/getting_help.po b/docs/i18n/en/LC_MESSAGES/user-docs/getting_help.po deleted file mode 100644 index 1eedaf8b..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/getting_help.po +++ /dev/null @@ -1,104 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 80dd6c5c9fe34a9a99c181457d2f7e87 -#: ../../source/user-docs/getting_help.rst:8 -msgid "Getting Help" -msgstr "" - -# a3b948b630e74c75a30f0f1acebf8562 -#: ../../source/user-docs/getting_help.rst:10 -msgid "" -"If you need help using |project_name|, join the |project_name| mailing list " -"or connect with other local users." -msgstr "" - -# 5ec8daee5d354f3a84c769f996ec1709 -#: ../../source/user-docs/getting_help.rst:16 -msgid "|project_name| Google Group mailing list" -msgstr "" - -# a3dcc85b39c3468e9f3035efdeafeb5f -#: ../../source/user-docs/getting_help.rst:18 -msgid "You do not need a google account to use this forum/mailing list!" -msgstr "" - -# 61cecc01c3d443a0b6cb1534e83fd31c -#: ../../source/user-docs/getting_help.rst:20 -msgid "" -"If you experience problems using |project_name|, have suggestions on " -"improving the software or simply would like to get in contact with other |" -"project_name| users, join our google group by sending an email to:" -msgstr "" - -# ac8e3c16378f4485a5cf0b42c9820550 -#: ../../source/user-docs/getting_help.rst:24 -msgid "inasafe-users+subscribe@googlegroups.com" -msgstr "" - -# 0d3789d82dbb4fc79b90ead5a15caf5f -#: ../../source/user-docs/getting_help.rst:26 -msgid "You can unsubscribe from the list at any time by sending an email to:" -msgstr "" - -# b553b8aafe6e449494cfeaf4dee195f3 -#: ../../source/user-docs/getting_help.rst:28 -msgid "inasafe-users+unsubscribe@googlegroups.com" -msgstr "" - -# 6dc2f6eeb3c64a338b784f1f71f42431 -#: ../../source/user-docs/getting_help.rst:30 -msgid "" -"You can view the message archive of this forum on the |project_name| users " -"group page at:" -msgstr "" - -# 5c2202e2e56e4297ba1d071bbd468fbc -#: ../../source/user-docs/getting_help.rst:33 -msgid "https://groups.google.com/forum/?fromgroups#!forum/inasafe-users" -msgstr "" - -# 2d5fc492547546fd8859c209230c9584 -#: ../../source/user-docs/getting_help.rst:37 -msgid "Localised help" -msgstr "" - -# 6998245b74e44c7691bcd17fd5b439d4 -#: ../../source/user-docs/getting_help.rst:39 -msgid "" -"For users in Indonesia, there is a Facebook group where you can request help " -"in Indonesian language." -msgstr "" - -# 117d1cb0791046be965e4aa4ccc793fb -#: ../../source/user-docs/getting_help.rst:42 -msgid "https://www.facebook.com/groups/forumQGISindo/" -msgstr "" - -# 083f394c64464ebcac5fcbc4f69fcae8 -#: ../../source/user-docs/getting_help.rst:46 -msgid "Getting involved" -msgstr "" - -# 89ec464443cb4915b5679e6bc8e72293 -#: ../../source/user-docs/getting_help.rst:48 -msgid "" -"To help in the development of |project_name| or report a bug, visit :ref:" -"`getting_involved`." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/getting_involved.po b/docs/i18n/en/LC_MESSAGES/user-docs/getting_involved.po deleted file mode 100644 index 04b2dd97..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/getting_involved.po +++ /dev/null @@ -1,188 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-01 22:03+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 10f3c32b38e545bfa7f2c1c575f4ad9b -#: ../../source/user-docs/getting_involved.rst:8 -msgid "Getting involved" -msgstr "" - -# e22ddfa2410a40e695f95198f3332d7f -#: ../../source/user-docs/getting_involved.rst:10 -msgid "" -"If you like the work we are doing with |project_name| and would like to " -"contribute, we will welcome your involvement. We spend a lot of time and " -"effort trying to make a robust, user-friendly and useful software platform, " -"but there is no substitute for having interested users participating and " -"sharing their needs, problems and successes! Here are a few simple ways you " -"can get involved:" -msgstr "" - -# b104e63d6df647159e6a74d3660de862 -#: ../../source/user-docs/getting_involved.rst:21 -msgid "Visit our web site!" -msgstr "" - -# 02760de8fb6949578e5dc710d4913b54 -#: ../../source/user-docs/getting_involved.rst:23 -msgid "" -"The web site will always contain the latest information on how to use |" -"project_name|. We encourage anyone who wants to get involved with the " -"project to first read the content available on the site to familiarise " -"themselves with the content. The website is available at:" -msgstr "" - -# ceafbf5b860042b0a836885b04ce2354 -#: ../../source/user-docs/getting_involved.rst:29 -msgid "http://inasafe.org" -msgstr "" - -# 7cde5d1c0f0f4fe38093fe6dcfcdde59 -#: ../../source/user-docs/getting_involved.rst:31 -msgid "" -"If you need help in solving problems with |project_name| take a look at :ref:" -"`getting_help`." -msgstr "" - -# c9b2d3abfffa4d82847ada1cc7d92e44 -#: ../../source/user-docs/getting_involved.rst:37 -msgid "Add yourself to the |project_name| Usermap!" -msgstr "" - -# e8ef6579ea514adb8b78f040623050f0 -#: ../../source/user-docs/getting_involved.rst:39 -msgid "" -"As a User/Trainer/Developer of |project_name| you are encouraged to add " -"yourself to the Usermap page available at:" -msgstr "" - -# 9fc70633292443a6872a0adb6de27ccb -#: ../../source/user-docs/getting_involved.rst:42 -msgid "http://users.inasafe.org/" -msgstr "" - -# 10c8f7ae91a344798b541d8ee6ea52b7 -#: ../../source/user-docs/getting_involved.rst:44 -msgid "" -"Use the :guilabel:`Add me to map!` button on the left side and point the " -"cross to the place where you live. Fill in your user data and click on :" -"guilabel:`Done!`. Here you may also download the coordinates of all entered |" -"project_name| users as a CSV file." -msgstr "" - -# 33f2a0b492164b45bcf3ab8878914eef -#: ../../source/user-docs/getting_involved.rst:53 -msgid "Use our issue tracker!" -msgstr "" - -# e55592dfc27b45da8eba4fba373dbbd7 -#: ../../source/user-docs/getting_involved.rst:55 -msgid "We maintain an issue tracker here:" -msgstr "" - -# d877de984044435484cda3816cd06142 -#: ../../source/user-docs/getting_involved.rst:57 -msgid "http://github.com/AIFDR/inasafe/issues" -msgstr "" - -# 77dbd0dfe95a474abbad2a9143436e05 -#: ../../source/user-docs/getting_involved.rst:59 -msgid "" -"On this page you can browse and search existing issues and create new " -"issues. The issue tracker is a great place to let us know about specific " -"bugs you encounter or tell us about new features you would like to see in " -"the software. Information about how to correctly file an issue is available " -"in the :ref:`issue_howto` section." -msgstr "" - -# cb9e95831f7a48c0a6c30869d34c776a -#: ../../source/user-docs/getting_involved.rst:68 -msgid "Chat live to developers on IRC!" -msgstr "" - -# 71b015aad47b486080b5d9c10a4496b9 -#: ../../source/user-docs/getting_involved.rst:70 -msgid "" -"Internet Relay Chat (IRC) is a chat room environment where you can talk (by " -"typing messages) to other |project_name| users and developers to discuss " -"ideas and get help. You can use your own IRC client and join #inasafe on the " -"irc.freenode.net network. We also have a direct link on http://www.inasafe." -"org. Click on :guilabel:`Chat live!` at the top of the page and join us in " -"the channel. Alternatively, you can use your web browser to join the chat " -"room using the link below:" -msgstr "" - -# e7ddfa30b6594199bbd947430c9a967f -#: ../../source/user-docs/getting_involved.rst:81 -msgid "http://webchat.freenode.net/" -msgstr "" - -# 872473fd878e44f7b4625ba4087975a5 -#: ../../source/user-docs/getting_involved.rst:83 -msgid "" -"On the form that appears, choose a user name, enter :kbd:`#inasafe` in the :" -"guilabel:`Channels:` box and complete the rest of the details in the form. " -"After logging in wait a few moments and you will be taken to the #inasafe " -"channel." -msgstr "" - -# 1a8b2af544bd4c7dbfd1d6d5754de9a6 -#: ../../source/user-docs/getting_involved.rst:88 -msgid "" -"Other people in the room may not be actively watching the channel, so just " -"ask your question, leave the chat window open and check back every now and " -"then until you see other chat room members become active." -msgstr "" - -# 0757c899b8814ba8b9cb8cbbf5ab13af -#: ../../source/user-docs/getting_involved.rst:95 -msgid "Submit your code!" -msgstr "" - -# 71d545c9a215494da0a449486e32bef8 -#: ../../source/user-docs/getting_involved.rst:97 -msgid "" -"We must emphasise that |project_name| is **free** and **open source**. That " -"means anyone (or any organisation) can freely modify, adapt and improve the " -"software. We welcome any contributions to |project_name|." -msgstr "" - -# d14e369408f7418cb4c9022be05c8b55 -#: ../../source/user-docs/getting_involved.rst:102 -msgid "" -"The easiest way to do this is to `fork `_ the |project_name| code base on GitHub and then send us a " -"`pull request `_." -msgstr "" - -# 0efae9923876460290104843594895b4 -#: ../../source/user-docs/getting_involved.rst:107 -msgid "" -"We also welcome small improvements, translations or other fixes via the " -"issue management system mentioned above." -msgstr "" - -# d765d7ec61554a159afd36833351d461 -#: ../../source/user-docs/getting_involved.rst:110 -msgid "" -"We have strict requirements that all code submitted to |project_name| is " -"compliant with high coding_standards and is continually tested by a " -"comprehensive regression testing system. We have this requirement in place " -"to ensure a good experience for our users and to ensure that users can have " -"confidence in the results produced by |project_name|." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.po b/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.po deleted file mode 100644 index 068e153d..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.po +++ /dev/null @@ -1,122 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# d531e3f978f54de38aeae9a6bcab1499 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:6 -msgid "Categorical Hazard Building Impact Function" -msgstr "" - -# 079c9d8416a14432a6a4dff6c9164b89 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:9 -msgid "Overview" -msgstr "" - -# f3fc4d228e194db6a512118729126a16 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:11 -msgid "**Unique Identifier**: Categorical Hazard Building Impact Function" -msgstr "" - -# 593bc107d61b49ca9f4013ff6ecda462 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:14 -msgid "**Author**: ESSC" -msgstr "" - -# 7b98f0c42dc74606adfa1e40af9a28f9 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:17 -msgid "**Rating**: 3" -msgstr "" - -# 2b944c65e911402d9beb6a85169ed875 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:20 -msgid "**Title**: Be impacted by each category" -msgstr "" - -# c67cd409298741788a3fba787817a9e4 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of categorized hazard in raster format " -"on structure/building raster layer." -msgstr "" - -# 6d4e16241b9641f09d107f2a12e4da96 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:26 -msgid "" -"**Actions**: Provide details about how many building would likely need to be " -"affected for each category." -msgstr "" - -# bc8ec2c88cff4875842d3d754e500cd1 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:29 -msgid "" -"**Hazard Input**: A hazard raster layer where each cell represents the " -"category of the hazard. There should be 3 categories: 1, 2, and 3." -msgstr "" - -# 67af5f0511b4423eb8215d27617179f6 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:32 -msgid "" -"**Exposure Input**: Vector polygon layer which can be extracted from OSM " -"where each polygon represents the footprint of a building." -msgstr "" - -# c634b7c48e884727b48fc73553b698fb -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:35 -msgid "" -"**Output**: Map of structure exposed to high category and a table with " -"number of structure in each category" -msgstr "" - -# 9f5cf99f309d47d1a61f911e320eac14 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:39 -msgid "Details" -msgstr "" - -# 283fab652b2d4bbb8ef6d5e566a26f45 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:41 -msgid "" -"This function will calculate how many buildings will be affected per each " -"category for all categories in the hazard layer. Currently there should be 3 " -"categories in the hazard layer. After that it will show the result and the " -"total of buildings that will be affected for the hazard given." -msgstr "" - -# e9d390a5fb17455b85877a667ca4f8db -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:44 -msgid "Doc String" -msgstr "" - -# 3cf56bff4754466f8dbb12c8ce8fec13 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:46 -msgid "Impact plugin for categorising hazard impact on building data" -msgstr "" - -# 5b73555cbd714cfc9409dc1d8b0daedd -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:48 -msgid "" -":author ESSC :rating 3 :param requires category=='hazard' " -"and unit=='categorised' and " -"layertype=='raster'" -msgstr "" - -# 56bf0498bcf74994b43731ad931296d4 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:52 -msgid "" -":param requires category=='exposure' and " -"subcategory=='structure' and layertype=='vector'" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.po b/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.po deleted file mode 100644 index d6d07b7b..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.po +++ /dev/null @@ -1,127 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 0c772de201d7402ab35b9f8f67f28d0a -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:6 -msgid "Categorical Hazard Population Impact Function" -msgstr "" - -# 83ac24fdf3d6477f889e90dec6e55001 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:9 -msgid "Overview" -msgstr "" - -# 252c180e127f4f6e8aa79d6b69a4550f -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:11 -msgid "**Unique Identifier**: Categorical Hazard Population Impact Function" -msgstr "" - -# 017c8719075b49a9a562a10e07bb2853 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:14 -msgid "**Author**: ESSC" -msgstr "" - -# e7eb9fe7154446628f6caaea24070570 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:17 -msgid "**Rating**: 3" -msgstr "" - -# 5aabcfd392e04748b9ce529827992c72 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:20 -msgid "**Title**: Be affected by each hazard category" -msgstr "" - -# 22ccd4ecc56a49bfada7230eb972fbfa -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of categorized hazards in raster format " -"on population raster layer." -msgstr "" - -# db0d6b1630024622ac535bfcc9dad82f -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:26 -msgid "" -"**Actions**: Provide details about how many people would likely need to be " -"impacted for each category." -msgstr "" - -# 8f9588a8150645069d42dfd61163771d -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:29 -msgid "" -"**Hazard Input**: A hazard raster layer where each cell represents the " -"category of the hazard. There should be 3 categories: 1, 2, and 3." -msgstr "" - -# ba08215b7f7c41b0b4eb4869c12dcec2 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:32 -msgid "" -"**Exposure Input**: An exposure raster layer where each cell represent " -"population count." -msgstr "" - -# 7821f714c9a146b083fc191907dd3fd8 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:35 -msgid "" -"**Output**: Map of population exposed to high category and a table with " -"number of people in each category" -msgstr "" - -# 73679185d5f5415a8f07cba479da3487 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:38 -msgid "**Limitation**: The number of categories is three." -msgstr "" - -# 7f9ff5071cba4a89bed838a72ebca544 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:42 -msgid "Details" -msgstr "" - -# e3db9ccba76545e192c0b27755ddd302 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:44 -msgid "" -"This function will calculate how many people will be impacted per each " -"category for all categories in the hazard layer. Currently there should be 3 " -"categories in the hazard layer. After that it will show the result and the " -"total amount of people that will be impacted for the hazard given." -msgstr "" - -# 2c86918517624f3e97326062474a458c -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:47 -msgid "Doc String" -msgstr "" - -# 7fc8ec619a8a466e92be6a80617e568d -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:49 -msgid "Plugin for impact of population as derived by categorised hazard." -msgstr "" - -# 4625dd2d0e934f8ba03d47d037ee2a2a -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:51 -msgid "" -":author ESSC :rating 3 :param requires category=='hazard' " -"and unit=='categorised' and " -"layertype=='raster'" -msgstr "" - -# d854fbe88b52404a84b0c8d5ed8b352e -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:55 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.po b/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.po deleted file mode 100644 index 53171a54..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.po +++ /dev/null @@ -1,127 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 1a506fe9dde34b53ba137c31227484e8 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:6 -msgid "Categorised Hazard Population Impact Function" -msgstr "" - -# 78ba30c66afd4cfcad9e493926d61f7d -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:9 -msgid "Overview" -msgstr "" - -# d1a20fe1380341ca94504e461b24fb23 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:11 -msgid "**Unique Identifier**: Categorised Hazard Population Impact Function" -msgstr "" - -# bc1dc53d43274052a4b36ac9dcd91680 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:14 -msgid "**Author**: AIFDR" -msgstr "" - -# 189ef9893ecf41cbabfd9dc8f3d60c1c -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:17 -msgid "**Rating**: 2" -msgstr "" - -# bcf151f26d514029aee65fd0b085fdf0 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:20 -msgid "**Title**: Be impacted" -msgstr "" - -# a8f820069ac34896b2d8af29703c07bd -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of categorized hazards in raster format " -"on population raster layer." -msgstr "" - -# 5bacf94f7a9b45af9a0cd14a62237390 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:26 -msgid "" -"**Actions**: Provide details about how many people would likely need to be " -"impacted for each category." -msgstr "" - -# ceb64bee44364db39825fb82e81bfc82 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:29 -msgid "" -"**Hazard Input**: A hazard raster layer where each cell represents the " -"category of the hazard. There should be 3 categories: 1, 2, and 3." -msgstr "" - -# 79a8c2785d554204a7dc65eff47b1e59 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:32 -msgid "" -"**Exposure Input**: An exposure raster layer where each cell represent " -"population count." -msgstr "" - -# 2e61bb7e50574c1396445993008f891c -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:35 -msgid "" -"**Output**: Map of population exposed to high category and a table with " -"number of people in each category" -msgstr "" - -# 10d81f7088a34353a6d447e8e18cc878 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:38 -msgid "**Limitation**: The number of categories is three." -msgstr "" - -# 79bdbe8352644874b0c38a0259e62b36 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:42 -msgid "Details" -msgstr "" - -# 640fa7d446a74e8a9193f20172e77f88 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:44 -msgid "" -"This function will calculate how many people will be impacted per each " -"category for all categories in the hazard layer. Currently there should be 3 " -"categories in the hazard layer. After that it will show the result and the " -"total amount of people that will be impacted for the hazard given." -msgstr "" - -# 530d2a5ce61548d98a849d811f4334dc -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:47 -msgid "Doc String" -msgstr "" - -# 83189c167c664fb985f0bd204b2a8a48 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:49 -msgid "Plugin for impact of population as derived by categorised hazard." -msgstr "" - -# 124e4939db24411eace3e9f29f0b97f3 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:51 -msgid "" -":author AIFDR :rating 2 :param requires category=='hazard' " -"and unit=='normalised' and " -"layertype=='raster'" -msgstr "" - -# a384987b02324caf9d757a75a2b1e34c -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:55 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.po b/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.po deleted file mode 100644 index 0ddcd7fe..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.po +++ /dev/null @@ -1,72 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# ffec091406a6429ea058c5d49677b6dd -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:6 -msgid "Earthquake Building Impact Function" -msgstr "" - -# 5265165e0cc948b3a77751df24513e33 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:9 -msgid "Overview" -msgstr "" - -# 5d45c0064edd4fefb8a4f4022aa3ba77 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:11 -msgid "**Unique Identifier**: Earthquake Building Impact Function" -msgstr "" - -# 511d6c297c754a5e841a519856309c88 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:14 -msgid "**Title**: Be affected" -msgstr "" - -# a0164d6630d445b9b3fd68e4e588493d -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:18 -msgid "Details" -msgstr "" - -# 9466753de09641eeaab4f5a1ba586cff -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:20 -msgid "No documentation found" -msgstr "" - -# 22cac78fc9e14910b4c8cf45060028b5 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:23 -msgid "Doc String" -msgstr "" - -# 7a96aa7d1005473293a1a7e227a27d59 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:25 -msgid "Earthquake impact on building data." -msgstr "" - -# e6eefd0413c043afa4760f6bfa0303e1 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:27 -msgid "" -":param requires category=='hazard' and " -"subcategory=='earthquake'" -msgstr "" - -# e631b0d16cba485abe8955e039266839 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:29 -msgid "" -":param requires category=='exposure' and " -"subcategory=='structure' and layertype=='vector'" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/FloodBuildingImpactFunction.po b/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/FloodBuildingImpactFunction.po deleted file mode 100644 index 6ca378b8..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/FloodBuildingImpactFunction.po +++ /dev/null @@ -1,142 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 9ea4ebf55b464665b85b5777cd4b043d -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:6 -msgid "Flood Building Impact Function" -msgstr "" - -# 7c2ec896698145898cdf0cbb4d4ba58b -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:9 -msgid "Overview" -msgstr "" - -# 5a333aaa6f8b45f0bf3c573a2fd0255e -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:11 -msgid "**Unique Identifier**: Flood Building Impact Function" -msgstr "" - -# 51bee1e209524e3fbacb9de5dfc24da2 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:14 -msgid "**Author**: Ole Nielsen, Kristy van Putten" -msgstr "" - -# 63ce160203bd424a9ca2650e040f49b7 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:17 -msgid "**Rating**: 0" -msgstr "" - -# 781afad2c3594d8db8a8c538277966bb -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:20 -msgid "**Title**: Be flooded" -msgstr "" - -# b5d1ba3d3746423085ab4e1ad0934c43 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of (flood or tsunami) inundation on " -"building footprints originating from OpenStreetMap (OSM)." -msgstr "" - -# 0eb038b8e8f745db93d443f8fad19dda -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:26 -msgid "" -"**Actions**: Provide details about where critical infrastructure might be " -"flooded" -msgstr "" - -# 105117d124fc4e4ba5dccca495dc957e -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:29 -msgid "" -"**Hazard Input**: A hazard raster layer where each cell represents flood " -"depth (in meters), or a vector polygon layer where each polygon represents " -"an inundated area. In the latter case, the following attributes are " -"recognised (in order): \"affected\" (True or False) or \"FLOODPRONE\" (Yes " -"or No). (True may be represented as 1, False as 0" -msgstr "" - -# f8c9c6f7b07e4c50a79c4d0f6b7f037c -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:32 -msgid "" -"**Exposure Input**: Vector polygon or point layer extracted from OSM where " -"each feature represents the footprint of a building." -msgstr "" - -# 13450e065ee840329d4a4cc5e324abbd -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:35 -msgid "" -"**Output**: Vector layer contains building is estimated to be flooded and " -"the breakdown of the building by type." -msgstr "" - -# 9ef28e1c3b5f4b73b4f23b89b78a244a -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:38 -msgid "" -"**Limitation**: This function only flags buildings as impacted or not either " -"based on a fixed threshold in case of raster hazard or the the attributes " -"mentioned under input in case of vector hazard." -msgstr "" - -# 6e4e68ac4d024916859ea4269e40377f -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:42 -msgid "Details" -msgstr "" - -# 4345ac7c69ac4e858592ef5d6b9feede -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:44 -msgid "" -"The inundation status is calculated for each building (using the centroid if " -"it is a polygon) based on the hazard levels provided. if the hazard is given " -"as a raster a threshold of 1 meter is used. This is configurable through the " -"InaSAFE interface. If the hazard is given as a vector polygon layer " -"buildings are considered to be impacted depending on the value of hazard " -"attributes (in order) \"affected\" or \"FLOODPRONE\": If a building is in a " -"region that has attribute \"affected\" set to True (or 1) it is impacted. If " -"attribute \"affected\" does not exist but \"FLOODPRONE\" does, then the " -"building is considered impacted if \"FLOODPRONE\" is \"yes\". If neither " -"\"affected\" nor \"FLOODPRONE\" is available, a building will be impacted if " -"it belongs to any polygon. The latter behaviour is implemented through the " -"attribute \"inapolygon\" which is automatically assigned." -msgstr "" - -# f6f80223af4c4d699eec0dbce3877c17 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:47 -msgid "Doc String" -msgstr "" - -# d9af1e2f55fb465b94a08b7f69166797 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:49 -msgid "Inundation impact on building data." -msgstr "" - -# 513c6183036e4037a4919a65c4986ca4 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:51 -msgid "" -":author Ole Nielsen, Kristy van Putten # this rating below is only for " -"testing a function, not the real one :rating 0 :param requires " -"category=='hazard' and subcategory in ['flood', " -"'tsunami']" -msgstr "" - -# 7816f35b9db348b697f8c5873cc4e761 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:56 -msgid "" -":param requires category=='exposure' and " -"subcategory=='structure' and layertype=='vector'" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunction.po b/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunction.po deleted file mode 100644 index 62bcac26..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunction.po +++ /dev/null @@ -1,136 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 2c7d32f0224f4462a77987ad05b22553 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:6 -msgid "Flood Evacuation Function" -msgstr "" - -# 8e74f212433d4e35b7144e2d422da95c -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:9 -msgid "Overview" -msgstr "" - -# 7b949f1b5b1e4ce79560b865110e7f15 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:11 -msgid "**Unique Identifier**: Flood Evacuation Function" -msgstr "" - -# a3a7311d9f0d486e93b8bd3fdce6d7b1 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:14 -msgid "**Author**: AIFDR" -msgstr "" - -# b7660790d5564d48a9e78a820bbbdacb -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:17 -msgid "**Rating**: 4" -msgstr "" - -# 357dac94f4774ecfbfe0fef666434c0a -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:20 -msgid "**Title**: Need evacuation" -msgstr "" - -# b7ba0cf1b96a47dbb03b33a610957cb6 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of flood inundation in raster format on " -"population." -msgstr "" - -# 9d8a6268b6dc49b08190961486167c65 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:26 -msgid "" -"**Actions**: Provide details about how many people would likely need to be " -"evacuated, where they are located and what resources would be required to " -"support them." -msgstr "" - -# 174909d93c5b4224b785521c983b4d63 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:29 -msgid "" -"**Hazard Input**: A hazard raster layer where each cell represents flood " -"depth (in meters)." -msgstr "" - -# 1f16ba6d0ac24904966afb62e66800e2 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:32 -msgid "" -"**Exposure Input**: An exposure raster layer where each cell represent " -"population count." -msgstr "" - -# 93b51afc3681469d8aaaddef23519ef6 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:35 -msgid "" -"**Output**: Raster layer contains people affected and the minimum needs " -"based on the people affected." -msgstr "" - -# cdcf415de93444e7954d8d39e527c54f -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:38 -msgid "" -"**Limitation**: The default threshold of 1 meter was selected based on " -"consensus, not hard evidence." -msgstr "" - -# 65dd6ed2d9ef47398e31f63291fe9383 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:42 -msgid "Details" -msgstr "" - -# 710a4654b812413cb2cbb6f217d95d78 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:44 -msgid "" -"The population subject to inundation exceeding a threshold (default 1m) is " -"calculated and returned as a raster layer. In addition the total number and " -"the required needs in terms of the BNPB (Perka 7) are reported. The " -"threshold can be changed and even contain multiple numbers in which case " -"evacuation and needs are calculated using the largest number with population " -"breakdowns provided for the smaller numbers. The population raster is " -"resampled to the resolution of the hazard raster and is rescaled so that the " -"resampled population counts reflect estimates of population count per " -"resampled cell. The resulting impact layer has the same resolution and " -"reflects population count per cell which are affected by inundation." -msgstr "" - -# a27537a4621846018082531cb4bc4f11 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:47 -msgid "Doc String" -msgstr "" - -# db97163d9574412fab00c6edfe3ae1dc -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:49 -msgid "Impact function for flood evacuation." -msgstr "" - -# 35782d5e394240afbef684d6c3044cc8 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:51 -msgid "" -":author AIFDR :rating 4 :param requires category=='hazard' " -"and subcategory=='flood' and " -"layertype=='raster' and unit=='m'" -msgstr "" - -# 482e4b5483e745579e699f48bd05a72c -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:55 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.po b/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.po deleted file mode 100644 index 4d0650b0..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.po +++ /dev/null @@ -1,127 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# a35cd718834345e19649999d8fab548e -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:6 -msgid "Flood Evacuation Function Vector Hazard" -msgstr "" - -# 58920d362167440183f9fcaae797d264 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:9 -msgid "Overview" -msgstr "" - -# 6996ddab3130453bb5e0a53893451396 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:11 -msgid "**Unique Identifier**: Flood Evacuation Function Vector Hazard" -msgstr "" - -# 919efa1a4c734a1abb0257e71fd795c1 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:14 -msgid "**Author**: AIFDR" -msgstr "" - -# 486b41755eed4045aebcaaa1010c32ad -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:17 -msgid "**Rating**: 4" -msgstr "" - -# 25891d26005f467ea6ead32d8f2e298d -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:20 -msgid "**Title**: Need evacuation" -msgstr "" - -# 7c4c06df55cf4b3c9c04eb4baf26e684 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of flood inundation in vector format on " -"population." -msgstr "" - -# 5f88ad03980b498f880b0bac6569c426 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:26 -msgid "" -"**Actions**: Provide details about how many people would likely need to be " -"evacuated, where they are located and what resources would be required to " -"support them." -msgstr "" - -# 1fe4497513a24bcc841bec14f1d80aa2 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:29 -msgid "" -"**Hazard Input**: A hazard vector layer which has attribute affected the " -"value is either 1 or 0" -msgstr "" - -# 4c61f64b6a6e43a19621400eff791bf4 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:32 -msgid "" -"**Exposure Input**: An exposure raster layer where each cell represent " -"population count." -msgstr "" - -# eb1ebcb76cb74d01a57e91cc40eba306 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:35 -msgid "" -"**Output**: Vector layer contains people affected and the minimum needs " -"based on evacuation percentage." -msgstr "" - -# 6308df4d138042778b3ca9009de116d3 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:39 -msgid "Details" -msgstr "" - -# ed10f0cedfeb4882b7b34aa3009aaa77 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:41 -msgid "" -"The population subject to inundation is determined whether in an area which " -"affected or not. You can also set an evacuation percentage to calculate how " -"many percent of the total population affected to be evacuated. This number " -"will be used to estimate needs based on BNPB Perka 7/2008 minimum bantuan." -msgstr "" - -# 9fa588a6639b44cb810ed1416c33fca8 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:44 -msgid "Doc String" -msgstr "" - -# d26cd565ce9b44f2b0240fe6b4e7ad8c -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:46 -msgid "Impact function for vector flood evacuation." -msgstr "" - -# 326e2b47e6054d5da7835c415906dda1 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:48 -msgid ":author AIFDR :rating 4" -msgstr "" - -# 24100e42e35d476688bdd03d4cde250a -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:51 -msgid "" -":param requires category=='hazard' and " -"subcategory=='flood' and layertype=='vector'" -msgstr "" - -# 8633bab0471248ada215ca057c5117fa -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:53 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/ITBFatalityFunction.po b/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/ITBFatalityFunction.po deleted file mode 100644 index c277aec8..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/ITBFatalityFunction.po +++ /dev/null @@ -1,311 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 2133be90ba0d40cbb36db15852e36de9 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:6 -msgid "I T B Fatality Function" -msgstr "" - -# ffe7ecc0768843fa80016be078a0b5d1 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:9 -msgid "Overview" -msgstr "" - -# a2c46017e8f449a8b61fc26a4bc6ca59 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:11 -msgid "**Unique Identifier**: I T B Fatality Function" -msgstr "" - -# cc2b327151d54e339ef6742cd1ef4e3e -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:14 -msgid "**Author**: Hadi Ghasemi" -msgstr "" - -# b19f15516c4b4bb68ae8ae7ed64c6b9e -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:17 -msgid "**Rating**: 3" -msgstr "" - -# d943622ab9d84ec8a1089888141e9706 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:20 -msgid "**Title**: Die or be displaced" -msgstr "" - -# 7a48a00bd05f4393a39f63f4eb6869c0 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impact of earthquake on population based on " -"earthquake model developed by ITB" -msgstr "" - -# da763113d9bb4642a90b44cc3bbd8719 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:26 -msgid "" -"**Actions**: Provide details about the population will be die or displaced" -msgstr "" - -# 3d02d0a18e5e4f1fa434adca120fc76e -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:33 -msgid "**Citations**:" -msgstr "" - -# 2393d6a5307a474e9f5255565c406fb2 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:30 -msgid "" -"Indonesian Earthquake Building-Damage and Fatality Models and Post " -"Disaster Survey Guidelines Development Bali, 27-28 February 2012, 54pp." -msgstr "" - -# e5e2a078d81c48249c28439015cd3e8f -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:31 -msgid "" -"Allen, T. I., Wald, D. J., Earle, P. S., Marano, K. D., Hotovec, A. J., " -"Lin, K., and Hearne, M., 2009. An Atlas of ShakeMaps and population " -"exposure catalog for earthquake loss modeling, Bull. Earthq. Eng. 7, " -"701-718." -msgstr "" - -# 1848bc4e250041a29a971036314bc5fe -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:32 -msgid "" -"Jaiswal, K., and Wald, D., 2010. An empirical model for global earthquake " -"fatality estimation, Earthq. Spectra 26, 1017-1037." -msgstr "" - -# b0ef1102896442f5802d6c5753c6c9b4 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:44 -msgid "**Limitation**:" -msgstr "" - -# 82dbd053275f41f2919d1dd6cd378ef7 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:36 -msgid "" -"The model is based on limited number of observed fatality rates during 4 " -"past fatal events." -msgstr "" - -# 5681d39a249849579f833b379fcf7679 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:37 -msgid "" -"The model clearly over-predicts the fatality rates at intensities higher " -"than VIII." -msgstr "" - -# c800dec064d14e6899f1d0e13f631faa -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:38 -msgid "" -"The model only estimates the expected fatality rate for a given intensity " -"level; however the associated uncertainty for the proposed model is not " -"addressed." -msgstr "" - -# 60b08159006a43f884616506e1554bbb -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:39 -msgid "There are few known mistakes in developing the current model:" -msgstr "" - -# fb1ad5195f624281a5328cf63c92982f -# c53fe501a4b3479f87b1af3b3c78efee -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:41 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:106 -msgid "rounding MMI values to the nearest 0.5," -msgstr "" - -# 4511da39edbf43f1aaebd70ea4a3dbcf -# e1b7c27ab68047a4a421ae2a021bcc0a -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:42 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:107 -msgid "Implementing Finite-Fault models of candidate events, and" -msgstr "" - -# 10d0bee0dd844b57b8d5e50eef8dc2e1 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:43 -msgid "consistency between selected GMPEs with those in use by BMKG." -msgstr "" - -# af9d9896840e42f283469b4c6da30e76 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:47 -msgid "Details" -msgstr "" - -# 28fcd5fa26244384ab71c63d642b9f00 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:49 -msgid "" -"This model was developed by Institut Teknologi Bandung (ITB) and implemented " -"by Dr. Hadi Ghasemi, Geoscience Australia Algorithm: In this study, the same " -"functional form as Allen (2009) is adopted o express fatality rate as a " -"function of intensity (see Eq. 10 in the report). The Matlab built-in " -"function (fminsearch) for Nelder-Mead algorithm was used to estimate the " -"model parameters. The objective function (L2G norm) that is minimized during " -"the optimisation is the same as the one used by Jaiswal et al. (2010). The " -"coefficients used in the indonesian model are x=0.62275231, y=8.03314466, " -"zeta=2.15" -msgstr "" - -# 26e54c2ac9954f01be2c7cde25977fa6 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:55 -msgid "Doc String" -msgstr "" - -# 6f45323fd71c4f9ca83001665a579c17 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:57 -msgid "Indonesian Earthquake Fatality Model." -msgstr "" - -# 13da163e07304313ad34ec49e2eb4fd6 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:59 -msgid "" -"This model was developed by Institut Teknologi Bandung (ITB) and implemented " -"by Dr. Hadi Ghasemi, Geoscience Australia." -msgstr "" - -# d693fe79812c4a6499bc88ce28f39fef -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:63 -msgid "Reference:" -msgstr "" - -# 059f39c6035444f7ad0efc230717469e -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:65 -msgid "" -"Indonesian Earthquake Building-Damage and Fatality Models and Post Disaster " -"Survey Guidelines Development, Bali, 27-28 February 2012, 54pp." -msgstr "" - -# 50383e86c55e4229b9953f89eb6e8b7a -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:70 -msgid "Algorithm:" -msgstr "" - -# 073f2e8201af43648b1c7513491a2310 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:72 -msgid "" -"In this study, the same functional form as Allen (2009) is adopted to " -"express fatality rate as a function of intensity (see Eq. 10 in the report). " -"The Matlab built-in function (fminsearch) for Nelder-Mead algorithm was " -"used to estimate the model parameters. The objective function (L2G norm) " -"that is minimised during the optimisation is the same as the one used by " -"Jaiswal et al. (2010)." -msgstr "" - -# ccd87963662d4a92bc404e40dfef5ad3 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:79 -msgid "" -"The coefficients used in the indonesian model are x=0.62275231, " -"y=8.03314466, zeta=2.15" -msgstr "" - -# 1984c19b918c4b50ab1e4a7bc23636d8 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:82 -msgid "" -"Allen, T. I., Wald, D. J., Earle, P. S., Marano, K. D., Hotovec, A. J., Lin, " -"K., and Hearne, M., 2009. An Atlas of ShakeMaps and population exposure " -"catalog for earthquake loss modeling, Bull. Earthq. Eng. 7, 701-718." -msgstr "" - -# 751f87f5ebed4ddb919570778ccbe70e -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:87 -msgid "" -"Jaiswal, K., and Wald, D., 2010. An empirical model for global earthquake " -"fatality estimation, Earthq. Spectra 26, 1017-1037." -msgstr "" - -# 7c49492fac094552824dd28361a46596 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:91 -msgid "Caveats and limitations:" -msgstr "" - -# 04233e993cb8490388f44f037cc5ad70 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:93 -msgid "" -"The current model is the result of the above mentioned workshop and reflects " -"the best available information. However, the current model has a number of " -"issues listed below and is expected to evolve further over time." -msgstr "" - -# 12b57792377e4785995c646895982596 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:98 -msgid "1 - The model is based on limited number of observed fatality" -msgstr "" - -# b72e1ce97a6e4e69bf913dc9760647a4 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:99 -msgid "rates during 4 past fatal events." -msgstr "" - -# 25375bdf1f5d423baa649feaa7a2cd15 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:100 -msgid "2 - The model clearly over-predicts the fatality rates at" -msgstr "" - -# d9e1a6ec5d06488a9da3840dc2b7aae9 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:101 -msgid "intensities higher than VIII." -msgstr "" - -# 4b00f16330f3473e873bd1fb928905ff -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:103 -msgid "3 - The model only estimates the expected fatality rate for a given" -msgstr "" - -# 1155ff8103c74e01981a171c4d73a925 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:103 -msgid "" -"intensity level; however the associated uncertainty for the proposed model " -"is not addressed." -msgstr "" - -# 4d660e6b271f4db1bdade2daf477503a -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:109 -msgid "4 - There are few known mistakes in developing the current model:" -msgstr "" - -# 2575d17f30994c4d9298353a33c000b5 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:108 -msgid "" -"consistency between selected GMPEs with those in use by BMKG. These issues " -"will be addressed by ITB team in the final report." -msgstr "" - -# 4d0e2eb340d64addbc8fc39d738448b8 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:111 -msgid "" -"Note: Because of these caveats, decisions should not be made solely on the " -"information presented here and should always be verified by ground truthing " -"and other reliable information sources." -msgstr "" - -# 8395a7586c5443a1be43831e410d69da -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:115 -msgid ":author Hadi Ghasemi :rating 3" -msgstr "" - -# 1c2dbd58e4a04cfebb273fc721198d56 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:118 -msgid "" -":param requires category=='hazard' and " -"subcategory=='earthquake' and layertype=='raster' " -"and unit=='MMI'" -msgstr "" - -# 6f220cc68efa4b17b53033d58614e0c2 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:120 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/PAGFatalityFunction.po b/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/PAGFatalityFunction.po deleted file mode 100644 index 8f0429cb..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/PAGFatalityFunction.po +++ /dev/null @@ -1,128 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# b4602ecd04884781b6fd22b2ee40f6af -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:6 -msgid "P A G Fatality Function" -msgstr "" - -# 6a33a2f9f1dc4a55b3ce753a6f873d1f -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:9 -msgid "Overview" -msgstr "" - -# 01f91da2ac804f319540a2c62de58c6e -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:11 -msgid "**Unique Identifier**: P A G Fatality Function" -msgstr "" - -# 4d28dd413b5b41e89b2fae5cb561de01 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:14 -msgid "**Author**: Helen Crowley" -msgstr "" - -# 202debf3bcc14430b165cc81aec6a7cb -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:17 -msgid "**Rating**: 3" -msgstr "" - -# 560e05f5a78247768515ad24ebaf288e -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:20 -msgid "**Title**: Die or be displaced according Pager model" -msgstr "" - -# 6bb251588192437fbb31720937961493 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impact of earthquake on population based on " -"Population Vulnerability Model Pager" -msgstr "" - -# 1d9765bf12c84b3e94c603b762b61128 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:26 -msgid "" -"**Actions**: Provide details about the population will be die or displaced" -msgstr "" - -# 75e962f86d284a6a99d77d07882ad9e5 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:30 -msgid "**Citations**:" -msgstr "" - -# 2b8b8550a8cf49e5b5c8de8cf005725d -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:30 -msgid "" -"Jaiswal, K. S., Wald, D. J., and Hearne, M. (2009a). Estimating " -"casualties for large worldwide earthquakes using an empirical approach. U." -"S. Geological Survey Open-File Report 2009-1136." -msgstr "" - -# 05ceb697f34748cf9e1badc300b9b75a -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:32 -msgid "**Limitation**: No documentation found" -msgstr "" - -# 3edadc08ac32499787707f52e4e22b77 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:36 -msgid "Details" -msgstr "" - -# 80aad73cb81e4df09ccf9f5abe36ca34 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:38 -msgid "No documentation found" -msgstr "" - -# 45d98a1f1132408e9bc510f488993f29 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:41 -msgid "Doc String" -msgstr "" - -# 5046145209bf45d5969e4c40883b521f -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:43 -msgid "Population Vulnerability Model Pager." -msgstr "" - -# 893c95adeed1471db7faf847b2a17125 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:45 -msgid "" -"Loss ratio(MMI) = standard normal distrib( 1 / BETA * ln(MMI/THETA)). " -"Reference: Jaiswal, K. S., Wald, D. J., and Hearne, M. (2009a). Estimating " -"casualties for large worldwide earthquakes using an empirical approach. U.S. " -"Geological Survey Open-File Report 2009-1136." -msgstr "" - -# da4a36e43c2544168600a698ba3f9b6e -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:51 -msgid ":author Helen Crowley :rating 3" -msgstr "" - -# 2be456c3e5db49c9b6dfc237da010aaa -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:54 -msgid "" -":param requires category=='hazard' and " -"subcategory=='earthquake' and layertype=='raster' " -"and unit=='MMI'" -msgstr "" - -# ca161eb990004dbaa5719fec4dab4a3b -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:56 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/TsunamiEvacuationFunction.po b/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/TsunamiEvacuationFunction.po deleted file mode 100644 index c1d390e8..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/TsunamiEvacuationFunction.po +++ /dev/null @@ -1,136 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# a896775d16d34a66bd217ccd73526ab1 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:6 -msgid "Tsunami Evacuation Function" -msgstr "" - -# 69947245e914428b9cde48208b6afc39 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:9 -msgid "Overview" -msgstr "" - -# 23aa0319be134560a501ad675bf317b5 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:11 -msgid "**Unique Identifier**: Tsunami Evacuation Function" -msgstr "" - -# 2065a2b854d84cd092ea3e55d61f404e -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:14 -msgid "**Author**: AIFDR" -msgstr "" - -# b5541fbd72aa42e2b547378c48b93baa -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:17 -msgid "**Rating**: 4" -msgstr "" - -# ad57817cb01d4a9d8e497674f1b82c48 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:20 -msgid "**Title**: Need evacuation" -msgstr "" - -# a0dbc6c6c7db4b66bbb4640666583b54 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of tsunami inundation in raster format " -"on population." -msgstr "" - -# ea0ad265a1c946ea8b18a25170e6a532 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:26 -msgid "" -"**Actions**: Provide details about how many people would likely need to be " -"evacuated, where they are located and what resources would be required to " -"support them." -msgstr "" - -# fb04e7288103402c81d2e3d39f226d75 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:29 -msgid "" -"**Hazard Input**: A hazard raster layer where each cell represents tsunami " -"depth (in meters)." -msgstr "" - -# c124e28186a148e98714ea4406566a1a -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:32 -msgid "" -"**Exposure Input**: An exposure raster layer where each cell represent " -"population count." -msgstr "" - -# a4cbccf248c64a9aba0077eb1e36ee38 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:35 -msgid "" -"**Output**: Raster layer contains population affected and the minimum needs " -"based on the population affected." -msgstr "" - -# a7e5b01cd4c54a098e298e3953f24b37 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:38 -msgid "" -"**Limitation**: The default threshold of 0.7 meter was selected based on " -"consensus, not hard evidence." -msgstr "" - -# a83dd4e56a414da5b036e439e77facbd -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:42 -msgid "Details" -msgstr "" - -# d79cb659dca54d5db66f52db2bab0fc4 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:44 -msgid "" -"The population subject to inundation exceeding a threshold (default 0.7m) is " -"calculated and returned as a raster layer. In addition the total number and " -"the required needs in terms of the BNPB (Perka 7) are reported. The " -"threshold can be changed and even contain multiple numbers in which case " -"evacuation and needs are calculated using the largest number with population " -"breakdowns provided for the smaller numbers. The population raster is " -"resampled to the resolution of the hazard raster and is rescaled so that the " -"resampled population counts reflect estimates of population count per " -"resampled cell. The resulting impact layer has the same resolution and " -"reflects population count per cell which are affected by inundation." -msgstr "" - -# d9c0f63039e5453fb94b7d890e570f29 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:47 -msgid "Doc String" -msgstr "" - -# 654d380e2f8f43a0ba6c15344d1ddda6 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:49 -msgid "Impact function for tsunami evacuation." -msgstr "" - -# 1324d07d1d6b4af58ec15bd2bdf75522 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:51 -msgid "" -":author AIFDR :rating 4 :param requires category=='hazard' " -"and subcategory=='tsunami' and " -"layertype=='raster' and unit=='m'" -msgstr "" - -# 0a36ef4e60ec41cdb9281fb9c4e74460 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:55 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/VolcanoBuildingImpact.po b/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/VolcanoBuildingImpact.po deleted file mode 100644 index 81d12af9..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/VolcanoBuildingImpact.po +++ /dev/null @@ -1,119 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 6a5caad667e841478c54ebbef19ec542 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:6 -msgid "Volcano Building Impact" -msgstr "" - -# f343df89abf5459eafdb2bffadf66776 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:9 -msgid "Overview" -msgstr "" - -# 2948c3a6d72b4ad09f1209c335f865f5 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:11 -msgid "**Unique Identifier**: Volcano Building Impact" -msgstr "" - -# c876250e99f24aea9754eb747a5da8f9 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:14 -msgid "**Author**: AIFDR" -msgstr "" - -# 84571c161e2c4cb4b453df39c569f11a -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:17 -msgid "**Rating**: 4" -msgstr "" - -# c59df9bcda904ba6a8497050f9c8d01f -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:20 -msgid "**Title**: Be affected" -msgstr "" - -# c34e1bca95fb4719af7f8724825c284b -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:23 -msgid "**Synopsis**: To assess the impacts of volcano eruption on building." -msgstr "" - -# 5aec0de5d891448981e52dd705aa5a98 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:26 -msgid "" -"**Actions**: Provide details about how many building would likely be " -"affected by each hazard zones." -msgstr "" - -# 3c5f44006b734ac0a924904aab75ee31 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:29 -msgid "" -"**Hazard Input**: A hazard vector layer can be polygon or point. If polygon, " -"it must have \"KRB\" attribute and the values for it are \"Kawasan Rawan " -"Bencana I\", \"Kawasan Rawan Bencana II\", or \"Kawasan Rawan Bencana III.\" " -"If you want to see the name of the volcano in the result, you need to add " -"\"NAME\" attribute for point data or \"GUNUNG\" attribute for polygon data." -msgstr "" - -# b5f045b61d074a8bb7da84b16e2e0916 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:32 -msgid "" -"**Exposure Input**: Vector polygon layer extracted from OSM where each " -"polygon represents the footprint of a building." -msgstr "" - -# 19a4044818814ee5a5a30c17b8a02400 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:35 -msgid "" -"**Output**: Vector layer contains Map of building exposed to volcanic hazard " -"zones for each Kawasan Rawan Bencana or radius." -msgstr "" - -# c1f7235625d14d7c8ecd998c831e1908 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:39 -msgid "Details" -msgstr "" - -# 3758fb407d7442c6bcf4932afeca955b -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:41 -msgid "No documentation found" -msgstr "" - -# a93a316fb84642aba3053d80c1d10728 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:44 -msgid "Doc String" -msgstr "" - -# def8eeee2c75415eaa7cfb55e2dd69dc -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:46 -msgid "Risk plugin for volcano building impact." -msgstr "" - -# 466ac74f5d0348ab9ef4a9695cd69812 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:48 -msgid "" -":author AIFDR :rating 4 :param requires category=='hazard' " -"and subcategory in ['volcano'] and " -"layertype=='vector'" -msgstr "" - -# ebb0e768ecb643e7ab77ed8c2e580cd7 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:52 -msgid "" -":param requires category=='exposure' and " -"subcategory=='structure' and layertype=='vector'" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.po b/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.po deleted file mode 100644 index f250237e..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.po +++ /dev/null @@ -1,119 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 025a0fe63d524c738081e5427fecc995 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:6 -msgid "Volcano Polygon Hazard Population" -msgstr "" - -# 0c84f1e7e36045859cd0cb4c522bd945 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:9 -msgid "Overview" -msgstr "" - -# 86c946ed04eb42b6b437bff46feb116e -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:11 -msgid "**Unique Identifier**: Volcano Polygon Hazard Population" -msgstr "" - -# d2b35a1a2c114d1f8be9bc230b6ae04f -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:14 -msgid "**Author**: AIFDR" -msgstr "" - -# cfe4c3b722f747838df55a89ece91409 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:17 -msgid "**Rating**: 4" -msgstr "" - -# 1e2957d713494064b888e34172906924 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:20 -msgid "**Title**: Need evacuation" -msgstr "" - -# 013d03df624742a79214b0ab65f00196 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:23 -msgid "**Synopsis**: To assess the impacts of volcano eruption on population." -msgstr "" - -# 1420d15abcc74ced9d52b0bd12e48466 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:26 -msgid "" -"**Actions**: Provide details about how many population would likely be " -"affected by each hazard zones." -msgstr "" - -# 15b05db5b6ae4233a07910445a37d79f -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:29 -msgid "" -"**Hazard Input**: A hazard vector layer can be polygon or point. If polygon, " -"it must have \"KRB\" attribute and the valuefor it are \"Kawasan Rawan " -"Bencana I\", \"Kawasan Rawan Bencana II\", or \"Kawasan Rawan Bencana III." -"\"If you want to see the name of the volcano in the result, you need to add " -"\"NAME\" attribute for point data or \"GUNUNG\" attribute for polygon data." -msgstr "" - -# e23a553729474fb6a291b3fbc4be2ada -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:32 -msgid "" -"**Exposure Input**: An exposure raster layer where each cell represent " -"population count." -msgstr "" - -# e2ef890c5fbc4bed995201bd4e0be4e2 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:35 -msgid "" -"**Output**: Vector layer contains people affected and the minimum needs " -"based on the number of people affected." -msgstr "" - -# 93e342d0635b4f1f834472ecff8f4305 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:39 -msgid "Details" -msgstr "" - -# 564bef2af8a04e7281ad74b4e9b1b815 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:41 -msgid "No documentation found" -msgstr "" - -# 8ffe670559894e4fbecc7c1e3e31227a -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:44 -msgid "Doc String" -msgstr "" - -# 84e14de892cc44c9845665267c9d2cac -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:46 -msgid "Impact function for volcano hazard zones impact on population." -msgstr "" - -# 4d1ef118bd00446b8a7ce93e308f50e3 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:48 -msgid "" -":author AIFDR :rating 4 :param requires category=='hazard' " -"and subcategory in ['volcano'] and " -"layertype=='vector'" -msgstr "" - -# 465745ca9f0b4182be90907cdd8a9ba2 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:52 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/impact_functions_doc.po b/docs/i18n/en/LC_MESSAGES/user-docs/impact_functions_doc.po deleted file mode 100644 index 61b47f20..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/impact_functions_doc.po +++ /dev/null @@ -1,31 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 7589ec32aebc47d193f5dff0905b2780 -#: ../../source/user-docs/impact_functions_doc.rst:7 -msgid "Impact Functions Documentation" -msgstr "" - -# b6e45fb1646b484aafffeb8c41400ea7 -#: ../../source/user-docs/impact_functions_doc.rst:9 -msgid "" -"This document explains the purpose of impact functions and lists the " -"different available impact function and the requirements each has to be used " -"effectively." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/index.po b/docs/i18n/en/LC_MESSAGES/user-docs/index.po deleted file mode 100644 index 8ad8892e..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/index.po +++ /dev/null @@ -1,30 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 3d90fcbc07434ebfa5673e8b3bc0593f -#: ../../source/user-docs/index.rst:8 -msgid "User documentation" -msgstr "" - -# b8a28bfb2c09482798d144c4d416801b -#: ../../source/user-docs/index.rst:10 -msgid "" -"This section of the documentation describes how to use the |project_name| " -"system." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/install.po b/docs/i18n/en/LC_MESSAGES/user-docs/install.po deleted file mode 100644 index b65e9f3f..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/install.po +++ /dev/null @@ -1,289 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:30+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# c88035888a1d4e91a6f87968ac9134db -#: ../../source/user-docs/install.rst:8 -msgid "Installation" -msgstr "" - -# 8173be6dd3f3420fa2b7c3a4c61a1dba -#: ../../source/user-docs/install.rst:10 -msgid "" -"|project_name| is a plugin for |QGIS|, so QGIS must be installed first via " -"the QGIS Python Plugin Repository." -msgstr "" - -# 603e26c093f8483fbf8bdf9b3b7bda66 -#: ../../source/user-docs/install.rst:13 -msgid "To install |project_name|, use the plugin manager in QGIS." -msgstr "" - -# 37fab4ecece045d091d3387c576f03d5 -#: ../../source/user-docs/install.rst:15 -msgid "" -"Go to :menuselection:`Plugins ‣ Fetch Python Plugins` and search for :kbd:" -"`inasafe`. Select it and click the :guilabel:`Install` button. |" -"project_name| will now be added to the plugins menu." -msgstr "" - -# 9cd0157013da42ea993f351fa7e656a2 -#: ../../source/user-docs/install.rst:19 -msgid "" -"For more information on |QGIS| and |project_name| see :doc:`../training/" -"socialisation/introduction_to_qgis`." -msgstr "" - -# 7746c1470e3f499d8c8d468b07a5ef97 -#: ../../source/user-docs/install.rst:23 -msgid "From |project_name| test repository" -msgstr "" - -# 78c4b343e8c549b9821c2de730b8ad22 -#: ../../source/user-docs/install.rst:25 -msgid "" -"During development of each version of |project_name|, the developers make an " -"experimental version of the software available for users. To install the " -"latest test version of |project_name|, follow these instructions:" -msgstr "" - -# 44aced6d4e2041099b78110d633ae3d4 -#: ../../source/user-docs/install.rst:29 -msgid "In QGIS, go to :menuselection:`Plugins ‣ Manage and Install Plugins`." -msgstr "" - -# 8adbe3c02121494b876b712549482e61 -#: ../../source/user-docs/install.rst:34 -msgid "" -"Click on the :guilabel:`Settings` tab and check the box next to :guilabel:" -"`Show also experimental plugins`." -msgstr "" - -# defd7915bcc047eca0fafbbb03c60400 -#: ../../source/user-docs/install.rst:40 -msgid "Click :guilabel:`Add...` at the bottom of the plugins window." -msgstr "" - -# e2a3f6ca234345ee9e43d583e70852c8 -#: ../../source/user-docs/install.rst:42 -msgid "A :guilabel:`Repository details` window will open. Enter the following:" -msgstr "" - -# a4c005026bdc4c56bd0b51c73214c7c4 -#: ../../source/user-docs/install.rst:53 -msgid "Click :guilabel:`OK`." -msgstr "" - -# 28bd542a58754ee588dc03522f586196 -#: ../../source/user-docs/install.rst:58 -msgid "" -"You will now see that two repositories are connected. Click the :guilabel:" -"`Installed` tab and ensure that the |project_name| plugin is checked." -msgstr "" - -# deb9dd8189044f10b36ed280470524c3 -#: ../../source/user-docs/install.rst:64 -msgid "" -"The experimental version of |project_name| is now installed. Restart QGIS " -"before using |project_name|." -msgstr "" - -# 0d754560aa8d42e6be3368e61800c7c7 -#: ../../source/user-docs/install.rst:71 -msgid "From Zip Archive" -msgstr "" - -# f95aaa353c734c43961f553a07039b57 -#: ../../source/user-docs/install.rst:73 -msgid "" -"This installation method is not recommended unless you have no internet " -"access or wish to use a specific version of |project_name|. If this does not " -"apply to you, use the plugin repository method described above." -msgstr "" - -# 4fb2eb7b43564eb89cad2dd25995b10a -#: ../../source/user-docs/install.rst:78 -msgid "" -"We make regular releases of the |project_name| plugin and they are available " -"at http://plugins.qgis.org/plugins/inasafe/. Simply choose the most recent " -"(i.e. the one with the largest version number) and save it to your hard disk." -msgstr "" - -# 168c770947664b15a6fa274dbbf78b8f -#: ../../source/user-docs/install.rst:83 -msgid "Extract the zip file into the QGIS plugins directory." -msgstr "" - -# 01379b5e78f64285884d3ee01f434d1a -#: ../../source/user-docs/install.rst:86 -msgid "" -"Depending on your version of QGIS the plugin directory is either under a " -"subdirectory of :file:`.qgis` (QGIS versions < 2.0) or :file:`.qgis2` (QGIS " -"version >= 2.0)." -msgstr "" - -# fc2692edfcc14e27bd16e36a39653a0e -#: ../../source/user-docs/install.rst:90 -msgid "" -"Depending on your Operating System (Windows, Linux, OS X) and the version of " -"QGIS, the directory containing the plugins will be in:" -msgstr "" - -# a51ccfbca3db430ea1d6bfa9780d01b9 -#: ../../source/user-docs/install.rst:94 -msgid "" -"Windows: :file:`C:\\\\Users\\\\\\\\.qgis(2)\\\\python\\" -"\\plugins\\\\`" -msgstr "" - -# 2850e4ce4b8a46948c3b03e53dd13491 -#: ../../source/user-docs/install.rst:95 -msgid "" -"Linux: :file:`~/.qgis(2)/python/plugins/` (where \"~\" means :file:`/home/" -"/`" -msgstr "" - -# 8bbd3c2e35c244028ca15ec03a9c2ed6 -#: ../../source/user-docs/install.rst:97 -msgid "" -"OS X: :file:`~/.qgis(2)/python/plugins/` (where \"~\" means :file:`/home/" -"/`" -msgstr "" - -# 816f33e1ccf146ed8520e5f33c1d066e -#: ../../source/user-docs/install.rst:101 -msgid "" -":file:`.qgis(2)` means that the directory is either called :file:`.qgis` or :" -"file:`.qgis2`." -msgstr "" - -# 457cbaa2cb144c5d85d09255c98953b9 -#: ../../source/user-docs/install.rst:104 -msgid "If you are running Windows with QGIS 2.0, do the following:" -msgstr "" - -# ccdff046abbb420989ce1cfaf0d3264e -#: ../../source/user-docs/install.rst:106 -msgid "" -"Locate the directory :file:`C:\\\\Users\\\\\\\\.qgis2\\" -"\\python\\\\plugins`." -msgstr "" - -# 345759001e674937a568330fe7115e7b -#: ../../source/user-docs/install.rst:109 -msgid "" -"Extract the plugin which you downloaded in this directory. It should be " -"available as :file:`C:\\\\Users\\\\\\\\.qgis2\\\\python\\" -"\\plugins\\\\inasafe\\\\`." -msgstr "" - -# c9f01bddd9514211a9ffade649c97d1c -#: ../../source/user-docs/install.rst:113 -msgid "" -"OS X and Linux users must follow the same procedure but with the appropriate " -"directory, :file:`~/.qgis2/python/plugins/`." -msgstr "" - -# 36571303cd4c477c86d49ca5c97d4bec -#: ../../source/user-docs/install.rst:116 -msgid "" -"Once the plugin is extracted, start QGIS and enable it from the plugin " -"manager." -msgstr "" - -# 177a9ccf466e461aa2ab01e7498bf3ba -#: ../../source/user-docs/install.rst:118 -msgid "" -"To do this go to :menuselection:`Plugins ‣ Manage plugins...` and type :kbd:" -"`inasafe` into the filter box." -msgstr "" - -# 8ef11fd8f014438c97c28b38a45a54bd -#: ../../source/user-docs/install.rst:121 -msgid "" -"You should see the |project_name| plugin appear in the list. Tick the " -"checkbox next to it to enable the plugin." -msgstr "" - -# 458743b004d04593b6743ecdfbe51919 -#: ../../source/user-docs/install.rst:129 -msgid "*Plugin Manager*" -msgstr "" - -# cf784f30b75a47028188e7e0ea194a49 -#: ../../source/user-docs/install.rst:132 -msgid "Downgrade the |project_name| plugin to a selected version" -msgstr "" - -# ecabe8891ef94952bae13bea56e49f86 -#: ../../source/user-docs/install.rst:134 -msgid "" -"If you are using an older version of QGIS or simply want to install a " -"specific version of the |project_name| plugin you must perform the following " -"steps:" -msgstr "" - -# 124e2326e89e4e0bbc7668261215395e -#: ../../source/user-docs/install.rst:138 -msgid "" -"Fetch the plugin manually from http://plugins.qgis.org/plugins/inasafe/. " -"Select your preferred version number and click :guilabel:`Download`." -msgstr "" - -# 455073c30f7d453fa92a82d381abb6d8 -#: ../../source/user-docs/install.rst:141 -msgid "" -"Delete the :file:`inasafe` folder from your plugins directory. The location " -"of this directory will vary depending on your operating system (see the " -"previous section). For Windows users the :file:`inasafe` directory would be " -"in :file:`C:\\\\Users\\\\\\\\.qgis2\\\\python\\\\plugins`." -msgstr "" - -# 44ad26aa92af4039b839bcfa9ae08a43 -#: ../../source/user-docs/install.rst:147 -msgid "" -"Extract the downloaded version into that folder, effectively replacing the " -"previous version with whichever version you downloaded in step 1." -msgstr "" - -# 1b42b0c5837f4d51a77101969fc7c251 -#: ../../source/user-docs/install.rst:150 -msgid "Restart QGIS." -msgstr "" - -# fb5e3a13ec59402fa411a38b3d568a4e -#: ../../source/user-docs/install.rst:153 -msgid "System Requirements" -msgstr "" - -# 174e3e63c96c4ead9a9542dcdb7ae7e3 -#: ../../source/user-docs/install.rst:155 -msgid "The requirements for running |project_name| are:" -msgstr "" - -# 856dd54279f14edf98f9c6628716611f -#: ../../source/user-docs/install.rst:157 -msgid "a standard PC with at least 4GB of RAM running Windows, Linux or OS X" -msgstr "" - -# 570a1cc9a5af49ca9428d4ba0e21d3c7 -#: ../../source/user-docs/install.rst:158 -msgid "" -"the Open Source Geographic Information System QGIS (http://www.qgis.org); |" -"project_name| requires QGIS version 1.7 or newer" -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/issue_tracker.po b/docs/i18n/en/LC_MESSAGES/user-docs/issue_tracker.po deleted file mode 100644 index 8c9534fe..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/issue_tracker.po +++ /dev/null @@ -1,144 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# f779dd55e6ca4e3e9962c7e068c89ad0 -#: ../../source/user-docs/issue_tracker.rst:8 -msgid "Submit an Issue" -msgstr "" - -# a3894653788248e88f8d7cc28c29be37 -#: ../../source/user-docs/issue_tracker.rst:10 -msgid "" -"You are more than welcome to let us know when you have found a bug or an " -"issue in |project_name|." -msgstr "" - -# 03485481904f48d597caa07f03aa60fd -#: ../../source/user-docs/issue_tracker.rst:13 -msgid "" -"Issues are documented on |github|. You can report here on any issues, taking " -"advantage of markdown to make your report clear and visible to the " -"developers." -msgstr "" - -# 4dd9e78befbe47d18280dadef76e9e2b -#: ../../source/user-docs/issue_tracker.rst:17 -msgid "" -"To be able to track your issue best we have created the following rules so " -"that the issue will be easily recognised by a developer and hopefully solved " -"as fast as possible:" -msgstr "" - -# e70b4ad9523646369992e1cb9c761f26 -#: ../../source/user-docs/issue_tracker.rst:21 -msgid "Check if the issue is already documented (search existing issues)" -msgstr "" - -# 4f8c4857c8d34e0291e5cfd4bac11658 -#: ../../source/user-docs/issue_tracker.rst:22 -msgid "" -"If it is documented, add a comment to the issue; otherwise create a new issue" -msgstr "" - -# 0ee5c7dc3eb04c3a886c0b503950ba68 -#: ../../source/user-docs/issue_tracker.rst:23 -msgid "When creating a new issue, the format should typically be:" -msgstr "" - -# 87c49a6e68dc4e17b83ae8ace8db47c7 -#: ../../source/user-docs/issue_tracker.rst:25 -msgid "# Problem" -msgstr "" - -# af0bc345e06a436f9854301a3ad2440c -#: ../../source/user-docs/issue_tracker.rst:26 -msgid "# Expected Outcome" -msgstr "" - -# 2336103a23b747ac993272b15bc2c8f4 -#: ../../source/user-docs/issue_tracker.rst:27 -msgid "# Example (with data or images)" -msgstr "" - -# 0749cdfc88a44c89b16ef67da9b9372f -#: ../../source/user-docs/issue_tracker.rst:28 -msgid "# Solution (if possible)" -msgstr "" - -# 8001caa5522045a687bb6888613778eb -#: ../../source/user-docs/issue_tracker.rst:29 -msgid "" -"# Version and OS – (if necessary) InaSAFE/QGIS version and operating system" -msgstr "" - -# 09efb887c07247b1b4fea7114669eb66 -#: ../../source/user-docs/issue_tracker.rst:31 -msgid "Task a developer to it (if you know who might solve it)" -msgstr "" - -# 90488ae3313144b19d9a4e87abb1265a -#: ../../source/user-docs/issue_tracker.rst:32 -msgid "Add tags and milestones (if possible)" -msgstr "" - -# 668a0fe1e5724f0ab388062459f068f0 -#: ../../source/user-docs/issue_tracker.rst:34 -msgid "To track the issue down it would be even more helpful if you:" -msgstr "" - -# 6e17f38468514b8080ff70d97155779c -#: ../../source/user-docs/issue_tracker.rst:36 -msgid "" -"Take screenshots to illustrate the issue; you can drag and drop the " -"screenshot into the ticket (on |github|)." -msgstr "" - -# 1fb6c570cc41466eb75893a141475c8d -#: ../../source/user-docs/issue_tracker.rst:38 -msgid "" -"If you can, cut and paste an error message text or similar textual output, " -"we prefer that over a screenshot." -msgstr "" - -# 495fef4511a946839ed6a7dc69a06ab3 -#: ../../source/user-docs/issue_tracker.rst:40 -msgid "" -"If you are pasting verbatim text, place it inside three backticks like so:" -msgstr "" - -# db30927bf275450ead920b52f29b003d -#: ../../source/user-docs/issue_tracker.rst:48 -msgid "" -"Add a # CC section and include others who may be interested in following the " -"ticket if needed:" -msgstr "" - -# 24db6847223b4c3dbaf17cc4066698ed -#: ../../source/user-docs/issue_tracker.rst:58 -msgid "" -"Add a # See Also section to cross reference to other tickets or commits if " -"needed:" -msgstr "" - -# 4d87da11ffdb40c8b7a42cc0f127d07c -#: ../../source/user-docs/issue_tracker.rst:69 -msgid "" -"If you don't know what to do, have a look at the already existing issues and " -"copy the necessary parts to your issue." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/lookup_table.po b/docs/i18n/en/LC_MESSAGES/user-docs/lookup_table.po deleted file mode 100644 index fa604a17..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/lookup_table.po +++ /dev/null @@ -1,715 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 1fc3247ddc214e5c8f5903ab4972d697 -#: ../../source/user-docs/lookup_table.rst:10 -msgid "Lookup-Table" -msgstr "" - -# 1be94728e44d44ae8e7d4f7323416f05 -#: ../../source/user-docs/lookup_table.rst:12 -msgid "" -"Here you can find a Table of not translate able phrases and words. Take it " -"as a dictionary if you are going to translate with transifex" -msgstr "" - -# 0ff165e142df4826b63ee04c2d5fe347 -#: ../../source/user-docs/lookup_table.rst:16 -msgid "Indonesian Translation Index" -msgstr "" - -# e9c3107b6ba5450eb8636d84c6ea98f0 -#: ../../source/user-docs/lookup_table.rst:18 -msgid "" -"To coordinate translation of InaSAFE into Bahasa Indonesian we have " -"developed a table of commonly used terms and translation." -msgstr "" - -# dab9058f648c4c788739f720a22db0f3 -#: ../../source/user-docs/lookup_table.rst:22 -msgid "English" -msgstr "" - -# e521161f0f9f40049e6b7c069211182d -#: ../../source/user-docs/lookup_table.rst:22 -msgid "Bahasa Indonesia" -msgstr "" - -# 0aa0e9ef4f024f64b7ff27fdf3f7f97d -#: ../../source/user-docs/lookup_table.rst:24 -msgid "hazard" -msgstr "" - -# 3878422e7f3f4067a2ccc583492a0598 -#: ../../source/user-docs/lookup_table.rst:24 -msgid "ancaman" -msgstr "" - -# 1e0c06421aba4aca862f23683d79dc68 -#: ../../source/user-docs/lookup_table.rst:25 -msgid "exposure" -msgstr "" - -# 0b936af502294d60b1d383b18e54e19c -#: ../../source/user-docs/lookup_table.rst:25 -msgid "keterpaparan" -msgstr "" - -# c524ddfa09484222bb58f1a2551b686a -#: ../../source/user-docs/lookup_table.rst:26 -msgid "activities" -msgstr "" - -# 910dd35758c74ced98f691f2be65ba1e -#: ../../source/user-docs/lookup_table.rst:26 -msgid "langkah kegiatan" -msgstr "" - -# f2efee3c55184787be0c4aaa2c883e5a -#: ../../source/user-docs/lookup_table.rst:27 -msgid "common problem" -msgstr "" - -# 0e348a1885224fc5b6ea0be270c7a2f9 -#: ../../source/user-docs/lookup_table.rst:27 -msgid "masalah yang sering dijumpai" -msgstr "" - -# 78efcc7695784f628f077e917bc0411d -#: ../../source/user-docs/lookup_table.rst:28 -msgid "workshop" -msgstr "" - -# d00c23b89a594590b520579412ee7239 -#: ../../source/user-docs/lookup_table.rst:28 -msgid "lokakarya" -msgstr "" - -# 2e91c9a17c35406d909eaaeaa27857fa -#: ../../source/user-docs/lookup_table.rst:29 -msgid "jobs" -msgstr "" - -# f5a3a1ce4e2740c987bc7ba30681b952 -#: ../../source/user-docs/lookup_table.rst:29 -msgid "job" -msgstr "" - -# 5e4429690387470f82ef40e6f88272aa -#: ../../source/user-docs/lookup_table.rst:30 -msgid "working with" -msgstr "" - -# 727cb5ce660f4d1c927fe555d298e520 -#: ../../source/user-docs/lookup_table.rst:30 -msgid "pengoperasian/mengoperasikan" -msgstr "" - -# 47bb3188ca26444c9a195de1622efb8e -#: ../../source/user-docs/lookup_table.rst:31 -msgid "demo" -msgstr "" - -# 324b4a6e635544c0843162d84ee34008 -#: ../../source/user-docs/lookup_table.rst:31 -msgid "demonstrasi" -msgstr "" - -# e2c7ffba01d947d689ceb366efd6d35c -#: ../../source/user-docs/lookup_table.rst:32 -msgid "module" -msgstr "" - -# d46983e3c57e46609419c3def45272b6 -#: ../../source/user-docs/lookup_table.rst:32 -msgid "modul" -msgstr "" - -# e7344882faed42ddb5585048462adeaf -#: ../../source/user-docs/lookup_table.rst:33 -msgid "learning activity" -msgstr "" - -# 4c4350736f374c7abbc618278feb004a -#: ../../source/user-docs/lookup_table.rst:33 -msgid "kegiatan pembelajaran" -msgstr "" - -# af2d3b32d87a49ff8a59169b76c241c7 -#: ../../source/user-docs/lookup_table.rst:34 -msgid "population" -msgstr "" - -# e1518250a058443db8162d774a8bb559 -#: ../../source/user-docs/lookup_table.rst:34 -msgid "populasi" -msgstr "" - -# abc3bbfd6d334ff788a5542d75a6ac5d -#: ../../source/user-docs/lookup_table.rst:35 -msgid "keyword" -msgstr "" - -# 57ee2ca9102f464e842175e117e3f909 -#: ../../source/user-docs/lookup_table.rst:35 -msgid "kata kunci" -msgstr "" - -# 8875892946f046d6abcd83da7198510a -#: ../../source/user-docs/lookup_table.rst:36 -msgid "update" -msgstr "" - -# 3e19fd6f31be49269f9b3b12a6956583 -#: ../../source/user-docs/lookup_table.rst:36 -msgid "pembaharuan" -msgstr "" - -# 823ad9ef3d4946dd8f40b99a528dfecf -#: ../../source/user-docs/lookup_table.rst:37 -msgid "option" -msgstr "" - -# 8141c52e7791483786c5bb133886c016 -#: ../../source/user-docs/lookup_table.rst:37 -msgid "pilihan" -msgstr "" - -# 65915f3a501f4f128f0f9cd0a19b0cf1 -#: ../../source/user-docs/lookup_table.rst:38 -msgid "interface" -msgstr "" - -# ff30002f734841f58f1105d04b61cfdc -#: ../../source/user-docs/lookup_table.rst:38 -msgid "antarmuka/tampilan antarmuka (sesuaikan dengan kalimat)" -msgstr "" - -# c72dc75a3e004eeba950b3a94250d705 -#: ../../source/user-docs/lookup_table.rst:39 -msgid "software" -msgstr "" - -# 931924d669d54e5389edc104999e3909 -#: ../../source/user-docs/lookup_table.rst:39 -msgid "perangkat lunak" -msgstr "" - -# a91f9e52ba8d4794b6c724e19bac4bcd -#: ../../source/user-docs/lookup_table.rst:40 -msgid "hardware" -msgstr "" - -# a83f8d06e6ab4ceca44f88b22c20816e -#: ../../source/user-docs/lookup_table.rst:40 -msgid "perangkat keras" -msgstr "" - -# f6966da835f644e1a79ead5ceec1832a -#: ../../source/user-docs/lookup_table.rst:41 -msgid "check" -msgstr "" - -# 53e05b5d796a4867aaeb7483a4aae7a2 -#: ../../source/user-docs/lookup_table.rst:41 -msgid "tanda centang" -msgstr "" - -# 883f930ab17347158512f4b49bff315e -#: ../../source/user-docs/lookup_table.rst:42 -msgid "checklist" -msgstr "" - -# 30a48e5abbf4462480e349c679371457 -#: ../../source/user-docs/lookup_table.rst:42 -msgid "daftar aktivitas/daftar kebutuhan" -msgstr "" - -# 777e9ce2212f4f839c093f635318242e -#: ../../source/user-docs/lookup_table.rst:43 -msgid "GIS" -msgstr "" - -# a9d9d85bf62649d1bf0b3fca3875d62f -#: ../../source/user-docs/lookup_table.rst:43 -msgid "SIG" -msgstr "" - -# eb05c6e978b24188baf3e4a9067b098a -#: ../../source/user-docs/lookup_table.rst:44 -msgid "explore" -msgstr "" - -# 47d1cc8af1864d4b8af6dcdbc1708a24 -#: ../../source/user-docs/lookup_table.rst:44 -msgid "eksplorasi" -msgstr "" - -# c95142eb0abd401482de83c953042fbf -#: ../../source/user-docs/lookup_table.rst:45 -msgid "website" -msgstr "" - -# 942df04ab17a487cb8d5d4e959d5bf6a -#: ../../source/user-docs/lookup_table.rst:45 -msgid "situs" -msgstr "" - -# fc3d54fcbf24465597da7f35e3b9b1b2 -#: ../../source/user-docs/lookup_table.rst:46 -msgid "login" -msgstr "" - -# d76eff4dbb9f4cb18ddd4e409f733bba -#: ../../source/user-docs/lookup_table.rst:46 -msgid "masuk" -msgstr "" - -# eebc5587d16c4ec4901a9128474e5556 -#: ../../source/user-docs/lookup_table.rst:47 -msgid "username" -msgstr "" - -# ae1e2bb4ef71429aacd6abd0243d4b15 -#: ../../source/user-docs/lookup_table.rst:47 -msgid "nama pengguna" -msgstr "" - -# a0f816edacc64745aae71858c5147454 -#: ../../source/user-docs/lookup_table.rst:48 -msgid "attribute" -msgstr "" - -# 558aa629d0bc4936b1f71f885e6dd27b -#: ../../source/user-docs/lookup_table.rst:48 -msgid "atribut" -msgstr "" - -# d8c455097fc04ae398cb1b300f324da1 -#: ../../source/user-docs/lookup_table.rst:49 -msgid "symbology" -msgstr "" - -# 37d9a378e0124e82821d4de03d6ddc1e -#: ../../source/user-docs/lookup_table.rst:49 -msgid "pengaturan simbol" -msgstr "" - -# 7404b4cac9324b33810333ec729fa665 -#: ../../source/user-docs/lookup_table.rst:50 -msgid "footprint hazard" -msgstr "" - -# dc0b5fd181a24509b36f00e32ceedde3 -#: ../../source/user-docs/lookup_table.rst:50 -msgid "batas area bencana" -msgstr "" - -# 9d1ec8d46aaf4f9b8d02f91c14997d07 -#: ../../source/user-docs/lookup_table.rst:51 -msgid "building footprint" -msgstr "" - -# 5374f39c9a6048f09f0cff1119c3f30f -#: ../../source/user-docs/lookup_table.rst:51 -msgid "batas tapak bangunan" -msgstr "" - -# 97822dd9adc3417aa4c8b84a22d66797 -#: ../../source/user-docs/lookup_table.rst:52 -msgid "way" -msgstr "" - -# 9f4e62c289fc4bd8a398be3ca5144066 -#: ../../source/user-docs/lookup_table.rst:52 -msgid "garis" -msgstr "" - -# 6162a83b2643440c92ad4c943900faa3 -#: ../../source/user-docs/lookup_table.rst:53 -msgid "polygon" -msgstr "" - -# c31a593052c44f208f67aff8fce4939a -#: ../../source/user-docs/lookup_table.rst:53 -msgid "poligon" -msgstr "" - -# 130e2eb9eb0c4e4f932e91e2e5939aa2 -#: ../../source/user-docs/lookup_table.rst:54 -msgid "editing" -msgstr "" - -# 3d05fe5753794bb09be95dd6e80efeb8 -#: ../../source/user-docs/lookup_table.rst:54 -msgid "mengedit" -msgstr "" - -# 02db8974e31b496d839829b63bd65681 -#: ../../source/user-docs/lookup_table.rst:55 -msgid "browse" -msgstr "" - -# 3ad7c88e2cfe4435b30c4619cb2f775b -#: ../../source/user-docs/lookup_table.rst:55 -msgid "telusuri" -msgstr "" - -# 7cebb37c11bc483fa48f54d140a0cac6 -#: ../../source/user-docs/lookup_table.rst:56 -msgid "password" -msgstr "" - -# f1798dfa8f584141bfecb972e09d01cd -#: ../../source/user-docs/lookup_table.rst:56 -msgid "kata sandi" -msgstr "" - -# 3b1892c8fdc542db942e87e993427515 -#: ../../source/user-docs/lookup_table.rst:57 -msgid "dropdown" -msgstr "" - -# 411a3a6937e44ccf933dcfb97d58e078 -#: ../../source/user-docs/lookup_table.rst:57 -msgid "daftar pilihan" -msgstr "" - -# 52716efaf2f0443ba29ebd3e906a3279 -#: ../../source/user-docs/lookup_table.rst:58 -msgid "default" -msgstr "" - -# 21aaade1a02548338e73f2f69fc81bf3 -#: ../../source/user-docs/lookup_table.rst:58 -msgid "pengaturan bawaan" -msgstr "" - -# 91f7d0423fdf4918a601a11e62fb7d07 -#: ../../source/user-docs/lookup_table.rst:59 -msgid "contingency" -msgstr "" - -# abf88ab862a24d6abe9c1d8373b799e5 -#: ../../source/user-docs/lookup_table.rst:59 -msgid "kontinjensi" -msgstr "" - -# ee1b530fc02d4eab9d95eb747aecc2e3 -#: ../../source/user-docs/lookup_table.rst:60 -msgid "digitalization" -msgstr "" - -# bf33e1bc862d4aad834a7c72890298c2 -#: ../../source/user-docs/lookup_table.rst:60 -msgid "digitalisasi" -msgstr "" - -# da7d4cd22fdd472a92c612cfd26553d3 -#: ../../source/user-docs/lookup_table.rst:61 -msgid "drag" -msgstr "" - -# 52b84da2eed74758bab37432c5304260 -#: ../../source/user-docs/lookup_table.rst:61 -msgid "geser" -msgstr "" - -# b355852916224789b53aa525256a0c1e -#: ../../source/user-docs/lookup_table.rst:62 -msgid "practicing" -msgstr "" - -# 380030ecba364770aa6cdbc1a0d5c9aa -#: ../../source/user-docs/lookup_table.rst:62 -msgid "mempraktikkan" -msgstr "" - -# 5afebf552eeb4d5fb26b4a925bda6fb4 -#: ../../source/user-docs/lookup_table.rst:63 -msgid "IDP camp" -msgstr "" - -# c21583e17f5743c389f13007b99a147e -#: ../../source/user-docs/lookup_table.rst:63 -msgid "tempat pengungsian" -msgstr "" - -# 17accaad83ba41638e6443333433b14e -#: ../../source/user-docs/lookup_table.rst:64 -msgid "map canvas" -msgstr "" - -# 9221004a4c1a4887bf66159cd7cbcb4d -#: ../../source/user-docs/lookup_table.rst:64 -msgid "kanvas peta" -msgstr "" - -# 86e59eecf6a44f819141f606a6f13e1e -#: ../../source/user-docs/lookup_table.rst:65 -msgid "filter" -msgstr "" - -# 410534a62c214016ae601427ec60a127 -#: ../../source/user-docs/lookup_table.rst:65 -msgid "penyaringan" -msgstr "" - -# c456043244ed465c82101af8b0e684b0 -#: ../../source/user-docs/lookup_table.rst:66 -msgid "directory" -msgstr "" - -# 40f7e45a1c9a4fbaad6ca43370b51761 -#: ../../source/user-docs/lookup_table.rst:66 -msgid "direktori" -msgstr "" - -# 734fdf27a0104839b30929ca460db240 -#: ../../source/user-docs/lookup_table.rst:67 -msgid "log" -msgstr "" - -# 96c8e00e835d48aa9e8e8ffd580331a4 -#: ../../source/user-docs/lookup_table.rst:67 -msgid "catatan" -msgstr "" - -# 6e135f69e5134655a63e0a520fc4bb91 -#: ../../source/user-docs/lookup_table.rst:68 -msgid "web browser" -msgstr "" - -# a3d89b9686144dca8342090f431bdbee -#: ../../source/user-docs/lookup_table.rst:68 -msgid "browser internet" -msgstr "" - -# 4d8daa86241142a6929ce4461109d2be -#: ../../source/user-docs/lookup_table.rst:69 -msgid "feature" -msgstr "" - -# 20487dfed00e4b008926ea75fefee5d5 -#: ../../source/user-docs/lookup_table.rst:69 -msgid "fitur" -msgstr "" - -# 0955efe013d843fcb3a8d5f43bb38141 -#: ../../source/user-docs/lookup_table.rst:70 -msgid "liquefied" -msgstr "" - -# 072eb81128bb4ce494a02f829c172654 -#: ../../source/user-docs/lookup_table.rst:70 -msgid "tergenang" -msgstr "" - -# 7c596ab3cb3247f0a284fc978401c342 -#: ../../source/user-docs/lookup_table.rst:71 -msgid "intersect" -msgstr "" - -# 3892b074892a4035b6e5fa52f8c27f1f -#: ../../source/user-docs/lookup_table.rst:71 -msgid "perpotongan" -msgstr "" - -# 84d5577006434d418ef8f73ac23dee48 -#: ../../source/user-docs/lookup_table.rst:72 -msgid "disclaimer" -msgstr "" - -# eb3224394863440ab8382f1e3ee85ac2 -#: ../../source/user-docs/lookup_table.rst:72 -msgid "peringatan" -msgstr "" - -# 58422176c8b34925a1ca0f1a26d960b7 -#: ../../source/user-docs/lookup_table.rst:73 -msgid "extent" -msgstr "" - -# d7b111a9a23d4397a4948cfb818ed938 -#: ../../source/user-docs/lookup_table.rst:73 -msgid "jangkauan" -msgstr "" - -# eccf76bee1af42a68a02b4fa62e3052e -#: ../../source/user-docs/lookup_table.rst:78 -msgid "" -"The list of abbreviations to use (including the automatic link to the " -"respective homepage) is: ::" -msgstr "" - -# 838fcb83cc25408e99446f9e47c4f8b9 -#: ../../source/user-docs/lookup_table.rst:93 -msgid "" -"We have also made a blanket decision not to translate the following words:" -msgstr "" - -# b38e91fa1859433cb79aa88080b8d776 -#: ../../source/user-docs/lookup_table.rst:95 -msgid "*python*" -msgstr "" - -# 7f469206d9f949a8aee68870dcdf5873 -#: ../../source/user-docs/lookup_table.rst:96 -msgid "*qgis*" -msgstr "" - -# b86f9a224cca4904bdd8136cd70ac012 -#: ../../source/user-docs/lookup_table.rst:97 -msgid "*batch runner*" -msgstr "" - -# 5d8937671ca3442d96ec451e7c467fc2 -#: ../../source/user-docs/lookup_table.rst:98 -msgid "*review*" -msgstr "" - -# 26d2ba4df6f54363a777e3d98db971ab -#: ../../source/user-docs/lookup_table.rst:99 -msgid "*tool*" -msgstr "" - -# 5c26c87e15c94cb881db56eb591c6b03 -#: ../../source/user-docs/lookup_table.rst:100 -msgid "*template*" -msgstr "" - -# 96653e8dc8bb48bc965c81a64e908285 -#: ../../source/user-docs/lookup_table.rst:101 -msgid "*input*" -msgstr "" - -# a3657b7d642049d89bb208f21e06936e -#: ../../source/user-docs/lookup_table.rst:102 -msgid "*output*" -msgstr "" - -# 3ccbc82d476e4afb8031d9ada2f8c485 -#: ../../source/user-docs/lookup_table.rst:103 -msgid "*layer*" -msgstr "" - -# 38f1a5036f034a14974c4804549e93d7 -#: ../../source/user-docs/lookup_table.rst:104 -msgid "*layout*" -msgstr "" - -# 6f23913aaddf4ffe93bbc1653b58d141 -#: ../../source/user-docs/lookup_table.rst:105 -msgid "*upload*" -msgstr "" - -# fa8e876dd0d84b9e8537730ccd401101 -#: ../../source/user-docs/lookup_table.rst:106 -msgid "*download*" -msgstr "" - -# 65e14eab909842848560c9b0efd9bc4b -#: ../../source/user-docs/lookup_table.rst:107 -msgid "*tag*" -msgstr "" - -# 3ceab0d34a4348e581575f576010377a -#: ../../source/user-docs/lookup_table.rst:108 -msgid "*edit*" -msgstr "" - -# 9637e9283e7845658d783d6c7ccc2d39 -#: ../../source/user-docs/lookup_table.rst:109 -msgid "*field papers*" -msgstr "" - -# c46cf352e1be4e89a9559e691dc5aab9 -#: ../../source/user-docs/lookup_table.rst:110 -msgid "*value*" -msgstr "" - -# a15c4f67c1874f87a11e0ff7e9353600 -#: ../../source/user-docs/lookup_table.rst:111 -msgid "*query*" -msgstr "" - -# 04a7e0186fd243b6861efde7391bcd9b -#: ../../source/user-docs/lookup_table.rst:112 -msgid "*buffer*" -msgstr "" - -# 518616e0fe444846a4ce36bbd2242052 -#: ../../source/user-docs/lookup_table.rst:113 -msgid "*field*" -msgstr "" - -# 73af9f87360b4135ab09551ef337f095 -#: ../../source/user-docs/lookup_table.rst:114 -msgid "*field calculator*" -msgstr "" - -# 1422b4dfdcb644ebab78e4baa54a8df6 -#: ../../source/user-docs/lookup_table.rst:115 -msgid "*outcome*" -msgstr "" - -# 20d5402ced68413eb541a4543cb63653 -#: ../../source/user-docs/lookup_table.rst:116 -msgid "*plugin*" -msgstr "" - -# 47f80879c8d34d6f8495540804ab044c -#: ../../source/user-docs/lookup_table.rst:117 -msgid "*overlay*" -msgstr "" - -# 491522e469e24ee29dff5541e6dd5acf -#: ../../source/user-docs/lookup_table.rst:118 -msgid "*file*" -msgstr "" - -# 785e2c2cee0348a1865bafb9a4d08015 -#: ../../source/user-docs/lookup_table.rst:119 -msgid "*node*" -msgstr "" - -# 31bd718d9c144f178e3280a2342ade7c -#: ../../source/user-docs/lookup_table.rst:120 -msgid "*track*" -msgstr "" - -# af7e89ab287346b1803800619e913231 -#: ../../source/user-docs/lookup_table.rst:121 -msgid "*track log*" -msgstr "" - -# 13963c37194d4b2f947850defce3868b -#: ../../source/user-docs/lookup_table.rst:122 -msgid "*waypoint*" -msgstr "" - -# c90170d518ca481798e40d7b9d43842a -#: ../../source/user-docs/lookup_table.rst:123 -msgid "*copy & paste*" -msgstr "" - -# 597b4c192a4745d581a676696bbb3ca5 -#: ../../source/user-docs/lookup_table.rst:125 -msgid "Please add to this list as required." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/postprocessors.po b/docs/i18n/en/LC_MESSAGES/user-docs/postprocessors.po deleted file mode 100644 index 24e53f75..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/postprocessors.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# fc954024a96d4fef8531671f0de1c2f7 -#: ../../source/user-docs/postprocessors.rst:8 -msgid "Post-processors" -msgstr "" - -# 2b264c4e894247a6b2b9df78000d2e49 -#: ../../source/user-docs/postprocessors.rst:10 -msgid "" -"This document explains the purpose of post-processors and lists the " -"different available post-processors and the requirements each has to be used " -"effectively." -msgstr "" - -# 56d7283bb3cc4fd6bae34a446eac6c6e -#: ../../source/user-docs/postprocessors.rst:15 -msgid "What is a post-processor?" -msgstr "" - -# 469e9bb96437465a941d1944ffb9f4d4 -#: ../../source/user-docs/postprocessors.rst:17 -msgid "" -"A post-processor is a function that takes the results from the impact " -"function and calculates derivative indicators. For example, if you have an " -"affected population total, the **Gender** post-processor will calculate " -"gender specific indicators such as additional nutritional requirements for " -"pregnant women." -msgstr "" - -# ba455c2f6581464a9c88bf37fd7e164c -#: ../../source/user-docs/postprocessors.rst:23 -msgid "Selecting a post-processor" -msgstr "" - -# 157e1ee340a24785bbec746a7cdb1ee9 -#: ../../source/user-docs/postprocessors.rst:25 -msgid "" -"Post-processors and their settings can be edited in the user configurable " -"function parameters dialog. See :ref:`analysis_parameters` for more " -"information." -msgstr "" - -# 3c23e755fe884eeebf92d5808dc36cb3 -#: ../../source/user-docs/postprocessors.rst:29 -msgid "" -"To disable a post-processor simply go to the :guilabel:`Postprocessors` tab " -"and enable or disable any post-processor you like by clicking on the " -"checkbox next to it. You can even set the post-processing values you like " -"here by entering the values in the fields." -msgstr "" - -# 59f52bdfdb2e41a58e575e9071df3540 -#: ../../source/user-docs/postprocessors.rst:34 -msgid "" -"If you don't see a post-processors field, it means that the impact function " -"you are trying to use does not support any post-processor." -msgstr "" - -# c5215a8aa0994460a5a4b8a07563f92a -#: ../../source/user-docs/postprocessors.rst:42 -msgid "*Post-processor configuration*" -msgstr "" - -# 0e78094585004ea7a92c0a7676533f6b -#: ../../source/user-docs/postprocessors.rst:44 -msgid "" -"Each activated post-processor will create an additional report in the dock " -"and in the printout. If problems arise while post-processing, the system " -"will inform you and will skip post-processing." -msgstr "" - -# 59a35bb172dc47aea496c9f9f14412e4 -#: ../../source/user-docs/postprocessors.rst:49 -msgid "Creating post-processors" -msgstr "" - -# 7b240a09abdc40d985a01ed93831d0b1 -#: ../../source/user-docs/postprocessors.rst:51 -msgid "" -"If you feel there is an important post-processor which is missing, there are " -"two avenues you can follow:" -msgstr "" - -# 9561d20fa8754f2a93fff6fe284ddd71 -#: ../../source/user-docs/postprocessors.rst:54 -msgid "" -"You can develop it yourself or with the aid of a programmer who has a good " -"understanding of the python programming language." -msgstr "" - -# 0cf4cc857cba4322b87fd904fb1e5042 -#: ../../source/user-docs/postprocessors.rst:56 -msgid "" -"You can file a ticket on our `issue tracking system `_, and if time and resources allow we will implement " -"it for you." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/toolbar.po b/docs/i18n/en/LC_MESSAGES/user-docs/toolbar.po deleted file mode 100644 index 49b86e8d..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/toolbar.po +++ /dev/null @@ -1,199 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# dc6ca43345164bf2b77249eb27ed9f71 -#: ../../source/user-docs/toolbar.rst:8 -msgid "Toolbar" -msgstr "" - -# 54cd4953a2074769a38bf63f461674fa -#: ../../source/user-docs/toolbar.rst:10 -msgid "" -"Here the different icons (buttons) in the toolbar and the function of each " -"are explained." -msgstr "" - -# 25eaf514243b4fd496ca5a4ff9515c5f -#: ../../source/user-docs/toolbar.rst:16 -msgid "Toggle |project_name| Dock" -msgstr "" - -# eaaede7cbee64a10b2619678496261a9 -#: ../../source/user-docs/toolbar.rst:23 -msgid "*Toggle Dock*" -msgstr "" - -# 1686d83785e6462eb792ab2595a2164e -#: ../../source/user-docs/toolbar.rst:25 -msgid "" -"This button shows and hides the |project_name| dock. After enabling the dock " -"you are able to move it around your screen. Dock it as a panel within the " -"QGIS interface, or undock it so that it floats as a separate window." -msgstr "" - -# fc576de799434367908e6d7b4a683a4d -#: ../../source/user-docs/toolbar.rst:30 -msgid "" -"Find more information about the dock in the :ref:`toolbar_dock` section." -msgstr "" - -# 1d7943bad09a4190a7ef55e65debe4c7 -#: ../../source/user-docs/toolbar.rst:36 -msgid "|project_name| Keyword Editor" -msgstr "" - -# a9df621ebd654a36ad01d8f9c3a17cf8 -#: ../../source/user-docs/toolbar.rst:43 -msgid "*Keyword Editor*" -msgstr "" - -# 7d4bcbff3b164dc5aa075ec2586e7193 -#: ../../source/user-docs/toolbar.rst:45 -msgid "" -"The :guilabel:`Keyword Editor` button opens the editor which is is used to " -"edit the keywords needed for |project_name| to create useful output. " -"Keywords are explained in more detail in :ref:`keywords_system`." -msgstr "" - -# 296ddc6736c6422b9aac3428a9e3ea7a -# 8c5ee842edf94f64a9722cfe855c4443 -#: ../../source/user-docs/toolbar.rst:53 -msgid "|project_name| Options" -msgstr "" - -# b46d6c69545d46aba78a4bad920b5615 -#: ../../source/user-docs/toolbar.rst:60 -msgid "*Options*" -msgstr "" - -# 019fa8208fc34979840a1d3cff836287 -#: ../../source/user-docs/toolbar.rst:62 -msgid "" -"This button opens the |project_name| Options window which is described in " -"detail in :ref:`toolbar_options`." -msgstr "" - -# 4493c3cc22474d809a7bb459e13dcd33 -# 2802a96d9da945dfaf9506ecfe6ce958 -#: ../../source/user-docs/toolbar.rst:68 -msgid "|project_name| Impact Functions Browser" -msgstr "" - -# 8c27f48c38ea45208231184040996db2 -#: ../../source/user-docs/toolbar.rst:75 -msgid "*Impact Functions Browser*" -msgstr "" - -# b8a2a5119eb94fc8a175bd083c7c08e5 -#: ../../source/user-docs/toolbar.rst:77 -msgid "" -"This button opens the Impact Function Browser, which allows you to filter " -"and browse impact functions that are available in |project_name|. More " -"information can be found in :ref:`impact_functions`." -msgstr "" - -# 5b8eb2c5786e4149a5c395702150e4a5 -# ff9e618448794d5987b8ac65ac5e0127 -#: ../../source/user-docs/toolbar.rst:84 -msgid "|project_name| Minimum Needs Tool" -msgstr "" - -# b472eefca82c4381adbbe1e39f0b2453 -#: ../../source/user-docs/toolbar.rst:91 -msgid "*Minimum Needs Tool*" -msgstr "" - -# 0d169b6048dd476f935d1d536e78475c -#: ../../source/user-docs/toolbar.rst:93 -msgid "" -"This tool calculates minimum needs for evacuated people. For guidance on how " -"to use this tool visit :ref:`minimum_needs`." -msgstr "" - -# 11a072fc6f794850b2183fe9a37c4a53 -# 44e3c124ee154660a0f39ec97514c0f8 -#: ../../source/user-docs/toolbar.rst:99 -msgid "|project_name| Converter" -msgstr "" - -# 49cca9123f7e47c88796f5d899ec74df -#: ../../source/user-docs/toolbar.rst:106 -msgid "*Converter*" -msgstr "" - -# 314b91c5c40a4571914e94696037f2e3 -#: ../../source/user-docs/toolbar.rst:108 -msgid "" -"This tool converts an earthquake 'shakemap' that is in grid xml format to a " -"GeoTIFF file. For more detailed information visit :ref:`converter`." -msgstr "" - -# 212c81fef04043db86b0e1f92eaa5d13 -# 30c795c5b51e4bf39cd90897fd3650c2 -#: ../../source/user-docs/toolbar.rst:115 -msgid "|project_name| Batch Runner" -msgstr "" - -# d8bb0eece2f94d91a098548546065444 -#: ../../source/user-docs/toolbar.rst:122 -msgid "*Batch Runner*" -msgstr "" - -# faf922ff6d54462ba4d6f901c76c8fb4 -#: ../../source/user-docs/toolbar.rst:124 -msgid "" -"The Batch Runner is used to load saved scenarios (:ref:`save_scenario`) and " -"batch run them in one go. Find more information about this tool in :ref:" -"`batch_runner`." -msgstr "" - -# 78ceba55f6124cc7bd509b53982939bd -#: ../../source/user-docs/toolbar.rst:131 -msgid "Save current scenario" -msgstr "" - -# 1129affe46074d82b97af8a1469c1fe5 -#: ../../source/user-docs/toolbar.rst:138 -msgid "*Save Current Scenario*" -msgstr "" - -# 382ca76228214dba8dd6a71f5f5a7020 -#: ../../source/user-docs/toolbar.rst:140 -msgid "" -"This is the tool to prepare/save scenarios for the :ref:`tb_batch_runner` " -"tool. It lets you save the current visible scenario in QGIS to a :file:`." -"txt` file. Then this file can be opened as a scenario again in Batch runner " -"and recalculated. A more detailed description is available in :ref:" -"`batch_runner`." -msgstr "" - -# 60641545a7464aa9b0140e4ad83cb7c8 -#: ../../source/user-docs/toolbar.rst:150 -msgid "|project_name| OpenStreetMap Downloader" -msgstr "" - -# 69aa1be82c17405981511486272185d8 -#: ../../source/user-docs/toolbar.rst:157 -msgid "*OpenStreetMap downloader*" -msgstr "" - -# 3875d2191f1641a3a0f0e6f7fc32c680 -#: ../../source/user-docs/toolbar.rst:159 -msgid "This tool fetches building (structure) data from |OSM|." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/troubleshooting.po b/docs/i18n/en/LC_MESSAGES/user-docs/troubleshooting.po deleted file mode 100644 index 9bfd29fb..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/troubleshooting.po +++ /dev/null @@ -1,71 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# fe0f633de6ac4f1882f093bdf12b6a9d -#: ../../source/user-docs/troubleshooting.rst:10 -msgid "Troubleshooting" -msgstr "" - -# 513e351e1fa04c568dadb3c519da3034 -#: ../../source/user-docs/troubleshooting.rst:13 -msgid "Network Timeout" -msgstr "" - -# 43e0ca92081e4ddc9299715cb33e51da -#: ../../source/user-docs/troubleshooting.rst:15 -msgid "" -"One of the most common problems with installing |project_name| is, due to " -"the large paket size of |project_name| the downloading in slow(er) internet " -"connections. If you frequently receive a timeout of your netwerk connection " -"try to set :menuselection:`Settings > Options > Network > Timeout for " -"network requests` to a higher number." -msgstr "" - -# 4df78f1e8d7d43d79aa8a51bf45624db -#: ../../source/user-docs/troubleshooting.rst:22 -msgid "" -"If you have no permanent network connection or you want to pass |" -"project_name| to friend who do now have an internet connection you can also " -"install |project_name| by manually downloading it from http://planet.qgis." -"org/plugins/inasafe/ by clicking on the latest version and then choose :" -"guilabel:`Download`. This will get you the :file:`inasafe-x.x.x.zip` file " -"which you can afterwards extract in the plugins path of your |QGIS| " -"installation." -msgstr "" - -# 2eca154ea91f4e69bb4c519812b16321 -#: ../../source/user-docs/troubleshooting.rst:30 -msgid "" -"If you have a copy of the plugin code in a zip file, you can install it " -"unzipping it into the QGIS plugins folder. In Windows, it should be " -"something like C:\\\\Users\\\\\\\\.qgis2\\\\python\\\\plugins. In " -"Linux/Mac, it should be in ~/.qgis2/python/plugins. Copy the inasafe folder " -"in your zip file into your plugins folder. You should end up having a ." -"qgis2\\python\\plugins\\inasafe folder with the code of the plugin and the " -"required subfolders." -msgstr "" - -# 4ba55b3e7e1746d39d0cd006c0fae282 -#: ../../source/user-docs/troubleshooting.rst:40 -msgid "" -"If your problems are still not solved you can write an email to info@inasafe." -"org. We also have a |project_name| User Mailinglist where you are very " -"welcome to join and ask your questions there. More information about howto " -"join the list is available on :ref:`getting_help`." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/using_qgis.po b/docs/i18n/en/LC_MESSAGES/user-docs/using_qgis.po deleted file mode 100644 index 1ac5c584..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/using_qgis.po +++ /dev/null @@ -1,63 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 4d168ccd1a224bd88c3a37a1676a6e31 -#: ../../source/user-docs/using_qgis.rst:8 -msgid "Using QGIS" -msgstr "" - -# df45ee8802364121b299247d0ac5a869 -#: ../../source/user-docs/using_qgis.rst:10 -msgid "" -"|project_name| uses |QGIS| as the platform on which to provide its " -"functionality. |QGIS| itself has good documentation and a very helpful user " -"community. In this section we focus on those aspects of |QGIS| functionality " -"that will be helpful to someone wanting to carry out impact scenario " -"assessments using |project_name|." -msgstr "" - -# f322ade2fbb84659b1a6b208d8bb9f0e -#: ../../source/user-docs/using_qgis.rst:17 -msgid "" -"There are three good resources to get you up to speed with using GIS in " -"general and |QGIS| in particular:" -msgstr "" - -# 82de34cd1c72428ea7bf8b4188624a9f -#: ../../source/user-docs/using_qgis.rst:20 -msgid "" -"The `Gentle Introduction to GIS `_ by Linfiniti " -"Consulting - it is a free electronic book that introduces the concepts of " -"GIS in a very easy to read manner." -msgstr "" - -# a7e3c36597344ea1a10e5168c3ad084a -#: ../../source/user-docs/using_qgis.rst:23 -msgid "" -"The `QGIS User Manual `_ - " -"also an electronic book that serves as a reference guide to the |QGIS| " -"Desktop Application." -msgstr "" - -# bd1d9b87958a4deb96359f0debd74d42 -#: ../../source/user-docs/using_qgis.rst:26 -msgid "" -"The `QGIS Training Manual `_ by Linfiniti " -"Consulting that provides a detailed training guide on |QGIS| and PostGIS." -msgstr "" diff --git a/docs/i18n/en/LC_MESSAGES/user-docs/writing_documentation.po b/docs/i18n/en/LC_MESSAGES/user-docs/writing_documentation.po deleted file mode 100644 index 5b7797d4..00000000 --- a/docs/i18n/en/LC_MESSAGES/user-docs/writing_documentation.po +++ /dev/null @@ -1,240 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-01 22:03+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# 593d17b341d84ff3b59fcad9933b274f -#: ../../source/user-docs/writing_documentation.rst:8 -msgid "Writing Documentation" -msgstr "" - -# b368edfbc7a648f4afeaaabbf0e59f6e -#: ../../source/user-docs/writing_documentation.rst:10 -msgid "" -"The documentation for |project_name| is written using ReSTructured text (." -"rst) and the Sphinx documentation builder." -msgstr "" - -# fc075d7b628e4b5981bf091de4843f44 -#: ../../source/user-docs/writing_documentation.rst:13 -msgid "" -"The best way to learn how to write .rst is to look at the source of existing " -"documentation - the markup syntax is very simple. There are a number of " -"useful tags that you can use to make your documentation clear and visually " -"interesting, the more commonly used in this document are listed below. For a " -"more detailed list, please visit the `Sphinx Inline Markup page `_" -msgstr "" - -# ec7e4e24bc624ab9baf3453d5dd62e99 -#: ../../source/user-docs/writing_documentation.rst:21 -msgid "" -"A complete list of supported .rst markup is also available `here `_." -msgstr "" - -# 93b397b117ee48f1a142681f0d810365 -#: ../../source/user-docs/writing_documentation.rst:24 -msgid "Following are a few tips for documentation writers:" -msgstr "" - -# ed63e9bf7b5442a68a35ca74079c3de0 -#: ../../source/user-docs/writing_documentation.rst:26 -msgid "" -"Take a look in the `lookup table <./lookup_table.html>`_ to see which terms " -"and phrases are used and which you should definitely **not** translate." -msgstr "" - -# 857ff31fa3154201ad497800d3c1eacc -#: ../../source/user-docs/writing_documentation.rst:28 -msgid "" -"There is a \"Community Edition\" of `PyCharm `_ available. Consider using this for writing documentation." -msgstr "" - -# 3121ceada1a04b42b6c0dcaa5cf20ae6 -#: ../../source/user-docs/writing_documentation.rst:31 -msgid "" -"Try to not write more than **80 Characters in one line**. That makes the " -"documentation much easier to maintain." -msgstr "" - -# 1c0c3291605548ec89628956eee157b0 -#: ../../source/user-docs/writing_documentation.rst:33 -msgid "" -"Try to create a reference anchor for at least every new heading (page). If " -"it is useful and important you might also want to put anchors on subheadings." -msgstr "" - -# fced505236af4a9a87ef31f010166946 -#: ../../source/user-docs/writing_documentation.rst:36 -msgid "" -"Try to avoid duplicate target names (anchors). Always use unique " -"identifiers. If you are not sure - the longer the name the more unlikely it " -"is already used." -msgstr "" - -# 285b0ecda96844e89602eb3f962f3f11 -#: ../../source/user-docs/writing_documentation.rst:39 -msgid "" -"Try to use underscores (_) in filenames and links (anchors) as a separator." -msgstr "" - -# 3df30d4532d94db6a70e1f5c16218da1 -#: ../../source/user-docs/writing_documentation.rst:40 -msgid "Try to use dashes (-) in directory names as a separator." -msgstr "" - -# 2d697fd163de40c2af53987e16bb234a -#: ../../source/user-docs/writing_documentation.rst:41 -msgid "" -"Try to avoid using tables wherever possible. Only use tables if there is " -"really no other way to display the documentation." -msgstr "" - -# ff348d11397f4ed790b04e1f96fc8190 -#: ../../source/user-docs/writing_documentation.rst:44 -msgid "" -"If you have to use tables try to avoid using TABS in favour of SPACES. TABS " -"only confuse the computer while building documentation and leads to " -"unnecessary errors." -msgstr "" - -# b2b8b7eb6c854e63a5a207dbe178e45d -#: ../../source/user-docs/writing_documentation.rst:51 -msgid "Common tags used in the Documentation:" -msgstr "" - -# f36843fd50b44eae8f6dcff4137e3709 -#: ../../source/user-docs/writing_documentation.rst:53 -msgid "Here are some common useful tags ::" -msgstr "" - -# b9546a5059d64755b2f52b1feabb7b60 -#: ../../source/user-docs/writing_documentation.rst:172 -msgid "" -"remark: use pt instead of px because of latex output A4 = height ~ 1000pt A4 " -"= width ~ 700pt" -msgstr "" - -# cf21c710c6d54b0aa3a2342cc30f758f -#: ../../source/user-docs/writing_documentation.rst:177 -msgid "Help writing/fixing documentation" -msgstr "" - -# 5444ccab9f45491f8a8e17ffd4430220 -#: ../../source/user-docs/writing_documentation.rst:179 -msgid "" -"Helping writing the documentation is an easy task. The only thing you need " -"to have is a local copy of the |project_name| documentation branch." -msgstr "" - -# 35ccb278710e4786b38317c895c8c7e7 -#: ../../source/user-docs/writing_documentation.rst:184 -msgid "Clone |project_name| documentation" -msgstr "" - -# ad2b9366f52e4a1e8cac715c9a7d84dc -#: ../../source/user-docs/writing_documentation.rst:186 -msgid "" -"In order to clone the documentation of |project_name| you only have to " -"follow this procedure:" -msgstr "" - -# 2c6d0fa0a5874b879bf7ea300aa64737 -#: ../../source/user-docs/writing_documentation.rst:189 -msgid "" -"This is a one-time process. You do not need to repeat it - it is here for " -"reference purposes only." -msgstr "" - -# 900948bb9e4e4334abf50414ae242c0b -#: ../../source/user-docs/writing_documentation.rst:192 -msgid "Things you have to have to be able to help with documentation:" -msgstr "" - -# 350776b056014caf83d283abffccec06 -#: ../../source/user-docs/writing_documentation.rst:194 -msgid "A GitHub account" -msgstr "" - -# a0d64d23aad24996bacc27815d0c2148 -#: ../../source/user-docs/writing_documentation.rst:195 -msgid "" -"A fork of the inasafe-doc branch (only if you do not have commit access to " -"the main repository)" -msgstr "" - -# 18d4c66dfc5141c98c91f9a803935479 -#: ../../source/user-docs/writing_documentation.rst:198 -msgid "" -"Creating a GitHub account is done by clicking on the :guilabel:`Sign up for " -"free` button on https://github.com/ and filling out the necessary fields." -msgstr "" - -# 2d14b1e3058642d783cd1c96876703dc -#: ../../source/user-docs/writing_documentation.rst:201 -msgid "" -"This documentation assumes that you have the whole |project_name| source " -"available under :file:`$HOME/dev/python/...`" -msgstr "" - -# b5127bcd2f874a6caf091baabf9c7428 -#: ../../source/user-docs/writing_documentation.rst:204 -msgid "" -"Clone your forked github |project_name| documentation by entering following " -"command:" -msgstr "" - -# 943ad092865c4ecfaacf05459c5ede67 -#: ../../source/user-docs/writing_documentation.rst:207 -msgid ":command:`git clone https://github.com//inasafe-doc.git`" -msgstr "" - -# 15fe6ba0160e419fa6c33d71e6e16130 -#: ../../source/user-docs/writing_documentation.rst:209 -msgid "Search for the .rst file you'd like to extend/fix and work on it." -msgstr "" - -# f85d1faa2d7549d8b5dc177f0bfb6e50 -#: ../../source/user-docs/writing_documentation.rst:211 -msgid "" -"Afterwards commit your local changes to your local clone with the command:" -msgstr "" - -# 1ccd7259eb9d4ed2a9ad7ebca821e58f -#: ../../source/user-docs/writing_documentation.rst:213 -msgid ":command:`git commit -a -m\"fixed a typo\"`" -msgstr "" - -# 7134f32560be46d8a791ae2b981303b2 -#: ../../source/user-docs/writing_documentation.rst:215 -msgid "" -"After that you have to push your local changes to your github fork with:" -msgstr "" - -# 3ee1fb876b514d5a9f839f0e1ed9a85d -#: ../../source/user-docs/writing_documentation.rst:217 -msgid ":command:`git push`" -msgstr "" - -# 8c0966e3a1df489aa41e43592f0d6a32 -#: ../../source/user-docs/writing_documentation.rst:219 -msgid "" -"You can than do a pull request on github to request your changes to be " -"reviewed and taken into the official documentation." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/contents.po b/docs/i18n/fr/LC_MESSAGES/contents.po deleted file mode 100644 index a282888d..00000000 --- a/docs/i18n/fr/LC_MESSAGES/contents.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-08-29 18:45+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# f0ffb68626324509bdd2cc24f36b750b -#: ../../source/contents.rst:8 -msgid "|project_name| Documentation" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/index.po b/docs/i18n/fr/LC_MESSAGES/index.po deleted file mode 100644 index 302a1881..00000000 --- a/docs/i18n/fr/LC_MESSAGES/index.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# fd699e36fb804cd496d094fcd9238090 -#: ../../source/index.rst:4 -msgid "|project_name| Documentation" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/sphinx.po b/docs/i18n/fr/LC_MESSAGES/sphinx.po deleted file mode 100644 index 145e234f..00000000 --- a/docs/i18n/fr/LC_MESSAGES/sphinx.po +++ /dev/null @@ -1,24 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-04 11:19+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -# be57401433544576aaa9c63b1f835801 -# 0069b401d6f44c339182aa6eceff5052 -#: ../../templates/globaltoc.html:10 ../../templates/localtoc.html:11 -msgid "Table Of Contents" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/curriculum/curriculum.po b/docs/i18n/fr/LC_MESSAGES/training/curriculum/curriculum.po deleted file mode 100644 index 8fbae801..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/curriculum/curriculum.po +++ /dev/null @@ -1,5593 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Werner Macho , 2014 -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-03-01 00:20+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# a73161ee5b81451fb825f5b3f26ff294 -#: ../../source/training/curriculum/curriculum.rst:2 -msgid "Contingency Planning with OpenStreetMap (OSM) and QGIS/|project_name|" -msgstr "" - -# 790c89dfaf48462bb9827cd0118a4741 -#: ../../source/training/curriculum/curriculum.rst:4 -msgid "**BADAN NASIONAL PENANGGULANGAN BENCANA**" -msgstr "" - -# d4f45d2d4fe94fbdae8880183cb9fca2 -#: ../../source/training/curriculum/curriculum.rst:6 -msgid "**2013**" -msgstr "" - -# eb1f7df45cc64b2083027bf5406e6b78 -#: ../../source/training/curriculum/curriculum.rst:10 -msgid "FOREWORD" -msgstr "" - -# 458752d709c14b6395ca00da7b6de830 -#: ../../source/training/curriculum/curriculum.rst:12 -msgid "" -"The Contingency Planning with OpenStreetMap (OSM) and |QGIS|/|project_name| " -"workshop program is designed to provide provincial and district disaster " -"management agency officials and staff with the knowledge and skills required " -"to handle emergencies during all stages of a disaster. The knowledge and " -"skills acquired through this workshop program will help them to reduce and " -"manage risks from natural disasters." -msgstr "" - -# 6d522d93ebff40ae91e5f8122d0d0d05 -#: ../../source/training/curriculum/curriculum.rst:19 -msgid "" -"Badan Nasional Penanggulangan Bencana (|BNPB|) has identified as a priority " -"the need to create improved methodology for contingency planning. This " -"methodology is focused on the use of realistic disaster scenarios as a " -"starting point for the new comprehensive process." -msgstr "" - -# b0a90a611dc34daa8022cd93a891ea75 -#: ../../source/training/curriculum/curriculum.rst:24 -msgid "" -"|BNPB| and |GoA| through Australia-Indonesia Facility for Disaster Reduction " -"(|AIFDR|) have worked together to create open source software tools for " -"realistic disaster scenario development as an input for contingency " -"planning. They are designed to help disaster managers improve their own " -"scenario analysis which can be used as an input for their disaster " -"contingency planning." -msgstr "" - -# cef26a5256894707b2a2a75c4eb841cf -#: ../../source/training/curriculum/curriculum.rst:31 -msgid "" -"To aid the |BNPB| workshop centre (Pusat Diklat BNPB) in developing " -"systematic workshops which cover all required competencies, this package of " -"training and curriculum materials was created. The workshop curriculum is " -"developed to be used as reference in workshop organisation, both for " -"national or provincial/district level." -msgstr "" - -# 3f488380d3d741fd8f745143c06952b4 -#: ../../source/training/curriculum/curriculum.rst:37 -msgid "" -"This curriculum will be enhanced through test and input from stakeholders, " -"both from government and non-government agencies." -msgstr "" - -# c36a9dd467e04a1b88e2b5f2382f5ed7 -#: ../../source/training/curriculum/curriculum.rst:42 -msgid "INTRODUCTION" -msgstr "" - -# fbde70c7553948ffaeb14b5f4e72ebb6 -#: ../../source/training/curriculum/curriculum.rst:44 -msgid "" -"As one of the most hazard-prone and densely populated countries in the " -"world, Indonesia faces significant risk of loss of life and challenges to " -"development progress as a result of natural disasters. This is why disaster " -"risk reduction has been recognised by the Government of Indonesia as one of " -"their top eleven priorities in the Medium-Term Development Plan (2010-2014). " -"In recognition of the impact of disasters on developing economies, AusAid’s " -"policy on disaster risk reduction highlights the importance of investing in " -"disaster reduction." -msgstr "" - -# 02020cc5c4114accbeb265a89ee1731b -#: ../../source/training/curriculum/curriculum.rst:54 -msgid "" -"|BNPB| has a mandate to increase the overall disaster management capacity of " -"Indonesia, including workshops for managers who handle disasters at the sub-" -"national level. To date, BNPB’s Education and Workshop Centre has been " -"developing a range of workshop curriculum and modules with specific focus on" -msgstr "" - -# 86376697523c46cfa6987f214223f0de -#: ../../source/training/curriculum/curriculum.rst:60 -msgid "Basic Disaster Management" -msgstr "" - -# dc7743571af6415d8c5ae1822dbffd37 -#: ../../source/training/curriculum/curriculum.rst:61 -msgid "Rapid Assessment and Coordination" -msgstr "" - -# df10838113dc4cfbb9845676f5fabad9 -#: ../../source/training/curriculum/curriculum.rst:62 -msgid "Contingency Planning" -msgstr "" - -# 199776b2118f4f839769f716e8fbe4dc -#: ../../source/training/curriculum/curriculum.rst:64 -msgid "" -"|BNPB| works with various actors and stakeholders on the development of " -"these workshop modules. |BNPB| has identified as a priority the need to " -"improve its methodology for contingency planning with an emphasis on the use " -"of realistic disaster scenarios as the starting point for this new " -"comprehensive process." -msgstr "" - -# 85081e84668e4b189891aa4691067257 -#: ../../source/training/curriculum/curriculum.rst:70 -msgid "" -"|BNPB| and |GoA| through the Australia-Indonesia Facility for Disaster " -"Reduction have worked together on a methodology and associated open source " -"software for developing realistic disaster scenarios for contingency " -"planning. This will enable emergency managers to develop their own scenario " -"assessments that can feed into their disaster contingency plans. Over the " -"last year three specific tools have been piloted in Indonesia with huge " -"success:" -msgstr "" - -# 16e5171c00c0427ca5c55a901ddd5ec5 -#: ../../source/training/curriculum/curriculum.rst:79 -msgid "" -"**InaSAFE**: a free and open source software that produces realistic natural " -"hazard impact scenarios for better planning, preparedness and response " -"activities. It is being developed by |AIFDR| in close consultation with |" -"BNPB|." -msgstr "" - -# 82f894341d1444b6af6f1a974eb435fa -#: ../../source/training/curriculum/curriculum.rst:84 -msgid "" -"**OpenStreetMap (OSM) tools**: OSM is a free map of the world that anyone " -"can add to and edit. Community mapping allows for more detailed information " -"to be collected that can be utilised for analysis in |project_name| (e.g. " -"How many houses will be affected by a specific hazard)." -msgstr "" - -# cac1209c2b8a47f8b9ab0fc9e7833439 -#: ../../source/training/curriculum/curriculum.rst:90 -msgid "" -"**QGIS**: open source Geographical Information System (GIS) software that " -"allows users to spatially analyse their data. It is also the platform on " -"which |project_name| is built." -msgstr "" - -# 5bbcfccc9e0b4aff9c4a03e84ae08486 -#: ../../source/training/curriculum/curriculum.rst:94 -msgid "" -"In order to ensure uptake, effectiveness and sustainability of these tools " -"it is necessary to develop and test a comprehensive workshop package for " -"each individual tool as well as create a pool of trainers across Indonesia." -msgstr "" - -# 1f98dde6313240dfb49a7c132c567f19 -#: ../../source/training/curriculum/curriculum.rst:98 -msgid "" -"This curriculum outline describes competencies to be achieved, the lists of " -"content required to achieve the competencies in the workshop package and the " -"program structure of the workshop course. The workshop consists of beginner, " -"intermediate and training of trainer levels. The beginner workshop is mainly " -"aimed to introduce participants to the concept of realistic disaster " -"scenario development and help them become socialised to the concepts and " -"explore all three of the open source tools. In contingency planning, having " -"realistic disaster scenarios contributes significantly to the reliability of " -"the created planning results. As complexity and uncertainty are common in " -"developing realistic disaster scenarios, advanced knowledge and skills in " -"mapping and impact calculations using OSM, QGIS and |project_name| are " -"required. For this reason, the intermediate level of the workshop on OSM, " -"QGIS and |project_name| is required to further participants' knowledge and " -"skills to work with the tools in anticipating possible disaster events and " -"impacts." -msgstr "" - -# d06c08886cbf4e1db60fec98eee2e096 -#: ../../source/training/curriculum/curriculum.rst:115 -msgid "" -"The beginner and intermediate workshops are expected to be continued with an " -"advanced level course for training of trainers." -msgstr "" - -# f3801267b17f49e98944722eeae87f5c -#: ../../source/training/curriculum/curriculum.rst:118 -msgid "" -"To gain the required competencies, the workshop course is expected to apply " -"andragogical principles (a learning approach for adults) with an emphasis on " -"real tasks in the field and various methods in engaging active participation " -"from the participants." -msgstr "" - -# d3aa1bdb5f3d483b9a23343cef9bd8d1 -#: ../../source/training/curriculum/curriculum.rst:124 -msgid "LEVELS OF WORKSHOP" -msgstr "" - -# 9deb10a5d8914a318e176adc9c702d0e -#: ../../source/training/curriculum/curriculum.rst:126 -msgid "The workshop consists of three levels:" -msgstr "" - -# 1e1b006437944083882dd6ea555529ce -#: ../../source/training/curriculum/curriculum.rst:128 -msgid "Beginner Workshop" -msgstr "" - -# 0e07460f65254482b4201f6655053319 -# ae8261aabb6341d989fde3624925d016 -#: ../../source/training/curriculum/curriculum.rst:130 -#: ../../source/training/curriculum/curriculum.rst:223 -msgid "Collecting Data Using OSM (Beginner)" -msgstr "" - -# ca5100224be24603a20c91451a048aa6 -#: ../../source/training/curriculum/curriculum.rst:131 -msgid "Data Analysis Using QGIS and |project_name| (Beginner)" -msgstr "" - -# 52b0b2f031f540d9a52b434d04f50081 -#: ../../source/training/curriculum/curriculum.rst:133 -msgid "Intermediate Workshop" -msgstr "" - -# f16e485886f94b26a8aee8231c8b9998 -# 503840b0aa9b415fb79697372c52776d -#: ../../source/training/curriculum/curriculum.rst:135 -#: ../../source/training/curriculum/curriculum.rst:256 -msgid "Collecting Data Using OSM (Intermediate)" -msgstr "" - -# 64af843be9e0407990f5d76adb0c53eb -#: ../../source/training/curriculum/curriculum.rst:136 -msgid "Data Analysis Using QGIS and |project_name| (Intermediate)" -msgstr "" - -# bbb364bdf094471095f995eb21de8775 -#: ../../source/training/curriculum/curriculum.rst:138 -msgid "Training of Trainer (ToT) Workshop" -msgstr "" - -# 0709ae3ad7e54b14ae8e0d3c9ca7abc6 -#: ../../source/training/curriculum/curriculum.rst:141 -msgid "CURRICULUM" -msgstr "" - -# 5ae17b194b7741e68f4ae7088d8f8fa8 -#: ../../source/training/curriculum/curriculum.rst:144 -msgid "A. Aims" -msgstr "" - -# c4f9311cc5ba44589926f19dc13f827c -#: ../../source/training/curriculum/curriculum.rst:146 -msgid "" -"The scheme of the curriculum on Scenario Development for Contingency " -"Planning by using OSM and QGIS/|project_name| is designed to provide a " -"reference to workshop organisers at national, provincial and district levels." -msgstr "" - -# 391a89150ac342ab8e61b038eccb8923 -#: ../../source/training/curriculum/curriculum.rst:150 -msgid "" -"The course consists of three separate workshops which cover four training " -"modules and a training for trainers. The objective of the first workshop is " -"to provide a complete, albeit beginner understanding of all components of " -"the scenario development process. The second workshop is intended to " -"continue on to more advanced topics in OSM and QGIS/|project_name|." -msgstr "" - -# af231e8bb10f492bae6910bec28c6d2b -#: ../../source/training/curriculum/curriculum.rst:156 -msgid "" -"The main objective of the ToT workshop is to train people to be leaders and " -"trainers in Scenario Development program for Contingency Planning (SD4CP) in " -"their respective regions." -msgstr "" - -# caf1ba47c09948af89f86396c983a12c -#: ../../source/training/curriculum/curriculum.rst:160 -msgid "" -"After completing the three workshops, participants will have the skills in " -"OSM / QGIS / |project_name| which are needed as a facilitator, to help train " -"others in developing realistic disaster scenarios that can be used in " -"contingency plans. This will lead to better decision making during the " -"process of making contingency plans. It is also expected that those who " -"reach the training of trainer level can provide technical assistance in " -"their respective regions." -msgstr "" - -# 9fb25652c5c944ab9176ad1303946f38 -#: ../../source/training/curriculum/curriculum.rst:171 -msgid "B. Target Audience and Qualifications" -msgstr "" - -# fc2fec111dac4cb0afc426c46598c732 -#: ../../source/training/curriculum/curriculum.rst:173 -msgid "" -"The target participants of the workshop courses, both at beginner and " -"intermediate levels are:" -msgstr "" - -# 941f61d3837e4f36b73a88057f5210b6 -#: ../../source/training/curriculum/curriculum.rst:176 -msgid "" -"Persons responsible in developing contingency plans at BPBD at provincial " -"and district levels. Priority is given to those working in the prevention " -"working unit" -msgstr "" - -# 810b41af1c8140ff8c660e801afbb823 -#: ../../source/training/curriculum/curriculum.rst:179 -msgid "" -"Lecturers and students from relevant departments such as Geography, Geodesy, " -"Geomatics, Information Technology and other earth-related sciences" -msgstr "" - -# 7f622b32563d450f934af1e80b488a14 -#: ../../source/training/curriculum/curriculum.rst:181 -msgid "Representatives from NGOs working in disaster risk reduction" -msgstr "" - -# 23c35f07adc9405b96b8599b4588b40b -#: ../../source/training/curriculum/curriculum.rst:182 -msgid "Other relevant organisations such as Army, Police, Red Cross and Scouts" -msgstr "" - -# 492ded1b2d0a4959b0e183b010b82718 -#: ../../source/training/curriculum/curriculum.rst:183 -msgid "Other relevant agencies" -msgstr "" - -# c53cd875307f4a52897ecad83d3fef57 -#: ../../source/training/curriculum/curriculum.rst:185 -msgid "Qualifications for participants at beginner level:" -msgstr "" - -# 8e5fe1129a0648b3807842f63c389b6b -# 647c813617f44cce8780bf26bb5742e5 -#: ../../source/training/curriculum/curriculum.rst:187 -#: ../../source/training/curriculum/curriculum.rst:198 -msgid "" -"Able to operate a computer (word processing, presentations, internet, " -"spreadsheets)" -msgstr "" - -# 03b20acf24564bd6a8be7ae0c6554858 -# 4916415b88d2493684227da3e46b4c2a -#: ../../source/training/curriculum/curriculum.rst:189 -#: ../../source/training/curriculum/curriculum.rst:200 -msgid "Have a laptop with minimum RAM of 2 GB (recommended 4 GB)" -msgstr "" - -# ba32c48a5cd148fb99b7ef48dcb9dc40 -# 33cbfc5c5dc941d4a860fc806ebdb8ae -#: ../../source/training/curriculum/curriculum.rst:190 -#: ../../source/training/curriculum/curriculum.rst:202 -msgid "Having a GPS unit and understanding of how it works is an advantage" -msgstr "" - -# e5ff99ac58aa498eb2f4519b32a86781 -#: ../../source/training/curriculum/curriculum.rst:191 -msgid "Having basic skills in Geographic Information Systems is an advantage" -msgstr "" - -# 840658c3b83d40b2a38927762cac4331 -#: ../../source/training/curriculum/curriculum.rst:193 -msgid "Qualifications for participants at intermediate level:" -msgstr "" - -# 96a615b5aa434e93a00bb57bccc55557 -#: ../../source/training/curriculum/curriculum.rst:195 -msgid "" -"MUST have attended the workshop at beginner level OR equivalent knowledge OR " -"have a background in Geographic Information Systems and have read through " -"the beginner manuals" -msgstr "" - -# fffd4d7e4fe4499c8f843d70e69d3d74 -#: ../../source/training/curriculum/curriculum.rst:201 -msgid "Have an understanding of Geographic Information Systems" -msgstr "" - -# 587adab1337f4f28b03e7a5ea2053d63 -#: ../../source/training/curriculum/curriculum.rst:204 -msgid "Qualifications for participants at Training of Trainer (ToT) level:" -msgstr "" - -# c2fbb7c6b4e34332af3286a6dfde129a -#: ../../source/training/curriculum/curriculum.rst:206 -msgid "" -"MUST have attended the workshop at both beginner and intermediate levels." -msgstr "" - -# 1e64562817f94bf1a6cddd188157f586 -#: ../../source/training/curriculum/curriculum.rst:208 -msgid "" -"Demonstrate the potential to be a key advocate, trainer and technical " -"resource for Scenario Development Contingency Planning in their region" -msgstr "" - -# fe09d9ee4f764d20a2443fadbdc0f0c1 -#: ../../source/training/curriculum/curriculum.rst:210 -msgid "Satisfactory completion of prerequisite tasks (as assessed by HOT)" -msgstr "" - -# 8b682d3c566d405284eecb6529aa49aa -#: ../../source/training/curriculum/curriculum.rst:213 -msgid "C. Map of Competencies" -msgstr "" - -# 40f1117c06bf4e58a4419d601a697071 -#: ../../source/training/curriculum/curriculum.rst:215 -msgid "" -"Note that the competencies map (and curriculum scheme below) are organised " -"by topic, rather than by workshop level." -msgstr "" - -# 06b5cd124be34671bc4c2502971951bb -#: ../../source/training/curriculum/curriculum.rst:218 -msgid "**1. Beginner Workshop**" -msgstr "" - -# b9ee1f2334634a95b0ccbe87ed1e49ab -# dfbd09552f824f449a72431b96624709 -#: ../../source/training/curriculum/curriculum.rst:221 -#: ../../source/training/curriculum/curriculum.rst:254 -#: ../../source/training/curriculum/curriculum.rst:277 -msgid "No." -msgstr "" - -# 33f512fb96af40049f820c045c0cfef4 -# 4c56cf448ef743f8b9c15f1670e903d8 -#: ../../source/training/curriculum/curriculum.rst:221 -#: ../../source/training/curriculum/curriculum.rst:254 -#: ../../source/training/curriculum/curriculum.rst:277 -msgid "Level" -msgstr "" - -# abcceb66c40b44c5bdfc830142a9e6ed -# 52fd606a9e8d407bb2c51ac335e0e3a6 -# c10a2a811cae4499b3c5c3fc866c1b52 -#: ../../source/training/curriculum/curriculum.rst:221 -#: ../../source/training/curriculum/curriculum.rst:254 -#: ../../source/training/curriculum/curriculum.rst:277 -msgid "Standard and Basic Competencies" -msgstr "" - -# e3d5edb02cb947109246cad34efd9c3e -#: ../../source/training/curriculum/curriculum.rst:223 -msgid "**Collecting Spatial Data with OSM**" -msgstr "" - -# a4414a68c97e4ef2a6222a697d8546aa -# 0a7b0e5d6f4d4f1b8580c953b7707bdf -# 9f793c407e514772850ebe5867e5e556 -#: ../../source/training/curriculum/curriculum.rst:225 -#: ../../source/training/curriculum/curriculum.rst:335 -#: ../../source/training/curriculum/curriculum.rst:903 -msgid "Draw paper maps to gain a basic understanding of OpenStreetMap" -msgstr "" - -# ba8e089f8e814c7d8ca4784d1137516a -# 56f73696228849cdb82c2ee55294cd17 -# 63c37dc2570b488ab961a981de857176 -#: ../../source/training/curriculum/curriculum.rst:226 -#: ../../source/training/curriculum/curriculum.rst:342 -#: ../../source/training/curriculum/curriculum.rst:912 -msgid "Navigate OpenStreetMap website" -msgstr "" - -# 67ec3ed9a8964728b2c0871292e5032f -# 00c6fcdadac449b9b9773c9fcbd8d21a -# 09b372f9e6604fc291f79dc50fe35caf -#: ../../source/training/curriculum/curriculum.rst:227 -#: ../../source/training/curriculum/curriculum.rst:350 -#: ../../source/training/curriculum/curriculum.rst:922 -msgid "Operate JOSM" -msgstr "" - -# c49534737c6d43b78d23d111eb37d69b -# ea9d43dea5d84dde86bc5215c9aabf06 -# b8c82035ee3047858a8e73795216ce57 -#: ../../source/training/curriculum/curriculum.rst:228 -#: ../../source/training/curriculum/curriculum.rst:368 -#: ../../source/training/curriculum/curriculum.rst:942 -msgid "Use GPS to add data to OSM" -msgstr "" - -# 8093f91064544d14a76849ba750115e4 -# 1fbf2a426c4d41ca8d3013606979f1bd -# bc9b6b54c666495e93fdd86a59e1d86a -#: ../../source/training/curriculum/curriculum.rst:229 -#: ../../source/training/curriculum/curriculum.rst:389 -#: ../../source/training/curriculum/curriculum.rst:965 -msgid "Use Field Papers to add data to OSM" -msgstr "" - -# 45c1555ecfd64dbcbd6de9c4d5615002 -# bd8dfcdebc9c41a89be5cc86d20eebc0 -# e544ad74378e4826bf45790dd14bcea5 -#: ../../source/training/curriculum/curriculum.rst:230 -#: ../../source/training/curriculum/curriculum.rst:398 -#: ../../source/training/curriculum/curriculum.rst:977 -msgid "Edit a map and add information to OSM using JOSM" -msgstr "" - -# 12e5bbf878b24283a8c24395cd8d6b02 -#: ../../source/training/curriculum/curriculum.rst:231 -#: ../../source/training/curriculum/curriculum.rst:407 -#: ../../source/training/curriculum/curriculum.rst:992 -msgid "Correct imagery offset" -msgstr "" - -# a948bcb631a44aeaacd4856bfd940cc9 -# e0cd95a2ae874a3ca7cf6188291a98ce -# 4cbd688beba240068335ca6b782fcdfc -#: ../../source/training/curriculum/curriculum.rst:232 -#: ../../source/training/curriculum/curriculum.rst:414 -#: ../../source/training/curriculum/curriculum.rst:1001 -msgid "" -"Get OSM data in a specific format to be analysed further in Geographic " -"Information System (GIS) software" -msgstr "" - -# 59c7214b8bc24727917d3e2c435a518b -#: ../../source/training/curriculum/curriculum.rst:234 -msgid "Data Analysis using QGIS and |project_name| (Beginner)" -msgstr "" - -# 8ed0fb40b801472fbe7c1ba1b53315c5 -#: ../../source/training/curriculum/curriculum.rst:234 -msgid "" -"**Managing Spatial Data using QGIS and Analysing Disaster Impact Scenarios " -"with** |project_name|" -msgstr "" - -# 8ce3b21e4d5f4e21890655c97cc65af2 -# aa046505d96648508d73f64fecd93125 -# e8570e3183694dab93f583014aa9f5ae -#: ../../source/training/curriculum/curriculum.rst:236 -#: ../../source/training/curriculum/curriculum.rst:430 -#: ../../source/training/curriculum/curriculum.rst:1020 -msgid "Use GIS to develop scenarios for contingency planning" -msgstr "" - -# e754f8acbf2f43509be5e5526458f016 -#: ../../source/training/curriculum/curriculum.rst:237 -msgid "" -"Understand the benefit of QGIS and |project_name| for developing realistic " -"scenarios for contingency planning" -msgstr "" - -# 20f1b8bc51d340f6a5072b0804f86516 -# 8de6e0c8d7ca4f51b348401bd2af5b5c -# 0a75b6e4fa7b4c7f826f059d465f3773 -#: ../../source/training/curriculum/curriculum.rst:238 -#: ../../source/training/curriculum/curriculum.rst:442 -#: ../../source/training/curriculum/curriculum.rst:1036 -msgid "Install QGIS and understand QGIS user interface" -msgstr "" - -# e010db310b0a4170834293c1085295d4 -# 5c852685509e4a9a85fb15d409f7eba8 -# e9b1aaa6c3c1427491587ee494ad25ba -#: ../../source/training/curriculum/curriculum.rst:239 -#: ../../source/training/curriculum/curriculum.rst:452 -#: ../../source/training/curriculum/curriculum.rst:1048 -msgid "Use QGIS plugins" -msgstr "" - -# 19fc82e33696470b8146cc8776350657 -# 70496e0b7fd14166a3a62bece5900e34 -# 4dfb16b6ed2e4b089b564bc9d6a9f1f3 -#: ../../source/training/curriculum/curriculum.rst:240 -#: ../../source/training/curriculum/curriculum.rst:459 -#: ../../source/training/curriculum/curriculum.rst:1057 -msgid "Understand projection systems and transformation in QGIS" -msgstr "" - -# 583888f49a364f3f8c9d29c4e70ac171 -# 87f396e9217e4b9fad12795f397c147c -# 10186d342f824004b1a23b8c81885d61 -#: ../../source/training/curriculum/curriculum.rst:241 -#: ../../source/training/curriculum/curriculum.rst:466 -#: ../../source/training/curriculum/curriculum.rst:1068 -msgid "Use and understand vector data" -msgstr "" - -# 453e9be71f984c24abebd5916e2fac13 -# b41203a753254e068f7205339f47f1f8 -# a5462ee01f354b54a258df9e2e74431e -#: ../../source/training/curriculum/curriculum.rst:242 -#: ../../source/training/curriculum/curriculum.rst:473 -#: ../../source/training/curriculum/curriculum.rst:1077 -msgid "Categorise and create labels from vector data" -msgstr "" - -# 45ec38c8c0ee4a00b987f3c84f9d406a -# 6e5f0bbbca7042169ad3559a432dfb5c -# bc00c456de244adf9cf2808a1050ba8b -#: ../../source/training/curriculum/curriculum.rst:243 -#: ../../source/training/curriculum/curriculum.rst:480 -#: ../../source/training/curriculum/curriculum.rst:1086 -msgid "Use and understand raster data" -msgstr "" - -# 58a09b2213ac4e66926e1ca75c094547 -# d8566a42eab4422fb070122d05a706c8 -# 7774c551cf554183b98152f3d114f44f -#: ../../source/training/curriculum/curriculum.rst:244 -#: ../../source/training/curriculum/curriculum.rst:487 -#: ../../source/training/curriculum/curriculum.rst:1095 -msgid "Create and edit new vector layers" -msgstr "" - -# e3d66c4e990f4d21bd2fe9688ca96502 -# aaf27fc6b0334c84995a0e7f5c3c93ca -# 57be375d775644b988f2c12e74c99d8a -#: ../../source/training/curriculum/curriculum.rst:245 -#: ../../source/training/curriculum/curriculum.rst:494 -#: ../../source/training/curriculum/curriculum.rst:1104 -msgid "Analyse vector data to solve problems" -msgstr "" - -# 829e2ebec5e849909301ae8996b00355 -# d17966f25eec4ce3b2b88e0878c649d6 -# 243a126f7a6b4eba93ebbb716a1a0e05 -#: ../../source/training/curriculum/curriculum.rst:246 -#: ../../source/training/curriculum/curriculum.rst:510 -#: ../../source/training/curriculum/curriculum.rst:1122 -msgid "Create maps with the Map Composer" -msgstr "" - -# f6674008504048a582e5dd547e32947f -# 6b4acba20a234deea78765c36fd316aa -#: ../../source/training/curriculum/curriculum.rst:247 -#: ../../source/training/curriculum/curriculum.rst:521 -msgid "Use |project_name|" -msgstr "" - -# a5be4fa3066a4663851f4b9a506edd22 -# f84fe67bbeb949a585d0dc8c36aeceb6 -# 515856ca16a0443fabcd4666843742a7 -#: ../../source/training/curriculum/curriculum.rst:248 -#: ../../source/training/curriculum/curriculum.rst:533 -#: ../../source/training/curriculum/curriculum.rst:1149 -msgid "Understand how to get support for QGIS and |project_name| in Indonesia" -msgstr "" - -# d38dc07882b04675b18f58f760d0950b -#: ../../source/training/curriculum/curriculum.rst:251 -msgid "**2. Intermediate Workshop**" -msgstr "" - -# 6be4699a88c14b66b6e0ff2608f3276d -#: ../../source/training/curriculum/curriculum.rst:256 -msgid "**Quality Assurance in OSM mapping**" -msgstr "" - -# ce44e3a2a137402ab557670605c85a34 -#: ../../source/training/curriculum/curriculum.rst:258 -msgid "" -"Apply better digitising techniques for improving quality of collected data" -msgstr "" - -# df04feb0480844fca7ca963f621b2b19 -# eb3a531112854a859309ca7fd60dd650 -# e3a51251a4d44eb0a5711735a7c53ed1 -#: ../../source/training/curriculum/curriculum.rst:259 -#: ../../source/training/curriculum/curriculum.rst:559 -#: ../../source/training/curriculum/curriculum.rst:1179 -msgid "Use JOSM validation tools to ensure the quality of map contributions" -msgstr "" - -# 9e9219e60f854d058aab3d65ce05050e -# e9b131f2c11141bd88947d494d0e1449 -# e4c04b1c562744799f8290c6150348ab -#: ../../source/training/curriculum/curriculum.rst:260 -#: ../../source/training/curriculum/curriculum.rst:569 -#: ../../source/training/curriculum/curriculum.rst:1191 -msgid "Resolve conflicts when uploading OSM data" -msgstr "" - -# a65985e62fa64832a1df47aa6b847553 -# e5a879f9fae34446b408ed23d0b77bfd -# e22dec55a8a94d278873f36a6415b075 -#: ../../source/training/curriculum/curriculum.rst:261 -#: ../../source/training/curriculum/curriculum.rst:575 -#: ../../source/training/curriculum/curriculum.rst:1200 -msgid "Create presets files in JOSM" -msgstr "" - -# 8da63a976bb843db9c48c36b13068dfc -# 60f4c98e7f104d02a44b686bde7ae216 -# 071990ca48934e908de8536558a3531a -#: ../../source/training/curriculum/curriculum.rst:262 -#: ../../source/training/curriculum/curriculum.rst:584 -#: ../../source/training/curriculum/curriculum.rst:1211 -msgid "Use private data store feature to keep private data" -msgstr "" - -# e698d50a666d46ea9d1155eeda7babe5 -#: ../../source/training/curriculum/curriculum.rst:263 -msgid "Create and edit pages in OSM Wiki" -msgstr "" - -# ffdebfb032a84cf3af9acf80798ebf6c -#: ../../source/training/curriculum/curriculum.rst:265 -msgid "Data Analysis using QGIS and |project_name| (Intermediate)" -msgstr "" - -# a9ab74cdea3a4984bf0bdc7bd97d8306 -#: ../../source/training/curriculum/curriculum.rst:265 -msgid "" -"**Spatial Data Analysis using QGIS and** |project_name| **for Contingency " -"Planning**" -msgstr "" - -# 0004a2ab8fcd40dcaa7065d1ef1ce9f4 -#: ../../source/training/curriculum/curriculum.rst:267 -#: ../../source/training/curriculum/curriculum.rst:613 -#: ../../source/training/curriculum/curriculum.rst:1249 -msgid "Understand QGIS concepts" -msgstr "" - -# 23580964352d4f66aa3f30ed321f8585 -# 27886bf7999848e1827ac4e39376de04 -# 793077f3ced24a92a00468d2e263fb66 -#: ../../source/training/curriculum/curriculum.rst:268 -#: ../../source/training/curriculum/curriculum.rst:619 -#: ../../source/training/curriculum/curriculum.rst:1257 -msgid "Prepare data and keywords for |project_name|" -msgstr "" - -# 3267ee6b46ac4420af2739a1e2964579 -# 78ca5399d5874320aaefd697ab6407ba -# 880b518484f549a882e229bad248b2c2 -#: ../../source/training/curriculum/curriculum.rst:269 -#: ../../source/training/curriculum/curriculum.rst:628 -#: ../../source/training/curriculum/curriculum.rst:1269 -msgid "Determine temporary IDP camp or evacuation locations" -msgstr "" - -# 78ace5d39192423ba1f696e0bb4bb607 -# ae35af561d3441f1ad4b0b8a8f5dccf0 -# f70f0a44f5b440698e43d750d0a073f1 -#: ../../source/training/curriculum/curriculum.rst:270 -#: ../../source/training/curriculum/curriculum.rst:640 -#: ../../source/training/curriculum/curriculum.rst:1283 -msgid "Plan evacuation routes based on hazard information" -msgstr "" - -# 05d566da8eb84459bd5589aa0169a467 -#: ../../source/training/curriculum/curriculum.rst:271 -#: ../../source/training/curriculum/curriculum.rst:647 -#: ../../source/training/curriculum/curriculum.rst:1292 -msgid "Calculate damage and losses" -msgstr "" - -# 4bdd65dae745404cad5ed12e474bd1de -#: ../../source/training/curriculum/curriculum.rst:274 -msgid "**3. Training of Trainers**" -msgstr "" - -# 1bf896b3f28b447d8234eb6ddcef34f2 -#: ../../source/training/curriculum/curriculum.rst:279 -msgid "Advanced" -msgstr "" - -# 1e72f82b56b04afdb799d16f6f3f6d8c -#: ../../source/training/curriculum/curriculum.rst:279 -msgid "" -"**Teaching data collection and analysis with OSM, QGIS and** |project_name| " -"**in their respective region**" -msgstr "" - -# 227d78d8c6d347bb8e16d64f164a63f8 -# 8b5bc0ec99bf47ad947aff7d7c1c920d -# 9ef578a5644240ccbabcf957b1ffe26a -#: ../../source/training/curriculum/curriculum.rst:281 -#: ../../source/training/curriculum/curriculum.rst:675 -#: ../../source/training/curriculum/curriculum.rst:1321 -msgid "Master how to implement adult learning" -msgstr "" - -# 3b8d3eaae64d499c9a7c71acdd007ae7 -# a8a4b0b02a26451aa654658ca85467b9 -# d1597108688e48c6ad93055772c0d4b4 -#: ../../source/training/curriculum/curriculum.rst:282 -#: ../../source/training/curriculum/curriculum.rst:684 -#: ../../source/training/curriculum/curriculum.rst:1332 -msgid "Demonstrate basic teaching skills" -msgstr "" - -# 1fb5f510125746268eefdba79a9b7ce4 -#: ../../source/training/curriculum/curriculum.rst:283 -msgid "" -"Practise data collection and analysis through OSM, QGIS and |project_name|" -msgstr "" - -# 4714c47262da42a282717dc7ec6654ad -#: ../../source/training/curriculum/curriculum.rst:288 -msgid "D. Curriculum Development Process" -msgstr "" - -# 59960ee466df4332b4fdad4a7cfa9a38 -#: ../../source/training/curriculum/curriculum.rst:290 -msgid "" -"The curriculum development process is ongoing, and involves the following " -"core components:" -msgstr "" - -# 4c5210e180a34907b104eaf7584d0d20 -#: ../../source/training/curriculum/curriculum.rst:293 -msgid "" -"Identify the exact competencies that have to be learned to collect spatial " -"data using OSM and analyse it using QGIS/|project_name|. Competencies are " -"described as standard and basic." -msgstr "" - -# 978a5df0f36143fc88ad2ef2f9da6490 -#: ../../source/training/curriculum/curriculum.rst:297 -msgid "" -"A standard competency, or workshop material competency, is the minimum " -"requirement of participants which encapsulates their knowledge, attitude, " -"and skill that need to be achieved." -msgstr "" - -# ea3394b211a54abd8df7cda3dcd8dea6 -#: ../../source/training/curriculum/curriculum.rst:301 -msgid "" -"A basic competency is an individual skill that needs to be mastered by the " -"participant in the workshop material as a reference for indicators." -msgstr "" - -# 2310b815a28f4fa6bd0acf092c5d445f -#: ../../source/training/curriculum/curriculum.rst:304 -msgid "Indicators are:" -msgstr "" - -# 3c4020937622466789cbb9632779b08d -#: ../../source/training/curriculum/curriculum.rst:306 -msgid "" -"Behavioral characteristics (measurable evidence) that indicate that workshop " -"participants have achieved basic competency" -msgstr "" - -# e535a11db1524b7aaa8d476ab8d0e367 -#: ../../source/training/curriculum/curriculum.rst:308 -msgid "" -"Basic competency achievement marks derived from measurable behavior such as " -"attitude, knowledge and skills" -msgstr "" - -# 89e051f2f38240efb8a8e69191bfe6b0 -#: ../../source/training/curriculum/curriculum.rst:310 -msgid "" -"Developed in accordance with the characteristics of the workshop " -"participant, conditions and workshop organiser" -msgstr "" - -# 6b7ee46cc2b3476ba049e7a49fb9a781 -#: ../../source/training/curriculum/curriculum.rst:312 -msgid "Measurable and/or observable" -msgstr "" - -# ff206cfefefb44b2a983293b98348b39 -#: ../../source/training/curriculum/curriculum.rst:313 -msgid "Used as a basis to develop an assessment tool" -msgstr "" - -# 905def27feaf4e71b6c8b3311fcd37f2 -#: ../../source/training/curriculum/curriculum.rst:315 -msgid "Compile all teaching and workshop materials to be used in the workshop." -msgstr "" - -# 4c600538166f40fb8f95619ecd69948e -#: ../../source/training/curriculum/curriculum.rst:316 -msgid "Solicit input from participants who have attended previous workshops." -msgstr "" - -# 3ec483d7add446efbca5aa491a00a3e9 -#: ../../source/training/curriculum/curriculum.rst:317 -msgid "Discuss with workshop trainers to make sure:" -msgstr "" - -# e5689755c01e4ee48e8363b45ac4b90f -#: ../../source/training/curriculum/curriculum.rst:319 -msgid "All necessary materials are included." -msgstr "" - -# a28cb7c790f141dfa6b390e1e4c9f72b -#: ../../source/training/curriculum/curriculum.rst:320 -msgid "" -"Depth of the material is in accordance with the competencies to be mastered." -msgstr "" - -# 7fae5eb84765411f86c535bcde82b713 -#: ../../source/training/curriculum/curriculum.rst:321 -msgid "Materials are organised systematically." -msgstr "" - -# 6d718d4b743246288da5b3b5feba41bd -#: ../../source/training/curriculum/curriculum.rst:325 -msgid "E. Curriculum Scheme" -msgstr "" - -# e1a71c8f85414038b425c75ce28ccc8a -#: ../../source/training/curriculum/curriculum.rst:327 -#: ../../source/training/curriculum/curriculum.rst:893 -msgid "**Data Collection Using OSM Beginner Level**" -msgstr "" - -# 4f308ed65312423aa9f7dd99f2d58eee -# 1ed6ee00aea6466a8af6b5541b7631e3 -#: ../../source/training/curriculum/curriculum.rst:329 -#: ../../source/training/curriculum/curriculum.rst:895 -msgid "**Standard Competency:** Collecting Spatial Data with OSM" -msgstr "" - -# 4d6a2134ba7a4d47ba189fd893096eaa -# 5a0d5122b29747cba3c5f92c6abbe6bb -# 0f2a7e4a775e442f82ea434aa5aed251 -# 155d4ce7299b40d69e06e0427335d519 -# 8c7f53cbac374088b987f39eaa7fefb2 -# 40db65ee83894f8a82d85cdfcbf22bc5 -# 40039cddf06f4f408a374cede37ecf86 -# c703f7d48f424c3b964ab5feb7b4d2a2 -# 81481f6fa1cc4fa5bb2c4754341c0905 -# 82585cb7d9e7402b959d8bf03e7df237 -#: ../../source/training/curriculum/curriculum.rst:333 -#: ../../source/training/curriculum/curriculum.rst:428 -#: ../../source/training/curriculum/curriculum.rst:545 -#: ../../source/training/curriculum/curriculum.rst:611 -#: ../../source/training/curriculum/curriculum.rst:673 -#: ../../source/training/curriculum/curriculum.rst:899 -#: ../../source/training/curriculum/curriculum.rst:1016 -#: ../../source/training/curriculum/curriculum.rst:1161 -#: ../../source/training/curriculum/curriculum.rst:1245 -#: ../../source/training/curriculum/curriculum.rst:1317 -msgid "Basic competency" -msgstr "" - -# fcac8992a1f241fe83cafc9de09957fa -# 58476340efc446a4bf2af478b6731cb7 -# 1f7531e8e33743a2ba8591ca035c5c99 -# 378d628167e24ffd802743c8706d325d -# 2eebea2e5b6e41e4a7ed0a04948fd71e -# d9e577cf5c264a80b6d2b322f6588a28 -# d79285d5e3b4417e971fb2eb0283280a -# 0a99050d76d8459181e229080c9632ec -# 41144a5a214c455594818489ec4c8197 -# 45ca96593e2f48958bba295a4711f5c7 -#: ../../source/training/curriculum/curriculum.rst:333 -#: ../../source/training/curriculum/curriculum.rst:428 -#: ../../source/training/curriculum/curriculum.rst:545 -#: ../../source/training/curriculum/curriculum.rst:611 -#: ../../source/training/curriculum/curriculum.rst:673 -#: ../../source/training/curriculum/curriculum.rst:899 -#: ../../source/training/curriculum/curriculum.rst:1016 -#: ../../source/training/curriculum/curriculum.rst:1161 -#: ../../source/training/curriculum/curriculum.rst:1245 -#: ../../source/training/curriculum/curriculum.rst:1317 -msgid "Indicator" -msgstr "" - -# 3145734418b745b0aa686214510438b7 -# 7801ac80e9ab40e68a0ed4ad78c53fbc -# 599b3ac86f0242e18ffdb9c039e87047 -# 97db8358e2694d7cbd148fd1b15e5abf -# 356a04f21f844009ac6032be4b051213 -# 72eb5a3ae34b4a1b989da5f0576bbf44 -# b2e1a8d0054042a58325d1864ae5947b -# 5ce9e84c75c14c8b845a9ea8660a4be1 -# 7b68272c251e48b9ae8174137795315f -# bfdb56b5faeb40c4809a220f421beb59 -#: ../../source/training/curriculum/curriculum.rst:333 -#: ../../source/training/curriculum/curriculum.rst:428 -#: ../../source/training/curriculum/curriculum.rst:545 -#: ../../source/training/curriculum/curriculum.rst:611 -#: ../../source/training/curriculum/curriculum.rst:673 -#: ../../source/training/curriculum/curriculum.rst:899 -#: ../../source/training/curriculum/curriculum.rst:1016 -#: ../../source/training/curriculum/curriculum.rst:1161 -#: ../../source/training/curriculum/curriculum.rst:1245 -#: ../../source/training/curriculum/curriculum.rst:1317 -msgid "Core material" -msgstr "" - -# 91ddd2a2b7c44b3ea8315d6187eaf617 -# a6914f6e80d64d59b334b2804d3c5cac -#: ../../source/training/curriculum/curriculum.rst:336 -#: ../../source/training/curriculum/curriculum.rst:904 -msgid "Understand the concept of OpenStreetMap" -msgstr "" - -# 7b4f739d82cc45beb99156316419775f -# 087692018eab4b65a423f14e7a2e8207 -#: ../../source/training/curriculum/curriculum.rst:337 -#: ../../source/training/curriculum/curriculum.rst:905 -msgid "Understand the definition and objectives of data collection" -msgstr "" - -# ee1c87d48df6487284eed4dd8c4c7c00 -# 01cfa43e8b814f0ebaeeafa9c9d74c7c -#: ../../source/training/curriculum/curriculum.rst:338 -#: ../../source/training/curriculum/curriculum.rst:906 -msgid "Understand the composition of a map" -msgstr "" - -# 50a1ad8545474b6189d4bdf6d093f8fa -# 1eeb1ee760984932a14025481ac199c0 -#: ../../source/training/curriculum/curriculum.rst:339 -#: ../../source/training/curriculum/curriculum.rst:907 -msgid "Make a hand-drawn sketch of an area" -msgstr "" - -# a107ee26bfa14522973e53be4c357a6c -# f813de7b4abb4b1ab253da754eb01214 -#: ../../source/training/curriculum/curriculum.rst:335 -#: ../../source/training/curriculum/curriculum.rst:903 -msgid "**The OpenStreetMap Website**" -msgstr "" - -# f750095634104b718c8c27e1be5bc66c -# 047cb467840e404eba5c8e3894b0ebeb -#: ../../source/training/curriculum/curriculum.rst:337 -#: ../../source/training/curriculum/curriculum.rst:905 -msgid "Concept of OpenStreetMap" -msgstr "" - -# d42c457fb8e34d1e8ce8d966c29d7c67 -# 0ed0c986aa1a49bb90accad732aa76da -#: ../../source/training/curriculum/curriculum.rst:338 -#: ../../source/training/curriculum/curriculum.rst:906 -msgid "Definition and objectives of data collection" -msgstr "" - -# 021cb7a32e634e69bfa4ee833a3061c2 -# 45403a7d4b784a43b9e2c79522f34add -#: ../../source/training/curriculum/curriculum.rst:339 -#: ../../source/training/curriculum/curriculum.rst:907 -msgid "Components of a map" -msgstr "" - -# 22815c0892df44f0a943939dc096ef75 -# 1f5c174781d3438ea9e42d5427b6e168 -#: ../../source/training/curriculum/curriculum.rst:340 -#: ../../source/training/curriculum/curriculum.rst:908 -msgid "Hand-drawn sketch of an area" -msgstr "" - -# 4583e0a23c204faa9cc994bdcbac946e -# 2197a7b7a52f4b589e20a1dde217ba01 -#: ../../source/training/curriculum/curriculum.rst:343 -#: ../../source/training/curriculum/curriculum.rst:913 -msgid "Visit OSM website" -msgstr "" - -# 71110957675b49c5bf080a5dbfea8584 -#: ../../source/training/curriculum/curriculum.rst:344 -msgid "Navigate map on OSM website" -msgstr "" - -# 62225ead60d74a92a227c94320850276 -# 07c71933eb1f4b438c019f1a44c4e2e7 -#: ../../source/training/curriculum/curriculum.rst:345 -#: ../../source/training/curriculum/curriculum.rst:915 -msgid "Save an image from OSM" -msgstr "" - -# d012ca09957842af8af7d27877f8a4c3 -# f62293fb2985477a88779c24cba8ed6b -#: ../../source/training/curriculum/curriculum.rst:346 -#: ../../source/training/curriculum/curriculum.rst:916 -msgid "Register an OSM account" -msgstr "" - -# ed5d22e98bda46798ed54dca82e5dc72 -# 60bbf3849f2b4f4db9427d38bc17f30e -#: ../../source/training/curriculum/curriculum.rst:347 -#: ../../source/training/curriculum/curriculum.rst:917 -msgid "Edit the OSM map" -msgstr "" - -# 9c55affb43c04f29915331dfccf327bb -# 6dd12a38a73a4eb4aa60c2590241fc6d -#: ../../source/training/curriculum/curriculum.rst:348 -#: ../../source/training/curriculum/curriculum.rst:918 -msgid "Save edits" -msgstr "" - -# 50632ea9183c411f93bd3ef1691f4f1b -# 022c2021192f4c21bc8a9cd011017621 -#: ../../source/training/curriculum/curriculum.rst:342 -#: ../../source/training/curriculum/curriculum.rst:912 -msgid "**Working with OSM**" -msgstr "" - -# a3051aa0a5504e0ca77bf54c67120634 -# 23691189c1d540d78d47d6de6e08bc10 -#: ../../source/training/curriculum/curriculum.rst:344 -#: ../../source/training/curriculum/curriculum.rst:914 -msgid "OSM website" -msgstr "" - -# 4687d50e0a344f778c795ce14d7ffa38 -# 2323aa85d7a44ca6b31b9b8e4b94ce9f -#: ../../source/training/curriculum/curriculum.rst:345 -#: ../../source/training/curriculum/curriculum.rst:915 -msgid "Navigating the OSM map" -msgstr "" - -# b960bf6cf38e41618fa2ba0d25971ee1 -# 307b0923ec234333a9073dac01099d99 -#: ../../source/training/curriculum/curriculum.rst:346 -#: ../../source/training/curriculum/curriculum.rst:916 -msgid "Saving images from OSM" -msgstr "" - -# ff4682897db3409489061172b32e0557 -# d92eb84cf5f2485ea8a754bf1608cbf7 -#: ../../source/training/curriculum/curriculum.rst:347 -#: ../../source/training/curriculum/curriculum.rst:917 -msgid "Creating an OSM account" -msgstr "" - -# b14b7b6197434053bbc2309db2f56f33 -# 98d7594dc7e74fcfa983db71ea63195d -#: ../../source/training/curriculum/curriculum.rst:348 -#: ../../source/training/curriculum/curriculum.rst:918 -msgid "Editing the OSM map" -msgstr "" - -# 61b7e1ff01344cf58899ecc542a63be2 -# 2018c7d0f5304b4cb2ada285ec58bfa1 -# 13fcf9947bc346b781403f72840f2251 -# 32472045eddb4c218c142e9f6b9640a6 -#: ../../source/training/curriculum/curriculum.rst:351 -#: ../../source/training/curriculum/curriculum.rst:923 -msgid "Download JOSM" -msgstr "" - -# adeb2acee96648f0a3cd2b7f4b47dd2a -# f8cd13bee0c34c11a5aab486a016888e -#: ../../source/training/curriculum/curriculum.rst:352 -#: ../../source/training/curriculum/curriculum.rst:924 -msgid "Install JOSM" -msgstr "" - -# dba5c23d5c9442bea82b627aa9a0198d -# 87274585ee51431b8601a5cee1c3f64b -#: ../../source/training/curriculum/curriculum.rst:353 -#: ../../source/training/curriculum/curriculum.rst:925 -msgid "Set JOSM preferences" -msgstr "" - -# f2f68642e5154c659c923ba264721812 -# 1cbe1b29f5f94e39899c0998b73398fc -#: ../../source/training/curriculum/curriculum.rst:354 -#: ../../source/training/curriculum/curriculum.rst:926 -msgid "Use basic tools" -msgstr "" - -# 630d51345f51475ab77479c67651076e -# 820e05f656dd406b925d30bf3f06227f -#: ../../source/training/curriculum/curriculum.rst:355 -#: ../../source/training/curriculum/curriculum.rst:927 -msgid "Draw nodes and ways in JOSM" -msgstr "" - -# f6b6235ac8f348c59587e31f1cacc589 -# 03dd00f3138a47129e7e79833fd0ab5d -# cbfbb7be6a6d4dfeba60975e39adcaac -#: ../../source/training/curriculum/curriculum.rst:356 -#: ../../source/training/curriculum/curriculum.rst:928 -msgid "Change objects" -msgstr "" - -# a57e912b4fe244afb2d211bf361bcb3c -# e37302b16ef34e16b0a70804657e381f -#: ../../source/training/curriculum/curriculum.rst:357 -#: ../../source/training/curriculum/curriculum.rst:929 -msgid "Add tags to objects using presets menu" -msgstr "" - -# 32f535ece9a04de38ef1f56d756c546c -# 6ae1b75035ec41a58c86cebdffdfe76b -#: ../../source/training/curriculum/curriculum.rst:350 -#: ../../source/training/curriculum/curriculum.rst:922 -msgid "**Working with JOSM**" -msgstr "" - -# d00f98a4c5cb49d682dec67a5a0e8764 -# 96e4d73473a74238b3deff34510b64af -#: ../../source/training/curriculum/curriculum.rst:352 -#: ../../source/training/curriculum/curriculum.rst:924 -msgid "Downloading JOSM" -msgstr "" - -# 22a9ac12271842b4b3ad384b03e36d54 -# 75a7287b94d44377b43b8367231d4aa5 -#: ../../source/training/curriculum/curriculum.rst:353 -#: ../../source/training/curriculum/curriculum.rst:925 -msgid "Installing JOSM" -msgstr "" - -# 5d86abb8c9d4433489e8e2342160480b -# 8c04cb36ae694f78b92e0a1bb9f7ae8f -#: ../../source/training/curriculum/curriculum.rst:354 -#: ../../source/training/curriculum/curriculum.rst:926 -msgid "Setting preferences in JOSM" -msgstr "" - -# e3f53a4bbec44ab1b00a7dbd204fbc8f -# 4bc9eff2bac74ff893f913d5affcb199 -#: ../../source/training/curriculum/curriculum.rst:356 -#: ../../source/training/curriculum/curriculum.rst:928 -msgid "Bing imagery" -msgstr "" - -# 8ed5b5ab12d948b6ac6adc8a51a6bd5d -# 6936e8a6e75245bfa55ea0123ff9eda8 -#: ../../source/training/curriculum/curriculum.rst:357 -#: ../../source/training/curriculum/curriculum.rst:929 -msgid "Presets" -msgstr "" - -# 0da4853ec19645c4bf2bc64dd9c67979 -# 7f90dafc48294bf3a746adb3fe58991f -# abcb42ea402542d28d71208112919896 -# 05ea8015c88b47808385c7eedea51d20 -#: ../../source/training/curriculum/curriculum.rst:358 -#: ../../source/training/curriculum/curriculum.rst:552 -#: ../../source/training/curriculum/curriculum.rst:930 -#: ../../source/training/curriculum/curriculum.rst:1170 -msgid "Plugins" -msgstr "" - -# 84c6645c5aec42198588e2b9d7b88b7f -# f9dea62439df4a569ea13db5d489f6f3 -#: ../../source/training/curriculum/curriculum.rst:359 -#: ../../source/training/curriculum/curriculum.rst:931 -msgid "Language settings" -msgstr "" - -# 6e0a3bd8108945c4b5f93ea891a64727 -# d585a19f39ff4cb187d1e000f2f2650f -#: ../../source/training/curriculum/curriculum.rst:361 -#: ../../source/training/curriculum/curriculum.rst:933 -msgid "Drawing maps using JOSM" -msgstr "" - -# 26654d9b58304988932742c805c5cadb -# 2dab82d75eac4653b0fb8801bd9ca8cd -#: ../../source/training/curriculum/curriculum.rst:363 -#: ../../source/training/curriculum/curriculum.rst:935 -msgid "Basic operation" -msgstr "" - -# 0f40a52316874caa94e32e2594cfe116 -# f33e14012bb74a20a38bd7736adf13a6 -#: ../../source/training/curriculum/curriculum.rst:364 -#: ../../source/training/curriculum/curriculum.rst:936 -msgid "Nodes, ways, and shapes" -msgstr "" - -# 9b5a4350b7f04e0396c07ea70cd92db5 -# d14da2fd92c24efa8627301efda9a56b -#: ../../source/training/curriculum/curriculum.rst:365 -#: ../../source/training/curriculum/curriculum.rst:937 -msgid "Changing objects" -msgstr "" - -# 1081c5b91e7e486985600ebf50549f34 -# 4d576a024f5345d9aa429ce058aa6c27 -#: ../../source/training/curriculum/curriculum.rst:366 -#: ../../source/training/curriculum/curriculum.rst:938 -msgid "Adding presets" -msgstr "" - -# 211c9e8d1a194cf8b00e5a022bb371c3 -# 4e2765297b694c35acbec5fec4ae4a2d -#: ../../source/training/curriculum/curriculum.rst:369 -#: ../../source/training/curriculum/curriculum.rst:943 -msgid "Understand GPS and the types of GPS" -msgstr "" - -# ed94ba8928c34ff1b28c4e1342c90b47 -# 1f7dec343c514fa2a817fc45f77849a5 -# ecd55c4bba864a029cbaa6b969315cfa -# d8de7aa91e524ae08e28a9c788cafbe1 -#: ../../source/training/curriculum/curriculum.rst:370 -#: ../../source/training/curriculum/curriculum.rst:944 -msgid "Turn on GPS" -msgstr "" - -# 52430844d61e4bc9a30c06fe5653527f -# 0d56486c17014e51b8b894d074f65b62 -#: ../../source/training/curriculum/curriculum.rst:371 -#: ../../source/training/curriculum/curriculum.rst:945 -msgid "Set up GPS" -msgstr "" - -# 5b2b665ff7b84fcba0fe826dcc5119b0 -# 05f121d48c4846c7be74febdef064618 -#: ../../source/training/curriculum/curriculum.rst:372 -#: ../../source/training/curriculum/curriculum.rst:946 -msgid "Understand factors that affect GPS accuracy" -msgstr "" - -# fb874e3f721044c9aa274226d72ef5d9 -# fc0a95b4109a4dab97637302953b6c84 -#: ../../source/training/curriculum/curriculum.rst:373 -#: ../../source/training/curriculum/curriculum.rst:947 -msgid "Understand tracks and waypoints" -msgstr "" - -# 7cb97594b76042418dee4cabd0cdb156 -# 13cf194390d2486482c0a30f269cdb9c -#: ../../source/training/curriculum/curriculum.rst:374 -#: ../../source/training/curriculum/curriculum.rst:948 -msgid "Collect data using GPS" -msgstr "" - -# 25e8bd8c9b8b4edebfb209ff296942dc -# f1d46a836b454fd8a2c615fa4de18cf2 -#: ../../source/training/curriculum/curriculum.rst:375 -#: ../../source/training/curriculum/curriculum.rst:949 -msgid "Copy GPS data (tracks and waypoints) to computer" -msgstr "" - -# 4ada26bff6dd4eecaa2172e163352bbb -# f3fa299efe794e25ab3837f8b5fa06f3 -#: ../../source/training/curriculum/curriculum.rst:376 -#: ../../source/training/curriculum/curriculum.rst:950 -msgid "Open waypoints and tracks in JOSM" -msgstr "" - -# 3ced463b273d4d2286b8dcd8e1465744 -#: ../../source/training/curriculum/curriculum.rst:377 -msgid "Upload GPS tracks using JOSM" -msgstr "" - -# c42dde4fe5cf451c83c6ba00d17f1f41 -# 0ad729ed3cee484f8e252f529d70eaa6 -#: ../../source/training/curriculum/curriculum.rst:378 -#: ../../source/training/curriculum/curriculum.rst:952 -msgid "Edit OSM based on GPS data in JOSM" -msgstr "" - -# f3625584d31348d4aa3c6c44526d56c8 -# 8313e566df384471b1c1bb14a93d1302 -#: ../../source/training/curriculum/curriculum.rst:368 -#: ../../source/training/curriculum/curriculum.rst:942 -msgid "**Using GPS**" -msgstr "" - -# 75a7ee51e5c6489b814a43cf5ea92ddc -# ad659c1ee03a4780ade985d4aa636beb -#: ../../source/training/curriculum/curriculum.rst:370 -#: ../../source/training/curriculum/curriculum.rst:944 -msgid "What is GPS" -msgstr "" - -# 64988ff75fb54cfb8e400b15705ce3f7 -# 16e0b322428440299cd652bcf6f2a450 -#: ../../source/training/curriculum/curriculum.rst:371 -#: ../../source/training/curriculum/curriculum.rst:945 -msgid "Turning on GPS" -msgstr "" - -# 7cf14611371047838a4b36cb168aec69 -# 15646caaac28481fb7fa12a37ccb3f2e -#: ../../source/training/curriculum/curriculum.rst:372 -#: ../../source/training/curriculum/curriculum.rst:946 -msgid "Navigating the GPS" -msgstr "" - -# f73db4c8a35d44cf8f375c9e38f155fc -# 3ee707642f1e4e869f50313299bb55bb -#: ../../source/training/curriculum/curriculum.rst:373 -#: ../../source/training/curriculum/curriculum.rst:947 -msgid "Tracks and waypoints" -msgstr "" - -# 7482c47e587844dab1e12bbb50bc9e51 -# 28c20b0b92fd4775be62230e7551d389 -#: ../../source/training/curriculum/curriculum.rst:374 -#: ../../source/training/curriculum/curriculum.rst:948 -msgid "Saving location (waypoint)" -msgstr "" - -# fbe1bef441124bffb46ddf5c231cfbcd -# 5912caac5d8249bb918bba577af489b5 -#: ../../source/training/curriculum/curriculum.rst:375 -#: ../../source/training/curriculum/curriculum.rst:949 -msgid "Turning on the Track Log" -msgstr "" - -# e3884d4186bb454c8c453051e389b7dd -# cad5d17a3fa346d688ea9d5226b76c83 -#: ../../source/training/curriculum/curriculum.rst:376 -#: ../../source/training/curriculum/curriculum.rst:950 -msgid "GPS settings" -msgstr "" - -# 6080a924347541bfbcddc314d67873ab -# 41ac78bd149442b59a0e718742dbf91d -#: ../../source/training/curriculum/curriculum.rst:377 -#: ../../source/training/curriculum/curriculum.rst:951 -msgid "How to copy waypoints and tracks to computer" -msgstr "" - -# d5a0f79711334a9eaa264a2b660696f8 -# cf63bc4c448041bab659aca0f5d78309 -#: ../../source/training/curriculum/curriculum.rst:379 -#: ../../source/training/curriculum/curriculum.rst:953 -msgid "Connecting GPS to computer" -msgstr "" - -# 6c7471632a90407a95a49a12c0eea7ce -# 9ea03d58271041fa91d4354d60a21389 -#: ../../source/training/curriculum/curriculum.rst:380 -#: ../../source/training/curriculum/curriculum.rst:954 -msgid "Installing GPS driver" -msgstr "" - -# 2df92862f82a46b4b27670ea5d6bf6ad -# 3550f8aa0a9d464fbde8220dc69251cf -#: ../../source/training/curriculum/curriculum.rst:381 -#: ../../source/training/curriculum/curriculum.rst:955 -msgid "GPSBabel program setup" -msgstr "" - -# bf4dd9abf9ad4c0eac975d52d990625b -# 52d7b5fe53c84966be68e0de318788b5 -#: ../../source/training/curriculum/curriculum.rst:382 -#: ../../source/training/curriculum/curriculum.rst:956 -msgid "GPSBabel installation" -msgstr "" - -# ac7ad176b2554dc3b0034085551498a3 -# 424d1332735547ed862692199bd3f49f -#: ../../source/training/curriculum/curriculum.rst:383 -#: ../../source/training/curriculum/curriculum.rst:957 -msgid "Copying tracks and waypoints" -msgstr "" - -# 24013d0ef4934f36a2a96f20487b3042 -# 2b1ea4d4cfa147cd940235eb9487c2f0 -#: ../../source/training/curriculum/curriculum.rst:384 -#: ../../source/training/curriculum/curriculum.rst:958 -msgid "GPS data in JOSM" -msgstr "" - -# 2169fc0af8ec441c858ed55627953f7a -# b35495c7dba2411a836eea9afea16fc7 -#: ../../source/training/curriculum/curriculum.rst:386 -#: ../../source/training/curriculum/curriculum.rst:960 -msgid "Uploading GPS tracks in JOSM" -msgstr "" - -# 7edf2d3868d64e0eacdf3655b140779a -# 6cd4a45c188144e8a9ec6ddb70f97f83 -#: ../../source/training/curriculum/curriculum.rst:387 -#: ../../source/training/curriculum/curriculum.rst:961 -msgid "Editing GPS data using JOSM" -msgstr "" - -# 1595149b26aa4ce4a306679fbefec77b -# 9582ed6a7d204acb84b38a1aef780fda -#: ../../source/training/curriculum/curriculum.rst:390 -#: ../../source/training/curriculum/curriculum.rst:966 -msgid "Understand how to use Field Papers" -msgstr "" - -# 7e684805ca6c4b38bd85b1e048089ac3 -# 85c045447ac14bbfb3b057be3e78bccd -#: ../../source/training/curriculum/curriculum.rst:391 -#: ../../source/training/curriculum/curriculum.rst:967 -msgid "Make and print Field Papers" -msgstr "" - -# bc5eff07faa945a7af1cea1351eb1451 -# 94f5c916983f4649a01741301f74d832 -#: ../../source/training/curriculum/curriculum.rst:392 -#: ../../source/training/curriculum/curriculum.rst:968 -msgid "Add information to Field Papers" -msgstr "" - -# f7f7c06174274000ba756feab740a5f8 -# cdd1c093fc7943f5995e14226a8b3f72 -#: ../../source/training/curriculum/curriculum.rst:393 -#: ../../source/training/curriculum/curriculum.rst:969 -msgid "Scan and upload Field Papers to fieldpapers.org" -msgstr "" - -# 8e4e0ae0c7e04df18a9e31992277f221 -# 9df2b5344c6a4a5a84a1a7d400b6280e -#: ../../source/training/curriculum/curriculum.rst:394 -#: ../../source/training/curriculum/curriculum.rst:970 -msgid "Open Field Papers in JOSM" -msgstr "" - -# 3ba6b9ce9f154629824597199c6c3ad2 -# 177678308eee4564871e074307b262d9 -#: ../../source/training/curriculum/curriculum.rst:389 -#: ../../source/training/curriculum/curriculum.rst:965 -msgid "**Field Papers**" -msgstr "" - -# 3196ecf7327f4ae0acecf179080dac39 -# d5136e77a07d4b33ae7a8305d169920f -#: ../../source/training/curriculum/curriculum.rst:391 -#: ../../source/training/curriculum/curriculum.rst:967 -msgid "What is Field Papers" -msgstr "" - -# 98d14fe49f8f43b1ad67623986086a1d -# e1dab9dcb083427682cb14cf58a9bfdc -#: ../../source/training/curriculum/curriculum.rst:392 -#: ../../source/training/curriculum/curriculum.rst:968 -msgid "Using Field Papers" -msgstr "" - -# ee9ce0ccddf9478a9b3ed79dbcb5cb43 -# 1bfecda7c4cc4dec9f4ebec3df76b32d -#: ../../source/training/curriculum/curriculum.rst:393 -#: ../../source/training/curriculum/curriculum.rst:969 -msgid "Making and printing Field Papers" -msgstr "" - -# 0a6e86edccd14b208ccdfb45607cb69f -# 666f0df5e0c74d16ad7bc71614ea8cbc -#: ../../source/training/curriculum/curriculum.rst:394 -#: ../../source/training/curriculum/curriculum.rst:970 -msgid "Mapping with Field Papers" -msgstr "" - -# 26c21e8797504e9c908b3b69550c3205 -# 17b30951e48e4bf89867b66ef987f0f6 -#: ../../source/training/curriculum/curriculum.rst:395 -#: ../../source/training/curriculum/curriculum.rst:971 -msgid "Scanning and uploading" -msgstr "" - -# 07a2704245cd4b1eaafcab6875c1e6a8 -# e89b856718c94ffd9dc11d35151b5d59 -#: ../../source/training/curriculum/curriculum.rst:396 -#: ../../source/training/curriculum/curriculum.rst:972 -msgid "Field Papers in JOSM" -msgstr "" - -# 3f830fde43364680811ccdeb5727a087 -# 84f7e0ea334941acbb776fed2651f429 -#: ../../source/training/curriculum/curriculum.rst:399 -#: ../../source/training/curriculum/curriculum.rst:978 -msgid "Download OSM data in the area you want to edit" -msgstr "" - -# f72ba0c913aa4370a74d608e061191c7 -# e34d95874dcd4a16b7b518a03a693d35 -#: ../../source/training/curriculum/curriculum.rst:400 -#: ../../source/training/curriculum/curriculum.rst:979 -msgid "Select layers" -msgstr "" - -# ef4c45bf06fc4e6291dbfc8e11a7d6ce -# 64a965b2a7904c69a3f970cd5006aae7 -#: ../../source/training/curriculum/curriculum.rst:401 -#: ../../source/training/curriculum/curriculum.rst:980 -msgid "Edit OSM data" -msgstr "" - -# b364cc46078745039a65aa13a65ad2b7 -# 6f3da830863d462f8cdb8f241be6a528 -#: ../../source/training/curriculum/curriculum.rst:402 -#: ../../source/training/curriculum/curriculum.rst:981 -msgid "Edit and understand tags" -msgstr "" - -# 3b983240c2d74cb88e2397717600935c -# a8681a839646431c886bc2ef5fb4a48e -#: ../../source/training/curriculum/curriculum.rst:403 -#: ../../source/training/curriculum/curriculum.rst:982 -msgid "Upload OSM data" -msgstr "" - -# 61419e7c54f5470ab0680d04409ed34b -# 630af23437714ff3a4c27f7a22ad8658 -# b532c1b2508740289f7c1a2823029024 -# c3e2cd79447b48838d9b17cd70498de8 -#: ../../source/training/curriculum/curriculum.rst:404 -#: ../../source/training/curriculum/curriculum.rst:983 -msgid "Save OSM files" -msgstr "" - -# 7f42948151e84717bcb59eb65c04093f -# 5910e5af0b304566b21d8b11cee132b6 -#: ../../source/training/curriculum/curriculum.rst:398 -#: ../../source/training/curriculum/curriculum.rst:977 -msgid "**Editing OpenStreetMap with JOSM**" -msgstr "" - -# 6a2d8b2775b9443ca6ad0626a883c35f -# 8687696b57ef49979d6cc05810de524d -#: ../../source/training/curriculum/curriculum.rst:400 -#: ../../source/training/curriculum/curriculum.rst:979 -msgid "Exploring JOSM" -msgstr "" - -# a5d06e00045f456e92dce85d6e994d36 -# 3227c4a08e0845d58236c8ce70603cef -#: ../../source/training/curriculum/curriculum.rst:401 -#: ../../source/training/curriculum/curriculum.rst:980 -msgid "JOSM layers" -msgstr "" - -# bcffa7ed67234959a20bc819c3be65a1 -# 0f9420447b0247faa248b056427496a9 -#: ../../source/training/curriculum/curriculum.rst:402 -#: ../../source/training/curriculum/curriculum.rst:981 -msgid "Editing OSM data" -msgstr "" - -# b1564c22c05b42bd84ffd04810481d19 -# d838b43c1718450f9567dceb68739cff -#: ../../source/training/curriculum/curriculum.rst:403 -#: ../../source/training/curriculum/curriculum.rst:982 -msgid "Tags" -msgstr "" - -# a8aba1e3b6c54100bbb9015f9eb9aafd -# 38a5c3bbd2f7453c954ec8976a7c5188 -#: ../../source/training/curriculum/curriculum.rst:404 -#: ../../source/training/curriculum/curriculum.rst:983 -msgid "Uploading changes" -msgstr "" - -# f35c11b70c2849238c2d4d9d68e7fb17 -# ea30735e9ad14ac085e25b08dd45bfea -#: ../../source/training/curriculum/curriculum.rst:405 -#: ../../source/training/curriculum/curriculum.rst:984 -msgid "Saving OSM files" -msgstr "" - -# 45d51eac93414f07a30bafecf4a6f6ee -# b0b490b93c1e488992f36fd1d82db8e1 -#: ../../source/training/curriculum/curriculum.rst:408 -#: ../../source/training/curriculum/curriculum.rst:993 -msgid "Understand the definition of imagery offset" -msgstr "" - -# 79067bfd0274445f8b14eb2a0a7f5d7e -# 47a7d0a2c41d41e5888987532d3f2b3d -#: ../../source/training/curriculum/curriculum.rst:409 -#: ../../source/training/curriculum/curriculum.rst:994 -msgid "Understand components of imagery (resolution and georeference)" -msgstr "" - -# dbe6ad310396409a99ba909d8865cd61 -# 94b9b3cf2d814afc82001f6fcbf1e437 -#: ../../source/training/curriculum/curriculum.rst:410 -#: ../../source/training/curriculum/curriculum.rst:995 -msgid "Explain how imagery offsets occur" -msgstr "" - -# 2db308fa161c4a599f761f04606402ab -# 2e14b8a3fa4c40c192a8d238aa84bff5 -#: ../../source/training/curriculum/curriculum.rst:411 -#: ../../source/training/curriculum/curriculum.rst:996 -msgid "Fix imagery offset" -msgstr "" - -# 26d47a8b456b48b0a3cc649d6b53a033 -# eca792b95e7b4d95bb9222fa91410925 -#: ../../source/training/curriculum/curriculum.rst:407 -#: ../../source/training/curriculum/curriculum.rst:992 -msgid "**Imagery Offset**" -msgstr "" - -# 657ac7f4f6ca41659bfcff1b0ca2889f -# 2e958e0012a849ab8a14692f726a9f25 -#: ../../source/training/curriculum/curriculum.rst:409 -#: ../../source/training/curriculum/curriculum.rst:994 -msgid "Definition of imagery offset" -msgstr "" - -# 036c17d2906b49ac9dfb8ea3542221ed -# 172bc306d5834f08aad2ce7e8c2bdc2c -#: ../../source/training/curriculum/curriculum.rst:410 -#: ../../source/training/curriculum/curriculum.rst:995 -msgid "Imagery resolution and georeferencing" -msgstr "" - -# 8fd7b01700f048f39046fb8090a23780 -# 88ce884db2054b41bc8d6c04b672b986 -#: ../../source/training/curriculum/curriculum.rst:411 -#: ../../source/training/curriculum/curriculum.rst:996 -msgid "Imagery offset" -msgstr "" - -# 559c78f81fcf44aeaf033cf067539a7f -# d8477cddf36f460fb2d3f4190e3bf641 -# 794227e9a11a4860a80506f357f8c756 -# 08531199689348a6ac6d5a2268a490ff -# 042646ba63d7447ab5106f8f9fece9c2 -# 58bc799ca3f24d3c9ba4c442f8c8d622 -#: ../../source/training/curriculum/curriculum.rst:412 -#: ../../source/training/curriculum/curriculum.rst:997 -msgid "Fixing imagery offset" -msgstr "" - -# 7398f380e5e0429a9fd5f3bb3229e210 -#: ../../source/training/curriculum/curriculum.rst:415 -msgid "Download OpenStreetMap data from Geofabrik website" -msgstr "" - -# 18b33acecbfd40468eb1cce978f9f60d -# b8746f9220e9423793b6c17624352525 -#: ../../source/training/curriculum/curriculum.rst:416 -#: ../../source/training/curriculum/curriculum.rst:1003 -msgid "Download customised OpenStreetMap data using HOT Exports" -msgstr "" - -# d7d935574ec94638985e5c1e7348b350 -# 4b8c3160cc794e33b06684c7a6168485 -#: ../../source/training/curriculum/curriculum.rst:414 -#: ../../source/training/curriculum/curriculum.rst:1001 -msgid "**Getting OSM Data**" -msgstr "" - -# 901582467fff4732ba254c2cc4dc9b36 -# ba894bd59263471abf113dcaf2fef4c3 -#: ../../source/training/curriculum/curriculum.rst:416 -#: ../../source/training/curriculum/curriculum.rst:1003 -msgid "OpenStreetMap data from Geofabrik Website" -msgstr "" - -# ee80532725d846d599225640f4b754fd -# 8772bd8c92fc4ecfbf6bd6f25ae9c0f8 -#: ../../source/training/curriculum/curriculum.rst:417 -#: ../../source/training/curriculum/curriculum.rst:1004 -msgid "" -"OpenStreetMap data according to region and selecting attributes with HOT " -"export tool" -msgstr "" - -# 990237fd14964e0ba0e9eef463ad2b4d -#: ../../source/training/curriculum/curriculum.rst:422 -msgid "**Data Analysis using QGIS and** |project_name| **Beginner Level**" -msgstr "" - -# 1caa683b567a44588aee4ee12d4021f3 -# dd2fa00ceef24af4bb5179ce0d95bf4f -#: ../../source/training/curriculum/curriculum.rst:424 -#: ../../source/training/curriculum/curriculum.rst:1011 -msgid "" -"**Standard Competency:** Managing Spatial Data using QGIS and Analysing " -"Disaster Impact Scenarios with |project_name|" -msgstr "" - -# d25591bba0cc447bbb6d7fee88e53a42 -# 0b922d42d13b45bfb9a44023bd36d9c7 -#: ../../source/training/curriculum/curriculum.rst:431 -#: ../../source/training/curriculum/curriculum.rst:1021 -msgid "Distinguish between data and information" -msgstr "" - -# 9c54a069f4124f62991f74a241729684 -#: ../../source/training/curriculum/curriculum.rst:432 -msgid "Understand the concept of GIS" -msgstr "Comprendre le concept de SIG" - -# c5952e348d694b8d99a34ea6e20d16d9 -# e1f0e7956dd843f6b41d5bd0f8c4639a -#: ../../source/training/curriculum/curriculum.rst:430 -#: ../../source/training/curriculum/curriculum.rst:1020 -msgid "**GIS for Developing Contingency Plan**" -msgstr "" - -# e476eabe241b4cbc9e30aac8c2282c93 -# 83ca2a80f3e64622974cc0dd6a48f74f -#: ../../source/training/curriculum/curriculum.rst:432 -#: ../../source/training/curriculum/curriculum.rst:1022 -msgid "The difference between data and information" -msgstr "" - -# 30e83a8645a84ba8a2ba14af63b97593 -#: ../../source/training/curriculum/curriculum.rst:433 -msgid "Terminology of Geographic Information System (GIS)" -msgstr "" - -# 3515780277fd41b7a5c2af84899ef789 -# aaa702ed9d154aa295b19aa29cc405ad -#: ../../source/training/curriculum/curriculum.rst:436 -#: ../../source/training/curriculum/curriculum.rst:1028 -msgid "" -"Understand the benefit of QGIS and InaSAFE for developing realistic scenario " -"for contingency planning" -msgstr "" - -# fc80145e9fcc422bab6a822619da4e46 -# bdd6857576f14c05978e5647bb6b3639 -#: ../../source/training/curriculum/curriculum.rst:437 -#: ../../source/training/curriculum/curriculum.rst:1029 -msgid "Understand the role of GIS for preparing contingency planning" -msgstr "" - -# a1f7623eb27849549016613c6eb3cdf5 -# 5fb5ecb92e154ed98ec93eb31bc31240 -#: ../../source/training/curriculum/curriculum.rst:438 -#: ../../source/training/curriculum/curriculum.rst:1030 -msgid "Understand the importance of data" -msgstr "" - -# cd404b27c4414132bde79b418dadb560 -# 36912ca7725f4f9a9f9eb7cdb6ead009 -#: ../../source/training/curriculum/curriculum.rst:439 -#: ../../source/training/curriculum/curriculum.rst:1031 -msgid "" -"Understand the benefits of QGIS/|project_name| in the development of " -"scenarios for contingency planning" -msgstr "" - -# a6887a0a36674fd8b81b0f27b2354179 -# 027999285c694366a07631e08bf2d8f2 -#: ../../source/training/curriculum/curriculum.rst:436 -#: ../../source/training/curriculum/curriculum.rst:1028 -msgid "**QGIS and InaSAFE in Contingency Planning**" -msgstr "" - -# 157f3dfc81e145f1afb497ef5e4c6c36 -# 2831ba0611d44f869a3298192e9556e1 -#: ../../source/training/curriculum/curriculum.rst:438 -msgid "GIS for Preparing contingency Planning" -msgstr "" - -# 6c472c8b30054ddf8a6e6da611ad4d71 -# 16fa51c220924d9fbd1c776a907542c6 -#: ../../source/training/curriculum/curriculum.rst:439 -#: ../../source/training/curriculum/curriculum.rst:1031 -msgid "The Importance of Data" -msgstr "" - -# b53e08812a3d4ca3aad7d1047752006e -#: ../../source/training/curriculum/curriculum.rst:440 -msgid "QGIS and |project_name|" -msgstr "" - -# cf615fa7660b403f97309fee10882d0b -# 1bd618e8fcaf4bc4ba861d3a808b6387 -#: ../../source/training/curriculum/curriculum.rst:443 -#: ../../source/training/curriculum/curriculum.rst:1037 -msgid "Download QGIS" -msgstr "" - -# 6fbbdcfc09d34be1aa69afe4e8eccc59 -# f2e1d5003eae4e3ab9885a9b81212a5f -#: ../../source/training/curriculum/curriculum.rst:444 -#: ../../source/training/curriculum/curriculum.rst:1038 -msgid "Install QGIS" -msgstr "Installer QGIS" - -# 610671d7c7874c41b1307afa5214085b -# 25077a907ee74082831d39a7e85c1eec -#: ../../source/training/curriculum/curriculum.rst:445 -#: ../../source/training/curriculum/curriculum.rst:1039 -msgid "Open a previously created QGIS project" -msgstr "Ouvrir un projet QGIS préexistant" - -# 21f194bd0ee54cfda310c79011e0b391 -# 14e335fb81924a7eb0cbc7b301cb61af -#: ../../source/training/curriculum/curriculum.rst:446 -#: ../../source/training/curriculum/curriculum.rst:1040 -msgid "Understand the layers panel" -msgstr "" - -# e0b68f6b625b48febac6c612a2e43eca -# 183b83d0b6fa474c9272b977b12f2e3e -#: ../../source/training/curriculum/curriculum.rst:447 -#: ../../source/training/curriculum/curriculum.rst:1041 -msgid "Access basic tools through the toolbar" -msgstr "" - -# a87e72275f324d7eb096ca549c4ccf86 -# 86f7e4993790431ca8fccc7ca2985db1 -#: ../../source/training/curriculum/curriculum.rst:448 -#: ../../source/training/curriculum/curriculum.rst:1042 -msgid "Clean up the toolbar" -msgstr "Ranger la barre d'outils" - -# 2fa6133502a147c1a4d63bca0c9491c6 -# ee6a107f0d16473490a949b7a855a334 -#: ../../source/training/curriculum/curriculum.rst:449 -#: ../../source/training/curriculum/curriculum.rst:1043 -msgid "Show a map in the map window" -msgstr "" - -# 10766af7edc14bf7abf43c5b31aba087 -# 5c12f979341c49e1820afdc8d7b4326c -#: ../../source/training/curriculum/curriculum.rst:450 -#: ../../source/training/curriculum/curriculum.rst:1044 -msgid "Get information on an active map through the status bar" -msgstr "" - -# 7c0cee161b2544e2856329a3076db0fc -# 01b74fab8e414d08b8c92013c52db835 -#: ../../source/training/curriculum/curriculum.rst:442 -#: ../../source/training/curriculum/curriculum.rst:1036 -msgid "**The Basics of QGIS**" -msgstr "" - -# 2e726cb91c864e55ba8a28c8ead7425e -# 766ab9dd5aa049328fd474b085b0e3b8 -#: ../../source/training/curriculum/curriculum.rst:444 -#: ../../source/training/curriculum/curriculum.rst:1038 -msgid "Getting QGIS" -msgstr "" - -# d7ed9086adf94758b083021ce8a8057b -# f3afabc08cb04aceba08622816019c4b -# 4b90915bde72411f9719592233ded20a -# 255d911b389b45808706b8c060e585c1 -#: ../../source/training/curriculum/curriculum.rst:445 -#: ../../source/training/curriculum/curriculum.rst:1039 -msgid "Installing QGIS" -msgstr "" - -# e5764df311a040029cc010dc73d684f5 -#: ../../source/training/curriculum/curriculum.rst:446 -msgid "QGIS user interface layout" -msgstr "" - -# a0d21b46576541358434a802c9fff46b -# 7689c2e375394dbd886b41d0ecb7157d -#: ../../source/training/curriculum/curriculum.rst:447 -#: ../../source/training/curriculum/curriculum.rst:1041 -msgid "Adding vector layer" -msgstr "" - -# 3d08ab2f210c453e9805f8a6fa553fcf -# 23d75468385c43b5b4afe78f723d7126 -#: ../../source/training/curriculum/curriculum.rst:448 -#: ../../source/training/curriculum/curriculum.rst:1042 -msgid "QGIS basic tool" -msgstr "" - -# 4e06a6926e3d4b41993adb0608fca981 -# 77ab8f6874e94af5b10e5b81b22ff616 -#: ../../source/training/curriculum/curriculum.rst:449 -#: ../../source/training/curriculum/curriculum.rst:1043 -msgid "Panning maps" -msgstr "" - -# f7f7c2613756466b85ae09285bb2443d -# 7685891513f7405285df0fec840630f2 -#: ../../source/training/curriculum/curriculum.rst:453 -#: ../../source/training/curriculum/curriculum.rst:1049 -msgid "Understand the concept of plugins" -msgstr "" - -# 0934d990516b489ea2cef0a044a5848e -# d3360a122e49404cbc71a8f0d271004d -#: ../../source/training/curriculum/curriculum.rst:454 -#: ../../source/training/curriculum/curriculum.rst:1050 -msgid "Install QGIS plugins" -msgstr "" - -# 607f1e36d64f4bcc9485b227bc64fd05 -# 931add4d2ad6442fa60fc601238eb566 -#: ../../source/training/curriculum/curriculum.rst:455 -#: ../../source/training/curriculum/curriculum.rst:1051 -msgid "Add satellite imagery via OpenLayers" -msgstr "" - -# 3aa109f13e204710a93c188b2384674f -# cff84dc7e4374155838e353fa543113e -#: ../../source/training/curriculum/curriculum.rst:452 -#: ../../source/training/curriculum/curriculum.rst:1048 -msgid "**QGIS Plugins**" -msgstr "" - -# b9316a5fb68a4e87b664d4bcd5760491 -# 55284d69b9514ba2845dc682664c0fda -#: ../../source/training/curriculum/curriculum.rst:454 -#: ../../source/training/curriculum/curriculum.rst:1050 -msgid "Plugin setup" -msgstr "" - -# d586093452cf4952b4d422bf020c4a1f -# 3a40420eaab240b2a5c75c9dd5f12c8b -#: ../../source/training/curriculum/curriculum.rst:455 -#: ../../source/training/curriculum/curriculum.rst:1051 -msgid "Installing plugin" -msgstr "" - -# 5d8a53f4f08c4b2ea562cea63c5b00ea -# 6bd03629757c49648eb766217d37aabc -#: ../../source/training/curriculum/curriculum.rst:456 -#: ../../source/training/curriculum/curriculum.rst:1052 -msgid "OpenLayers plugin" -msgstr "" - -# e8983cca47a74dd8ae02e1b9eca1ff6e -# 58816c7f0cf54bbbab8ce04c86596c2b -#: ../../source/training/curriculum/curriculum.rst:460 -#: ../../source/training/curriculum/curriculum.rst:1058 -msgid "Understand Coordinate Reference Systems (CRS)" -msgstr "" - -# 755e952ad70b40308c68e3d4c3ea2307 -# 15393c2c7ae8468ab5b4d99c818385c6 -#: ../../source/training/curriculum/curriculum.rst:461 -#: ../../source/training/curriculum/curriculum.rst:1059 -msgid "Identify the CRS of a vector dataset" -msgstr "" - -# df23a7f726ce462999730d0b6e5f3a07 -# 85aa6ba69bed49d0a91c44b5a6726f0e -#: ../../source/training/curriculum/curriculum.rst:462 -#: ../../source/training/curriculum/curriculum.rst:1060 -msgid "Do 'on the fly' reprojection" -msgstr "" - -# b865a507938b4b86b94735b1686a4453 -# 62a5031831a24257923ebdbba4d02b41 -#: ../../source/training/curriculum/curriculum.rst:463 -#: ../../source/training/curriculum/curriculum.rst:1061 -msgid "Save dataset with a different CRS" -msgstr "" - -# 1c88ce7044094fea9b6fff252137edab -# 44d8d9badb2c46abab470a7148a51f6a -#: ../../source/training/curriculum/curriculum.rst:464 -#: ../../source/training/curriculum/curriculum.rst:1062 -msgid "Create a custom projection" -msgstr "" - -# 5edf0d43e55a49e69efd63bd931f6246 -# 5b2ca9b0c4a44d368ce376db6170e2d3 -#: ../../source/training/curriculum/curriculum.rst:459 -#: ../../source/training/curriculum/curriculum.rst:1057 -msgid "**Map Projection Basics**" -msgstr "" - -# 0a26abdaac4641b5a20d35b82dde4e0f -# 4a616659e5394697bcb7995ef50a17d6 -#: ../../source/training/curriculum/curriculum.rst:461 -#: ../../source/training/curriculum/curriculum.rst:1059 -msgid "Coordinate Reference Systems (CRS)" -msgstr "" - -# 966f42406634430785df0bd75c1789b3 -# b873c5de85c04a16ad905f090cba2d81 -#: ../../source/training/curriculum/curriculum.rst:462 -#: ../../source/training/curriculum/curriculum.rst:1060 -msgid "“On the fly” reprojection" -msgstr "" - -# d7bb1e11b05545f2b7936e33ab56823a -# 0508712f7327469b9746d0cb4d19af3f -#: ../../source/training/curriculum/curriculum.rst:463 -#: ../../source/training/curriculum/curriculum.rst:1061 -msgid "Dataset with different CRS" -msgstr "" - -# 4d9ec6dea2d742abbbd81fb3e27d3ed3 -#: ../../source/training/curriculum/curriculum.rst:464 -msgid "Defining a custom projection" -msgstr "" - -# 1cb135635d034e2c8b6b80f9b4e49701 -# 30cb6086c5f848bf85f9344e520626af -#: ../../source/training/curriculum/curriculum.rst:467 -#: ../../source/training/curriculum/curriculum.rst:1069 -msgid "Understand vector data" -msgstr "" - -# b47c2fde2026499b8a4557b9c9aaac6a -# ccf373c234d94d909bdf3b1702e4f3b4 -#: ../../source/training/curriculum/curriculum.rst:468 -#: ../../source/training/curriculum/curriculum.rst:1070 -msgid "Identify attributes of vector data" -msgstr "" - -# 70bab1677e2c441399646787d76448e8 -# a1180679d29740f397e16d6afa0c9675 -#: ../../source/training/curriculum/curriculum.rst:469 -#: ../../source/training/curriculum/curriculum.rst:1071 -msgid "Add vector layers" -msgstr "" - -# 07db8257698c44a89d6ee640358c57b3 -# 682185d667c24bc69155d9402e9ac432 -#: ../../source/training/curriculum/curriculum.rst:470 -#: ../../source/training/curriculum/curriculum.rst:1072 -msgid "Symbolise vector layers" -msgstr "" - -# 9b26b088bca243da8f0911be497e248f -# 2e64029681e84e20baa699cefabd9266 -#: ../../source/training/curriculum/curriculum.rst:466 -#: ../../source/training/curriculum/curriculum.rst:1068 -msgid "**Working with Vector Data**" -msgstr "" - -# 546823747069464794aab1e5efb5182b -# 5a14f5d06e5641d3ba7e43ab6b6d5ab3 -#: ../../source/training/curriculum/curriculum.rst:468 -#: ../../source/training/curriculum/curriculum.rst:1070 -msgid "Vector data" -msgstr "" - -# ef92748b56bf433fbe679f1e277765ad -# c77e93908a4446c9b770a7909013accf -# 4b78f3b969374ab1804275f77a3096a0 -# 6228a37aa7ee4c96a48de6157ddecce0 -#: ../../source/training/curriculum/curriculum.rst:469 -#: ../../source/training/curriculum/curriculum.rst:1071 -msgid "Data attribute" -msgstr "" - -# 3d401c318eae443aad5a77701e6d672c -# 89a6557d386d474d844b2835a6acff9f -# 2fb9b69219a5411cb9de50adbe7c6a8d -# 20150bf037e145e180e3e0b33defadf5 -#: ../../source/training/curriculum/curriculum.rst:470 -#: ../../source/training/curriculum/curriculum.rst:1072 -msgid "Add vector data" -msgstr "" - -# 42583fdea8c146b0845b198664a04f98 -# 1d1b886d16ea49be826533363fea73ac -#: ../../source/training/curriculum/curriculum.rst:471 -#: ../../source/training/curriculum/curriculum.rst:1073 -msgid "Symbology" -msgstr "" - -# 5e032da65d24457c8226585a1385fa7e -# 2262a88b3bf242399f948bfad741a764 -#: ../../source/training/curriculum/curriculum.rst:474 -#: ../../source/training/curriculum/curriculum.rst:1078 -msgid "" -"Explore attribute data of an object attributes and understand the uses of " -"different types of data" -msgstr "" - -# 86a9c742e4df41818e3af48128e6b2f5 -# 814b11f08c4f427f918e55db7796c25a -#: ../../source/training/curriculum/curriculum.rst:476 -#: ../../source/training/curriculum/curriculum.rst:1080 -msgid "Add labels to vector layers" -msgstr "" - -# 8f5701a8335e4ae49baf3597548127f4 -# 5be6118cb80140279017edb35244a684 -#: ../../source/training/curriculum/curriculum.rst:477 -#: ../../source/training/curriculum/curriculum.rst:1081 -msgid "Symbolise vector data using categories" -msgstr "" - -# d13e62b561ba43a1954ffb85d96f09e7 -# e3114d5fd08449d9a95f413769c1a95b -#: ../../source/training/curriculum/curriculum.rst:473 -#: ../../source/training/curriculum/curriculum.rst:1077 -msgid "**Labels and Classification**" -msgstr "" - -# 36e9c6b3ddfa4e14ad81554e4068a0b8 -# dedc91630c984af8b728268e61372102 -#: ../../source/training/curriculum/curriculum.rst:475 -#: ../../source/training/curriculum/curriculum.rst:1079 -msgid "Data attributes" -msgstr "" - -# a2d7b14d3e6d46ffbbd146a5d051ac75 -# d1d2177de39549ebac705c662ec2825e -# 64738c089216450ca568b58f5248e21f -# 2a37d6125d074b659a2b9537f47f30fb -#: ../../source/training/curriculum/curriculum.rst:476 -#: ../../source/training/curriculum/curriculum.rst:483 -#: ../../source/training/curriculum/curriculum.rst:1080 -#: ../../source/training/curriculum/curriculum.rst:1089 -msgid "Tool label" -msgstr "" - -# b7235573d0ed4dfe9478ad4484a0ae0f -# 08baf47409dc458ab34fb9a0657307cc -# 0eea28653d2d4abda0dec6e4d337842e -# 9359558e2b8b4614966ccdea67b3f82c -#: ../../source/training/curriculum/curriculum.rst:477 -#: ../../source/training/curriculum/curriculum.rst:484 -#: ../../source/training/curriculum/curriculum.rst:1081 -#: ../../source/training/curriculum/curriculum.rst:1090 -msgid "Classification" -msgstr "" - -# 17acd1b79322444b94259a0df33d2bb8 -# 6ced88ad84b343008b813208132c0eac -#: ../../source/training/curriculum/curriculum.rst:481 -#: ../../source/training/curriculum/curriculum.rst:1087 -msgid "Create raster data" -msgstr "" - -# 732c8bcb809a4f2db424556fbfe02116 -# 06fe9de54e184f44b2bc945b8c328786 -#: ../../source/training/curriculum/curriculum.rst:482 -#: ../../source/training/curriculum/curriculum.rst:1088 -msgid "Change raster symbology" -msgstr "" - -# bb93ef1c030c4bcebce91af7907b0d35 -# 7e966334063c4ca0a1c53a123072f8d6 -#: ../../source/training/curriculum/curriculum.rst:483 -#: ../../source/training/curriculum/curriculum.rst:1089 -msgid "Perform terrain analysis" -msgstr "" - -# 5624c5542df946d88b8053e8dd72d9c7 -# 0f1e9acac03e4636b6a7466bf05707d2 -#: ../../source/training/curriculum/curriculum.rst:480 -#: ../../source/training/curriculum/curriculum.rst:1086 -msgid "**Working with Raster Data**" -msgstr "" - -# 5c206540e16c4810b4b6c22bce5588f9 -# 5f75a431949d4cdfac28bd35810733d4 -#: ../../source/training/curriculum/curriculum.rst:482 -#: ../../source/training/curriculum/curriculum.rst:1088 -msgid "How to load raster data" -msgstr "" - -# 385bd5ff639e48efa81eb912b6fb2bb5 -# 023b08617c704e2fbc4f727c5e36dc3a -#: ../../source/training/curriculum/curriculum.rst:488 -#: ../../source/training/curriculum/curriculum.rst:1096 -msgid "Add a raster layer for digitising" -msgstr "" - -# 469dd341dd7b4781beae7d7316f4166a -# e0efa1f2f6cc4a42b264cbee482bed96 -#: ../../source/training/curriculum/curriculum.rst:489 -#: ../../source/training/curriculum/curriculum.rst:1097 -msgid "Create new vector features (polygon, lines and points)" -msgstr "" - -# a8ca673bc850449da0785c7442a89c4c -# 138b97f9eadd40d1b7c0ebb7d10d5682 -#: ../../source/training/curriculum/curriculum.rst:490 -#: ../../source/training/curriculum/curriculum.rst:1098 -msgid "" -"Digitise new vector layers by tracing a raster layer, considering topology" -msgstr "" - -# e0f3c8b4e522455f9b624c29c67a5053 -# 7560c3d07af047a2860d4532b4554363 -#: ../../source/training/curriculum/curriculum.rst:492 -#: ../../source/training/curriculum/curriculum.rst:1100 -msgid "Georeference an image" -msgstr "" - -# 4c124ca2238341bab206595226c4b667 -# e3ecb0c799cc4f1ca223223f30092b58 -#: ../../source/training/curriculum/curriculum.rst:487 -#: ../../source/training/curriculum/curriculum.rst:1095 -msgid "**Creating Vector Layers**" -msgstr "" - -# 7bfd519a4f4348f7b7511348c6688987 -# f943cffd18e34f94b76cdb717c457306 -#: ../../source/training/curriculum/curriculum.rst:489 -#: ../../source/training/curriculum/curriculum.rst:1097 -msgid "Adding raster layer" -msgstr "" - -# 139f5d7c81334fab8f050809b8d747ca -# 92c1c28a6b564ac8a956da27990390fb -#: ../../source/training/curriculum/curriculum.rst:490 -#: ../../source/training/curriculum/curriculum.rst:1098 -msgid "Creating new vector feature" -msgstr "" - -# 9d68243d885e4be2a355a745878e2649 -# 552743c1f495440d8b4403ded9be37e2 -#: ../../source/training/curriculum/curriculum.rst:491 -#: ../../source/training/curriculum/curriculum.rst:1099 -msgid "Digitising new vector layer" -msgstr "" - -# 7bbb8d9f8d9b4972812b626de417d4ae -# 7d29065e01324a7db0d411005ced1319 -#: ../../source/training/curriculum/curriculum.rst:492 -#: ../../source/training/curriculum/curriculum.rst:1100 -msgid "Georeference" -msgstr "" - -# 4aa069df6944444c81310d47a97dd9b6 -# ccfb39901dce4f528d6d6c90c0ed1156 -#: ../../source/training/curriculum/curriculum.rst:495 -#: ../../source/training/curriculum/curriculum.rst:1105 -msgid "Understand the GIS process" -msgstr "" - -# 8ee837dacf9b4565949eb93e4d603e5c -# ebd9838933a5413db38e8096b65ef575 -#: ../../source/training/curriculum/curriculum.rst:496 -#: ../../source/training/curriculum/curriculum.rst:1106 -msgid "Identify addressable problems" -msgstr "" - -# ccbc74b197a34aa3bff53e57bcca1774 -# b568e4f981b7400cb6555fff2ebb55b5 -#: ../../source/training/curriculum/curriculum.rst:497 -#: ../../source/training/curriculum/curriculum.rst:1107 -msgid "Understand data needs" -msgstr "" - -# bd5c3a1ab90247a7a4a7cc15111d20c1 -# fdf4efeb239a44cda76d66f046f33253 -#: ../../source/training/curriculum/curriculum.rst:498 -#: ../../source/training/curriculum/curriculum.rst:1108 -msgid "Start a QGIS project" -msgstr "" - -# 6b683f71427a416ab61c326c9591a67f -# f737a4fba70842c582f696c3af41799e -#: ../../source/training/curriculum/curriculum.rst:499 -#: ../../source/training/curriculum/curriculum.rst:1109 -msgid "Analyse problems" -msgstr "" - -# abe349830df74777bd14e7d9e5fa65c0 -# 139f506131a843718003dd046f1f4903 -#: ../../source/training/curriculum/curriculum.rst:500 -#: ../../source/training/curriculum/curriculum.rst:1110 -msgid "Identify hazard zones" -msgstr "" - -# 99f9ffebd52642168b93c73197d0e45a -# c16f561b0b4d42de9c62af31a96f6f30 -#: ../../source/training/curriculum/curriculum.rst:501 -#: ../../source/training/curriculum/curriculum.rst:1111 -msgid "Look for important roads" -msgstr "" - -# 1ae0e322e8764fda940f6bd3f44eba9d -# a64fa4a18d9e4d8e90cf4b5177798eb6 -#: ../../source/training/curriculum/curriculum.rst:502 -#: ../../source/training/curriculum/curriculum.rst:1112 -msgid "Look for medical facilities" -msgstr "" - -# 3da580a68d274bd4a96854b8ec846d85 -# 9e11cfbaf1ab4b4b9125ffbdc2b1b122 -#: ../../source/training/curriculum/curriculum.rst:503 -#: ../../source/training/curriculum/curriculum.rst:1113 -msgid "Buffer roads" -msgstr "" - -# bd3385f686264085b7d8cbecacb27a75 -# 81d23b079dbc473ea8344a6db7383c72 -#: ../../source/training/curriculum/curriculum.rst:504 -#: ../../source/training/curriculum/curriculum.rst:1114 -msgid "Buffer medical facilities" -msgstr "" - -# 18f9429dab7e4b6fbce4c700d297069a -# b879115a73084d28b4fc0f85f0b9ef21 -#: ../../source/training/curriculum/curriculum.rst:505 -#: ../../source/training/curriculum/curriculum.rst:1115 -msgid "Analyse overlapped areas" -msgstr "" - -# d107ab0a55964266969c004559ae41ca -# 0ba14e7e0f544204b87d918d56c4b338 -#: ../../source/training/curriculum/curriculum.rst:506 -#: ../../source/training/curriculum/curriculum.rst:1116 -msgid "Choose features by landuse type" -msgstr "" - -# b07610abae4442acb15f2ce7c229d8d7 -# 60f78804f5ac42819105076afafce946 -#: ../../source/training/curriculum/curriculum.rst:494 -#: ../../source/training/curriculum/curriculum.rst:1104 -msgid "**Vector Analysis for Problem Solving**" -msgstr "" - -# 183736b97d484c48adbbf8b3b7db9716 -# 7f966219f3e24c56988a8029aee103c2 -#: ../../source/training/curriculum/curriculum.rst:496 -#: ../../source/training/curriculum/curriculum.rst:1106 -msgid "GIS Processes" -msgstr "" - -# 87c97fc1deee4b9c901fc741bbc78cac -# df44e5eab46348fe9a87570d01db71a4 -#: ../../source/training/curriculum/curriculum.rst:497 -#: ../../source/training/curriculum/curriculum.rst:1107 -msgid "Problems" -msgstr "" - -# 08899f64a9494fad89b29efae8370a92 -# e995a859f4dc4481b274d3241dd3849f -#: ../../source/training/curriculum/curriculum.rst:498 -#: ../../source/training/curriculum/curriculum.rst:1108 -msgid "Data" -msgstr "" - -# 16e61b136ab44c649376f2b515f30d11 -# 79e7bf27953440aeac6243a856c6971f -# 742a448e498c4fd9bdf445e3cc274743 -# 5b88ce20becf44f08d9ed738e140f5a9 -#: ../../source/training/curriculum/curriculum.rst:499 -#: ../../source/training/curriculum/curriculum.rst:1109 -msgid "Starting a project" -msgstr "" - -# 2e2b1e9a6b1d4bac9702e82ef0472e66 -# 607ef769726740098e521ab3a35ef3e9 -#: ../../source/training/curriculum/curriculum.rst:500 -#: ../../source/training/curriculum/curriculum.rst:1110 -msgid "Analysing problems: farms and moors" -msgstr "" - -# 152f420731fd4dbfb5bd885d232e7aca -# b0de35d2740c4a8cbf88dc96ac3c1c77 -#: ../../source/training/curriculum/curriculum.rst:501 -#: ../../source/training/curriculum/curriculum.rst:1111 -msgid "Hazard zone" -msgstr "" - -# 09c0b097c7e2476e9f9ab9b36e43a63c -# 6dc0ba46d7294681af4905920402b1f7 -#: ../../source/training/curriculum/curriculum.rst:502 -#: ../../source/training/curriculum/curriculum.rst:1112 -msgid "Searching for important roads" -msgstr "" - -# 677de4dffa9145b0974124c948fa26a1 -# 08c15f7d9622478fb7802c29d691a3f7 -#: ../../source/training/curriculum/curriculum.rst:503 -#: ../../source/training/curriculum/curriculum.rst:1113 -msgid "Searching for health facilities" -msgstr "" - -# 05a016a99ed74665886fd20d7ae96e94 -# 322be8d03ebd471a9f9cce4b54d32409 -#: ../../source/training/curriculum/curriculum.rst:504 -#: ../../source/training/curriculum/curriculum.rst:1114 -msgid "Road Buffer" -msgstr "" - -# 78335f1c7fce4c10b3871b74ba1d0ae4 -# 4baa7e31eab94544830405b0f9a00f7f -#: ../../source/training/curriculum/curriculum.rst:505 -#: ../../source/training/curriculum/curriculum.rst:1115 -msgid "Health Facilities Buffer" -msgstr "" - -# 1b7f8050ea5249a6b6753e771d8965d6 -# f6e4114c5c5e47a79c3a2e7d5a4c08d5 -#: ../../source/training/curriculum/curriculum.rst:506 -#: ../../source/training/curriculum/curriculum.rst:1116 -msgid "Overlapped area" -msgstr "" - -# 84d2cb3a27fe4eff9b2577dba7b4e274 -# 43f5cd2e68ab48e8b0760189ab63105c -#: ../../source/training/curriculum/curriculum.rst:507 -#: ../../source/training/curriculum/curriculum.rst:1117 -msgid "Choosing farms and moors" -msgstr "" - -# c6cff3a16c3d4ef0a7a75908dc5d524e -# 3bb9f7e448f7495bbe84589e0c7b4eeb -#: ../../source/training/curriculum/curriculum.rst:508 -#: ../../source/training/curriculum/curriculum.rst:1118 -msgid "Choosing land area with right size" -msgstr "" - -# 2de46997d08d4d65b245a7016ad0f9d6 -# 3f32e5a392bc467bbd05f028e5ff16d7 -#: ../../source/training/curriculum/curriculum.rst:511 -#: ../../source/training/curriculum/curriculum.rst:1123 -msgid "Arrange map layout" -msgstr "" - -# 8fe2336c65794c6fb60baf2893476452 -# 1dcaddecc7c844ab93613d1f22a43a9f -#: ../../source/training/curriculum/curriculum.rst:512 -#: ../../source/training/curriculum/curriculum.rst:1124 -msgid "Add a new map" -msgstr "" - -# 16b7d171da274f1e976baee95313006e -# 51c48d50638540488a8d727951a98afc -#: ../../source/training/curriculum/curriculum.rst:513 -#: ../../source/training/curriculum/curriculum.rst:1125 -msgid "Add title to a map" -msgstr "" - -# e13c4574c6644d65a5fb76067be0c427 -# 221ef3260b324857bd2f14ecac6cd63b -#: ../../source/training/curriculum/curriculum.rst:514 -#: ../../source/training/curriculum/curriculum.rst:1126 -msgid "Add graphic and numeric scales" -msgstr "" - -# 40bfb370995d4deaa36983bc1cd46e6d -# 9ebfdd1a3bbe48768e2c06d1aa2cc4b2 -#: ../../source/training/curriculum/curriculum.rst:515 -#: ../../source/training/curriculum/curriculum.rst:1127 -msgid "Add grid to a map" -msgstr "" - -# e8efa8572f604002892cc672e4ebe4e9 -# ea995947b44a4d67af3280efedc1ac96 -#: ../../source/training/curriculum/curriculum.rst:516 -#: ../../source/training/curriculum/curriculum.rst:1128 -msgid "Add an inset" -msgstr "" - -# 6d185d017dfd4a2a954a7c8d8518ff06 -# bc8e744d21f74f458d1d0a9285a58cd2 -#: ../../source/training/curriculum/curriculum.rst:517 -#: ../../source/training/curriculum/curriculum.rst:1129 -msgid "Customise the content of the legend" -msgstr "" - -# 2bc171b65ef749a096c9e17f70f2035a -# c63c727c4ce94805b60eebfb88de13c0 -#: ../../source/training/curriculum/curriculum.rst:518 -#: ../../source/training/curriculum/curriculum.rst:1130 -msgid "Export a map to different formats (pdf, jpeg, svg)" -msgstr "" - -# 01ed3d259f774d1f9bf36862881eebb6 -# 5eb64724505b4c82b3fc0f7de64a9d71 -#: ../../source/training/curriculum/curriculum.rst:510 -#: ../../source/training/curriculum/curriculum.rst:1122 -msgid "**Using Map Composer**" -msgstr "" - -# f2fa510d141442439b974c8a9cabb97f -# c6171a045b92482fa4fce88a2703d8e1 -#: ../../source/training/curriculum/curriculum.rst:512 -#: ../../source/training/curriculum/curriculum.rst:1124 -msgid "Map Composer" -msgstr "" - -# 7749feace0484821b1a9c0887ed56ad9 -# bc9911fdd5144405a02dd55ff736176d -#: ../../source/training/curriculum/curriculum.rst:513 -#: ../../source/training/curriculum/curriculum.rst:1125 -msgid "Adding new maps" -msgstr "" - -# a48d77c9ffe247fdbc58a070e6f1c461 -# 33a3a1b6d3664d1ba75c05fe99853cb7 -#: ../../source/training/curriculum/curriculum.rst:514 -#: ../../source/training/curriculum/curriculum.rst:1126 -msgid "Adding a title to the map" -msgstr "" - -# 181ec98cdfc6474d82f7fc2faa953901 -# 04dbc8fb95d342108b58f37ed658c4f0 -#: ../../source/training/curriculum/curriculum.rst:515 -#: ../../source/training/curriculum/curriculum.rst:1127 -msgid "Adding scale" -msgstr "" - -# 681e30d53e5d4dc1847372a3fd641c55 -# 8defa954f7e64d5ea5e36704bb419ecb -#: ../../source/training/curriculum/curriculum.rst:516 -#: ../../source/training/curriculum/curriculum.rst:1128 -msgid "Adding grids" -msgstr "" - -# d92131f0ed7441b6b4f6a6a3d21e045b -# b818e727dbe74cf9b29566f5c99b99ea -# 9a25a82615a0439fb27bda2c767846e5 -# 28a78ab768a04d3dbebf439e7d5c9e86 -#: ../../source/training/curriculum/curriculum.rst:517 -#: ../../source/training/curriculum/curriculum.rst:1129 -msgid "Adding inset" -msgstr "" - -# 2410ad61e6604eaa972c71f454a87b97 -# ef3373a8d2b5463998026c3d84e63e95 -#: ../../source/training/curriculum/curriculum.rst:518 -#: ../../source/training/curriculum/curriculum.rst:1130 -msgid "Adding legend" -msgstr "" - -# a226b3fb010e4ff4b1eff60de1fba944 -# 8325abdd73ef445691cb2bb503feea13 -#: ../../source/training/curriculum/curriculum.rst:519 -#: ../../source/training/curriculum/curriculum.rst:1131 -msgid "Printing the map" -msgstr "" - -# 4aa6da87d2c54f35a25e3c6f7a2cd78d -#: ../../source/training/curriculum/curriculum.rst:522 -msgid "Understand the concept of hazard, exposure and impact data" -msgstr "" - -# 613bf211cecb4e249bf93d30b12c74ee -# 375e3bb51f0f4287b3a293fc5b5495ff -#: ../../source/training/curriculum/curriculum.rst:523 -#: ../../source/training/curriculum/curriculum.rst:1137 -msgid "Understand how to determine impact" -msgstr "" - -# 11b75354eec04aa197edc9abcfdc0f09 -# 2604ec0096024b4cb248f110ec4013f5 -#: ../../source/training/curriculum/curriculum.rst:524 -#: ../../source/training/curriculum/curriculum.rst:1138 -msgid "Understand the |project_name| interface" -msgstr "" - -# e961d61089b041cb90c2b2f901b92d85 -# aef9b549b0a842c592c44b027dda1f2c -#: ../../source/training/curriculum/curriculum.rst:525 -#: ../../source/training/curriculum/curriculum.rst:1139 -msgid "Add hazard data" -msgstr "" - -# 493af21b3c0a4d72985588c330a611db -# 5f0af60021c748e1a44605fd5932b488 -#: ../../source/training/curriculum/curriculum.rst:526 -#: ../../source/training/curriculum/curriculum.rst:1140 -msgid "Add unprocessed exposure data (vector and raster)" -msgstr "" - -# c0aa1823572a451abab08efc2e784d97 -# de829272c9584bdcbbbd95d95854273a -#: ../../source/training/curriculum/curriculum.rst:527 -#: ../../source/training/curriculum/curriculum.rst:1141 -msgid "Use the keywords editor" -msgstr "" - -# 11095a7267a34837a21358776d892425 -# 0dd0b264fbdb43b289c5c324fa72f3a2 -#: ../../source/training/curriculum/curriculum.rst:528 -#: ../../source/training/curriculum/curriculum.rst:1142 -msgid "Analyse impact" -msgstr "" - -# 5ea89f839de944ce8319aacb5c0c2c86 -# d1941c06fc044abab1c62774719e4055 -#: ../../source/training/curriculum/curriculum.rst:529 -#: ../../source/training/curriculum/curriculum.rst:1143 -msgid "Improve |project_name| output map" -msgstr "" - -# 334a35b3f22044d482866e9a2c06c5d0 -# 739e995259e94fc2823e3412f4de2df2 -#: ../../source/training/curriculum/curriculum.rst:530 -#: ../../source/training/curriculum/curriculum.rst:1144 -msgid "Save and print scenario results" -msgstr "" - -# bc5c6b2566b84af6bfc5951b51782963 -# 124033ac80fd482db694833fa94e0e11 -#: ../../source/training/curriculum/curriculum.rst:521 -#: ../../source/training/curriculum/curriculum.rst:1135 -msgid "**Understanding InaSAFE**" -msgstr "" - -# c1a961c269d84e7194f10f8c841429f8 -# a864796154da4de5b7fbf2d61192d0ef -#: ../../source/training/curriculum/curriculum.rst:523 -#: ../../source/training/curriculum/curriculum.rst:1137 -msgid "Hazard, Exposure, Impact" -msgstr "" - -# 95340e1b319b4db8aa9f9d94453cd7b9 -#: ../../source/training/curriculum/curriculum.rst:524 -msgid "|project_name| interface" -msgstr "" - -# 8df4d136a93a4a02aff7e30138475859 -# d3e5fdd0b6034e2ea1cd72fa2e39dbd2 -# fdd0985fc2ba42d09bb3dffb30e50595 -# d942a7eefcf24e178d1bfce0ae616742 -#: ../../source/training/curriculum/curriculum.rst:525 -#: ../../source/training/curriculum/curriculum.rst:1139 -msgid "Adding hazard data" -msgstr "" - -# 3069efbb16394dd18d45673cead2399d -# c481671afaf64dacbfda2ec427987372 -#: ../../source/training/curriculum/curriculum.rst:526 -#: ../../source/training/curriculum/curriculum.rst:1140 -msgid "Adding exposure data" -msgstr "" - -# 7d4da674e85447a19649fe8b8b0a98ad -# e6d987daf89a42019b92f1ad812720dc -#: ../../source/training/curriculum/curriculum.rst:527 -#: ../../source/training/curriculum/curriculum.rst:1141 -msgid "Adding keyword in metadata" -msgstr "" - -# 3912894d792a4d3899dceb898f69e57b -# b5979a19efc346649e35993f3ee07f6b -#: ../../source/training/curriculum/curriculum.rst:528 -#: ../../source/training/curriculum/curriculum.rst:1142 -msgid "Impact analysis" -msgstr "" - -# 362c06d0eb2e4e9995d222cf63a6927b -#: ../../source/training/curriculum/curriculum.rst:529 -msgid "Improving |project_name| maps output" -msgstr "" - -# 43d5b2d8f1a1463c9bf3bff6f871e8b6 -# 4f8d05df19f94180ae375fb07da76f1f -#: ../../source/training/curriculum/curriculum.rst:530 -#: ../../source/training/curriculum/curriculum.rst:1144 -msgid "Using print button" -msgstr "" - -# 6972eded8aad4b1887601f3e45fef2e3 -# 93a78d5dbee04b4c97c301d966e71fee -#: ../../source/training/curriculum/curriculum.rst:531 -#: ../../source/training/curriculum/curriculum.rst:1145 -msgid "Saving your work" -msgstr "" - -# 0f7da12ce2b140a99ee71f94faedf7b1 -# e0b311fa2b3a4438a9690b86bd2a1847 -#: ../../source/training/curriculum/curriculum.rst:534 -#: ../../source/training/curriculum/curriculum.rst:1150 -msgid "Use social media to connect with |project_name| community" -msgstr "" - -# 4b843496972b4d0d88f6cef17e86d226 -# c463182e1fb14e4d9c56cb92273c57fe -#: ../../source/training/curriculum/curriculum.rst:535 -#: ../../source/training/curriculum/curriculum.rst:1151 -msgid "Access QGIS tutorial website" -msgstr "" - -# 39e6f9d0812e422f82b01462e40636dd -# 387730bece614b449455f255fc63cee3 -#: ../../source/training/curriculum/curriculum.rst:533 -#: ../../source/training/curriculum/curriculum.rst:1149 -msgid "**Getting Support**" -msgstr "" - -# cc128e2148f64e3da134c844094c837d -# 48a82a7986ef48178f05aa7b5b0366a9 -#: ../../source/training/curriculum/curriculum.rst:535 -#: ../../source/training/curriculum/curriculum.rst:1151 -msgid "Facebook" -msgstr "" - -# bc0dfd757f5844cdbeedbf3ca9b042aa -# 4ec37befd2e545e3978d7ce595fa93c2 -#: ../../source/training/curriculum/curriculum.rst:536 -#: ../../source/training/curriculum/curriculum.rst:1152 -msgid "QGIS tutorials" -msgstr "" - -# ca1ce8978ed748cb81f29f18e77b3152 -#: ../../source/training/curriculum/curriculum.rst:539 -msgid "**Data Collection Using OSM Intermediate Level**" -msgstr "" - -# cd275969251b477b9912b6fe214a208d -# 5fd83ba316cb4ceca2dbd1df3f638116 -#: ../../source/training/curriculum/curriculum.rst:541 -#: ../../source/training/curriculum/curriculum.rst:1157 -msgid "**Standard Competency:** Quality Assurance in OSM mapping" -msgstr "" - -# cd8066fe9be443c1a0ecdc7bb3c2b60b -# 14c10bae62d64c3ab305bf4e9e0e57ea -#: ../../source/training/curriculum/curriculum.rst:547 -#: ../../source/training/curriculum/curriculum.rst:1165 -msgid "" -"Apply better digitising technique for improving quality of collected data." -msgstr "" - -# d05f18fe7fac44b6930b24248e6e312c -# 740e0c96986b4fbfb4b7401ffecd83fd -#: ../../source/training/curriculum/curriculum.rst:548 -#: ../../source/training/curriculum/curriculum.rst:1166 -msgid "Use advanced editing tools in JOSM" -msgstr "" - -# 795a4d9e358f44df973a2ee772c00a68 -#: ../../source/training/curriculum/curriculum.rst:549 -msgid "Make relations among objects" -msgstr "" - -# 5246c9f110074fcd972b834faee1ba7d -# 10c282e6470a4c098bdb3234d258c5c4 -#: ../../source/training/curriculum/curriculum.rst:547 -#: ../../source/training/curriculum/curriculum.rst:1165 -msgid "**Advanced Editing**" -msgstr "" - -# b21fc4e56c474f69a2faae9ce0515e52 -# f186b143bc054a628850b9f166b3659c -#: ../../source/training/curriculum/curriculum.rst:549 -#: ../../source/training/curriculum/curriculum.rst:1167 -msgid "Advanced editing tools" -msgstr "" - -# 1d9b60c6bfff4e48adefed064c1e82b3 -# 16b05d33447e401d96e66dade1b4ff5f -#: ../../source/training/curriculum/curriculum.rst:551 -#: ../../source/training/curriculum/curriculum.rst:1169 -msgid "Default drawing tools" -msgstr "" - -# 09b3327038f7494a93c024490a05d863 -# 86a3f36310ce40098aea56df7360da26 -#: ../../source/training/curriculum/curriculum.rst:554 -#: ../../source/training/curriculum/curriculum.rst:1172 -msgid "Relations" -msgstr "" - -# 11e597fe745c4707a4d501f1c137d636 -# f6a7e88c4bf6468e81808f8dd9348e1b -#: ../../source/training/curriculum/curriculum.rst:556 -#: ../../source/training/curriculum/curriculum.rst:1174 -msgid "Editing relations" -msgstr "" - -# f88ea6fe23494dd9bcfb99a6d72d956b -# 524f7f15dbbb4dfe8f7b214a648baef8 -#: ../../source/training/curriculum/curriculum.rst:557 -#: ../../source/training/curriculum/curriculum.rst:1175 -msgid "Multipolygons and linestrings" -msgstr "" - -# 08e69597ef9c4663a8a3d2b1b64f9b61 -# 10748a28d2804956ab8193399a9ee62e -#: ../../source/training/curriculum/curriculum.rst:560 -#: ../../source/training/curriculum/curriculum.rst:1180 -msgid "Use validation tools in JOSM" -msgstr "" - -# fd2131cc0cbb4009930549922d038df7 -# 16489c5dac734bc29478718372916303 -#: ../../source/training/curriculum/curriculum.rst:561 -#: ../../source/training/curriculum/curriculum.rst:1181 -msgid "Use online validation tools" -msgstr "" - -# cebe36a471bc4952b0a1a7f613b118bb -# dce2200c41cd4870a195af5a65333b17 -#: ../../source/training/curriculum/curriculum.rst:559 -#: ../../source/training/curriculum/curriculum.rst:1179 -msgid "**Quality Assurance**" -msgstr "" - -# 3233012b11e64c20a83d927243541e3b -# b77a1d3410314d19a7cee7dd5eb59c84 -#: ../../source/training/curriculum/curriculum.rst:561 -#: ../../source/training/curriculum/curriculum.rst:1181 -msgid "Error and warnings" -msgstr "" - -# 3d478387ffda4cb6ad17541be35e5410 -# fb45c60ee57c43c7935d1d0b67e9418e -#: ../../source/training/curriculum/curriculum.rst:562 -#: ../../source/training/curriculum/curriculum.rst:1182 -msgid "Using the validation tool" -msgstr "" - -# 9b20dc9007514007b3f93e0a47f4a445 -# 3459c19b751942caabc34b3b780b7d15 -#: ../../source/training/curriculum/curriculum.rst:563 -#: ../../source/training/curriculum/curriculum.rst:1183 -msgid "Common validation warnings" -msgstr "" - -# 09c0b1693cba4da8804723ca39c7cd53 -# dfcdebf8d6974409b859fb92e05bd455 -#: ../../source/training/curriculum/curriculum.rst:564 -#: ../../source/training/curriculum/curriculum.rst:1184 -msgid "Using the tasking manager" -msgstr "" - -# 1047cf14c64e458ebce7111057f00113 -# 1c42776421b94791a4cc68fce2c08482 -#: ../../source/training/curriculum/curriculum.rst:565 -#: ../../source/training/curriculum/curriculum.rst:1185 -msgid "Editing tips" -msgstr "" - -# a74eca84448a42e7bb55f5634209a979 -# 95751db566c64eb6b2d36a726dafccdf -#: ../../source/training/curriculum/curriculum.rst:566 -#: ../../source/training/curriculum/curriculum.rst:1186 -msgid "Presets standardisation" -msgstr "" - -# 392085821b5243d9b831636069d935db -# 36db3614a29a48278a816cf933e1a9ad -#: ../../source/training/curriculum/curriculum.rst:567 -#: ../../source/training/curriculum/curriculum.rst:1187 -msgid "KeepRight" -msgstr "" - -# d5eaf7e38f3c498e994cf563febd6a08 -# d8e283a9c1624ee387bcbbfd96a2d2a6 -#: ../../source/training/curriculum/curriculum.rst:570 -#: ../../source/training/curriculum/curriculum.rst:1192 -msgid "Identify conflicts" -msgstr "" - -# 5a201aa344a844fc941ba83bdef3cecd -# f0d2924e903345bfbf14383a39d6bd89 -#: ../../source/training/curriculum/curriculum.rst:571 -#: ../../source/training/curriculum/curriculum.rst:1193 -msgid "Understand why conflicts occur" -msgstr "" - -# 9acbff585271481c8a95618517b9a1eb -# 41540c634bf9446193e67416e0c0f9f0 -#: ../../source/training/curriculum/curriculum.rst:572 -#: ../../source/training/curriculum/curriculum.rst:1194 -msgid "Solve conflicts" -msgstr "" - -# 3d809bec61f348c09c80d82b92bd1fc9 -# aae6536a26d740be9be0f819dc3ca376 -#: ../../source/training/curriculum/curriculum.rst:569 -#: ../../source/training/curriculum/curriculum.rst:1191 -msgid "**Dealing with Conflicts**" -msgstr "" - -# 7b674357ba68489e8e89b067d4b71a5b -# 27e3bd2ee2f7446f8c305d0ba7c01b00 -#: ../../source/training/curriculum/curriculum.rst:571 -#: ../../source/training/curriculum/curriculum.rst:1193 -msgid "Conflicts" -msgstr "" - -# c501640199b0407691471d42cc0b1f9c -# 436f1a38b4a446a59498e61b80e69676 -#: ../../source/training/curriculum/curriculum.rst:572 -#: ../../source/training/curriculum/curriculum.rst:1194 -msgid "Conflict resolution" -msgstr "" - -# caa656ef72984a72a142f7c159a7c1cc -# 8a059b43dfc649848c84b720dee2ed80 -#: ../../source/training/curriculum/curriculum.rst:573 -#: ../../source/training/curriculum/curriculum.rst:1195 -msgid "Ways to avoid conflicts" -msgstr "" - -# 54eadb22b9ad4dd49489895dd09246e2 -# c084e274049f47fb8ca764cabc1e4483 -#: ../../source/training/curriculum/curriculum.rst:576 -#: ../../source/training/curriculum/curriculum.rst:1201 -msgid "Understand tags" -msgstr "" - -# 64d1880dbd244700ae7d46c8a9bb8ef2 -# b6bc41c784574f41ad0ca7b2472163e1 -#: ../../source/training/curriculum/curriculum.rst:577 -#: ../../source/training/curriculum/curriculum.rst:1202 -msgid "Understand XML" -msgstr "" - -# 8bf5b6a432264c48907d4c3779ba82ea -# 9106ddfd576c42e8988211dafe721f20 -#: ../../source/training/curriculum/curriculum.rst:578 -#: ../../source/training/curriculum/curriculum.rst:1203 -msgid "Understand keys and values" -msgstr "" - -# c92dded439164fecb5f445be621bf77e -# 6d09e4bdcb9c49ad99dd9a0fd22c0344 -#: ../../source/training/curriculum/curriculum.rst:579 -#: ../../source/training/curriculum/curriculum.rst:1204 -msgid "Make presets" -msgstr "" - -# 9fae4d200658451d984f2f26451b27aa -# d3802c5708e04f1ca21b582bc3a3d5c0 -#: ../../source/training/curriculum/curriculum.rst:580 -#: ../../source/training/curriculum/curriculum.rst:1205 -msgid "Put preset files into JOSM" -msgstr "" - -# e1d736e897a947d7a8781c6943f3535c -# 659da0151007474b83650bf5dccc4035 -#: ../../source/training/curriculum/curriculum.rst:581 -#: ../../source/training/curriculum/curriculum.rst:1206 -msgid "Apply new presets to an object" -msgstr "" - -# 40ef1236d9e9486980f5f3bb69e69c19 -# 1816b0ceee444fe6a0688be22664de85 -#: ../../source/training/curriculum/curriculum.rst:575 -#: ../../source/training/curriculum/curriculum.rst:1200 -msgid "**Creating JOSM File Presets**" -msgstr "" - -# 1004a06e12064848a3a246e867f7a986 -# e5d234a50af247d1a163477af2005614 -#: ../../source/training/curriculum/curriculum.rst:577 -#: ../../source/training/curriculum/curriculum.rst:1202 -msgid "Tags and presets" -msgstr "" - -# 4e4a7f7f85314499b5218f5bf5946933 -# 340f88c264eb43eb8cb3984484dc40a4 -#: ../../source/training/curriculum/curriculum.rst:578 -#: ../../source/training/curriculum/curriculum.rst:1203 -msgid "Introduction to XML" -msgstr "" - -# e9bba647a9d24d7caedad2c4c579e08b -# ffd4c19daf984aefa3b91620c3dcbe59 -#: ../../source/training/curriculum/curriculum.rst:579 -#: ../../source/training/curriculum/curriculum.rst:1204 -msgid "JOSM presets files" -msgstr "" - -# 28b0894ac42d423bb8319d878dca0723 -# cd59f322636442d0ac89128a334a4474 -#: ../../source/training/curriculum/curriculum.rst:585 -#: ../../source/training/curriculum/curriculum.rst:1212 -msgid "Understand the functions of the Separate Data Store (SDS)" -msgstr "" - -# 72bc5b3958cd4d8aa0465c79d4b3d263 -# e68d25b7727143b1b9ba4eefdffadacf -#: ../../source/training/curriculum/curriculum.rst:586 -#: ../../source/training/curriculum/curriculum.rst:1213 -msgid "Understand what data should be kept publicly and what should be private" -msgstr "" - -# 819b4fbd217243c4991840e5508769a8 -# 20d03003ba9d40e5929aeba217f5de86 -#: ../../source/training/curriculum/curriculum.rst:588 -#: ../../source/training/curriculum/curriculum.rst:1215 -msgid "Install SDS plugin in JOSM" -msgstr "" - -# c4ac1741dd244b619e194f8bc77231ac -# ef6c76ca302740a987216d0ac1577fd2 -#: ../../source/training/curriculum/curriculum.rst:589 -#: ../../source/training/curriculum/curriculum.rst:1216 -msgid "Use SDS presets" -msgstr "" - -# 17f4a94c5d9e44039817d835e11d82b0 -# 004a7ca249da460da8ede26b40923ce0 -#: ../../source/training/curriculum/curriculum.rst:590 -#: ../../source/training/curriculum/curriculum.rst:1217 -msgid "Use SDS plugin for selecting public and private data" -msgstr "" - -# c462bdb447214e05af523e3f0328aefd -# 3efce36e54034191b645cd90fcefd91e -#: ../../source/training/curriculum/curriculum.rst:591 -#: ../../source/training/curriculum/curriculum.rst:1218 -msgid "Access online datastore" -msgstr "" - -# acc81e4bb1c34ad58cc2b7fa6232120e -# ab0de8293b0a4116bb2749a467c5f9d5 -#: ../../source/training/curriculum/curriculum.rst:584 -#: ../../source/training/curriculum/curriculum.rst:1211 -msgid "**Using the Separate Data Store**" -msgstr "" - -# 2947179b1d4047bca1c24fb9e0fa554f -# 944e43880d084f70bda2868b97b25c86 -#: ../../source/training/curriculum/curriculum.rst:586 -#: ../../source/training/curriculum/curriculum.rst:1213 -msgid "Installing the SDS plugin" -msgstr "" - -# 3fc0322ecffd4694be79b6d8b37190bc -# 093912413a7849f9bda1ee782cf34164 -#: ../../source/training/curriculum/curriculum.rst:587 -#: ../../source/training/curriculum/curriculum.rst:1214 -msgid "Using the plugin" -msgstr "" - -# 9552df195e724ad0a9c7cb3e2be58b62 -# b94d8062e3214ceea8b4131916679ba3 -#: ../../source/training/curriculum/curriculum.rst:588 -#: ../../source/training/curriculum/curriculum.rst:1215 -msgid "How it works" -msgstr "" - -# bfca6809c6b6443a88f292832b252033 -# f89b161765194e31a2d460acac511747 -#: ../../source/training/curriculum/curriculum.rst:589 -#: ../../source/training/curriculum/curriculum.rst:1216 -msgid "Accessing the datastore online" -msgstr "" - -# ba007549dc5241979e28be0dad7f34cc -# 33d858216d824476b7276539e9c76dfe -#: ../../source/training/curriculum/curriculum.rst:593 -#: ../../source/training/curriculum/curriculum.rst:1227 -msgid "Create and edit pages in OSM wiki" -msgstr "" - -# 9e0ba16c1f43466cbd944e46c2f8271d -# bff14c3bb703471682277ffe82dcc0dd -#: ../../source/training/curriculum/curriculum.rst:595 -#: ../../source/training/curriculum/curriculum.rst:1229 -msgid "Make an account on the OpenStreetMap wiki" -msgstr "" - -# 910b3617d3804ac68473fd1e9ef36ad2 -# 294a82e0872340a7acd3507633d38b90 -#: ../../source/training/curriculum/curriculum.rst:596 -#: ../../source/training/curriculum/curriculum.rst:1230 -msgid "Understand conventions and rules in developing a wiki page" -msgstr "" - -# 7c5d9cfd687f4faa85a03b3bf37df98d -# 3b93fe947da949b79ca3abc794258b04 -#: ../../source/training/curriculum/curriculum.rst:597 -#: ../../source/training/curriculum/curriculum.rst:1231 -msgid "Edit the wiki" -msgstr "" - -# 9f9b18833f9a42b3ac92208e1ba28154 -# d268be6ababf41d9bbdd13314c6637ed -#: ../../source/training/curriculum/curriculum.rst:598 -#: ../../source/training/curriculum/curriculum.rst:1232 -msgid "Upload files and images" -msgstr "" - -# e56885924dc94fb0a0b4dc5bc6c4e5ed -# 60be66ccac19449ba28d99a824b4025b -#: ../../source/training/curriculum/curriculum.rst:599 -#: ../../source/training/curriculum/curriculum.rst:1233 -msgid "Translate and revise wiki" -msgstr "" - -# eeb51b222ded4b58b1c9a506cc0836e1 -# ae444569ad7d40cc8856e3c0823e7ca2 -#: ../../source/training/curriculum/curriculum.rst:593 -#: ../../source/training/curriculum/curriculum.rst:1227 -msgid "**Editing the OpenStreetMap Wiki**" -msgstr "" - -# 763aafb408fd4cfb983fa5be3191b103 -# 3170bfabd2994c39a35f5ca34e49e9c7 -#: ../../source/training/curriculum/curriculum.rst:595 -#: ../../source/training/curriculum/curriculum.rst:1229 -msgid "OSM wiki" -msgstr "" - -# a1b5b714e6c9427b93826b93c6249439 -# ba2da2abb08e4ced8bd89c7fe3a4f10a -#: ../../source/training/curriculum/curriculum.rst:596 -#: ../../source/training/curriculum/curriculum.rst:1230 -msgid "Signing up" -msgstr "" - -# 3035d99b52e94ac3ad135a6e91d9b113 -# d64628f3ff7a4f11a9b81910fc540268 -#: ../../source/training/curriculum/curriculum.rst:597 -#: ../../source/training/curriculum/curriculum.rst:1231 -msgid "Editing" -msgstr "" - -# 81361ee6ddbe4d118275517b91e92707 -# 1a1bfd18ce9f42a59d6ea0f587e87ea2 -#: ../../source/training/curriculum/curriculum.rst:598 -#: ../../source/training/curriculum/curriculum.rst:1232 -msgid "Wiki formatting" -msgstr "" - -# 3b43dc70f0c6426eabbdb93f2682dc9e -# b1d97126857041dd873dfa4248fc1b1d -#: ../../source/training/curriculum/curriculum.rst:599 -#: ../../source/training/curriculum/curriculum.rst:1233 -msgid "Creating a new page" -msgstr "" - -# 8019184597674c4ea7d0ea8ca4523e5f -# 82c38052ceab4876be9a3c36225f5226 -#: ../../source/training/curriculum/curriculum.rst:600 -#: ../../source/training/curriculum/curriculum.rst:1234 -msgid "Uploading files and images" -msgstr "" - -# ac3f154dda8845e4b2f6f142bdc00e5b -# d8105d3985a64867b10689bf180c30f4 -#: ../../source/training/curriculum/curriculum.rst:601 -#: ../../source/training/curriculum/curriculum.rst:1235 -msgid "Translating pages" -msgstr "" - -# aeacf0ad872b4c61bdf95d44073c66b8 -# 0024489df59c4068b33572bb2731f444 -#: ../../source/training/curriculum/curriculum.rst:602 -#: ../../source/training/curriculum/curriculum.rst:1236 -msgid "Watching pages" -msgstr "" - -# 31db926fa4154ccfaa816bf575498876 -#: ../../source/training/curriculum/curriculum.rst:605 -msgid "**Data Analysis using QGIS and** |project_name| **Intermediate Level**" -msgstr "" - -# ec54fb1adcbf4638b0cbd57637da2a16 -# e5a43c4df4c044d686d7ab72a237d755 -#: ../../source/training/curriculum/curriculum.rst:607 -#: ../../source/training/curriculum/curriculum.rst:1241 -msgid "" -"**Standard Competency:** Spatial Data Analysis using QGIS and |project_name| " -"for Contingency Planning" -msgstr "" - -# a7cd8bc9e6a446c3995bdc0620293a2d -# d488604501e0408da2245cdc263e3309 -#: ../../source/training/curriculum/curriculum.rst:614 -#: ../../source/training/curriculum/curriculum.rst:1250 -msgid "Identify data types in QGIS" -msgstr "" - -# ff97f75ce1d54ff38ad168f2a2696d51 -# 82da06bc0a6e45a4bbd88902082333c6 -#: ../../source/training/curriculum/curriculum.rst:615 -#: ../../source/training/curriculum/curriculum.rst:1251 -msgid "Understand symbology" -msgstr "" - -# f478d7ac3cf94169b6ebc9b2b21474df -# 7c476998ab0341318fceaa4401229a11 -#: ../../source/training/curriculum/curriculum.rst:616 -#: ../../source/training/curriculum/curriculum.rst:1252 -msgid "Understand map layout" -msgstr "" - -# 2fcfc1f820a048f6bb36dfe4eb4f995d -# 36430b77d39c43acbdaf6fc50b643716 -#: ../../source/training/curriculum/curriculum.rst:613 -#: ../../source/training/curriculum/curriculum.rst:1249 -msgid "**QGIS Review**" -msgstr "" - -# c5e201797d0a4136928d3cb715404a27 -# 4a10e44a854743e795fab86fd21fa6fb -#: ../../source/training/curriculum/curriculum.rst:615 -#: ../../source/training/curriculum/curriculum.rst:1251 -msgid "Data types in QGIS" -msgstr "" - -# b029c2b262d24ea2bd6fde93cbef743d -# 9258913713b54234a73031e37f771713 -#: ../../source/training/curriculum/curriculum.rst:616 -#: ../../source/training/curriculum/curriculum.rst:1252 -msgid "Symbolising data" -msgstr "" - -# 82c146adddd74177ae4db0bc6e88db87 -# c6fb2af07ee14d958c67a98d7b99d5e4 -#: ../../source/training/curriculum/curriculum.rst:617 -#: ../../source/training/curriculum/curriculum.rst:1253 -msgid "Map layout" -msgstr "" - -# f7fe888ed64d45f7b18b820f29067bf7 -# f008118a08e5487d850a79442130487b -#: ../../source/training/curriculum/curriculum.rst:620 -#: ../../source/training/curriculum/curriculum.rst:1258 -msgid "Understand |project_name| inputs" -msgstr "" - -# d0fd6d604a944283b8bcb5d5390f16f0 -# 755a728ca2b14d1ea8e7de2ef2d1dd95 -#: ../../source/training/curriculum/curriculum.rst:621 -#: ../../source/training/curriculum/curriculum.rst:1259 -msgid "Get OSM data from the HOT export server" -msgstr "" - -# b2a381afe1bc42949e6a266544113a2a -# fe65f99cda4a43a3aa68222724e6394b -#: ../../source/training/curriculum/curriculum.rst:622 -#: ../../source/training/curriculum/curriculum.rst:1260 -msgid "Load data into |project_name|" -msgstr "" - -# 8afebf58ae65438fae8648acc4c756ae -# b352c56e4a854afd845dd51803b8b42f -# e24b58c2a29f44be9845506ffb771a9c -# 20c2efdf40de4173b73caec4ee5f600b -#: ../../source/training/curriculum/curriculum.rst:623 -#: ../../source/training/curriculum/curriculum.rst:1261 -msgid "Add keywords" -msgstr "" - -# 2fdbd9a57cd042e79f2eca1cf6251032 -# 7807ccf0dd494438898f935a39ea6d20 -#: ../../source/training/curriculum/curriculum.rst:624 -#: ../../source/training/curriculum/curriculum.rst:1262 -msgid "Prepare the hazard layer" -msgstr "" - -# 72aeba45cca64d98a10f767377b4de6c -# 70acc39e9b7c4f0084d53e34e12e8175 -#: ../../source/training/curriculum/curriculum.rst:625 -#: ../../source/training/curriculum/curriculum.rst:1263 -msgid "Run |project_name|" -msgstr "" - -# 8e370edc7fae4ae08c90e6e9786a8d06 -#: ../../source/training/curriculum/curriculum.rst:619 -msgid "**Preparing data and keywords for** |project_name|" -msgstr "" - -# 71bf079d4233440ba2d7e3426691760f -# a1f6b5eaf5694f4d8f6bc8fe8b05e4d4 -#: ../../source/training/curriculum/curriculum.rst:621 -#: ../../source/training/curriculum/curriculum.rst:1259 -msgid "|project_name| inputs" -msgstr "" - -# 8d700546d3c148c98da45bf887ca4b87 -# 92e50fe3db5d4ba5825fdaa2e165170e -#: ../../source/training/curriculum/curriculum.rst:622 -#: ../../source/training/curriculum/curriculum.rst:1260 -msgid "Getting OSM data from HOT Exports" -msgstr "" - -# 3273475aeb614cc38f63899d8a86bc10 -# 6686d792f29a482093f44a35405918c6 -#: ../../source/training/curriculum/curriculum.rst:623 -#: ../../source/training/curriculum/curriculum.rst:1261 -msgid "Loading data" -msgstr "" - -# 5788b896442e4119be144aae59cbb839 -# fe0c4a41f40c4e51bae7e7981ff9788e -#: ../../source/training/curriculum/curriculum.rst:624 -#: ../../source/training/curriculum/curriculum.rst:1262 -msgid "Adding keywords" -msgstr "" - -# 77d525db785c4010a40f70d4a30b448a -# 8035ac61ba734534a22a678e20ac0eeb -#: ../../source/training/curriculum/curriculum.rst:625 -#: ../../source/training/curriculum/curriculum.rst:1263 -msgid "Preparing a hazard layer" -msgstr "" - -# a238537f6c884de19cf53f044893ec05 -# 69611ce691b44da4a0149eb935b90d72 -#: ../../source/training/curriculum/curriculum.rst:626 -#: ../../source/training/curriculum/curriculum.rst:1264 -msgid "Running |project_name|" -msgstr "" - -# 445a6f7a5b5948fda78765d979b8e3ea -# 86bbddee39fb4e74a1ee547920abbe7b -#: ../../source/training/curriculum/curriculum.rst:629 -#: ../../source/training/curriculum/curriculum.rst:1270 -msgid "Develop criteria for determining an ideal IDP camp location" -msgstr "" - -# c69594daa63e44e59d321de5686eb693 -# ba67a89a20714d459304014661e9cf31 -#: ../../source/training/curriculum/curriculum.rst:631 -#: ../../source/training/curriculum/curriculum.rst:1272 -msgid "Use geoprocessing tools" -msgstr "" - -# f3c9b3d1d47948a3809ee2849d06f82b -# 11f6bd8867694046aa39e277ee9169fc -#: ../../source/training/curriculum/curriculum.rst:632 -#: ../../source/training/curriculum/curriculum.rst:1273 -msgid "" -"Use various spatial queries: contains, within, equal, intersect and is " -"disjoint" -msgstr "" - -# 9ab639b0e9a044839e05c6264b2f521c -# 7ac13e77a3f94771abbe3db13c8e1471 -#: ../../source/training/curriculum/curriculum.rst:634 -#: ../../source/training/curriculum/curriculum.rst:1275 -msgid "" -"Combine geoprocessing tools and spatial queries to select building(s) for " -"temporary IDP camps" -msgstr "" - -# 20eb38a5cb5143c9b1605814bfb2ed56 -# 400d1927c666455193d6a1dd63a57bee -#: ../../source/training/curriculum/curriculum.rst:628 -#: ../../source/training/curriculum/curriculum.rst:1269 -msgid "**Determining IDP Camp Location**" -msgstr "" - -# 850278cf72ce44d1b9b713f8493773f4 -# a9b5e8296f74446ea06bbaa64d4675fd -#: ../../source/training/curriculum/curriculum.rst:630 -#: ../../source/training/curriculum/curriculum.rst:1271 -msgid "Geoprocessing tools" -msgstr "" - -# 0b770fcf10854d86a0f8e6dc31f66372 -# f2722f7739c04799b07b5d1072474e5c -#: ../../source/training/curriculum/curriculum.rst:631 -#: ../../source/training/curriculum/curriculum.rst:1272 -msgid "Spatial queries" -msgstr "" - -# fdd416da85aa49f2a800222c10263212 -# 3caf43ee504045fe840eb3c40a9cff4e -#: ../../source/training/curriculum/curriculum.rst:632 -#: ../../source/training/curriculum/curriculum.rst:1273 -msgid "IDP camp criteria and data" -msgstr "" - -# d512e90f10d9466c975f01754658e133 -# 3a7074f37269496cbab3e9dd8d2a0a01 -#: ../../source/training/curriculum/curriculum.rst:633 -#: ../../source/training/curriculum/curriculum.rst:1274 -msgid "Criteria #1: building must be outside affected area" -msgstr "" - -# 18fe209458be409d8fcd15f2310a882c -# e4097b1cc8f04e34a190eb5333b666f2 -#: ../../source/training/curriculum/curriculum.rst:635 -#: ../../source/training/curriculum/curriculum.rst:1276 -msgid "" -"Criteria #2: location must have direct access to a primary/secondary road " -"within 20 metres" -msgstr "" - -# 612026d51e8e4b8a90843b34a45a75df -# 942eae00e05e43f09158ad92b045898c -#: ../../source/training/curriculum/curriculum.rst:637 -#: ../../source/training/curriculum/curriculum.rst:1278 -msgid "Criteria #3: building must have an area of at least 225 square metres" -msgstr "" - -# 3888c2ebd66c4f76bad44b2c809d1853 -# 67922ddcbe3f4031ba0ec851ac95e9ac -#: ../../source/training/curriculum/curriculum.rst:641 -#: ../../source/training/curriculum/curriculum.rst:1284 -msgid "Understand the concept of shortest path and fastest route" -msgstr "" - -# 34580bcdc8e045f6ab9f006f6f465195 -# 464b1c0dfe0c46b3b0e943995151957d -#: ../../source/training/curriculum/curriculum.rst:642 -#: ../../source/training/curriculum/curriculum.rst:1285 -msgid "Use the Road Graph plugin" -msgstr "" - -# 942bb980ae8c4b5ea45ac4e949ba71b2 -# f70fa44194de418d9283acb63f2425c2 -#: ../../source/training/curriculum/curriculum.rst:643 -#: ../../source/training/curriculum/curriculum.rst:1286 -msgid "Set up speed and road direction" -msgstr "" - -# 3210ff2239df45e291a44b22ae0bf1ec -# e1bb173536ad4abd8ce84258cb770fca -#: ../../source/training/curriculum/curriculum.rst:644 -#: ../../source/training/curriculum/curriculum.rst:1287 -msgid "Determine start and destination points" -msgstr "" - -# a8be621f9f0b45a78f2551fe77184e3c -# fe1acd4bec0d4a3e88d8ead299c58dc4 -#: ../../source/training/curriculum/curriculum.rst:645 -#: ../../source/training/curriculum/curriculum.rst:1288 -msgid "Conduct route analysis and selection" -msgstr "" - -# 5c1466d81d7a45269b31d6f19106019b -# ce1177ef64c2413bb963a82fb2a9d853 -#: ../../source/training/curriculum/curriculum.rst:640 -#: ../../source/training/curriculum/curriculum.rst:1283 -msgid "**Planning an Evacuation Route**" -msgstr "" - -# 4066ad16d6944b19b50f484f0f899ccd -# 059812aa5455473fb32f6249bcec641d -#: ../../source/training/curriculum/curriculum.rst:642 -#: ../../source/training/curriculum/curriculum.rst:1285 -msgid "Road graph plugin" -msgstr "" - -# 702089ef9a7f4f03bfa6fc73911098a1 -# 8e2a171351f54baeafbb3bea7c4dd109 -#: ../../source/training/curriculum/curriculum.rst:643 -#: ../../source/training/curriculum/curriculum.rst:1286 -msgid "Editing plugin settings" -msgstr "" - -# c642a9f7b26d4b1c8c33704fb6ab4a84 -# 83663386945f444bae9217c8ad0cf241 -#: ../../source/training/curriculum/curriculum.rst:644 -#: ../../source/training/curriculum/curriculum.rst:1287 -msgid "Choosing start and destination points" -msgstr "" - -# 6b93c93b654943e6b9e3b36e4eefb057 -# eb610c4a7759464097357540deb329df -#: ../../source/training/curriculum/curriculum.rst:648 -#: ../../source/training/curriculum/curriculum.rst:1293 -msgid "" -"Understand the definition of damages, losses and their calculation based on " -"community exposure data" -msgstr "" - -# 91ed60e43041491c886a954000969153 -# 42e7fc6360da43ea953971a0b5e8f2b9 -#: ../../source/training/curriculum/curriculum.rst:650 -#: ../../source/training/curriculum/curriculum.rst:1295 -msgid "Understand damage and losses assessment values based on BNPB and BPBD" -msgstr "" - -# 559347b346b14512979bd5c0de427c5d -# fe0de1d4d425477da0436d30272c874f -#: ../../source/training/curriculum/curriculum.rst:652 -#: ../../source/training/curriculum/curriculum.rst:1297 -msgid "Make a damage and losses map" -msgstr "" - -# df4c9f6169e443ada4631d310bcbef39 -# 40452bab0d464aebb6b6f6ae6bc83db4 -#: ../../source/training/curriculum/curriculum.rst:653 -#: ../../source/training/curriculum/curriculum.rst:1298 -msgid "Calculate damage area" -msgstr "" - -# 55e8a58410394fd68afca5e60b68ef6f -# 1dbf6c68d9e54b118fb51af31e50d36a -#: ../../source/training/curriculum/curriculum.rst:654 -#: ../../source/training/curriculum/curriculum.rst:1299 -msgid "" -"Manipulate attribute data of affected features to obtain damage values for " -"each object" -msgstr "" - -# a19d05e4622d4e7bb7d0eb796d2645e2 -# b0d6c60530dc4a2c8bd18a852ffdfde1 -#: ../../source/training/curriculum/curriculum.rst:656 -#: ../../source/training/curriculum/curriculum.rst:1301 -msgid "" -"Manipulate attribute data of affected features to obtain loss values for " -"each object" -msgstr "" - -# d366c25738694e4ea01d254b4359e850 -# d51a1d7cb8aa4a8fba12b79b78943962 -#: ../../source/training/curriculum/curriculum.rst:658 -#: ../../source/training/curriculum/curriculum.rst:1303 -msgid "" -"Group attribute data for administrative areas (hamlet village, subdistrict)" -msgstr "" - -# 8e665255b38644ae8e1483801e4cbf73 -# 10541f1ef3a84874869644888998616c -#: ../../source/training/curriculum/curriculum.rst:660 -#: ../../source/training/curriculum/curriculum.rst:1305 -msgid "" -"Combine attribute data for administrative areas (hamlet village, subdistrict)" -msgstr "" - -# 8c39d1adf791404e981a05aa6c1a249c -# 49782cfdb4b7407f94a35f4ba87553de -#: ../../source/training/curriculum/curriculum.rst:662 -#: ../../source/training/curriculum/curriculum.rst:1307 -msgid "Present damage and loss values using charts" -msgstr "" - -# 533b338a09374f0f810c63c1fa360d26 -# 393b978e8baf4b369d46b21c105e6dc8 -#: ../../source/training/curriculum/curriculum.rst:647 -#: ../../source/training/curriculum/curriculum.rst:1292 -msgid "**Calculating Damages and Losses**" -msgstr "" - -# 364336fd09eb41c1861c8992cfc00bf8 -# e6895cb76f834ef5976d6641bf9dce52 -#: ../../source/training/curriculum/curriculum.rst:649 -#: ../../source/training/curriculum/curriculum.rst:1294 -msgid "BPBD damage assessment guide" -msgstr "" - -# 635a04da06404622af0f0cdc5afe5ea7 -# 2972aa6f53904f4586f8f9a524f545ab -#: ../../source/training/curriculum/curriculum.rst:650 -#: ../../source/training/curriculum/curriculum.rst:1295 -msgid "Damage and losses assessment map" -msgstr "" - -# 6dbb6dcab2b74e63b6f15989836c16fb -# d42c57bc783547b2b4ac3f9ddc12f51e -#: ../../source/training/curriculum/curriculum.rst:651 -#: ../../source/training/curriculum/curriculum.rst:1296 -msgid "Calculating damage area" -msgstr "" - -# e1762befcf9c48ba8713049695fb3a6e -# 3c02e7c6e99a41a694f504bd4c255f03 -#: ../../source/training/curriculum/curriculum.rst:652 -#: ../../source/training/curriculum/curriculum.rst:1297 -msgid "Calculating damages using the Group Stats plugin" -msgstr "" - -# 6a21e216980042089636bea72091fe22 -# ebb738fe28d24d87ac5e08d06cd27dcf -#: ../../source/training/curriculum/curriculum.rst:653 -#: ../../source/training/curriculum/curriculum.rst:1298 -msgid "Calculating losses" -msgstr "" - -# da4484316cee43bdac1d17f8b49a4bdf -# d5a5a2673fc143ea8dc5006456a35306 -#: ../../source/training/curriculum/curriculum.rst:654 -#: ../../source/training/curriculum/curriculum.rst:1299 -msgid "Calculating losses using the Group Stats plugin" -msgstr "" - -# 52b14913314f476dae69d2ff889b8f6e -# 4bb395b31ff84a15ac98d791bff3b457 -#: ../../source/training/curriculum/curriculum.rst:655 -#: ../../source/training/curriculum/curriculum.rst:1300 -msgid "Joining data" -msgstr "" - -# 1de5f6641bd04dcb989c44ffb827b141 -# 1082c617d3d74cc1b3a7cab524eac3a2 -#: ../../source/training/curriculum/curriculum.rst:656 -#: ../../source/training/curriculum/curriculum.rst:1301 -msgid "Creating a chart" -msgstr "" - -# 16ea61af853c44f3a34845594dcf6fcd -#: ../../source/training/curriculum/curriculum.rst:665 -msgid "" -"**Training of Trainer Workshop for Contingency Planning using OSM, QGIS,** " -"**and** |project_name|" -msgstr "" - -# e638ef6fca504114ba439789c487a5f3 -#: ../../source/training/curriculum/curriculum.rst:668 -msgid "" -"**Standard Competency:** Participant can be a workshop facilitator to teach " -"Data collection and Data Analysis through OSM, QGIS and |project_name| in " -"their respective region." -msgstr "" - -# 3e3dc69a9a724b05a1a43a87760e1998 -# 7318aa448a5e4eb186a72bd455a91ad2 -#: ../../source/training/curriculum/curriculum.rst:676 -#: ../../source/training/curriculum/curriculum.rst:1322 -msgid "Explain the principles of adult learning" -msgstr "" - -# 300061975b5d46929f23b28936caa7bd -#: ../../source/training/curriculum/curriculum.rst:677 -msgid "Analyse the characteristics of adult learning" -msgstr "" - -# 7e6c84c96af04ed3b1a9cd47629729aa -#: ../../source/training/curriculum/curriculum.rst:678 -msgid "" -"Determine strategies, teaching methods or techniques that apply in adult " -"learning" -msgstr "" - -# 057468bedcf74c3fa8adf9eea3b4b0db -#: ../../source/training/curriculum/curriculum.rst:680 -msgid "Evaluate adult learning" -msgstr "" - -# 5fa27af057164b97b92bb6037140a393 -# 5c23680828d944b58218b9f4bab85cf1 -#: ../../source/training/curriculum/curriculum.rst:675 -#: ../../source/training/curriculum/curriculum.rst:1321 -msgid "**Adult Learning**" -msgstr "" - -# 8f1ac78bef264ec780dbc1570da281bf -# b7c50b3dd025466d907b942dac394e95 -#: ../../source/training/curriculum/curriculum.rst:677 -#: ../../source/training/curriculum/curriculum.rst:1323 -msgid "Principles of adult learning" -msgstr "" - -# 4f71e488c3e14c6a874f8b093aa7ea3b -# 78b49a10178e49169a7d2e2bee527e63 -#: ../../source/training/curriculum/curriculum.rst:678 -#: ../../source/training/curriculum/curriculum.rst:1324 -msgid "Characteristics of adult learning" -msgstr "" - -# c78abbdbabe746eea9f781ec6315bc54 -# 0aad13157ff246b9ac2f314c43c3aba3 -#: ../../source/training/curriculum/curriculum.rst:679 -#: ../../source/training/curriculum/curriculum.rst:1325 -msgid "Strategies, teaching methods or techniques that apply adult learning" -msgstr "" - -# e33e9ff567cd4b008edda0545863e6dc -# f16de883429e48c1970c9ba5bf0210f6 -#: ../../source/training/curriculum/curriculum.rst:681 -#: ../../source/training/curriculum/curriculum.rst:1327 -msgid "Adult learning evaluation" -msgstr "" - -# b4908eda0ba34d32aec4bb184a3c555e -# d05e8e8cadb14c7495768ed814befb4c -#: ../../source/training/curriculum/curriculum.rst:685 -#: ../../source/training/curriculum/curriculum.rst:1333 -msgid "Describe the principles of effective communication" -msgstr "" - -# dfce7d1edba44897921415826247aa90 -#: ../../source/training/curriculum/curriculum.rst:686 -msgid "Describe the communication models in workshops" -msgstr "" - -# f19a938c387843e5aae06643bb24407e -#: ../../source/training/curriculum/curriculum.rst:687 -msgid "Demonstrate the basic skills component of teaching workshops" -msgstr "" - -# 906f18c1507143abb138980bfe7375af -# 5a467946e55347408ac9e96f3a289cd0 -#: ../../source/training/curriculum/curriculum.rst:684 -#: ../../source/training/curriculum/curriculum.rst:1332 -msgid "**Communication skills**" -msgstr "" - -# 1061f8cb0f62422890b36c67d14be9a5 -# b7e131e6bc284b30be643acfd8d12856 -#: ../../source/training/curriculum/curriculum.rst:686 -#: ../../source/training/curriculum/curriculum.rst:1334 -msgid "Principles of effective communication" -msgstr "" - -# a72a05147ce84788af3dffa1022d0a43 -# 9c82df1a30214f1ab5dfffc78f6b2edb -#: ../../source/training/curriculum/curriculum.rst:687 -#: ../../source/training/curriculum/curriculum.rst:1335 -msgid "Communication models in workshop" -msgstr "" - -# b6ffd9f5fe4544dab5380a5e4bb4c954 -# 7ec5c3d4679d4b8a95a42f2a20dc5017 -#: ../../source/training/curriculum/curriculum.rst:688 -#: ../../source/training/curriculum/curriculum.rst:1336 -msgid "Basic teaching skills component" -msgstr "" - -# e293698b7ecf41579c36584fdbd8ab91 -#: ../../source/training/curriculum/curriculum.rst:690 -msgid "" -"Practise Data Collection and Analysis through OSM, QGIS, and InaSAFE workshop" -msgstr "" - -# 3c1ca7e887104b65b27ccdf467d2e48d -# f913f569c7774d3c999c802219dcd543 -#: ../../source/training/curriculum/curriculum.rst:693 -#: ../../source/training/curriculum/curriculum.rst:1343 -msgid "" -"Practise data collection and analysis through OSM, QGIS and InaSAFE workshop " -"using adult learning" -msgstr "" - -# 311ab8d4731a473dadc1f6bef57700d0 -#: ../../source/training/curriculum/curriculum.rst:695 -msgid "" -"Practise communication skills in data collection and analysis through OSM, " -"QGIS and InaSAFE workshop" -msgstr "" - -# a466edbdff7d433ab418d24556252d7c -#: ../../source/training/curriculum/curriculum.rst:690 -msgid "" -"**Facilitator Skills for Data Collection and Analysis through OSM, QGIS, and " -"InaSAFE workshop**" -msgstr "" - -# 9a6f0112bb1847c1821ebc086335d6d7 -# 42949cbf46404785a62aca2f99f1afc5 -#: ../../source/training/curriculum/curriculum.rst:693 -#: ../../source/training/curriculum/curriculum.rst:1343 -msgid "" -"Implementation of adult learning in data collection and analysis through " -"OSM, QGIS, and InaSAFE workshop" -msgstr "" - -# 4adada567ec54ceebe19ebd9a1e20beb -# 9b6afee56ebc49238b210873da15c1c4 -#: ../../source/training/curriculum/curriculum.rst:695 -#: ../../source/training/curriculum/curriculum.rst:1345 -msgid "" -"Implementation of communication skills data collection and analysis through " -"OSM, QGIS, and InaSAFE workshop" -msgstr "" - -# b98bacc1724343f998ca2b45394b265a -#: ../../source/training/curriculum/curriculum.rst:700 -msgid "F. Curriculum Structure" -msgstr "" - -# 6571b6b97012479eb5457fc0522d689a -#: ../../source/training/curriculum/curriculum.rst:702 -msgid "Based on the curriculum, program structure is designed as follows." -msgstr "" - -# e0904d946e344f2088eafbd44b1d5b91 -#: ../../source/training/curriculum/curriculum.rst:704 -msgid "**1. Data Collection Using OSM Beginner Level**" -msgstr "" - -# e0c637e8ce184a18bd7db33ceabc59f6 -# 2ffeee84f7b049ae98b3cdd874bd0db3 -# da7283093673477f9950dc1c84c9c4a7 -# ae1a6543ee5f4f0a8c8bd67f40e324ec -# e3a703f315ea4c95b31168004cee0142 -#: ../../source/training/curriculum/curriculum.rst:707 -#: ../../source/training/curriculum/curriculum.rst:743 -#: ../../source/training/curriculum/curriculum.rst:789 -#: ../../source/training/curriculum/curriculum.rst:821 -#: ../../source/training/curriculum/curriculum.rst:854 -msgid "No" -msgstr "" - -# 241363cc731f45b29d99d40144d717eb -# c0c4515a945a42b88551ea8f5af08176 -# 5e366f8d1fe4478081d686130448213f -# 6451e0ab18494e78b0dc4536edb556e1 -# 1fa4628a32204b39827fdd3cd9719f1f -#: ../../source/training/curriculum/curriculum.rst:707 -#: ../../source/training/curriculum/curriculum.rst:743 -#: ../../source/training/curriculum/curriculum.rst:789 -#: ../../source/training/curriculum/curriculum.rst:821 -#: ../../source/training/curriculum/curriculum.rst:854 -msgid "Workshop Material" -msgstr "" - -# 927d2d6b42534bcb9e3ce4069f6543c3 -# 6534ac2cec1a4ea2824febadbd6a5d84 -# a201f548f8464fa7815ce08e1fdef1f9 -#: ../../source/training/curriculum/curriculum.rst:707 -#: ../../source/training/curriculum/curriculum.rst:821 -#: ../../source/training/curriculum/curriculum.rst:854 -msgid "Time (learning hour) @ 45Minutes" -msgstr "" - -# f0165b592cac47eb94bc24f8f3d931e1 -# 3980dde52e924edb88e4717a3226e21d -# 37922806efbd4a79a9b6485b4f80bb13 -# e41d9acf5fc0472fba7adbd40cecebac -# 7a9ce82d7da6468abc4e8049144a83fc -#: ../../source/training/curriculum/curriculum.rst:709 -#: ../../source/training/curriculum/curriculum.rst:745 -#: ../../source/training/curriculum/curriculum.rst:791 -#: ../../source/training/curriculum/curriculum.rst:823 -#: ../../source/training/curriculum/curriculum.rst:856 -msgid "**General Program**" -msgstr "" - -# b06b981385bd464eb95ceea31c193cba -# b4bb43804e9043bc9cee49066f3d98c0 -# a919c80521c64be19922835ef3ab1345 -# 503cf377bb114d14a9ada5f7125f27de -# 0742df8adbc947ea924d891780b1ffea -#: ../../source/training/curriculum/curriculum.rst:709 -#: ../../source/training/curriculum/curriculum.rst:745 -#: ../../source/training/curriculum/curriculum.rst:791 -#: ../../source/training/curriculum/curriculum.rst:823 -#: ../../source/training/curriculum/curriculum.rst:856 -msgid "**1**" -msgstr "" - -# 7d7bc2fbbe394c4095bd198e0f400570 -#: ../../source/training/curriculum/curriculum.rst:711 -msgid "BNPBPolicy" -msgstr "" - -# 3b8de8a43d624b83a51b277316e88e08 -# 3e5d7423517f47d48017fb7035eb9349 -# fc96f64f2a7f4049abb544b57e00e6d1 -# 898e7580541a4c6c8ce684004e8ef603 -# 34be3fe2127c4fc88c2b75c7d1ce9c15 -# ef1c76adf2ac4868874aaace846803f8 -# a1ab7d7151c64a85afb101f18212b6ad -# cd51f120512442cf871d8af3789408cf -# 869bc63032ff4ea69a83029bc1bb6dfd -# 844d907505504899b25a090aae2e910c -# 7255b05cd5a8474fae1ee67bb6f8ebec -# 6986bd45c4e649c38695b7a9a3c91eed -# 2c90c5cf6fa74c51840d40a06a12d1f1 -# f7e291694cbe481280d440da0f682db5 -#: ../../source/training/curriculum/curriculum.rst:711 -#: ../../source/training/curriculum/curriculum.rst:735 -#: ../../source/training/curriculum/curriculum.rst:747 -#: ../../source/training/curriculum/curriculum.rst:751 -#: ../../source/training/curriculum/curriculum.rst:753 -#: ../../source/training/curriculum/curriculum.rst:775 -#: ../../source/training/curriculum/curriculum.rst:781 -#: ../../source/training/curriculum/curriculum.rst:793 -#: ../../source/training/curriculum/curriculum.rst:813 -#: ../../source/training/curriculum/curriculum.rst:825 -#: ../../source/training/curriculum/curriculum.rst:845 -#: ../../source/training/curriculum/curriculum.rst:858 -#: ../../source/training/curriculum/curriculum.rst:871 -#: ../../source/training/curriculum/curriculum.rst:873 -msgid "1" -msgstr "" - -# bd56abb246bb4ca083bfba7513f07946 -# dd890256b8ae4f96ba03dc868436241a -# b3af90d681ab49d883f99a27b53b37e1 -# 577e471ea33a4c9ba5d14bd7b7589641 -# 70e0a8d1b90747b99ca363ca616f0d7b -#: ../../source/training/curriculum/curriculum.rst:713 -#: ../../source/training/curriculum/curriculum.rst:749 -#: ../../source/training/curriculum/curriculum.rst:795 -#: ../../source/training/curriculum/curriculum.rst:827 -#: ../../source/training/curriculum/curriculum.rst:860 -msgid "**Main Program**" -msgstr "" - -# 020703f479e048f89af03555f4399e24 -# 226bf9c806be445e8eaa7cb328f4efc6 -#: ../../source/training/curriculum/curriculum.rst:713 -#: ../../source/training/curriculum/curriculum.rst:749 -msgid "**46**" -msgstr "" - -# 040832fd86cf48508d1714bb4ed83ccf -#: ../../source/training/curriculum/curriculum.rst:715 -msgid "The OpenStreetMap website" -msgstr "" - -# 9626145e1ee34915b104de8f7f32df91 -# af78f45ca5ac41c9ad6f982e4a75b301 -# b51790b049114070a0a3a3a5d294001e -# bff41b143de7430595663310d368f64b -# caa1f1047ba64a02807058985ca773ef -# 8e65b4e3a25041da9b8b01186a76c75f -# 031ccfcd81a54844b5189681c8904140 -# 0e07585a726440af8c10399cb930a005 -# 5af61b2b176547b38ececc222170e050 -# d5159ce5f2694a698838bfbcdc67c935 -# 9a2b7561dce44cf194999a0a7d323802 -# d5693a0b4f184958a706409310d2cee8 -#: ../../source/training/curriculum/curriculum.rst:715 -#: ../../source/training/curriculum/curriculum.rst:727 -#: ../../source/training/curriculum/curriculum.rst:729 -#: ../../source/training/curriculum/curriculum.rst:733 -#: ../../source/training/curriculum/curriculum.rst:757 -#: ../../source/training/curriculum/curriculum.rst:759 -#: ../../source/training/curriculum/curriculum.rst:779 -#: ../../source/training/curriculum/curriculum.rst:811 -#: ../../source/training/curriculum/curriculum.rst:843 -#: ../../source/training/curriculum/curriculum.rst:862 -#: ../../source/training/curriculum/curriculum.rst:864 -#: ../../source/training/curriculum/curriculum.rst:866 -msgid "2" -msgstr "" - -# dcf79fc423eb45fb9efc50d114bec57b -#: ../../source/training/curriculum/curriculum.rst:717 -msgid "Working with OSM" -msgstr "" - -# 438c4b06ca384084ae227663a1d1ece5 -# 29766307dffb4f7688b959c28c3dcb80 -# ee5e7cdb510746abb86d339b77b6d874 -# 70db779ba8a94f53adfbcc1beaa6a79d -# 6acf5a93839348729ef847b0764b30ed -#: ../../source/training/curriculum/curriculum.rst:717 -#: ../../source/training/curriculum/curriculum.rst:719 -#: ../../source/training/curriculum/curriculum.rst:755 -#: ../../source/training/curriculum/curriculum.rst:767 -#: ../../source/training/curriculum/curriculum.rst:831 -msgid "4" -msgstr "" - -# 103a7a4da5464e409c7012ff33ac9693 -# 31014b1e248443fd8e74002c73607fbb -# 35b926017a80451b9635693a483e9a9d -#: ../../source/training/curriculum/curriculum.rst:719 -msgid "Working with JOSM" -msgstr "" - -# 238d16e6a8d441009fc1793057d85d70 -#: ../../source/training/curriculum/curriculum.rst:721 -msgid "Using GPS" -msgstr "" - -# 40bceda817714145ab29f5f7603ceb67 -# 0ea4208c6f4e42c6903927e69adf0f68 -#: ../../source/training/curriculum/curriculum.rst:721 -#: ../../source/training/curriculum/curriculum.rst:723 -msgid "10" -msgstr "" - -# 276d506c14764ba7abe8e4ab2e979705 -#: ../../source/training/curriculum/curriculum.rst:723 -msgid "Field Papers" -msgstr "" - -# 6bc1469fd75345a7bae735b858dd3f0f -#: ../../source/training/curriculum/curriculum.rst:725 -msgid "Editing OpenStreetMap with JOSM" -msgstr "" - -# 2760321161f941ba9d9ca3e5d50888c4 -#: ../../source/training/curriculum/curriculum.rst:725 -msgid "12" -msgstr "" - -# e9f03ed9fdd94521952afec6ad1401fb -#: ../../source/training/curriculum/curriculum.rst:727 -msgid "Imagery Offset" -msgstr "" - -# a5b9bb00de124fb591e108cf72d3db14 -#: ../../source/training/curriculum/curriculum.rst:729 -msgid "Getting OSM Data" -msgstr "" - -# ce08fef6928141feb0f2aec64948afa0 -# e1fe04d7f1bd4362b9122d79cb94082a -# feb11a24d9e64a6d8e0b2dbb6ba037c7 -# b8c8273f90f44148976f01083b82e0a7 -# 0416a582aca4492bb6a4bb67e858468f -#: ../../source/training/curriculum/curriculum.rst:731 -#: ../../source/training/curriculum/curriculum.rst:777 -#: ../../source/training/curriculum/curriculum.rst:809 -#: ../../source/training/curriculum/curriculum.rst:841 -#: ../../source/training/curriculum/curriculum.rst:869 -msgid "**Supporting Program**" -msgstr "" - -# 11c5cc1abc0a42eab75a8ed2d3b657e4 -# adec88dcd9a743aea55b81d2f6064e1c -# 5b78015684594ef091fe91b104c038d4 -# d8948261e62c4fd1801ea0cca24c3526 -#: ../../source/training/curriculum/curriculum.rst:731 -#: ../../source/training/curriculum/curriculum.rst:777 -#: ../../source/training/curriculum/curriculum.rst:809 -#: ../../source/training/curriculum/curriculum.rst:841 -msgid "**3**" -msgstr "" - -# 815c641cc9f14614ab2385bf7be56ca3 -# 8677e547972e4c37bb2594a248a5ba4f -# e499edb1aaad455a9fd4621469039cae -# e912a35b36fd4d919e549b0b62affd5a -# d256d22e206a48f8a6c40512ea62b7df -#: ../../source/training/curriculum/curriculum.rst:733 -#: ../../source/training/curriculum/curriculum.rst:779 -#: ../../source/training/curriculum/curriculum.rst:811 -#: ../../source/training/curriculum/curriculum.rst:843 -#: ../../source/training/curriculum/curriculum.rst:871 -msgid "Opening and Closing" -msgstr "" - -# 9542fcb23164476da1e20152753138d8 -# 0049e5914127412695ed49cd5137cf8e -# a4e7f500ee5e48c79e9b880ee19244ba -# 0fcf66e9842d43a7bcc72399cc207783 -# 8482482c31934b868cd33f7799945b49 -#: ../../source/training/curriculum/curriculum.rst:735 -#: ../../source/training/curriculum/curriculum.rst:781 -#: ../../source/training/curriculum/curriculum.rst:813 -#: ../../source/training/curriculum/curriculum.rst:845 -#: ../../source/training/curriculum/curriculum.rst:873 -msgid "Workshop Evaluation" -msgstr "" - -# 80376da93db84f63b55305e4f2db351a -# 4640b471febd4c369888ade6539f4fed -# c5f600283aa14b9fab8c0c247e8d8eac -# b7c8e1d1b9da4da7bfc24f1d0e91da86 -# 5774280d79cf455b8d2183a4f68b190a -#: ../../source/training/curriculum/curriculum.rst:737 -#: ../../source/training/curriculum/curriculum.rst:783 -#: ../../source/training/curriculum/curriculum.rst:815 -#: ../../source/training/curriculum/curriculum.rst:847 -#: ../../source/training/curriculum/curriculum.rst:875 -msgid "Total" -msgstr "" - -# 307f14dc7bb1409389c77a087b19785a -# dfd5ec05e0c842aa9d41976624d8b085 -# 66ffc2b4685d45d994d71dc7b9c9247d -#: ../../source/training/curriculum/curriculum.rst:737 -#: ../../source/training/curriculum/curriculum.rst:783 -#: ../../source/training/curriculum/curriculum.rst:847 -msgid "50" -msgstr "" - -# 51b068e863634e19aed12ef3a2ee19c1 -#: ../../source/training/curriculum/curriculum.rst:740 -msgid "**2. Data Analysis Using QGIS/** |project_name| **Beginner Level**" -msgstr "" - -# b30eed77ddaf47cc903411ef0d1e68e3 -# c1c38afc52564483962a342e899b4a06 -#: ../../source/training/curriculum/curriculum.rst:743 -#: ../../source/training/curriculum/curriculum.rst:789 -msgid "Time (learning hour) @ 45 Minutes" -msgstr "" - -# 150e61da468446f59a541db6793a58fe -# be216eaacb1e428bbabb4eca2bb736b4 -# 6b83fc58f8fb461db0730529ab9c60df -# 42d3cf0db8b44fd394451b7418bcaa22 -#: ../../source/training/curriculum/curriculum.rst:747 -#: ../../source/training/curriculum/curriculum.rst:793 -#: ../../source/training/curriculum/curriculum.rst:825 -#: ../../source/training/curriculum/curriculum.rst:858 -msgid "BNPB Policy" -msgstr "" - -# ac2ec09920484a3a80a39b22bc923305 -# 947e552a332044deb92314a45392be6f -# e54fa4f364a84311afa7798113fd1f8b -# e233a170f6524642b0e5003719d32f6b -#: ../../source/training/curriculum/curriculum.rst:751 -msgid "Using GIS to develop scenario for contingency planning" -msgstr "" - -# 870d72ec9e9b48e9bad10185e715391d -# 41f294b3e27140d09b3eba0073f132b5 -#: ../../source/training/curriculum/curriculum.rst:753 -msgid "" -"Explaining the benefit of QGIS and InaSAFE for developing realistic scenario " -"for contingency planning" -msgstr "" - -# 682777357c95417bbaf0835024fdd457 -# 45f647449d8f436d856f60cccc436d53 -# b130fbaddb484281b76c728504206878 -# 735457d52a7e415fb266d3548060ad11 -#: ../../source/training/curriculum/curriculum.rst:755 -msgid "Installing QGIS and explaining QGIS user interface" -msgstr "" - -# 34eeca35a358433b95d4ff40e3712b49 -# fca4cb5e510f44fcb8fd537b199807c9 -#: ../../source/training/curriculum/curriculum.rst:757 -msgid "Using QGIS plugins" -msgstr "" - -# 1fd9feb07fbe427c84e6c0c715825559 -# edaa75e384ac4767acf2e27ed01f7f71 -#: ../../source/training/curriculum/curriculum.rst:759 -msgid "Determining projection system and transformation in QGIS" -msgstr "" - -# b95079cbcde64f1c8b64bf954d635bce -# 2fbfab94bd804d4492d2794b255db6b0 -# 82fb5a752bd64a618ee830e3f1d86bd0 -# dce8de4b51a94bc79d048d9308b4b35a -#: ../../source/training/curriculum/curriculum.rst:761 -msgid "Working with vector data" -msgstr "" - -# 87f7b6e688e04f829f45c92b10f61bca -# 7db290b6a7b54c6ab433aee34e6c6b9e -# 642be0225c184554b6d4bb2af413d11a -# e0f32ffb0c8f416bbf638fcf1c963644 -# 1e18ee72bc724b44b2176360ba16920f -# 9f74f162f2934ee9a08b2adf3bddded5 -# 446bec96379f43b7bed9f7957829f869 -# a3459c4e61544878929ea3e6b2ba2881 -#: ../../source/training/curriculum/curriculum.rst:761 -#: ../../source/training/curriculum/curriculum.rst:763 -#: ../../source/training/curriculum/curriculum.rst:765 -#: ../../source/training/curriculum/curriculum.rst:801 -#: ../../source/training/curriculum/curriculum.rst:805 -#: ../../source/training/curriculum/curriculum.rst:807 -#: ../../source/training/curriculum/curriculum.rst:829 -#: ../../source/training/curriculum/curriculum.rst:835 -msgid "3" -msgstr "" - -# 52b2f6dfd32c49cca754fee0ef3931bb -#: ../../source/training/curriculum/curriculum.rst:763 -msgid "Categorising and creating label from vector data" -msgstr "" - -# db5ab23971ca4d858a06fe619ea38b88 -# 58e5bc2856ab4054912045781c826173 -# ce41cfc55ac647fdab1a8dcae1612d7c -# 9fc97ae6270943d7a81e96a404884a84 -#: ../../source/training/curriculum/curriculum.rst:765 -msgid "Working with raster data" -msgstr "" - -# 5764776fba814b738a35934f9e1492d1 -# 8e566e89c1204f2f8a2aac5620c30958 -# df6905a4db644cd19cadae9160825551 -# e31cf61c77ec4e2a820b9fbd4771a3a7 -#: ../../source/training/curriculum/curriculum.rst:767 -msgid "Creating and editing new vector layer" -msgstr "" - -# 40944623904948ac820ac850ce6402f5 -#: ../../source/training/curriculum/curriculum.rst:769 -msgid "Analysing vector data to solve problem" -msgstr "" - -# 280c48cb9c4e4721bab859f5edbec1d8 -# d2660d8aa5d94eeda907207885873812 -# 789d20b7d90b407dae85b343faa407c6 -# 8ec8f53781f945938eab9d2200de0d3d -#: ../../source/training/curriculum/curriculum.rst:769 -#: ../../source/training/curriculum/curriculum.rst:797 -#: ../../source/training/curriculum/curriculum.rst:799 -#: ../../source/training/curriculum/curriculum.rst:839 -msgid "6" -msgstr "" - -# 1f90e4da1181494dbe8c1f0c5fbe7246 -#: ../../source/training/curriculum/curriculum.rst:771 -msgid "Creating maps with Map Composer" -msgstr "" - -# 6daae4446aaa40b0a99d6e044855c352 -# d4f7f6502a0442b39d2be1d2db77b0b1 -#: ../../source/training/curriculum/curriculum.rst:771 -#: ../../source/training/curriculum/curriculum.rst:773 -msgid "8" -msgstr "" - -# e3b3d49200b94a5db8ac1ab8b60aea59 -# 93c256d45235434f8c37a4dd85355bfb -#: ../../source/training/curriculum/curriculum.rst:773 -msgid "Using InaSAFE" -msgstr "" - -# d3da91052d5540d8a96456b2f3f9d3a7 -#: ../../source/training/curriculum/curriculum.rst:775 -msgid "" -"Keeping interaction and communication to support QGIS and InaSAFE in " -"Indonesia" -msgstr "" - -# be9b70e6f82345adae8d3d8726543d4c -#: ../../source/training/curriculum/curriculum.rst:786 -msgid "**3. Data Collection Using OSM Intermediate Level**" -msgstr "" - -# ed2bf86b0a9c4a69b3f28b502c877a28 -# 9bf4f94fcb9741ecbd7f1409b3027042 -#: ../../source/training/curriculum/curriculum.rst:795 -#: ../../source/training/curriculum/curriculum.rst:827 -msgid "**26**" -msgstr "" - -# 808bf48a540d4b30943587ad3af696a5 -#: ../../source/training/curriculum/curriculum.rst:797 -msgid "Advanced Editing" -msgstr "" - -# ef3cecd88ff6435e9f6ec62d1f041f3e -#: ../../source/training/curriculum/curriculum.rst:799 -msgid "Quality Assurance" -msgstr "" - -# fd386cec97cd4b25ab371bbd1f852b3d -#: ../../source/training/curriculum/curriculum.rst:801 -msgid "Resolving conflicts when uploading OSM Data" -msgstr "" - -# 9e3231cc2bfd4a09bfda269a5881952b -#: ../../source/training/curriculum/curriculum.rst:803 -msgid "XML and Presets in JOSM" -msgstr "" - -# eed055c295254d099f22505984be48c0 -# b004367a8ccc413fafad86d7f3794175 -# e474e7314f93402f95f0e09ca5793426 -#: ../../source/training/curriculum/curriculum.rst:803 -#: ../../source/training/curriculum/curriculum.rst:833 -#: ../../source/training/curriculum/curriculum.rst:837 -msgid "5" -msgstr "" - -# 715fc1b5928a4d179d610e6efcd781b8 -#: ../../source/training/curriculum/curriculum.rst:805 -msgid "Using Private Data Store" -msgstr "" - -# 617772f1f8a3419ca46ebba5964851cd -#: ../../source/training/curriculum/curriculum.rst:807 -msgid "OpenStreetMap Wiki" -msgstr "" - -# 1203f7eb48884686a77e145c2ed8ddc3 -#: ../../source/training/curriculum/curriculum.rst:815 -msgid "30" -msgstr "" - -# 7bdfab616d8a4f11a5f3b31721a49e60 -#: ../../source/training/curriculum/curriculum.rst:818 -msgid "**4. Data Analysis Using QGIS/** |project_name| **Intermediate Level**" -msgstr "" - -# 5aee4f6d61a344b0a94a5e37da32bf9a -#: ../../source/training/curriculum/curriculum.rst:829 -msgid "QGIS Review" -msgstr "" - -# 2f2b3c41e6b140d7a9d2f2ae0d5235f3 -# 6c46293e11b44d25a9bd98cabdb92e1e -# f32e91b52fd0479692445e58db602120 -#: ../../source/training/curriculum/curriculum.rst:831 -msgid "Preparing data and keywords for InaSAFE" -msgstr "" - -# 6baad7609cd94cfe9ed0db121c1b0c63 -#: ../../source/training/curriculum/curriculum.rst:833 -msgid "Planning temporary shelter" -msgstr "" - -# 462b52c558ef4b88bbb38d3f7f9e36a4 -#: ../../source/training/curriculum/curriculum.rst:835 -msgid "Planning evacuation route" -msgstr "" - -# 49bee58ef7d04bd0825922ba882156f5 -#: ../../source/training/curriculum/curriculum.rst:837 -msgid "Calculating damage and losses" -msgstr "" - -# 898c92fdb8504605a5b1389267cd2aa7 -# 59435f229c5e4307b986349408506f2d -# 50473fa867bb4eb4a99cd2739cfc893a -# 29380ebc62124249a41b6233435305be -# e4caa5be10394cafb1b21e689d0f1ffb -# bfc3e291b1c4478ea1a2aefe2dbe1f42 -# 5ff304c481d547da8ca6780df239c3d8 -# de0c789dce1c491db19a239533d03514 -# c9f44211e348454ea1230f2c788c403f -# 4eadba21c9814774888bdbc451d4fd1a -# d088e7f126f8464eb1e9cb7b49720d0e -# 94ff300e1d634bdab8c43c0c7c5a4f51 -# 9e4f34bdde1041e1a32fc8f4c7df9370 -# 39f6366addfd406d8ef8ee08937771e3 -#: ../../source/training/curriculum/curriculum.rst:839 -#: ../../source/training/curriculum/curriculum.rst:912 -#: ../../source/training/curriculum/curriculum.rst:922 -#: ../../source/training/curriculum/curriculum.rst:942 -#: ../../source/training/curriculum/curriculum.rst:977 -#: ../../source/training/curriculum/curriculum.rst:1036 -#: ../../source/training/curriculum/curriculum.rst:1077 -#: ../../source/training/curriculum/curriculum.rst:1086 -#: ../../source/training/curriculum/curriculum.rst:1095 -#: ../../source/training/curriculum/curriculum.rst:1122 -#: ../../source/training/curriculum/curriculum.rst:1137 -#: ../../source/training/curriculum/curriculum.rst:1165 -#: ../../source/training/curriculum/curriculum.rst:1179 -#: ../../source/training/curriculum/curriculum.rst:1340 -msgid "Practice" -msgstr "" - -# 1ad1ebe7519341eb888252da893e7110 -#: ../../source/training/curriculum/curriculum.rst:850 -msgid "" -"**5. Training of Trainer for Contingency Planning Using OSM, QGIS, and** |" -"project_name|" -msgstr "" - -# edde081661844f3fb1ef46efac07b91a -#: ../../source/training/curriculum/curriculum.rst:860 -msgid "**6**" -msgstr "" - -# 3719156645b546a38627244433bcfec0 -#: ../../source/training/curriculum/curriculum.rst:862 -msgid "Adult learning" -msgstr "" - -# 2e78b199aa2942cb80867c00e66b0e65 -#: ../../source/training/curriculum/curriculum.rst:864 -msgid "Communication skills" -msgstr "" - -# 2ee5047757cd4cc7b759301dd439ef9e -# c76f92ad5ab542cd9f381b392c2d4f9d -#: ../../source/training/curriculum/curriculum.rst:866 -msgid "" -"Practising Data Collection and Analysis through OSM, QGIS, and InaSAFE " -"workshop" -msgstr "" - -# 4e51961aa7984c0399cbbe5ff835889c -#: ../../source/training/curriculum/curriculum.rst:869 -msgid "**2**" -msgstr "" - -# f2a6e42568dd42e18206307f13e9247f -#: ../../source/training/curriculum/curriculum.rst:875 -msgid "9" -msgstr "" - -# 46067fe752c54c639c110d87d2c9f093 -#: ../../source/training/curriculum/curriculum.rst:879 -msgid "Syllabus" -msgstr "" - -# 33dedc76ab71474d8f1b50aa81c306fd -#: ../../source/training/curriculum/curriculum.rst:881 -msgid "" -"The syllabus is a learning plan for the workshop material that includes " -"basic competencies, indicators, core material, learning activity, " -"assessment, allocation of time and learning resources. The syllabus is based " -"on the structure of the program and allocation of a predetermined time." -msgstr "" - -# 2b46017b6b614c71ad200a9d683d39af -#: ../../source/training/curriculum/curriculum.rst:887 -msgid "" -"This syllabus is described in more detail in the toolkit/workshop manuals " -"separate from this curriculum. Therefore, the syllabus may be more easily " -"understood by reading the prepared toolkit." -msgstr "" - -# ceb672ef3f9c4da7aa69ff776423e1d5 -# 298b943c362e407a84275785fabdabbf -# 3aed3099e25644c883d91457fe8ca56b -# 4df9c064873b42dbaa8232879b26e386 -# cbcbd7003a654811aa63dabdd389b850 -#: ../../source/training/curriculum/curriculum.rst:899 -#: ../../source/training/curriculum/curriculum.rst:1016 -#: ../../source/training/curriculum/curriculum.rst:1161 -#: ../../source/training/curriculum/curriculum.rst:1245 -#: ../../source/training/curriculum/curriculum.rst:1317 -msgid "Learning Activity" -msgstr "" - -# 516eee4d0bf04c419f476975ed6ee686 -# 41ab9b2f83364c1892c982cde4ba2760 -# b8aa920679b141b586b4b4b5846decbc -# 514eed2297cb4b96b43f01ed2c68c431 -# 7b5a1d1589594756b248377e25fb5b2b -#: ../../source/training/curriculum/curriculum.rst:899 -#: ../../source/training/curriculum/curriculum.rst:1016 -#: ../../source/training/curriculum/curriculum.rst:1161 -#: ../../source/training/curriculum/curriculum.rst:1245 -#: ../../source/training/curriculum/curriculum.rst:1317 -msgid "Time Allocation" -msgstr "" - -# 96e9b2a7cb38486fa90b954e531a0439 -# a292645f196c405ea66f5786ad68457b -# 7806d92f91ba433aa552b7e2c3b80b51 -# 61d9cfa27a0c4808ae4ffaae9ad9ecb7 -# f538236e034c45bdac66285700e1e017 -#: ../../source/training/curriculum/curriculum.rst:899 -#: ../../source/training/curriculum/curriculum.rst:1016 -#: ../../source/training/curriculum/curriculum.rst:1161 -#: ../../source/training/curriculum/curriculum.rst:1245 -#: ../../source/training/curriculum/curriculum.rst:1317 -msgid "Assessment" -msgstr "" - -# 7c0a7c0972eb420fbaebeb2b9adb0765 -# 8162cd938fae48e1ad1b0c7073ad8b93 -# aea6b72092354402969a6c0c9dad0d32 -# 42b267769abf4eebb00d797c3a417955 -# 8babe2de55e04bddb0942f66e376de45 -#: ../../source/training/curriculum/curriculum.rst:899 -#: ../../source/training/curriculum/curriculum.rst:1016 -#: ../../source/training/curriculum/curriculum.rst:1161 -#: ../../source/training/curriculum/curriculum.rst:1245 -#: ../../source/training/curriculum/curriculum.rst:1317 -msgid "Learning Sources" -msgstr "" - -# 7148c607ffa548d1be3d5ed315227761 -#: ../../source/training/curriculum/curriculum.rst:901 -msgid "**1. Basic Concept of OpenStreetMap Website (2 Hours)**" -msgstr "" - -# 5a150e1fd68549b1913cece8e5cd1295 -#: ../../source/training/curriculum/curriculum.rst:903 -msgid "Quiz about OSM, data, and map" -msgstr "" - -# 82f90f26bd9d4d51b96fb2ac420b14b6 -#: ../../source/training/curriculum/curriculum.rst:905 -msgid "Make a hand-drawn sketch of an area (individually)" -msgstr "" - -# afea0adcaa994ad2910d68ce63e9f8de -# 284342d00c0848fcba7ca8d83ef2b94d -# fab9b0d8a1294d378b6ffa1223c546fb -# caeb4789dc1b4fc494c16f3f6e24eea2 -#: ../../source/training/curriculum/curriculum.rst:903 -#: ../../source/training/curriculum/curriculum.rst:992 -#: ../../source/training/curriculum/curriculum.rst:1001 -#: ../../source/training/curriculum/curriculum.rst:1057 -msgid "90 Minutes" -msgstr "" - -# 16d98f84d1df40a2b144d6b6e32e01bf -#: ../../source/training/curriculum/curriculum.rst:903 -msgid "Test/Practice" -msgstr "" - -# b6330ea49c6e4ddca550cf00bfa2b250 -#: ../../source/training/curriculum/curriculum.rst:903 -msgid "Projector Slide PPT Module 1 Paper and pen" -msgstr "" - -# 276b693a671440a7b6655906c04661e6 -#: ../../source/training/curriculum/curriculum.rst:910 -msgid "**2. Working with OSM (4 Hours)**" -msgstr "" - -# f50b6b8d23c24f01b19a9254c6ee4986 -#: ../../source/training/curriculum/curriculum.rst:914 -msgid "Navigate map on OSM Website" -msgstr "" - -# 2be1be3d556744adb893d955864f63b4 -#: ../../source/training/curriculum/curriculum.rst:912 -msgid "" -"Participants visit the OSM website, navigate the map, save OSM map as an " -"image, create an OSM account, and edit the OSM map after demonstrated by " -"Facilitator" -msgstr "" - -# abe43010ff3540468cc75f839fe079e9 -# b2b6a6f3557541f99d235bbc3b3dd141 -# aa4fe24ff3404d7e96500bfb81411f4b -# 64f86b9a65b140b6acf6c32c25b8d2ec -#: ../../source/training/curriculum/curriculum.rst:912 -#: ../../source/training/curriculum/curriculum.rst:922 -#: ../../source/training/curriculum/curriculum.rst:1036 -#: ../../source/training/curriculum/curriculum.rst:1257 -msgid "180 Minutes" -msgstr "" - -# 530d4d1237ac493da1077d7edac019ea -#: ../../source/training/curriculum/curriculum.rst:912 -msgid "Participant's computer Projector Slide PPT Module 2" -msgstr "" - -# eb679d7640734558abb7f750e18207a5 -#: ../../source/training/curriculum/curriculum.rst:920 -msgid "**3. Working with JOSM (4 Hours)**" -msgstr "" - -# 9985b9d02db8420f9520b85717e1be18 -#: ../../source/training/curriculum/curriculum.rst:922 -msgid "" -"Participants practise how to download and install JOSM, change JOSM " -"preferences, learn basic map drawing in jOSM, and add presets after " -"demonstrated by facilitator" -msgstr "" - -# 19deafc6a9a44e5ab69ce459a0c0fca2 -# 7660b5949f9f47e9937864e9b2abdb17 -# 82613f1c1a8c4cc69dc935077b049562 -# e732b162d35f4ae197d61c91e0c8bf5f -#: ../../source/training/curriculum/curriculum.rst:922 -#: ../../source/training/curriculum/curriculum.rst:1191 -#: ../../source/training/curriculum/curriculum.rst:1269 -#: ../../source/training/curriculum/curriculum.rst:1283 -msgid "Projector Slide PP Module 3 Participant's computer" -msgstr "" - -# 2b6369350bce4f6ea78ea0e88849c814 -#: ../../source/training/curriculum/curriculum.rst:928 -msgid "All required software that is distributed to participant on USB stick" -msgstr "" - -# 7ea0ee04d5a947628c56eeedd7048e78 -#: ../../source/training/curriculum/curriculum.rst:940 -msgid "**4. Using GPS (10 Hours)**" -msgstr "" - -# 3550414fd647417da13cdf9b7d9b3063 -#: ../../source/training/curriculum/curriculum.rst:951 -msgid "Upload GPS tracks in JOSM" -msgstr "" - -# 4c58889939b245a585e9d027f09b1be2 -#: ../../source/training/curriculum/curriculum.rst:942 -msgid "Participants are asked about and discuss GPS." -msgstr "" - -# 58688fd074934126a1c183b4424bdfc3 -#: ../../source/training/curriculum/curriculum.rst:945 -msgid "" -"Participants practise how to turn on GPS, set up GPS for the first time, " -"navigate with GPS, save tracks and waypoints, turn on track log, and " -"transferr waypoints and tracks to computer after demonstrated by facilitator" -msgstr "" - -# 78775ec373a5454395425992e9a7ef39 -#: ../../source/training/curriculum/curriculum.rst:942 -msgid "5 hours and 30 minutes" -msgstr "" - -# b91bb2102193407e91731faa93659959 -#: ../../source/training/curriculum/curriculum.rst:942 -msgid "Projector Slide PP Module 4 Participant's Computer" -msgstr "" - -# daab416408dc409fb0ac70914e5b6783 -#: ../../source/training/curriculum/curriculum.rst:947 -msgid "" -"GPS Device (ideally minimum one GPS for two or three participants) Pen and " -"Paper" -msgstr "" - -# 1e629061f3f74589a9b6b34344689b42 -#: ../../source/training/curriculum/curriculum.rst:963 -msgid "**5. Field Papers (10 Hours)**" -msgstr "" - -# d9237473a92842a082ee6bf988f2a25c -#: ../../source/training/curriculum/curriculum.rst:965 -msgid "Participants are asked about and discuss Field Papers." -msgstr "" - -# a7dca99fa43c4c9294a773010b0f5aa5 -#: ../../source/training/curriculum/curriculum.rst:968 -msgid "" -"Participants practise how Field Papers works, how to create and print Field " -"Papers, how to map with Field Papers, scan and upload, and how to to open " -"scanned Field Papers in JOSM after demonstrated by Facilitator" -msgstr "" - -# 64f6c876e9da490e83b0d457b3a9fcd6 -#: ../../source/training/curriculum/curriculum.rst:965 -msgid "5 hours and 30 Minutes" -msgstr "" - -# 4f2ed8f9a9084bc1b6010beb013ee12c -# b727de6077394f97a0f452ec2f62fc50 -# ab4385a497c34d638630794d05beea31 -# 0f79717f911e4a56a189705d0c540a3e -# ab27da6978344470aaae83f1d5c13de0 -# d1df68df76e0435abde012fba64c322e -# 6d42b004e9954db1a1dc140325d344e6 -# 2b78ea1b1533411caf4993690b9f226c -# 893b50b4cd7b4d2eb72938e5e8d9a28d -# 9d83692b6fde45d594b62e1d93fdc3f3 -# 371d82df66f84b86bc8c16e6f182f856 -# dc6cca07dca74510ae5e08a093fd997f -# a173912dd8224723b93daf10d29087d6 -# 7bbf9e96398744ba803ca66dec7baa42 -# 30dcd7c354974e0baf94c982544c9d43 -# be6314c9729242eb8ae9096bd8bfcf98 -# fcfeadd7924c4d24b1c3b8dd5e326866 -#: ../../source/training/curriculum/curriculum.rst:965 -#: ../../source/training/curriculum/curriculum.rst:992 -#: ../../source/training/curriculum/curriculum.rst:1001 -#: ../../source/training/curriculum/curriculum.rst:1057 -#: ../../source/training/curriculum/curriculum.rst:1068 -#: ../../source/training/curriculum/curriculum.rst:1104 -#: ../../source/training/curriculum/curriculum.rst:1149 -#: ../../source/training/curriculum/curriculum.rst:1191 -#: ../../source/training/curriculum/curriculum.rst:1200 -#: ../../source/training/curriculum/curriculum.rst:1211 -#: ../../source/training/curriculum/curriculum.rst:1227 -#: ../../source/training/curriculum/curriculum.rst:1249 -#: ../../source/training/curriculum/curriculum.rst:1257 -#: ../../source/training/curriculum/curriculum.rst:1269 -#: ../../source/training/curriculum/curriculum.rst:1283 -#: ../../source/training/curriculum/curriculum.rst:1292 -#: ../../source/training/curriculum/curriculum.rst:1332 -msgid "Test Practice" -msgstr "" - -# 2e1803c1ce68482eb294886a50084caa -#: ../../source/training/curriculum/curriculum.rst:965 -msgid "" -"Projector Slide PP Module 5 Participant's computer Example of Field Papers" -msgstr "" - -# c03b9cf11fcf4a94bf86ecf45ea3ce08 -#: ../../source/training/curriculum/curriculum.rst:975 -msgid "**6. Editing OpenStreetMap with JOSM (12 Hours)**" -msgstr "" - -# ee17573211354b96a1fd6999382b85aa -#: ../../source/training/curriculum/curriculum.rst:977 -msgid "" -"Participants learn JOSM user interface, JOSM layers, and practise how to " -"edit OSM data, tags, upload changes, and saving OSM files, and using " -"keyboard shortcuts after demonstrated by Facilitator" -msgstr "" - -# b745000519544400a1549d98610208b1 -#: ../../source/training/curriculum/curriculum.rst:977 -msgid "7 Hours" -msgstr "" - -# cff409dbfd8543c69faec3fd8d661407 -#: ../../source/training/curriculum/curriculum.rst:977 -msgid "Projector Slide PP Module 6 Participant's computer" -msgstr "" - -# 725222902a91450cabb56ab702ee8007 -#: ../../source/training/curriculum/curriculum.rst:990 -msgid "**7. Imagery Offset (2 Hours)**" -msgstr "" - -# 5a6e36647336465391b05e478205e1c9 -#: ../../source/training/curriculum/curriculum.rst:992 -msgid "" -"Participants watch demo from facilitator and learn about imagery offset, " -"imagery components (resolution and georeference), then practise how to fix " -"imagery offset" -msgstr "" - -# d0d1fca313a949a1a1981c26f09014d6 -#: ../../source/training/curriculum/curriculum.rst:992 -msgid "Projector Slide PP Module 7 Participant's computer" -msgstr "" - -# 61efb494e0fe4fa89e685998974f97ae -#: ../../source/training/curriculum/curriculum.rst:999 -msgid "**8. Getting OSM data (2 Hours)**" -msgstr "" - -# 639f90f155b9456fb98189fe0934af64 -#: ../../source/training/curriculum/curriculum.rst:1002 -msgid "Download OpenStreetMap data from Geofabrik Website" -msgstr "" - -# bb495d7568b844fabd1cccd010232eca -#: ../../source/training/curriculum/curriculum.rst:1001 -msgid "" -"Participants practise how to download OSM data from Geofabrik website, and " -"download OSM data based on area and tags needed using Hot export tool" -msgstr "" - -# fd23d4b87f6e4be49bb4a83dc1d83f6e -#: ../../source/training/curriculum/curriculum.rst:1001 -msgid "Projector Slide PP Module 9 Participant's computer" -msgstr "" - -# 7b222ed738544161862ee94e4a51ab0a -#: ../../source/training/curriculum/curriculum.rst:1009 -msgid "" -"**Data Analysis using QGIS and** |project_name| **Beginner Level Workshop**" -msgstr "" - -# 6ddc6914861042efbd85325d684aad3d -#: ../../source/training/curriculum/curriculum.rst:1018 -msgid "**1. Using GIS to develop scenario for contingency planning (1 Hour)**" -msgstr "" - -# 3fb6e71bc6774df8ac4c25b370fb5bca -#: ../../source/training/curriculum/curriculum.rst:1022 -msgid "Explain GIS terminology" -msgstr "" - -# 50725d9c4eb64c8eb967ced4ab5080e6 -# d76429b19a314c9985c038b73604af87 -#: ../../source/training/curriculum/curriculum.rst:1023 -msgid "Terminology of Geographic information System (GIS)" -msgstr "" - -# 3be08f6f55af44919f4f0d015a2d1569 -#: ../../source/training/curriculum/curriculum.rst:1020 -msgid "" -"Participants watch presentation from facilitator and discuss about the " -"difference between data and information, and Geographic Information System " -"(GIS) terminology" -msgstr "" - -# 505e977065484fe9b3a49174aa232fa5 -# 5c938589e74a4af1896a07fd619c8806 -#: ../../source/training/curriculum/curriculum.rst:1020 -#: ../../source/training/curriculum/curriculum.rst:1028 -msgid "45 Minutes" -msgstr "" - -# b4a3e1ddc3c34de4b29887a87c922d42 -# b7317a30756f49d2b88a6c12a9da101d -# b06b0416921648528f917b154cb4dfb3 -# 652bc475249a422395b0321c4d5be131 -#: ../../source/training/curriculum/curriculum.rst:1020 -#: ../../source/training/curriculum/curriculum.rst:1028 -#: ../../source/training/curriculum/curriculum.rst:1135 -#: ../../source/training/curriculum/curriculum.rst:1321 -msgid "Test" -msgstr "" - -# aac179a040184cb5ae95b2ce1d1a7d4c -# 0505998b2d184e949aa6544718ac5a52 -#: ../../source/training/curriculum/curriculum.rst:1020 -#: ../../source/training/curriculum/curriculum.rst:1165 -msgid "Projector Slide PP Module 1" -msgstr "" - -# 294fd22d98794107beb8fcee3c1d7def -#: ../../source/training/curriculum/curriculum.rst:1026 -msgid "**2. InaSAFE for Contingency Planning (1 Hour)**" -msgstr "" - -# f4edb18f5e634f5abe701d2774f5749d -#: ../../source/training/curriculum/curriculum.rst:1030 -msgid "GIS for Preparing contingency planning" -msgstr "" - -# 0b02848deee84308a0bf2d9e39851b80 -#: ../../source/training/curriculum/curriculum.rst:1032 -msgid "QGIS and InaSAFE" -msgstr "" - -# e3c120f96d1944258db14505f2889850 -#: ../../source/training/curriculum/curriculum.rst:1028 -msgid "" -"Facilitator explains about GIS for contingency planning and the importance " -"of data in QGIS and InaSAFE" -msgstr "" - -# 35b7282c7f914a0798d3b446760355ca -# 181cf551138141948c280208fe9627f5 -#: ../../source/training/curriculum/curriculum.rst:1028 -#: ../../source/training/curriculum/curriculum.rst:1332 -msgid "Projector Slide PP Module 2" -msgstr "" - -# 24ca8a34273b4e8e99850d6951970dbd -#: ../../source/training/curriculum/curriculum.rst:1034 -msgid "**3. QGIS Installation and QGIS User Interface Layout (5 Hours)**" -msgstr "" - -# 296626e2ee5c4b03ad24e4bdab376411 -# 0d58a16209cc4935a1ee55747343e795 -#: ../../source/training/curriculum/curriculum.rst:1040 -msgid "QGIS User interface layout" -msgstr "" - -# f2d4a96bfc564e51921b6af3415db4ca -#: ../../source/training/curriculum/curriculum.rst:1036 -msgid "" -"Participants practise how to get QGIS, install QGIS, set up QGIS, add vector " -"layers, basic QGIS tools, panning map" -msgstr "" - -# 799eac5d83124e73bbc0c96be72fdd09 -#: ../../source/training/curriculum/curriculum.rst:1036 -msgid "" -"Projector Slide PP Module 3 Participant's computer QGIS Installation file" -msgstr "" - -# cda0e485a41d48e49125265768d32803 -#: ../../source/training/curriculum/curriculum.rst:1046 -msgid "**4. QGIS Plugin (2 Hours)**" -msgstr "" - -# 480c384f67f84e57ac9c6ca85180ab7c -#: ../../source/training/curriculum/curriculum.rst:1048 -msgid "" -"Participants learn how to manage plugins, install new plugins, and OpenLayer " -"plugin" -msgstr "" - -# cc490d63b8a14b0f952e5f9c372281a1 -# 1396ba25fec64def8ac2c7407285508f -#: ../../source/training/curriculum/curriculum.rst:1048 -msgid "105 Minutes" -msgstr "" - -# 25c59d982c0544d8892cab3c0991e70c -# c2d935b949d740da8bae0dd07175afd2 -#: ../../source/training/curriculum/curriculum.rst:1048 -#: ../../source/training/curriculum/curriculum.rst:1200 -msgid "Projector Slide PP Module 4 Participant's computer" -msgstr "" - -# cb89a0f5eb884a33ab7191a8be5d6640 -#: ../../source/training/curriculum/curriculum.rst:1055 -msgid "**5. Projection systems and Transformation (2 Hours)**" -msgstr "" - -# 783f4c2adbaa45e2b2a2f17e3b6ed6aa -# 79e67b35a31841eebcbd9c9927194bb9 -# 3377ce0352314e518da1dc2759146b01 -# 19ab1a228ea74e6880d70e45d1e5b884 -#: ../../source/training/curriculum/curriculum.rst:1062 -msgid "Making its own projection" -msgstr "" - -# a866be4b27a24a1abb4f643f9c2935ef -#: ../../source/training/curriculum/curriculum.rst:1057 -msgid "Participants learn about Coordinate Reference System (CRS)" -msgstr "" - -# 905b4279c0e64d699ab4c3c5527ddb87 -#: ../../source/training/curriculum/curriculum.rst:1060 -msgid "" -"Participants practise how to reproject with \"on the fly\" projection, how " -"to deal with different CRS, and how to set custom projection" -msgstr "" - -# f2eabc0145b64649b1b668f4515d214b -# d65fa544a64345a7bbf2523ad8f24057 -# 345df94756af43e0b850fe1d70d2e05d -#: ../../source/training/curriculum/curriculum.rst:1057 -#: ../../source/training/curriculum/curriculum.rst:1211 -#: ../../source/training/curriculum/curriculum.rst:1292 -msgid "Projector Slide PP Module 5 Participant's computer" -msgstr "" - -# d563c06a6c474913a172b4c35a9a7f2f -#: ../../source/training/curriculum/curriculum.rst:1066 -msgid "**6. Vector Data (3 Hours)**" -msgstr "" - -# 7e86c5f035d64169a864de8cda2cc1a4 -#: ../../source/training/curriculum/curriculum.rst:1068 -msgid "" -"Participants learn from facilitator about vector data and its attributes" -msgstr "" - -# fd3eccee269243d59218fa234e8710e8 -#: ../../source/training/curriculum/curriculum.rst:1072 -msgid "Participants practise how to add vector layers and do symbology" -msgstr "" - -# 9e927e1543374ee381b894fd2c40f5af -# a89f7a38978447ca8df2aae6d1e22ba6 -# d125e7ca9ef344ad97efea0e447ef93d -# 626b62e14ac040c18bad536363eb836d -#: ../../source/training/curriculum/curriculum.rst:1068 -#: ../../source/training/curriculum/curriculum.rst:1077 -#: ../../source/training/curriculum/curriculum.rst:1086 -#: ../../source/training/curriculum/curriculum.rst:1095 -msgid "135 Minutes" -msgstr "" - -# 440aebb098e3420fae8706c2cff70331 -#: ../../source/training/curriculum/curriculum.rst:1068 -msgid "" -"Projector Slide PP Module 6 Participant's computer Example file contain " -"vector data" -msgstr "" - -# 47d7451186444215b744859e4157bc41 -#: ../../source/training/curriculum/curriculum.rst:1075 -msgid "**7. Label and classification (3 Hours)**" -msgstr "" - -# 753efa41b48f4ef697550639ffe276bf -#: ../../source/training/curriculum/curriculum.rst:1077 -msgid "" -"Participants learn about attribute data, labeling tools, and classifying " -"attributes" -msgstr "" - -# 1f064b0f0de74f6bac0bc04c5dfebad2 -#: ../../source/training/curriculum/curriculum.rst:1077 -msgid "" -"Projector Slide PP Module 7 Participant's computer Example file contain " -"vector data" -msgstr "" - -# 3f0e00b7008a45d18139c95d19188d6c -#: ../../source/training/curriculum/curriculum.rst:1084 -msgid "**8. Raster data (3 Hours)**" -msgstr "" - -# 38790cb0bd4940cfb2c0a449ddcacfdd -#: ../../source/training/curriculum/curriculum.rst:1086 -msgid "" -"Participants learn and practise how to add raster layer, change its symbol, " -"and doing simple terrain analysis." -msgstr "" - -# ddd21a0e16fe43a38c79e9dc0214fae4 -#: ../../source/training/curriculum/curriculum.rst:1086 -msgid "" -"Projector Slide PP Module 8 Participant's computer Example file contain " -"Raster" -msgstr "" - -# 926eda9ba0e4481b9a3a98d2251b6d8d -#: ../../source/training/curriculum/curriculum.rst:1093 -msgid "**9. Creating new Vector data (3 Hours)**" -msgstr "" - -# c4bea7e17c0d43019f636efcd8a46946 -#: ../../source/training/curriculum/curriculum.rst:1095 -msgid "" -"Participants learn and practise how to add raster layers, change its " -"symbology, and do simple terrain analysis" -msgstr "" - -# 0652ec97090745219e38673b90aab59b -#: ../../source/training/curriculum/curriculum.rst:1095 -msgid "" -"Projector Slide PP Module 8 Participant's computer Example file contain " -"raster" -msgstr "" - -# 4a77c80e9b2c456688ed96fa21bfcb43 -#: ../../source/training/curriculum/curriculum.rst:1102 -msgid "**10. Vector analysis (6 Hours)**" -msgstr "" - -# 37599a4f73854164ba035db4e5d39807 -#: ../../source/training/curriculum/curriculum.rst:1104 -msgid "Participants discuss about GIS process, problems, and data" -msgstr "" - -# e08789d2b1894bd889532c7480d57755 -#: ../../source/training/curriculum/curriculum.rst:1107 -msgid "" -"Participants learn and practise how to start a project, analyse problems, " -"determining hazard zone, search for important roads and health facilities, " -"buffering, and choosing right size for land area" -msgstr "" - -# 14d569dcefef438087dfb859c478fd9c -#: ../../source/training/curriculum/curriculum.rst:1104 -msgid "210 Minutes" -msgstr "" - -# dfe449da1b56419499699899880bc599 -#: ../../source/training/curriculum/curriculum.rst:1104 -msgid "Projector Slide PP Module 9 Module 10 Participant's computer" -msgstr "" - -# 85ea8c07c3534af9b6a6d19287e77085 -#: ../../source/training/curriculum/curriculum.rst:1120 -msgid "**11. Map Layout with Map Composer (8 Hours)**" -msgstr "" - -# eb8905dc771e496eae41705bf8d8baaa -#: ../../source/training/curriculum/curriculum.rst:1122 -msgid "" -"Participants practise how to lay out a map in Map Composer: add a new map, " -"add a title, add scale, add a grid, add an inset, add a legend, and print map" -msgstr "" - -# 90e4b67f7dac401a977021ec1da3841c -#: ../../source/training/curriculum/curriculum.rst:1122 -msgid "4 hours 30 minutes" -msgstr "" - -# 9e8dc8dee0934513951200655d777b2a -#: ../../source/training/curriculum/curriculum.rst:1122 -msgid "Projector Slide PP Module 11 Participant's computer" -msgstr "" - -# 71f0da6a58794497ad05bae113c3099a -#: ../../source/training/curriculum/curriculum.rst:1133 -msgid "**12. Working with InaSAFE (8 Hours)**" -msgstr "" - -# 260776b3421a41bd8217bdb46debfd22 -#: ../../source/training/curriculum/curriculum.rst:1135 -msgid "Use InaSAFE" -msgstr "" - -# cc5101f9665f4172af698e1749eb8cf7 -#: ../../source/training/curriculum/curriculum.rst:1136 -msgid "Understand the concept of hazard, exposure, and impact data" -msgstr "" - -# 26a03fa4803f430f87a102a0fb46eeb9 -#: ../../source/training/curriculum/curriculum.rst:1138 -msgid "InaSAFE interface" -msgstr "" - -# 6493deb9b8714797ae8f4fa9b11ee908 -#: ../../source/training/curriculum/curriculum.rst:1143 -msgid "Improving InaSAFE maps output" -msgstr "" - -# 6bb098b0fb7d4084a6b6cab1be187ed2 -#: ../../source/training/curriculum/curriculum.rst:1135 -msgid "" -"Participants discuss about hazard, exposure, impact and InaSAFE user user " -"interface." -msgstr "" - -# e0bb3a6fd10649fd903a0074fdf2cb01 -#: ../../source/training/curriculum/curriculum.rst:1135 -msgid "4 Hours 30 Minutes" -msgstr "" - -# f4fe0c3bd3974866958b66f3af1da82c -#: ../../source/training/curriculum/curriculum.rst:1135 -msgid "Projector Slide PP Module 12 Participant's computer" -msgstr "" - -# 5c4ba46b511a4834803c38b980ad64e7 -#: ../../source/training/curriculum/curriculum.rst:1147 -msgid "**13. Social media to keep QGIS and InaSAFE interaction (1 Hours)**" -msgstr "" - -# c1a2fe2ab2294cbf822bf69341a788a9 -#: ../../source/training/curriculum/curriculum.rst:1149 -msgid "" -"Participants are expected to keep up to date with social media through " -"Facebook or QGIS forum." -msgstr "" - -# db6640e91fe240b8b804afb9fcf7f2c9 -#: ../../source/training/curriculum/curriculum.rst:1149 -msgid "60 Minutes" -msgstr "" - -# d2aecdb7a8a042298b674ab00c7e5476 -#: ../../source/training/curriculum/curriculum.rst:1149 -msgid "Projector Slide PP Module 13 Participant's Computer" -msgstr "" - -# 163f31edefa9410da9878585e5089014 -#: ../../source/training/curriculum/curriculum.rst:1155 -msgid "**Data collection using OSM Intermediate Level Workshop**" -msgstr "" - -# ee9e99cbd5d147d4ae9dd879a266038e -#: ../../source/training/curriculum/curriculum.rst:1163 -msgid "**1. Advanced Editing (6 Hours)**" -msgstr "" - -# 0c34d268e34f487a88dc49d15ea04bb8 -#: ../../source/training/curriculum/curriculum.rst:1167 -msgid "Make relations between objects" -msgstr "" - -# cadef9742a104835a91492be3d760319 -#: ../../source/training/curriculum/curriculum.rst:1165 -msgid "" -"Participants practise using more editing tools in JOSM and create relations " -"between objects" -msgstr "" - -# d7456a38e1414454bd9dbb14fb91d530 -#: ../../source/training/curriculum/curriculum.rst:1165 -msgid "4 Hours" -msgstr "" - -# 1868c7364b2b4f779408f9388eaa4fdf -#: ../../source/training/curriculum/curriculum.rst:1169 -msgid "Participant's computer" -msgstr "" - -# 837ba6643ef34d4bba83656a586b5071 -#: ../../source/training/curriculum/curriculum.rst:1172 -msgid "Exercise file in USB stick" -msgstr "" - -# b9f05be2af4a4311aecafb895f70e507 -#: ../../source/training/curriculum/curriculum.rst:1174 -msgid "(tools_menu_sample.osm and utilsplugin2_sample.osm)" -msgstr "" - -# 8da2546a0a73410eb199176ef976c5a7 -#: ../../source/training/curriculum/curriculum.rst:1177 -msgid "**2. Quality Assurance (6 Hours)**" -msgstr "" - -# c442add54aac4109b0517b6e97a6efb6 -#: ../../source/training/curriculum/curriculum.rst:1179 -msgid "" -"Participants practise editing tips and giving presets based on standard to " -"improve the quality assurance of OSM data by using validation tools in JOSM, " -"and online validation tools (KeepRight)" -msgstr "" - -# 20c38e6ddc6d4c5e80eabad119cdf3f4 -#: ../../source/training/curriculum/curriculum.rst:1179 -msgid "4 Hours 15 Minutes" -msgstr "" - -# b7858e1e2fb34be89d086373f3b0bb90 -# 6a028255f5384a48831a4b8f0f5458fe -#: ../../source/training/curriculum/curriculum.rst:1179 -#: ../../source/training/curriculum/curriculum.rst:1257 -msgid "Projector Slide PP Module 2 Participant's computer" -msgstr "" - -# 80da76844de94bd98924b7532960e659 -#: ../../source/training/curriculum/curriculum.rst:1189 -msgid "**3. Resolving conflicts when uploading OSM data (3 Hours)**" -msgstr "" - -# e9077ab263604da19a54f040df85ab84 -#: ../../source/training/curriculum/curriculum.rst:1191 -msgid "Participants discuss how conflicts can happen when uploading OSM data" -msgstr "" - -# 516b0e5a28304d3e80b87dda7b96d350 -#: ../../source/training/curriculum/curriculum.rst:1194 -msgid "" -"Participants practise conflict resolution and how to avoid conflicts when " -"uploading OSM data" -msgstr "" - -# 3a73f82baa8d4350bb6a59e84d7465cb -#: ../../source/training/curriculum/curriculum.rst:1191 -msgid "2 Hours" -msgstr "" - -# fd1030c7c39e46ef8c3c2206f49aa548 -#: ../../source/training/curriculum/curriculum.rst:1198 -msgid "**4. XML and presets in JOSM (5 hours)**" -msgstr "" - -# ed54e84ab65f44cf919ca8583ee6ddca -#: ../../source/training/curriculum/curriculum.rst:1200 -msgid "Participants learn from facilitator about tags, XML, keys and values." -msgstr "" - -# 46f1f1a07c194214baec36b2d8e8dc56 -#: ../../source/training/curriculum/curriculum.rst:1204 -msgid "" -"Participants practise making their own preset file, setting up preset files " -"in JOSM, and applying a new preset to some objects." -msgstr "" - -# 637c2954103d44678aa4676a2286be96 -#: ../../source/training/curriculum/curriculum.rst:1200 -msgid "150 Minutes" -msgstr "" - -# 7f6577456b834291a2444bdb50440179 -#: ../../source/training/curriculum/curriculum.rst:1209 -msgid "**5. Using Private Datastore (3 Hours)**" -msgstr "" - -# 5e8ca7d2e0e6457ca735fb5b13d48e4a -#: ../../source/training/curriculum/curriculum.rst:1211 -msgid "" -"Participants watch presentation from facilitator about private data store " -"function and discuss about the kind of data that can go public and should go " -"private." -msgstr "" - -# 393c6b64eaca4bf2a73d15bdfbccb4c5 -#: ../../source/training/curriculum/curriculum.rst:1217 -msgid "Participants practise installing" -msgstr "" - -# 92dc43201ce844c6a5fd431bc4cfdd4b -#: ../../source/training/curriculum/curriculum.rst:1219 -msgid "" -"private data store plugin in JOSM and how to use the plugin also how the " -"plugin works, and accessing the data store via web." -msgstr "" - -# d502f3627d0a4c42a40709a5268a52d5 -#: ../../source/training/curriculum/curriculum.rst:1211 -msgid "120 Minutes" -msgstr "" - -# 3d2a41cfd69f4daa94529abe5594f2f5 -#: ../../source/training/curriculum/curriculum.rst:1225 -msgid "**6. OpenStreetMap Wiki (3 Hours)**" -msgstr "" - -# aaf3386446544f0fb2095a1b496c0db0 -#: ../../source/training/curriculum/curriculum.rst:1227 -msgid "Participants do a FGD about OpenStreetMap Wiki." -msgstr "" - -# 154ba84d6fb5440aaf4064de1cac8233 -#: ../../source/training/curriculum/curriculum.rst:1230 -msgid "" -"Participants practise how to create OSM wiki account, edit wiki, learning " -"about wiki format, create new wiki page, upload images, translate pages, and " -"view the changelog." -msgstr "" - -# 8e56ebec7d714aa3b6beaa1af5f9279d -#: ../../source/training/curriculum/curriculum.rst:1227 -msgid "2 hours" -msgstr "" - -# a9a387fa8e604b4a829b1fa86a2f87b3 -#: ../../source/training/curriculum/curriculum.rst:1227 -msgid "Projector Slide PP Module 6 Participant's Computer" -msgstr "" - -# 4c5f6c04e96940a8b9e5907a7b348ba1 -#: ../../source/training/curriculum/curriculum.rst:1239 -msgid "**Data Analysis using QGIS and InaSAFE Intermediate Level Workshop**" -msgstr "" - -# 27db4225ca964232a55048dfcc3398b8 -#: ../../source/training/curriculum/curriculum.rst:1247 -msgid "**1. QGIS Review (3 Hours)**" -msgstr "" - -# 7889234eb84c4675b0ba8bf5a7aa4f8c -#: ../../source/training/curriculum/curriculum.rst:1249 -msgid "Participants discuss about QGIS data type, symbology, and map layout." -msgstr "" - -# 773cf317af4f4fa9afed7f015a49849f -#: ../../source/training/curriculum/curriculum.rst:1249 -msgid "135 minutes" -msgstr "" - -# 4010a5adbf5346859dd7ef6bfb3ab29a -#: ../../source/training/curriculum/curriculum.rst:1249 -msgid "Projector Slide PP Module 1 Participant's computer" -msgstr "" - -# b6f801c023d24d2da2496f86e05e2f78 -#: ../../source/training/curriculum/curriculum.rst:1255 -msgid "**2. Preparing data and keywords for InaSAFE (4 Hours)**" -msgstr "" - -# 38f69e253b1a43e58de575dbfb710b7f -#: ../../source/training/curriculum/curriculum.rst:1257 -msgid "**Preparing Data and keywords for** |project_name|" -msgstr "" - -# 5916ff18483e497c85302e27ae47abeb -#: ../../source/training/curriculum/curriculum.rst:1257 -msgid "" -"Participants watch explanation about input data in InaSAFE from facilitator" -msgstr "" - -# 931b590526f34b48bda9d54c926a260a -#: ../../source/training/curriculum/curriculum.rst:1261 -msgid "" -"Participants learn to get exposure data from HOT Exports, input data, add " -"keywords, prepare hazard layer, and run InaSAFE" -msgstr "" - -# 0488d97d918348649972a94c5f28621c -#: ../../source/training/curriculum/curriculum.rst:1267 -msgid "" -"**3. Temporary IDP (Internally Displaced Persons) camps planning (4 Hours)**" -msgstr "" - -# 8c413591377a4be79e676bd7f009e698 -#: ../../source/training/curriculum/curriculum.rst:1269 -msgid "Participants practise QGIS analysis to determine temporary IDP camps" -msgstr "" - -# 11044cc7bca0432aa978aa0fe083c958 -# 57f886f577c54be082d746d3585113fc -#: ../../source/training/curriculum/curriculum.rst:1269 -#: ../../source/training/curriculum/curriculum.rst:1283 -msgid "225 minutes" -msgstr "" - -# 5c15774ce1f54bce9e7977d5af841d16 -#: ../../source/training/curriculum/curriculum.rst:1281 -msgid "**4. Evacuation route planning (3 Hours)**" -msgstr "" - -# c185a17a5b964ff7bac5708551046a3c -#: ../../source/training/curriculum/curriculum.rst:1283 -msgid "Participants learn about road graph plugin in QGIS." -msgstr "" - -# f2459ae28ba44d44bfee825d886b445f -#: ../../source/training/curriculum/curriculum.rst:1286 -msgid "" -"Participants practise how to set up road graph plugin, and choose start and " -"end points" -msgstr "" - -# 3d9c20bc030a4801b2ab592dcfa2c468 -#: ../../source/training/curriculum/curriculum.rst:1290 -msgid "**5. Damages and losses assessment (4 Hours)**" -msgstr "" - -# 026d62ce7883452da4fef78e72e0c2d8 -#: ../../source/training/curriculum/curriculum.rst:1292 -msgid "Participants discuss about BPBD's damage and losses assessment guide." -msgstr "" - -# d797724e094c48a5971a40991a1bc662 -#: ../../source/training/curriculum/curriculum.rst:1296 -msgid "" -"Participants learn how to calculate damage and losses using group stat " -"plugin, join data, and create a diagram." -msgstr "" - -# f76bf1fd8cca484894846e2af44584d9 -#: ../../source/training/curriculum/curriculum.rst:1292 -msgid "210 minutes" -msgstr "" - -# af524a1ed2fc40d0b20ce7e3b0a2e8f9 -#: ../../source/training/curriculum/curriculum.rst:1310 -msgid "" -"**Training of Trainer workshop for contingency planning using OSM, QGIS, and " -"InaSAFE**" -msgstr "" - -# dc51f2fb98414e3ca19cd9a7be37d9ba -#: ../../source/training/curriculum/curriculum.rst:1312 -msgid "" -"**Standard Competency:** Teaching data collection and analysis with OSM, " -"QGIS and |project_name| in their respective region" -msgstr "" - -# 1562267bcacd4307ad74ce496794fe16 -#: ../../source/training/curriculum/curriculum.rst:1319 -msgid "**1. Adult Learning (2 Hours)**" -msgstr "" - -# f0809e1f75fd421382b5b2534f52d85f -#: ../../source/training/curriculum/curriculum.rst:1323 -msgid "Analysing the characteristics of adult learning" -msgstr "" - -# 65c1f6047abe4bdeafd153d4ed09d710 -# c4b489f06ff342bfbe98dc46e473abea -#: ../../source/training/curriculum/curriculum.rst:1324 -msgid "" -"Determining strategies, teaching methods or techniques that apply adult " -"learning" -msgstr "" - -# e1e63132614b49cd85059acf94abe4d2 -# bd860a5b9b1b4e1fbc8b81c9d62bc207 -#: ../../source/training/curriculum/curriculum.rst:1326 -msgid "Evaluating adult learning" -msgstr "" - -# 6a35d892fbaf4217a7a4ba630f732ec7 -#: ../../source/training/curriculum/curriculum.rst:1321 -msgid "" -"Participants learn about characteristics and principles of adult learning" -msgstr "" - -# 1d68b78a1b074b6cba4a15701a2845b3 -#: ../../source/training/curriculum/curriculum.rst:1324 -msgid "Participants discuss about strategy of adult learning" -msgstr "" - -# 13a492ed3eaa429a80c43efddd2f5863 -#: ../../source/training/curriculum/curriculum.rst:1326 -msgid "Participants discuss in pairs about how to evaluate adult learning" -msgstr "" - -# 7d599c94efc044e3a3f56e6faf8f54ff -# 63afd7594dbc461ba07e09a4e46296ff -# 61c791a776524e21922b8cbf1308e8d0 -#: ../../source/training/curriculum/curriculum.rst:1321 -#: ../../source/training/curriculum/curriculum.rst:1332 -#: ../../source/training/curriculum/curriculum.rst:1340 -msgid "90 minutes" -msgstr "" - -# 497feb1212794f9abbfd3f82a88e3e68 -#: ../../source/training/curriculum/curriculum.rst:1321 -msgid "Projector Slide PPT Module 1 Plano Paper HVS Paper Small ball Music" -msgstr "" - -# 5caa8d5f280d49f38766d83d89dc30da -#: ../../source/training/curriculum/curriculum.rst:1330 -msgid "**2. Communication skill (2 Hours)**" -msgstr "" - -# ca0a6433f8ad475c89179a75079b6579 -# 52dba535f5754dee96affc636e328268 -#: ../../source/training/curriculum/curriculum.rst:1334 -msgid "Describing the communication models in workshop" -msgstr "" - -# f29d6c2164ce4b6ebf05f0300c6ed5a4 -# b123e38f556a418298d4267691f22bd0 -#: ../../source/training/curriculum/curriculum.rst:1335 -msgid "Demonstrate the basic skills component of teaching / workshop" -msgstr "" - -# 3810bfa73d5844bd9cb7ed1b6c95fc7e -#: ../../source/training/curriculum/curriculum.rst:1332 -msgid "Participants learn about effective communication" -msgstr "" - -# f959454e2ecb48c0808b67a1529736db -#: ../../source/training/curriculum/curriculum.rst:1334 -msgid "Participants discuss about communication models in the workshop setting" -msgstr "" - -# fe55b75063624970b2bb890e18951fc4 -#: ../../source/training/curriculum/curriculum.rst:1338 -msgid "" -"**3. Facilitator skills for data collection and analysis through OSM, QGIS," -"and** |project_name| **workshop (2 hours)**" -msgstr "" - -# 505455d1d4f840aca19af997cd5e1dd4 -#: ../../source/training/curriculum/curriculum.rst:1340 -msgid "" -"Practise data collection and analysis through OSM, QGIS, and InaSAFE workshop" -msgstr "" - -# 24f07fb51e2b40b69fba19e39b29de04 -#: ../../source/training/curriculum/curriculum.rst:1345 -msgid "" -"Practise communication skills in data collection and analysis through OSM, " -"QGIS, and InaSAFE workshop" -msgstr "" - -# aee32e97a6f34a5fb9655e75cfec53fd -# 89cd4a5ffa174171ad9b0b9396caa2ae -#: ../../source/training/curriculum/curriculum.rst:1340 -msgid "" -"** Facilitator Skills for Data Collection and Analysis through OSM, QGIS, " -"and InaSAFE workshop" -msgstr "" - -# 7179142ad3d14a0495f98e4ad4e72bbe -#: ../../source/training/curriculum/curriculum.rst:1340 -msgid "" -"Participants practise their facilitating skill for data collection and " -"analysis using OSM, QGIS, and InaSAFE Workshop" -msgstr "" - -# 7d5145e928c24018a573aa6d718d6c4c -#: ../../source/training/curriculum/curriculum.rst:1340 -msgid "Projector Slide PPT" -msgstr "" - -# 079445340e5b4a49900f47484eda1a81 -#: ../../source/training/curriculum/curriculum.rst:1350 -msgid "Summary" -msgstr "" - -# 54d9f17fe5f3403784c4b3fb8c927aa0 -#: ../../source/training/curriculum/curriculum.rst:1352 -msgid "" -"After completing the three trainings, including the Training of Trainers for " -"Scenario Development for Contingency Planning using OSM and QGIS/|" -"project_name|, it is expected that workshop organisers from national or " -"province/district level can use this document as reference in order to " -"create the same output." -msgstr "" - -# 27d23afbeb3a4553ac6e7ef780a8a255 -#: ../../source/training/curriculum/curriculum.rst:1358 -msgid "" -"This curriculum is continually augmented and improved through input from " -"stakeholders, such as government officials or non-government who are " -"included in the working group." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/curriculum/osm-beginner-toolkit.po b/docs/i18n/fr/LC_MESSAGES/training/curriculum/osm-beginner-toolkit.po deleted file mode 100644 index fbafddb1..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/curriculum/osm-beginner-toolkit.po +++ /dev/null @@ -1,3415 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:38+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 346922cac34e4e949958be4f1f776ae7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:2 -msgid "Unit 1 Facilitator Guide" -msgstr "unité 1 Guide facilitateur" - -# b2254165414d4f4abfca1558998d8748 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:5 -msgid "Beginning OpenStreetMap Trainer Toolkit - (A Guide for Facilitators)" -msgstr "" - -# b520b3f5ccdb48ef961fc2368b0e3794 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:7 -msgid "**BADAN NASIONAL PENANGGULANGAN BENCANA**" -msgstr "" - -# d4113babf1e046d59d663ec731beb943 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:9 -msgid "**2013**" -msgstr "" - -# e8ccdbc712604f72aa1348ec98584592 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:12 -msgid "About Toolkit" -msgstr "sur le kit" - -# bf051978b36b402c9babd41729d947ec -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:14 -msgid "" -"**The Beginning OpenStreetMap Trainer Toolkit** is designed to prepare " -"trainers to deliver an introductory training course to new users of OSM. The " -"materials included will prepare trainers to conduct trainings with a variety " -"of audiences and to cover common problems and pitfalls, and also provide " -"trainers with the best methodologies to engage new mappers." -msgstr "" -"** le kit OpenStreetMap du formateur débutant** a été comçu pour préparer " -"les formateurs à fournir un cours de formation de base aux nouveaux " -"utilisateurs d'OSM. Les éléments inclus aideront les formateurs dans leur " -"tâche auprès de publics variés et répondront aux problèmes courants, et leur " -"proposeront des méthodologies adaptées à leurs publics." - -# b451fa6d38e5420b9aa3424745770519 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:20 -msgid "" -"When organising an OpenStreetMap workshop, numerous factors must be " -"considered, including the length of time you have to train, available " -"resources, number of trainees and their technical skills. This toolkit will " -"help trainers prepare trainings for different types of participants, but it " -"will primarily focus on educating those with little or no experience with " -"GPS, map-making and computers." -msgstr "" - -# 0fd816fde95845b2b95f0a8a772b9ab5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:27 -msgid "" -"The purpose of this toolkit is to prepare the trainer to successfully train " -"workshop participants in adding spatial data to OpenStreetMap." -msgstr "" - -# 41e1803e4c354ab78af39e4fec34523b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:31 -msgid "Purpose of Workshop" -msgstr "" - -# ede9e20368cc416b99caf357e66b999d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:32 -msgid "" -"This workshop is intended to achieve the following standard and basic " -"competencies:" -msgstr "" - -# 67c3e528c8c8437bba7dc57c82465205 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:36 -msgid "Standard Competency" -msgstr "" - -# 084d12b6b03849b380b0763298d7d808 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:37 -msgid "Collecting Spatial Data with OSM" -msgstr "" - -# 75570bd8566a442ba45de9e1a08c15e7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:40 -msgid "Basic Competencies" -msgstr "" - -# 07647e4a0a294b4abe5701c62bfe4a90 -# 762db927abed4462a680289b840a5448 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:41 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:228 -msgid "Draw paper maps to gain a basic understanding of OpenStreetMap" -msgstr "" - -# 1cd6ae4f952b43d5a2a3788dada57bb0 -# fb0826f9007944f7b6f488b3ff08f9eb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:42 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:358 -msgid "Navigate OpenStreetMap website" -msgstr "" - -# 050261816609423190091c0907dc7ed6 -# bb2479dc935a42bab569d626b039c762 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:43 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:480 -msgid "Operate JOSM" -msgstr "" - -# 3675972f2d7f40ffb369aa829039b7c0 -# 0c2a0f0084ea4715a3d0662fc5039cb1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:44 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:656 -msgid "Use GPS to add data to OSM" -msgstr "" - -# 1fd4785ce0f34f3688f3d8327ae974ef -# f718b64fe65c4de8889f82a7733b9826 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:45 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:826 -msgid "Use Field Papers to add data to OSM" -msgstr "" - -# 3fdcbadacda2453cb1e4a3d6f26821f4 -# 6e1d7116f80e41eda3b2bbe99defee80 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:46 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:959 -msgid "Edit a map and add information to OSM using JOSM" -msgstr "" - -# be935e03f9a64cd388b3b1fbaa4da67c -# 10d7d23f5e484d01a1969fdb13247ef8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:47 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1106 -msgid "Correct imagery offset" -msgstr "" - -# 319412bebd9a4eec9fd52e9283332e0e -# a1c9433c65494466aeaa3af308b07e71 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:48 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1165 -msgid "" -"Get OSM data in a specific format to be analysed further in Geographic " -"Information System (GIS) software" -msgstr "" - -# 429d7c20a3ca4c7698cbe3c6560848dc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:51 -msgid "Workshop Materials" -msgstr "" - -# f967bfb0aa3c41c4b3d223c039b27b65 -# 1353088cdab54b6082f0ebc80d7caa93 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:52 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:112 -msgid "The OpenStreetMap website" -msgstr "" - -# cc4e3555d38f452a9333e97ce3c37c60 -# 42f730cac3194c9db5201ea667d11131 -# 16681e76e0ce4440819c2007052b995d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:53 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:116 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:120 -msgid "Working with OSM" -msgstr "" - -# 98906073487742258069f53cbfa03d50 -# 12684bc6c9ba4b3d8b2870b7d51a9e9d -# dcff32af35d2407ebd89a502c83c47b1 -# 506722b6fca849578a09f5d9e623bbf4 -# b5e5265e09634ae3b0cb3cdf6fa305df -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:54 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:122 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:130 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:134 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:475 -msgid "Working with JOSM" -msgstr "" - -# ea295e35d4e842a1954bec21639ae31f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:55 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:136 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:140 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:144 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:152 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:651 -msgid "Using GPS" -msgstr "" - -# ec2d758ff3aa470b9dd1e3e495f933a9 -# 3adb680855c94ccb92ea299ee5ee4370 -# 10680632c98149c696e0509bad6dbb24 -# 5a9efc5a36c249bdaebb61c32b48394e -# 034151d0611d49d095b608f7f47796d0 -# 3b6a5223444d42e6a0f86dcb89ef0522 -# f95d06aecb494a6e988a32178e905906 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:56 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:156 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:160 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:164 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:166 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:821 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:908 -msgid "Field Papers" -msgstr "" - -# 2f793db50aef40e6bdc259c0a4147ee0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:57 -msgid "Editing OpenStreetMap through JOSM" -msgstr "" - -# 32b60cc007004260b9b1dc30da3ba93a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:58 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:188 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:190 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1125 -msgid "Imagery offset" -msgstr "" - -# e0611aa17316420da4cd61d29bef6d91 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:59 -msgid "Getting OSM data" -msgstr "" - -# 5a43f59837ad438c81242996040cdfc1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:62 -msgid "Workshop Strategies" -msgstr "" - -# 2cf179aee3bb4825a751c7c181f59464 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:63 -msgid "" -"Methods emphasised in this workshop are participatory teaching and active " -"participation in all sections and activities, rather than lecture method." -msgstr "" - -# 9feaeccfc2ce465882b942f0ab99741e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:66 -msgid "" -"**Participant oriented.** Participants are encouraged to find and gain " -"knowledge and skills by themselves." -msgstr "" - -# fd4662064d5e4d15a42f210c13d772f2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:69 -msgid "" -"**Trainers serve as facilitators.** Trainers facilitate to help ideas in the " -"workshop emerge from the participants, not only from trainers. However, " -"trainers must be ready to provide necessary information when the " -"participants need any assistance." -msgstr "" - -# 84c39ab0a02447f1926a9d3a66121c53 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:74 -msgid "" -"**Outcome oriented.** Workshop must produce the outcomes mentioned " -"previously." -msgstr "" - -# d12292b2ae1d407799988296a2d7c5e8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:78 -msgid "Tools" -msgstr "" - -# fb7ef62491db4c1ab305afeb6bcdf465 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:80 -msgid "" -"Copy of :ref:`Data Collection Using OpenStreetMap Beginner Level ` for participants" -msgstr "" - -# ab420143f8bd4451a3d186a784d91807 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:82 -msgid "A workshop space with tables and seats" -msgstr "" - -# 201d361c3f7543feb4e06c28bea80a00 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:83 -msgid "" -"Computers (one computer may be used by two participants, but it is better if " -"one computer is used by one participant)" -msgstr "" - -# e25c7112ddd34453b06481064a8b4868 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:85 -msgid "A Printer (to print out Field Papers)" -msgstr "" - -# aba8146df23942df89057be9906797a8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:86 -msgid "" -"A Projector (to present slide and demonstrate technical instructions and " -"software)" -msgstr "" - -# b50f3cbe91444813b2e04f2124e21ac3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:88 -msgid "" -"GPS devices (ideally, one GPS is used by two or three participants in a " -"group)" -msgstr "" - -# 5cb41cb6a0df4deea1c51fc23ca617eb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:90 -msgid "Batteries for GPS devices" -msgstr "" - -# 7cb941032717410e8c5bad9fcbc774f3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:91 -msgid "USB cable to connect GPS devices to computer" -msgstr "" - -# ec7fb78cbd2942678298f902e30878b8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:92 -msgid "USB Flash drive(s) to transfer files and software" -msgstr "" - -# 192e51dda07f47b8a75017f3c57482e9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:93 -msgid "Good internet connection" -msgstr "" - -# c1f53a4dc58248f2b020bf4cebc4728c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:94 -msgid "Snacks and coffee for breaks" -msgstr "" - -# 860474f58550449f9bfbdccec2e26ff4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:97 -msgid "Schedule" -msgstr "" - -# 7096ce89edb04de3a37779b7b3115b90 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:99 -msgid "" -"Below is an outline of a schedule for a five day workshop that has been " -"tested with several groups in Indonesia. You may choose to adapt and change " -"this workshop schedule to meet your needs." -msgstr "" - -# 7fcdd36269934f02afeeb1c1a14832a9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:104 -msgid "Day I:" -msgstr "" - -# 2a29c018b87646fd9435b114084529e6 -# bbc8e67023364fea89e86a2a0a2d19f9 -# 4b9f60152d6c47e3827d93fb0d7706d5 -# b458e7acfb5d4bc199dbada784f9dc83 -# 3e1a4ab8e3d645cb9a7e733c3636c0fc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:106 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:128 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:150 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:172 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:196 -msgid "**Time**" -msgstr "" - -# ff3d9cc24d47411fb1ceceb80d4effef -# 1bae1374e7724ff48a0204569047bedd -# 34dfc0ee355c45de856871ef7b3ee81e -# c5ee2717bbef48f3adadc0926e51884e -# f045f685076c41c5ac5d0406a9800732 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:106 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:128 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:150 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:172 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:196 -msgid "**Materials**" -msgstr "" - -# efdeba28e0d8497fb2c876f9ced7a802 -# 9f57f0f68dc7464baecbb55f345e0054 -# b184022e32ec43079983d9299c083b77 -# 9096e3dbab6647838d51a806a6193e1b -# db33fb57424a4b35965291713ceaec93 -# f74f89c359fa44838933ab298415e7e8 -# 121fc950d1be46839ee006c2c02172e6 -# f568011f7a4c411285b63d173c10828a -# 371ed1177bef4a4d9694dc1e52d59bd3 -# caf737153a524f178a25698071a866f6 -# 736fe271bd6c4288aa4a023c9079a6bd -# f7dcc27c30c647ba9de9777adb7cee80 -# 77c37fca9b5645a88715205d94725dd3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:106 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:128 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:150 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:172 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:196 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:254 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:387 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:520 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:701 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:855 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:988 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1131 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1188 -msgid "**Activities**" -msgstr "" - -# 045ecdfeaece42ce924e4c8ba5f73850 -# a0e591d8111843428ef203a8dc0fe295 -# 3af869fba73f4c2084cff2bce2c25edd -# 239a26487aa44d4e984c95904f7a671e -# 6a64688191664a3980b629fe7a6658a9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:108 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:130 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:152 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:174 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:198 -msgid "09.00 - 10.00" -msgstr "" - -# 7da536612b674882be052713db28a79c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:108 -msgid "Opening and Introductions" -msgstr "" - -# daa175a4c72843a9884798448556ccb0 -# a826262439144f0488ad4483bc2125da -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:108 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:212 -msgid "Plenary Session" -msgstr "" - -# 3d6e9504bd8e45bfbb08484792f99428 -# d20eed619c46452bb6cf39306ceeb831 -# 08bf54e0d7c44263866cbb00d3620a11 -# 830f32885b414afdb51819d80dbd2f17 -# 8606f64d17634f28ab33fb9e1baef24e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:110 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:132 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:154 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:176 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:200 -msgid "10.00 - 10.15" -msgstr "" - -# 3638944f1b494d7d90874b1a1e455984 -# 2d7094d1d7e140d49613e00c1626e120 -# 8d58e6e7fa1447c491840e7c87635025 -# 190092b44b724a12b3d69de75f9cff52 -# cdc9b2f68beb442ba8e2e2d7b3b8d39d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:110 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:132 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:154 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:176 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:200 -msgid "Break 1" -msgstr "" - -# 4ad19f0199e94ccfb14eefdede5e5894 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:112 -msgid "10.15 - 11.45" -msgstr "" - -# 0e272ae82d9d428593973e2da6286c0b -# 677e32fbeb6b476eaf81e9c291c0ae1a -# ef0eba17c0854827af3b6ae52beaf2c3 -# e6d87e480f8d4a42bca40b419bfd54b9 -# d888c6648f624e69bada7e36353fdc96 -# fc4e0e55ea65424c9763529e883d00f4 -# 1f88e396505e40728caf3b2e898f3349 -# f6a251713cc3429a8377694225191860 -# 53c490aa59ef4607a76ca25ffa8312a0 -# 25e1c87f479d4dccae285cd8444435e5 -# 6cd5c5287720460e9761125a6bda310f -# a54d9fcbda794d529effb2792e1e20c7 -# e5ce4b591d79430f8d49c9d1f5df5445 -# ec04ee2f1d4f47238bf50fc6580b3f75 -# 59b52750b47749feb1994150d680b7cf -# 072d78b97aa640c7bfd86c14e6ccfc27 -# f26c0f241e5c441683f2765c4a84c340 -# 821ce76ee5304a3c841844ed6a1186c6 -# 5ff700feb1264433832c63d79521f171 -# b7d5be12ecff4c8dbb8df6f7345118a2 -# e3f69ca9a33849da9e5287dd10d6c535 -# c73c2c7c9f60458cac2fec4e4aef80b9 -# 789a1accf2e24e1f9093a0bacba41aea -# 318d5253125d4e21be307af5e851c01a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:112 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:116 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:120 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:122 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:130 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:134 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:136 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:140 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:144 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:152 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:156 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:160 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:164 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:166 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:174 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:178 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:182 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:184 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:188 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:190 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:198 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:202 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:206 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:208 -msgid "FGD and Plenary Session" -msgstr "" - -# 2a8fed9a4a994cd4b5357f164b55ebf4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:114 -msgid "11.45 - 12.45" -msgstr "" - -# f3e82ba99ae84d1db73572ff80d9c2e7 -# 0c7b3bc0e7264e1c9165ccb72e2e2770 -# 8304809c08904230aa40e66ef16713d6 -# 5821d2958c6044beb0915d294f062ef1 -# 147ffdd3f6e944b1a77fed43ca89c450 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:114 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:138 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:158 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:180 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:204 -msgid "Lunch break" -msgstr "" - -# 0423d213289c4bd38b4a94170a8a7e5e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:116 -msgid "12.45 - 14.45" -msgstr "" - -# 5037977e14d7459c982671cf56e097ed -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:118 -msgid "14.45 - 15.00" -msgstr "" - -# b7c1ce2ad92547b2b3386a73b2a58bb2 -# 2c1a2ff2140d4c899dbd2df55bc22934 -# 87d4555b67ca43fa90063d8cccb42acf -# d709f81611a848afb52f456e5c1d2341 -# 0e2fbd30f9e14952968ea6bc9e5ecb8a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:118 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:142 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:162 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:186 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:210 -msgid "Break 2" -msgstr "" - -# caea5143fd6b4785be5f031f89f93b57 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:120 -msgid "15.00 - 16.00" -msgstr "" - -# 3d78d707fbd443f5b6d8ba9012c92c30 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:122 -msgid "16.00 - 17.00" -msgstr "" - -# 353fceffcc5742d6a234b0cd6f7ba7b4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:126 -msgid "Day II:" -msgstr "" - -# 10bf57bb385a42c09f929f1ae824342c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:134 -msgid "10.15 - 11.15" -msgstr "" - -# c01eb866598545a69533b0a422c6cb19 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:136 -msgid "11.15 - 12.15" -msgstr "" - -# 5e6f4e5de48d4a45899e3ac13888692d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:138 -msgid "12.15 - 13.15" -msgstr "" - -# 10a9897e6c1a4ed68cf85734a293db54 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:140 -msgid "13.15 - 15.15" -msgstr "" - -# 0bff83e7842c46dea45c1605b6dae750 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:142 -msgid "15.15 - 15.30" -msgstr "" - -# 2a9d4668e3b34970abe3d9d845bd9073 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:144 -msgid "15.30 - 17.00" -msgstr "" - -# 8959cd4e24e2496b9696100f7c6018b7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:148 -msgid "Day III:" -msgstr "" - -# 288e13db66714823b34d9d9e7411e62f -# 4cbb0ba5e7d945cb9aebb030a9df2a0a -# e75ce7ef5d84452fac33cffab9c18406 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:156 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:178 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:202 -msgid "10.15 - 12.00" -msgstr "" - -# 4574775b46734eddb4f80d4f7c5724fb -# d9757350e07c4384905a7203f9dfd88b -# aeefae83edf048538d6ba875ba38bb5a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:158 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:180 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:204 -msgid "12.00 - 13.00" -msgstr "" - -# 4d7e453f846d4524aadeed4fb5810e40 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:160 -msgid "13.00 - 15.00" -msgstr "" - -# b55292568e9348338e705a70bf66eee6 -# 1d07ba3eed614db9894176affad648a3 -# 08b0a7d4dac74d85a36c5c79f31f3a49 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:162 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:186 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:210 -msgid "15.00 - 15.15" -msgstr "" - -# 0407466ae58644eeb53171b450ffaa4e -# e9a24117679046df9c96d35523b5f28a -# 459a14bfebea403485809b2372ff66b0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:164 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:188 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:212 -msgid "15.15 - 16.15" -msgstr "" - -# ab13a0afd35b428f819edcef20a9fa12 -# 9e29ad04cf5f4637bd8aeb6b2b4bdc94 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:166 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:190 -msgid "16.15 - 17.15" -msgstr "" - -# f6234b530a4e4fc2ab1218630d9f6504 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:170 -msgid "Day IV:" -msgstr "" - -# 72a7d3746d824db59aab912a1535fb68 -# 89d1ad69acbb4741b7882e6546b60c1d -# 69d6dcc20492485f8244c3ce1604c7ce -# b7b7c8173f744716a73268961b00ec1a -# 595540b4c1e942c6835fa1f6953f1d94 -# e59cbbafd03c473482fb2104c7d21651 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:174 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:178 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:182 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:184 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:198 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:202 -msgid "Editing OpenStreetMap with JOSM" -msgstr "" - -# ede7beba7993403fb00e490196b868ba -# 5e76c0f442ca48288bd5d3e3e4e9ed66 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:182 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:206 -msgid "13.00 - 14.30" -msgstr "" - -# 4bce0ce384a64be2adafa9c259a33277 -# dc690a3c2a1440d9a9919da27889321b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:184 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:208 -msgid "14.30 - 15.00" -msgstr "" - -# 487713d3f1124ec992b3431fc296381c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:194 -msgid "Day V:" -msgstr "" - -# 1fc395ff976042758f0a2efbeaad8bf3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:206 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:208 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1160 -msgid "Getting OSM Data" -msgstr "" - -# bd1a339978c945269c77c1896eb22067 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:212 -msgid "Workshop Evaluation and Closing" -msgstr "" - -# 4c7c09215f8947fc96f0e92f25baa40d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:217 -msgid "Workshop Plan" -msgstr "" - -# 4be66d758e874764943d71b663e6050f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:220 -msgid "Session 1" -msgstr "" - -# 19713d21288741da9733015f1a9748f9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:223 -msgid "The OpenStreetMap Website" -msgstr "" - -# d5ec2a2d545940a9a40f863075804891 -# 10786bec6b804173b2c590514604811c -# ee73d536e3cc4139a98a6994bfd134bb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:224 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1102 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1161 -msgid "Time : 90 minutes" -msgstr "" - -# 62776fb451c64dc7b5b100307fa1195a -# 9611cde4ce68442f9359137a83822306 -# 0fd1c097e1ef4c49881947dcd2334d75 -# f3fd7b24ce554f68b078f1b4ac425039 -# e89b2b8eca7c4b0fb548e708a6e336b1 -# 278acd87f1f848d5bd9bbe45267c508d -# 447648b213ab4ef59a2daf7d82cd3b7b -# 58fe2a54931d47f1b0e8e030974902ac -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:227 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:357 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:479 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:655 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:825 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:958 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1105 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1164 -msgid "Basic Competency" -msgstr "" - -# 7d6c43c21e6a42b1867654019770c5b4 -# e6d889b202fc4ebea1dc522aca8bdb91 -# bcf515fc57a548188331212afa1db30c -# 136de915c0dd4c038b51d957c82c5701 -# 31d58b2dbdff477aac07018de070a9f7 -# 7489ece9fbb54bd3ae6209157e4f36dd -# 08524299193843a79978c4c78ae849b5 -# a24181e17df54753afad78d393a1f3cd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:231 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:361 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:483 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:659 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:829 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:962 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1109 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1169 -msgid "Indicators" -msgstr "" - -# 3771ff74bde94037884bed73e37f15f5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:232 -msgid "Understand the concept of OpenStreetMap" -msgstr "" - -# 163513228cf14450a923c982033f98e4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:233 -msgid "Understand the definition and objectives of data collection" -msgstr "" - -# e822cfb54a08490d9dc8032563f06c10 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:234 -msgid "Understand the composition of a map" -msgstr "" - -# 3230473b5b1d47748f068145df4fa0ba -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:235 -msgid "Make a hand-drawn sketch of an area" -msgstr "" - -# 674c06f516e94674bcf6d6fd4dc35376 -# b6bbeba16dca4ee4b940693b19be6f7e -# 04ca0d9601fb466db79ddbd3f2e191a4 -# 010d84ef20b249fb981917a18679b724 -# 3a35dc3e1bc847438b4f5f37418fa71e -# 324d9328dff64320a9105154f1a85884 -# 4b56c9fb577b4b1987fe7b0d230d8be2 -# 56fc81d1d58f43669482e4f1c2543871 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:238 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:370 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:493 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:672 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:837 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:971 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1116 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1174 -msgid "Outcomes" -msgstr "" - -# 9547f860879047cfacfa3e5172d8529e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:239 -msgid "Questions and comments about OSM, data and maps" -msgstr "" - -# 52b4c03b247a4256ba7f7eb15e38d960 -# a2e5cfacf6f74d1399d4596a589f05db -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:240 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:249 -msgid "Hand-drawn sketch of an area" -msgstr "" - -# f9fc964031064b0782b19b7a84df9bf9 -# be1ca5a578d945f281b9d402d5420a5b -# 9b0d61243c9149829055c09b4955c67a -# afba1ffe9ea049c098e865728f80a488 -# 406923602fe74cbda1386374749766f7 -# 3aaec45a64e14becb7d8eeb06faaca72 -# d0216f75d4b14156ba74c9cefbae03a2 -# bdc1ad3753f74338a84d606863915aaf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:243 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:375 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:497 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:676 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:842 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:975 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1120 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1178 -msgid "Core Material" -msgstr "" - -# 2fd1aabb83ab4c0a9e52f7a1af8825ed -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:244 -msgid "**The OpenStreetMap Website**" -msgstr "" - -# f5edfe53966348c08e584091a6b9131b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:246 -msgid "Concept of *OpenStreetMap*" -msgstr "" - -# c6640e4e8c74459fabcb842418189428 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:247 -msgid "Definition and objectives of data collection" -msgstr "" - -# 1269b87de0b84d61a3cd1fe1fcff33b6 -# a5fbfdde03114ea8b0c624eadae636b8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:248 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:284 -msgid "Components of a map" -msgstr "" - -# 450ea0034ad047e5a3b7b6b8a748baf3 -# 704c371050344cdb830961f5d1b1b1ac -# 44b178f99a36476e97e6c72c8d93b884 -# 6c5019df5d3c4b48ad40bc1924da1c6d -# 91b7aba3d538492a876ff340ba84ec83 -# 3d2de5a8842042aaba842f0db52f1a56 -# 37c552d887d649e19b04393b3b5a8a68 -# e93867956ade4c42930d0cc24c03d042 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:252 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:385 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:518 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:699 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:853 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:986 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1129 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1186 -msgid "Activities" -msgstr "" - -# 8938d297ffe448febd0ead157e6f65f5 -# 1d0d5c2cea7f466ca73333952d6b518b -# c3dc0d0c90714eaeac29b4cd2af4ab68 -# 2095f9470acc4a0fa83677c3dac52d39 -# 8a45d401e1f041efa6140dfa1daddaea -# d423808380844a1e965ad0ac62e6dee4 -# 82dbcb4cca434c0d954f7bf497f873f8 -# 788c6d0a635f4025922a2b512866d67a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:254 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:387 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:520 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:701 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:855 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:988 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1131 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1188 -msgid "**Methods**" -msgstr "" - -# f640d4110395474995a1858a5e7ae161 -# 5f7db920efa24d0992cb39f3347e3452 -# a66e639221f64c88a0e8a536a61d8eb2 -# e90410316ef640b7b1dcca4f6b3478d2 -# 0727450771ad4c1a95608ecaad494aec -# 9d01487258f74810ac705fc22a473330 -# fc85147f8b5947668bcc6b7cdcbe0618 -# 28289d211bc84dad8c9f84e0da0d70dd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:254 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:387 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:520 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:701 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:855 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:988 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1131 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1188 -msgid "**Tools**" -msgstr "" - -# ec4e026a103f4876874221c26e04c06e -# 5ceee3d4ee2a4bde83eb849382e16285 -# c3b8065d8ca649f4aa92672841eb1028 -# 3813d72259f14ebb8eb8e4f4e920fc26 -# 04f806fa41f14c38977c59575c3ef902 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:256 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:389 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:990 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1133 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1190 -msgid "**Introduction 5'**" -msgstr "" - -# 7d43f3b2373b4626bf0934b39afed1f3 -# 7d640100e3ca466ab0ac36829ce49f08 -# a1edfd2411ab4c72a334dc325c53e5d6 -# 3183ef8656aa4a0b9ba56dd73238398b -# 9b927d90426e4548bdca60b06fdba360 -# 9bd6c264dea340e9a5489e0543bef4bd -# 9bec5ee733bb4f96b78de431b7455def -# 966768ff078446eaaed185cc1ad8a818 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:258 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:391 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:524 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:705 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:859 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:992 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1135 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1192 -msgid "" -"Explain the importance of the session, objectives, outcomes and activities " -"of the session." -msgstr "" - -# 4e1b2523cbae4638b45b75df02f6510d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:256 -msgid "Lecture *Slide*" -msgstr "" - -# bf0c5bf43b4f4534b092c8e4abb1aaed -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:256 -msgid "*Powerpoint*" -msgstr "" - -# a0bc321ce5554e958370f6c40be97aa1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:261 -msgid "**Quiz 15'**" -msgstr "" - -# 00aa12efcfa74c48aa0b259b453da9bc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:263 -msgid "Ask questions to be answered by participants, such as:" -msgstr "" - -# db20865c67044a168348b8d33c420bfa -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:266 -msgid "What is OpenStreetMap?" -msgstr "" - -# b5752780a867418cb4f846140a571ee1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:267 -msgid "What is data?" -msgstr "" - -# 2be9958573484e0a93b7f172d9f3a0f6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:268 -msgid "What are the components of a map?" -msgstr "" - -# 89f8069c2112468e8f7771e5a769b5a8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:261 -msgid "Quiz" -msgstr "" - -# 76397ecb5a874a018944c7ebed2517c2 -# ca9b4b2161ed43c5aa991815786fb859 -# 213455a571524b8d9840bdbf85611c9b -# 1e2a049e7ab3456b98d629ebe9a52cf0 -# 3e81428c6d034e99a4c1d406b1f6c368 -# 0c8fd6c70e004a45af12023d42cb3e4a -# cede5d36483c4f3cb13283468a5275ee -# f666db275fd54bbda11a1c0e3196fd6b -# a793929547e640acaa69c2255f31a676 -# a845c618ee8e476f9707a64fcc67c2f1 -# d423df969fc3447ca8de1a82eb3ddb4c -# 16e10d33186840efb895d9580f1b88f4 -# 404c08331e1b44c39fdfe27f5e7411f7 -# 0cf8ca05b3724d57b3d75b210a831c7f -# bce7a727462245a4ae75dc93a625cdb2 -# e84d810d0410429f8f425ec94d160a7d -# 295af7bf00a34ae0b40434d2f6b8066f -# 33fbe1e520174b26bc57ef4257667a58 -# 10f827d7e6004b749abf42ac6ced36c0 -# cd7e30b4acb04fa3ad3c9f373614a271 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:261 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:389 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:398 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:410 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:420 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:434 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:443 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:522 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:530 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:703 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:708 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:716 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:857 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:862 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:872 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:990 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:995 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1133 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1138 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1190 -msgid "*Powerpoint* *presentation*" -msgstr "" - -# f514ec051e804f8db9acb037b8e55d70 -# 364d973b1a14487b858c4fc449e49897 -# f12e53a13a0c4fdd9763c62a0897d747 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:264 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:273 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:291 -msgid "Module 1" -msgstr "" - -# 001a2aab436345c8ab4d5c5822a74a9b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:270 -msgid "**Explanation 30'**" -msgstr "" - -# 9e4506cdb8e94f189510758dc8ddaf48 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:272 -msgid "Definition of OpenStreetMap" -msgstr "" - -# b1fda01c302d4f2c97de3bfa6d8b08bf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:274 -msgid "Data:" -msgstr "" - -# 22905ff7aee2472d9e20ce5601e2c32b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:276 -msgid "Definition of data" -msgstr "" - -# 4094e651ecf64366a326ed8e3fe797e9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:277 -msgid "Objectives of data collection" -msgstr "" - -# 65b621ba09724d019fef44991629aaa0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:278 -msgid "How to add data" -msgstr "" - -# 21e187ed7478445c8d93e7b5fa67d221 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:279 -msgid "How to save data" -msgstr "" - -# 590302c7c92641a3b4fe80c7450f535a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:281 -msgid "Map:" -msgstr "" - -# 40e87c8d970a47c998f1ac8765312e83 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:283 -msgid "Definition of a map" -msgstr "" - -# 26c63b24b78e4e1f824bf05434a71727 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:285 -msgid "How can a map show us information?" -msgstr "" - -# d46c85ef4770440d957a455c378bc245 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:286 -msgid "How to connect attributes to a map?" -msgstr "" - -# 2b730981e9aa4697968bc6b045e03daf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:287 -msgid "Mapping process" -msgstr "" - -# 7976d6c87bc94d7abccabb905cd89c5a -# 12345f3d57984f778cacce26d0335553 -# dcdd68389fba46ef8e60b9f32561fb79 -# 5dfe3eee222a421f864b6e433c218fa1 -# 4aec9f27aef34e9ca0dea2c85ad17f9f -# 01333460ab8b41788aae4cb412ece17a -# b18f477bad864fe896d6ad120a817678 -# 888c60b6ca4e476393b1d8bddc738e87 -# 14c548bd1bd74455934a96d01f463e5d -# ecfa6b2e1a17444c91b0fc1cda964557 -# 4a724514a54046b6bfb30f4ed0c62cdf -# 71c9ea2e097e4273801b543e6ef4ef6e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:270 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:299 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:389 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:418 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:990 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:995 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1133 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1138 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1190 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1195 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1204 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1216 -msgid "Lecture" -msgstr "" - -# ce3ad911306c4289b09b25f359c091b7 -# bc23fd2decf441f2b5b9517014f32c1b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:270 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:299 -msgid "*Powerpoint* *Slide*" -msgstr "" - -# db86ccb5e67642d9b3da528dbf085bc0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:289 -msgid "**Individual Work 10'**" -msgstr "" - -# 670d0c37997e449488304e2741cbcd65 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:291 -msgid "" -"Ask each participant to draw a map, complete with its information such as " -"the name of streets or districts" -msgstr "" - -# 0875fa4d907d474ea3824ae6279e3e2a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:289 -msgid "Individual work" -msgstr "" - -# 4d26eee54eca4132a7d1398c5e5cccf2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:289 -msgid "Paper and pen" -msgstr "" - -# 2425e704261f40f9a5f42ac3b2e5d60b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:294 -msgid "**Presentation 15'**" -msgstr "" - -# 63c156573fd24839833f5443d665ade8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:296 -msgid "" -"Ask the participants to show their maps and explain what they have drawn" -msgstr "" - -# 6dbb2b2fc8f64bc6a6b2ede1aca5dfe3 -# e6361017508249a09f6d2717f4c5e82e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:294 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:765 -msgid "Presentation" -msgstr "" - -# 93958e9f36b24196ace90b2fbc26a3f5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:299 -msgid "**Emphasis 10'**" -msgstr "" - -# 8d5c1c60538749069bcc710c5d3d3e84 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:301 -msgid "Emphasise some points:" -msgstr "" - -# b1ee6811f0a046cf9e47a39bbb09d91b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:303 -msgid "A map represents places/objects with different symbols" -msgstr "" - -# 210b67a4d4fd42ab97c3b2195106372d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:305 -msgid "" -"There are three ways to represent an object: as point, line and polygon " -"(area)." -msgstr "" - -# e817c3d174ae4b5eaf5181e49fada665 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:307 -msgid "Objects on a map represent objects from the real world" -msgstr "" - -# 910bded03f524fd79e4af246d11edb58 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:308 -msgid "" -"Digital maps are composed of shapes similar to real objects and the shape is " -"composed from points, lines and polygons (area)." -msgstr "" - -# d3caf8a4d40f4202b70dfb2e1521271e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:312 -msgid "" -"Ask the participants to give examples about objects that can be represented " -"as point, line and polygon (area)." -msgstr "" - -# fcf020cda29f48ab885a16aa3def11e7 -# 594087b1741440a08df6930f64b60b71 -# 3b2bc1f696174dd1ad3034baf55b7b1c -# 5738f05acceb402eb41ee11615421cd2 -# 02f92d71a40c45eeab8e2a08bb8d01a7 -# 7483e75e3df34bdfbdf64fcf7c6dbb84 -# 3eb48b47377e441a8d7c49bbdf595b41 -# fa2e93c5d0074f0cb87b9b521b791226 -# a1d1146159b84de9825c1db9cfe2b24c -# 269202fe108746b3a41f74f5d8e2df3f -# 7418916667814e4f85e6893dbea2707a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:301 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:315 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:420 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:448 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:565 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:718 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:770 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:862 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:915 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:997 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1150 -msgid "Q & A" -msgstr "" - -# f4cb2c542c4c4f509ad48783db3744fa -# 05a4adfa9aa14957a4ba83d876df78c1 -# 420fce2c07fb4131ac8f1d497396ea68 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:315 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:448 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1150 -msgid "**Closing 5'**" -msgstr "" - -# 0ca3d6d09ea9478aa047708cc964b02a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:317 -msgid "" -"Ask the participants to give their opinion and feedback about what they have " -"learned in Session 1." -msgstr "" - -# f6d4a1899d33482a8a5e6dc847d4ddad -# aad3c244a66845f384751cf53651247f -# 94ee08f36d1f42688ca66665b6b94f14 -# 98e52bd58a81481d825e0e8a14c29e9a -# 6f3da59e61b14be7998c7ab824621040 -# 21fe51ba801e455c8aa1ed9ee7c8888e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:322 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:455 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:602 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:802 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:928 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1057 -msgid "FAQ (Frequently Asked Questions)" -msgstr "" - -# e581964843164ac0b5ced1b4eac4ee31 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:324 -msgid "**How did the UK begin mapping? How did OpenStreetMap start?**" -msgstr "" - -# ce88cfe6946f4deab371326f732ced0a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:326 -msgid "" -"OpenStreetMap started with just a handful of volunteers who had GPS devices. " -"They went out, collected data on their GPS and made sketches of maps and " -"took notes, and then added the data into the OSM database at home. These " -"initial volunteers hosted \"Mapping Parties\" in different towns, in which " -"anybody could come out with them one day and go mapping. These parties " -"helped expand the network of volunteers, get more people involved, and " -"create great maps of different towns." -msgstr "" - -# 76bb6fe325764e8dadcf97a852d15bac -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:334 -msgid "" -"**How did they create maps so thoroughly? What technologies did they use?**" -msgstr "" - -# d11858b20b13422a96da4b9e87a0780e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:336 -msgid "" -"At the beginning, mappers only had GPS to work with, and any map data that " -"was freely given to the OpenStreetMap community. Later, OSM made a deal with " -"Yahoo! to be able to use their satellite imagery to digitise maps with. More " -"recently, Microsoft and Mapbox have made imagery available to OSM." -msgstr "" - -# f84801ae5cb74caab4368c76b05ce082 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:342 -msgid "**Can we use OSM with Google Maps?**" -msgstr "" - -# b1245004996943e2b78cddf5051712a3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:344 -msgid "" -"It is not legal to use Google Maps as a resource when editing OpenStreetMap. " -"Google has not given permission for this like Microsoft has, and so it is " -"not acceptable to use." -msgstr "" - -# 2aca0a2f74a44af79e16c70a6f601f44 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:350 -msgid "Session 2" -msgstr "" - -# 9af824c11e1d432e9d87f43a061ba135 -# 6ed36eff0da54904b8c96e0b0892e43f -# b1dc276951804e7cbec2d0de8eb0d73d -# 4c8acf8cf676434fa2d3adfb70fef553 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:353 -msgid "Working with *OSM*" -msgstr "" - -# f0983bd14d5d49959f3662a67be738c4 -# 9b522a7a3bf7411ca7b0b952c6fc17bf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:354 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:476 -msgid "Time : 180 minutes" -msgstr "" - -# 0c5b6fe8dc2245d3be7db6a26ed4dde4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:362 -msgid "Visit OSM website" -msgstr "" - -# 7b97e3958e474fcc8e3258be537f43fc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:363 -msgid "Navigate map on OSM website" -msgstr "" - -# a9043c6c8b1d4c18a2fadd2b2722d709 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:364 -msgid "Save an image from OSM" -msgstr "" - -# 40be43e3bfa24b9281a1fb7662fa701f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:365 -msgid "Register an OSM account" -msgstr "" - -# a727eee09d9143faaf8000081faac1d3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:366 -msgid "Editing a map" -msgstr "" - -# a5c7667df15e4f05a39fa416fab39028 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:367 -msgid "Save edits" -msgstr "" - -# e4fa52fe2403454db0593d5895522020 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:371 -msgid "Participants sign up for an OSM account" -msgstr "" - -# c10807e1aeed4240b2551567fe8c97b8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:372 -msgid "Map images created from OSM website" -msgstr "" - -# 9f8211d5ce8c4c7da782be7347cafa3b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:376 -msgid "**Working with OSM**" -msgstr "" - -# 3565b58fd7f845f5b8bd5048897eb4b4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:378 -msgid "OSM website" -msgstr "" - -# d12a1bd0140840748d9efef5dfd93e23 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:379 -msgid "Navigating the OSM map" -msgstr "" - -# 787b09a500de4d28b4652bae41ee4e48 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:380 -msgid "Saving images from OSM" -msgstr "" - -# 735cf89d4e0a48268d09b8e5e92848da -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:381 -msgid "Creating an OSM account" -msgstr "" - -# 747b5af199864ed49cadb669d2469a10 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:382 -msgid "Editing the OSM map" -msgstr "" - -# e2ee4e8d90c045e6b00e94b1ec9951b9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:394 -msgid "**Demonstration 20'**" -msgstr "" - -# 6cf6465bd2f24c9cb0d3e81ec33b46e1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:396 -msgid "Ask participants to pay attention to a demonstration about:" -msgstr "" - -# 859919052d544097ac8b49f70a1b4fc8 -# f51f0aaeabf9483c8167249a726d4271 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:399 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:412 -msgid "Main functions of OpenStreetMap website" -msgstr "" - -# c4afb0b529fc4ab9b47669810fd10c0d -# 0ff0a56cf7bd4cc4baeaadfc401e7bdf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:400 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:413 -msgid "Zoom in and zoom out the map" -msgstr "" - -# 24937d32aa4c40b1b8e06af72db4ee7a -# 55feef4c0ff7478c9a58fa60ed3b7749 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:401 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:414 -msgid "Pan the map" -msgstr "" - -# 8b8f1e98f587437eaeb932d0b5966358 -# 0fa0bde3bbbd45abb74a02b564485adf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:402 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:415 -msgid "Find a place" -msgstr "" - -# 7e5614681ce74a8f90878a1aa8af50ef -# 0aadea45a8164130bd826fae4bd53dab -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:403 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:416 -msgid "Save image from OSM website" -msgstr "" - -# b926663d503541f597fe00c1a9e14554 -# bea20fb683c3489f860e863968d91e34 -# c2e57161977d4b19a6d617327b911894 -# 05fc7aee60394cfdb4e395852ffb7591 -# 09dec8fea806482093c80397bb282201 -# 8bda86af7be84404a6c4b87833b178f0 -# b65b08e584054cb8b87b285027c586d4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:394 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:430 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:439 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:530 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:540 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:727 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:875 -msgid "Demo" -msgstr "" - -# f9f98fd110804debaf176e5a1caa1aa1 -# f7282522687048a6a0b5ea21bc003c88 -# b23a0fb668fc4166ba2834519184ba8c -# 2fc1556b17134c5c86b8174c4e878403 -# 13a6327c11e84eca8fa6b3ab50582b5e -# 0144febc02b64e5cb99963baf604bcd8 -# 252d3b3d3018430f8ce3d8f8a4c8b93e -# 29f2724f97a74be5b51da94d631798d2 -# 07cda613914d42d39a9fe57ea93d6ca9 -# 2d23aac2070c4546a39b118d70a900c9 -# aa6a9b569b1846c8bf9aeb6d42b46af2 -# 7834c25eee9340acbf30eb1ac74bec21 -# 3662ac82e9984567bc8931d9b3c8cdd4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:394 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:406 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:430 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:439 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:882 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1011 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1023 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1031 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1039 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1048 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1143 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1204 -msgid "Computer" -msgstr "" - -# 4c448a9961aa4aa7b0805fc1d43fab3f -# f91a59453bdb405387cebc90412f32ea -# 9fc7612fced64df39960ae2560503d58 -# e0c488305f764ea494923004dbd65319 -# 9b48ea934400411cb640b6f105d203da -# ea805b84a69b42399d12a06e01dcbe67 -# 1d0f3419b36d48ee8ce568e6fccfcd5f -# adbd3d805632414eb9035da6979213e6 -# 6e590383598e46708961166d52808926 -# 225fdddd80c0434d864a6965eb44a7bd -# db20de20f6ac43ba9310bfa31f13e9fc -# 97bc5f775fef4ddcbcb1935b01f73487 -# 7a1efe61135e40d3b421248b451343c5 -# 169fd2f7b8ab449fb9137620ef5e8346 -# cefa2b628c9d4b94bc9029dc9ad34b57 -# e1689cd651dd4c6a96cbceaccf898b42 -# cf07a3aafc6d468eb0c5df8c77e03c6a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:396 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:408 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:418 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:432 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:441 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:870 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:875 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:896 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1015 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1027 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1035 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1043 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1052 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1147 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1198 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1208 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1216 -msgid "Projector" -msgstr "" - -# b62d60f97f6c4be699bf57c182aa3e2e -# ff6529e8fcb94ec3b3ec1c10e03c28d2 -# 5ccafa87a4884acb9e472389eb1356ca -# b6b564f44d354fdbb2e3aa45da7b59ea -# 280b97241ac14264bb6632f577c6f1c9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:401 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:413 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:423 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:437 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:446 -msgid "Module 2" -msgstr "" - -# ae538ad996da4891935c447bfc328377 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:406 -msgid "**Practice 40'**" -msgstr "" - -# 90799ac1e77d442591682cc0a1745506 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:408 -msgid "" -"On the projector, show participants openstreetmap.org and ask participants " -"to follow these activities:" -msgstr "" - -# 86c23d01d2454321bdaef6c36b842e62 -# ad2cefb61ed54a3fbb04177db19cbaf6 -# 88b32068b8e54e06b66ad63e44617f7e -# 0fa914795359431a94487b1ce8f8b20d -# aeea2dfc40574f9fbf94f8321443da4f -# f31766705bf847608811760c6c392894 -# c12070d4c12c48cebdcbe322a7424099 -# dac8ba76700d4508acd54627c21ef382 -# f76b4aa58d9e426ba9de29fa53ebdf65 -# 64c3ec47e56c4e8dbf502ebb85ac1e3d -# 55f331ee518f4cf0a98acf4a81d266d6 -# 585f14b7d24444489f83930e6e1a090f -# 4077245e63a84e1ba0d205eef679c4f4 -# a5dd08fb03534b34bdf8b0840b52e28e -# 63e0a597de424f45ace564f7297f3940 -# be0b496275b34cb3aea1a2c753624e3d -# a6efebe34bd14a909cd4e757fa6aefc6 -# fb122395a38b459b91e79266da68a6d0 -# b1165859e5c049b2ab6777d9aae4ea4c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:406 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:432 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:441 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:532 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:542 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:729 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:751 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:877 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:884 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:890 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1004 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1014 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1023 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1034 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1042 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1051 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1143 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1197 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1207 -msgid "Practice" -msgstr "" - -# da6d3df826e442cc8baf888e22738e22 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:418 -msgid "**Input 20'**" -msgstr "" - -# 43f9485881f348fcbee3b09bb4018d8b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:420 -msgid "Explain:" -msgstr "" - -# b0f2be6ce610459cbeef8f31a726cf31 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:422 -msgid "" -"The OpenStreetMap licence. ODbL is a licence in which all of the data in " -"OpenStreetMap can be used by everyone freely, but the user must add " -"OpenStreetMap attribution and contribute back to OpenStreetMap" -msgstr "" - -# 1ff848c1f5314ef08e08d7b340c088cd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:426 -msgid "" -"If users choose public domain when they sign up, it means that they consider " -"their edits to be freely usable with no licence whatsoever" -msgstr "" - -# 21628d26d4d44e8a883dd26ed1e5c316 -# 041f2168d52748aa99305cdf529b9a29 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:430 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:439 -msgid "**Demo and Practice 45'**" -msgstr "" - -# db5415b9f3e24dbb808de513e7a590d3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:432 -msgid "" -"Show the participants how to sign up or register an OpenStreetMap account " -"(problems: some participants might not have email accounts, some " -"participants might forget their email passwords)" -msgstr "" - -# a332875c54dc4827959509b9fceaec2b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:436 -msgid "" -"When everyone is signed up, show participants how to log in to their OSM " -"account" -msgstr "" - -# 923bfe63c0394e1690de649e64a07ad4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:441 -msgid "" -"Show participants how to edit the map on the OpenStreetMap website and save " -"their edits." -msgstr "" - -# ee1bf9431c12472fb357ede67316bd99 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:444 -msgid "How to add and remove objects in the iD editor" -msgstr "" - -# bda708037dae471980d3ecf96fbf780d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:445 -msgid "How to save edits in the iD editor" -msgstr "" - -# 177753b13e234500a27abb34a9ce5847 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:450 -msgid "" -"Ask the participants to give their opinion and feedback about what they have " -"learned in Session 2." -msgstr "" - -# c9e06715cacb4a5fa587404b3f7f07ab -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:448 -msgid "Projector *Powerpoint* *presentation* Module 2" -msgstr "" - -# 9217592194634038b885e61fc40ca405 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:457 -msgid "**Forgot Password**" -msgstr "" - -# 175a9ad41916452a86ba2eca2b64db23 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:459 -msgid "" -"Sometimes participants forget their password. In this case, you will need to " -"help them to reset or create a new password. If that is not possible they " -"may need to open a new email account. If the participants already have an " -"OpenStreetMap account but forget the password, help them to reset their " -"password." -msgstr "" - -# 501c657f075448f4b75104bda3a6828a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:465 -msgid "**Do not have email**" -msgstr "" - -# 6174cbf96ce940f481df8e47f035c352 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:467 -msgid "" -"If participants do not have an email account, help them create a new one." -msgstr "" - -# ca5c1770aeeb4134b05d8b8f692b2ae2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:472 -msgid "Session 3" -msgstr "" - -# 3e44e95304c54a17829cc0d633ec11b0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:484 -msgid "Download JOSM" -msgstr "" - -# e41fb196813748f68a6f246f39fcc626 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:485 -msgid "Install JOSM" -msgstr "" - -# f0ee9cb7dedd4fdf9bfa4f6373be49e4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:486 -msgid "Set JOSM preferences" -msgstr "" - -# 7841497280ad4f74a6cd35a0585157b2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:487 -msgid "Use basic tools" -msgstr "" - -# b6f85817bdab474f8c4553428ac9034a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:488 -msgid "Draw nodes and ways in JOSM" -msgstr "" - -# 6a552502227b4dd29bd2ba123d3c5a60 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:489 -msgid "Change objects" -msgstr "" - -# c1b7a38d68174d2d9897fcc2c307cb04 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:490 -msgid "Add tags to objects using presets menu" -msgstr "" - -# e4b4941a98a441beaf163d5ad04e2e9f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:494 -msgid "JOSM is ready to use for OSM mapping" -msgstr "" - -# 36d7538f731a4083abef6412417d78f5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:498 -msgid "**Working with JOSM**" -msgstr "" - -# 7e4297fa6e25472cacf6969ce9ad32da -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:500 -msgid "Downloading JOSM" -msgstr "" - -# 3734e4c7385c42c198571ccd751489c0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:501 -msgid "Installing JOSM" -msgstr "" - -# 1edb28d775e2464ca99b95de42c3b0b7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:502 -msgid "Setting preferences in JOSM" -msgstr "" - -# d66b46cd0bc54f9db74e4db18a0dbf66 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:504 -msgid "Bing imagery" -msgstr "" - -# a2ab429de16d45e0a350d6b4d7601e8d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:505 -msgid "Presets" -msgstr "" - -# d3b4bb8a89f84febbc4cf1ea20569420 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:506 -msgid "Plugins" -msgstr "" - -# c56bdfb674204888bc02d0168263b9c2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:507 -msgid "Language settings" -msgstr "" - -# b3bc6c2d89f34e59a1020a0032a3daa7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:509 -msgid "Drawing maps using JOSM" -msgstr "" - -# 0289c31214d14a1fa477bfd4343e235e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:511 -msgid "Basic operation" -msgstr "" - -# ffaa245bdb904eebbaf6057625db5dda -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:512 -msgid "Nodes, ways, and shapes" -msgstr "" - -# f156318daece4d4c82e300a6b2a823a4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:513 -msgid "Changing objects" -msgstr "" - -# eb6b6cbab54f4b0c888097e960c0081a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:514 -msgid "Adding presets" -msgstr "" - -# 7ddfa2f8e40c404898f6b6edbeaaa630 -# 5e5c39f3de1542a7a230c15874cca009 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:522 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:857 -msgid "**Introduction 15'**" -msgstr "" - -# 4e8abdad681f4f6b882f8761f346b363 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:527 -msgid "" -"Ensure that JOSM, GPSBabel and GPS drivers are installed on the computers of " -"participants" -msgstr "" - -# 4ce6e7924e4740b5a6b304da802c14a6 -# 984779e47d8c44bbbb91f697ff22140e -# f82899a82e8b444f846cba17f2f2e1be -# 0d674c9175ea4376b565fe2e8e6881e6 -# d2b002032eaf4c8bb49a67477c6f80c8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:522 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:703 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:716 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:857 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:870 -msgid "Talk" -msgstr "" - -# 81b50e225eb140ff8da5078d16dbbac6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:530 -msgid "**Demonstration and Practice 1: 45'**" -msgstr "" - -# 774ed06491604937a0479246ba42365d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:532 -msgid "Demonstrate how to install software using projector" -msgstr "" - -# dd4f0da8aed74655b1582fabc3c9a411 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:534 -msgid "Ask participants to follow along" -msgstr "" - -# ec928e64f23949028dc460d29654f42f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:536 -msgid "" -"Help participants if they have problems with the steps like installing " -"software or computer system configuration" -msgstr "" - -# 2ab3302535004dcda1f44e744207e5fb -# 94b510cba7cf431fa3f42caed566f448 -# 1e6cbfcf3d674b30b64fc6069e8eb5e4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:533 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:877 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1206 -msgid "Participants" -msgstr "" - -# f81e80aee6054b3d9502dc00670cc28a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:535 -msgid "Computer software on USB Projector" -msgstr "" - -# 699c08f203dc44e9b45e7bf964b1cd59 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:540 -msgid "**Demonstration and Practice 2: 90'**" -msgstr "" - -# fdf6413270e0405086f1185bb4cad9db -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:542 -msgid "If software is already installed, ask participants to open JOSM" -msgstr "" - -# 0921a8eadb184ff981cc21da3f1ba5a7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:544 -msgid "Demonstrate the basic features of drawing a map" -msgstr "" - -# a6d353fad4bf4ed2a260ef3a2c719f10 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:545 -msgid "Ask participants to follow the steps shown about:" -msgstr "" - -# ea483b1542ec414b93b19d85aa647722 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:548 -msgid "Setting language to Bahasa Indonesia" -msgstr "" - -# faac26f916374f1bbfae705132b5c301 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:549 -msgid "Drawing nodes, ways and shapes" -msgstr "" - -# 9a406140481a4aa68e716c8b704cc1bc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:550 -msgid "Selecting nodes and ways" -msgstr "" - -# c83d27b3c6ed4d2480f44f8b40870233 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:551 -msgid "" -"Understanding that a way consists of nodes, and a shape is a way that is " -"finishes where it begins" -msgstr "" - -# 54d94a2f81de45fda360debad166afb7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:553 -msgid "Adding custom presets to the menu" -msgstr "" - -# e41c60e68b964c76baff46aa2d9d938a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:555 -msgid "" -"Explain how the data is added to objects in tag format. A good way to " -"explain a tag is to describe it as a label which is put on the objects and " -"each label describes different attributes about that object" -msgstr "" - -# 0328d4732a784703ab4fc3afdb17c59e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:559 -msgid "" -"Show that there are many types of tags for different attributes, and the " -"easiest way to add them to objects is by using the presets menu" -msgstr "" - -# bea57b2b528741ec9d79caecf9bc9b7d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:562 -msgid "" -"Ask participants to draw their paper maps using JOSM to create nodes, ways " -"and shapes" -msgstr "" - -# 91353a6e85c541448e99cefa2d602b51 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:540 -msgid "Computer with installed software" -msgstr "" - -# 17dfdfe7b57c4e75ae7b4883dbec5fb4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:544 -msgid "Paper Map" -msgstr "" - -# 66adb1e4af2441a99fac9b762299d1f8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:565 -msgid "**Closing 30'**" -msgstr "" - -# f29c890efef345febfb82e56818b2970 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:567 -msgid "One or several participants are asked to summarise Session 3" -msgstr "" - -# 3ffa630749a24653a67a470338421a8c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:572 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:777 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1241 -msgid "Common Problems" -msgstr "" - -# fb69abd5cda346e081ba2442d09f0a8f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:574 -msgid "**Setting up on Mac and Ubuntu**" -msgstr "" - -# 23815460d7114d67af2174aaa7866e33 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:576 -msgid "" -"The steps to install on Mac and Ubuntu are quite easy. JOSM is a software " -"based on Java so it is platform independent, but you have to make sure Java " -"is already installed on your computer system. GPSBabel does not have a GUI " -"for Linux, so it would be harder to use on Linux, especially for newbie " -"users." -msgstr "" - -# b20d4d8b1ff946eaa3f70fc62b19a448 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:583 -msgid "**JOSM runs out of memory**" -msgstr "" - -# f57c74b5636f480e9319e98e1cf67ace -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:585 -msgid "" -"Sometimes if someone downloads a lot of imagery and data on JOSM, the " -"computer runs out of memory and crashes. The solution is to start JOSM with " -"a batch file that will tell JOSM to add extra memory. An example batch file " -"is provide in this toolkit, but you have to edit it using a text editor to " -"put the correct location of the josm.jar file." -msgstr "" - -# 522c8a515ea54c4089220065fc71965f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:592 -msgid "**Participants add tags on nodes rather than the ways**" -msgstr "" - -# 75d52c6cda2b415586a18a8073eb484e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:594 -msgid "" -"Sometimes it is difficult for new OSM users to understand that a way " -"consists of several nodes. Often a tag that is supposed to be put on a way " -"is accidentally put on the nodes that make up that way. This can happen when " -"a user draws a selection box that selects all the nodes on an object. This " -"is an important problem to correct from the beginning, to train good mappers." -msgstr "" - -# 04e523ac69904080b97df3135c9fbc9c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:604 -msgid "" -"**Is there an easy way to restart JOSM after we finish installing plugins?**" -msgstr "" - -# 0657a9b5edf644c68ccb25ece02c968b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:606 -msgid "" -"Yes, there is a plugin that you can add which allow you to restart JOSM by " -"clicking a button. To activate it, install it in the Preferences menu." -msgstr "" - -# c72a5aa742524793b66de078031bebac -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:610 -msgid "**Could we make tags in Bahasa Indonesia?**" -msgstr "" - -# 37aa9153a2d94160a6c4d993655e6175 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:612 -msgid "" -"Theoretically, you can add any tag to nodes, ways or shapes on OSM. But " -"because all of the objects on OSM are saved in international databases and " -"cover the whole world, we need a consensus about how to make a tag. As an " -"example, a hospital is still a hospital in England, France and even in " -"Indonesia. If every country gives a tag with their own language it will be " -"difficult and confusing to show the icon or symbol for different locations. " -"Because OSM originated in England and English is a very common language all " -"over the world, the English language is the language which is accepted for " -"tagging in OpenStreetMap. However if you want to alter the presets menu to " -"use your own language it is still possible." -msgstr "" - -# 9ddba8ede62e4597a79f09637e6a6e2a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:625 -msgid "" -"**Can we change the colour of nodes and ways and can we change the icons? " -"How can we print?**" -msgstr "" - -# 45af91951f374ae39981619f35c2fbf1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:628 -msgid "" -"You can change the colour of the objects in the Preferences menu. This is " -"very useful especially when it is hard to see nodes on ways and shapes " -"against a background. When participants ask about how to change the symbol " -"or show the name of objects, you need to tell them that this program is for " -"editing data and not to see the preview or result and print a map. All of " -"the nodes and tags will be saved in a database, but you can use some other " -"software to render your map to look better. For example, the map on " -"openstreetmap.org is rendered, although there are many more examples. The " -"difference between editing data and rendering on another software might be " -"quite hard to understand by participants in the beginning." -msgstr "" - -# 39ee3731536d46fab203e2e22bbb8f5d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:641 -msgid "**What is the difference between presets and tags?**" -msgstr "" - -# 97804e70ad004f19932fc8dc28d9848c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:643 -msgid "" -"A tag is a piece of information that you attach to nodes, ways or shapes " -"(polygon) to describe one of the attributes. Presets are a menu that " -"simplifies the task of applying tags to an object." -msgstr "" - -# cfd81bad7d934c7fadc164e348ec587b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:648 -msgid "Session 4" -msgstr "" - -# 5c8a1cdccd704acd943e026c355632f3 -# 2248cc62f1334849ba221c2b641e9068 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:652 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:822 -msgid "Time : 6 hours 15 minutes" -msgstr "" - -# 2d31c9aa92aa432596db080b46cd857b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:660 -msgid "Understand GPS and the types of GPS" -msgstr "" - -# 9a6dce930f09482fbbc01d6553d96e26 -# 2c5c217ba5d14a58a8c8f8309f7f2e22 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:661 -msgid "Turn on GPS" -msgstr "" - -# 7a9e3b88da63430a925ac409cf184071 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:662 -msgid "Set up GPS" -msgstr "" - -# 6f48c092a4bf480388404fa5f9c1cff8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:663 -msgid "Understand factors that affect GPS accuracy" -msgstr "" - -# a4f6a443ff8046b0ac3405552ad49e0c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:664 -msgid "Understand tracks and waypoints" -msgstr "" - -# f32b7edd75514b4ab88edbe55774dfbc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:665 -msgid "Collect data using GPS" -msgstr "" - -# e5d0a846f1fd442083dc963b9d9de44d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:666 -msgid "Copy GPS data (tracks and waypoints) to computer" -msgstr "" - -# 8a46fc77f78c40c1b99737977cd6fa87 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:667 -msgid "Open waypoints and tracks in JOSM" -msgstr "" - -# 0bcbba1c89a349f38b36471602dc1d62 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:668 -msgid "Upload GPS tracks using JOSM" -msgstr "" - -# 68dc3fd519984ffd92929f2ce906a638 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:669 -msgid "Edit OSM based on GPS data in JOSM" -msgstr "" - -# da855f00254c41e49cb51bae1ba19409 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:673 -msgid "Collect GPS field data in gpx format" -msgstr "" - -# acfa94365aa24d06b670d3266973be39 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:677 -msgid "**Using GPS**" -msgstr "" - -# ed75184a38b34776b2e000b60be837b3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:679 -msgid "What is GPS" -msgstr "" - -# 3f552683a45f45c1b5349c335fa88d6b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:680 -msgid "Turning on GPS" -msgstr "" - -# 598192a195f7466a9e11bfb0cbbe831b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:681 -msgid "Navigating the GPS" -msgstr "" - -# 4191fe29b9914b66a01a1ea453f53484 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:682 -msgid "Tracks and waypoints" -msgstr "" - -# 92c7b76524104a8992f03e9d313bdcc1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:683 -msgid "Saving location (waypoint)" -msgstr "" - -# 78dd6cf47a924191a98b9394e9edad68 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:684 -msgid "Turning on the Track Log" -msgstr "" - -# 371df47df3b34098b02642a8c4d1552d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:685 -msgid "GPS settings" -msgstr "" - -# 141a66241b594aa695cb46bfec4e11b7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:686 -msgid "How to copy waypoints and tracks to computer" -msgstr "" - -# 2df9578fa3c04f64bc732af7a05aebaf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:688 -msgid "Connecting GPS to computer" -msgstr "" - -# 08281a41643e41d79b0e04572453ed77 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:689 -msgid "Installing GPS driver" -msgstr "" - -# b0733a7ffe2b488aa50295a00750fbed -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:690 -msgid "GPSBabel program setup" -msgstr "" - -# 2ce1639aa0864f3bbed6868a88bbbab1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:691 -msgid "GPSBabel installation" -msgstr "" - -# cf5692cfb607475e866ba8e70ed2880c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:692 -msgid "Copying tracks and waypoints" -msgstr "" - -# 3b74da5dbb9b4035a1c34e61077dc6c9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:693 -msgid "GPS data in JOSM" -msgstr "" - -# 29f2a4232e4347cf8c37128e8dff5b2a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:695 -msgid "Uploading GPS tracks in JOSM" -msgstr "" - -# f1e478a12a5a42e395ed2492498b3b7a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:696 -msgid "Editing GPS data using JOSM" -msgstr "" - -# de7b11d323e440fca310fe4f2133b997 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:703 -msgid "**Introduction 10'**" -msgstr "" - -# ce15eb11fbbe40a69cde440d1760fe6a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:708 -msgid "**Sharing 15'**" -msgstr "" - -# 493a57a80c5e40ca8aaa9cb21e3a3c67 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:710 -msgid "" -"Any participants who have experience using smartphones may share with others " -"their experience using GPS on their smartphone." -msgstr "" - -# 8b4706d4685648d9a837d34bf01f27ed -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:713 -msgid "" -"Other participants respond and ask about experiences using GPS in smartphone." -msgstr "" - -# 8ff20753ebd14c83a80de9b55ff087e2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:708 -msgid "Discussion" -msgstr "" - -# 164cc5d5b0e645ab808d3f348a867453 -# cb2d8972b3a9464aba98274f7b71dde3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:711 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:719 -msgid "Module 4" -msgstr "" - -# bc5f81c3587a4fd894ba5da36849c660 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:716 -msgid "**Advice 20'**" -msgstr "" - -# 1223fdb3d7d247899f51da1bc466989c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:718 -msgid "Present what GPS does and how it works on the smartphone. For example:" -msgstr "" - -# cb060285de174a9cb9f499d3279023ba -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:722 -msgid "" -"Phone receives signals from radio towers, GPS receives signals from " -"satellites orbiting in space." -msgstr "" - -# 886be244004c40a79ecc356f4c18a62a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:724 -msgid "When receiving a signal, GPS can track absolute locations on earth." -msgstr "" - -# 2f18da5116d84cd1b58e06de343674d9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:727 -msgid "**Demonstration and Practice 180'**" -msgstr "" - -# d0cca3896559491b9b3753c80163c93b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:729 -msgid "" -"Give a GPS to each pair of participants (if there are enough GPS). Go " -"outside away from buildings to make sure the satellite signal is good." -msgstr "" - -# c7013062344541cf84ed9e353af6c1bf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:732 -msgid "Participants should follow the following demonstrations:" -msgstr "" - -# bb71b139ce2d47d6a447c289c183be7e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:735 -msgid "How to turn on the GPS" -msgstr "" - -# 3c307c11fa8f4eef9dd2856fed2c2381 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:736 -msgid "" -"Satellite page. Give brief explanation that when GPS is connected with three " -"or more satellite you can know your current location. It is usually takes 30 " -"seconds." -msgstr "" - -# baeec45355ff4eedabc157f06aef0306 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:739 -msgid "Go to other pages on GPS. Use :kbd:`X` button to move to other pages." -msgstr "" - -# 288f395f8c78440eb581cd7a33699b6c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:741 -msgid "Create a waypoint and explain what it is." -msgstr "" - -# 6b41145cee9d4c01b15944af7ad80779 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:742 -msgid "Look to the map page, try to zoom in and zoom out." -msgstr "" - -# 6295b4e178df4e6fa1682aa0fb958ae4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:743 -msgid "Turn on track log and explain how the track log works." -msgstr "" - -# 0268dfc1096149378d1b5d6e5646aff9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:744 -msgid "Look at the map page and walk so the participants can see the track." -msgstr "" - -# c80d691d32864041b0b1c50f73889a42 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:746 -msgid "Make another waypoint." -msgstr "" - -# 91082bff288f4728b17765950d0df4bd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:748 -msgid "Ask participants to practice using GPS in groups." -msgstr "" - -# 20e073377e7149538706483ac3ce92a4 -# f89f4badccc8455682b5d4373bf269af -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:727 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:751 -msgid "GPS (ideally one GPS for every two or three participants)" -msgstr "" - -# bd799894715e46c8a8a611ed1cc31b60 -# 4aba4eaffe1d491da349750996b865a2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:733 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:757 -msgid "Paper and Pen" -msgstr "" - -# e3355766a0a040629887b93dbb849291 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:751 -msgid "**Second Practice 120'**" -msgstr "" - -# 6c8407355b524238bb184fa0166c6504 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:753 -msgid "" -"Ask participants to walk to some roads around the training location in " -"groups. Participants should collect waypoints and tracks correctly, make " -"notes for waypoints in diaries or survey forms and make sketches of the area." -msgstr "" - -# d924c3d53e524770b0b5671f6af280d2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:759 -msgid "Instruct every group of participants to follow the steps." -msgstr "" - -# 8064b94c5ab949e3aef8bca06c59c9bc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:760 -msgid "" -"After each group understands how to save the information, send each group to " -"a different direction" -msgstr "" - -# e963028d8ee84abea6ae30bf0b6c7d8a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:762 -msgid "" -"Ask every group to collect at least ten waypoints before returning to the " -"training location." -msgstr "" - -# 79e45bfb9eb84e9999a54a49fa6f6341 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:765 -msgid "**Presentation 60'**" -msgstr "" - -# bb876c8a3a2149ba84fa80ec2cbf3640 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:767 -msgid "Participants are asked to share their experience doing field practice." -msgstr "" - -# e95fcdbedd334a76982cbd6c7c078c17 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:770 -msgid "**Closing 15'**" -msgstr "" - -# ffbe61c44bb54e58a572757cce9174ee -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:772 -msgid "Q & A about experiences and problems in the field when using GPS." -msgstr "" - -# 9af8d19a754c41b2a92ea1eb5d1de619 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:779 -msgid "**Make sure you have batteries and extra USB cables**" -msgstr "" - -# c0741e9bd2f44e3888692982bf06c0ce -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:781 -msgid "" -"GPS devices burn through batteries relatively quickly, so it is a good idea " -"to make sure every group has extra batteries when they go out mapping. Then " -"when they return, they will need to move the data from GPS to the computer. " -"It is best if every group has its own USB cable, which will enable faster " -"copying of data to the computers." -msgstr "" - -# 3ffd2e6ab3f54dca8c76c7ae5c74d986 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:787 -msgid "**All GPSes should be formatted the same**" -msgstr "" - -# dba99e3f690d422897ae2d6d2ba00709 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:789 -msgid "" -"Before the training, make sure all GPS devices are formatted in the same " -"way, which will prevent participants from getting confused. Many GPS " -"settings can be changed, but when teaching a group it is best if they all " -"look the same." -msgstr "" - -# dbfd94585a8046dc9f4c17b09a07e8f4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:793 -msgid "The key things to make sure of are that:" -msgstr "" - -# 41856305f32b4d2b8e41bb99e34eae10 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:795 -msgid "" -"Page arrangement is same and in the same order: Main Menu, Track page, Map " -"page, Satellite page" -msgstr "" - -# 1407275f859545da985b71cbe1281863 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:797 -msgid "Coordinates are saved in decimal degrees" -msgstr "" - -# c65578f05fdc45e6bb427a6779eccc72 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:798 -msgid "Units are in metres" -msgstr "" - -# 4f6a3dceb5514e3581d7066a7771b57c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:799 -msgid "Elevation has been calibrated correctly" -msgstr "" - -# 7c471097551d4bd79655dac41cc80df9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:804 -msgid "**What projection does the GPS use for collected data?**" -msgstr "" - -# 172091ea646e482aafa592bca946c56f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:806 -msgid "" -"A GPS can be set to record in different projections, but for our needs, the " -"GPS must be set to record coordinates in geographic projection WGS84 " -"(EPSG:4326)." -msgstr "" - -# b7299d9549fe466fba3362c73c949af5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:810 -msgid "**How accurate is the GPS? How can the accuracy affect the data?**" -msgstr "" - -# f1e1bec090b446cf8942fc45c5b6cff0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:812 -msgid "" -"Consumer-grade GPS devices (such as the Garmin eTrex line) typically have an " -"accuracy of between three and 15 metres. The Satellite page on the GPS " -"indicates the accuracy when it is in use. For our mapping needs, inaccuracy " -"less than 15 metres can be ignored." -msgstr "" - -# f227bddf7f15440cac99f9d9686eb07f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:818 -msgid "Session 5" -msgstr "" - -# f80e8be8685d4bf4a0eaa34eed99c4aa -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:830 -msgid "Understand how to use Field Papers" -msgstr "" - -# b78aad207bf3478db23668458634d273 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:831 -msgid "Make and print Field Papers" -msgstr "" - -# bcbac682f99949c6af2acaf667faebd5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:832 -msgid "Add information to Field Papers" -msgstr "" - -# 299f5228df824eacab63c9e55084fcf8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:833 -msgid "Scan and upload Field Papers to fieldpapers.org" -msgstr "" - -# 2ff1480ea71046f49b810d0369ee564d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:834 -msgid "Open Field Papers in JOSM" -msgstr "" - -# 4c201eb7674a422ca404f424f71b9026 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:838 -msgid "Print Field Papers as PDF for surveying" -msgstr "" - -# 534d26bedafc406b82e7f567a01395c8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:839 -msgid "Add field data to Field Papers" -msgstr "" - -# 0b3c011a6ef6470d96b69419a2e99fcc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:843 -msgid "**Field Papers**" -msgstr "" - -# d67535c448eb454988d6295d374c0073 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:845 -msgid "What is Field Papers" -msgstr "" - -# de829af4d1824e3c9f9c441817e3a2d1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:846 -msgid "Using Field Papers" -msgstr "" - -# 9e41c7f8260f4405a43879c24edc4190 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:847 -msgid "Making and printing Field Papers" -msgstr "" - -# 47272d5b5d9d4ed999a480fbeb675308 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:848 -msgid "Mapping with Field Papers" -msgstr "" - -# 0699fc8f103f44deb0a6d49b179a9482 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:849 -msgid "Scanning and uploading" -msgstr "" - -# c5cedebc5b504940b711344b6b357b3a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:850 -msgid "Field Papers in JOSM" -msgstr "" - -# e86b632a5f454be1ac5275fa4f2467c9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:862 -msgid "**Q & A 15'**" -msgstr "" - -# 8cb93779931c488fabafaaf82c1231c6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:864 -msgid "" -"Ask if participants have any experience using Field Papers and how they work" -msgstr "" - -# 198c8bd13c9141bcb1a23569c9fbc5cd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:866 -msgid "Participants ask about how Field Papers works" -msgstr "" - -# eb641b8b325c48be89293ca4461a59a6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:867 -msgid "Show participants Field Papers website" -msgstr "" - -# 735239751d504c7d8404b49b2f4e82d3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:865 -msgid "*Field Papers* examples" -msgstr "" - -# a38d5e0b5d5743348b37fd40c1e897a2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:868 -msgid "Module 5" -msgstr "" - -# 057909fc1c9d408692b4980e507cba4e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:870 -msgid "**Explanation 15'**" -msgstr "" - -# ae7d44191fd54073925598908daaf3d3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:872 -msgid "Explains Field Papers, why it is useful and how it works." -msgstr "" - -# 98144b240c7e4869ad17bd6e495c6c0a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:875 -msgid "**Demonstrate and Practice 105'**" -msgstr "" - -# ac2a3c255ee24ac1bfb4011a61c92a43 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:877 -msgid "Demonstrate: (and participants practice)" -msgstr "" - -# 4477f0b1863c41a7bb3024187822b06c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:879 -msgid "Mapping using Field Papers" -msgstr "" - -# 54d49c9450034de1842f07d8241ad617 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:880 -msgid "Scanning and Uploading" -msgstr "" - -# 7ccbeba854194eae8fdbb6c1607343a7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:881 -msgid "Opening Field Papers in JOSM" -msgstr "" - -# d92c289882894ad49f7da66920516ddf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:884 -msgid "" -"Guide teams to make their own Field Papers, and then collect Field Papers " -"from each team as PDF and print them." -msgstr "" - -# 426e2c7d10334441b55258e8b7e74c5a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:884 -msgid "Participants Computers Projector Printer Papers" -msgstr "" - -# 64a7f84152ae427288dfd516da89a68e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:890 -msgid "**Big Practice 225'**" -msgstr "" - -# 4f52e958f4a14c1db587bdf9954be4b9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:892 -msgid "**Divide area among groups**" -msgstr "" - -# 862b85b9505341979e3f36826c33bb13 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:894 -msgid "" -"Show participants a satellite picture of the area to be mapped today, over " -"which you’ve drawn lines dividing it into sections." -msgstr "" - -# 008d174123b149e08352a226375f5be2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:896 -msgid "" -"Do not create very large areas. The focus of this exercise is simply to " -"introduce the survey method." -msgstr "" - -# cd1c246581534ac3b534920b790872b3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:898 -msgid "" -"Explain that together you will all make a fantastic map of this area today. " -"Each team (partners) will be assigned one of these areas to map, and they " -"will all go out to collect data, and later will add it to OpenStreetMap" -msgstr "" - -# 9948d0d8506c4cbe9967622e92344e3b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:902 -msgid "" -"Teams will be equipped with a GPS, as well as one or two Field Papers for " -"their area, which they can use to write on and take notes." -msgstr "" - -# 47329ad26c284740ac26ff68f2d9711b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:906 -msgid "" -"Each group goes out to map their area. Make sure all problems and questions " -"about GPS and Field Papers have been answered and the participants " -"understand what they should do. When they finish collect their Field Papers " -"and add them to the website during the break." -msgstr "" - -# 23ff08b54334460fb03a03470f904d13 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:912 -msgid "" -"The easiest way to do this is to take photos of the Field Papers and upload " -"them to the fieldpapers.org website." -msgstr "" - -# 0c4b78249a6c430ab12e0568e21dd5d0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:906 -msgid "GPS" -msgstr "" - -# 5df0889ed1404d77841489bf8433c587 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:910 -msgid "Pen and Papers" -msgstr "" - -# 9b219d8c8b404653802024874cb0ca4e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:915 -msgid "**Review/Q & A**" -msgstr "" - -# be71f1fbb1f64f6f8422ac414a5d6056 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:917 -msgid "Ask one participant from each team to tell how the survey went:" -msgstr "" - -# 0c7edea22466429bb5dd07092d04beec -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:919 -msgid "Their survey strategy" -msgstr "" - -# 856d074094d94ab983bf003db27370dd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:920 -msgid "Benefits and weaknesses of their strategy" -msgstr "" - -# 9e9d9fc874974eb1bfda2bbba344d411 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:921 -msgid "Problems or challenges that come from doing field surveys" -msgstr "" - -# 2155b2ea847c425e9d9ec430ac433897 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:923 -msgid "" -"After identifying common problems, discuss solutions for them to minimise " -"participant problems." -msgstr "" - -# 0a2f2748cc3248cf89a6048a63da7db3 -# 1d827a08065746b2a2f2b0db64bf87e7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:915 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1218 -msgid "Microphone" -msgstr "" - -# c3af53b833264106b9e7d9473707bd9f -# e5da9e6b1d5242d395967376cadb353e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:917 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1220 -msgid "Speaker" -msgstr "" - -# 76603db5c0824e898a8ae2e9c3e3fadd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:930 -msgid "" -"**How can we print large size maps, such as a poster for a community mapping " -"project?**" -msgstr "" - -# 9eb858efb5bc4eb5a83b5efa945c1e09 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:932 -msgid "" -"One way of doing this is by using |QGIS|, though the topic is not covered " -"during this session. Basic QGIS training is provided in the next unit of " -"this training, and from there users may be able to learn how to format and " -"print large maps." -msgstr "" - -# a2cfdfb2119f470b8c7afca4dde907f6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:937 -msgid "**How do we scan Field Papers?**" -msgstr "" - -# 4a23c39bf76947ebbc6d7791471d15f3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:939 -msgid "" -"You can use a scanner, a mobile (smartphone) or a camera to take photos of " -"Field Papers and then upload them to fieldpapers.org." -msgstr "" - -# ca1ff5a17e8b4f1c8c95c0977fb2cd7b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:942 -msgid "" -"**What should we do if uploading Field Papers is really slow or does not " -"work at all?**" -msgstr "" - -# 67df2b0d3b2d449cbe32602d6cc0cfbd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:944 -msgid "" -"Unfortunately, the Field Papers website is not always 100% working, " -"especially when many people are using it as once. The process of uploading " -"may take longer than your lunch break. If this becomes a problem during " -"training, participants may simply use their Field Papers as handheld notes " -"and you may show them how to use imagery and GPS data as reference layers." -msgstr "" - -# 9e6f39d8ff6c4722ab84e8fb03ff97f7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:951 -msgid "Session 6" -msgstr "" - -# d22bdfda71a94a88a82b66cecf26b942 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:954 -msgid "Editing *OpenStreetMap* with *JOSM*" -msgstr "" - -# df6ae3d851d5487fb744c15851a55ef6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:955 -msgid "Time : 7 hours 45 minutes" -msgstr "" - -# 575602b93d914ea7b5200daf3aa7fe69 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:963 -msgid "Download OSM data in the area you want to edit" -msgstr "" - -# 5642594d0f174e1ea77cba583db52ff1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:964 -msgid "Select layers" -msgstr "" - -# d7823fe33f474aa8a795f1737707f162 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:965 -msgid "Edit OSM data" -msgstr "" - -# 2b6b9565614d487a8ead2dd55a97fe50 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:966 -msgid "Edit and understand tags" -msgstr "" - -# 0c798ef65e4f49e19e36b8ea106b275d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:967 -msgid "Upload OSM data" -msgstr "" - -# 7440e4375c9c422f99831e092fe0e50b -# bf5322ec16964a8b9f4a24ad3a8556c7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:968 -msgid "Save OSM files" -msgstr "" - -# 2eeb67e3558f47ffb4585cfffc12a53f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:972 -msgid "Survey area mapped in OSM" -msgstr "" - -# 8edadbdabf5c4087970f76ba5a442f4f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:976 -msgid "**Editing OpenStreetMap with JOSM**" -msgstr "" - -# 1f936156afdf4f26bee3c4cb4194af84 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:978 -msgid "Exploring JOSM" -msgstr "" - -# a4d041893cac4e74833ae6d451e390dc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:979 -msgid "JOSM layers" -msgstr "" - -# b5834b76739f4ab0b2d1586e37ab9ead -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:980 -msgid "Editing OSM data" -msgstr "" - -# b194e10eb07b496dbafaab5ffca98b82 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:981 -msgid "Tags" -msgstr "" - -# f797e505103146de8fc07e3300924c18 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:982 -msgid "Uploading changes" -msgstr "" - -# df4a9a2c39d3458d889b392a1894d506 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:983 -msgid "Saving OSM files" -msgstr "" - -# a1667b1a32294658a926980cdcb925d2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:995 -msgid "**Review 20'**" -msgstr "" - -# 5cfe1a4310d243bfbd674cb987cae4de -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:997 -msgid "Remind participants of the basic operations in JOSM." -msgstr "" - -# 6df9ee8d01e44e4994f767c6fdc3fb24 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1000 -msgid "" -"Ask participants about basic operations such as how to zoom in and out on " -"the map and how to draw points, lines and polygons." -msgstr "" - -# cc0717dd43cc4793a4493c95f5a58b4d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:998 -msgid "Module 6" -msgstr "" - -# 956abc5829c84077b4d955673662d1b0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1004 -msgid "**Download current OSM data of the area you want to edit 20'**" -msgstr "" - -# 5137445294cf4d6d9cfd5e46352157c0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1006 -msgid "" -"Instruct the participants to download OpenStreetMap data according to the " -"region to be edited." -msgstr "" - -# e2c070e19bba4ea0b4c8d8f23eb73cf0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1004 -msgid "Computer Participant" -msgstr "" - -# 12df5f17c5774871826a247fbfd2e428 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1007 -msgid "*Powerpoint* *presentation* and projector" -msgstr "" - -# 608819f443854cff8032a15c77249767 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1011 -msgid "**Setting layer JOSM 20'**" -msgstr "" - -# 34c1a845da674f7a8581cf34bed975df -# 5c2c52c9a7ec4d84adab8045765fe4a8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1013 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1233 -msgid "Demonstrate:" -msgstr "" - -# 04cf2df64f5e452188d5a9e5eb21cc59 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1015 -msgid "Moving JOSM layers above and below one another" -msgstr "" - -# b36eba4bc2414469be10ddd6e2d3c05a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1016 -msgid "Hiding and showing layers" -msgstr "" - -# 89c32c9be0744195a405c3828542d762 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1017 -msgid "Enabling and disabling layers" -msgstr "" - -# cea05a3180de41f4a291051b7acc51e9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1018 -msgid "Removing a layer" -msgstr "" - -# af79fb0b6f324db4b30c0b668a53be56 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1019 -msgid "Setting layer transparency" -msgstr "" - -# a37bf97ba5c24b318dcafabf8dd62ccf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1021 -msgid "Participants should practice after these tasks are demonstrated." -msgstr "" - -# a2fefa77102c4cc1b772926ca1d7307f -# 6d5c7f337f2047138c2be969e185e92f -# 4d8b47084b144ab18d742581e2043ac2 -# 1fe231cd40334ed49a8dbcf7a3b96092 -# 3b3dc38b37eb449d8ca665acff4ac1f5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1011 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1031 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1039 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1048 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1231 -msgid "Demonstration" -msgstr "" - -# 070d8e85344e4630be9b86fa7a179970 -# 479936fe334247878899db9b9a1a0188 -# 496d68f3f1a14a41895d7e52ef16e3cf -# 301f721d988844c9a889bb4f5e7ef3a6 -# 019906e7a91c456c81b468a3b20b2663 -# 74edcc3a1f2c463e919120869a1defc7 -# a983da63496746b8ad36139d4d1813af -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1013 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1025 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1033 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1041 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1050 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1145 -msgid "Participant" -msgstr "" - -# be419d1fcc6d437584d6b8f0582ea225 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1023 -msgid "**Editing OSM data 180'**" -msgstr "" - -# c7e948e1c79748069776ebaf7a542502 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1025 -msgid "" -"Ask participants to edit their respective regions, according to the " -"information they collected." -msgstr "" - -# febd836350bb40c98b453d73593750b7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1027 -msgid "" -"Continually walk around to each group to observe participants' work, help " -"answer questions and catch mistakes." -msgstr "" - -# ca114c0a70fd4c58b88c0dc366feffbb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1031 -msgid "**Tags 150'**" -msgstr "" - -# 19dfe317694c467d872af83033dc2464 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1033 -msgid "" -"Show participants how to enter information (tags) to the objects instead of " -"through presets in JOSM." -msgstr "" - -# 166e228e0278476fa8ae0267ab0e089c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1036 -msgid "Ask participants to practice adding tags directly" -msgstr "" - -# 6760b4f5b4b840619ba40c035ced849c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1039 -msgid "**Upload OSM Data 45'**" -msgstr "" - -# 2a514fe5405a4684b35a9a04a10107fe -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1041 -msgid "Show participants how to upload the data that they have added to OSM." -msgstr "" - -# d86cd035dfe04646ad94cbb3b89fc6d1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1043 -msgid "" -"Ask participants to upload their data in accordance with their respective " -"working areas. Each group is allowed one person only to upload to avoid " -"conflicts that otherwise might occur." -msgstr "" - -# 3ab5f12e6518452192df6bed3903bac2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1048 -msgid "**Save OSM file 25'**" -msgstr "" - -# 5dcceed592d34bd492b4733a0f32aac2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1050 -msgid "" -"Show participants how to save OpenStreetMap files on their laptops. " -"Participants should be reminded not to let too much time pass between " -"downloading and uploading OSM data." -msgstr "" - -# f261dc0f898349bf8d3bf4bb1f46cb10 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1059 -msgid "" -"**Should we use a point or a polygon to identify a restaurant in a mall?**" -msgstr "" - -# 4a1244d9ca89435c9145b4909bef1d22 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1061 -msgid "" -"You should use a point. Polygons are used if you clearly know the shape of a " -"building or area. If you want to identify a landmark inside a larger " -"polygon, such as a building it is better to use a point." -msgstr "" - -# 9d25874e96a4455a9841f05e25dc224f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1066 -msgid "**How do we map a bridge in JOSM?**" -msgstr "" - -# f9d4bd2e249a4ce99c129cab841138e9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1068 -msgid "" -"To mark a bridge, you need to split the lines which marks the bridge " -"(usually a way) on both sides of the bridge. If you have a road that crosses " -"a river, you can click on the dots on the side of the river and press 'P' on " -"the keyboard to split the line at that point. Then the selected line can be " -"tagged as bridge using the presets menu." -msgstr "" - -# 54d7996910004e2f94c459553fc474da -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1075 -msgid "**How do we digitise a building to have a perfect rectangle shape?**" -msgstr "" - -# ca6bcd6064d6472d975fae91ae73b5d6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1077 -msgid "" -"It is not easy to make a perfect rectangle only using your hand. Luckily " -"there are tools that can make the proper angle at each corner of a polygon. " -"Select the polygon (building) and press :kbd:`Q` on the keyboard to shape " -"that polygon." -msgstr "" - -# 9f690bdc0a484b49b1b98ad5e437f633 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1083 -msgid "" -"**The map on OpenStreetMap does not show edits immediately. What can we do?**" -msgstr "" - -# 908d75c7cdc84def83d4c10ae828c409 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1085 -msgid "" -"Usually it will take about 5-10 minutes to see your changes appear on the " -"OpenStreetMap website. If you can not see the changes on OpenStreetmap after " -"that time it may be because your browser is still caching the old map. In " -"this case you should reload the page in your browser. If this is not " -"successful you may need to delete the cache in your browser. For example, in " -"Google Chrome go to :menuselection:`Tools ‣ Clear Browsing Data`. Click :" -"guilabel:`Empty the cache` and click :guilabel:`Clear browsing data`. Then " -"refresh the page again and your edits should appear. Sometimes it still can " -"take a while until changes to OpenStreetMap appear on the main page." -msgstr "" - -# 75ba9db3d559435b843c37c94b7b2275 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1098 -msgid "Session 7" -msgstr "" - -# 7fdb8ca9cdf14c2e8970c3f7f9da87a6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1101 -msgid "Imagery Offset" -msgstr "" - -# 6f34b0445fe54a508b00ba3c19c8e5f5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1110 -msgid "Understand the definition of imagery offset" -msgstr "" - -# 3fb598ed530a4234b3d93e8e1180e0b0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1111 -msgid "Understand components of imagery (resolution and georeference)" -msgstr "" - -# 29b2244d17c44b5fa5bce87e07b3940e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1112 -msgid "Explain how imagery offsets occur" -msgstr "" - -# e55013ea35a04a0980fe4560c0c52102 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1113 -msgid "Fix imagery offset" -msgstr "" - -# fc7ac106f29b4b3ab82d94cb55bdb9f8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1117 -msgid "Able to correct imagery offset" -msgstr "" - -# 9ac4e998f0124423b2ef06e6b1d8017e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1121 -msgid "**Imagery Offset**" -msgstr "" - -# 89ad87234b234465a38dfd862b3008cf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1123 -msgid "Definition of imagery offset" -msgstr "" - -# 949042649fbd42a3b86f0e2850417408 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1124 -msgid "Imagery resolution and georeferencing" -msgstr "" - -# dbc0e6bc10b24eb1bcc39d16eb669fdb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1126 -msgid "Fixing imagery offset" -msgstr "" - -# ceea67794d484593a5d4f3805586aede -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1138 -msgid "**Explain Imagery 60'**" -msgstr "" - -# 140290745e6241cb845fe12109b52c77 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1140 -msgid "" -"Explains about imagery, including resolution, georeference, why imagery " -"offset occurs and how to fix it." -msgstr "" - -# 6b524815df58490e8d10ad7d71c762b9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1141 -msgid "Module 7" -msgstr "" - -# 47ce8d1be7494eceab278d2fb39e6ccb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1143 -msgid "**Add plugin imagery_offset_db in JOSM 20'**" -msgstr "" - -# 8c78043118174b33af6462c85ed13554 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1145 -msgid "" -"Ask participants to add imagery_offset_db plugin from the Plugins list in " -"the Preferences menu." -msgstr "" - -# 2d48c4c6f8d64466afbb7f8cf9b4a511 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1147 -msgid "Guide the participants step-by-step on how to utilise the plugin." -msgstr "" - -# 3077352856ed4b94afcc2b6e8547e4ac -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1152 -msgid "Discussion and Questions" -msgstr "" - -# c657b733a37a4ac2a3b3efeed7ae291e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1157 -msgid "Session 8" -msgstr "" - -# 08c5515c0486439c9a665530bfe2754c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1170 -msgid "Download OpenStreetMap data from Geofabrik website" -msgstr "" - -# 64840b730d4a44dbafa8086e9889e8d6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1171 -msgid "Download customised OpenStreetMap data using HOT Exports" -msgstr "" - -# 8e1f838746824d45a13f58c18a13a09f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1175 -msgid "" -"Able to access pre-processed vector files for use in Beginner QGIS training" -msgstr "" - -# 82ae0426f39548f7a1ce8be672bcf0eb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1179 -msgid "**Getting OSM Data**" -msgstr "" - -# 760c178382644a9c95a4ffc780844437 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1181 -msgid "OpenStreetMap data from Geofabrik Website" -msgstr "" - -# 682b85f4ded94fdea81062464ccd58cd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1182 -msgid "" -"OpenStreetMap data according to region and selecting attributes with HOT " -"export tool" -msgstr "" - -# a44d8222b8f34d51a78f099dbddfd47a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1193 -msgid "Module 9" -msgstr "" - -# 8b255666201d47df9c4e928500be4b39 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1195 -msgid "**Download OSM vector files from Geofabrik website 20'**" -msgstr "" - -# c450497f8ea34aa8ae7cfb49e9943756 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1197 -msgid "" -"Shows how participants can get OSM data in shapefile format through the " -"Geofabrik website that can be processed by QGIS and InaSAFE." -msgstr "" - -# e78979c2695946e1a9533a4917de9586 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1201 -msgid "" -"Ask participants to download vector files themselves via the Geofabrik " -"website." -msgstr "" - -# 814010a0be604a29bc72719c1e130e07 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1195 -msgid "Computer Participants" -msgstr "" - -# b2c8b36e85a94b1daa6fa96b17d49734 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1204 -msgid "**Download OSM vector files via HOT Export website 30'**" -msgstr "" - -# 27c81dd9384a4299ae9f1260654a9eeb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1206 -msgid "Demonstrate" -msgstr "" - -# 8305063f1f5142a5b077c7c59d5c91ff -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1208 -msgid "" -"How participants can get OSM data in shapefile format through the HOT Export " -"website that can be processed by QGIS and InaSAFE software" -msgstr "" - -# 1502434a24904ce38944c8a73ada87b1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1211 -msgid "The difference between Geofabrik and HOT Export websites" -msgstr "" - -# 9af8cf9c55e74ead8afb69ccc1eff361 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1213 -msgid "" -"Ask participants to download vector files themselves via the HOT Export " -"website." -msgstr "" - -# 45f27cd08bfc48269fb20992b93b0c89 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1216 -msgid "**FGD 20'**" -msgstr "" - -# 99de7e0bcffb493f918f88991ea02509 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1218 -msgid "Topics for discussion are:" -msgstr "" - -# f4e5041fa211486888a44acff64fe79b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1220 -msgid "How will OSM will be useful for participant activities?" -msgstr "" - -# 32a366cca9fa44108e00939bd85effad -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1221 -msgid "" -"Difficulties in using OSM for participants. For example, some common " -"difficulties are the unavailability of GPS devices and satellite imagery or " -"slow internet." -msgstr "" - -# 7b728c8333d44d2cb637f21c6dcb3dea -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1225 -msgid "" -"Do not provide solutions directly to the participants. Note the comments and " -"needs of the participants so that it can be submitted to the training " -"organiser or relevant partner to be followed up on (for example, set aside a " -"budget for the procurement of GPS)." -msgstr "" - -# 285d594be22d4051bcfc93e23a933d39 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1218 -msgid "FGD" -msgstr "" - -# 0133e03cca9c419499ad036f2887d050 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1231 -msgid "**Closing and Follow-up 15'**" -msgstr "" - -# ede2279377504321b2ad0019d62c7230 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1235 -msgid "" -"How participants can discuss through social media such as Facebook or Twitter" -msgstr "" - -# 3418853f41524c67bb6c915d1f61f085 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1237 -msgid "How participants can join the talk-id mailing list" -msgstr "" - -# 55aea444ffc943d7957e7f1d1d58aa2d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1243 -msgid "**HOT Exports takes a long time to process a job**" -msgstr "" - -# b51796885639434b8a7cd74ed6965fbf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1245 -msgid "" -"The HOT Export server uses a first come - first serve strategy. That means " -"the server serves the user who executes the first data request first. The " -"size of the desired area also affects the processing time. The greater the " -"total area the longer the process will take." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/curriculum/osm-intermediate-toolkit.po b/docs/i18n/fr/LC_MESSAGES/training/curriculum/osm-intermediate-toolkit.po deleted file mode 100644 index 6bf8076f..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/curriculum/osm-intermediate-toolkit.po +++ /dev/null @@ -1,1960 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:38+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# c879a8e530094718a98c82cfa97833c5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:2 -msgid "Unit 3 Facilitator Guide" -msgstr "" - -# 10a6a4ad42a2448893ac6660bbdf92de -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:5 -msgid "" -"Intermediate OpenStreetMap Trainer's Toolkit - (A Guide for Facilitators)" -msgstr "" - -# 22d68d93199348ec8481c6761563f74c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:7 -msgid "**BADAN NASIONAL PENANGGULANGAN BENCANA**" -msgstr "" - -# feb2a4ee7cde4d67ac2a0880936ba024 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:9 -msgid "**2013**" -msgstr "" - -# 1dea0965db7f462aab10552a79a94dc9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:12 -msgid "About Toolkit" -msgstr "sur le kit" - -# 95694f3ae8514f81919af21f5a571422 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:14 -msgid "" -"**The Intermediate OpenStreetMap Trainer Toolkit** is designed to prepare " -"trainers to deliver an intermediate training course to users of OSM. The " -"materials included are designed to continue from the **Beginner " -"OpenStreetMap Training**." -msgstr "" - -# acb31e4e734b4510a77d09c0444f792a -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:19 -msgid "" -"When organising an OpenStreetMap workshop, numerous factors must be " -"considered, including the length of time you have to train, available " -"resources, number of trainees and their technical skills. This toolkit will " -"help trainers prepare trainings for different types of participants, but it " -"will primarily focus on educating those with little or no experience with " -"GPS, map-making and computers. Participants of this training should have " -"experience already working with OSM." -msgstr "" - -# 777b3e45c07648b5a225def0c3a1b7a8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:27 -msgid "" -"The purpose of this toolkit is to prepare the trainer to successfully train " -"workshop participants in adding spatial data to OpenStreetMap." -msgstr "" - -# 5cd9a7e4119a46228cbe2ada6984a92b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:31 -msgid "Purpose of Workshop" -msgstr "" - -# 6eea384123ff4fd18c6a7b36cca8c911 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:32 -msgid "" -"This workshop is intended to achieve the following standard and basic " -"competencies:" -msgstr "" - -# c0a6a9f9ad0a4b1c8d7be2fc8aba02ce -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:36 -msgid "Standard Competency" -msgstr "" - -# df8f45fa535f42b9bca8d3cd8f0752aa -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:37 -msgid "Quality Assurance in OSM mapping" -msgstr "" - -# 170217ffb43d4aa6862a78fda7e92b37 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:40 -msgid "Basic Competencies" -msgstr "" - -# f4f74e88683f452b91c2624da081bf6f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:41 -msgid "" -"Apply better digitising techniques for improving quality of collected data" -msgstr "" - -# beada5c1755045fb9ce4cbf6c4dfa97f -# b2cdeaf4706645bf9b02639a3cef8f7c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:42 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:298 -msgid "Use JOSM validation tools to ensure the quality of map contributions" -msgstr "" - -# b90451bb6052478fae5e9781acd41dc6 -# cc2e6338dc0b4dd98439aae71ca4e356 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:43 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:376 -msgid "Resolve conflicts when uploading OSM data" -msgstr "" - -# 8880afc9a24f4b7c9aab5222e29049e9 -# e0fbaeb7dc42458c9a1f83ad0b003e8e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:44 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:461 -msgid "Create presets files in JOSM" -msgstr "" - -# 836539cfc4814e6da84d0be10009dcb7 -# 22540c31e73a4ba1867b44a50d352cc2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:45 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:565 -msgid "Use private data store feature to keep private data" -msgstr "" - -# 2004c899a99a435e93a883ca68681141 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:46 -msgid "Create and edit pages in OSM Wiki" -msgstr "" - -# afe28f6f554240458a6a886bf0d87c6c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:49 -msgid "Workshop Materials" -msgstr "" - -# 6b3d03b8102246cda7b8414237ea603b -# 0d8bace48bf1480dbaa501a327a2fa7b -# c7d2dc1d70b84d71a71e0686557773ca -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:50 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:102 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:106 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:161 -msgid "Advanced Editing" -msgstr "" - -# 03bf9150eaf94772a4e5a57a9b961833 -# fa0a08676cec461982bdae3d5d120caf -# b71e6eb1abb64c69bd8edeeed8661648 -# 7c29d918d30e405484a259a6a9aab7f1 -# 3fca2438f6b140c5b5bd1b876dfa944b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:51 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:110 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:118 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:122 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:293 -msgid "Quality Assurance" -msgstr "" - -# 4bb620bd46f14bbfa9d086e236d3bc1c -# daa05cc102c6403aaf0e444ed655b6c7 -# 9742291859f74f62b4a3200a94ade00b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:52 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:126 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:371 -msgid "Dealing with Conflicts" -msgstr "" - -# d09d660fe3fb4520aadd77373fd61b81 -# 88aa628849ce479e97f9d751ebbd39f2 -# 39d60411aa994bb6b189cdfc45f4891d -# fac7fb3397254dffbd94915a3dfffbf9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:53 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:130 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:138 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:456 -msgid "Creating JOSM File Presets" -msgstr "" - -# 845cf60696fa4e1584ef56e107721f31 -# 971421161d21416fa3b7edea005c918e -# f6b7f15ce730475586468e76fb5ffaba -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:54 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:142 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:560 -msgid "Using the Separate Data Store" -msgstr "" - -# 7a124bdd41fb4214a8dbbd85764e8a48 -# a4b964ece2a94b598d60e6e1f21a683b -# b7f5bcbf995348a183a518b3a9fffa7e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:55 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:146 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:649 -msgid "Editing the OpenStreetMap Wiki" -msgstr "" - -# 137083d7eb8c45349f002be9556ba092 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:58 -msgid "Workshop Strategies" -msgstr "" - -# 0f43d50c1af04a54ade07dc1b132f4f9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:59 -msgid "" -"Methods emphasised in this workshop are participatory teaching and active " -"participation in all sections and activities, rather than lecture method." -msgstr "" - -# d584d1017a304736b744f53f947a9a19 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:62 -msgid "" -"**Participant oriented.** Participants are encouraged to find and gain " -"knowledge and skills by themselves." -msgstr "" - -# c4241477e15849c09c23e6982c27662e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:65 -msgid "" -"**Trainers serve as facilitators.** Trainers facilitate to help ideas in the " -"workshop emerge from the participants, not only from trainers. However, " -"trainers must be ready to provide necessary information when the " -"participants need any assistance." -msgstr "" - -# f04e8ea60b1c42d19de0a013e4a43d49 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:70 -msgid "" -"**Outcome oriented.** Workshop must produce the outcomes mentioned " -"previously." -msgstr "" - -# 7493693f9cc94493bb28f40d8ec92d30 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:74 -msgid "Tools" -msgstr "" - -# 2a3247d5fde54c8b805692a188262b16 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:75 -msgid "" -"Copy of :ref:`Data Collection Using OSM Intermediate Guide ` for " -"participants" -msgstr "" - -# ba6f6cf905e74441abc844df916e3d31 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:77 -msgid "A workshop space with tables and seats" -msgstr "" - -# 904a8c1cea474fb3bfcbdf7979d49889 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:78 -msgid "" -"Computers (one computer may be used by two participants, but it is better if " -"one computer is used by one participant)" -msgstr "" - -# 9f7d031a88bd4cfd950860fbdb662fdb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:80 -msgid "" -"A Projector (to present slide and demonstrate technical instructions and " -"software)" -msgstr "" - -# 6e9386c6dce84aac9679603b964215a3 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:82 -msgid "USB Flash drive(s) to transfer files and software" -msgstr "" - -# 62a8fa55a58e47bb99dd5b96398e05bf -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:83 -msgid "Good internet connection" -msgstr "" - -# 0aff55af4dae4ff2adc613ee82287fd7 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:84 -msgid "Snacks and coffee for breaks" -msgstr "" - -# 5c643723031648d4ad4ce7238293bd73 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:87 -msgid "Schedule" -msgstr "" - -# aff716d82d4e4ea3a59d152a4fe9415b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:89 -msgid "" -"Below is an outline of a schedule for a three day workshop that has been " -"tested with several groups in Indonesia. You may choose to adapt and change " -"this workshop schedule to meet your needs." -msgstr "" - -# 7bed663d83b34e949a40b0bdfa086dcc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:94 -msgid "Day I:" -msgstr "" - -# 9ca1aeee76d547a990f3d7c37479a257 -# aeed14199bc34fa78335bad25f531c05 -# a7c1944dbddc41e399d8452d0e5b4148 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:96 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:116 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:136 -msgid "**Time**" -msgstr "" - -# ec093a35ef92423c9723e560324a1ee1 -# 44a2e9c884304e50a827bc1c3e8edd8a -# 27c56dc95c074cf7b157407eb4eabbc5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:96 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:116 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:136 -msgid "**Materials**" -msgstr "" - -# 68d1bd38176c455db5655f5b99b905bc -# 97f708571bf2435686b9988aed76313d -# fa87d19562744a38954c80725e482360 -# a62782183a8c4d3686a19ab653f1e7ab -# 222731ca9e934796ac9ad3d6096b8041 -# be215b9a1b754a2cbfb1acc51f029454 -# 15145867946949e594295587e3cd95e2 -# 749d362fa91a46888e08f5dca0350405 -# b8f132387e354ce19c98281e152e9adc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:96 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:116 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:136 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:196 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:326 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:401 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:488 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:595 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:686 -msgid "**Activities**" -msgstr "" - -# 8b22ca7b80434b208f6cea339af7fdba -# 1f3f39257fca491ab99f6b516457712a -# 8fb81758007444f185eddbb1344b29a0 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:98 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:118 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:138 -msgid "09.00 - 10.00" -msgstr "" - -# bb6850ff01f843d2a7b2e2d95466ae24 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:98 -msgid "Opening and Introductions" -msgstr "" - -# 96f28096bd754d7f89bfa411736e3213 -# 77f0c882f5c5494db0b36ba58296fc52 -# 9f4387ec915342008bc1ef5cc894f802 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:98 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:118 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:138 -msgid "Plenary Session" -msgstr "" - -# 900af9c31e72497bb2b31d4f00f7d6e3 -# f7eb5d9b5b674f209df0170e6076ccd7 -# 2d279c6c53c14ed3af20712c08371ae9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:100 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:120 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:140 -msgid "10.00 - 10.15" -msgstr "" - -# 3fa8061fd5d142e3aff73da0221c0147 -# 0d94b385002c448283b1d412c6b4bbe5 -# 70c5b18c76264186b7b99d41686f1463 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:100 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:120 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:140 -msgid "Break 1" -msgstr "" - -# 9ae378ea9c6645b68a84770c675ca8d0 -# a333d2ac086a441c9dc47dcbbd061f16 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:102 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:142 -msgid "10.15 - 12.15" -msgstr "" - -# 4c008487e9ec460a8f5e3734ad25e72e -# e23a3334f3354edd8df8e4b8977c2b9e -# 9ea698a232f948878ab1ec2eb623597f -# 8492b2c9c5f440978f5d8c1bf2cf4df1 -# 9b4ea521cdfd4409aa5e83ea68e29ce8 -# 00a288a3a3af45e9b8b6ac20358be401 -# b403277be2034215a3465d0496ffa68a -# 0c486d3889d04500afa025e40894a2af -# 19e9fe66eda241dbb7d82223bb73492b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:102 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:106 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:110 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:122 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:126 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:130 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:142 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:146 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:150 -msgid "FGD and Plenary Session" -msgstr "" - -# 499cdd6f70354eaeb9fd56e69348a22e -# 2df64d9cc65b422dbe6d39e01d82b7ad -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:104 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:144 -msgid "12.15 - 13.15" -msgstr "" - -# f53a84a089b74911bd78c81dd3d0c78e -# 310b3d98d8d849009664833f55de0a03 -# e400df7d073548a98fc6caad036c36a6 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:104 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:124 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:144 -msgid "Lunch break" -msgstr "" - -# fac96a48cd4d46efaa48885b9112ee89 -# 5ecb88da398a44cb8702ef6937640a8f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:106 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:146 -msgid "13.15 - 15.15" -msgstr "" - -# 38b8630760594156a4de170f35d060d0 -# eb0e02255d8842e780cefca5ea294bc2 -# d19f1d6d32d745a5af72874f6c96ffb5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:108 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:128 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:148 -msgid "15.15 - 15.30" -msgstr "" - -# 19ce7de51e2f4086997883841033e518 -# ed9e6e0e369b470aa4e4a55ede300c56 -# f596d0a00d824c00b3831edf290d48b5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:108 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:128 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:148 -msgid "Break 2" -msgstr "" - -# a57c507e78dd4329add9f68d1bfad780 -# a9441d72c290458280e67f30d932b4f1 -# 0ea6d8b97e624ae0970d8766600f744d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:110 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:130 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:150 -msgid "15.30 - 17.00" -msgstr "" - -# ab9d92e1f1eb4ea18167bfdb93b0bc1f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:114 -msgid "Day II:" -msgstr "" - -# 5828f2b1666946198169d0f1b163b0ef -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:122 -msgid "10.15 - 12.00" -msgstr "" - -# cdf02b7787394c3099fb926dc8a9dab2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:124 -msgid "12.00 - 13.00" -msgstr "" - -# 5fbb4e526d5940f28992248f40502590 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:126 -msgid "13.00 - 15.15" -msgstr "" - -# 92ddd0f2f1b14c2d9c91e460b0a4aba9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:134 -msgid "Day III:" -msgstr "" - -# 13174aa00cb0446b89b657398a9920c8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:150 -msgid "Evaluation and Closing" -msgstr "" - -# ebc477fd4d3d49e19fb0574ccf5136ac -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:155 -msgid "Workshop Plan" -msgstr "" - -# bdd8ecf420934beb808efed4da50d738 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:158 -msgid "Session 1" -msgstr "" - -# 1ddc8e20cfa84a9ea42647cf71fd582e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:162 -msgid "Time : 4 hours" -msgstr "" - -# c696ceb169534dc7bde06475d2bca697 -# 925a9ef5761241a1832173c11369f284 -# a65b89492bc64bb9b876d83c422a7d96 -# defd5d17b46e4101b5ce76e9003a783d -# 3288743415bd4e4a8ba66eb748b676a4 -# 0f468357a0c54a849e044c684cef8cf5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:165 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:297 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:375 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:460 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:564 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:653 -msgid "Basic Competency" -msgstr "" - -# 34ff19d33b5644c99cbe02220b19705b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:166 -msgid "" -"Apply a better digitising technique for improving quality of collected data" -msgstr "" - -# 40110d097d03431b9b07869135bc3bb5 -# ca8774e3b094428f99cea8bb92823e0a -# 5aabc80acd76419ca1b70d08e9587949 -# 5f7d7967967d443d9a9aa58c66099bee -# a12359f055784005b6ab4c93bb97fea9 -# d9adf9fbff4f4855b95dda0ffe76eca8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:170 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:302 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:379 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:464 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:568 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:657 -msgid "Indicators" -msgstr "" - -# 0193f9b4f65a4b08ac72863ad0b4678b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:171 -msgid "Use advanced editing tools in JOSM" -msgstr "" - -# 15655bf81cea41f6a7c53fff337b3abd -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:172 -msgid "Make relations among objects" -msgstr "" - -# 582036d6ecbf45b3ac5d7aa0e2c57f1d -# d7402400a38241a9b1a7f83df85f3235 -# c9d6cb491d834f73956e951847c63432 -# 648f699bceb54cad85d1c1fd27679237 -# 526d53f93e7f42d485f0193467954016 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:175 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:307 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:473 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:578 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:665 -msgid "Outcomes" -msgstr "" - -# 6bbc698071ae40f18a59a36396ecaf8a -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:176 -msgid "Make data in OpenStreetMap better" -msgstr "" - -# ec16cfbfbe4f48e59110a0d08ecaf01d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:177 -msgid "Understand relations" -msgstr "" - -# 1c329357b2444512963b6c1772046363 -# 427690d3ed97429cb0b71895ffbf6e6d -# 40e1e73a21254a1eaa8065aa6acafb55 -# 07cd3a863e6843f693983782248a2620 -# 7ae9f6549edb437eb839e33ad28403b5 -# 0dfa7efd33c7435f9c316169abe34db5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:180 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:311 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:390 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:477 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:582 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:670 -msgid "Core Material" -msgstr "" - -# 082ad1a7785e4031816f6457f82c89f2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:181 -msgid "**Advanced Editing**" -msgstr "" - -# a8853f6452e947a8b34591b4c25996b9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:183 -msgid "Advanced editing tools" -msgstr "" - -# 115efa5c844a44778cbf3ca11fd56990 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:185 -msgid "Default drawing tools" -msgstr "" - -# 6866e6ead2a34324a5be2515ebf4457b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:186 -msgid "Plugins" -msgstr "" - -# 9c37de541c3443dc9aca83694771d3d9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:188 -msgid "Relations" -msgstr "" - -# 2bffc2b9adc44c8f95a24423fc6aa5bb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:190 -msgid "Editing relations" -msgstr "" - -# 4ad6a62229a04ccf97d7ab87ef85b10b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:191 -msgid "Multipolygons and linestrings" -msgstr "" - -# 1e4ea9cec6a9471fbc6cb940a3975920 -# 39eeffd127374ba9aa9ddc534d2fcafb -# bf85d54b108c486f847dc5d58bd58352 -# af83ca8344d744ac8f6f8d3011b16759 -# 6621f11fd0b14b4d9d12490433e804a2 -# 96c9526ff72d4377a7f499dd28b2fd7a -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:194 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:323 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:398 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:485 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:592 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:683 -msgid "Activities" -msgstr "" - -# f982e7d2fc9f43c5a8be11321d1e5537 -# 7a84d40f764e4f2aac70b6da74371fe7 -# 326799938cdf48138430c8ec78d6e6dc -# 259535f90875479dbeacab998ad181b3 -# dd69db42e1ff4febaaa145369707c1d5 -# fe587e99bb964b62acb97c05f5910b78 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:196 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:326 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:401 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:488 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:595 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:686 -msgid "**Methods**" -msgstr "" - -# 9db939fbfdb445e8a4d7a8431b95c340 -# c6e7cf7d781f4c1e996fa1314d09ca8c -# d661aef44ecc421aa17a9ea2eb6d51f0 -# ea4dfa1de95048d88526f23ab6206723 -# 8fe3b199a5ba46cba7370d01cc7b1f54 -# 196957e69c0d4a15849ca20e1b746494 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:196 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:326 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:401 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:488 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:595 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:686 -msgid "**Tools**" -msgstr "" - -# 79c11793685249d1be1162b0cbc8fab6 -# eea2bc5ebe7748cd90bfdb700b497d00 -# 8a68bc69015b48c7bd5db08e79b245bb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:198 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:328 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:403 -msgid "**Introduction 5'**" -msgstr "" - -# 2f4dbf9f9ebb4cedb14f6c696b77adc4 -# eede0d971c2b4c00ad256c91e6173d6a -# a1e00ba5cd544b3d88869a50c0d602d0 -# a6b2cc27cc2147a0a5f3f449da4c08aa -# d79e38a98cde4ef0b0c371771be65c7c -# eb9592a81edb4bbcb5c8870c4d3fdf33 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:200 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:330 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:405 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:492 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:599 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:690 -msgid "" -"Explain the importance of the session, objectives, outcomes and activities " -"of the session." -msgstr "" - -# df7439ce74884456abff55d85306a9d7 -# aaeeb1b80a104061b4dacc38f69e4193 -# 9b045ddea04c43de921103d465d150ae -# aa7ceb9694394b358b36622fac2257bb -# 4595ebce9836443887232127536b581e -# 2eed5dc864fd4cbfaef9df5462aca5ce -# 31d682dab2874b64b7b01613ab066cd5 -# 6bc8aff24b644440931ecadcac4b0e66 -# 797c6922dbe9460c9f79767ba0aefb74 -# 0947e37c2aab40f5a9c8176a7438efb9 -# 1f594de687774edbbe125ef6ec9cfbad -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:198 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:328 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:403 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:412 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:420 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:490 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:500 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:597 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:606 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:688 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:693 -msgid "Lecture" -msgstr "" - -# 685a8bbd636b4150b550236da2a42ad2 -# 8c25c6c701f64d7098ca7b33f12104e7 -# 705547966f524c21b19c6f3cd9fe1ce4 -# 91bedc1f527344e8860c572a396893d0 -# e2fece433faa4e8dad8cf1d66adf4f4f -# 201e36a764d24f459919e710fb6f8b2e -# aef716b1ea4c481a92596ed4a8584a42 -# e066c4f9b434464fb496cedb0b711510 -# 033a2c0b84a1422ebd0a9f807cf9ada3 -# 190d9e7112384991a7a84e60cd0a11a2 -# 86e3bd35ff9a49128309fe3524e014ae -# a6ad00d4ade64585800391902bc7376d -# 4c14e463c78e4db4ba710bbd5918fe9c -# 56e671339a7745e485b1bfc5aaccda84 -# 5c90d80f91004a4486d1e5939f7c46fa -# 879488fac3f8462695b7a9c8d6982e1f -# 9d06d200118a462a92c2e587e78a300d -# c6688d8b0978465880550661bc2062aa -# 694a4c52890e406b87252ef067a92108 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:198 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:222 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:235 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:251 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:263 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:328 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:335 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:342 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:403 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:410 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:490 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:500 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:527 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:597 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:606 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:688 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:693 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:711 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:722 -msgid "Powerpoint" -msgstr "" - -# 26644c14178c4df08d799d674d7767f3 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:200 -msgid "Slide" -msgstr "" - -# 2f7f691039274c5fa948d2c878e3aa83 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:203 -msgid "**Review OSM Materials for Beginners 30'**" -msgstr "" - -# f19fce5dfff54195adeef3d95ed7a2ac -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:205 -msgid "" -"Request participants to discuss what they have done with OpenStreetMap (OSM) " -"since the first workshop (beginner training)" -msgstr "" - -# 4a20f6a221194022b9499cc3fd0482a1 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:208 -msgid "" -"Create a questions list from participants, showing them all on the projector." -msgstr "" - -# 13d84a96f38e4d84a55f8ca5bac9ba12 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:210 -msgid "" -"If the questions are simple, answer them directly. But if the questions are " -"outside workshop material, give the other references or do an individual " -"session outside the workshop, for example at lunch break." -msgstr "" - -# 4e1bb455b0d04fb6ad0008ac67a66904 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:215 -msgid "" -"Explain what participants will get from this workshop (intermediate " -"workshop). Separate participants into two sides, asking more details about " -"their experience using computers and OSM. Pair the participants so that " -"there is a good balance of skill in each pair. Less experienced participants " -"should be paired with more advanced users." -msgstr "" - -# f6c1ec602b3843ea88718e93a920c56a -# 8ba0905bcc9e45ada58dc642db386232 -# 03a37ecbe38a4a5984d7fcad28246faa -# caf6ad35c35b4d16997c200aa409050f -# eaeb55c9119f445499c628a416c8fe65 -# e08c16a479ba4f5db2d1a26f41ffc9f6 -# 619802b783494709a9d1040c91a98671 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:203 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:222 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:235 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:251 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:263 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:410 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:513 -msgid "Discussion" -msgstr "" - -# 481c51f6e6f340069081ee6b54227969 -# d915eabc328c4d4a89ef2cfb6702341e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:205 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:224 -msgid "Q & A Session Lecture" -msgstr "" - -# 09acab2237244a4c986ca90525880707 -# afa7954747584aa4b2da70f0098b33ae -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:203 -msgid "Schedules" -msgstr "" - -# cdc057c5ee1549729d8f17bba05c7f51 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:205 -msgid "Microphone Speakers Projector" -msgstr "" - -# 2a8cb5ae490847a1bf9c3b248d9b5b98 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:222 -msgid "**Shortcuts in JOSM 20'**" -msgstr "" - -# eeefb6c1c15a4c099daa4e2b98e631e8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:224 -msgid "" -"Ask participants to discuss in brief about the shortcuts (shortcut keys on " -"your keyboard) to activate tools in JOSM." -msgstr "" - -# b62f6332ea284b35b6e3f2e4cef872ab -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:227 -msgid "" -"Demonstrate how shortcut keys can make the job of editing easier by saving a " -"lot of time." -msgstr "" - -# d6a095fdff89428f9c5961c6d4dd162b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:230 -msgid "" -"Ask participants to practise by following the demonstration in the use of " -"shortcuts." -msgstr "" - -# 3c6a7491a4184c31946c8c961af9d476 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:224 -msgid "" -"Presentation Projector Computer Laptop Sample files in USB drive (tools_menu " -"_sample.osm utilplugin2 _sample.osm)" -msgstr "" - -# 9bc2252e935a4f1b8dbbf75c4d8d8b71 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:235 -msgid "**Building tools plugin 30'**" -msgstr "" - -# 489e37ba04134ed3a6047d8840699a94 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:237 -msgid "" -"Make sure all the participants have installed the **building_tools** and " -"**utilsplugin2** plugins. Make sure that participants remove the previous " -"training files and ask them to create new layer. Use that layer to practice " -"with the **buildings_tool** plugin. Demonstrate:" -msgstr "" - -# 3a3f3b94f59d4eff8f80278b42872019 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:243 -msgid "How building tools works" -msgstr "" - -# a4756bf202ed4a18bf93f1a83eee7fed -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:244 -msgid "Make sure that they don't select any object when using building tools." -msgstr "" - -# 41938f531cf04507ac69b428eb20a47e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:246 -msgid "Teach how to set the building size (for example 10 m x 10 m)" -msgstr "" - -# a148d0c3582046269746fb20d28aacd6 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:248 -msgid "How to automatically add tags other than building=yes" -msgstr "" - -# 0d15604476584ee79f55b5b533f082fa -# 8270c5833be14cd8b10be352a75f14d4 -# 9abc376359b94b08a293888dd4f39b5f -# 99e87eff77674f99a1abec8f1da44ce8 -# 2745b0cff9764fbba40766919c89f3bd -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:237 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:253 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:265 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:422 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:515 -msgid "Demonstration Practice" -msgstr "" - -# 88c64586190f4669aa14d6e142fe1a87 -# f5bbaa0e262246c99af124bd9b35ad12 -# 4b57c8973b294aa7afb14dec68798a46 -# 3a52fb1bc0f94f0ea24918d2877826e7 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:237 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:253 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:337 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:344 -msgid "Presentation Projector Computer/ Laptop" -msgstr "" - -# e4f9cef5293a4df4bedd72490d374dc3 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:251 -msgid "**Utilplugin2 60'**" -msgstr "" - -# a402bd853ebf40d2b9ac818674dbbc43 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:253 -msgid "" -"After the **building_tool** plugin, ask participants to close the layer and " -"open the training file **utilsplugin2_sample.osm**. With this file, " -"participants practise using new tools." -msgstr "" - -# b3955279c2064658ab8e52f26ae7c623 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:257 -msgid "" -"Explain new tools in utilplugin2 plugin such as *add source tag, select way " -"nodes, replace geometry*. Give examples of situations when these will be " -"used." -msgstr "" - -# 70bfe0578721498da5c959ae6ded1428 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:260 -msgid "Participants should practise the tools as they are explained." -msgstr "" - -# 08bb2f0f5a0048be88ef32a58cb9c841 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:263 -msgid "**Create relations between objects 35'**" -msgstr "" - -# ae7b83455ca94511a4394758c3f496e8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:265 -msgid "Explain relations and show an example in JOSM and on the OSM website." -msgstr "" - -# 3a268e488a2f4d218c90e19011d5394e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:267 -msgid "" -"Have participants create two polygons with one inside the other (to " -"demonstrate making a building with a courtyard)" -msgstr "" - -# 9e0da0be0d204ecc9bab7367ccd3930c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:269 -msgid "Explain relation attributes, and the \"inner\" and \"outer\" roles." -msgstr "" - -# b81a085908d8491a9451120efa36f33e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:265 -msgid "Presentation Projector Computer Laptop" -msgstr "" - -# 786b73958c684686bb7d0deba46f04c3 -# 382526df55a540bb95101aff7685ba06 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:273 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:432 -msgid "FAQ (Frequently Asked Questions)" -msgstr "" - -# 942f6994f2844c658941b45fa65a742e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:275 -msgid "" -"**I have set the building size in the building tools plugin. Why do " -"buildings show as a line, not as a polygon?**" -msgstr "" - -# ae798eb021804d23af291b6cfdd6eb96 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:278 -msgid "" -"It may look this way if you are not zoomed in far enough. Zoom in further to " -"see the building properly." -msgstr "" - -# 1bcbddfa5e3542f7a621520d8c287773 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:281 -msgid "" -"**I want to create a circle. Why do I get a very large circle with the " -"'create a circle' tool in utilsplugins2?**" -msgstr "" - -# 27006544f79a4bf19f3fb4e17e2867ef -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:284 -msgid "" -"Before using this tool, first create a way with exactly two nodes. If you " -"create a way with more than two nodes, the resulting circle made from this " -"tool can end up very large." -msgstr "" - -# c661994dc14847e290356d769ed0efbc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:290 -msgid "Session 2" -msgstr "" - -# 33aec73491864f8d9815783453e3456d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:294 -msgid "Time : 4 Hours 15 minutes" -msgstr "" - -# e4e80caa8b2e47718309cbe2009aae65 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:303 -msgid "Use validation tools in JOSM" -msgstr "" - -# 7e6af44b2e2f4ba1a0b92f450ff3b1d1 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:304 -msgid "Use online validation tools" -msgstr "" - -# 5be49e26d2de40d59eb891abbf4cab11 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:308 -msgid "Use validation tools to make OSM data better" -msgstr "" - -# 9c484f31661c48bebdcf899ca980b0f8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:312 -msgid "**Quality Assurance**" -msgstr "" - -# 1ba053d703084e4790e53cacdfda6d79 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:314 -msgid "Error and warnings" -msgstr "" - -# 24f8dd8822c74156a860862348ca809d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:315 -msgid "Using the validation tool" -msgstr "" - -# f3d1b4a37ddc458e9c73dcd0dd8f07fc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:316 -msgid "Common validation warnings" -msgstr "" - -# c7a9fe6ab84b4844a91246321906c785 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:317 -msgid "Using the tasking manager" -msgstr "" - -# ea751b14c1ac4a5892b4a7a5d234178d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:318 -msgid "Editing tips" -msgstr "" - -# dcd9a638c1534ff4a827f50690bc0780 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:319 -msgid "Presets standardisation" -msgstr "" - -# c971767eb04b4fac800aef437a45335e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:320 -msgid "KeepRight" -msgstr "" - -# 1429ea9d3814494bbceacf95869861a0 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:332 -msgid "Answer any participant questions about editing OSM data" -msgstr "" - -# da22095bbbed458ea4d24c52740a9e0e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:330 -msgid "Q & A Session" -msgstr "" - -# a8620c009a4747c3ac8a480abc5a32ea -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:330 -msgid "Presentation Projector" -msgstr "" - -# 0a78e302ef3b4816a081b0db1ec43709 -# f00e73572aa3482aa7017d0874921879 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:335 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:500 -msgid "**Input 45'**" -msgstr "" - -# bc3be8160b634d1bb70882defe6bf34e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:337 -msgid "" -"Explain quality assurance. Show a few common errors that occur when editing " -"in OSM." -msgstr "" - -# b734de3e05bc4c0d9b661af49010f0f2 -# 823efa86ba8a41488dc07d055fee42a3 -# 6412ba2018e149628a6e2d411537044c -# 36fbcdc3e5704770b042ee9106e0e59a -# 5324a1e104f3403b930ff11cd3d6dc0b -# e0bda7be632c40ea8fde5c9725c48b56 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:335 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:342 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:527 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:545 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:614 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:711 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:722 -msgid "Practice" -msgstr "" - -# 5c8b670fe6bd4b9aaf77a18b27d70e59 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:342 -msgid "**Practice 150'**" -msgstr "" - -# 38a5041e3d7f45739108bf38fe20e231 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:344 -msgid "Show the proper way to digitise with JOSM." -msgstr "" - -# b3da8d6826ae486dba758c860ab50c07 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:345 -msgid "Show how to fix errors or warnings." -msgstr "" - -# 3d791878128046c498b6233d77fbf4fa -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:346 -msgid "" -"Find and fix errors in JOSM using two validation tools, JOSM validator and " -"KeepRight." -msgstr "" - -# 7617eb16ca834f70890792e7ba141bdc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:348 -msgid "" -"Remind participants of the tools from the previous session such as those on " -"the tools menu and more tools." -msgstr "" - -# 5c0d7409f24a4e36aed423104e2df651 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:351 -msgid "" -"Use the tools to correct existing mistakes, according to the functions of " -"each tool (like split, merge nodes, add intersection, etc.)" -msgstr "" - -# 3726dcf13c784988841a5a57b716aa00 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:354 -msgid "" -"Participants should practise using the JOSM validation tool and KeepRight." -msgstr "" - -# 28bacdf67c7b46779cd96df11ea3653d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:356 -msgid "" -"Let participants practise validation in an area, using the tasking manager " -"to arrange tasks so that upload conflicts do not occur." -msgstr "" - -# 734f53b44ecd4344bb6c6c9c26235b35 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:360 -msgid "**Closing 30'**" -msgstr "" - -# 216d23765bc144a8bbfaefb5ef0749ff -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:362 -msgid "" -"Q & A about problems that may happen when using validation tools in JOSM or " -"online" -msgstr "" - -# 56a051e546c44e89940b4a9ce0c546ee -# 5f1cfb04afa849a89ceaf4174116bc04 -# b7f04e74cc454cf78a4fd5310f84504a -# fb39d41bf714437db70fd5d0e9e44432 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:360 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:543 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:608 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:628 -msgid "Q & A" -msgstr "" - -# e8bb13f0a10f49a28bfe2188ac6ae1ae -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:362 -msgid "Session" -msgstr "" - -# f90580df110749cca4c543483c24445d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:368 -msgid "Session 3" -msgstr "" - -# a57d84fbc83c4f40b805ffc0e4e29621 -# 508dc27db8504f3aacc8a8b9f51f855a -# 903135861cfc4bf0a00e36bf5f805c78 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:372 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:561 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:650 -msgid "Time : 2 Hours" -msgstr "" - -# f2c371c2afb84c04a53a320100646acb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:380 -msgid "Identify conflicts" -msgstr "" - -# f2712da0f84747bab7beae0c82098cfd -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:381 -msgid "Understand why conflicts occur" -msgstr "" - -# 34c03db2c25241fab79cddd6c5a0caff -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:382 -msgid "Solve conflicts" -msgstr "" - -# 737e66eff0c64e9c951181739f89c571 -# d3a78f24c70d4e67b58e20eb16abf78d -# 3fb983e19bd64ff69004eda2d5ef9cec -# 6d583f2c922f43698ffc588975a62ecd -# 64827bc717a346e487f031a7ab996d82 -# 3366c053d608410789cd2129b8132158 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:385 -msgid "Outcome" -msgstr "" - -# 46ad6e2b289249f3a5dc571e6cb604b2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:386 -msgid "Conflicts occur less" -msgstr "" - -# b349c63d77ee48c3bc7f0b6228c3933f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:387 -msgid "Able to resolve conflicts in JOSM" -msgstr "" - -# 99c83b94e83a4618abf567fd3edf24e6 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:391 -msgid "**Dealing with Conflicts**" -msgstr "" - -# 380aa5356a594e579b20eee0f572a8bc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:393 -msgid "Conflicts" -msgstr "" - -# 3a1a4bf8258048c2940da459a1942b6b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:394 -msgid "Conflict resolution" -msgstr "" - -# 284c32d630c340b7ac4631ef36da0eea -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:395 -msgid "Ways to avoid conflicts" -msgstr "" - -# 4481ec135b734a3dbd39e66ad585d841 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:405 -msgid "Presentations Projector (get there are two projector)" -msgstr "" - -# d12f40bc7cf7426392d27bf64509fa5d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:410 -msgid "**Group Discussion 15'**" -msgstr "" - -# 5f2fe44d607b411c83969e150ed097a0 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:412 -msgid "" -"Ask participants to form groups and discuss the causes of conflicts and how " -"to solve them." -msgstr "" - -# 29756c6c54d54bf8b384428f6146a01f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:414 -msgid "One group can present their discussion results and others respond." -msgstr "" - -# 4e1042edc63a43fd930752cbe71fa35d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:416 -msgid "" -"Reinforce the discussion by showing on the projector how a conflict occurs, " -"by downloading some area around the training location." -msgstr "" - -# 6446a7707a7a4aaa88a520fec2d8a178 -# 673b06b62bb64a7ebb976f416af35d85 -# c760e85027f244d2b90f63d0c115fdcb -# 3d851548306645e684f369c61232b58b -# 4cf5ef973098485a8cf3ef6636f6a720 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:412 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:492 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:502 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:599 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:690 -msgid "Presentations Projector" -msgstr "" - -# 9b8b1966ac384d55873f87d64d381e83 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:420 -msgid "**Demonstration and practice 100'**" -msgstr "" - -# ab84e97505464b59b4485b3c7074c817 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:422 -msgid "Before demonstrating a conflict, first create a sample conflict." -msgstr "" - -# 461061fab4cb4dd599dd67755aa1b639 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:424 -msgid "" -"Explain the three type of conflict that arise when uploading JOSM data. " -"Describe the cause of each, show an example and how to handle it." -msgstr "" - -# 3d148397b163454cac0da89390584830 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:427 -msgid "" -"Ask participants to demonstrate to the others on the projector how to solve " -"a given conflict." -msgstr "" - -# 4b3423400d9645968eed50eaba8e8b3c -# dfa5a2d790ed407ca2640ef8ac434e73 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:420 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:513 -msgid "Computer/" -msgstr "" - -# 5afc0d62730f441dae867521699056c8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:422 -msgid "Laptop" -msgstr "" - -# 90159ea4b0bb46b39da74e8cd9a41e4d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:434 -msgid "**How do we avoid conflicts?**" -msgstr "" - -# 87b58f8ade4c450fa1fa14e2fb4a4cdc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:436 -msgid "" -"If you are working with other mappers, divide the work area so that your " -"efforts do not overlap." -msgstr "" - -# ee79e2e42cb04c62b6f9e1852c2db577 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:439 -msgid "" -"It is also wise to upload your edits regularly. Fewer conflicts will occur " -"if you upload changes soon after downloading data." -msgstr "" - -# da0a895a340142ca883801a0a004e359 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:442 -msgid "" -"**What is the meaning of the green, yellow and red colours in the conflict " -"dialog?**" -msgstr "" - -# 76d2bbb85fa945a69599fe061db185dc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:445 -msgid "" -"The green colour means that the nodes are also in the OSM server and in the " -"same order. The yellow colour means that the nodes are also in the OSM " -"server but not the same order. The red colour means that the nodes exist " -"just in one version, whether it is the working version or on the OSM server." -msgstr "" - -# e27c846cfb35409a92ebfe8243c1f778 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:453 -msgid "Session 4" -msgstr "" - -# fedcfa5fa45d4084bd2334f37483840b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:457 -msgid "Time : 150 minutes" -msgstr "" - -# 10dbb4002f2c40628cc8a3317a54fb49 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:465 -msgid "Understand tags" -msgstr "" - -# bde55bfa76544d80b18629918fb216bd -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:466 -msgid "Understand XML" -msgstr "" - -# 4d0f7d6a8289420b9f9fa951aadc3307 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:467 -msgid "Understand keys and values" -msgstr "" - -# ada290812c014f1eb231941470d0c29f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:468 -msgid "Make presets" -msgstr "" - -# d5a2c86069ab46aca4b13381c5428187 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:469 -msgid "Put preset files into JOSM" -msgstr "" - -# afac5313a14a4aef864c4f04bc41ebeb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:470 -msgid "Apply new presets to an object" -msgstr "" - -# 5ff62ab4cd5548cfacaf4b7fc0bdaaf0 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:474 -msgid "Presets can be used to ease and standardise editing process" -msgstr "" - -# a8566f2c832f47a79c4d887a0d2b5483 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:478 -msgid "**Creating JOSM File Presets**" -msgstr "" - -# 4544ce8280fd4ce3a0acc65463dcf214 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:480 -msgid "Tags and presets" -msgstr "" - -# 1d86b1bb7a6a445e8718934fc96d2c63 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:481 -msgid "Introduction to XML" -msgstr "" - -# 001967c271004c44b4c0a52a7e1a3d00 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:482 -msgid "JOSM presets files" -msgstr "" - -# f58937de6d0b4515a91bcca74eda0158 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:490 -msgid "**Introduction 10'**" -msgstr "" - -# 2e93e0df536e4a33a2d9f1e7f361d87c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:494 -msgid "" -"Give questions to make sure that the participants still remember what are " -"presets and tags." -msgstr "" - -# 81fc3c1b2bef404eb0ed53ff5b988264 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:496 -msgid "" -"Make sure that the participants understand commonly accepted tags in OSM " -"(remind about Map Features page on OSM wiki)." -msgstr "" - -# 2b4c5dbb67a84e7494e2c4d517e0ceaf -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:492 -msgid "Q & A Discussion" -msgstr "" - -# 0a022c0fdaa6419cb90b504ba7db0065 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:502 -msgid "Explain presets, different tags, keys and values." -msgstr "" - -# 2772463bcd48457584b083cf1d4b63bc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:504 -msgid "Introduce the XML language which is used to create a presets file." -msgstr "" - -# 5805e2d7bc104b5fa48b5e88e790ab2f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:506 -msgid "" -"Explain the various elements that can be added to a presets menu through the " -"XML code. Explain each element carefully, so that participants understand " -"the relationship between their code and how results appear in the preset " -"menu." -msgstr "" - -# c931c7a50d144feabb6c442709235127 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:513 -msgid "**Making Your Own Preset File 30'**" -msgstr "" - -# 54675c3e97a84ed282e415efa9b56e84 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:515 -msgid "" -"Invite participants to discuss presets that you want to make together. Make " -"sure the ideas include all types of preset menu items, such as text box, " -"check box and multiselect." -msgstr "" - -# 1a98923f0d3e4558aaf6fab480bf838f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:520 -msgid "" -"Ask participants to visit the Map Features page on the OSM wiki and the " -"taginfo.openstreetmap.org website to see what keys and value are already " -"available in OpenStreetMap. They should try to use keys and values that " -"exist or once existed. If they have not been created before, they may invent " -"keys and values of their own." -msgstr "" - -# cc5538eae0fd4e9fa23cff84a2a5a750 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:515 -msgid "Laptop Module 4" -msgstr "" - -# 8f7e25ebcb4f4bb3a9d332c1cca00d68 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:527 -msgid "**Making Your Own Preset File 45'**" -msgstr "" - -# 6d4dc3ee3c45424d87100150cfa39d72 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:529 -msgid "Help participants install Notepad++ for use in this session." -msgstr "" - -# 15155a51bb7246729fe3a2b28aa0f6a0 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:531 -msgid "" -"Ask participants to open the *presets_sample.xml* file that has been " -"provided on USB flash disk. This file is an empty preset file provided as " -"the starting point for writing custom XML." -msgstr "" - -# 11cea4ee6e6f4740b484501fa1e2b2a3 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:535 -msgid "" -"Guide participants to make together the presets file that was previously " -"discussed. Go around and check how the participants write XML code. Fix " -"mistakes and explain them to participants. When they finish writing their " -"XML file, show how to save it and add into JOSM." -msgstr "" - -# 1e0d1f68f14446ed9d97e33c87934dae -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:529 -msgid "" -"Presentations Projector Computer/ Laptop USB Flash disk Installer Notepad ++ " -"a XML file example Module 4 XML and Presets in JOSM" -msgstr "" - -# 3cc8ee668b6942388cd74f13b8639dd8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:543 -msgid "**Adding new presets file to JOSM 15'**" -msgstr "" - -# 9fdd0283816a4a9ea11bea0672d20963 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:545 -msgid "Add presets through the \"Preferences\" menu." -msgstr "" - -# 7e42593276f84cc79485907d2c4cdec6 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:546 -msgid "" -"If participants get an error after adding their presets file into JOSM, help " -"them correct it. Usually errors happen when participants make mistakes with " -"their XML. Make sure participants are able to succesfully correct and add " -"into JOSM. Then practise tagging objects with the new menu." -msgstr "" - -# e06da0139b5445fe9c55fd87dbf154a8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:557 -msgid "Session 5" -msgstr "" - -# dad19db64d084cda85ff67f4d53eee3b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:569 -msgid "Understand the functions of the Separate Data Store (SDS)" -msgstr "" - -# 99afbe35a6ca46e2a4c5b856ea066a30 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:570 -msgid "Understand what data should be kept publicly and what should be private" -msgstr "" - -# 43491eb24b6e4842a1bf88f667310514 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:572 -msgid "Install SDS plugin in JOSM" -msgstr "" - -# 3ac5fa7df46d4a44a9cc9a3ae9aa5da3 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:573 -msgid "Use SDS presets" -msgstr "" - -# 3856eb9d60134ed58f0812dd084bc67f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:574 -msgid "Use SDS plugin for selecting public and private data" -msgstr "" - -# 02e4d70217e449d69bd30193501f5c3d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:575 -msgid "Access online datastore" -msgstr "" - -# 21ff27380d1146ac842b17bb0fb2968c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:579 -msgid "Understand how to use the SDS" -msgstr "" - -# bf603b27582f42ddb13f3af28db56e8f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:584 -msgid "**Using the Separate Data Store**" -msgstr "" - -# 442962596f104211adc7531838a967ce -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:586 -msgid "Installing the SDS plugin" -msgstr "" - -# 6a5e4ad1ebbe4b44b186e349859306e5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:587 -msgid "Using the plugin" -msgstr "" - -# 8bd8073fac1b4e1fbe4e663bb1f387d7 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:588 -msgid "How it works" -msgstr "" - -# e629db1fce5b4631982225b8edac46ff -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:589 -msgid "Accessing the datastore online" -msgstr "" - -# c5dad288e8b341699f5e8f919c06eb8b -# b3cdd8d171d5426cba83c39d6f519099 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:597 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:688 -msgid "**Introduction 15'**" -msgstr "" - -# 6edb9775481442489dbe4c29033b1be9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:601 -msgid "" -"Through games, participants should list what kind of data can be mapped " -"using a private datastore." -msgstr "" - -# b73955672c03498d8874b5b0d2e51518 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:603 -msgid "Explain reasons why data might be better as private or public data." -msgstr "" - -# 0d1dc869a24c454c93646897fdac996e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:606 -msgid "**Input 30'**" -msgstr "" - -# 62b38b8536d64a3ebeefffc8565588ad -# ae9cc7a2cbc24b7096e1d6d261d6dc76 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:608 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:695 -msgid "Explain:" -msgstr "" - -# c8a360dc7a374230a9ecbdf87b955890 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:610 -msgid "How Separate Data Store (SDS) works" -msgstr "" - -# 7dcac3cea7994925ac86539f83d46592 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:611 -msgid "The purpose of using the SDS" -msgstr "" - -# 19b181505f2e469290c0156fb9c461f2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:612 -msgid "Applications of the tool" -msgstr "" - -# 2538fac353974905a72c4fc90919071f -# 3eade64c42624fe896cc3126b4e4ae4d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:608 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:695 -msgid "Presentations" -msgstr "" - -# 0e9d305651cc49ce8c1837b30d039615 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:610 -msgid "Projector Computer/ Laptop" -msgstr "" - -# bc267263b8814f92916c823f14b774ea -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:614 -msgid "**Practice 60'**" -msgstr "" - -# 082701a93d46467f8e32703a17084d9f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:616 -msgid "" -"Show how to install the plugin and ask participants to install on their " -"computer/laptop. Edit the settings so that the SDS points to HOT's demo " -"server (sds.dev.hotosm.org)." -msgstr "" - -# a7c12fe500cb4b29ac7ef2072a2c424a -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:620 -msgid "" -"Demonstrate how to add tags to objects which will be redirected to the " -"private demo server. Participants should download a small area and practise " -"adding custom tags. Upload the edits." -msgstr "" - -# 009d871e6c6b4d0a86147370c9a07dcf -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:624 -msgid "" -"Use the sample account to access the demo data store. Allow participants to " -"explore the SDS and see the private data which they uploaded in JOSM." -msgstr "" - -# adc0322c5e1446f794e599d7f1be1331 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:628 -msgid "**Closing 15'**" -msgstr "" - -# 3d1935de9f0142ebb846053cb6f7e7f0 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:630 -msgid "" -"Discuss the session. Explain how the SDS can be set up privately for " -"organisations and users that want to maintain their own private data store." -msgstr "" - -# 1b07f28025c544cea756528d837a6397 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:636 -msgid "Common Problems" -msgstr "" - -# f69b7c0897404eef8b9780f47df586e1 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:638 -msgid "**Internet connection**" -msgstr "" - -# fb7b2e7e07cc448d9404f157c55192e8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:640 -msgid "" -"Sometimes the demo SDS has problems when many people are using it because of " -"limited bandwidth. You may need to ask participants to watch demonstration " -"rather than practising all on their own." -msgstr "" - -# 967bd0177142482e911c348d7bd40516 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:646 -msgid "Session 6" -msgstr "" - -# 8a8566644c094f0cb8d3e03c9bba12ea -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:654 -msgid "Create and edit pages in OSM wiki" -msgstr "" - -# 8cd9826ad2224844b849d5ba4f02b3de -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:658 -msgid "Make an account on the OpenStreetMap wiki" -msgstr "" - -# e1434050c15646fe989ddcda92960e25 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:659 -msgid "Understand conventions and rules in developing a wiki page" -msgstr "" - -# f357abacec0a4aa6b1fc2983c006e654 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:660 -msgid "Edit the wiki" -msgstr "" - -# f70d90f6c16c41b78faffe30893632b7 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:661 -msgid "Upload files and images" -msgstr "" - -# c0b8eeffd18e41128c7e2bff179431e1 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:662 -msgid "Translate and revise wiki" -msgstr "" - -# ae77bf4888ef441e860d56b998faad1c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:666 -msgid "Edit the OpenStreetMap wiki" -msgstr "" - -# 82043b3c7414406f9aec0336e20503bb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:667 -msgid "Understand how to contribute to OSM wiki" -msgstr "" - -# 189275f6939b4fc9808674ec74f91a56 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:671 -msgid "**Editing the OpenStreetMap Wiki**" -msgstr "" - -# f7448d0774034911b3d7b0f4e3ffd82d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:673 -msgid "OSM wiki" -msgstr "" - -# 5d01c5be07e64afa93b772d8719e1f38 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:674 -msgid "Signing up" -msgstr "" - -# 3ac96e87cc50432d9734e76743c5d8bc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:675 -msgid "Editing" -msgstr "" - -# bcdcad5c50d34bdc899d809a271a5eed -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:676 -msgid "Wiki formatting" -msgstr "" - -# 4401c29d460e4f7989932a8c18408bf9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:677 -msgid "Creating a new page" -msgstr "" - -# 9fabe773e2354af28d46b0ff7cf2c777 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:678 -msgid "Uploading files and images" -msgstr "" - -# 9590dac58b8a4ad7a039763dc5f84de2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:679 -msgid "Translating pages" -msgstr "" - -# 138d7d5262b34b659c6d786fd82cdb20 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:680 -msgid "Watching pages" -msgstr "" - -# dc2cb41dcf064ff9ae1fc9b135fcefe8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:693 -msgid "**Explain OpenStreetMap Wiki 25'**" -msgstr "" - -# 36425612feb94993b7840dbaac652c38 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:697 -msgid "What is the OSM wiki and how it can be used" -msgstr "" - -# 3486f4ec546c48cda1c550796d960338 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:698 -msgid "" -"The importance of the wiki as the main information source about anything " -"related to OSM" -msgstr "" - -# 0e31336660eb4ab7b1c36f56fd81c21f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:701 -msgid "" -"How the wiki works similar to OSM, where all users can add and edit the wiki " -"pages" -msgstr "" - -# c61b597d544b414d92d38b7247e8b0f2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:703 -msgid "" -"The importance of posting projects related to OSM and also various kinds of " -"OSM tags" -msgstr "" - -# 7778153caab345cca9d69a82403b9177 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:706 -msgid "" -"Show some important wiki pages, such as *Map Features* and *Basics of JOSM* " -"(JOSM Basic). Show how to translate pages to improve the accessibility of OSM" -msgstr "" - -# cb4223e55798482385be84de18b4098c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:695 -msgid "FGD" -msgstr "" - -# 59fb97ffa2e7481088c360faf5f2ae0e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:697 -msgid "Projector Module 6" -msgstr "" - -# beb2fd6cbc564368904cdc3f19fa4234 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:711 -msgid "**Create Wiki Accounts 30'**" -msgstr "" - -# ec42ed4d854b4e7f8f0bdaa988d868ad -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:713 -msgid "" -"Help participants to register on OSM wiki, so they can log in and contribute." -msgstr "" - -# 4991a549eded46b894bf8caf1beb2d52 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:716 -msgid "" -"Tell participants that they should sign up with the same name (account), " -"because it will help them remember their login info (which often confuses " -"users and prevents them from logging in) and it makes it easier for other " -"users to find them both on OSM and the wiki." -msgstr "" - -# 61fdd785d5b2480ebf56e83bbad23b77 -# cde2783d0cf4411caf99dae289b3595d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:713 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:724 -msgid "Presentations Projector Computer connected internet Module 6" -msgstr "" - -# c992f46c3664430382b7746e9a8447ea -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:722 -msgid "**Create and Edit OSM Wiki Page 60'**" -msgstr "" - -# dc01fd39ceb0401a922b68370165d474 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:724 -msgid "" -"Ask participants to access their user page to practise adding to the wiki." -msgstr "" - -# 9c524562ea704f6cb49d35f8b3e2100d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:726 -msgid "" -"Show how the editor works, and ask the participants to add basic information " -"about themselves to their user page." -msgstr "" - -# 3da4a9039fe24f16a21eb44c0657d112 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:728 -msgid "" -"Demonstrate how to use the buttons at the top of the editor to make the " -"formatting look better." -msgstr "" - -# 065cd674690646d889f139a8db2ad7fb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:730 -msgid "" -"Teach basic formatting. It does not need to be commplex. The important thing " -"is for participants to understand the basic concepts." -msgstr "" - -# 043d0219dd084f66ad5fd4e737ed9a5a -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:733 -msgid "Have participants create a new page entirely on their own." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/curriculum/qgis-inasafe-beginner-toolkit.po b/docs/i18n/fr/LC_MESSAGES/training/curriculum/qgis-inasafe-beginner-toolkit.po deleted file mode 100644 index acda619a..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/curriculum/qgis-inasafe-beginner-toolkit.po +++ /dev/null @@ -1,3344 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Werner Macho , 2014 -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-03-01 00:20+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 5af1ef867e6e441487627ac869d30d88 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:2 -msgid "Unit 2 Facilitator Guide" -msgstr "" - -# de92166752214aa79c790a156cd0eff9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:5 -msgid "" -"Beginning QGIS-|project_name| Trainer's Toolkit - (A Guide for Facilitators)" -msgstr "" - -# 42d09b838ac947eabf198b07ab71f4b7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:7 -msgid "**BADAN NASIONAL PENANGGULANGAN BENCANA**" -msgstr "" - -# 320cfb221446433c84a0ef3e8337d9a8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:9 -msgid "**2013**" -msgstr "" - -# abef6f409e124da38cd408f6199d4a8a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:12 -msgid "About Toolkit" -msgstr "sur le kit" - -# f848c542efc54144a682298c28dbfc09 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:14 -msgid "" -"**The Beginning QGIS-** |project_name| **Toolkit** is designed to prepare " -"trainers to deliver training for new QGIS users. The materials included will " -"prepare trainers to conduct trainings with a variety of audiences and to " -"cover common problems and pitfalls, and also provide trainers with the best " -"methodologies." -msgstr "" - -# d305ff3364ef4b399652a01d05372201 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:20 -msgid "" -"When organising a QGIS-|project_name| training, numerous factors must be " -"considered, including the length of time you have to train, available " -"resources, number of trainees and their technical skills. This toolkit will " -"help trainers prepare trainings for different types of participants, but it " -"will primarily focus on educating those with little or no experience with " -"GPS, map-making and computers." -msgstr "" - -# 43da71ea32374b2ca9702efc2968e7c2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:27 -msgid "" -"The purpose of this toolkit is to prepare the trainer to successfully train " -"workshop participants in using QGIS and analysing hazard and exposure data " -"with |project_name|." -msgstr "" - -# 1a75cf3963ea4082a303be9252860c84 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:32 -msgid "Purpose of Workshop" -msgstr "" - -# f3d00dbe71464e4d96f805a1d17e2dd9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:33 -msgid "" -"This workshop is intended to achieve the following standard and basic " -"competencies:" -msgstr "" - -# f82a11ba67814c92a45cbfac97d8f4e2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:37 -msgid "Standard Competency" -msgstr "" - -# 90ea0d442d4143a18de90c36912af245 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:38 -msgid "" -"Managing Spatial Data using QGIS and Analysing Disaster Impact Scenarios " -"with |project_name|" -msgstr "" - -# dcbd2965ac034ab1b6a1652072d1e12f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:42 -msgid "Basic Competencies" -msgstr "" - -# 4959ad2d6c834a688191b5c5eacadbae -# c4051e8697ef4361866a7b46c302d619 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:43 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:234 -msgid "Use GIS to develop scenarios for contingency planning" -msgstr "" - -# a7e78577c72a4fb3ba599310dc783c80 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:44 -msgid "" -"Understand the benefit of QGIS and |project_name| for developing realistic " -"scenarios for contingency planning" -msgstr "" - -# 2f75a7802ba64ffe8cfda3dad13346f9 -# ec136a7761c144ae90e489760a7dd1ab -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:46 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:363 -msgid "Install QGIS and understand QGIS user interface" -msgstr "" - -# db83854f89c04793b1b9cb9aa7cde66b -# 33ba9da290a842bd8f2171f58e36268c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:47 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:439 -msgid "Use QGIS plugins" -msgstr "" - -# ca2c133f0a7646248abe5f0850c74cdd -# e26d9a320f694e4b9581afb880251898 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:48 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:519 -msgid "Understand projection systems and transformation in QGIS" -msgstr "" - -# f09c3b7a06d348558f210896d171935e -# dce67955aaa947669a54035cfae0af48 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:49 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:589 -msgid "Use and understand vector data" -msgstr "" - -# 9f2bb43386dd4413b5a54adfa76d47c9 -# b5e423166ebf47a788d64d5be5f079d0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:50 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:692 -msgid "Categorise and create labels from vector data" -msgstr "" - -# 2c28d09f89fa4665b25b011dfb3b73e9 -# eb720267e1704c6a85dfc495ba1b7c94 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:51 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:752 -msgid "Use and understand raster data" -msgstr "" - -# db5f6cee48a0405d803d88841b12da1b -# 95b55294daf84110bb01e892fc255744 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:52 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:830 -msgid "Create and edit new vector layers" -msgstr "" - -# bbd14e2d0c5b426a9cb08a47e34e28ca -# 14476fec1149467694723461be0a98a2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:53 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:917 -msgid "Analyse vector data to solve problems" -msgstr "" - -# 5dc629b9b4de461fb9070430b9e66897 -# 3754d9854dee4a2bbce875de47d5bed3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:54 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1036 -msgid "Create maps with the Map Composer" -msgstr "" - -# 6292e43290a14ce88aea8cda337cd5c1 -# a9a9d9318f4f4701b392b2f674e7763e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:55 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1140 -msgid "Use |project_name|" -msgstr "" - -# 6782260831204533ad75685f0a8eb00f -# f281370abf97407dbf0db59a4a1cc5af -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:56 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1260 -msgid "Understand how to get support for QGIS and |project_name| in Indonesia" -msgstr "" - -# c69fc5d4a79e45509fe1e7ebfee8345c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:59 -msgid "Workshop Materials" -msgstr "" - -# 8e39f38ce79044338b6456fdc739ce18 -# e8988af2dd6b4f008a92ef1c3192c240 -# c456aea56d0d47e4a2fb1c1b513e5a46 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:60 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:118 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:229 -msgid "GIS for Developing Contingency Plan" -msgstr "" - -# aa5716003d5842a6b2778c4c944ca73c -# 7b12473c23234f47ab9df2e3a6ced993 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:61 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:120 -msgid "QGIS and InaSAFE in Contingency Planning" -msgstr "" - -# 77b2c0b49ab34d1f9d8fc571c13a1985 -# 088e4ca878db440b8717872d49766def -# 8057b4b249764e698b6ce096ee398417 -# ac5198d05af747cebedbac5f991f11c9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:62 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:124 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:128 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:358 -msgid "The Basics of QGIS" -msgstr "" - -# 809dfddc955b41bf968a376ef3ae480e -# 57b70abec3924cabad7ea60c59b1e1ad -# 6c0cc3d451214ed3a4a80207ef8dd2f4 -# 3da029b87d214e928c9cdf16ef135d2d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:63 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:130 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:138 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:434 -msgid "QGIS Plugins" -msgstr "" - -# cfad76fddcff4cbdab9400763405a233 -# 6f3013e9ddfb48259f6183e885cfe33b -# 54416692222245f1b093560e1f93a126 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:64 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:142 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:514 -msgid "Map Projection Basics" -msgstr "" - -# 6d0f6a3c6cc7424b95df29b2fda85fde -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:65 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:146 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:584 -msgid "Working with Vector Data" -msgstr "" - -# 884cf1faeca84ef7887489f76ead3846 -# 3c37ec70191e4c8cbfeef1dade918202 -# dd7f56181b444e3e8fc34d9a26438870 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:66 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:150 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:687 -msgid "Labels and Classification" -msgstr "" - -# ae3c074ba7d144509f5b4811b1ef65fb -# 1fe61c37484c44618cc959a17ccf5f4b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:67 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:158 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:162 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:747 -msgid "Working with Raster Data" -msgstr "" - -# d5eb27cb480c48c79b2c86ac43234259 -# 4bf05bc918134296b68f1b7bc43693e5 -# 5d5a0df1d7d14d67908245c32cf27ccb -# 839ede5a1d314d7fa5ac370e738d6029 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:68 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:164 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:168 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:825 -msgid "Creating Vector Layers" -msgstr "" - -# b51e38c104364f6cbe658a92834996c1 -# 00334b75cae1461d981643aaed3cc0bd -# 9a3e36bd87ec48e9a6eac72d3b621f43 -# 9df472f5dfe944ef9e547b07dd6a5851 -# d52e692f46624b1aa0c78fa3ef7d6a28 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:69 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:170 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:174 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:182 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:912 -msgid "Vector Analysis for Problem Solving" -msgstr "" - -# 5f7208f328f74c7583e6b4989410cdb9 -# 77dd0b2f81934fda8e22e3ac95ffa7fd -# 27223016f04344019821167061c636ed -# d668c4895fb14754916224533e2c6a17 -# 622fe54b38ba43e78de09debdc3d7b67 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:70 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:186 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:190 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:194 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1031 -msgid "Using Map Composer" -msgstr "" - -# a6ff306ea57141a380def7040f53e1c1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:71 -msgid "Understanding |project_name|" -msgstr "" - -# 6e31db17a6834255bb54cd3ebe8da0d3 -# 20f5db1e74154f8fbdde89f8417124a6 -# 37653d327d774684a12c0e2331c2f1ce -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:72 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:214 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1255 -msgid "Getting Support" -msgstr "" - -# fe35d69b66a04ca68ff7b073954dd79a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:75 -msgid "Workshop Strategies" -msgstr "" - -# ae2c61471b194e47a6d5d6c662e8f2dd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:76 -msgid "" -"Methods emphasised in this workshop are participatory teaching and active " -"participation in all sections and activities, rather than lecture method." -msgstr "" - -# 49623376c1a94efa861c70ec01f53650 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:79 -msgid "" -"**Participant oriented.** Participants are encouraged to find and gain " -"knowledge and skills by themselves." -msgstr "" - -# 7f20bbe61e5c4645b75d89abf9b49b3b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:82 -msgid "" -"**Trainers serve as facilitators.** Trainers facilitate to help ideas in the " -"workshop emerge from the participants, not only from trainers. However, " -"trainers must be ready to provide necessary information when the " -"participants need any assistance." -msgstr "" - -# 31309fb8ed87435bb560cc84e56fc4ab -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:87 -msgid "" -"**Outcome oriented.** Workshop must produce the outcomes mentioned " -"previously." -msgstr "" - -# 38cbad4c6cbb42a7ad4fc7b09ae43b5a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:91 -msgid "Tools" -msgstr "" - -# 0beee95c002241359bc59c173dae87d4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:92 -msgid "" -"Copy of :ref:`Data Analysis using QGIS and InaSAFE Beginner Level ` for participants" -msgstr "" - -# 58cf5d36d5e543b0be3a4dcd00a3c257 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:94 -msgid "A workshop space with tables and seats" -msgstr "" - -# 8a96336a851542a59e50f925b0f4eb7a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:95 -msgid "" -"Computers (one computer may be used by two participants, but it is better if " -"one computer is used by one participant)" -msgstr "" - -# a9c1cde3cadc4fd4948e30e04b485f35 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:97 -msgid "" -"A Projector (to present slide and demonstrate technical instructions and " -"software)" -msgstr "" - -# ddd7a506719e4ef6ba42bd156608668e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:99 -msgid "USB Flash drive(s) to transfer files and software" -msgstr "" - -# 29f070d4b8044921a0e4835463473410 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:100 -msgid "Good internet connection" -msgstr "" - -# 616b188db20d4cdeaf1722ad69ad16c2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:101 -msgid "Snacks and coffee for breaks" -msgstr "" - -# ca68c3c3151d498e8926910a564ac1c6 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:104 -msgid "Schedule" -msgstr "" - -# f89852e36ca54329ae85b6ec439c866d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:105 -msgid "" -"Below is an outline of a schedule for a five day workshop that has been " -"tested with several groups in Indonesia. You may choose to adapt and change " -"this workshop schedule to meet your needs." -msgstr "" - -# 7ff10021eeba43c9bd96fc21e7ed54a0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:110 -msgid "Day I:" -msgstr "" - -# 2f6b48affece433e9c2389c38298fdbc -# bf0c5a1c3aa947cc91bec1ba51f568d9 -# 9667e2bc3d22420d9f163e5428bb4693 -# fe70de206bbc4d21a5433f3a253998d2 -# 941bfdc9f5a44f928b9eb24d31922e3b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:112 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:136 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:156 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:180 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:202 -msgid "**Time**" -msgstr "" - -# 5f6eecac931c4540a5f37c8be26201f9 -# b72aff09dc314c87b296f8921ccaeb9d -# d0f506cfef3648e49a7e56a5028b6c02 -# 2bf87fbcddd34cad8c794cf179d65f28 -# 9a07b3b83fa045e089ae14fcd16974d5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:112 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:136 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:156 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:180 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:202 -msgid "**Materials**" -msgstr "" - -# 8265431e2eb94f1d8248418df29927ec -# a8a0075b89954d198bf6aa149dcaf2c1 -# 26b411ae7c3c43288c2c5272bbd8e58a -# e89c2256c6aa4c5982cd7bc1311b5310 -# 1685533f28324c9e96f33704ab5ec6b1 -# 95758f02545a4150998633211737b0f7 -# 32fab7343e304a3b815337c22fade8a7 -# 2c82f49410e34f9b989286086a599227 -# 33c976fd8af146769c00ea99c335118f -# a4dd83e7694d43f4ad838b8199fd9963 -# 47132745ae4f4a3b8422f9b5f9e0f8b3 -# 71d506b543b843b1b3272d42fd4c7bb5 -# 771c4aaeeaba405496c9451ac523b9c9 -# 30f110e6800c4e8c86151920935d6b54 -# 0f61e2bd54ee4f38abf5113139a00238 -# 5f7bb88eb7724e36892ddd467362300b -# b3d53e911a9e4258869a67df07fe2660 -# 25aa02b42be14501b84954048c0eec71 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:112 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:136 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:156 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:180 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:202 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:255 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:323 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:395 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:463 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:545 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:615 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:717 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:776 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:858 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:959 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1069 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1177 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1282 -msgid "**Activities**" -msgstr "" - -# 9c04448b98b9407da58710799d758e85 -# c58883600d3240ca92d593a0eaef1a09 -# b56842c1649a496fa6d9af925b8802b0 -# 6baf83b2ef08494da94e2e9a7046d5ff -# 03af90c05cce40daabe66955f921e04d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:114 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:138 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:158 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:182 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:204 -msgid "09.00 - 10.00" -msgstr "" - -# d4c2637b597748ab98e7f2de2cb4fdc3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:114 -msgid "Opening and building learning contract" -msgstr "" - -# 615ed71e19534b39a1f04e0ff330083a -# e22e1716adaa46919e91429cedc7334e -# 62363d50df8c4053816ed697304f2e98 -# 66d57d7466a14f64b68138506785afbf -# 9a71d142af474d1eb2cc51f4472b338b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:114 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:138 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:158 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:182 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:204 -msgid "Plenary" -msgstr "" - -# 4a4d5da287114b088e867cb97bc4856c -# 25443c4335f04aebab9a04375b0153c7 -# 6d73b70a9cfc4e4c90feb789c71157fe -# 32f5a9343c76400c8f910429df4a9224 -# 9c60d8ebc3854a898e28b13727c60222 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:116 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:140 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:160 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:184 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:206 -msgid "10.00 - 10.15" -msgstr "" - -# 6b49b643d53842d095f70055d8972d20 -# 83b53aedbf704d94bb61e807eb7d58b1 -# 52c84fd5c737472c8f622a8dfb77421e -# 2d1336aeb35c4cf481abdacc430cebd8 -# c04676712e1c492bac3b75eeb45c39ad -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:116 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:140 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:160 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:184 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:206 -msgid "Break 1" -msgstr "" - -# 47478c3ff71e4c258cfd3842379fe491 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:118 -msgid "10.15 - 11.00" -msgstr "" - -# 839df1fac1754d718643c36ab05106e1 -# 9373e9e1fe144a9789d79f2948a5ceda -# 00bc0bbe21fe489d92b2e500ea7b3e8e -# c353f415816742d2a5b11ef3f170148f -# 107ed4fba89c4ae3ae8bcff3e2887283 -# c387d3129fa34104aa0cb248e560109b -# 810d05fda06840c69a8e5e621101f1ac -# 8d4f9472ca4e4bacadaacbff4f4dfc0e -# 3d98121a74c24693b7c4fb60ba59e60f -# c7fa380dffa441d58a333d12af75d7de -# b67ddba72dd743ac883dee5e9f0bdf4a -# 5fc08b2b884c4d4e9f3faa00bd8fc923 -# 0232df1cd98143dea298a24aae90dc66 -# a76264eae88c44caafe9016859daf962 -# 2b2abdc46e9d47f1a204f1aa6b09bd80 -# b09b3e18925643d1b6777d92fe5af1a7 -# 8facd09176524ccaa921e12c78d39ac3 -# d54defc3f61649f1b9e5b649cf6028c4 -# 66724e85f4df407982e4298cee2e5cf8 -# 71b47c30e9334fa59fe141edbd907910 -# fa1e0ee17a10473f97ba99725ed2c45b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:118 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:120 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:124 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:128 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:130 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:142 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:146 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:150 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:162 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:164 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:168 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:170 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:174 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:186 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:190 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:194 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:196 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:208 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:212 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:214 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:218 -msgid "FGD and Plenary" -msgstr "" - -# 63c5b03378694aa3830e0e0137013ac2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:120 -msgid "11.00 - 11.45" -msgstr "" - -# ca9c0c64a0db4284a4c7a7dcb7de9cce -# ef31f86c2f4e4041a8246b3293223b52 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:122 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:144 -msgid "11.45 - 12.45" -msgstr "" - -# 3d238269cd024383a4779545ccd389d6 -# e99361d48c744626b7168a43c8481d60 -# 45d4cb830e54403587aa3815d171a6ab -# 55eb8026d73947718bc43428a4aedf10 -# 2e437cf2e6e045a09bf9e770f5c1ba2e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:122 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:144 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:166 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:188 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:210 -msgid "Lunch break" -msgstr "" - -# d50fe420d68b4cadb0653b417bb6a8cd -# 6ffaa54e50c7452abdac8e0eeaf6a8f2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:124 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:146 -msgid "12.45 - 15.00" -msgstr "" - -# 8a2547caa5a744c199f017430c691f52 -# e816a7babd0244c5b8ef73100cd7aad1 -# 5c342f4010e24bb688291227f381c832 -# 9def45901dfb4473a0d2121457e57784 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:126 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:148 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:172 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:216 -msgid "15.00 - 15.15" -msgstr "" - -# 6d3c4471f7a14cbe893507ce80df7cee -# a5f26dfa73a940acbf0d1b6d8ab3eeb5 -# f028f7be41004ea789c2e96c3e37d46b -# c63819112ea04b988ade31f8d03bc559 -# 1b50a86f545c423a8102c03d2f6a4e03 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:126 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:148 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:172 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:192 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:216 -msgid "Break 2" -msgstr "" - -# c180af8f16a8411180b5e724cac21e1a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:128 -msgid "15.15 - 16.00" -msgstr "" - -# 6e308882406c4eecb888d84e8a55b3e4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:130 -msgid "16.00 - 17.00" -msgstr "" - -# f36914bf90e9490a9a643f99ed09d7ea -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:134 -msgid "Day II:" -msgstr "" - -# 5cd191eb2c6348b987a2beebe23386b3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:142 -msgid "10.15 - 11.45" -msgstr "" - -# e96702ae4e914eb7bfb160919f7fdc9b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:150 -msgid "15.15 - 17.30" -msgstr "" - -# a584c1fb4c9445b0bd85366a35596b5e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:154 -msgid "Day III:" -msgstr "" - -# 5408cea6e4ca4e9a9bb08ff1f4dfd756 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:162 -msgid "10.15 - 11.30" -msgstr "" - -# 29b5d2368df84180ba7818ca8bded193 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:164 -msgid "11.30 - 12.00" -msgstr "" - -# 81385992b5854b60b089a30385283217 -# 44fc3da6da64444aba3a7147b8c8cbf9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:166 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:210 -msgid "12.00 - 13.00" -msgstr "" - -# a821ccff693848ffaeea8d647f0c0b29 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:168 -msgid "13.00 - 14.30" -msgstr "" - -# 5dbccd9076c3433ab0764060f5897c13 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:170 -msgid "14.30 - 15.00" -msgstr "" - -# 6cc3f52c8e754b7793cfeb6a3df0b5bc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:174 -msgid "15.15 - 17.15" -msgstr "" - -# b10647cbf6f44065b53ecec456b936d2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:178 -msgid "Day IV:" -msgstr "" - -# b386c796277d41a69472b1de84155add -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:186 -msgid "10.15 - 12.15" -msgstr "" - -# ebe5bd99498f4ba2a3d6fb9899b95523 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:188 -msgid "12.15 - 13.15" -msgstr "" - -# 585374bf003c497e9f1f7337dc02297a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:190 -msgid "13.15 - 15.15" -msgstr "" - -# 8a610055460343e0a2d228a420395ea4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:192 -msgid "15.15 - 15.30" -msgstr "" - -# 7a70e8c9ca1240e2a85e27c312abc27f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:194 -msgid "15.30 - 16.00" -msgstr "" - -# bd5097d61908462696b3afaaacd91719 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:196 -msgid "16.00 - 17.15" -msgstr "" - -# e090f8c344174d5eae94f8ff699b7308 -# dbeed38fbd704b46894bd354a2a844d7 -# b29ebd30a85f486f98f8dcdf225931a6 -# 40562efa521d4237ba65d510137c05de -# 8ad116f512914bde9e583577cf9e2bba -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:196 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:204 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:208 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:212 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1135 -msgid "Understanding InaSAFE" -msgstr "" - -# 56a58844096248f898ba28b83993fedb -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:200 -msgid "Day V:" -msgstr "" - -# 199623feaa534979b8b3b2ce8261c69b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:208 -msgid "10.15 - 12.00" -msgstr "" - -# 8569f546b6f24921bdef8cb46b03c386 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:212 -msgid "13.00 - 14.00" -msgstr "" - -# 72d2fbb769b5410f8ea40edbb2b28001 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:214 -msgid "14.00 - 15.00" -msgstr "" - -# 3a110da38d4c41a98a974ae03ff98ce2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:218 -msgid "15.15 - 17.00" -msgstr "" - -# 1b4da1f11b604c069ceeca443006bd12 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:218 -msgid "Workshop Evaluation and Closing" -msgstr "" - -# 2c2003fe125045868c84cc027263070b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:223 -msgid "Workshop Plan" -msgstr "" - -# c51bb0875a1c4980bc01dd4474e6899a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:226 -msgid "Session 1" -msgstr "" - -# 4ce5411014434145a250025e7cdf539c -# bf04924c99d04b108b82289a9c102ff6 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:230 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:294 -msgid "Time : 45 minutes" -msgstr "" - -# a39762d525834d809e3658421867070d -# 5aac0772daa54809abf0071a8447f712 -# 894ac8a0068e4376adc3da9d45336ff5 -# b38b50545d964303bab45b3b5d418d08 -# ba236c5893c84397b9b187e482e102a7 -# c4dc105d348f4967bc32f3760d46a586 -# 09ddbb108318411f88e7592a62cc04df -# ba39b03b6af44ae18d52033dc95f6e18 -# 1a0c3b707fbf496d909f9765298f83d8 -# 0d84b0ce90a5479e939d850155848148 -# f709c79262e84107905ced7c687dec39 -# 7af6d5edb2ec4e329ba1d285131cc596 -# 7c628cbe44784ee7b2d9547912ba26d5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:233 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:297 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:362 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:438 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:518 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:588 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:691 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:751 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:829 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:916 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1035 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1139 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1259 -msgid "Basic Competency" -msgstr "" - -# 4035714f64df47e2bfbd9683d4a245a0 -# ae6263316f264887a25cb6f48df625e8 -# 297ed035f5fe4d679f3cfa244ee67ecc -# 18ccb8cbbf494ca78bb1edd2d85d3096 -# befa35b25373441cb178d347ef7a4d4b -# 23694ef8a26c4b5aa4f186bc66424b5f -# 12b7f99346454e2a9f4504591eeb1067 -# 2901862acbc44594979ce2e8e1c0508a -# 1c50da0be6a0446a879433b0d5eff0f9 -# 5d937b0f51984781a2fee954de07c8b6 -# d62fdf5b0566462caa9a5fee3752df3f -# 48e36562023b4b0a802c2213a804b1a0 -# 53666d055a11406083b180fe8c1bf3f7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:237 -msgid "Indicator" -msgstr "" - -# 8720b6e0f9d14dfcba3f22a0495cf84d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:238 -msgid "Distinguish between data and information" -msgstr "" - -# a04b148014c946f2986f6b09a91acc6c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:239 -msgid "Understand the concept of GIS" -msgstr "Comprendre le concept de SIG" - -# 7592dc2f8c404f4cbe68749bc1a41716 -# f45f4b62242446d3a5fd79e70846483b -# 70d9df3922a54397896e3c9623d9594b -# 10a4d6f8fde9498b94e677697668b664 -# 3d720f513229493a948f87131c46617d -# 577c22d5a5bb4c5395198ed820d0d127 -# 706abd204ddd4cce9bfc1727b5ab2e1b -# 759cda4df0164badaeba79647385f477 -# 2e25d05bff784e99a2462f7150c1d6c5 -# 8ba481fe59644790853c5e65e9724b78 -# 3188d7724fd74311a1f6f0cc95af8307 -# 5841141a64204acfa51bcf203078d8d7 -# 043f4691812c4cfea59827adb55b3110 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:242 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:309 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:377 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:448 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:530 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:599 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:702 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:761 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:841 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:935 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1050 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1155 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1268 -msgid "Outcomes" -msgstr "" - -# c2daf6983c3542a58fa0f4d479c41ff4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:243 -msgid "Questions and comments about GIS and problem solving" -msgstr "" - -# f9d3d691396b4763bb0465f7631060e3 -# 0177690379f14fbc8ffcb51e7e1408c3 -# 60ca8e6fb28c4077b1bd4d2a4c590bf3 -# 788237dea5c247e28cd1aa5314133d4f -# 0e0a4309520041da9baff2f472602b7e -# 7cb23680d89e4873809afb5e975ab0cd -# 3d14e1c8370a49ad93a84abcca52c3e7 -# 81ada438dcbc48ee8161bef017f3893f -# 16a24b43f14d4cabba539cfc5a9ab524 -# fb87ee76dd754fd58466052375449604 -# 1c84801f43a7449fb4ed78ce8dda1620 -# 9e3a1f72dc064c99b12a24052af580f9 -# 172a2050817049fa9147bf231322f4ad -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:246 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:313 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:382 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:453 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:534 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:604 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:707 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:766 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:847 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:939 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1054 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1161 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1273 -msgid "Core Material" -msgstr "" - -# fe02623ddbb44f6da28795c15346aa4e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:247 -msgid "**GIS for Developing Contingency Plan**" -msgstr "" - -# eb4329e707c84a7893496fd643ad6dba -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:249 -msgid "The difference between data and information" -msgstr "" - -# aaae4353a2d64aee8b3ccdaacb2a4998 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:250 -msgid "Terminology of Geographic Information System (GIS)" -msgstr "" - -# 4b7c330ce7e342a7aa0b522a85723ee5 -# 7b31a8f675d14f09974c9d50b1e18f18 -# a3c73cbc260941229f3f279116c1000e -# 785368b2dd5c420b9ef2e38df4008903 -# 4f07cac984c24afd9eb75b4d9028f0b1 -# 8cedee594d0b4463b84c181e531c4e79 -# 3d58122189234568a6313d500df401bf -# cb639fc85472421ab8ad73c4f82cd8b4 -# 51db5e77409f4cdfb70e9cc1cdca79c1 -# 8e7b665bf08a4ff68306dad876d77e96 -# ee75d75e0fc04b32b64db4f1f2fe1e9f -# b183dfe34e9345b4877dc2153f69a33a -# d9135c115f104d7e940ed72da24f9ec1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:253 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:321 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:393 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:461 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:543 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:613 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:715 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:774 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:856 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:957 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1067 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1175 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1280 -msgid "Activities" -msgstr "" - -# a9ece85e97ec407eaac4d950ea44706f -# 475f08ffcae444f7854211f8f57a6ec3 -# d7542d6eb1de4e63b9713440356bb7be -# def01ee1b7f64ee6a50cd6f90f10cb1a -# c684cdab1a4f4521be0dd56f660b1dd5 -# b8dd829cbeb14497803fb465734a9185 -# b3eb2c7aea434c23a041b19bb464907a -# db51aa777d204030951d879b2e4f849f -# e5ef503e6b284dde801fb4fd74d26538 -# 81d3bbc8669a4f61a8f0312cd2c1a75b -# 959317dc718640e2806155107d30141c -# e338c39e4f0f4298924f5287af820287 -# 2e98d1365fa24088ac1ba02d5163cfbd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:255 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:323 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:395 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:463 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:545 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:615 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:717 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:776 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:858 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:959 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1069 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1177 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1282 -msgid "**Methods**" -msgstr "" - -# d1d6128c4597490c9b606e5b901eac83 -# 3e95885904704e35b5d4247c355a2655 -# e42750f5d85a4b139eb7c0c868ab7798 -# 16c564e42d98403787df8258d6091f02 -# 3c192debc344429dbc5049a2469dab1d -# 515bba24ce1448fda42fa8adc7ef174d -# 8d2604eddac640c98e0cea61fe7f0302 -# 5dfaae85d8ca4ebd9def4606e2812bc3 -# 5c935cbaf4c74180ab8bfc984afaa0d3 -# 4a89170040a4471eacc3cacca0232f5a -# 6cd9bab7e80a4a22be384ab68a21a3d9 -# 6b27f951c0cf47c3868c5dfda669cf41 -# da48a6d5284a4e7291743631ab7345d0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:255 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:323 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:395 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:463 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:545 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:615 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:717 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:776 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:858 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:959 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1069 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1177 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1282 -msgid "**Tools**" -msgstr "" - -# cc96121927a24aae929c50ad75b93921 -# fb3ab47900e64bb986ec3ee9ae8d57c9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:257 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1284 -msgid "**Introduction 10'**" -msgstr "" - -# 6dc0012d34124e769c6fd38cdfad5e8d -# 956921d1f7ee49dc95bd88de8fcc8b4f -# 1d05c84246c64c7ab30d0afb0daed586 -# ee078d85a2364c658150cdb4fb1108ab -# a4c96a5374e946e69b2799d7b48ee879 -# d7190a125a3144a191f7d11da4e152bd -# cd257c252c524458afaef8b24b8ab619 -# 8b8e7d1ba88041219b3560575d39001e -# badb09ff10434605a0f743c86fa3d521 -# 6591f91fdb1942b7a423cc4fa2286524 -# d69a851840f341b49fb119bf233d4505 -# a3c6b6805bdc43a99487c1b0f888196a -# 056e83e0b15b435781aee29331577b93 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:259 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:327 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:399 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:467 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:549 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:619 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:721 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:780 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:862 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:963 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1073 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1181 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1286 -msgid "" -"Explain the importance of the session, objectives, outcomes and activities " -"of the session." -msgstr "" - -# 470c65a957fe46148ddfa8058b619915 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:261 -msgid "" -"Give some questions about the OpenStreetMap beginner workshop to " -"participants. Ask participants to answer the questions in turns and other " -"participants to give input or corrections from the answer given, so a " -"discussion will develop." -msgstr "" - -# d832595fd8604e7e8e9a85a777e45651 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:266 -msgid "" -"Bridge the OpenStreetMap beginner workshop that has been given before with " -"QGIS/InaSAFE beginner workshop. Explain that OpenStreetMap is a resource for " -"spatial data which is free and open source and we can analyse it using GIS " -"software" -msgstr "" - -# dedd4d89bfd1419e87a6f503056582fa -# d175aee4a73e4d1181075b002e754a79 -# 3b551ced3cef4daba6cdcc921f6d4d50 -# 1bf5d2e37d344d9fab784ac1079d58a9 -# 4b513c4c75da4c9bad9096961ffb7d90 -# dc90f59dd1cd4799ad5cd17296b21bfc -# 5e81ffa38dbc4d05959e1d931d6606b3 -# ae83169ce10d4273b1cb95a59920f199 -# 516c1d079c38453092e326878a8cfd89 -# cc7bb6d2d00945d3a2e4f818770ceb20 -# 615cc948e7ef4d6da777038669a567f8 -# 1e8934fe11174f0a9db60b90a3b7c498 -# d3870b7cb717475e91866275774191af -# dce53750b75941ff962f521a98196243 -# 108aba400f0c43aeb0d59d4d79141506 -# a2ac166968e24a6fb28fa7be48d3bdfb -# 1c218257e0b9497e96d8bf55f152ca0d -# 954c8e26a2c54f289ca6987e02de4d28 -# 893174655de144b7bd9a6eeaaaaf12e3 -# acf4ba71dccc458eb37b909c39249d0f -# bb50db3a74494ee494a5107c21b9a572 -# 53ddbdb9681a4dcda8bf4adecd4ecf1d -# ead991d4383f4054bd980324a2bf1a49 -# 5bff3dfea1dd45569a1d063d69a132b1 -# 5da4933a4065425289a8625e36716bf1 -# 785eed7c57e644bdb07c38d9b42ce38c -# 2c0323c4de104812bbfca1e4873f3bf4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:257 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:272 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:325 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:332 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:337 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:397 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:465 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:470 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:547 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:552 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:561 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:617 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:622 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:719 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:778 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:860 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:865 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:888 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:900 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:961 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:966 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1071 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1179 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1184 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1224 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1284 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1300 -msgid "Lecture" -msgstr "" - -# e4fe2a6cb23b457cac4eac3eb157c970 -# 2183620a4b16483b9e5c02f38e5ddd2f -# e54677ecd726443dacb3388e4ef891d6 -# 4322d2a583ad4c54bdf8850070d9efcf -# 1edc603750194524bbb63cb20f15b236 -# 88d18387f8454b52b8585504f8440a3b -# f1fc1f020ad14dbb9cb92627167aa4df -# e646e1887d3b40f89a3e979d26ecee9b -# 2f3f9ea6937b4d91abc070540b627e16 -# 9b6c31bde76b498d9e4cfebb36698076 -# 28d5c5b06fd545a481f52800ca787f11 -# f0a73b05bc654d67a5145c24e4ea20c9 -# 9a3e557193c44fa0a1a5e1d91dfdab71 -# ed6e761bbe3045a0a7cb356e892f5b47 -# 8dd41eac636443b8a0e6da1daf20bc1c -# 5e76cd8f42b348c283789568c73818b5 -# 9379828c9c4247edabc8f556dcb4b8d4 -# 4090cad6abf54428b8d82f63c38225c3 -# 14a4680d32e34a8dad889f0e801f91f4 -# 264ab8f0bd7e455fa43c0ab88c0d0a7d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:257 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:339 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:397 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:465 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:547 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:552 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:719 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:778 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:860 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:961 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1071 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1179 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1184 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1191 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1205 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1215 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1222 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1229 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1284 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1289 -msgid "*Slide PP*" -msgstr "" - -# dc8e901f7a744bbcbb9a1f9fcb893bcc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:272 -msgid "**GIS for Developing Contingency Plan 30'**" -msgstr "" - -# af67052b71ee4ef890bad3910226a5ea -# e993fa063d6c463a82261afc2645088d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:274 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:340 -msgid "Explain:" -msgstr "" - -# 3406b4118c604b8ca06ae7c91bdfd4d4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:276 -msgid "The differences between data and information" -msgstr "" - -# 843ed2714f37442f90d26ce3026a937d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:277 -msgid "" -"Basic concept of GIS, GIS terminology and functions in GIS, along with " -"examples of the software" -msgstr "" - -# 6afa7f3bf7b041a6aec61f03fe84d9cd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:279 -msgid "Benefit of GIS to in contingency planning" -msgstr "" - -# 28e08769d30b4ccb94f88d5b72d81f0b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:280 -msgid "Importance of having accurate data to develop contingency planning" -msgstr "" - -# b066b4aef86b4f38a802779e72346751 -# 5a18ddc3590e494db1032cdba300c17d -# 8e86f69a59b8490f8563aad26aa54658 -# e175a07e9cbc4f33aac71047bb0ae25f -# 5fff5284a8994aa294be13db5568e58a -# 845e9dface2a40bb868b94e8162630c9 -# 81ceaecf2b3c4b54a1d5dbb642d30921 -# 934837972da1470792a00a313db1729c -# 38c068d12a154cfba5b07ad9aaa83808 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:272 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:330 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:407 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:470 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:561 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:572 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:974 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:995 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1076 -msgid "*Powerpoint* *presentation*" -msgstr "" - -# f2c91d3653534963915d6ea39116be4c -# 91a55aa39c9f4258822fa786fc23fe38 -# 5e8e530bdfa0418ea4ec875288f7f869 -# c5ccc6ffbaa34dcd96d30b36914f140d -# 16a6c849fa2d4a34929d0dda8e3142a1 -# 2bad1ec6eee14c4d9f060706ce178df4 -# 365cfaf709bb43c18600b038f55c3ded -# 77546517ed684025a0faaa7377d5b217 -# e2a336d4a3c6426c88eedcb2247feb65 -# 6c26c1d559644db08853581e09b1cebd -# 3b9b73d3c3e147c3b08eba20ae48678c -# 9ea388205a4d449f87e64aced9a264d6 -# 472c12fcb9f34173ae8f116964822556 -# df600309d6a2496c9477b3cf0de884d3 -# f5e3d28720c84139af2d37bd885c550b -# d54d0ef9f4344e899f46b2c5c0ba082d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:275 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:333 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:337 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:411 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:473 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:564 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:575 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:622 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:724 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:783 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:865 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:888 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:900 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:977 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:998 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1079 -msgid "Projector" -msgstr "" - -# 541ea7c2ad8c4867a89bc5bcbb81c069 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:277 -msgid "Module 1" -msgstr "" - -# 6905bd485d7c488cb6e0a535255ec8f9 -# f4526a87e26b4cdc8db8fa066a0f8bc8 -# b61e3365f84d4246ba539c2abb00f47d -# 702f8aa1a9ee463f9198e64135706450 -# d4031f5f9f1a4501804cc2e948379905 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:283 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:348 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:417 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:485 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:655 -msgid "**Closing 5'**" -msgstr "" - -# 006c83fb36a849eeab7e810dbdee4a10 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:285 -msgid "Ask participants to give reflections on this first session." -msgstr "" - -# 5a671fd0028a4c3a96d532001f15931d -# 7f3c82662e1e428ea59c6f17ac5318d9 -# 0f026f03439c49578b8193c04764ba17 -# a922d8c133da4f0ab9e50223246d79b5 -# 00d6af1833de4ffaa6800d0bb55a1ac1 -# 3f5f2d4908ee4d55bc4ac7b8d9fdd68b -# c30323873dd64e47b1bb63386b47aacb -# 82b3513e79324c31b416b28277fa79bb -# 01e25820925249119fd0d37cbb43d753 -# 148da8eb6cee429cb99daa5c9875e840 -# 65eae6abca62430c83703fb3cd3551b6 -# dc4adec57f5b4202804508d4ff953f7a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:283 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:330 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:339 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:348 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:417 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:485 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:567 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:655 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:904 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:968 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1186 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1302 -msgid "Q & A" -msgstr "" - -# 98222c0c38904136a7788e2fb08aa333 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:291 -msgid "Session 2" -msgstr "" - -# c325f074ad45433d8915be137ec4c04a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:293 -msgid "QGIS and |project_name| in Contingency Planning" -msgstr "" - -# 109b56a8e8b946a4b427671457dc0b56 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:298 -msgid "" -"Understand the benefit of QGIS and InaSAFE for developing realistic scenario " -"for contingency planning" -msgstr "" - -# 8683cbf9269e45ff8b63e863fd5815d9 -# e5f5366ed57e4b39bb92f6d3b5945374 -# 822a1370d0f14fc095ae08e38f00cbdd -# fbea92a9acb249c0b7291cc933dca56b -# 7a631917c2d641ccb74a0731d344f062 -# cf717656fa254030aed97b9187c09643 -# dcb1f21945ed46ed840c73ce3956c439 -# dfd84ffb9dba471ebc97526ea1dad516 -# ee50555f047e4c65b1b4665760ed14d3 -# 8b1df00986a84f4aa135f576f42e968d -# 9b964374f0fc4e5aab9979fb6530a4cd -# cb1d56f5b82148128fbecefcfc2d7635 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:302 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:366 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:442 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:522 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:592 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:695 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:755 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:833 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:920 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1039 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1143 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1263 -msgid "Indicators" -msgstr "" - -# b70bd73f10a4468d9f52fbc3f7cad139 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:303 -msgid "Understand the role of GIS for preparing contingency planning" -msgstr "" - -# e6807f7fe83a46f89d0ad43437c6941c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:304 -msgid "Understand the importance of data" -msgstr "" - -# 4cd2117369c4460d8796c0abd8789bd7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:305 -msgid "" -"Understand the benefits of QGIS/|project_name| in the development of " -"scenarios for contingency planning" -msgstr "" - -# efc491cc35ac4ac6834f1203368dd0ef -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:310 -msgid "" -"QGIS and |project_name| are used to support development of contingency " -"planning" -msgstr "" - -# 64717ef755d0421984bd93e205663f7a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:314 -msgid "**QGIS and InaSAFE in Contingency Planning**" -msgstr "" - -# 14a0f57bf2084153a53ffaa20bf7843c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:316 -msgid "GIS for Preparing contingency Planning" -msgstr "" - -# 5c39ccdd58a54ead934d6c689d41126a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:317 -msgid "The Importance of Data" -msgstr "" - -# 86305697892245dda06b5b95c1b88061 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:318 -msgid "QGIS and |project_name|" -msgstr "" - -# 4cae4dde9a114b7ebfd3bfbca9e79411 -# 3f508b5a5e26431ca01ef63f8ca8ccc4 -# 2a5b14ad51bc4dd78c5b88903b00c77d -# 685cb62d87a94683ad1e94e6cdd222ca -# 31956692fbe047f195b6c36ec8c011a0 -# 3e8ba1e1364145fc924ae220e0822c54 -# 494c0783d38a4f93a9d4fb572a5dd73b -# eedcfb0d87ae40debfcf2db233ffd57a -# 40ba37ba836f4901be944d1ff71b79ba -# 6e7276ae1d134ba9bbeac3e9eb505038 -# 8f3f6fdafc814e9b8f4219041f935661 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:325 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:397 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:465 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:547 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:617 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:719 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:778 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:860 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:961 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1071 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1179 -msgid "**Introduction 5'**" -msgstr "" - -# fcdf2e6233424ec58fe869430f2ac67a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:330 -msgid "**Understanding contingency planning 15'**" -msgstr "" - -# 5af40e5be9e14f3792c125ffed0b5e01 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:332 -msgid "" -"Before going into GIS to support contingency planning, it is better to ask " -"participants about their understanding of contingency planning. Provide some " -"review based on contingency planning terminology from BNPB." -msgstr "" - -# 414cf726d916425ea675095542c60780 -# 4b7b515cdb4c416cbc8c03ebfa709c45 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:335 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:341 -msgid "Module 2" -msgstr "" - -# d2692a12890549eeac67fa19bf28f26f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:337 -msgid "" -"**Using QGIS/InaSAFE software to support development of** **contingency " -"planning 20'**" -msgstr "" - -# 23eb0bd90c834b578956e3b28097d0dc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:342 -msgid "Terminology of QGIS and InaSAFE" -msgstr "" - -# fea3758465c345a19dbcfc38122e5980 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:343 -msgid "Why QGIS and InaSAFE is important for developing contingency planning" -msgstr "" - -# cc89e64e0faf4b81b1429fbebeff09d8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:345 -msgid "The benefit of using QGIS rather than other GIS software" -msgstr "" - -# dafc050d72e944efa2784f71c65da4d5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:346 -msgid "Mapping disaster impact using InaSAFE" -msgstr "" - -# 1fa032f080e44e2389e648b1ea656c03 -# 6321f638aeb743c1b1901cf7aa23b076 -# 5200fa5675a3471fb5ff03f0579eb0c6 -# 1a5ba7db4f6b4acda447bc384447ced2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:350 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:419 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:487 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:657 -msgid "Ask participants to give reflections on this session." -msgstr "" - -# 919109b4a0f04a54b87c42fe0660cb41 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:356 -msgid "Session 3" -msgstr "" - -# 7ca5943d9ad64c3b84bb8445143f95e0 -# e5964c9dc6ad46409bf528bf73650460 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:359 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:826 -msgid "Time : 180 minutes" -msgstr "" - -# 3f852532734248b9821ba89e3b417a50 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:367 -msgid "Download QGIS" -msgstr "" - -# 5dd9833efcde4660acba2f18ae41070d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:368 -msgid "Install QGIS" -msgstr "Installer QGIS" - -# 9b868df31de94ef28285f06bebbbae19 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:369 -msgid "Open a previously created QGIS project" -msgstr "Ouvrir un projet QGIS préexistant" - -# 48798887cdc34c1ebaad8bae4a5423d2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:370 -msgid "Understand the layers panel" -msgstr "" - -# fbf79007db1e48a29167954484d45366 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:371 -msgid "Access basic tools through the toolbar" -msgstr "" - -# 2715f74a6bac404aade5eb63adf2032c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:372 -msgid "Clean up the toolbar" -msgstr "Ranger la barre d'outils" - -# b47334aff9d54c2183f0cec4391f853f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:373 -msgid "Show a map in the map window" -msgstr "" - -# d57c3f5016324c2688264b10015fcc88 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:374 -msgid "Get information on an active map through the status bar" -msgstr "" - -# ec5d29d0a7fd42bdb758c19586877939 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:378 -msgid "QGIS is successfully installed in each participant's computer/laptop" -msgstr "" - -# 3337cb9f8e204899aec84de054bc9349 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:379 -msgid "Participants understand basic QGIS navigation and layout" -msgstr "" - -# 75e2ed6d325e4b2fa411e6bd818e3677 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:383 -msgid "**The Basics of QGIS**" -msgstr "" - -# f89efef487f74f31bacfd493795a5696 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:385 -msgid "Getting QGIS" -msgstr "" - -# 99280a10d372431eb8730ce1fcc44c53 -# 39cbfacb9ca54b5e8ffd45f1c055029a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:386 -msgid "Installing QGIS" -msgstr "" - -# 62881405fae641ab82ebe419691af107 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:387 -msgid "QGIS user interface layout" -msgstr "" - -# 8ffd92ab624d460da0967715db987fb6 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:388 -msgid "Adding vector layer" -msgstr "" - -# 252b7d052bb44f7b99a7fbea0114410c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:389 -msgid "QGIS basic tool" -msgstr "" - -# f1394d13d46e4ac1acaa0f4701be0a89 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:390 -msgid "Panning maps" -msgstr "" - -# b01f5685857541aca2b8d8592f5a6bf8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:402 -msgid "**Practice 170'**" -msgstr "" - -# e22f454d155a4b01ad07ce9d881298fd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:404 -msgid "" -"Ask participants to install QGIS which has been downloaded before workshop " -"on a flash drive. If internet connection is reliable they can download it " -"directly from http://download.qgis.org." -msgstr "" - -# 19eb91710a7748db858569ae4d55bcc2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:408 -msgid "" -"Make sure every participant installs QGIS. Guide them through the " -"installation." -msgstr "" - -# 8bfac32beec7433aa1b3f954e786cbd0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:410 -msgid "" -"After each participant installs QGIS successfully, explain the QGIS user " -"interface such as the toolbar menu, layers panel, map window and status bar." -msgstr "" - -# d846bb538b6f4729b4c1d07d12ed5de1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:413 -msgid "" -"Guide each participant to add a shapefile (already prepared) into QGIS and " -"explain the status bar under the user interface layout." -msgstr "" - -# 31fd3643c13c49e0bcecd8b6c353047a -# 5d98e09a8f874598b87d9afbefecd956 -# af32fac6ad89463dac679fbf48bf66d2 -# f98c14ffeb0e4c699cfd4edb6378a77d -# b95f6d487f3d4910bb66b145f96e48cb -# 9d563544e4e648418f24947237fa55af -# 37f4f11c9acb4d768de80ba26cc6a05b -# 9c0a0bc8ce4a45d0876c877ace63f124 -# 7a39b513c5d240b3bf596aba5b42246a -# 8c91e227ecd4424897528cae6a45f0f0 -# 256b196f10984b639ebdc14e60f4b324 -# 5e821d12824c44a2ba300a6a897217bc -# d72249f74fac42f495264c9d04773226 -# a25b9f30bc554f908e3c5e018a985701 -# b3e0e9c9174147d6b77ec968675ba518 -# 73cbf931be8843f58ea747d5bb580f17 -# 56f8cbdbd1bf43bc980f4970cb82f0ec -# 3a9f785c7dfb4a6bbf2cd49e5e1fb43f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:402 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:474 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:565 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:574 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:626 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:648 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:728 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:785 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:867 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:890 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:976 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:995 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1078 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1207 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1217 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1226 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1232 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1291 -msgid "Practice" -msgstr "" - -# 4027b3947ca94070b13525ef17cfe8f7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:402 -msgid "QGIS Installation file" -msgstr "" - -# 11475769e27c464e912eda9bc4c52105 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:414 -msgid "Module 3" -msgstr "" - -# e2fddb2323de4bdfb8110630a72a04a7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:424 -msgid "Common Problems" -msgstr "" - -# 8c5e419c21c6448a9848727a142d85a5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:425 -msgid "" -"In this session, it is possible that QGIS will not install on some computers/" -"laptops. One common problem is that a problem with sqlite shows up when QGIS " -"opened. You can solve this problem by copying sqlite file from another " -"computer/laptop that has QGIS successfully running." -msgstr "" - -# 5cebc15d17114be9936a0928c77c0f35 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:432 -msgid "Session 4" -msgstr "" - -# 31ff6a6c7cef4406a0ca8b06d9f4c9a1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:435 -msgid "Time : 105 minutes" -msgstr "" - -# 74e494f6d3e2480d937b9ebe32818d1b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:443 -msgid "Understand the concept of plugins" -msgstr "" - -# 52e4f77adc214343989201d01f5be297 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:444 -msgid "Install QGIS plugins" -msgstr "" - -# 1182428a15f246edb2e69b5c435a3895 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:445 -msgid "Add satellite imagery via OpenLayers" -msgstr "" - -# b6caac12ebcc4bc1bbb9f1212fa67ecd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:449 -msgid "Participants can add QGIS plugins based on their needs" -msgstr "" - -# 6bdb4c1fcc1e4a2dbc2bee07c123659e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:450 -msgid "Participants install and use the OpenLayers plugin" -msgstr "" - -# c1366a694622433fa2a344e84777f22e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:454 -msgid "**QGIS Plugins**" -msgstr "" - -# a83f93e515024dd980200500e66c6cab -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:456 -msgid "Plugin setup" -msgstr "" - -# 7c6cf38d81ab4c06a3005ad78c168211 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:457 -msgid "Installing plugin" -msgstr "" - -# caa6f32ad65d40b98cca9a935495895f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:458 -msgid "OpenLayers plugin" -msgstr "" - -# e0a3b682f4164c7790e56e55a1c4250a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:470 -msgid "**Demo and Practice 80'**" -msgstr "" - -# 88d5ca2723d848819c8d02631d155fc7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:472 -msgid "" -"Explains the idea behind plugins. Show some examples of plugins. Explain how " -"plugins work in QGIS." -msgstr "" - -# 5730e111838d44c282d25cc1e3503f53 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:475 -msgid "" -"Show how to install a QGIS plugin, explain the QGIS plugin menu and make " -"sure every participant practices it." -msgstr "" - -# 094a4cb81baa4db396c31fed55e67409 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:478 -msgid "" -"Ask the participants to download the OpenLayers Plugin. After installing, " -"ask participants to use the plugin. One thing to remind participants is to " -"not use Google imagery with OpenStreetMap because the license is commercial." -msgstr "" - -# 051e2a9a84084c4284b157ebdd84380a -# 769c0f6de9e0436aa1bf2752793a3421 -# 8bc1111dbf7348a59d9cd3bebdb288b3 -# 7bf80316edb84df1a0dd24c71cc25831 -# 9b992b653ab54f77acf4f314bb4eeff7 -# fc51cc758f0947f08d3fdcad1f5c2249 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:472 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:563 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:572 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:624 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:724 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:726 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:783 -msgid "Demo" -msgstr "" - -# 5c9f75cb57d647939aeab8a2ab6c891b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:475 -msgid "Module 4" -msgstr "" - -# 3670225b1cfd477dbffa9c24c87db753 -# 73c06ca82dea454a8a6fe394858ca9eb -# a9d7208fdab84deaa54e09401987bc46 -# 5f11dc8532b74c2a9494d1a46547b6ee -# a422068f48324ea5b6ff11ec94126193 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:492 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:662 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:811 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1014 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1121 -msgid "FAQ (Frequently Asked Questions)" -msgstr "" - -# fef5c1a7d9fb47ae87e00accc858202c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:494 -msgid "**What should we do if the plugin installation fails?**" -msgstr "" - -# ee3fb616d7fc4f5984302e601ce4d115 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:496 -msgid "" -"This can be caused by a poor internet connection. An internet connection is " -"needed during plugin installation, especially if the plugin file is big like " -"|project_name|. If this is a major problem, it can be addressed by preparing " -"the plugin file on a flash drive. Then copy the plugin to :file:`C:" -"\\Users\\Computer\\.qgis\\python\\plugins`." -msgstr "" - -# fe00d4affc4b438599bfe1e0de108791 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:503 -msgid "**What if the Fetch Python Plugin menu is not available?**" -msgstr "" - -# 78dee1af173a465e93de06d3d73d3cd1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:505 -msgid "" -"Open the settings from the *fetch python plugin* options menu. Tick the box " -"next to *check for updates* on startup which should add a list of new " -"plugins automatically." -msgstr "" - -# 8143b554a2784a719e9d24722ad49316 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:512 -msgid "Session 5" -msgstr "" - -# 9dcf26d65cb94abd85c4d4bbf6ae5f44 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:515 -msgid "Time : 90 minutes" -msgstr "" - -# c09b746ccb834b89acfa28753ea051a4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:523 -msgid "Understand Coordinate Reference Systems (CRS)" -msgstr "" - -# 179eb0f8a0994975b50168d1a852b8f8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:524 -msgid "Identify the CRS of a vector dataset" -msgstr "" - -# 73bc522c8dfa44809a8129659c68e46f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:525 -msgid "Do 'on the fly' reprojection" -msgstr "" - -# 5ddf7a51ce4f42238e57c2d1b77c4424 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:526 -msgid "Save dataset with a different CRS" -msgstr "" - -# a92a8a8e0aeb4d0f99bb41c1bd0d9248 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:527 -msgid "Create a custom projection" -msgstr "" - -# afe76342bba143c4a86c8f363d08d260 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:531 -msgid "Participants can change and create different projection systems" -msgstr "" - -# 34e6459f810b44e0823822c8004de599 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:535 -msgid "**Map Projection Basics**" -msgstr "" - -# e14ba63202d749a4b73052eb1315d78c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:537 -msgid "Coordinate Reference Systems (CRS)" -msgstr "" - -# d3fdf8ffd9224b2c9af6f1c8ce9984f0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:538 -msgid "“On the fly” reprojection" -msgstr "" - -# 1ed16af7c3e34ef5b50e3f1bff3ee970 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:539 -msgid "Dataset with different CRS" -msgstr "" - -# bf0d563c82da46ce94db101359380fe8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:540 -msgid "Defining a custom projection" -msgstr "" - -# 788a57dd47fd45e6bcd4c50f617a2639 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:552 -msgid "**Lecture and Discussion 15'**" -msgstr "" - -# 36a62655d1e540d7992eddde9ff003c7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:554 -msgid "" -"Explain projection systems and the difference between the use of UTM and WGS " -"84 in Indonesia. If the participants are not familiar with projection " -"systems, you should slowly explain and give examples of its use in the real " -"world." -msgstr "" - -# 0998c69a2edd45e399ab81a67ab6b636 -# 126341674a5045f5a84593434edc0e7e -# d37ad8dacd8547629ed3ab899993eb0d -# 420d9d94084b410a93c2ceabfc2390b2 -# 64423e8e755d4cf49c4ee58f7fc57bd8 -# 3f41002faf2840d1b66eface22f638e7 -# 8fe05931e2bc4a808169ea3d44981c6b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:554 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:735 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:804 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:902 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1008 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1115 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1246 -msgid "Discussion" -msgstr "" - -# 79b89e8930f44a3d92d3a7a3797e79f9 -# 3561b7657afe4f38a0ea9eb2b77ef04d -# 4d1b15b77adc41acb9e3950a585054ae -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:554 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:566 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:577 -msgid "Module 5" -msgstr "" - -# 7f3a96afb43d4f2d9e8635a9a8feee5b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:561 -msgid "**Demo and Practice 35'**" -msgstr "" - -# e670c75653db4e2fbe05aa1685b07a06 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:563 -msgid "" -"Explain how to change the CRS of a map and activate the \"On the fly\" " -"reprojection" -msgstr "" - -# b625a1e3df224692921a905c460c1619 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:565 -msgid "Explain how to save vector data into another projection system." -msgstr "" - -# fc5907e0c884439f88f3181db9af4399 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:567 -msgid "" -"Challenge the participants to make a projection system in QGIS, and ask them " -"to explain why they chose that projection system." -msgstr "" - -# c38da51fd9bc4b978bfa40bdb0213c14 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:572 -msgid "**Demonstration and Practice 35'**" -msgstr "" - -# 48185b7781bd4d038a155cc38ea3bd2d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:574 -msgid "" -"Explain how to make a custom projection system. Participants should follow " -"along." -msgstr "" - -# 2a5aa19b43ad44c5be9af16578690c4f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:582 -msgid "Session 6" -msgstr "" - -# 1f3b24c8127d46b7bfe6187c2ef74c15 -# c7ccb03b4c7e4e178b619b9c7568d7dd -# d7b0a8531f8a47f88325c32d272da11a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:585 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:688 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:748 -msgid "Time : 135 minutes" -msgstr "" - -# 6427919e4deb4a638d7d73b115f3437f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:593 -msgid "Understand vector data" -msgstr "" - -# ddef873dee3c4be298db7868213f9c32 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:594 -msgid "Identify attributes of vector data" -msgstr "" - -# db3dfdd09eec4b8d87fd6bb1fedff9c0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:595 -msgid "Add vector layers" -msgstr "" - -# 696b1616f3c04ce3bc6755403f338e9c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:596 -msgid "Symbolise vector layers" -msgstr "" - -# 9420599cb460414c9fdf451bf1cb0b99 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:600 -msgid "Understand how vector data works" -msgstr "" - -# 9497712d67f84bddbab88597d8faa6d0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:601 -msgid "Add and symbolise vector layers" -msgstr "" - -# 95168b66cb1a490b852a67d02c27e34e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:605 -msgid "**Working with Vector Data**" -msgstr "" - -# ecac7742b5ed4af5854fe3dc759d8982 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:607 -msgid "Vector data" -msgstr "" - -# 478e23b560034a5882315268201cdebf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:608 -msgid "Data attribute" -msgstr "" - -# 8c68d9cc066f4b2ead067928d555876f -# 3a16f765686746188032f8b440b4d81d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:609 -msgid "Add vector data" -msgstr "" - -# ac315a776c4d4cbd854760a96f59448c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:610 -msgid "Symbology" -msgstr "" - -# d8fad6ce31e844888badf5266c69c0d5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:617 -msgid "Projector Computer" -msgstr "" - -# 7cbc6312150b4385a90408c300cced0e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:620 -msgid "Participant" -msgstr "" - -# aa419fd15af24bd3ab0fbe8bf691893a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:622 -msgid "**Vector Data 75'**" -msgstr "" - -# c4d53c071c2146e8addd33fcf67e0301 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:624 -msgid "" -"Explain what is vector data and examples of file formats. After explaining " -"the theory of vector data, open sample file containing vector data in QGIS " -"and show data points, lines and polygons." -msgstr "" - -# 6789646294784b5592493e807a9bfbb9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:630 -msgid "" -"Demonstrate how to open vector data in QGIS. Guide the participants to open " -"a sample file that contains vector data on each computer." -msgstr "" - -# 9152edd9a3094b40acddb17d6487147a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:634 -msgid "" -"Demonstrate how we can identify the attributes in the vector data and then " -"let participants explore the contents of data attribute vector points, lines " -"and polygon for approximately 5-10 minutes." -msgstr "" - -# 7c65b3d325894b808975f428a0e55f99 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:638 -msgid "" -"Explain how vector data works in QGIS. Show how to change the symbols into " -"symbols or shapes we want." -msgstr "" - -# 9fe3f1194b904500800f0b27a5503fed -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:641 -msgid "" -"Show that the appearance of symbols may differ at different magnification " -"levels. Explain that it is important because we do not want to see messy map " -"symbols when too many objects appear, especially if we have a map with a " -"small scale." -msgstr "" - -# f688b8b61fdd4bd8a6dce0c8e29a08a4 -# 5f14b369ff614496a77cc2d5437e59a5 -# ed21561b33724edf975625df442663d0 -# 3bae3bf883c24361861761ba32e8b6b7 -# 43cc286d60004bd99cbff180e173047b -# 746d177dcfb2434e9555c84a408e201f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:624 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:726 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:735 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:785 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:867 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:890 -msgid "Participant's Computer" -msgstr "" - -# e5c5afe3ea4845fe8d544024602f3a00 -# cee69ad336f64106848ad60142642a18 -# 1a2b9fa994234d4a9e4b34cf56cce645 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:627 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:729 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:788 -msgid "File containing vector data" -msgstr "" - -# 112a29eeece540fc915fa9fe7395dda9 -# 9ae04f37a9144b3baec30dc25b751756 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:631 -msgid "Module 6" -msgstr "" - -# c468a33c35934a12b234e369e2373814 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:648 -msgid "**Test 40'**" -msgstr "" - -# a366ef7d2f104c8e89ea5f8f7553007c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:650 -msgid "" -"Allow about 30 minutes for the participants so that they can practice " -"independently in setting symbology of vector data. Ask participants to " -"evaluate their partners' work." -msgstr "" - -# 3a6c1a065c57487e821c00d738369f5a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:664 -msgid "" -"**When adding vector data, why doesn't my vector data show up in the Open " -"dialog?**" -msgstr "" - -# df2a9d5436464f318daed6f2f7871644 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:666 -msgid "" -"Sometimes participants find it difficult to distinguish between the buttons " -"to open vector data and raster data (because they are next to one another). " -"Make sure participants click the correct button." -msgstr "" - -# e192d41389a34e4bafe8ce79d24f277f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:670 -msgid "" -"**When adding vector data, why is there some data that does not appear on** " -"**the QGIS display?**" -msgstr "" - -# 2c51728395b0439eba099d5d6643981e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:673 -msgid "" -"Check the order of the data layers in the Layers panel. Polygons should be " -"at the bottom, followed by the lines, then the points at the top. Often one " -"layer may overlap another layer." -msgstr "" - -# 778fb495054b4960a8d3f6c6943bc437 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:677 -msgid "" -"**Sometimes when using the Identify tool, the attribute window does not " -"appear when we click on an object. Why?**" -msgstr "" - -# 073d963560b14ee4b9e073b80ba7a351 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:680 -msgid "" -"Check that the vector data layer is selected in the Layers panel before " -"clicking on objects to identify." -msgstr "" - -# 8d0dd07a84d043de91886ddeac9a65bf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:685 -msgid "Session 7" -msgstr "" - -# 516525b7452943ad94ae7ddaf3f8a132 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:696 -msgid "" -"Explore attribute data of an object attributes and understand the uses of " -"different types of data" -msgstr "" - -# b417c8a75ff743f2b5cc26e7765df572 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:698 -msgid "Add labels to vector layers" -msgstr "" - -# 5fef0bca1e9a4400bd894e20f99f8d12 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:699 -msgid "Symbolise vector data using categories" -msgstr "" - -# feffc95f2c3c49099933d8197961c5c9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:703 -msgid "Add labels to vector features" -msgstr "" - -# b2aaf49b92ea49f6b9bc0efb55489018 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:704 -msgid "Symbolise data using categories" -msgstr "" - -# b01c13b91e5a4751b2220d8fe8930868 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:708 -msgid "**Labels and Classification**" -msgstr "" - -# 760d456a529f4ff7b2c8d003dc23e456 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:710 -msgid "Data attributes" -msgstr "" - -# e20937c283de4ab6adcca1c96af0faf6 -# e0d7fcab7a9e4b3f9c9c65e1fbc43a6b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:711 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:770 -msgid "Tool label" -msgstr "" - -# c99c874f8e3248b6b2ccf426285b9855 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:712 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:771 -msgid "Classification" -msgstr "" - -# 0d47cb9754754352b37eff266451b006 -# 189fed7ce7e24d1d96899f9480b188c3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:724 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:783 -msgid "**Demo and Practice 100'**" -msgstr "" - -# 691f282c793d448485fa526a7068178f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:726 -msgid "" -"Demonstrate how to add labels to vector layers. Participants should follow " -"along." -msgstr "" - -# b414bcc3c1c0453fb1ab62dec252628b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:728 -msgid "Demonstrate how to symbolise features by categorising them." -msgstr "" - -# 2ff3258b5c2a4d76996db1209859754c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:733 -msgid "Module 7" -msgstr "" - -# ea8d85bb2f4c4fbf8dde174f2c2d03bf -# 0fe98106ca8b47159c680a2ac0929582 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:735 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:804 -msgid "**Closing 30'**" -msgstr "" - -# 119e14ce1b314c1f887f3412d4142219 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:737 -msgid "" -"Give a conclusion of this session. Ask participants to ask questions about " -"the material provided, so that the discussion can go well." -msgstr "" - -# a23b894ec7fd4ffbb7981c276047c136 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:738 -msgid "Projector Microphone Module 7" -msgstr "" - -# 4f05077825cb4b1a86b5f368f184ee13 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:745 -msgid "Session 8" -msgstr "" - -# 10680a362c4040d9b275f5845d483fee -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:756 -msgid "Create raster data" -msgstr "" - -# cfbd36e064584bec9c450d83ebf41d32 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:757 -msgid "Change raster symbology" -msgstr "" - -# 963bb68ae5e24ec4aedb7594ca2cad4e -# 7441f8bd7f02490c8bf3ca26de6fb238 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:758 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:763 -msgid "Perform terrain analysis" -msgstr "" - -# 9a17d29b36164218a898e5cca25101cf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:762 -msgid "Understand how to change raster symbology" -msgstr "" - -# a4bf685201654dc485162c3a14180f29 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:767 -msgid "**Working with Raster Data**" -msgstr "" - -# 05e6f74c38064435bc6b8fe2a128c4d5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:769 -msgid "How to load raster data" -msgstr "" - -# 32a16285e90043a49c86ec5efb548c20 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:785 -msgid "" -"Use the raster example file that is given to participants. Reiterate what is " -"the difference between raster data and vector data." -msgstr "" - -# 3ef9fd38f0ae440c88cc88cbf261fa7c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:788 -msgid "" -"Show how to open and identify raster data in QGIS. Remember when showing " -"raster and vector data at the same time the vector layers should be above " -"the raster data to be visible." -msgstr "" - -# d31af584b55e4c72b06aa379a8c970da -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:792 -msgid "" -"Change the raster symbology to make it more easily understood. Make the " -"symbology as in the module text. If you want to change the symbology of " -"raster data it will be better if the raster data has been given symbology " -"before." -msgstr "" - -# 2d4c8a0c8c084d17872e48604cd70246 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:798 -msgid "Do terrain analysis and create a hillshade." -msgstr "" - -# 87d7ff5c8f0f4766908cb936627f085c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:799 -msgid "" -"Explain each step, especially if the participants have never worked with " -"raster data. Ask the participants to pay attention and practice by themself." -msgstr "" - -# 65c030c3693b4591bf29a5a22bc57adf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:792 -msgid "Module 8" -msgstr "" - -# d3be8b70de6f4dfb95872a607fba0032 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:806 -msgid "" -"Give a conclusion of the session working with raster data. Discuss the " -"outcomes with participants." -msgstr "" - -# 9019d043ef6241b199ff4482cd84919b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:813 -msgid "**How do we get raster data?**" -msgstr "" - -# f39dcfde00dc4ca48a1c2d38868570bd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:815 -msgid "" -"Raster data can be obtained from a variety of sources. SRTM can be " -"downloaded at http://dwtkns.com/srtm/. Raster data associated with " -"earthquakes can be obtained from http://earthquake.usgs.gov/earthquakes/" -"shakemap/list.php." -msgstr "" - -# 079cdcf8265643c8a32a762a1cf26862 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:823 -msgid "Session 9" -msgstr "" - -# 79cb1ecc49b746b1807ec3ad9875246d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:834 -msgid "Add a raster layer for digitising" -msgstr "" - -# ec156f2caf8448f5b425a17c1a47f7fc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:835 -msgid "Create new vector features (polygon, lines and points)" -msgstr "" - -# 5e9e32b9fe4945f3842746a24ff8db08 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:836 -msgid "" -"Digitise new vector layers by tracing a raster layer, considering topology" -msgstr "" - -# eaf3ffefa3ff4a65aa2062728cb02618 -# da565175ca764770b7d722165d96ce59 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:838 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:844 -msgid "Georeference an image" -msgstr "" - -# f09ac6619f2740248f5978dc5e559f26 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:842 -msgid "Add raster layers" -msgstr "" - -# f1b78f331aee4341ae0642fac2aedcb9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:843 -msgid "Trace raster layers" -msgstr "" - -# dc2e78a6972b47c6b4b74a45eecb83d4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:848 -msgid "**Creating Vector Layers**" -msgstr "" - -# 847a1a31484c4619ac0877ed4a96b516 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:850 -msgid "Adding raster layer" -msgstr "" - -# 203fa6f63700424ebfa394c8860f6415 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:851 -msgid "Creating new vector feature" -msgstr "" - -# a4a85554a7bc47ac9aa9c38a7a7e2594 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:852 -msgid "Digitising new vector layer" -msgstr "" - -# 248fe8afa58a42b5bcd3ff000dce8e53 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:853 -msgid "Georeference" -msgstr "" - -# 6ec0f87f41e3481bb1ec04f8824e97b3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:865 -msgid "**Creating New Vector Data Practice 80'**" -msgstr "" - -# 2a679cc434024dd7b33aa72b392fc8dc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:867 -msgid "" -"Explain that QGIS can also be used to digitise data. However, explain that " -"the weakness of digitising through QGIS is that data is more difficult to " -"share, unlike OSM." -msgstr "" - -# ed77fff6a0c4474cb7b35ae43a84b1ba -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:871 -msgid "" -"Explain also that things that can not be digitised in OSM can be digitised " -"in QGIS, such as flood- prone areas or KRB areas. Vector data like this will " -"be used for analysis in InaSAFE." -msgstr "" - -# a7db0b2ed7534c20b777dd3556654829 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:875 -msgid "" -"Show how to digitise and the differences between digitising in QGIS and " -"JOSM. Use the raster GeoTIFF file that has previously been given to the " -"participants to do the digitisation process with QGIS." -msgstr "" - -# c796de1da7f44fe1a5d42eb5809c4110 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:879 -msgid "" -"After that, participants may be asked whether they can digitise a map with " -"image formats such as JPEG or PNG, for example in disaster prone areas map " -"from BNPB. If no one asks, explain that if participants want to digitise " -"from JPEG or PNG maps, the map coordinates should be determined first " -"through the georeferencing process." -msgstr "" - -# 6a917b8a28174083b870a08f4d40b7aa -# c4f99bb5481241d0bc1c4a0b3bee50bf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:870 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:897 -msgid "Module 9" -msgstr "" - -# 8802f3020c1f4f1e90299ad5302986cc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:888 -msgid "**Georeference Practice 80'**" -msgstr "" - -# 8dab6401770e446d9570baa60327b6cf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:890 -msgid "" -"Give an example of a JPEG formatted map to participants and guide them to do " -"georeferencing." -msgstr "" - -# b5dd630fcc574c46a946acc50638a61c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:893 -msgid "" -"It is important to note that before digitising over another map, make sure " -"the participants know the data source and the map licence! Do not let the " -"participants digitise from commercial maps without permission in the future!" -msgstr "" - -# af9141c575ab46a3a9ac1f4cca3b727b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:893 -msgid "JPEG formatted maps" -msgstr "" - -# 741f6b4f4b384dbca344d9c28f67c553 -# d9ac2966c43142c585a678baf35fc8eb -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:900 -msgid "**Closing 15'**" -msgstr "" - -# b043eaba0eea44eca0534ba02df67c2d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:902 -msgid "" -"Guide the participants to reflect on what they have learned in this session " -"and hold a Q & A session / discussions before the giving the final " -"conclusion for this session." -msgstr "" - -# 732175eebd3f47a6b05d1c3f28753941 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:910 -msgid "Session 10" -msgstr "" - -# a2a92c773009412ba3c38e44660a96c5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:913 -msgid "Time : 210 minutes" -msgstr "" - -# 8ed865d977c049f29163607d9c989289 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:921 -msgid "Understand the GIS process" -msgstr "" - -# fc5f24e75aa74a9a8d92bd98177e54f1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:922 -msgid "Identify addressable problems" -msgstr "" - -# b3c18d6f20ce434caab1b8cbd99a9e6d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:923 -msgid "Understand data needs" -msgstr "" - -# 750c5e2efa2a4b75bfe9dd8e89867c92 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:924 -msgid "Start a QGIS project" -msgstr "" - -# 0ae84919a447427fa059d0a425fdbc2f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:925 -msgid "Analyse problems" -msgstr "" - -# 9d3c1846ee5745cd8f1630179b81b215 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:926 -msgid "Identify hazard zones" -msgstr "" - -# 94145b43d25244dd8f3133650c6e135b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:927 -msgid "Look for important roads" -msgstr "" - -# cca2d243271f460183c312a3de2d5537 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:928 -msgid "Look for medical facilities" -msgstr "" - -# 127b31e9d2a54f13bd2f1b0107b57c22 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:929 -msgid "Buffer roads" -msgstr "" - -# 27c44382fd254ebe8ded3b284a0af442 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:930 -msgid "Buffer medical facilities" -msgstr "" - -# f74ee916f829499cb7587a1a1377af8f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:931 -msgid "Analyse overlapped areas" -msgstr "" - -# e49f46c2cd9d4590a199686fffa34df2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:932 -msgid "Choose features by landuse type" -msgstr "" - -# f975c591dcdf467aad08ac76c29445c0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:936 -msgid "Conduct GIS analysis of a spatial problem" -msgstr "" - -# 79b9997221e64e5fbd42391b6c3ea51a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:940 -msgid "**Vector Analysis for Problem Solving**" -msgstr "" - -# 7d262a49df1646a59285b5726fb9b0f1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:942 -msgid "GIS Processes" -msgstr "" - -# c64ebe76e83f4e37ad649222a0389769 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:943 -msgid "Problems" -msgstr "" - -# bbc3b7011380489db822b4b9265dfa6f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:944 -msgid "Data" -msgstr "" - -# 739386d69ef64839af28db7c43a6b1db -# f32512b3fc804635a7e64781e4664dd9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:945 -msgid "Starting a project" -msgstr "" - -# d009bfffadea4ca1b82c0941f2445b3d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:946 -msgid "Analysing problems: farms and moors" -msgstr "" - -# 151bcba5757a4f17b93387dcbdb0618d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:947 -msgid "Hazard zone" -msgstr "" - -# cf319a6e88554be99624970704430b06 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:948 -msgid "Searching for important roads" -msgstr "" - -# 255c0c61b78949838c711a0226479a51 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:949 -msgid "Searching for health facilities" -msgstr "" - -# c0d9b62925a54ef2ac0be5e939924921 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:950 -msgid "Road Buffer" -msgstr "" - -# fdcf6ecc17234196b6c57f24b92d8fb5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:951 -msgid "Health Facilities Buffer" -msgstr "" - -# 91230b4a250e469da8f3668eec1c732f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:952 -msgid "Overlapped area" -msgstr "" - -# 9a117768fe4c49479197d16a6e38ae43 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:953 -msgid "Choosing farms and moors" -msgstr "" - -# ed168a3dafff4d60a24da7a21a9d12eb -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:954 -msgid "Choosing land area with right size" -msgstr "" - -# 132936174a294b819111619b9cbd7da8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:966 -msgid "**Review 10'**" -msgstr "" - -# 9d78ce6241d64a84944d9cf57d479c07 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:968 -msgid "" -"In this session you will do a review regarding the materials from the " -"previous day. You can ask a few questions to the participants about some " -"subjects or you can also ask the participants about which subjects that were " -"not clear yet for them." -msgstr "" - -# ee6d39e8ebe04852b113685bae83830f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:966 -msgid "*Previous* *materials*" -msgstr "" - -# d4c15fad1052476e94b7bb2fddd8d37f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:974 -msgid "**Demonstration and Practice 150'**" -msgstr "" - -# de8813bd415f49a5b59d1f1b02fefff8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:976 -msgid "" -"This session should start with reviewing some types of GIS analysis that are " -"provided in QGIS. Ask the participants to finish one analysis, for example " -"buffer analysis, or any other analysis." -msgstr "" - -# f1aace6055e64ef7aa6db682319ca444 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:980 -msgid "" -"The session continues with a simulation of a natural hazard happening in an " -"area where they need IDP camps, areas affected, and the requirements to find " -"a safe place." -msgstr "" - -# e51c68a36e74407d8e096f7ec49c61c5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:984 -msgid "" -"Explain that to solve the problems, they can use vector analysis in QGIS. " -"The first thing to do is to practise how to determine the evacuation site, " -"main roads, and hospital location. To determine them you can use the query " -"builder feature in module 10. After that you can determine the distance from " -"schools to roads and the range of hospitals with road buffer to determine " -"the right location for IDP camp." -msgstr "" - -# b0081262b7c1485795131adba6a28f62 -# e82d1ecae4aa4bc7b6cd6ba5937ace54 -# 6b761c1eb67346a08b384c9ab17a5e20 -# 8bbd790745074820b01f1158f4bd0100 -# 9f3df3c4a94144d5aafb93e598e92218 -# 1cb19a7d419b49c19e20634c7f1ac48c -# 36cf110d7d4040c693ec577f29480e3d -# 307cc5d1d1f441fa96b78dbe53048662 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:974 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1076 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1191 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1205 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1215 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1222 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1229 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1289 -msgid "Demonstration" -msgstr "" - -# bcf1f45a23ee49568b2c76cb9cf577d0 -# 662642abee08460a88087c7c653e53c5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:979 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1000 -msgid "Module 10" -msgstr "" - -# 1b662161c0ce40cca280f1d249105b17 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:995 -msgid "**Vector Analysis Practice 25'**" -msgstr "" - -# 44b9135a5ca046e18a29863fc034d19e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:997 -msgid "" -"This session is almost the same as the previous session. In this session " -"you'll explain more about vector analysis." -msgstr "" - -# 11d1c71735c2488abba8640b8cd35c28 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1001 -msgid "" -"Ask the participants to practice along with you. If any participants have " -"already determined the evacuation sites, you can ask them to do another " -"analysis such as practising how to determine which location is suitable for " -"farming, etc." -msgstr "" - -# 0c59bac3f843446191ae7a5cf339b050 -# aafe80c334fe480e9560ff6c461df5da -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1008 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1115 -msgid "**Closing 20'**" -msgstr "" - -# 7ec72dc536634fddbfc76ce5a0fd4b3e -# 64b0cb9295e74014bec35d04520316da -# f7e53e9af03c4dd288f7c3c5f3b3a936 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1010 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1117 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1248 -msgid "Q & A and discussion" -msgstr "" - -# 38cb44cbe9ee46c5aec0fbf9f9a83a9c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1016 -msgid "" -"**Why does my buffer result look bigger than the one shown in the example?**" -msgstr "" - -# 5c6cd4327cfb4c74a59271b0e9e998cf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1018 -msgid "" -"This happens because of the projection. It just looks different because of " -"the projection, but it is the same size in reality." -msgstr "" - -# 700eefbc90b4426d82f82548f0a91dbb -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1022 -msgid "**Why doesn't the query builder result show up?**" -msgstr "" - -# 76f7ab0a076644ca9b67a55b0d3f4d68 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1024 -msgid "" -"This is usually because of incorrect input into the query builder. Watch " -"carefully what you input into the query builder." -msgstr "" - -# 1f379316adc749959f3d4efcf669dab0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1029 -msgid "Session 11" -msgstr "" - -# 7c793d8e4b8147d2b9756eba99962d50 -# 66831e8037bd463ca498c95653c0aef0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1032 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1136 -msgid "Time : 4 hours 30 minutes" -msgstr "" - -# 944acd833752446091910131e025ec18 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1040 -msgid "Arrange map layout" -msgstr "" - -# aae0260c4a7e4d8aae50e135b6e0a078 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1041 -msgid "Add a new map" -msgstr "" - -# 03506ac1749f45fdbe1583e76ae19bfe -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1042 -msgid "Add title to a map" -msgstr "" - -# cfad1ac85b9a4297b234fcac57ba4021 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1043 -msgid "Add graphic and numeric scales" -msgstr "" - -# b43e270c9ceb44959150e6d4fb78619b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1044 -msgid "Add grid to a map" -msgstr "" - -# 77cc42c3f99442cb85289d41560e72b2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1045 -msgid "Add an inset" -msgstr "" - -# 9b9a6c2f8c9046fc8f5d49a918b56c11 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1046 -msgid "Customise the content of the legend" -msgstr "" - -# 40ea63f371754e7fb276e413c0e588e9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1047 -msgid "Export a map to different formats (pdf, jpeg, svg)" -msgstr "" - -# 6a6d68c09584472ea20156b35808b03c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1051 -msgid "Maps that are well laid out and ready to print." -msgstr "" - -# b89394d0a9644d2bb2f9591dc9ef8c1f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1055 -msgid "**Using Map Composer**" -msgstr "" - -# 8bb668789a02437fa3ca174e2927c34d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1057 -msgid "Map Composer" -msgstr "" - -# efc92b3e080c4a01b2e2f28a32684090 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1058 -msgid "Adding new maps" -msgstr "" - -# 353acf50f9834bfca7ce19b8ee252a3e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1059 -msgid "Adding a title to the map" -msgstr "" - -# 7a68d2fb62e74dc895a0b3972026022c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1060 -msgid "Adding scale" -msgstr "" - -# 7730ae304792497387eae5d6e50c5461 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1061 -msgid "Adding grids" -msgstr "" - -# 0aadf0879f0747fcb6e4696850918627 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1062 -msgid "Adding inset" -msgstr "" - -# 637768082b2644c2a859eb44f04ba222 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1063 -msgid "Adding legend" -msgstr "" - -# 1baca3e90f2049c7930769e12f437bbc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1064 -msgid "Printing the map" -msgstr "" - -# 1988e0fd92b844988ba2ad96f7fe195e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1076 -msgid "**Making a Map Layout 250'**" -msgstr "" - -# 64ec19dfcad24f66a178fca24d3eb338 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1078 -msgid "" -"In this session you will be explain how to make maps that are ready to be " -"printed using QGIS. First, you need to explain that it is important to " -"change the projection system into mercator projection system (Universal " -"Transverse Mercator/UTM) and ask participants to change all of the data " -"projections into the same projection system." -msgstr "" - -# 16385c2af27c419ca0cacdc5d1a2b946 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1085 -msgid "" -"Ask what are the basic elements that should be put into a map and show some " -"examples of good maps and bad maps. You should emphasise the basic elements " -"of maps to the participants." -msgstr "" - -# 82c7e671e06c48bb9d8c6d9cd595e55c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1089 -msgid "" -"Explain the interface of the Map Composer in QGIS. Explain the functions of " -"the toolbars and then practice inputting the data into the composer page, " -"and adjust the scale so all of the data that needs to be shown can be seen. " -"Then add a map title." -msgstr "" - -# 48d3250362a845ce846e745d5f19c6b8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1095 -msgid "" -"Add the compass rose and scale bar into the map. Explain that there are two " -"types of scale, numerical and graphical. The numeric scale uses numbers to " -"symbolise real distances. The graphical scale uses a scale bar to compare " -"distance." -msgstr "" - -# bbb9ffef42f94b5bbf3f243d6a0f1cf4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1101 -msgid "" -"The next elements that need to be added to the map are a legend, inset and " -"grid. Explain why those elements are important. The legend needs to be shown " -"because it help the map user understand the symbols contained in the map. " -"Inset needs to be shown to show the location of the map from the smaller " -"scale (for example 1:500.000 or 1:5000.000). A grid makes it easier for us " -"to determine the location through coordinates." -msgstr "" - -# 36cef9de26444632a5a72a2cbebb14e2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1110 -msgid "" -"After finishing the map, tell participants to save the print composer and " -"about the formats that they can use in the print composer, such as .pdf, ." -"jpeg and .svg, using the export feature." -msgstr "" - -# c411af8c74f140c9b4deddfdeab987b6 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1081 -msgid "Module 11" -msgstr "" - -# 95fdfcbcd4c946bd93e8f4da3b52ff9a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1123 -msgid "" -"**I put the correct numbers in the x and y intervals in the grid dialog,** " -"**but why does the grid not show up?**" -msgstr "" - -# 1d1282f1a1ec4040a0f05d8336107b8e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1126 -msgid "" -"This can occur because the map may still be using geographic projection (WGS " -"84), which is in decimal degrees. To make the x and y intervals, it is " -"better to use the mercator projection system so that they intervals are in " -"metres." -msgstr "" - -# 31fc6b708eea4e59b8a3382c1370f031 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1133 -msgid "Session 12" -msgstr "" - -# 17739fb5098b469ab0318772cb1fab37 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1144 -msgid "Understand the concept of hazard, exposure and impact data" -msgstr "" - -# 92802bef7dda4ee7b2cd97f0f61d6564 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1145 -msgid "Understand how to determine impact" -msgstr "" - -# da79b1160db34a648a06e367fb90ae28 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1146 -msgid "Understand the |project_name| interface" -msgstr "" - -# 7deb9c72137340f99ad0475f0b71356a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1147 -msgid "Add hazard data" -msgstr "" - -# d4c96f4e500149b5907e0a55ecce6e6c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1148 -msgid "Add unprocessed exposure data (vector and raster)" -msgstr "" - -# 7df4e42211804fa398fe4af4f075e721 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1149 -msgid "Use the keywords editor" -msgstr "" - -# cbce5b42f1834cd889c69d029fb756bd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1150 -msgid "Analyse impact" -msgstr "" - -# 410cad7e9ec84949a6dd37112ec2b551 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1151 -msgid "Improve |project_name| output map" -msgstr "" - -# 18329e0abaf84d99b4fc0879d5ff377f -# 007f21baca384d598353f0869adb1a0b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1152 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1158 -msgid "Save and print scenario results" -msgstr "" - -# 69d933906def441eb4570ee462ae64e8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1156 -msgid "Understand |project_name| and what it does" -msgstr "" - -# 42e024f3a92c476a8441ee51a2d8095e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1157 -msgid "Assemble an |project_name| scenario" -msgstr "" - -# aaf171782ad44a75bec1e0106c919e03 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1162 -msgid "**Understanding InaSAFE**" -msgstr "" - -# cd3328b4b7364c8e8f7cdd55382f9041 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1164 -msgid "Hazard, Exposure, Impact" -msgstr "" - -# 0f9e8ad2617f4334b9d3d687e3383a31 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1165 -msgid "|project_name| interface" -msgstr "" - -# 78a174a91a534f22a3729a3e9b2ce85a -# 703d1dd748ee42aa8f9e8d5306a6333c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1166 -msgid "Adding hazard data" -msgstr "" - -# 893a5fc0e0df416a91e5900c20743b31 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1167 -msgid "Adding exposure data" -msgstr "" - -# 84966e3efc094d9785b681dd15e72518 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1168 -msgid "Adding keyword in metadata" -msgstr "" - -# 15926096ff2e48a08f03ad9b8f72ffca -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1169 -msgid "Impact analysis" -msgstr "" - -# 79405d181fad445e99c0f51888603574 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1170 -msgid "Improving |project_name| maps output" -msgstr "" - -# 6186b180c6704d2cb129b425bc33955d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1171 -msgid "Using print button" -msgstr "" - -# bdc7a8cbdcfa490abda526fa69111fe7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1172 -msgid "Saving your work" -msgstr "" - -# 580981c09ab046e8bdd32aac80e606e7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1184 -msgid "**Lecture, Q & A 30'**" -msgstr "" - -# 0d5cebc2473c444abd2a1a3baa605c9a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1186 -msgid "" -"Ask the participants what is hazard, exposure and impact. Discuss and " -"explain each in more detail. Give examples for each definition and explain " -"how to get the relevant data." -msgstr "" - -# 46e24f63026a4227a06f49c0918f1bd6 -# 67c008e43b674178a6578485478ef6d9 -# 631541d7ccef495dab23b6b75fb0f4d1 -# 3365f5d39d40410c9af5edba71590cb3 -# a57f67817d3b4332a4260ca4512d9e95 -# 22f50cbd59f04d7ca6db5b2b8829db7e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1186 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1193 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1207 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1217 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1224 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1231 -msgid "Module 12" -msgstr "" - -# 75f16bb1620e47b8811a79bd8696cffc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1191 -msgid "**Demonstration 30'**" -msgstr "" - -# 7babc537fe0b4fb6b0e7403454da8a1d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1193 -msgid "Explain the |project_name| interface. Explain the following:" -msgstr "" - -# faa316d92130495dbb519954c351ae49 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1196 -msgid "Activating |project_name| plugin toolbar" -msgstr "" - -# 6f66801a7e164fae832b19984a549deb -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1197 -msgid "How to change |project_name| panel position in QGIS interface" -msgstr "" - -# 10d4d6149f99498f94f2136ae241c30a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1198 -msgid "" -"The question format in the |project_name| panel The panels should be " -"explained by the facilitators so that a question can be formed: *In the " -"event of* **[hazard]** *how many* **[exposure]** *might* **[impact]** ?" -msgstr "" - -# dcf1e95a3f154d5d9899d02c00774f41 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1203 -msgid "Explain the options in the |project_name| plugin toolbar." -msgstr "" - -# 5804917fb2ba4c3cb6b2c45a6da5f318 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1205 -msgid "**Demonstration and Practice 45'**" -msgstr "" - -# 64007714b8ac41b8ad25e00f519603e7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1207 -msgid "" -"Explain how to add hazard and exposure data so that it can later be analysed " -"in InaSAFE. Ask the participants to put hazard and exposure layer into QGIS. " -"After that, ask the participants to open the attribute table for each hazard " -"or exposure layer and check if the data has the right columns for |" -"project_name| analysis. If not, add the necessary columns." -msgstr "" - -# d37794e6ab6a40e98766519fe31395c9 -# 31e8382678e546e882cc780bfabfa337 -# c0c2bd368d474e118c8be15cf29af56b -# 333537508d90456e8ca3720e5a104255 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1209 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1219 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1226 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1233 -msgid "Participants' computers" -msgstr "" - -# ef14d064523246bf984f6daea58094e9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1215 -msgid "**Demonstration and Practice 60'**" -msgstr "" - -# ec44cfec4f79452186d0204a20e5ded8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1217 -msgid "" -"Explain how to use the keyword editor in |project_name| so that data can be " -"read and then ask the participants to follow along with what has been done. " -"Use the Advanced Editor to add the source of the data." -msgstr "" - -# ece9dd12d95946989eb74e7fbfd294ff -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1222 -msgid "**Demonstration, Lecture, and Practice 60'**" -msgstr "" - -# b339c58a62cf4af6adec1967cedef590 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1224 -msgid "" -"Ask participants to run an analysis using |project_name|. Describe the " -"analysis results to participants, especially about how many objects or " -"buildings are impacted." -msgstr "" - -# 4479166a34b6402697da664b8e8f954b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1229 -msgid "**Demonstration and Practice 30'**" -msgstr "" - -# 9b460da6ecf74dd28aa7c3bc37ffe557 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1231 -msgid "" -"Ask participants to improve their |project_name| analysis to be more " -"informative by:" -msgstr "" - -# 8976807d9e6f45619bbba7721460b62f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1234 -msgid "Activating OpenLayers plugin with Bing Sat as the background" -msgstr "" - -# eba8c74e70044ae3933d526af6805604 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1236 -msgid "Symbolising and labeling the data" -msgstr "" - -# b0bd0c00b9394857a337a4f1ee69920d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1238 -msgid "" -"Ask participants to print their |project_name| results and explain the " -"output from it. Output consists of two files, the map and the details of the " -"analysis." -msgstr "" - -# d1b3b6ea04344c068cb1634342dc3084 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1242 -msgid "" -"Lastly, demonstrate how to save results, having the participants follow " -"along." -msgstr "" - -# 4a919b6715274ac694cad2f6270a83d0 -# 35a80f2c4b97435da6f8b7df8a59db92 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1246 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1300 -msgid "**Closing 10'**" -msgstr "" - -# 185afa7418d84bb4b92fa5bc54a53f94 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1253 -msgid "Session 13" -msgstr "" - -# a2a92405b59b41d08c97cfe6ba034a4e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1256 -msgid "Time : 60 minutes" -msgstr "" - -# ce4387478ce643ffa48ce78ec9f0d4d3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1264 -msgid "Use social media to connect with |project_name| community" -msgstr "" - -# 33e3265247b2481985f26e6f247a8e2c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1265 -msgid "Access QGIS tutorial website" -msgstr "" - -# dba9660da28a43a0a1ec5fb3e8f2939c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1269 -msgid "Participants join the Forum Pengguna QGIS and |project_name|" -msgstr "" - -# 66ac7d891c6c40419d67d1b9453da748 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1270 -msgid "Find the QGIS tutorial website" -msgstr "" - -# 27f43af5f80c46b291a0559386547780 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1274 -msgid "**Getting Support**" -msgstr "" - -# c870b82876644b679b114efad3fd8b5a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1276 -msgid "Facebook" -msgstr "" - -# 7806a851ea9548cba89c8e2c4825d3c9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1277 -msgid "QGIS tutorials" -msgstr "" - -# fba9f397baa447359d4dc2efef1a0a75 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1289 -msgid "**Demonstration and Practice 40'**" -msgstr "" - -# 9c92435df89042f79961137f37cbac22 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1291 -msgid "" -"Show how participants can seek and get help remotely by using social media " -"in the internet. Invite all of the participants into a QGIS and InaSAFE " -"forum or group in Facebook. (Forum Pengguna QGIS dan InaSAFE)" -msgstr "" - -# c770d776513c4cd99b3f7b517ee1b4a2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1296 -msgid "" -"Show them some websites that can be useful for learning QGIS (http://manual." -"linfiniti.com) and |project_name| (http://inasafe.org)" -msgstr "" - -# 3bd3d48eac0843f9ad04ced3f8ca999d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1291 -msgid "Module 13" -msgstr "" - -# 3d807d9832934cc9bb445c46b74285d3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1302 -msgid "Give a conclusion of the whole training." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/curriculum/qgis-inasafe-intermediate-toolkit.po b/docs/i18n/fr/LC_MESSAGES/training/curriculum/qgis-inasafe-intermediate-toolkit.po deleted file mode 100644 index 794d93eb..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/curriculum/qgis-inasafe-intermediate-toolkit.po +++ /dev/null @@ -1,1387 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:38+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# c254e02426fc49beaefe07d23cbc489b -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:2 -msgid "Unit 4 Facilitator Guide" -msgstr "" - -# bea43f3eaf8941b3ad3b0c53f7570ef5 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:5 -msgid "Intermediate QGIS-InaSAFE Trainer's Toolkit - (A Guide to Facilitators)" -msgstr "" - -# b56ed44acc33494fa16ec14b15c06202 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:7 -msgid "**BADAN NASIONAL PENANGGULANGAN BENCANA**" -msgstr "" - -# 28615d066052458f8e054173ac3ff2fb -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:9 -msgid "**2013**" -msgstr "" - -# ff7a307107364f3da6118a915c8d0f71 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:12 -msgid "About Toolkit" -msgstr "sur le kit" - -# 38580ab2d2fd4ba5ad86f50f3a769347 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:14 -msgid "" -"**The Intermediate QGIS-** |project_name| **Toolkit** is designed to prepare " -"trainers to deliver training for QGIS users who previously followed the " -"beginner training. The materials included will prepare trainers to conduct " -"trainings with a variety of audiences and to cover common problems and " -"pitfalls, and also provide trainers with the best methodologies." -msgstr "" - -# 621fc2b045274c9a8085ff541d561b59 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:21 -msgid "" -"When organising a QGIS-|project_name| training, numerous factors must be " -"considered, including the length of time you have to train, available " -"resources, number of trainees and their technical skills. This toolkit will " -"help trainers prepare trainings for different types of participants, but it " -"will primarily focus on educating those with little or no experience with " -"GPS, map-making and computers." -msgstr "" - -# 227ee2cdd1674c7989706e4afbfa7d11 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:28 -msgid "" -"The purpose of this toolkit is to prepare the trainer to successfully train " -"workshop participants in intermediate QGIS and |project_name|." -msgstr "" - -# c978464a50fa4a09b92bd58b0c3fb6d3 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:32 -msgid "Purpose of Workshop" -msgstr "" - -# 3d874e02a6c54a62bd1ad0732a25a72f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:33 -msgid "" -"This workshop is intended to achieve the following standard and basic " -"competencies:" -msgstr "" - -# ba88dd4f66a74203a91809a7e889970e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:37 -msgid "Standard Competency" -msgstr "" - -# dba8573df67a44dcaafd0da0dca87262 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:38 -msgid "" -"Spatial Data Analysis using QGIS and |project_name| for Contingency Planning" -msgstr "" - -# ae020d9eea6e4e32b21acbf0776f2134 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:41 -msgid "Basic Competencies" -msgstr "" - -# 2fd173fd082241549984a3813e11ec14 -# 6055d29b17524d01bbf39156b0970b9c -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:42 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:169 -msgid "Understand QGIS concepts" -msgstr "" - -# 655bc5d3451b4efb86fae6a768a4a83d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:43 -msgid "Prepare data and keywords for |project_name|" -msgstr "" - -# c7a20db738a8408ca39526fdc0290852 -# dbd9e4ebfa7a4b41930e930802aba591 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:44 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:290 -msgid "Determine temporary IDP camp or evacuation locations" -msgstr "" - -# 8cc92d9249454ed9924bb4428c2f2a12 -# 4b89b2ec71574201ba41d899d77d030d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:45 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:354 -msgid "Plan evacuation routes based on hazard information" -msgstr "" - -# efd9c631de1947488a9205c26f33c3d7 -# e45335dba11b4b959004a3480b90b688 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:46 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:427 -msgid "Calculate damage and losses" -msgstr "" - -# ba1fbe6bb79743f891f72c8038239bac -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:49 -msgid "Workshop Materials" -msgstr "" - -# d5a418e5e09b42baabadacba4d090796 -# 4c69d424fe7945e88d3df4f0b239fa97 -# e1c0c0b31dd04b31b5d7d9e9d41f2f57 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:50 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:101 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:164 -msgid "QGIS Review" -msgstr "" - -# 016ba9d2e7b34cc5886a7c1446c09f80 -# 977d281ed47045c59d6e51af1dc0f452 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:51 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:105 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:109 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:225 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:230 -msgid "Preparing data and keywords for |project_name|" -msgstr "" - -# 822a1938f2194efdb86a2ffdadfb5595 -# fedb63e8897f447a9e4003288934774e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:52 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:285 -msgid "Determining IDP Camp Location" -msgstr "" - -# 5aa424ea26b54e4fb73a3eaaca1904fc -# 7e58385879da4f83be7b4063590cacb5 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:53 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:349 -msgid "Planning an Evacuation Route" -msgstr "" - -# b15865eb7d4649be8ae0f7e4a9512f43 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:54 -msgid "Calculating Damage and Losses" -msgstr "" - -# 77761ee69b8a4fe49ef428bcf8556508 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:57 -msgid "Workshop Strategies" -msgstr "" - -# a4bdcd1a64f640f7aff8c82b7327f29f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:58 -msgid "" -"Methods emphasised in this workshop are participatory teaching and active " -"participation in all sections and activities, rather than lecture method." -msgstr "" - -# 7d06c6c3b6fb4648be79fb1e787bc315 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:61 -msgid "" -"**Participant oriented.** Participants are encouraged to find and gain " -"knowledge and skills by themselves." -msgstr "" - -# 3f837c85c72b44c18ce8e97938515af4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:64 -msgid "" -"**Trainers serve as facilitators.** Trainers facilitate to help ideas in the " -"workshop emerge from the participants, not only from trainers. However, " -"trainers must be ready to provide necessary information when the " -"participants need any assistance." -msgstr "" - -# 99d66383a9124239a765b394406087f9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:69 -msgid "" -"**Outcome oriented.** Workshop must produce the outcomes mentioned " -"previously." -msgstr "" - -# 9875c6bd75a34199b8260aab715b2e2d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:73 -msgid "Tools" -msgstr "" - -# 5ca94bf64ab64b6cb53cce5b561a645d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:74 -msgid "" -"Copy of :ref:`Data Analysis using QGIS and InaSAFE Intermediate Level " -"` for participants" -msgstr "" - -# 000d38afe6db4c7280e54c3bbeb17cde -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:76 -msgid "A workshop space with tables and seats" -msgstr "" - -# 27918ec0f4444a6abdba8359a35ac1ef -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:77 -msgid "" -"Computers (one computer may be used by two participants, but it is better if " -"one computer is used by one participant)" -msgstr "" - -# 78c1f6d9884d46c3a9198e220f6b3ca0 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:79 -msgid "" -"A Projector (to present slide and demonstrate technical instructions and " -"software)" -msgstr "" - -# ef04a06b266c4f638828843221fc98ff -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:81 -msgid "USB Flash drive(s) to transfer files and software" -msgstr "" - -# 3b39017c886047dbaf4cb15586eee29d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:82 -msgid "Good internet connection" -msgstr "" - -# a7aa3f80348241969fb781f1722a9b4b -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:83 -msgid "Snacks and coffee for breaks" -msgstr "" - -# b4cf2305c9874de5a90072360c2dcc2e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:86 -msgid "Schedule" -msgstr "" - -# 45d434c95d144dc98d2442abaa28dc8e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:88 -msgid "" -"Below is an outline of a schedule for a three day workshop that has been " -"tested with several groups in Indonesia. You may choose to adapt and change " -"this workshop schedule to meet your needs." -msgstr "" - -# fe4ddb439e91488ea96bbaafa8dee6e3 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:93 -msgid "Day I:" -msgstr "" - -# 3b91607eca504588865a2f775294eff8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:95 -msgid "**Time**" -msgstr "" - -# 57f85cd3316f4847b281f0b5714570e0 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:95 -msgid "**Materials**" -msgstr "" - -# 1cedd960924543aab5cf2922ae71b209 -# cc3e8a4b41f843d99ccf6d31d56e24e6 -# 9476b9dfde3a49bda58b3f89243d54c0 -# f086e1edfcb9471baf4e29aa9b109edb -# 91d035e83e1c4bd48add6c5633456b66 -# 22e592ec3bfb497d993ffcd7d752f8a2 -# a23e561f24f4401d85de5b7817c21c0a -# 97baf3ab4a1a4ff6b2dd4b66f83f7979 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:95 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:117 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:139 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:192 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:259 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:320 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:379 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:467 -msgid "**Activities**" -msgstr "" - -# d580668df2e3473b843ee53a2fed7193 -# 3d596d5f759744cd876ad5ef8da4233e -# 80cb8069e06e41b58960b57c69175511 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:97 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:119 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:141 -msgid "09.00 - 10.00" -msgstr "" - -# dc161ff5e8414e889ba0cd33b1fd95e1 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:97 -msgid "Opening and building learning contract" -msgstr "" - -# 6b4abcb3464f4ab28299ef91f7ae3e42 -# 784403c02bb947b2a2502d04dd44b3f9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:97 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:155 -msgid "Plenary Session" -msgstr "" - -# 664b9bd1afb048c8a10f2fa54740a65a -# 8774eaca6ec24d6883e17773ff0432f0 -# 2f850bdaa42d40f2acaa9b69e9633cc6 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:99 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:121 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:143 -msgid "10.00 - 10.15" -msgstr "" - -# 626d0be1781f4f3abedef4b0c179df39 -# 2db3e0691efe4bd399d7b1587fc2ef24 -# 9a71fa8621f8487fa3cbb0c4fc7ba3d3 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:99 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:121 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:143 -msgid "Break 1" -msgstr "" - -# 04d6946e79fe415c9e242349b90d1b48 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:101 -msgid "10.15 - 12.30" -msgstr "" - -# e1baf2cf549a4d4d95038f68981de568 -# 745cd0440a4b4350a130cabf68925689 -# 9e75797f566d419d9fd32901c67c12d2 -# d4c1b7d5bd1042bdbc736296b44200cc -# a9b3d6677e3f4efd9dd822848723a9d4 -# 811274d0acfd4574b38242f40eef781c -# 22ff9d967cdb4936ae4eb883b7ba402a -# 56c858ad0dae4eaea07cd89e52c87a07 -# 11b79ed9876d40bdbb5c38fd1e985467 -# 90cc572bf8f94265b79a389078d90211 -# 298f6edcc7c141e5adbbc26f2b57c255 -# a7d3ce14830841f1a058d380cd8d28ac -# b46b09fde3db474791fa97f8c39c4d77 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:101 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:105 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:109 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:111 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:119 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:123 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:125 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:129 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:133 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:141 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:145 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:149 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:153 -msgid "FGD and Plenary Session" -msgstr "" - -# f11639cccea14e4abeb4511d7eebb150 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:103 -msgid "12.30 - 13.30" -msgstr "" - -# 0ae0245f647f413c9015c4049f0f717e -# 2f96af265fb1499985cf93854a266573 -# 3cfdc7e59235458b8a6046fbf7eccdce -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:103 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:127 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:147 -msgid "Lunch break" -msgstr "" - -# 4727502c454e4ce6a2a0659e277b7498 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:105 -msgid "13.30 - 15.00" -msgstr "" - -# 49ae6e8034f648ed82b83bd83ca2e1ca -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:107 -msgid "15.00 - 15.15" -msgstr "" - -# c62476f1584c498cbde24d2ba81ebfd5 -# 3e2a3c793202457c81c0e440fffac242 -# 5e2296dd439444898e4a8db09361360f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:107 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:131 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:151 -msgid "Break 2" -msgstr "" - -# d7ac7131e40b4f4ca994d3da8b754ad9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:109 -msgid "15.15 - 15.45" -msgstr "" - -# faca79a757f249a3a14b8fbe163246e8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:111 -msgid "15.45 - 17.00" -msgstr "" - -# b688a0597ca0410b83b25786341a05a4 -# b076c3f200d046608c7aa27374b84b6f -# c7201df45fdc480da0a0e71c27e8bf02 -# 4290c6a9e825445abfbf14b9c76614f6 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:111 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:119 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:123 -msgid "Planning temporary shelter" -msgstr "" - -# f6cb90828f6a480fbf03f53d28dc1d80 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:115 -msgid "Day II:" -msgstr "" - -# cc0a0bf092b148f0a3ab308a8d1135f8 -# 0685c83fb1c34db385005300ab78a4eb -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:117 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:139 -msgid "**Time** | **Materials**" -msgstr "" - -# bb8d2bb005314774b1e67e96e08f6368 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:123 -msgid "10.15 - 11.15" -msgstr "" - -# 39910eef8a844707b42ef95fa8e3156e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:125 -msgid "11.15 - 12.15" -msgstr "" - -# f273eb66c99c4fc195d1176d5dc6fd05 -# 8c898974cf3c498fb458da1039099eb5 -# 0c71b6ce1c6748758e35a75295bd1b3e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:125 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:129 -msgid "Planning evacuation route" -msgstr "" - -# 90a3418730804b12811b2eeede86fe10 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:127 -msgid "12.15 - 13.15" -msgstr "" - -# 2a21d34c0d6d4c9280cad128d00916a4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:129 -msgid "13.15 - 15.15" -msgstr "" - -# b06a09ce86614c49a5ca227f5a6c54fe -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:131 -msgid "15.15 - 15.30" -msgstr "" - -# 3bbab1f7c2604fb887e4366544f0a3b3 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:133 -msgid "15.30 - 17.00" -msgstr "" - -# b4e6f921bab5495f9002629ce621b55d -# 814a7e63eb9d4e86879a3a423f1132a5 -# 13ee0e47fd094d42b08f48cb435fcab9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:133 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:141 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:145 -msgid "Calculating damage and losses" -msgstr "" - -# cc8ad3d87aa546b1b65e33e0d1177e9f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:137 -msgid "Day III:" -msgstr "" - -# f2b12d3a4d7746708c490dca575ff7b8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:145 -msgid "10.15 - 12.00" -msgstr "" - -# b5797f491839428588c572cf2f3ae0b4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:147 -msgid "12.00 - 13.00" -msgstr "" - -# 48da44ecb0cc4174a86280e5b9374159 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:149 -msgid "13.00 - 15.00" -msgstr "" - -# 646e2393066e46ddbe93a1307848096d -# fe6f3e5f821540129393320190b8248c -# 4f9e4357e02d40d784dd112dee543271 -# d6427534b94e479aaa5fbc2852256936 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:149 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:153 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:334 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:398 -msgid "Practice" -msgstr "" - -# 6e3e8d287f01401e9b93499f9a06eab0 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:151 -msgid "15.00 - 16.15" -msgstr "" - -# d4b949b5d62e4d4c8293c1c54789b65e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:153 -msgid "15.15 - 16.15" -msgstr "" - -# 36274ca27771474c82984ff3d9f7a646 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:155 -msgid "16.15 - 17.15" -msgstr "" - -# f6c9d9dbcfc440d3a007c27a02cdb9dc -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:155 -msgid "Evaluation and closing" -msgstr "" - -# d20099b69d6e4ced860a8f3a3a5f8bd7 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:159 -msgid "Workshop Plan" -msgstr "" - -# bf1be838260f4efdb60cb26f44f2bb1a -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:162 -msgid "Session 1" -msgstr "" - -# 43601d61559745558c50bccad4abdbed -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:165 -msgid "Time : 135 minutes" -msgstr "" - -# 2a25c92d1c6c4cee8f8c95c81824c7a5 -# eba5d171edb548fe804f3491e659007a -# e0632763d56049f7b58926f6445ce5ef -# 98a358528a0c4c5c86a622110592fb1f -# e4398a40083b4bd6ae67f75a04f775ba -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:168 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:229 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:289 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:353 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:426 -msgid "Basic Competency" -msgstr "" - -# 2b8b640319d1408d94756ab6655917ef -# d425ef689e064398b65f334b5073c52e -# 7b0e204831b0454093cc9a870532a9f5 -# d4976532714a451e94411cd950a85b0d -# 3e7245ab13b94d9a8ec6a63be82ad802 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:172 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:233 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:293 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:357 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:430 -msgid "Indicators" -msgstr "" - -# 66702dabb383411a9da0bf6d83da0317 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:173 -msgid "Identify data types in QGIS" -msgstr "" - -# e1d880356f6a409f8aa15df0ab20304a -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:174 -msgid "Understand symbology" -msgstr "" - -# f1831905b79d4bf99cf9d3d83ba23856 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:175 -msgid "Understand map layout" -msgstr "" - -# ab11a5c2038c4960b483edc744f192ae -# bde62895e8234d3ebfaefaf6de515b5c -# 633496db224543d9ab4656ee17dfc21b -# d625d429deb2489f9fc4834c28c5d7b3 -# b36a153d1eb64ffbb9ca2f0fa3437d50 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:178 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:242 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:302 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:365 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:447 -msgid "Outcomes" -msgstr "" - -# d1dcd6a8c2a748c49db1412de1ed2a0b -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:179 -msgid "Understand QGIS" -msgstr "" - -# 2345b4e47db248daa3e1ffbc2c83c5b0 -# e350a9b4b12c488fa7cd8726110aee35 -# ffc143e9ce58447d98793fac75ed6960 -# 1de0be966d17460ca15c08eb2841c39d -# 77dfe0b46b2e421fb2df2df28fcab01c -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:182 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:246 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:306 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:369 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:451 -msgid "Core Material" -msgstr "" - -# c6e2417fdfed407ca49946178c158fa8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:183 -msgid "**QGIS Review**" -msgstr "" - -# fefd745aa4a14bc8a5c09ec66188ef20 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:185 -msgid "Data types in QGIS" -msgstr "" - -# c8411e069e984baf925c4ae7a16163a9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:186 -msgid "Symbolising data" -msgstr "" - -# 00ffbda8849f42f3aa6bbf18941bf975 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:187 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:205 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:214 -msgid "Map layout" -msgstr "" - -# 15a89cfac66f45a4b7df4b1287f3e1c9 -# 21a7c3b7db3643e8a8c5b53abee93386 -# cddde84c49e54b24b2877a9c9820fddd -# 44c48e7f6fbd4dc3bf1adf407375c556 -# f0981b1a9a2445049e902efcdc91365f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:190 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:257 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:318 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:377 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:464 -msgid "Activities" -msgstr "" - -# 8f34994a7cef4f35a79814df8fcf45e4 -# e33dd8e0b75e4082bc73db8dfe21b394 -# 8f1f9697728c42ed8f014fdce455b498 -# 55c724a784ec43d1a3b482fc9560103f -# 12396712d4174890ba5bb7bae684117c -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:192 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:259 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:320 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:379 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:467 -msgid "**Methods**" -msgstr "" - -# 7edb2eb018a9499f8209791b09766274 -# 041e3c683d9f451682b79410723001f9 -# 981855dde75e46d6a750e1780bac35bd -# 03057ca136ed45129c51bbdda4a68472 -# 3ba48cfb2d5c433bb33303ded30eccfa -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:192 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:259 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:320 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:379 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:467 -msgid "**Tools**" -msgstr "" - -# dd75882c2780479694c0ca2941d05fee -# 7d2809856e304f1da111b1ecfd318d35 -# d321bf9283964efcbd547d9778e9ebfe -# ac2de9db7dcb4f7eb556edb9125aa004 -# 05e6f01ea91743a8ae3afbe1529e6d84 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:194 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:261 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:322 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:381 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:469 -msgid "**Introduction 5'**" -msgstr "" - -# 7b2fac9e3ddf478d93f3628412d8b3b0 -# 09c4bbcb5fc64e90bb308a61b0d223e1 -# 5248c89d5ea2459f90ceb1361a7007a7 -# 1ff11b77ef24428d90b53cb8a1260abf -# e5e12867064a44e680aec66a70f7c6a5 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:196 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:263 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:324 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:383 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:471 -msgid "" -"Explain the importance of the session, objectives, outcomes and activities " -"of the session." -msgstr "" - -# 28b6ea51b7404eefb2fea1bb5f936885 -# e75347f90e0b47bb900ec60948f5e372 -# aba7bd5a50f54e44927f052176d9d751 -# 1f3d8f5e61cb4f5584c5306661abac24 -# b5a9a5802aba45348808c061434880c2 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:194 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:261 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:322 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:381 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:469 -msgid "Lecture" -msgstr "" - -# d1afebfb652746049606a28ea7883eec -# c7e451fdf02b459e88bcfc24cfbe1fa8 -# 952d8b205d394df2b8ef940248a8d857 -# 4a83c3fbd7cb492e9b314ea6e154da08 -# 49d280c20f754b6a93b78da68d58fec6 -# 3b446aaa331a4847b4a6a309b2c6e2a7 -# 13188737b04746d5aeb8628208bddf2c -# f49dadc6e452490ebfb50ff40937dfac -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:194 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:199 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:207 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:261 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:322 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:327 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:381 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:469 -msgid "*Slide PP*" -msgstr "" - -# 10a32a118ed644bbae8649dfa53f9c6c -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:199 -msgid "**FGD 65'**" -msgstr "" - -# 167db66b765b47e2abe0496dc560e8a8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:201 -msgid "Discuss with participants:" -msgstr "" - -# c67a04995769444cae6e7de9d2847358 -# 3b2ccb8a915340c7964693b32f9ed275 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:203 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:212 -msgid "QGIS data types" -msgstr "" - -# 8836edadc5e14b17bf390aae6e520d64 -# 7b8facac4ef04e9ca5dbebdda61ea7cc -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:204 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:213 -msgid "Data symbolisation" -msgstr "" - -# 55a0b81d655b44bd949380c1b3cc91cb -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:199 -msgid "FGD" -msgstr "" - -# 9cde7cf10c164d4c9b4e4bdc77c45515 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:204 -msgid "Module 1" -msgstr "" - -# 9269b3c220e24816a16875b80f5930fd -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:207 -msgid "**Debrief 60'**" -msgstr "" - -# f94ede158424484694f1a584adc2da38 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:209 -msgid "" -"Review this material and answer any questions and problems that participants " -"have encountered." -msgstr "" - -# 8b3252d2a8334e15a68566d4d3c2e85d -# fac4b509c54847ceb47c38d4d3e59eea -# 6151e7e3530e41eeb69a869fcf17aa85 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:207 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:266 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:327 -msgid "Lecture Q & A" -msgstr "" - -# 3135ac1f06de4b029893c3aee49a628e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:217 -msgid "" -"**Closing 5'** Ask participants to recap the session and answer any final " -"questions." -msgstr "" - -# 393743c9f6c245868fd8a7944c3f16ce -# bf65bdce27ee4e4eb1d3d981c76b163e -# 08401f3b636741f7aafc0172e4e73ec4 -# 5ffa5476faed459a8cfaccbae2758e15 -# a8bc12e48c0b4830be96fc3073b31284 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:217 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:277 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:342 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:405 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:489 -msgid "Q & A" -msgstr "" - -# e92a8e7f98b14c8dbc97895c4ff0e13e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:223 -msgid "Session 2" -msgstr "" - -# cb2af76ef3ac470aaf773fc8d036ca84 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:226 -msgid "Time : 185 minutes" -msgstr "" - -# 67a49b81989d4d9c926f47b0916905fd -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:234 -msgid "Understand |project_name| inputs" -msgstr "" - -# ebea6a341f684b82ad275d856f6c408f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:235 -msgid "Get OSM data from the HOT export server" -msgstr "" - -# 3cfc5a7593a54b8a844830206b9e8033 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:236 -msgid "Load data into |project_name|" -msgstr "" - -# d350014a82214f9cb0438276e9b26af1 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:237 -msgid "Add keywords" -msgstr "" - -# 25174bac917a4532bdb2b8998438ed23 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:238 -msgid "Prepare the hazard layer" -msgstr "" - -# a919cf777a4744799acf54aef27018f7 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:239 -msgid "Run |project_name|" -msgstr "" - -# cb39efbc4baf4f30a322e751ca576eae -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:243 -msgid "Hazard impact map based on |project_name| analysis results" -msgstr "" - -# f0b6b934cabd43989c4e0ae76db16e26 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:247 -msgid "**Preparing data and keywords for** |project_name|" -msgstr "" - -# 26880cc3c3ef406386706b31fc022f18 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:249 -msgid "|project_name| inputs" -msgstr "" - -# 22a22739ffe14c0e85786eafd08507c8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:250 -msgid "Getting OSM data from HOT Exports" -msgstr "" - -# 5e75063f7c384055a5cb0dab8d2ac1eb -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:251 -msgid "Loading data" -msgstr "" - -# 2afcfdca287640c19178d3b1cccc58ad -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:252 -msgid "Adding keywords" -msgstr "" - -# 19d6f515e1ec4ebba96ab14f7f6aac85 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:253 -msgid "Preparing a hazard layer" -msgstr "" - -# 87bf0e712a2945b398cccd3e86e54ecb -# 8941af357b1d4ef99bff76dabf09805e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:254 -msgid "Running |project_name|" -msgstr "" - -# 7310878d62e8453083854ff0dc3da3c5 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:266 -msgid "**Review** |project_name| **input data 65'**" -msgstr "" - -# 61884b3ccb7f4ee39fba655a441a673a -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:268 -msgid "Explain about preparing data and keywords for |project_name|." -msgstr "" - -# 966b3812b7e84201ba9c89d7730a649c -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:270 -msgid "" -"Show participants how to get OSM exposure data and how to use |project_name| " -"to get affected buildings" -msgstr "" - -# 2b40848f2ca1402c83666629ef5275a9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:272 -msgid "" -"Q & A session for participants to ask anything about materials. Questions " -"will be answered after presentation." -msgstr "" - -# 9ee7d272e42f46caaaa20bc80d9ca868 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:274 -msgid "" -"Challenge participants to prepare exposure and hazard data to be processed " -"in |project_name|." -msgstr "" - -# 1bc5798ede7248028a3c0c6c3e993aac -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:266 -msgid "*Slide PP* Projector Microphone" -msgstr "" - -# ffb2eca319e74beeb5486b7b3b29590f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:271 -msgid "Module 2" -msgstr "" - -# 5be7a7a1be5245d3b60146a6d0717fad -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:277 -msgid "" -"**Closing 25'** Ask participants to recap the session. Conclude by answering " -"participant questions." -msgstr "" - -# cbc4b16a0c86495ab0e85ac1e130a643 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:283 -msgid "Session 3" -msgstr "" - -# 8b9d19c3afb7481daa0f3c2a6e7eb666 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:286 -msgid "Time : 225 minutes" -msgstr "" - -# 883b908e453f44f39ae991e2830570db -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:294 -msgid "Develop criteria for determining an ideal IDP camp location" -msgstr "" - -# 5e2d49437d3a41cb822ffc9a8497181d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:295 -msgid "Use geoprocessing tools" -msgstr "" - -# 0068eaf700044dc2bd34c868e520cb4f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:296 -msgid "" -"Use various spatial queries: contains, within, equal, intersect and is " -"disjoint" -msgstr "" - -# 136f8b0eb0be4497b034e448bbf8ff38 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:298 -msgid "" -"Combine geoprocessing tools and spatial queries to select building(s) for " -"temporary IDP camps" -msgstr "" - -# c8b9f15542364cdfabf2f5c3ea081cc4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:303 -msgid "Use spatial queries to determine good IDP camp locations" -msgstr "" - -# 70b50493eb8b4773af03533d16c39df0 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:307 -msgid "**Determining IDP Camp Location**" -msgstr "" - -# a5aa7bcd8e204324921b172b8ab51791 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:309 -msgid "Geoprocessing tools" -msgstr "" - -# 17ac76857f3640f69b9c0e765d51a3cc -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:310 -msgid "Spatial queries" -msgstr "" - -# 32154beab18c4de58fd72b49b0e99e49 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:311 -msgid "IDP camp criteria and data" -msgstr "" - -# 951106dbca1f4804b07264d7e2b85341 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:312 -msgid "Criteria #1: building must be outside affected area" -msgstr "" - -# 09edef954dbb414494a00d6725653c8f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:313 -msgid "" -"Criteria #2: location must have direct access to a primary/secondary road " -"within 20 metres" -msgstr "" - -# 022867535b604801a43ee32b43e8aaf3 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:315 -msgid "Criteria #3: building must have an area of at least 225 square metres" -msgstr "" - -# 0328c0a045d24c5e9d067ec40193cdf9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:327 -msgid "**Input 105'**" -msgstr "" - -# a8a1669fcd2b4f648f57d8d047fc6c5f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:329 -msgid "Present the IDP camp scenario to participants." -msgstr "" - -# c4b032fd9fa14d50aa00f12f70bad554 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:330 -msgid "" -"Explain the process of spatial analysis for identifying IDP camps, using " -"tools such as buffer, clip, intersect, union and dissolve." -msgstr "" - -# d9060660b02c4dcfad390b9275565a7f -# 5bbd012e1e4b44cab66e04a5858c9d76 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:334 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:398 -msgid "**Practice 120'**" -msgstr "" - -# df59628164fb4f3198bba34fbf03c3f4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:336 -msgid "" -"Go step-by-step through the process of identifying potential IDP camps using " -"the sample material. Participants should follow along." -msgstr "" - -# 35b36312e46e4f35a8ac4484f4de4456 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:339 -msgid "Answer any questions participants have about the process." -msgstr "" - -# 34df53256ab544dcb4c4dfefae15ba39 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:342 -msgid "**Closing 10'** Q & A and discussion." -msgstr "" - -# bdabab143cc6463b97dd4c0b0c478805 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:347 -msgid "Session 4" -msgstr "" - -# a2ffa04b0a984bd9919d95471b1be7e4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:350 -msgid "Time : 180 minutes" -msgstr "" - -# 2f8543fc0eb4423faf72cd73ca44dc19 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:358 -msgid "Understand the concept of shortest path and fastest route" -msgstr "" - -# cabac33c7e83499792b676a990418192 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:359 -msgid "Use the Road Graph plugin" -msgstr "" - -# e3c9f9101a044cd5b1298d6f8104132e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:360 -msgid "Set up speed and road direction" -msgstr "" - -# 7495d06f6a69447e8447a24a0d221d72 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:361 -msgid "Determine start and destination points" -msgstr "" - -# 8ecb25abbabc4d70804028f9bbbbe29a -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:362 -msgid "Conduct route analysis and selection" -msgstr "" - -# 868c64c2b099462dad947b641e29cc29 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:366 -msgid "Create evacuation route" -msgstr "" - -# c40af447cace4f568507fcd05a30f290 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:370 -msgid "**Planning an Evacuation Route**" -msgstr "" - -# 51e10e6b0dac413aa77cff4968c006fb -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:372 -msgid "Road graph plugin" -msgstr "" - -# 1fd7dcf980bf472abfea6a7459c07e44 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:373 -msgid "Editing plugin settings" -msgstr "" - -# e453e1ff1c944342939c86cb4a11b7a8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:374 -msgid "Choosing start and destination points" -msgstr "" - -# 8b590558b6dd499b9acfa7d50fc091c2 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:386 -msgid "**Input 45'**" -msgstr "" - -# 7e69eb104e764800b8f379b442ebad6f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:388 -msgid "" -"Explain the process of determining a good evacuation route. Things to " -"consider are:" -msgstr "" - -# a450b409ab8e47ba834062e5a3fc0592 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:392 -msgid "Make sure the Road Graph plugin is installed" -msgstr "" - -# 8cc7373a6b0c4e97b30720c0b8a54927 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:393 -msgid "Explain Road Graph plugin settings" -msgstr "" - -# 03a0032e2e784d15b58f5c1e16e54939 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:395 -msgid "Allow participants to ask questions about the material." -msgstr "" - -# 037151e3fa6c471fa0cb12170e127a2d -# b87beaca30bf4046ad6baa6fe04adc4f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:386 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:474 -msgid "Discussion" -msgstr "" - -# 8f5bd3c6fbbb4867b56f62130bc615dc -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:386 -msgid "*Slide PP* Module 4" -msgstr "" - -# 7533c5069d0a4bd29749c3ffa81b3e9f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:400 -msgid "" -"Demonstrate how to determine the fastest route using the example data. " -"Participants should follow along." -msgstr "" - -# 9a5a32994b6540dcb1cfdff5323e1c43 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:402 -msgid "" -"Ask one of the participants to present the results of the analysis, and have " -"other participants respond." -msgstr "" - -# a26b62f2e4b04c2aa192464e989d12a2 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:405 -msgid "" -"**Closing 10'** Answer questions about the material and discuss use cases." -msgstr "" - -# bf37fdd410e346fdaa48fc7c33660587 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:411 -msgid "Common Problems" -msgstr "" - -# 3dc7122646e44114a75013d74de661c0 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:413 -msgid "**Projection**" -msgstr "" - -# 35891c4294794653807965965d15da5b -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:415 -msgid "" -"You may need to turn off 'On the Fly' projection in order to use the Road " -"Graph plugin, if the analysis does not appear after running the plugin." -msgstr "" - -# 2e5089f4adb14e9d90584d371decc383 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:420 -msgid "Session 5" -msgstr "" - -# 4c78737db7684be0b06dc53aad9b5310 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:422 -msgid "Calculating Damages and Losses" -msgstr "" - -# 3f989d0ea2be42918527841c92c06a7d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:423 -msgid "Time : 210 minutes" -msgstr "" - -# e90fd738e7474322bad480c363b240a1 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:431 -msgid "" -"Understand the definition of damages, losses and their calculation based on " -"community exposure data" -msgstr "" - -# d8ecf8fd6aef4bbaaa07a39fbb59b546 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:433 -msgid "Understand damage and losses assessment values based on BNPB and BPBD" -msgstr "" - -# f214aa13eabc40af8121f17e5fbe4069 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:434 -msgid "Make a damage and losses map" -msgstr "" - -# fcdfdf5437f6453f8f4a8134d37ea651 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:435 -msgid "Calculate damage area" -msgstr "" - -# b9620cfac38647fdba54be685a7e362d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:436 -msgid "" -"Manipulate attribute data of affected features to obtain damage values for " -"each object" -msgstr "" - -# 49cf9ef7a90544818552abcefc1bb8db -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:438 -msgid "" -"Manipulate attribute data of affected features to obtain loss values for " -"each object" -msgstr "" - -# a1f210526dd44ac69313e8d646153e74 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:440 -msgid "" -"Group attribute data for administrative areas (hamlet village, subdistrict)" -msgstr "" - -# f685f24c54c24f2a849342e9948f3332 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:442 -msgid "" -"Combine attribute data for administrative areas (hamlet village, subdistrict)" -msgstr "" - -# c15c6ebcda3d4ffbb52dc09efd3d99ff -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:444 -msgid "Present damage and loss values using charts" -msgstr "" - -# b747f2c12b694c81965e67a3070231e6 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:448 -msgid "Calculate damages and losses in QGIS" -msgstr "" - -# 8b326f34a2dd40fd808c40c70b36cf25 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:452 -msgid "**Calculating Damages and Losses**" -msgstr "" - -# 3d163da4c25241028facba8bf1a170ad -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:454 -msgid "BPBD damage assessment guide" -msgstr "" - -# 872f0ea144054ab5951a020d19718bae -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:455 -msgid "Damage and losses assessment map" -msgstr "" - -# f1903ebe71624bbaa0f4a1d55ed2c1c4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:456 -msgid "Calculating damage area" -msgstr "" - -# a880cfdae61f4520a46d54c401ad94b0 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:457 -msgid "Calculating damages using the Group Stats plugin" -msgstr "" - -# 3a261d0a7eba4ce1bcde6855a1b10003 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:458 -msgid "Calculating losses" -msgstr "" - -# 4b6f845e6c8047b0b2d3c954e1b9fc78 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:459 -msgid "Calculating losses using the Group Stats plugin" -msgstr "" - -# 2cbd9791f10f4dec8d9ad300a865c715 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:460 -msgid "Joining data" -msgstr "" - -# 61f334796b584369a307aa149558d583 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:461 -msgid "Creating a chart" -msgstr "" - -# 7e40ee04a3644f1a8046488ef21ce7b9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:474 -msgid "**Demo and Practice 180'**" -msgstr "" - -# 7290e3be86c7416699af03e50fff8fc7 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:476 -msgid "" -"Explain the definition of damage and losses assessment (DALA), DALA benefits " -"and examples of DALA that are already used by some organisations/agencies to " -"calculate post-disaster losses." -msgstr "" - -# fb0f851ad8f246b78ddff8179a690391 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:480 -msgid "" -"Give an example calculation of damage and losses that will be completed " -"together with participants. It is recommended to use the existing training " -"data." -msgstr "" - -# 728e86c3c3084e6b9bf50145517c927d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:483 -msgid "Use the Group Stats plugin to calculate damage and losses by village." -msgstr "" - -# d680fb3800314cb8be7a965ae0decffd -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:485 -msgid "" -"Explain how such a DALA calculation can be used to help in drafting a " -"disaster contingency plan." -msgstr "" - -# 330cb39ac9c6485e89ecd515e71ec83f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:474 -msgid "*Slide PP* Module 5" -msgstr "" - -# f1ed35d11d954ea6a0b24872d7c16b80 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:489 -msgid "" -"**Closing 10'** Conclude the session on DALAs. Discuss and answer questions " -"about the session." -msgstr "" - -# 66758c6cf7c449ac9d971d2a8dc2571f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:495 -msgid "FAQ (Frequently Asked Questions)" -msgstr "" - -# 58ca5793b1b043c9b5ae84e056822c26 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:497 -msgid "" -"**How do we get data that can be used for the calculation of damages and " -"losses?**" -msgstr "" - -# dcd489df18ce4f2896e0c600471634c3 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:500 -msgid "" -"Data can be typically be obtained from the relevant national agencies. In " -"Indonesia, for example, it can be obtained from BNPB and BPBD." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/index.po b/docs/i18n/fr/LC_MESSAGES/training/index.po deleted file mode 100644 index bbcaa57e..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/index.po +++ /dev/null @@ -1,74 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Rod Bera , 2016\n" -"Language-Team: French (https://www.transifex.com/inasafe/teams/57762/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 0ebdda0866b4430e8382d59fa48f1b0c -#: ../../source/training/index.rst:4 -msgid "Training Materials" -msgstr "" - -# 5029ab84f1e44c0fb7b62ba7c9dfea7b -#: ../../source/training/index.rst:6 -msgid "" -"This section of the documentation contains step-by-step tutorials on using " -"OpenStreetMap and |project_name| with QGIS. It includes curricula and " -"materials to be used in a set of trainings covering these topics." -msgstr "" - -# ee846a354da54399b029043883c33bea -#: ../../source/training/index.rst:9 -msgid "Training" -msgstr "" - -# 59c9404cc4584d9db79a5d371bf86a61 -#: ../../source/training/index.rst:9 -msgid "Intended Length" -msgstr "" - -# 3a80c3d04a794edaa355a256df20c9d5 -#: ../../source/training/index.rst:11 -msgid "Socialisation" -msgstr "" - -# 30fbd7e370264cb681bd6e88665d5c39 -# 7fb09d51230f4099bd11c568acb11f02 -#: ../../source/training/index.rst:11 ../../source/training/index.rst:17 -msgid "1 Day" -msgstr "" - -# 26765b7a7cb64f44b27b0ef6d2b3e690 -#: ../../source/training/index.rst:13 -msgid "OpenStreetMap" -msgstr "OpenStreetMap" - -# fe6650d152d0441e9b0e07f25ba8ab37 -# b02a8b83d7db4ca6b5b30178f5a9e8a2 -#: ../../source/training/index.rst:13 ../../source/training/index.rst:15 -msgid "3 Days" -msgstr "" - -# 4f460695f3754557b0089d73f5d32113 -#: ../../source/training/index.rst:15 -msgid "QGIS" -msgstr "" - -# 571150c54c2549b6811dd7a288e04279 -#: ../../source/training/index.rst:17 -msgid "Training of Trainer" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/index.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/index.po deleted file mode 100644 index b5e78894..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/index.po +++ /dev/null @@ -1,41 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Language-Team: French (https://www.transifex.com/inasafe/teams/57762/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# f13bfb0e32e3497cb5680bfc37d2fa81 -#: ../../source/training/old-training/beginner/index.rst:4 -msgid "Beginner Training Module" -msgstr "" - -# 6b59e89836034845a0fa07a4caf33b85 -#: ../../source/training/old-training/beginner/index.rst:6 -msgid "" -"The beginner training module has been designed by Badan Nasional " -"Penanggulangan Bencana (BNPB), Humanitarian OpenStreetMap Team (HOT) and " -"Australia-Indonesia Facility for Disaster Reduction (AIFDR) to provide hands-" -"on experience with |project_name| for data collection and data analysis for " -"contingency planning. The course is scheduled to run for 10 days." -msgstr "" - -# f1af2ff40b494f55923dfa31b970131c -#: ../../source/training/old-training/beginner/index.rst:12 -msgid "" -"The data used in this course is available for download on `data.inasafe.org " -"`_. Ask your trainer which data you will need to " -"download for the course if they do not provide it to you directly." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/100-introduction.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/100-introduction.po deleted file mode 100644 index a982809e..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/100-introduction.po +++ /dev/null @@ -1,249 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:51+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 60169d5cd5a24f869dbf70e1d5f4c0ed -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:6 -msgid "Introduction" -msgstr "Introduction" - -# b7610f782d044ca0a005ab123815c180 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:9 -msgid "Disclaimer" -msgstr "" - -# 227984954ff8409883755d18d57f2134 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:11 -msgid "" -"This document is initial draft and still in reviewing phase by these parties:" -msgstr "" - -# b87b1b43c77c4fc5bd5020acc1bfe03e -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:13 -msgid "Badan Nasional Penanggulangan Bencana (|BNPB|)" -msgstr "" - -# 68c204c6d2614d7db8a496b37fc51540 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:14 -msgid "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" -msgstr "" - -# 8d019302328e49388dc4fe3a8c7f6d23 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:15 -msgid "Humanitarian OpenStreetMap Team (|HOT|)" -msgstr "" - -# 7d6e5fb4e92443f8927803114611bf34 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:17 -msgid "" -"All contents and materials on this document may be changed without public " -"notice." -msgstr "" - -# eb4c34a3a3fe4e2ea7e515eb38e2ac1e -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:21 -msgid "Licence" -msgstr "" - -# c8fc0e00d60a471084676fb53e8e33e5 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:25 -msgid "" -"All contents and materials in this document are licensed as Creative Commons " -"Attribution Australia (CCbyA)." -msgstr "" - -# 07096b0a34514a8681a4f3fdce17f0ad -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:28 -msgid "You are free:" -msgstr "" - -# bcabcf59080c44b886ecacc0f71a9cef -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:30 -msgid "to copy, distribute, display, and perform the work" -msgstr "" - -# a1ba11fdfd5241dfa7ef9c9c40d22185 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:31 -msgid "to make derivative works" -msgstr "" - -# 51c279b9e33441a09b8192118416aead -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:32 -msgid "to make commercial use of the work" -msgstr "" - -# a6d2e2b28a4b41f1b629ef683501ec93 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:34 -msgid "You must give the original author credit." -msgstr "" - -# e862a6e9d620475c8a8b66d1e287e167 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:36 -msgid "" -"More information about CCbyA License: http://creativecommons.org/licenses/" -"by/3.0/au/deed.en_GB" -msgstr "" - -# 3f80cdda53b242fc9b818ad46057f1ca -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:40 -msgid "About Us" -msgstr "" - -# 04ee76c26ccf476791f287076861c331 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:42 -msgid "Badan Nasional Penanggulangan Bencana (BNPB)" -msgstr "" - -# 62808c1ab1374d5b8b9c1aad0869e478 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:46 -msgid "" -"BNPB is Indonesia’s National Disaster Management Agency. |BNPB| is a non-" -"departmental ministerial-level government agency, tasked with providing " -"guidance and direction to the efforts of disaster management that includes " -"disaster prevention, emergency response, rehabilitation and reconstruction " -"in a fair and equal way. |BNPB| functions as a policy maker regarding " -"refugee/IDP management for effective and efficient response. It coordinates " -"the implementation of disaster management activities in a planned, " -"integrated and comprehensive way." -msgstr "" - -# e652067b2eba45dea7f3473a7c1e36ad -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:56 -msgid "http://bnpb.go.id" -msgstr "" - -# 833bf69930e44adf9ce90d2d8aa2adb2 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:59 -msgid "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" -msgstr "" - -# ecc5b61c7f7042c8ab6cd6aba6dbceb4 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:63 -msgid "" -"The Australia-Indonesia Facility for Disaster Reduction (|AIFDR|) is a joint " -"initiative between the governments of Australia and Indonesia. They work to " -"strengthen Indonesia's ability to reduce the impact of disasters. The " -"Australian and Indonesian governments at a special ceremony on 15 July 2010 " -"launched the Australia-Indonesia facility. The launch marks an important " -"event in the strong relationship now shared by both countries and their " -"united commitment to better prepare for and respond to natural disasters in " -"Indonesia." -msgstr "" - -# 77051902c4a84acab0a8d55553fabb4e -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:72 -msgid "http://aifdr.org" -msgstr "" - -# bb0371c15d844521abc43a0ad82c512d -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:75 -msgid "Humanitarian OpenStreetMap Team (HOT)" -msgstr "" - -# e892475fd195474da086b2f5550df12d -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:79 -msgid "" -"Free, collaborative maps are uniquely valuable to humanitarian work, " -"especially in places where base map data is often scarce, out-of-date, or " -"rapidly changing. OpenStreetMap (OSM) is a web project to create a free and " -"open map of the entire world, built entirely by volunteers surveying with " -"GPS, digitising aerial imagery, and collecting and liberating existing " -"public sources of geographic data. The Humanitarian OpenStreetMap Team (|" -"HOT|) is an initiative to apply the principles and activities of open source " -"and open data sharing towards humanitarian response and economic development." -msgstr "" - -# b0786e59ba374fbf87ee4dca58663ea7 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:88 -msgid "http://hot.openstreetmap.org" -msgstr "" - -# faf453bf0f514f1a8f89f91d80f90519 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:91 -msgid "Universitas Gadjah Mada" -msgstr "" - -# 60721d1f3db94d638d26d3dd969a2625 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:95 -msgid "" -"Universitas Gadjah Mada (internationally known as Gadjah Mada University, or " -"UGM) is a top research university located in Yogyakarta, Indonesia. The " -"Department of Geodetic Engineering and Faculty of Engineering focuses on " -"education, research, and commmunity services related to geodesy and " -"geomatics engineering, including acquisition, analysis, and uses of detailed " -"and accurate geospatial data and large-scale maps using open source " -"geospatial software for disaster management." -msgstr "" - -# a98be150b9094be5afcf21707e04e8fc -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:103 -msgid "http://ugm.ac.id" -msgstr "" - -# c279854c51544e078db07d7b6fe91e51 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:106 -msgid "Preface" -msgstr "" - -# 31ce9a0c8bf94ac885706b1419c43395 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:107 -msgid "" -"Every day thousands of people contribute to OSM, a project with the lofty " -"goal of mapping the world. Most OSM software is free and open source, and " -"the data is open for anyone to use. The idea is simple: if you make a map of " -"your town and we make a map of ours, we can share those maps on a common " -"platform. With enough people contributing, we can collect data throughout " -"the world." -msgstr "" - -# d2079cdad79843d0a7375a1c100a88ae -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:114 -msgid "" -"Collecting Spatial Data using OSM Beginner Level is a step-by-step course " -"designed to help anyone get started with OSM. While it might seem daunting " -"at first, OSM is simple enough that anyone can get started creating maps, " -"and as your understanding grows you'll find that you can do more and more " -"interesting things." -msgstr "" - -# c7c12e39ce07497bbc62586bb2ad1cf2 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:120 -msgid "" -"This tutorial makes few assumptions. It assumes you have used a computer " -"before, and that you have an email address. If you don't have an email " -"address, we suggest you have a friend help you sign up for one. There are " -"many websites where you can get a free email address, such as www.gmail.com " -"or mail.yahoo.com." -msgstr "" - -# 44b43b10108a4fd5867b56bd33c11e84 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:126 -msgid "" -"The only other assumption is that you've used the internet before. Perhaps " -"you're familiar with Facebook or email, and that's certainly enough to get " -"started with OSM. If you're already comfortable using a computer and surfing " -"the web, don't worry – this guide is for you too. No matter your " -"proficiency, we'll take you step-by-step through OSM and you'll be mapping " -"in no time!" -msgstr "" - -# 96c7fd01bf2c497a91cfdb86edc990d1 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:133 -msgid ":ref:`Go to first module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/101-basic-concept-of-osm-website.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/101-basic-concept-of-osm-website.po deleted file mode 100644 index 4655f468..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/101-basic-concept-of-osm-website.po +++ /dev/null @@ -1,171 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-11-22 22:42+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# a01e446946e945c2b12f89ddbe224e6a -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:6 -msgid "Module 1: The OpenStreetMap Website" -msgstr "" - -# ea281f443eff48a4932128bcc4022d92 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 6a2990e4d34d4112ac5014fc814ffda9 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:10 -msgid "Understand the concept of OpenStreetMap" -msgstr "" - -# aeb9978a4907468ab83fac0a4c357896 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:11 -msgid "Understand the definition and objectives of data collection" -msgstr "" - -# e75b3a3296064a2896bdc9a299e8005a -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:12 -msgid "Understand the composition of a map" -msgstr "" - -# d58450b665c448deb5cd7110dbd9a5c1 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:13 -msgid "Make a hand-drawn sketch of an area" -msgstr "" - -# 8d2483b53ac343f4a2598587fed27d93 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:15 -msgid "" -"Maps are a good way to convey information. Maps are visual representations " -"of our world. They can often demonstrate an idea better than words. This in " -"turn can also help answer important questions. Where is the closest school " -"or hospital? Who has the least access to these facilities? Where is " -"poverty the most problematic? Questions like these can often best be " -"expressed with maps, and maps can help find solutions to these questions." -msgstr "" - -# 38aab34470584dc1ad8411916d4305af -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:23 -msgid "Hand-drawn maps" -msgstr "" - -# c9cd1c3411d94ce88e47ae1cb33e23ee -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:25 -msgid "" -"As an exercise, get a pen and paper and draw a map of your town or village. " -"What are the most important things to include on the map? What is the most " -"important information? Spend a few minutes making your map, and when you’re " -"finished, think about why the information you included is important, and who " -"it might be important to." -msgstr "" - -# afaa0544e72045dfbbbf9bc7f9c51b19 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:37 -msgid "" -"*A village in Indonesia (top), and an example of a hand-drawn map (bottom)*" -msgstr "" - -# 0a031c6f4be64093a4b11fd72befe13e -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:39 -msgid "" -"If your town is like most, you may have drawn some lines to represent roads, " -"possibly a river or stream. Perhaps you added important buildings such as " -"schools and offices, fields, or boundaries. Whatever you drew, you probably " -"used symbols - a line to symbolise a road, a square to symbolise a building, " -"and so on. Your map is a representation of what is on the ground." -msgstr "" - -# ca1dcbe8401446358c046c4d40ac920d -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:54 -msgid "*Examples of Symbols*" -msgstr "" - -# c5686fdf33d24b4489f53e7d4609143c -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:57 -msgid "" -"Your map is informative. You might use a map like this to explain to someone " -"where different places are, where problems are in your community, or merely " -"to help someone find their way around. The use of your map is limited " -"though. There is only one copy of the map and the way you drew it may make " -"sense to you, but perhaps not to someone else who would have drawn their own " -"map in a different way. Because your map is merely on paper, it is difficult " -"to get that information to others. This is why making your map on a " -"computer, in such a way that anyone can access it, can be much more valuable." -msgstr "" - -# a71cf29ed66c4eeeb146dcd7261f8eb3 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:68 -msgid "Why digital?" -msgstr "" - -# 4177de3ea8104c1d8ca28af5c40a580f -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:70 -msgid "" -"Map making on computers allows us to collect more useful data than on paper. " -"On paper we might draw a school, and even add it’s name and record some " -"information about the school, but on the computer we can attach an endless " -"amount of data about the school, such as the number of students, number of " -"teachers, size of the building, type of structure, and so on. And more " -"importantly, when we add this school to a digital map, we record it’s " -"precise location (longitude and latitude) on the planet. This is invaluable " -"for our future map making and analysis, and we will look more closely at it " -"later on." -msgstr "" - -# cc40bf52c7e742099cbf424e8ef8156b -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:81 -msgid "What is OpenStreetMap?" -msgstr "" - -# 3ad184b2788a486ab96596151de3e0a2 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:83 -msgid "" -"OpenStreetMap is a tool for creating and sharing map information. Anyone can " -"contribute to OSM, and thousands of people add to the project every day. " -"Users draw maps on computers, rather than paper, but as we will see in this " -"guide, drawing a map on a computer is not all that different from drawing on " -"paper. We still draw lines to represent roads, fields, and anything else, " -"and we still represent schools and hospitals with symbols. The important " -"thing is that OSM maps are saved on the internet, and anyone can access them " -"at any time, totally free." -msgstr "" - -# efc3500ddc1c4b33a579f81e09a5607a -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:95 -msgid "*Digital Maps with OpenStreetMap*" -msgstr "" - -# 9b94ae9668034edf8724aeda22326ec8 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:97 -msgid "" -"OSM is digital, which makes it extremely useful for us, and it is shared, " -"which means that everybody benefits from the work of everybody else." -msgstr "" - -# 2cf9333b46844aa9a7d4d41495e3500d -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:101 -msgid "" -"In this unit, you will learn how to make a digital map. You will learn how " -"to use the OSM platform, and you will make your first edits and additions to " -"the worldwide map." -msgstr "" - -# fd9109031a784a11aa3632a590799002 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:105 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/102-working-with-osm.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/102-working-with-osm.po deleted file mode 100644 index 3cbaa933..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/102-working-with-osm.po +++ /dev/null @@ -1,368 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-11-22 22:41+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 61c4e6871a0a4fa18778cdb64ba76265 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:6 -msgid "Module 2: Working with OSM" -msgstr "" - -# c762c41713894e4f87a37285f782ded8 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 361a62225e6947e28c704554f1d6f25b -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:10 -msgid "Visit OpenStreetMap website" -msgstr "" - -# 86b93cf64ccf4d559f40468270bc46af -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:11 -msgid "Navigate map on OSM website" -msgstr "" - -# e98ee0b4feb144209400ca2c82316192 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:12 -msgid "Save an image from OSM" -msgstr "" - -# 6051ec994b364652a5f45a4e8d07d9a1 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:13 -msgid "Register an OSM account" -msgstr "" - -# 5b9e53fae2c347e294ebea50d636fe99 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:14 -msgid "Edit the OSM map" -msgstr "" - -# fe6582e318a3469c966d88bf768d6d77 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:15 -msgid "Save edits" -msgstr "" - -# 95c76692207b4055b9bf959478077c74 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:17 -msgid "" -"In this module we will learn step-by-step how to navigate the OpenStreetMap " -"website, view and print maps, and sign up for a user account. After you have " -"your own username and password, you will be able to add your first points to " -"the map." -msgstr "" - -# df1417c1870d4519a500e3b212ad176d -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:23 -msgid "1. The OpenStreetMap website" -msgstr "" - -# b5835021aca34a20a1bf782178dab9a6 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:25 -msgid "Be sure that your computer is on and you are connected to the internet." -msgstr "" - -# 680b579e34f64a8c8be94b288ef16f8b -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:27 -msgid "Open your web browser - Firefox, Chrome, Opera, or Internet Explorer." -msgstr "" - -# 0ae0af44427a47aab7452da7e99ce5e6 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:29 -msgid "" -"In the address bar at the top of the window, enter the following text: `www." -"openstreetmap.org `_" -msgstr "" - -# c7a8da457b7a472d946fa9be41057bff -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:32 -msgid "When the page has finished loading, it should look something like this:" -msgstr "" - -# ffdc9d0deafb493baa7bbfeb13756a58 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:38 -msgid "2. Navigating the map" -msgstr "" - -# a8b6ee9bacc5465794fb5411ce23e3c3 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:40 -msgid "" -"The main thing we see is the map. Move the map by clicking on it with your " -"left mouse button, holding the button down, and dragging your mouse around." -msgstr "" - -# b4fa2e2258f945738b78be9a255e0513 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:44 -msgid "" -"If you have a mouse with a scroll-wheel, zoom in and out on the map by " -"turning the wheel. If you don’t have a scroll-wheel, click the :guilabel:`+` " -"and :guilabel:`-` buttons in the upper right corner of the map." -msgstr "" - -# 27b335d6dd9f45b2be2f752427207ae3 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:49 -msgid "" -"To search for a place, left-click in the box labeled :guilabel:`Search` on " -"the left side of the page. Type in the name of your town or village and " -"press Enter. A window should appear to the left of the map with the results " -"of your search. Click on the location that looks closest to the one you " -"want. The map will automatically move to the location you choose." -msgstr "" - -# 2250ab423f71476bbc90c55abf1ee798 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:57 -msgid "3. Saving an image of the map" -msgstr "" - -# bd53a751abf44ef4ab6618176ddaf96d -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:59 -msgid "" -"To save an image from OSM that you can easily print, follow these " -"instructions:" -msgstr "" - -# 6d64fc5eeec748b991186eee38ca3423 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:62 -msgid "Click the :guilabel:`Share` button on the right side of the map." -msgstr "" - -# 973d9058d2d54d78b15e58b8a8bd3041 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:67 -msgid "Options appear which look like this:" -msgstr "" - -# 4db9c546ef454d12837759045c40d067 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:72 -msgid "" -"In the :guilabel:`Image` section, check the box next to :guilabel:`Set " -"custom dimensions` to manually specify the extent of the area for download. " -"Drag the box which appears to the area you would like to get as an image " -"file." -msgstr "" - -# 775e4501fbaf4839ae40bcce3980032c -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:77 -msgid "" -"Set the format to PNG, JPEG, SVG or PDF format according to your preference." -msgstr "" - -# a758cae2ac4f47c5bd3809b8bfed11d0 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:80 -msgid "" -"You may enter a scale in the next box. The larger the scale (meaning a " -"smaller number), the larger the image size will be. Scale is a ratio. For " -"example, entering 5000 here means that objects on the map will be 1/5000th " -"the size that they are in real life." -msgstr "" - -# c1d283fd231c456b8c3be2acac0f1357 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:85 -msgid "" -"Click the :guilabel:`Download` button. The image will be created, downloaded " -"and saved to your computer." -msgstr "" - -# f486cd48e667411092a83d532e9f2714 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:88 -msgid "" -"Open the downloaded file. It can be printed by going to :menuselection:`File " -"‣ Print`, after you connect your computer to a printer." -msgstr "" - -# 6263c3af214049818cf32cb58bae4fed -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:93 -msgid "4. Creating an OpenStreetMap account" -msgstr "" - -# 02f3325721eb4cd9983dd2408b41f87f -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:95 -msgid "" -"Now that we have seen the website, we must create an OSM account so we can " -"start mapping." -msgstr "" - -# e3e0b47f4699435590043721c99663e1 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:98 -msgid "" -"Return to the OSM website. Click :guilabel:`Sign Up` in the top right corner " -"of the page." -msgstr "" - -# e1549bd74d994fe28fc36cd7e525069c -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:101 -msgid "You should see a new page that looks like this:" -msgstr "" - -# cf5c314db21e4a0fabe223f87f353c21 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:106 -msgid "" -"There are five boxes on this page that you need to fill in to register an " -"account with OSM." -msgstr "" - -# 16af4178fd2146758e2a982d2c1c623a -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:109 -msgid "" -"Enter your email address in the first two boxes. You should enter the same " -"email address in both boxes. Later, you will need to open your email to " -"confirm your account with OSM." -msgstr "" - -# 69ad02fbe3a549b7b390c48f1f850fe8 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:113 -msgid "" -"In the third box, enter the username that you would like to have. You will " -"not be able to choose a username that someone else has chosen before, so it " -"should be creative. If you try to enter something simple, like your first " -"name, it is likely that someone has already claimed that name." -msgstr "" - -# 86d223e75d064964b93e84d73511a3c4 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:119 -msgid "" -"Enter a new password in the fourth and fifth boxes. Enter the same password " -"in both boxes. It does not need to be the same as the password for your " -"email." -msgstr "" - -# 4d86b485ef9e4d488ab6c5fba6eae6c1 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:123 -msgid "" -"You will need to remember your user name and your password so that you can " -"login later." -msgstr "" - -# d8398eab72c84a80b9021b318bc28587 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:126 -msgid "" -"After completing all the boxes, click :guilabel:`Continue` at the bottom of " -"the page." -msgstr "" - -# 4a2c035eeb6f4cd7a7e78f20e6c5d441 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:129 -msgid "" -"If there are any problems, an error message may pop up. Check to make sure " -"that your email is the same in the first to boxes, and your password is the " -"same in the bottom two boxes. If the third box is highlighted red, it means " -"that someone else has already chosen your username, and you should try a " -"different name." -msgstr "" - -# f31ad3a838484b97b953320ee2320782 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:135 -msgid "" -"Open a separate window or tab in your internet browser, and navigate to your " -"email. Common email sites are `mail.yahoo.com `_ and " -"`gmail.com `_." -msgstr "" - -# a744557b60734a7fb59e67eaaed8936d -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:140 -msgid "" -"Enter your email address and your email password to open your email. Note " -"that this is not the same as your OSM username and password." -msgstr "" - -# 3fac19c22b2c4f449f7f591ea97ca90c -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:143 -msgid "" -"If everything was successful with your registration, you should see an email " -"from OSM in your inbox. Open the email. It should look like the image below. " -"Click on the link that is identified below:" -msgstr "" - -# 9f580e948c0943d59ace815c06cd43e5 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:152 -msgid "" -"A new tab or window will open. If everything went well, you should have an " -"OSM account!" -msgstr "" - -# 0f17dd25ccfa4c62be7e999b5a2c18a0 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:155 -msgid "" -"On the OSM page, click :guilabel:`Log In` in the top right corner. Enter " -"your OSM username and password and press Enter. You should now be logged in. " -"You will see your username in the upper right corner of the page." -msgstr "" - -# 53b3086bcbb144d095b4d7f9d78b1adf -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:161 -msgid "5. Adding your first points" -msgstr "" - -# fabeac14c7bf43f68e9f25077df1ae24 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:163 -msgid "" -"Now that you are logged in with your username on the OSM website, you can " -"add your first point to the map." -msgstr "" - -# 0017290e3556484b9814f46c38088f21 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:166 -msgid "" -"Move the map to a place that you know very well, such as your town or " -"village." -msgstr "" - -# a2733ffccc384ed9b571001d1805a479 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:168 -msgid "Zoom in to a place where you would like to add a point to the map." -msgstr "" - -# 77d5e375d74c4a6d9ddbe6c96653b596 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:170 -msgid "" -"Just above the map on the left, there is a button marked :guilabel:`Edit`. " -"Click on the arrow next to it to open a drop-down menu." -msgstr "" - -# c70af1074fcb4d5095afda817394ff50 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:173 -msgid "Click :guilabel:`Edit with iD (in-browser editor)`" -msgstr "" - -# 7dedac9d97724d8fb3410aab63cd858a -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:175 -msgid "" -"The online editor for OSM should open. For a tour of the editor, click :" -"guilabel:`Start the Walkthrough`. To begin editing, click :guilabel:`Edit " -"Now`." -msgstr "" - -# 3554eb61919c4470b0987caa5c0478b0 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:178 -msgid "" -"Add a point to the map by clicking :guilabel:`Point` at the top, and then " -"clicking a location on the map. Select the type of location from the menu on " -"the left and add any other information that you know. If you are satisfied " -"that the information is correct, click :guilabel:`Save` at the top." -msgstr "" - -# 86d6c1f2dbc240f3a3132ecce542e3a9 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:183 -msgid "" -"If you are not sure about the accuracy of the point(s) you add, don’t click :" -"guilabel:`Save`! Play around with the iD editor, but don’t save your changes." -msgstr "" - -# 74d727685091409a81f24596b331bda5 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:188 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/103-working-with-josm.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/103-working-with-josm.po deleted file mode 100644 index 55ce66ff..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/103-working-with-josm.po +++ /dev/null @@ -1,645 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-11-22 22:42+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 6a58e2cdf6cb47bb8cb8dbf858a3d301 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:6 -msgid "Module 3: Working with JOSM" -msgstr "" - -# 59f842d2cbb24d68aae5d51409768e76 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 7bb5fee52ba44c6e9b942b9d8814ce71 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:10 -msgid "Download JOSM" -msgstr "" - -# 94e582b24a16434c9e600c8d640aa5db -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:11 -msgid "Install JOSM" -msgstr "" - -# b27aa1a4e67d491280b84d91ffa34db6 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:12 -msgid "Set JOSM preferences" -msgstr "" - -# bbd35adf522d4ee4aa0b4f8ef364ac3a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:13 -msgid "Use basic tools" -msgstr "" - -# 2776dc734c1445649da91f256904f1de -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:14 -msgid "Draw nodes and ways in JOSM" -msgstr "" - -# 229da7fee544429187ece50849c099f2 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:15 -msgid "Change objects" -msgstr "" - -# 2819a9f645e94442bbdc2329239d27c4 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:16 -msgid "Add tags to objects using presets menu" -msgstr "" - -# 7a60f39cc13947ecb553714f32fbc43a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:18 -msgid "" -"In this module we will learn step-by-step how to download and install JOSM, " -"the Java OpenStreetMap editor. We will change some of the settings in JOSM " -"to make it easier to use. Then we will open a sample map and learn some of " -"the basic operations of the software. Remember in :ref:`Module 1 ` when we asked you to draw a map of your town or " -"village? We will conclude this module by drawing your map again, this time " -"digitally. After this you should have a good understanding of how to draw " -"maps in JOSM." -msgstr "" - -# c407063471fd4cf9b14a97c4d8ad38b8 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:28 -msgid "1. Downloading JOSM" -msgstr "" - -# 1c9c6c6c858749e7ac3b619004111c0d -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:30 -msgid "" -"There is a copy of JOSM in the :file:`software/` folder of the package that " -"accompanies this course. If you don’t have this or would like the most up-to-" -"date version, follow the instructions here. Otherwise skip ahead to :ref:" -"`install-josm`." -msgstr "" - -# 7c62402e6c844c9d96813f193fddbde1 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:35 -msgid "" -"Open your web browser - this may be Firefox, Chrome, Opera, or Internet " -"Explorer." -msgstr "" - -# 3a13429cad284153afe5852f882cea7a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:38 -msgid "" -"In the address bar at the top of the window, enter `josm.openstreetmap.de " -"`_ and press :kbd:`Enter`:" -msgstr "" - -# c817b29454e04232b49d1c0d3ae880ab -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:42 -msgid "The website should look something like this:" -msgstr "" - -# 466b9aff6d714d55af47edef4715dbd5 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:47 -msgid "" -"If you are running Windows, click :guilabel:`Windows Installer` to download " -"JOSM. If you have a different operating system, click on the link for your " -"system. Your download should begin. In this module we assume that you are " -"using Windows, but the instructions are similar for other operating systems." -msgstr "" - -# 27c43bf186b34e2b9ca79400bc53de86 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:56 -msgid "2. Installing JOSM" -msgstr "" - -# b5e2e639ebb44f12b9d3a242db1ecc32 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:58 -msgid "" -"You may have problems installing JOSM if Java is not already installed on " -"your computer. Install Java by running :file:`jre-8u25-windows-i586` in the :" -"file:`software/` folder. The exact version may be different. The most up-to-" -"date version can also be downloaded here: `http://www.java.com/en/download/ " -"`_" -msgstr "" - -# 572bb39539cc44f389af98d19e1df656 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:64 -msgid "" -"Find the JOSM install file on your computer. It should be named :file:`josm-" -"setup.exe`. Double-click it to begin setup." -msgstr "" - -# eea29cad8b6b4832afbda164afe64fd8 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:67 -msgid "" -"Click :guilabel:`OK`, :guilabel:`Next`, :guilabel:`I Agree` and :guilabel:" -"`Install`. When the installation is complete, click :guilabel:`Finish` to " -"launch JOSM for the first time. Later when you want to start JOSM, you can " -"do so by clicking on the :guilabel:`Start Menu` in the lower-left corner of " -"your computer, and clicking the program JOSM." -msgstr "" - -# 9a964b9bdd8b4444905ce4ba1667bfee -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:73 -msgid "" -"A window may pop up that asks if you want to update the software. It is not " -"necessary to update since it is new. Click the :guilabel:`Cancel` button. If " -"you don’t ever want to see this message again, check the box at the bottom " -"before pressing :guilabel:`Cancel`." -msgstr "" - -# 7a892ee90b9c4f169f65aab107a4131c -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:78 -msgid "When JOSM starts, it will look something like this:" -msgstr "" - -# ad3fcac921d6401ab7725a3be9c4e3a2 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:84 -msgid "3. Changing JOSM settings" -msgstr "" - -# 9350f43483e14ef1a3cd09072dfb619a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:86 -msgid "" -"Before we begin using JOSM, it’s a good idea to change some of the settings " -"so that it will be easier to use. To change the settings, go to :" -"menuselection:`Edit ‣ Preferences`." -msgstr "" - -# 5349125146b141f6bf070c3c076b63c0 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:94 -msgid "3.1. Adding Bing imagery" -msgstr "" - -# 3f381f0fb15a4053a5e4ea49852c3b8b -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:96 -msgid "" -"This may be unnecessary if Bing Imagery is already activated in your copy of " -"JOSM." -msgstr "" - -# cb0ae00562b241d395cb5e8fa8d7ee48 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:99 -msgid "" -"In order to use satellite imagery while making our maps, we must make sure " -"that it is enabled in the JOSM settings." -msgstr "" - -# 7120b162a3b24a3fa636b52326777cdc -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:102 -msgid "" -"On the left side of the Preferences window there are different icons for " -"different settings. Click the icon that says :guilabel:`WMS TMS`. You may " -"need to click on the down arrow to find it:" -msgstr "" - -# 5f7ae65d51ad4747ae74493455bda705 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:112 -msgid "Click on :guilabel:`Bing Sat`. Then click :guilabel:`Activate`." -msgstr "" - -# 134898550d424bfdb2ff2591aca99c4a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:117 -msgid "" -":guilabel:`Bing Sat` should now be in the list below the :guilabel:" -"`Activate` button." -msgstr "" - -# 10c17189fce844e8af7b367234bb1ea4 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:121 -msgid "3.2. Adding presets" -msgstr "" - -# cd97999c93144b2b921cadd977a6417e -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:123 -msgid "" -"We will be using presets so that we can add special data to OSM. Don’t worry " -"if this is unclear right now - we will learn more about presets as we go " -"along." -msgstr "" - -# 239f22a3abba42939986577e5a197e59 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:127 -msgid "" -"You should still have the Preferences window open. If not, go to :" -"menuselection:`Edit ‣ Preferences` to open the window." -msgstr "" - -# 04e381d545d84f3dbf1486c014bb4d85 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:130 -msgid "On the left side, click the icon that looks like a grid." -msgstr "" - -# f2f89d6ed6d748bb99eda90ddeb3d422 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:135 -msgid "Click the tab at the top that reads :guilabel:`Tagging Presets`." -msgstr "" - -# 8a6410a5698e4ddbb6cdf3f19da07c93 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:137 -msgid "" -"Under :guilabel:`Available Presets` find and select the entry labelled :kbd:" -"`Buildings Indonesia`. Click the blue arrow to the right of this box." -msgstr "" - -# 86f7b72237de4331a0152731dad7fa0b -# 410242614a424e86b0a86167f83fa7ab -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:143 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:188 -msgid "Click :guilabel:`OK`." -msgstr "" - -# e84c080a4ce048f9b20c7cd07e315ef1 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:146 -msgid "3.3. Adding plugins" -msgstr "" - -# 2c48c4379a7d4aeb8ddc4921dd8f21f1 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:148 -msgid "" -"Plugins provide extra functionality for specific purposes. JOSM has many " -"plugins that can be downloaded. To install a plugin follow these steps:" -msgstr "" - -# 1958c52d53514469bed823da43d673bc -# a8703b70c8cf4b62b8ee548fde49e694 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:151 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:180 -msgid "Make sure the Preferences window is open." -msgstr "" - -# c9e05dff4ae04814ae0c0678d50ae0c3 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:153 -msgid "Click the :guilabel:`Plugin` icon on the left:" -msgstr "" - -# 403fd79ebdd94472a9883c16e8330dc2 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:158 -msgid "" -"On the plugin tab, first download the plugin list by clicking :guilabel:" -"`Download list`. It may take a few minutes." -msgstr "" - -# c89f4112728c44f7b3a79d81da872790 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:161 -msgid "" -"After the plugin list appears, type the name of the plugin you want to " -"download in the :guilabel:`Search` box." -msgstr "" - -# 948a7993fb084929be0f2ed74ec9bb77 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:167 -msgid "When the plugin is found, check the box to the left of the plugin name." -msgstr "" - -# 29e42a044ec845fda9e3e7308cd1190a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:169 -msgid "Click :guilabel:`OK` to download and install the selected plugins." -msgstr "" - -# 15a91a3e4cfe4db688f0d371e03fc1d5 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:171 -msgid "" -"Skim through the list to see what sort of additional features are available " -"through plugins." -msgstr "" - -# 8dc0e847c36d4da7ab713f7261f42fa8 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:175 -msgid "3.4. Changing the language" -msgstr "" - -# c1d3da4b678746219303b0e3e8f13a36 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:177 -msgid "" -"JOSM has been translated into many languages. If it has been translated into " -"your language, you can change it in the Preferences." -msgstr "" - -# ced9150eb39744899326443ed8bdb43a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:182 -msgid "" -"On the left side, click the icon that looks like a paint can and paintbrush." -msgstr "" - -# 3dc591235c234877b818e687e91c5973 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:184 -msgid "" -"At the top of the window, click the tab that says :guilabel:`Look and Feel`." -msgstr "" - -# 1f89dc564fb54a789ea149e72a8267fe -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:186 -msgid "" -"Choose your language in the drop-down box next to the word :guilabel:" -"`Language`." -msgstr "" - -# c51c3f8a7d9e43b9ac4efb17093026b7 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:193 -msgid "" -"JOSM must be restarted to save the language settings. Go to :menuselection:" -"`File ‣ Exit`." -msgstr "" - -# e8dbf871f45c47f59c4afa6e286b5fc1 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:196 -msgid "" -"Start JOSM again by going to the Windows :guilabel:`Start Menu`. Find JOSM " -"and click on it to start." -msgstr "" - -# ff57cb2432814682a34d8defbb621f4b -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:200 -msgid "4. Basic drawing with JOSM" -msgstr "" - -# a66cc17762324def9403305602936946 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:202 -msgid "" -"Now let’s open up a sample OSM file which we will use to learn the basic " -"ways to draw maps with JOSM. Note that this map is not real, in that it is " -"not a real map of a real place, so we will not save it on OSM." -msgstr "" - -# 8295cb6e2496431d88128085cca5419e -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:207 -msgid "The file is located in :file:`osm/` and is named :file:`sample.osm`." -msgstr "" - -# 6d6c384c8cb548878e4b3d286e07402c -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:209 -msgid "Open JOSM. Go to :menuselection:`Open`." -msgstr "" - -# 57cf9fba80414a37afb8318694d25515 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:214 -msgid "" -"Navigate to the file :file:`sample.osm`. Click on it, and then click :" -"guilabel:`Open`." -msgstr "" - -# a743fdfc413041e3bc799887ec9533ca -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:217 -msgid "You should now see a sample map, similar to this:" -msgstr "" - -# c3c8ae7c36464e28a07c7fbe1d88cb22 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:223 -msgid "4.1. Basic operations" -msgstr "" - -# 8ffcd03a2e874a9fb2a5e679f17626fd -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:225 -msgid "" -"To move the map left or right, up or down, hold the right mouse button down, " -"and move the mouse." -msgstr "" - -# 86363599827d411593de7feb85fe5112 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:228 -msgid "" -"There are several ways to zoom in and out of the map. With a mouse, the " -"scroll wheel is used to zoom in and out. If you are using a laptop and don’t " -"have a mouse, zoom in and out using the scale bar in the upper-left of the " -"map window. Drag the bar left and right by holding your left mouse down and " -"moving the bar left or right with your mouse." -msgstr "" - -# 1da813f726294be0a8be43b91da3eed7 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:237 -msgid "" -"Look at the sample map. There are a few different types of objects here. " -"There is a river, a forest, some buildings, several roads, and a couple of " -"shops. To select an object, click on it with your left mouse button." -msgstr "" - -# 54b00eeb5c7b4b7a8d01983eb87e7e46 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:242 -msgid "4.2. Points, lines, and shapes (polygons)" -msgstr "" - -# afbdd9685bf94b57b08d6bf7470b83a1 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:244 -msgid "" -"As you click different objects on the sample map, notice that there are " -"three different types of objects on the map. There are points, lines, and " -"shapes. In mapping, shapes are usually called *polygons*." -msgstr "" - -# a3d047c558a84e61a664cf25c69712e3 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:248 -msgid "" -"Points are a single location, represented by symbols. On this sample map, " -"there are two points, a clothing shop and a market. The clothing shop is " -"represented by a shirt symbol, and the market is represented by a shopping " -"cart." -msgstr "" - -# 0e82c37758d1422498a45b8c14462d93 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:253 -msgid "" -"There are several lines on the map as well, which represent roads. If you " -"look closely you will see that within the lines, there are points as well. " -"These points don’t have any symbols or other information associated with " -"them, but they help to define where the line is located." -msgstr "" - -# 377f9d16775845c395df4f9c0b77c401 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:258 -msgid "" -"Lastly, there are numerous shapes on the sample map, representing different " -"places - a forest, a river, and buildings. A shape generally represents an " -"area, like a field or a building. A shape is exactly like a line - the only " -"difference is that the line begins at the same point where it ends." -msgstr "" - -# e0a1f1d878a04b9498659ce1c25d9bc0 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:264 -msgid "" -"Notice that when you select an object, a list appears to the right of the " -"map in a window called :guilabel:`Properties`. These are known as tags. " -"**Tags** are information that is tied to a point, line or shape that " -"describes what it is. For now all you need to know is that this information " -"helps describe whether our object is a forest, a river, a building or " -"something else." -msgstr "" - -# e06a56cc729b4690aa9d69c2dae8fee4 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:271 -msgid "" -"Think about drawing a map by hand, and how you are also drawing points, " -"lines and shapes. What other places are best represented by points? Lines? " -"Shapes?" -msgstr "" - -# dc93c8dd36fb433eb3dfbd5f3f6dbbab -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:275 -msgid "Now, let’s practise drawing an object (point, line and shape)." -msgstr "" - -# be030a0a035043e2b755e67f5c03c288 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:277 -msgid "" -"On the left side of JOSM is a column of buttons. Many of these buttons open " -"new panels on the right side that provide more information about the map. " -"The most important buttons are at the top of the column. These buttons " -"change what you can do with your mouse. The top four buttons in this column " -"are the most important. They allow you to: :guilabel:`Select`, :guilabel:" -"`Draw`, :guilabel:`Zoom in` and :guilabel:`Delete`" -msgstr "" - -# 2e724095b19b4c6484149891f7f934a0 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:285 -msgid "" -"Until now, you have been using the :guilabel:`Select` tool, which looks like " -"this:" -msgstr "" - -# f503e6ef3b2c458295cbecb2c538d9b9 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:291 -msgid "" -"Before drawing, we need to make sure that nothing is selected. Click in the " -"black space on the map, where it is empty, to make sure nothing is selected." -msgstr "" - -# 2d2f337e802c4c30ad72a7b5beebabe1 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:295 -msgid "Click the second button, the :guilabel:`Draw` tool." -msgstr "" - -# 8809457fb8134462a566a9234734c96d -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:300 -msgid "" -"Find an empty area on the map, and double-click with your mouse. This will " -"create a single point." -msgstr "" - -# 4a110f2d95b049279f572250e6eedda2 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:303 -msgid "" -"To draw a line, single-click with the mouse. Move the mouse and click again. " -"Continue until you are happy with the line. To end the line, double-click." -msgstr "" - -# 4f3371bd0179427f8797705c4e41e94d -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:307 -msgid "" -"Draw a shape the same way that you draw a line, but finish the shape by " -"double-clicking on the point where you started the line." -msgstr "" - -# 2eb0f0a5a7604bb397c4e4dd72168cf6 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:311 -msgid "4.3. Changing objects" -msgstr "" - -# c9937f6346b942bcb9a0fb36747616ca -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:313 -msgid "" -"Select the forest on the left side of the map. Be sure to click on the line " -"around the forest, not one of the points on the line. Now hold your left " -"mouse button down and drag your mouse. You should be able to move the forest " -"to a new location on the map." -msgstr "" - -# 896ce24f6d0f4bd398d52a8ddfc64f3b -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:318 -msgid "" -"Click on one of the points on the line around the forest. Hold your left " -"mouse button down and drag your mouse. You should be able to move the point. " -"This is how you can change the shape of an object, or move a point." -msgstr "" - -# 9ded68436f2f41d6b254d14d11a9adb9 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:323 -msgid "4.4. Adding presets" -msgstr "" - -# 8e509cdf78264fbab594e01a28ba3b96 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:325 -msgid "" -"Now we know how to draw points, lines and shapes, but we still haven’t " -"defined what they represent. We want to be able to say that our points are " -"shops, schools or something else, and whether our shapes are fields, " -"buildings or something else." -msgstr "" - -# 2100d1a5df53439f8ff727f95e38dc4f -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:330 -msgid "" -"Click the :guilabel:`Select` tool, in the column of buttons on the left." -msgstr "" - -# b1ee064287ae42e9a398b1c519258c74 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:335 -msgid "" -"Select one of the objects that you drew with the :guilabel:`Draw tool`. On " -"the top menu, click :menuselection:`Presets`. Move your mouse through the " -"sub-menu to the type of location you would like to define." -msgstr "" - -# 08fab263bcfb48b8bb4f3f8d652ebb27 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:339 -msgid "" -"When you click on a preset, a form pops up asking you for more information. " -"You do not have to fill in every field, but you may wish to add some " -"important fields, such as the name of the object." -msgstr "" - -# 68f6d34bddec492d8bb2b137ac35dcb3 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:343 -msgid "" -"When you are finished entering the information, click :guilabel:`Apply " -"Preset`. If everything went well, your point, line or shape should change " -"colours or show a symbol. This is because it has now been defined." -msgstr "" - -# a338c0c974ba44fba16c9cd581620886 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:348 -msgid "Exercise:" -msgstr "" - -# c511b4de107f41878bdd4762705d56cd -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:350 -msgid "" -"Now let’s draw a map in order to practise the techniques we've learned. You " -"may wish to redraw the map that you drew on paper in Module 1." -msgstr "" - -# 1b13d6ffbcfa49a7b670e5481f4006a4 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:353 -msgid "" -"Drag the window away from the sample map by holding the right mouse button " -"and dragging your mouse, until you have a nice empty area to draw on." -msgstr "" - -# a6a588bfbfd34027a0a1caa962d91477 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:356 -msgid "" -"Use the Draw tool to create points, lines and shapes. Describe what your " -"objects are by selecting from the Presets menu." -msgstr "" - -# fafc6e396ed943659ec0768de604ad33 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:359 -msgid "" -"When you are finished, you should have your own map, similar to the sample " -"map that we opened in :file:`sample.osm`." -msgstr "" - -# bbb8a1f6e7a7430ea734899f11db0575 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:362 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/104-using-gps.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/104-using-gps.po deleted file mode 100644 index cb707147..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/104-using-gps.po +++ /dev/null @@ -1,847 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-11-22 22:42+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 2bee2cac66624c2e84aca32ab4e609cc -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:5 -msgid "Module 4: Using GPS" -msgstr "" - -# fb12f45a7e994e038d2fad9157922564 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:7 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 5ec7341a299f4a2fa35b0e39683a08ce -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:9 -msgid "Understand GPS and the types of GPS" -msgstr "" - -# 12c83e72f0fb4f79be65dc7042863fd9 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:10 -msgid "Turn on GPS" -msgstr "" - -# 88ca4cc4bf5f4ee49b92f4e07feabd2e -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:11 -msgid "Understand factors that affect GPS accuracy" -msgstr "" - -# 7b95d774fed94f53ab641b8d1e149e41 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:12 -msgid "Understand tracks and waypoints" -msgstr "" - -# b5db5e408a6a4ebcbbbae2407d9ed0f2 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:13 -msgid "Collect data using GPS" -msgstr "" - -# 06d1affdc9dc46d88230f1f30e4eef9d -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:14 -msgid "GPS settings" -msgstr "" - -# 4105f06aae63424a9ca8d517f397d20a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:15 -msgid "Copy GPS data (tracks and waypoints) to computer" -msgstr "" - -# d7519d9336a741aab4b43600d15beef3 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:16 -msgid "Open waypoints and tracks in JOSM" -msgstr "" - -# ffa9c562923b4c4bab16833f7a527586 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:17 -msgid "Upload GPS tracks using JOSM" -msgstr "" - -# c033133c2d7d400695f38b5cf4d1102a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:18 -msgid "Edit OSM based on GPS data in JOSM" -msgstr "" - -# 6515a5b5aff74f2a8d30273e729261ec -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:20 -msgid "" -"In this module we see what a GPS does and how it works. We explore how to " -"operate a GPS and how to use it to create maps. We will explain how to " -"operate the Garmin eTrex Vista HCx, a common GPS used for mapping. There are " -"many other models of GPS which do the same thing, so if you are working with " -"a different one, don’t worry - the principles remain the same." -msgstr "" - -# 9bf6ada973e74a218a6c21655d0fb0cb -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:28 -msgid "1. What is GPS?" -msgstr "" - -# cefd861fe6bb403397c1dc1875d55da7 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:30 -msgid "" -"A GPS is like a mobile phone, except that instead of receiving radio signals " -"from telephone companies, it receives signals from satellites that are going " -"around the Earth. By receiving these signals from the satellites, a GPS is " -"able to calculate its exact location on the planet. It records this location " -"in coordinates, which are two long numbers. One number tells you how far " -"east or west you are - this is called **longitude**. The second number tells " -"you how far north or south you are - this is called **latitude**. Every " -"place on Earth has unique geographic coordinates." -msgstr "" - -# cea78f7f6dda44cf9c4212595bb5023c -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:39 -msgid "" -"For example: -8.639298 Latitude, 116.311607 Longitude is a location in " -"Lombok, Indonesia." -msgstr "" - -# 4d2145eec5734f6c924f7c9f741cc877 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:45 -msgid "" -"*Google Earth software, showing coordinates of a place in Lombok, Indonesia.*" -msgstr "" - -# e244a0495b8041f9b29a1a4349073fa2 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:51 -msgid "*Garmin eTrex Vista HCx*" -msgstr "" - -# 69e5a5650db942e3828c7c68165df6d0 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:54 -msgid "2. Turning on the GPS" -msgstr "" - -# 8184c5fcf3a74185abf964e40dfdb061 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:56 -msgid "" -"Before turning on your GPS, go outside where you have a clear view of the " -"sky. Because the GPS determines your location by receiving signals from " -"satellites, **it won’t work indoors**." -msgstr "" - -# 7016dbead24e456d85f373c909d1583a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:60 -msgid "" -"On the right side of the GPS, press and hold the :guilabel:`Power` button. " -"The GPS will start, and it will show you the Satellites page. You should see " -"something like the image below. The GPS is looking for satellite signals. " -"When it has connected to three or more satellites, it will have your " -"location." -msgstr "" - -# 980b87228f5a4d58aa101d70bd0ee01b -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:69 -msgid "" -"Once your location is determined, the Satellites page will disappear and you " -"will see the Main Menu." -msgstr "" - -# 6b123c94d218446f884bede2f03dff8b -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:77 -msgid "3. Navigating the GPS" -msgstr "" - -# 20705f4a0c7e4625b9a7894cf8e88f7b -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:79 -msgid "" -"The GPS has different pages and menus that allow you to do different things. " -"To switch between pages, press the button marked :kbd:`X`, just above the " -"power button on the right side of the device. This button also serves to go " -"back. If you press something by mistake and would like to cancel or go back, " -"press the :kbd:`X` button." -msgstr "" - -# d4482897f95b446b904e1246b8e5ad48 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:85 -msgid "" -"By pressing the :kbd:`X` button, you should be able to flip through " -"different screens that will look something like this:" -msgstr "" - -# 52c691ba7f394e39a1cfc79e1caec6ac -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:104 -msgid "" -"Return to the Satellites page and see that you are connected to three or " -"more satellites. In the upper left corner are your coordinates, your " -"latitude and longitude." -msgstr "" - -# 19c63a323625419f8324117ed551ef14 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:108 -msgid "" -"Flip to the Map page, and you can see a map of where you are. If you have " -"added OpenStreetMap maps to your GPS, you may see roads and places. " -"Otherwise, the map may look quite blank. Zoom in and out by pressing the up " -"and down arrow buttons on the left side of the GPS." -msgstr "" - -# d4347cee5bf941818bb01415ffd46f70 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:114 -msgid "4. Tracks and waypoints" -msgstr "" - -# 8f22126f02fb4b47b8a79cf9531984a1 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:116 -msgid "" -"A GPS records two kinds of information that are useful for creating maps or " -"saving the coordinates of a place. First, it allows you to save your " -"location in the memory of the GPS. When you save a location, the coordinates " -"will be saved with a name. For example, your first saved point will be named " -"001, the second 002, and so on. When you save a point, you can write down " -"the number on a piece of paper, along with a note about what it is, and any " -"attributes or indicators you would like to collect. Saved locations on your " -"GPS are called waypoints." -msgstr "" - -# ae4ef85c47f94e3dae133901b9996eae -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:126 -msgid "" -"Second, a GPS can save what are called tracks. While a waypoint only saves a " -"single location, a track will save a series of locations wherever you move. " -"For example, a track will record your location every one second, or every " -"one metre, and the result will be a series of dots that show the path of " -"where you have been. Tracks are useful for mapping objects that are " -"represented by lines or shapes, such as the course of a road or the shape of " -"a field." -msgstr "" - -# 2cc62f04e8de480a92236df1f0664f4d -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:138 -msgid "" -"A GPS can record a single point as well as a path of where you travel. Here " -"the points are numbered in the order they are recorded. The path or " -"**track** is shown with a green line and the **waypoints** are shown in red." -msgstr "" - -# 45b3e8ba541b406c9c2500c1778162e0 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:144 -msgid "5. Saving Your location" -msgstr "" - -# 040dbaea4ba44b5ebc4f377af2ebfc71 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:146 -msgid "" -"To save your current location as a waypoint, click the :kbd:`X` button until " -"your reach the Main Menu. Using the joystick, move it so that :guilabel:" -"`Mark` is highlighted on the screen. Push the joystick button down to open " -"the Save Waypoint page." -msgstr "" - -# d1dd904601104b6e94478f98416c7777 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:159 -msgid "" -"You can see on this page some information about the waypoint that you are " -"saving. First is the name. If this is your first waypoint, it probably reads " -"“001”. This is the number you should record on paper along with the " -"information you want to collect with this object. Next you will see the time " -"and date when the point is recorded. Below that are the coordinates, " -"followed by the altitude." -msgstr "" - -# 6e1ece11fbfa4537b70ccf8b8a22b4f0 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:166 -msgid "" -"Use the joystick to move to the :guilabel:`OK` button at the bottom of the " -"screen. Press the joystick button down to save this point. Be sure to write " -"down the number of the point, along with what the place is and any other " -"information you want to record about the place in your notebook." -msgstr "" - -# b7af37a5032d4f59be8837f0124ef7d0 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:171 -msgid "" -"Press the :kbd:`X` button to go to the Map page. You should now see your " -"point on the map." -msgstr "" - -# 970dcff22bf14e2e9c27886aaa51c14f -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:177 -msgid "6. Turning on the Track Log" -msgstr "" - -# 62430738f836419ca2144e8d40e28313 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:179 -msgid "" -"Now that we have learned how to save points, let’s learn how to turn the " -"track log on and off. When the track log is turned on, it will automatically " -"record your path. It’s good practice to turn on the log when you begin " -"mapping, and turn it off when you are finished. You will then be able to " -"look at the track on a computer and see the path that you mapped. If you " -"would like to map the course of a road, it is a good idea to save a waypoint " -"at the beginning and end of the road, writing in your notebook the name and " -"type of the road, and any other important information about the road." -msgstr "" - -# 25a4de21f20a495fac71021b085d7796 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:189 -msgid "" -"Click the :kbd:`X` button until your reach the page that says Track Log." -msgstr "" - -# ddf1c644a4fd4c7c8760fffa3ff014ec -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:196 -msgid "" -"To empty the track log (to delete earlier recordings), use the joystick to " -"select :guilabel:`Clear`, and press the joystick down. The bar at the top " -"should read “0%”." -msgstr "" - -# 0fbc851f9ccf45db9ea14ba608af9de7 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:200 -msgid "" -"To turn on the log, move the joystick to highlight :guilabel:`On`, and press " -"the joystick down. The track log is now recording your path." -msgstr "" - -# cf5069618c154a41a67d708c65cc7019 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:203 -msgid "" -"Under :guilabel:`Setup`, you also can set time or distance intervals to " -"track. Time intervals instruct your GPS to record your location at given " -"intervals. If you have a memory card in your GPS, it is good practice to set " -"this to one second, meaning that every second your location will be added to " -"the track log. This may be useful when detailed surveys are needed." -msgstr "" - -# 06c45b720c5d4ee0ac85f81b41d20ec9 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:210 -msgid "" -"See :ref:`GPS Settings ` for more information on " -"setting up the track log." -msgstr "" - -# 0a13dedec613431a94396fc7fc51e6cb -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:213 -msgid "" -"Press the :kbd:`X` button to go to the Map page. As you move you will see " -"your track shown as a series of dots." -msgstr "" - -# 52e014cdbb214b5e870a3b3d5317c79a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:217 -msgid "7. GPS settings" -msgstr "" - -# 560b2265fa8640ef82cfe4cb31d4592e -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:219 -msgid "" -"Here we demonstrate how to edit some of the core settings of the GPS device. " -"Use this as a reference to set up your GPS properly." -msgstr "" - -# e92a6226ad64413983481dfa72b6dd56 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:223 -msgid "7.1. System settings" -msgstr "" - -# 353bdb384dee4064a380073c7f2aebe8 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:225 -msgid "" -"Go to the Main Menu by using the :guilabel:`Page` button (the :kbd:`X` " -"button on the right side of the device). Use the joystick to click :guilabel:" -"`Setup`, and then click on :guilabel:`System`." -msgstr "" - -# 89a008a4ff044737b0824ffe806e94b4 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:237 -msgid "" -"Some of the settings that can be changed on the :guilabel:`System` menu are " -"as follows:" -msgstr "" - -# 238247eb9fe945a084522be8bd1be147 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:240 -msgid "" -"**GPS**: regulates how the GPS sensor works. Choose the :guilabel:`Normal` " -"option. This tells the device to capture only signals from GPS satellites. " -"The only drawback is that positional accuracy may sometimes be less accurate " -"(about 10-30 metres)." -msgstr "" - -# 56256dab97ca406c83d5c2f6c4ca0954 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:245 -msgid "" -"**WAAS/EGNOS**: WAAS stands for Wide Area Augmentation System, while EGNOS " -"stands for Euro Geostationary Navigation Overlay Service. WAAS/EGNOS is a " -"system of satellites and ground stations that provide GPS signal " -"corrections, giving you a better position accuracy (to less than three " -"metres). Ensure that it is :guilabel:`Enabled`. The drawback to this feature " -"is that although it provides better accuracy, it will use the GPS battery " -"more quickly." -msgstr "" - -# f14a1672b2c64598bda928258ea6bb69 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:256 -msgid "" -"**Battery Type**: To optimise power usage, this should match the type of " -"battery in the device. The default is Alkaline." -msgstr "" - -# ee8a8ad11ba34c339c91439aea760cbe -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:259 -msgid "**Text Language**: Choose the language for the device." -msgstr "" - -# 5256182055dc41258f32052a27854404 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:266 -msgid "7.2. Unit settings" -msgstr "" - -# 9e829fe5399647c4b80235cd313eba2f -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:268 -msgid "" -"From the Main Menu, go to :menuselection:`Setup ‣ Units`. Here the type of " -"measurement units can be set, such as metres, feet and more. The location " -"unit format is also set here (decimal degrees, decimal minutes degrees, " -"second minutes degrees), datum (standard WGS 84) and projection (standard " -"WGS 84)." -msgstr "" - -# 9a2c756da73043ff9904147bb0990bb5 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:283 -msgid "7.3. Time settings" -msgstr "" - -# 240968d716cd4502a1f2877384558cb9 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:285 -msgid "" -"From the Main Menu, go to :menuselection:`Setup ‣ Time`. Here the time " -"format is set (12 hours or 24 hours) as well as the time zone. It is good to " -"have the local time set, because all tracks and waypoints saved in the " -"device are also saved with the current time." -msgstr "" - -# 80a33a771fc24c8fab6cf4435e8f563e -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:299 -msgid "7.4. Page settings" -msgstr "" - -# 964303da31384ad8b418e22cef8dd0b1 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:301 -msgid "" -"Remember that when you press the :guilabel:`Page` button (the :kbd:`X`) you " -"are able to switch between different menus. By editing the page settings, " -"the pages, as well as their order, may be customised." -msgstr "" - -# 69269df59ece41db8b0660b501011a3f -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:305 -msgid "From the Main Menu, go to :menuselection:`Setup ‣ Page Sequence`." -msgstr "" - -# c30734ab09f644c5b981178d04488581 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:307 -msgid "" -"Add a new page to the list by selecting :guilabel:`Add Page`. Then select a " -"page such as: :guilabel:`Tracks` (to see details of your trip), :guilabel:" -"`Map` (to view maps), or :guilabel:`Satellite` (to view the satellite " -"status, position, and accuracy)." -msgstr "" - -# 6945397083974bee9dd1b91c6dd42621 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:312 -msgid "" -"Click on one of the pages to move it around the list and change the order in " -"which the pages flip." -msgstr "" - -# 4b50771c070947219d2535b1e5d02169 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:327 -msgid "7.5. Track settings" -msgstr "" - -# e2f561e1b03f4d6f9cb9cd64ae47b843 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:329 -msgid "" -"Remember that :ref:`tracks ` are a bread-crumb trail " -"recording your movement, which is useful for mapping roads. On the Track " -"page there are several settings." -msgstr "" - -# b5fd2b4f4af04020a8c9f8101453ff1e -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:333 -msgid "From the Track page, click :guilabel:`Setup`." -msgstr "" - -# 43bf11fd96e24061b432735c9f74eb5a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:339 -msgid "The settings are as follows:" -msgstr "" - -# 7a504c1d984244ef929fd2529da9f892 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:341 -msgid "" -"**Wrap When Full**: This option should be checked. It means that when the " -"GPS runs out of internal memory, it will start overwriting the oldest " -"trackpoints to record new ones. It is a good idea to keep this checked, " -"although typically you will be recording tracks to a memory card anyway, " -"making this option unimportant." -msgstr "" - -# 7e5cf265891b49f8b96fb8e2d4c04571 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:347 -msgid "" -"**Record Method**: There are several ways the GPS can record track points:" -msgstr "" - -# 5f76abe5dca949bda5ac1a9e0a1ae110 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:349 -msgid "" -"*Distance*: tracks a new point each time a certain distance has been covered" -msgstr "" - -# d2cb8b8c98f84677b02de77fbd795b06 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:350 -msgid "*Time*: tracks a new point when an amount of time has elapsed" -msgstr "" - -# d5b97f8f1fc34cae8f573fafa3670711 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:351 -msgid "*Auto*: automatically choose method (typically this should be selected)" -msgstr "" - -# 91474a4351c64192847615169bc016fc -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:353 -msgid "" -"**Interval**: This setting indicates how often the GPS will record the " -"track, depending on the method selected in **Record Method**. Using a high " -"setting (collecting many points) here will result in tracks that are smooth " -"and detailed but will also drain the battery faster. If **Record Method** is " -"set to *Auto*, the **Interval** options will be as follows:" -msgstr "" - -# dc2408aa02c542348b7d7d360d1894da -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:359 -msgid "*Most often*" -msgstr "" - -# 135f58b9bc0f4b5ca86c9a9862adcbd8 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:360 -msgid "*More often*" -msgstr "" - -# 96a220dac8e9422ba2b6baf4a46d5bca -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:361 -msgid "*Normal*" -msgstr "" - -# 23b0b7f4365a48539391ec398f872fd9 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:362 -msgid "*Less often*" -msgstr "" - -# 94aeb4de6ac54dce85e7c80e2d569201 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:363 -msgid "*Least often*" -msgstr "" - -# 2f9b0128cde148fc8070cf7eb4520c97 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:365 -msgid "" -"If **Record Method** is set to *Distance* or *Time*, the options will allow " -"you to set a matching unit of measurement." -msgstr "" - -# bc14ba29cc844de09e73bcaaf1812261 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:368 -msgid "" -"**Color**: This setting is for defining the colour of the track line as " -"shown on the GPS map page." -msgstr "" - -# f5d0720d08574759aa238987eac9059a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:377 -msgid "8. Copying waypoints and tracks to the computer" -msgstr "" - -# 0dbd4c3d89254374bc6d51d218f95bf4 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:380 -msgid "8.1. Attaching GPS to the computer" -msgstr "" - -# 874fa508f5934637a584a320aab533bd -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:382 -msgid "" -"When you are finished mapping with the GPS you will want to copy the points " -"and tracks to your computer so that you can open them in JOSM." -msgstr "" - -# 45a11a01023d4449af5930ee113ce245 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:385 -msgid "" -"First, turn off the track log on your GPS by going to the Track page and " -"selecting :guilabel:`Off`." -msgstr "" - -# 7734321fe5f74884b5a1947e6e56bacd -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:388 -msgid "" -"Attach the GPS to your computer with the cable. One end should plug into " -"your computer’s USB port, and the other goes into the back of the GPS, " -"beneath the rubber flap at the top. The GPS should be turned on to copy the " -"points and tracks." -msgstr "" - -# f19bab8f3bc74e3abd85790f7c802c24 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:395 -msgid "8.2. Installing GPS drivers" -msgstr "" - -# 0be198b36ade428598eee32639c85a31 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:397 -msgid "" -"You may need to install GPS drivers on your computer. Open your training " -"folder and find :file:`software/USBDrivers_23.exe`. Double-click it and " -"install." -msgstr "" - -# 922b32c22f0140a3ab0070bc7b981346 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:401 -msgid "" -"If you don’t have this file, you can download it. Open your internet browser " -"and go to: `http://www8.garmin.com/support/download_details .jsp?id=591 " -"`_" -msgstr "" - -# 4d2d9d23e3044acaa36eaf6ec89532e0 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:405 -msgid "" -"Click :guilabel:`Download` to get the installation file. Locate it on your " -"computer, and double-click to install." -msgstr "" - -# 528fce120c404d3a84cef4c5b1bb1c7d -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:410 -msgid "8.3. Getting the GPSBabel setup program" -msgstr "" - -# de20e8f2f0b840a5b499e9271c3fb6d8 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:412 -msgid "" -"GPSBabel is a program that allows us to copy data from the GPS. It is saved " -"as :file:`GPSBabel-1.5.1-Setup` in the :file:`software` folder (the exact " -"version number may be different)." -msgstr "" - -# 555d9d43435c4c88b8d6a51773e3c739 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:416 -msgid "" -"If you don’t have GPSbabel already, open your web browser and go to `www." -"gpsbabel.org `_." -msgstr "" - -# 893c2cfa21fd4d86a3cf4c63587c07ba -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:419 -msgid "Click :guilabel:`Downloads` at the top of the page." -msgstr "" - -# 69de5503b6344676b0774e70c27c781b -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:421 -msgid "" -"Scroll down the page. If your computer uses Windows, you want to download " -"the installation file for Windows. Click :file:`GPSBabel-1.5.1-Setup.exe`. " -"The file will be downloaded to your computer." -msgstr "" - -# e8841d3a8e3c4afeac4b2f6530c88666 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:428 -msgid "8.4. Installing GPSBabel" -msgstr "" - -# 640871c01067464aaf7b28ea5212d0f3 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:430 -msgid "" -"Locate the GPSBabel setup file on your computer. Double-click it to install." -msgstr "" - -# c89e91bff0c74d0489c75e439ed312e8 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:432 -msgid "Click :guilabel:`Next`." -msgstr "Clickez :guilabel:`Suivant`." - -# e2975f54242348be96af33501ff29f9f -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:434 -msgid "Click :guilabel:`I accept` and :guilabel:`Next`." -msgstr "" - -# 1485919fa7eb4f54a39b52f9e649fa87 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:436 -msgid "Continue clicking :guilabel:`Next` until the program installs." -msgstr "" - -# d83657b2d04f4f13a6e0445509162480 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:438 -msgid "" -"When the program has finished installing, click :guilabel:`Finish` to start " -"GPSBabel." -msgstr "" - -# 847d7c2bca8e453b9ef13d6801820116 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:443 -msgid "8.5. Copying Tracks and Waypoints" -msgstr "" - -# 1750918deb144149bc6409ee9597853c -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:445 -msgid "" -"Click in the circle next to the word :guilabel:`Device` at the top of the " -"window." -msgstr "" - -# 1d1f164c10fe40fa94135ac24d870c84 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:452 -msgid "" -"In the drop-down menu labelled :guilabel:`Format`, select :guilabel:`Garmin " -"serial/USB protocol`" -msgstr "" - -# ccdf242887274a3ea0bc391925cf5680 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:455 -msgid "" -"Go down to the middle of the window, under :guilabel:`Output`. In the drop-" -"down menu labelled :guilabel:`Format`, select :guilabel:`GPX XML`:" -msgstr "" - -# 5a9fa35985f24a74ad740b9416cd3fdd -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:462 -msgid "" -"Click :guilabel:`File Name` and type a name for your saved file. It should " -"be something that describes the data, such as the date and the location. For " -"example: :file:`jakarta-07-07-2011`." -msgstr "" - -# 95d1b3d52a644c7687060ad2af5ce57b -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:466 -msgid "Make sure your GPS is connected to the computer and turned on." -msgstr "" - -# e3e431d379e541fe947ca5244c18b2a4 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:468 -msgid "Click :guilabel:`Apply` in the bottom right corner of the window." -msgstr "" - -# ee54df3a0a1c4d4abddeb2e9fd0538f7 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:470 -msgid "" -"If all goes well you should see a bar move across the screen, indicating " -"that the data is being retrieved from the GPS. When it is finished, your " -"points and track will be saved in the file that you selected." -msgstr "" - -# 0a635c66c257454fbc1b56a260ab108a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:476 -msgid "8.6. Opening in JOSM" -msgstr "" - -# 11ad7eab053f46f495b3cddea02d83e5 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:478 -msgid "Now open JOSM. Go to :menuselection:`File ‣ Open...`" -msgstr "" - -# 442ee4d47674450ab3de677150978e64 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:480 -msgid "" -"Find and select the file that you created with GPSBabel. Click :guilabel:" -"`Open`." -msgstr "" - -# 7505e68fbb0942c289cac5fb395cf8a8 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:483 -msgid "You should now see your points and tracks loaded into JOSM." -msgstr "" - -# c1bf8b128c3b4d76abfdc84a0280b71f -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:490 -msgid "9. Uploading GPS data in JOSM" -msgstr "" - -# 2a86af697bd041c4ae8b2c446c1ae22c -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:492 -msgid "" -"If you are not interested in sharing your tracks publicly on OSM, feel free " -"to skip this section." -msgstr "" - -# 4b0f84a3cdef461088d6c4d5880e5315 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:495 -msgid "" -"Adding GPS tracks to the OSM server is useful because it enables other users " -"to see and use your tracks. For those who do not have a GPS or who can't " -"access a location, they are still able to benefit from your work and help " -"improve the map." -msgstr "" - -# 28b2ba79ce15408794fab7d827317faf -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:500 -msgid "" -"The easiest way to upload GPS tracks is to download the JOSM plugin :" -"guilabel:`DirectUpload`:" -msgstr "" - -# 84dc13cb47c947c2ab76260c035b65fe -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:503 -msgid "" -"Open JOSM and go to :menuselection:`Edit ‣ Preferences`. Click the plugins " -"tab." -msgstr "" - -# b1c24b248abe473f9a4dd5ec095a9319 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:506 -msgid "" -"Type :kbd:`directupload` in the :guilabel:`Search` box. Check the box next " -"to the plugin, and then click :guilabel:`OK`." -msgstr "" - -# b14af88ae6dd4577a65239457afdb3d2 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:513 -msgid "Restart JOSM." -msgstr "" - -# 16d8f71a05a6465cad1fcfa3b3f22f75 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:515 -msgid "Open your GPX file in JOSM." -msgstr "" - -# c3d97a0a9e914080b4f944f05c487a1b -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:517 -msgid "Go to :menuselection:`Tools ‣ Upload Traces`" -msgstr "" - -# 3393568f90124a30a9f7e5e339e33a72 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:522 -msgid "" -"Add tags, a description, and choose an option for whom to make the track " -"visible. Unless you have a reason for doing otherwise, choose :guilabel:" -"`Public`." -msgstr "" - -# 3cbe1ced9bc040e791378b7f314e7e9c -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:529 -msgid "" -"Click :guilabel:`Upload Trace`. If requested to enter a username and " -"password, enter the credentials of your OSM account and click :guilabel:" -"`Authenticate`." -msgstr "" - -# b6c80addcf0642868923b6da561f32bc -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:535 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/105-field-papers.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/105-field-papers.po deleted file mode 100644 index a1b44539..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/105-field-papers.po +++ /dev/null @@ -1,445 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-11-22 22:41+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 0df337fab1f940b29b6533cc21672a5b -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:6 -msgid "Module 5: Field Papers" -msgstr "" - -# cca7cb3d3c664af69e68eb758f26701c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# e3119ad4a2b54e58a34c489d5cc1a90e -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:10 -msgid "Understand how to use Field Papers" -msgstr "" - -# ad3d6dcf0e1d436ba0df0e2816eae85c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:11 -msgid "Make and print Field Papers" -msgstr "" - -# ef1f77b48a014e05bb3820e9b9259272 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:12 -msgid "Add information to Field Papers" -msgstr "" - -# 491236f9316d490685256ae560f156bc -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:13 -msgid "" -"Scan and upload Field Papers to `fieldpapers.org `_" -msgstr "" - -# d9a6150e108c44e5ad4aaa220066e5ad -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:14 -msgid "Open Field Papers in JOSM" -msgstr "" - -# 930137a250cb47de9be8d2273e7a87e8 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:16 -msgid "" -"In this module we will see how it is possible to record the coordinates of " -"places without a GPS. We will use a tool called Field Papers, which allows " -"you to print a map of an area, draw on it and add notes, and load the paper " -"back into JOSM, where you can add your locations to OpenStreetMap." -msgstr "" - -# 24159dc45c1d4326a20815a29bff8215 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:23 -msgid "1. Overview" -msgstr "" - -# 57d3d07b29374c6ea6cefe6a4ec8efdd -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:25 -msgid "" -"Before going into detail about Field Papers, let’s look at an overview of " -"how the process works:" -msgstr "" - -# 700da5a90f1d4fd0a91e36f4dc679d85 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:28 -msgid "" -"**Step 1:** Locate the area you want to map on the Field Papers website. " -"Print out a map of this area. You can choose to print the current map of the " -"area with OSM, or you can choose to print aerial imagery, if it is available " -"in your area." -msgstr "" - -# b3fe28b5d2f342ae92fa61d640093d37 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:33 -msgid "" -"**Step 2:** Use your printed map to survey the area. Add more places by " -"drawing them on the map. Draw lines for roads, shapes for buildings, and so " -"forth. Write notes about each location directly on the map, or write numbers " -"on the map that relate to numbers in your notebook, where you can record " -"more detailed information about each object." -msgstr "" - -# 9e393b38e439431f905bce9d92d5c84c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:42 -msgid "" -"**Step 3:** Scan your paper into the computer. If you do not have a " -"scanner, you can take a photograph of the paper, if your camera is able to " -"take high quality pictures. Upload the image to the Field Papers website " -"(`http://fieldpapers.org/upload.php `_)." -msgstr "" - -# 80adf9c8ebbd400b81923520e51d1de0 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:47 -msgid "" -"**Step 4:** In JOSM, load the Field Paper. Use the objects you drew as a " -"reference to add them digitally into OSM." -msgstr "" - -# 6d3b556d56914fb89cceeadfb77e66ab -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:54 -msgid "2. How does Field Papers work?" -msgstr "" - -# 068001743b824d818af00bf1a27fcf34 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:56 -msgid "" -"If you follow the Field Papers process described above, you will be " -"collecting accurate geographic coordinates of places with nothing more than " -"paper. How is this possible?" -msgstr "" - -# f68cec64fe90425abf8c3a1a6a7a0aa1 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:63 -msgid "" -"When you print a Field Paper, it comes with a square barcode on the bottom " -"of the page. This bar code allows Field Papers to determine the exact " -"location of the map that you are using to survey. Later, when you load the " -"paper back into JOSM, all the objects that you drew will be in shown in " -"their actual locations, or at least quite close, which is good enough for us." -msgstr "" - -# fa51b850df7c4ce1a4a4ab3987157853 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:70 -msgid "Next let’s learn how to create and use Field Papers." -msgstr "" - -# 95795e8cf8a043c08bd17086b8631757 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:73 -msgid "3. Create and print" -msgstr "" - -# 73457461fed340a8b472ea4a26dc40ff -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:75 -msgid "" -"Open your web browser - this may be Firefox, Chrome, Opera, or Internet " -"Explorer." -msgstr "" - -# 29a972add0fb4914a17208edaa3a2025 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:78 -msgid "" -"In the address bar at the top of the window, enter `http://fieldpapers.org/ " -"`_ and press :kbd:`Enter`." -msgstr "" - -# fafa097e0a9f43238c5227a9a6efac1e -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:82 -msgid "The website should look something like this:" -msgstr "" - -# cbe300fced2b4f59a3055e91f5d0a45a -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:87 -msgid "Click :guilabel:`Make yourself an Atlas`." -msgstr "" - -# 0ad65dc8d2894bd28a2a1a279f9faa1c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:89 -msgid "" -"Enter the name of a place where you would like to print out a map, and " -"press :kbd:`Enter`. In this example we will search for :kbd:`jakarta`." -msgstr "" - -# c47e31f9c380454f8c3a81262c0f8b44 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:95 -msgid "" -"Now you are presented with an interface where you can define the boundaries " -"of your Field Paper. The map that you see shows the area that you would like " -"to print on paper. You can print multiple pages, zoom in and out, and drag " -"the papers to cover specific boundaries on the map." -msgstr "" - -# f2802f013b014296a5a3c4542f8e3a20 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:103 -msgid "" -"Click on the various buttons to see what each does. Notice that in our " -"example we are presented with a two page set of Field Papers. To add or " -"subtract a page, click on the :guilabel:`+` and :guilabel:`-` buttons on the " -"map. It may be easiest to create only one page the first time that you use " -"Field Papers." -msgstr "" - -# e0502b80467b475ebe1cf61cf3d02a82 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:112 -msgid "" -"Expand or decrease the area of the papers by dragging the button in the " -"lower right corner." -msgstr "" - -# bda315741c2049b78bbd9146c320db7c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:118 -msgid "" -"Move the paper by clicking and dragging the button in the upper left corner." -msgstr "" - -# ce52ab5df3814015bc0c5b42bf069a4b -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:123 -msgid "" -"Adjust the paper orientation and type of map using the controls at the top." -msgstr "" - -# dfb5f495c6034933bf43e4b9fc91944f -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:128 -msgid "When you are finished adjusting the parameters, click :guilabel:`Next`." -msgstr "" - -# cc951197260040838f791ec6610d2c10 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:130 -msgid "" -"Give your map a name, and if you want, you can add notes to be printed on " -"the map, such as questions you want to remember to answer or specific places " -"you want to identify. Then click :guilabel:`Next`." -msgstr "" - -# 084bf5c9385b4ed0bb77b9423f2fb2a0 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:134 -msgid "" -"Finally choose your layout. Indicate whether you want pages only for your " -"maps, or if you want notes on the same page. If you choose the notes option, " -"then half of the page will be left for taking notes, and the other half will " -"contain the map." -msgstr "" - -# ca530a64eddf46d0949824eb53e80d73 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:142 -msgid "It may take a few minutes to prepare your Field Paper." -msgstr "" - -# 0dc3833bf6874d36828911ac946f83b3 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:147 -msgid "" -"When the print is ready, scroll to the bottom and click :guilabel:`Download " -"PDF`. The Field Paper should begin downloading. If it loads in your browser, " -"you may need to save it by going to :menuselection:`File ‣ Save`." -msgstr "" - -# 304e71bcbd4a4f58953344305ab6dfd3 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:152 -msgid "" -"When the download is finished, open the PDF file. Connect your computer to a " -"printer and print the page. If everything goes well, you should now have " -"your map printed on paper." -msgstr "" - -# 1faa35e506664c4a96ab651413c0248c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:157 -msgid "4. Map with Field Papers" -msgstr "" - -# e23aab99e06840ffb7095775fc9568e9 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:159 -msgid "" -"Take your Field Paper outside, and use it as a guide to walk and identify " -"new places that are not on the map." -msgstr "" - -# 1a743755fc464ceb883d6feec54b7162 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:162 -msgid "" -"Draw lines for roads, shapes for buildings, and so forth. Write notes about " -"each location directly on the map, or write numbers on the map that relate " -"to numbers in your notebook, where you can write more detailed information " -"about each object." -msgstr "" - -# f3e363ea4c8d4cf9a42f8c2c9f7d7e0c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:167 -msgid "" -"When you are satisfied with your additions on the paper map, then you are " -"ready to add them digitally into OSM." -msgstr "" - -# 630ec5b173a249a8bf668900e58182e5 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:171 -msgid "5. Scan and upload" -msgstr "" - -# ef317c27c5e04c34b3c1a5a70cd37c33 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:173 -msgid "" -"Field Papers are useful for mapping with nothing more than paper, but they " -"are not 100% magic. We will still need to add our paper into JOSM, add our " -"information digitally and save the changes on OSM." -msgstr "" - -# 3285b35d7a9f4a3cba345ef385c6eca6 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:177 -msgid "" -"The first step is to scan your Field Paper. Do this by attaching a scanner " -"to your computer, scanning the paper and saving it as an image file. If you " -"don’t have a scanner, take a photograph of the paper, but be careful to take " -"a good quality photo. Make sure that the paper is flat and the camera is " -"directly in front of it. Be sure to include the barcode in the image, as " -"Field Papers will not work without it. Here is an example of a scanned/" -"photographed image:" -msgstr "" - -# 8fd2032ed3594abf866c8ca65b3401d3 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:189 -msgid "" -"Once your Field Paper is scanned and saved on the computer, open your web " -"browser and return to the http://fieldpapers.org/ just as before." -msgstr "" - -# 5b3e426d1f214718bacecf439b277525 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:193 -msgid "Click the :guilabel:`Upload` tab at the top of the page." -msgstr "" - -# 98a18bd0765f4d9f9b302acdfe989d7f -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:198 -msgid "" -"Click :guilabel:`Choose File` and navigate to the file where you scanned/" -"photographed your Field Paper." -msgstr "" - -# 27e3383959a34cc796f489a7f24a5467 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:201 -msgid "" -"Click :guilabel:`Upload`. It may take a few minutes for the paper to upload, " -"depending on the speed of your internet connection." -msgstr "" - -# 936a4cb6a894415e93f5b34e48fcfacb -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:207 -msgid "" -"You’ll be able to add additional notes to your Field Paper, but we will skip " -"this for now. Click :guilabel:`Finished`." -msgstr "" - -# fd2edf6c48ee4dddb1cc70c52e171a51 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:214 -msgid "6. Open in JOSM" -msgstr "" - -# fc51d52494334502a2e218a7fc0573d4 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:216 -msgid "" -"When the scan has been processed, it can be added as a background layer in " -"JOSM. To display Field Papers in JOSM, the fieldpapers plugin must be " -"installed." -msgstr "" - -# 4264a988558a43389921192a82b5ef08 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:220 -msgid "Open JOSM and go to :menuselection:`Edit ‣ Preferences`." -msgstr "" - -# b97b6a6c32b44e428048f0e44852cca8 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:222 -msgid "Go to the :guilabel:`Plugins` tab." -msgstr "" - -# 94f1a6816a814d0389a91ab7db5d7792 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:227 -msgid "" -"Type :kbd:`fieldpapers` in the :guilabel:`Search` box. After it is found, " -"check the box next to it. Click :guilabel:`OK` and restart JOSM." -msgstr "" - -# b754ae25bf434469baf28c35413d86c7 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:233 -msgid "" -"Open your browser and go to the `Field Papers website `_." -msgstr "" - -# e8979556793f4819a66907ba4fa1ec0d -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:235 -msgid "" -"Click :guilabel:`Watch`. Then move your mouse to the bottom and click :" -"guilabel:`Snapshots`." -msgstr "" - -# c5dadf10f5ea478b9910d7fe1ec0116e -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:241 -msgid "" -"You will see all of the Field Papers that users around the world have " -"uploaded. Find your image, and then click on it." -msgstr "" - -# fb5ded3b9e744dde806265377ae8c84b -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:244 -msgid "" -"We need the URL to load the Field Paper into JOSM. The URL is the web " -"address at the top of the page, which will be something like: *http://" -"fieldpapers.org/snapshot.php?id=67v87z5n#18/-5.15534/119.43913*" -msgstr "" - -# 7dde7a24aba14668a7373f322ed3c6cd -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:248 -msgid "Copy the URL by selecting it and pressing :kbd:`CTRL + C`." -msgstr "" - -# a950533a490c4e529b0e5de4f73d79e7 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:253 -msgid "" -"Open JOSM. Since you installed the plugin, there should be a new Field " -"Papers menu at the top." -msgstr "" - -# ac7649c60db845f4bd93e9d74377c9ee -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:256 -msgid "" -"Go to :menuselection:`Field Papers ‣ Scanned Map` and paste the URL by " -"pressing :kbd:`Ctrl + V` on your keyboard." -msgstr "" - -# 7378c40abd624b57ace5d8eee295bb2b -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:259 -msgid "Click :guilabel:`OK`." -msgstr "" - -# 106ba514cbaa4428b8fbfb6b4f814b76 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:264 -msgid "Wait a moment until the Field Paper appears in your JOSM layers." -msgstr "" - -# d11ab442c5b74f48bc4a46af61c14fcb -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:269 -msgid "" -"Now you have a Field Papers layer that can be used as a reference to add OSM " -"data. It is like using imagery to identify objects on the ground, but " -"instead there are detailed drawings and notes from your field survey. Later, " -"when we have learned to access OSM data through JOSM, this can be used as a " -"reference to edit the map." -msgstr "" - -# 1d4f9130f29f43f58dfd6a05eef2c9c0 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:276 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/106-editing-osm-with-josm.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/106-editing-osm-with-josm.po deleted file mode 100644 index c506ea76..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/106-editing-osm-with-josm.po +++ /dev/null @@ -1,692 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-11-22 22:42+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 7d386b612c814222990f7a4483fff9cf -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:6 -msgid "Module 6: Editing OpenStreetMap with JOSM" -msgstr "" - -# cd98997abd7848fb90a901462bba60e2 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 4df5b1c26f2d4271b9886106766b880c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:10 -msgid "Download OSM data in the area you want to edit" -msgstr "" - -# d7220ed1e1a94fa5ade6ee2b153b1089 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:11 -msgid "Select layers" -msgstr "" - -# fe6a3f97700f4b39825d1bf053f5dede -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:12 -msgid "Edit OSM data" -msgstr "" - -# b9f4df3c05b246858c6e721c2633b8a1 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:13 -msgid "Edit and understand tags" -msgstr "" - -# 29db1063dc2449278bcd7d144d95b2f8 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:14 -msgid "Upload OSM data" -msgstr "" - -# 7e45687fb0574eae81e83d87d9f85c24 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:15 -msgid "Save OSM files" -msgstr "" - -# e188c2ecea204e0f9da7e72c4d4a4ade -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:17 -msgid "" -"In :ref:`Module 3 ` we installed JOSM and began drawing " -"our first points, lines, and shapes. We added presets to these objects to " -"attach information about them. At the end, you were able to draw your own " -"map in JOSM." -msgstr "" - -# 64ea211ef8404a3ca1e575706963fcd1 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:22 -msgid "" -"Drawing maps was an exercise to learn JOSM and learn how to draw places on " -"the map. But our maps were not accurate, because we had not yet included " -"location. In the past two modules we have examined two tools, GPS and Field " -"Papers, which allow us to collect actual locations of places. These " -"locations are represented by coordinates." -msgstr "" - -# f4a39013b9224649a87689dbaec4ab6c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:28 -msgid "" -"Drawing a real map, that is, a map where all the points, lines and shapes " -"are in their proper location, is no different than drawing the maps we drew " -"previously. But now, we will utilise our GPS points and tracks, and our " -"Field Papers, to draw similar maps at their correct locations on the planet." -msgstr "" - -# 6d0c47ad28ac47f9bb69bdb9a432588d -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:34 -msgid "" -"In this module we will learn how to edit the map on OpenStreetMap and add " -"our improvements. We’ll learn the basic cycle of mapping on OSM:" -msgstr "" - -# 0775c7f6ed0b468fa4b78cfdb7cd8626 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:37 -msgid "Download data" -msgstr "" - -# c2284db0c0c54476837a0b4ef39e87df -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:38 -msgid "Edit and add objects on the map" -msgstr "" - -# d8ab39dca18e4cb88bad6abccab0668e -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:39 -msgid "Upload changes to OSM" -msgstr "" - -# f5443fbc0ae647bebd06ebc661e837a5 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:40 -msgid "See the changes on the map!" -msgstr "" - -# 3f057ba74d4a4c40883227f0247dbf8c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:43 -msgid "1. Exploring JOSM" -msgstr "" - -# 711470f33f284e06919fba3fc9764e41 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:45 -msgid "Let's begin by exploring a little more in JOSM." -msgstr "" - -# ec5e4804932c41f1944cc5b8c5a0ee42 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:47 -msgid "Open JOSM." -msgstr "" - -# da2b5a13c33f4bbdbb0749e7f008fd06 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:49 -msgid "" -"Load your gpx file (tracks and/or waypoints) and your Field Paper in JOSM, " -"as in the previous modules. It is not necessary to open both, but you can if " -"you want. Refer to the previous two modules if you don’t remember how to " -"open these in JOSM." -msgstr "" - -# 98c8d71674a64ffd9e0c3abea8ee722f -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:54 -msgid "" -"JOSM has many different buttons and panels. We are already familiar with the " -"main window - this is the map window, and it is where most of the action " -"takes place. Here you view, edit, and add to the OSM data." -msgstr "" - -# ac418835d520457783d0e21411789236 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:58 -msgid "" -"To the right of the map window are a series of panels, which each do " -"something different. When you first install JOSM several panels are shown by " -"default, such as :guilabel:`Layers`, :guilabel:`Properties` and :guilabel:" -"`Selection`. When you select a point, line or shape in the map window, it is " -"shown in the :guilabel:`Selection` panel. Information about the object is " -"shown in the :guilabel:`Properties` panel, and the username of the author of " -"that object is shown in the :guilabel:`Authors` panel." -msgstr "" - -# b418be0be28e4a6793b62890306987e7 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:70 -msgid "" -"On the left side of JOSM, there are several toolbars which consist of many " -"buttons. On the uppermost toolbar are different buttons which change what " -"you can do with your mouse. You are already familiar with the first two, " -"the :guilabel:`Select` tool and the :guilabel:`Draw` tool. The other tools " -"make it easier to zoom in, delete an object, draw a shape or create a line " -"that is parallel to another line." -msgstr "" - -# 63a1050e37694ee3b5eb451ecd27977c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:77 -msgid "" -"Below these tools are many more buttons. These buttons control what you see " -"on the right side of JOSM. Using these buttons you can open and close the " -"boxes on the right, such as :guilabel:`Properties`, :guilabel:`Selection` " -"and :guilabel:`Author`." -msgstr "" - -# be78317c504a4855a0d6f313fce23f5c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:83 -msgid "1.1. Downloading OSM Data" -msgstr "" - -# 3653e87ca5a7426ab8b5244d92ee02bf -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:85 -msgid "" -"Remember the cycle of editing OSM described in the introduction of this " -"module? Download, edit, save. Before we can edit the map, we must download " -"the existing OSM data in our area." -msgstr "" - -# fe52ffa498504bfaaf5ab68a1acd73d8 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:89 -msgid "" -"When you open a gpx track or Field Paper, the map window will show what you " -"have opened, and will automatically move to the correct coordinates. Look in " -"the bottom left corner of JOSM. Notice the two numbers, which are the " -"latitude and longitude (coordinates) of your mouse cursor." -msgstr "" - -# 5ddcee47d8f946378dca352e9fb6f5a9 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:97 -msgid "" -"Because our map window is already showing the area that we want to edit, it " -"is easy to download the OSM data for this area. Go to :menuselection:`File ‣ " -"Download from OSM`. This opens the :guilabel:`Download` window. This can be " -"accessed more simply by clicking the :guilabel:`Download` button, shown here:" -msgstr "" - -# f2395ee6ec7c4461956d434fbcb88f22 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:106 -msgid "" -"When the download window opens, you should see a map with a pink box drawn " -"on it. If you don’t see the map, click on the tab marked :guilabel:`Slippy " -"map`." -msgstr "" - -# 6aab33dba876403e8231f09c6de615fa -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:113 -msgid "" -"The pink box represents the area of the map that you would like to download " -"for editing. Unless you have moved the map window since you opened your GPS " -"file or Field Papers, the box should be drawn around the correct area. " -"However if you would like to download a larger area, draw a new box. To do " -"so, click on the map, hold your left mouse button down and drag the mouse to " -"create a box. Release the mouse button to finish drawing the box." -msgstr "" - -# 837ed08c4dfe4a76bc720ff3c4b6bd7b -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:121 -msgid "" -"When you are satisfied with the size and location of the box, click :" -"guilabel:`Download` at the bottom of the window. JOSM will get the data for " -"this area from OSM and open it in your map window for editing." -msgstr "" - -# da85ba3f737c496fbc6fe8878c5f5df3 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:126 -msgid "2. JOSM Layers" -msgstr "" - -# f9df26820cb84cd78a8a4b1daa562c34 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:128 -msgid "" -"Open your GPS file and downloaded data from OSM, if you haven’t already. " -"Notice that when you open a file, add Field Papers or download from OSM, " -"another item is added to the :guilabel:`Layers` panel on the right side of " -"JOSM. Your :guilabel:`Layers` panel may look something like this:" -msgstr "" - -# 52f87bf59afb41679d165af854909cee -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:137 -msgid "" -"Each item in this list represents a different source of data that is open in " -"the map window. In the example above, “Data Layer 2” is the OSM data that we " -"want to edit. “Markers” are the waypoints from the GPS, and “30 Juni 2011." -"gpx” is the track from the GPS. Finally, “Field Papers” is the layer created " -"when we added our Field Paper into JOSM." -msgstr "" - -# 222bd8ea134a4dc8bfa0715c04b2e375 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:143 -msgid "" -"Add the Bing imagery layer, which shows satellite imagery, by going to :" -"menuselection:`Imagery ‣ Bing Sat`." -msgstr "" - -# 0d91d9ef2ee64a5794c6b9b0760dbd89 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:146 -msgid "" -"To hide one of the layers, select it with your mouse and click the :guilabel:" -"`Show/Hide` button, which looks like this:" -msgstr "" - -# cee213e89f7a40059594aef9b7713be2 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:152 -msgid "" -"The layer will disappear in the map window. Click :guilabel:`Show/Hide` " -"again, and it will reappear." -msgstr "" - -# 7d5478d1496c4663b356dfe7d62043c1 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:155 -msgid "" -"Remove a layer by selecting it and clicking the :guilabel:`Delete` button:" -msgstr "" - -# 39bc0cb9177045349390c2902b851be3 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:160 -msgid "" -"Lastly, it’s important to know that you can only edit the layer that is " -"considered \"Active” by JOSM. If you are unable to edit the map in your map " -"window, it’s probably because you don’t have the correct layer set as " -"active. Most layers, such as GPS points, Field Papers, and satellite " -"imagery, can’t be edited. The only layers that can be edited are data from " -"OSM, which are usually called “Data Layer 1”." -msgstr "" - -# c74c5e2f351642ec939ab94d9a04ee9c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:167 -msgid "" -"To make a layer active, select it in the :guilabel:`Layers` panel, and click " -"on the :guilabel:`Activate` button:" -msgstr "" - -# 103926e36ddb4bf787f602e2d6877df6 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:174 -msgid "3. Editing" -msgstr "" - -# d9a2e91d59e442a2a13320f9f9fac5f8 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:176 -msgid "" -"The next step is to edit the map and add new items. This is not always easy " -"at first, but with practice you will get better and better. Note that you " -"can select tools in JOSM by clicking their buttons in the toolbar, or you " -"can use keys on the keyboard as shortcuts. The shortcut keys are indicated " -"in parentheses below." -msgstr "" - -# 4faa1ecddc56480ab61d673dea420393 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:182 -msgid "" -"To move a point, line or shape, use the :guilabel:`Select` tool (:kbd:`S`). " -"Click on an object and drag it where it should be. This can be used to " -"correct the location of items that have been put in the wrong place." -msgstr "" - -# b76b9749f17f49c29a588abf7e32dc1d -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:186 -msgid "" -"Use the :guilabel:`Draw` tool (:kbd:`A`) to draw new points, lines, and " -"shapes. Attach attributes to these objects by selecting from the :" -"menuselection:`Presets` menu, as we did in Module 3." -msgstr "" - -# 734b15136dc64078a683d5df5e6fe086 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:193 -msgid "" -"Remember that your GPS points and Field Papers don’t automatically go into " -"OSM. You need to add them to the OSM map digitally using the :guilabel:" -"`Draw` tool. But your points, tracks, and Field Papers can be seen in the " -"background as a guide." -msgstr "" - -# daf86340b08247a3b7fd00fad6d9adee -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:198 -msgid "" -"Let’s assume that you saved a waypoint on your GPS named \"030\" and wrote " -"in your notebook that 030 is a school. To add this point into OSM, select " -"the :menuselection:`Draw` tool, and double-click on top of point 030 in your " -"map window. This will create a point. Then go to the :menuselection:" -"`Presets` menu, and find the preset for school. Enter the name of the school " -"and click :guilabel:`Apply Preset`. Do the same to add lines and shapes." -msgstr "" - -# f9cc3542b61842848993d0cefb207dd9 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:210 -msgid "4. Tags" -msgstr "" - -# 87ba77a8e8c445e6ac600b02e8eca4fb -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:212 -msgid "" -"When you draw a point, line or shape, it has a location, but no information " -"about what it is. In other words, we know where it is, but not what it is. " -"Before now, we have been using items from the :menuselection:`Presets` menu " -"to define what it is. The way OSM knows what an object is is by using tags." -msgstr "" - -# feb054cc8d8949b2ab5d2ab1b8dda862 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:218 -msgid "" -"A tag is like a label that you can put on something. For example, if we draw " -"a square, it’s only a square. But then we add multiple tags to it that " -"describe what it is:" -msgstr "" - -# c260d67eeb79421ab5b9588ed5e666bc -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:222 -msgid "this square is a building" -msgstr "" - -# 42d4ed7c07e24b4cb47f57b1a484a434 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:223 -msgid "the name of the building is “Menara Thamrin”" -msgstr "" - -# 4c383b853a9b4b1e9bc5bac897720861 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:224 -msgid "the building is 32 levels high" -msgstr "" - -# 70fbc33ced3948459ddc58e295d9c84a -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:226 -msgid "" -"We can add as many tags as we want to an object. Tags are saved as pairs of " -"text, called the keys and the values. In OSM, the tags written above would " -"be:" -msgstr "" - -# f6240b67b0d74dc7898fc34da218638f -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:230 -msgid "building = yes" -msgstr "" - -# 4f62146d7c6b489b86826069542a34f9 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:231 -msgid "name = Menara Thamrin" -msgstr "" - -# ea7e8e189ed54113896bbb4c50370938 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:232 -msgid "building:levels = 32" -msgstr "" - -# 3c7f85a253eb4287ab569460556b6d20 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:234 -msgid "" -"When you select an object in JOSM, you can see all the tags that are " -"attached to it in the :guilabel:`Properties` panel on the right." -msgstr "" - -# 152694830b3f41239122a019747a6da8 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:241 -msgid "4.1. Editing Tags" -msgstr "" - -# 787d14ce5e734dbbbf6868e26fa2cc6e -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:243 -msgid "" -"You can add, edit and delete these tags from the :guilabel:`Properties` " -"panel. The tags are traditionally in English, so if you prefer you can " -"always use the :menuselection:`Presets` menu to simplify tagging objects. " -"When you add or change tags, such as primary highway versus footpath, the " -"style will change according to the tag." -msgstr "" - -# 4f2300d6d7bd41d9bc21e09c5bd7718f -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:249 -msgid "" -"To edit an existing object, first select it. Then edit the tags in one of " -"two ways:" -msgstr "" - -# 85501d28e4604e6e8610cddf400ac56d -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:252 -msgid "" -"Use the :menuselection:`Presets` menu to open up a form and edit the " -"information, or" -msgstr "" - -# 54f1361b78494be786e6e38dbe86b3f4 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:254 -msgid "" -"Edit the tags directly in the :guilabel:`Properties` window on the right." -msgstr "" - -# 56fb1f2a74da4dcc8c2667597788d5b6 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:261 -msgid "4.2. Common Mistake" -msgstr "" - -# 49161e007e0a4d67920e7aa43a7748c5 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:263 -msgid "" -"A common mistake is to tag nodes when you want to apply tags to lines or " -"polygons." -msgstr "" - -# 693de2c59818456093897d2b05ce636e -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:266 -msgid "" -"When adding tags to a node, select the node and then add the relevant tags " -"(or use the :menuselection:`Presets` menu). However, when tagging a line or " -"polygon, it is important to select the line, and NOT the nodes that make up " -"the line." -msgstr "" - -# b256b641bd814861ba2d463616173095 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:271 -msgid "" -"New users frequently use the JOSM :guilabel:`Select` tool to draw a box " -"around an object, which causes everything (both the line or shape as well as " -"its nodes) to be selected. Then when tags are applied to the selected " -"objects, they are applied to the nodes as well. To avoid this, be sure to " -"only select lines when you want to add tags to them." -msgstr "" - -# 6846120d9ca64129900bd31aaa46e970 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:280 -msgid "" -"More information about tags and presets can be found in the :ref:" -"`Intermediate OpenStreetMap Guide Module 4 `." -msgstr "" - -# a2dd50fe74b34c8580b28b0eead40c97 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:285 -msgid "5. Uploading Changes" -msgstr "" - -# cacdbba64b08431593576660251df11e -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:287 -msgid "" -"After we have made a couple of changes to improve the map, we need to upload " -"those changes to OSM. To save changes, we must be connected to the internet." -msgstr "" - -# 0f18b336c82c49f7a47c6b08569b585b -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:291 -msgid "" -"Go to :menuselection:`File ‣ Upload Data`. This opens the :guilabel:`Upload` " -"window. This can be accessed more simply by clicking the :guilabel:`Upload` " -"button, shown here:" -msgstr "" - -# b8153bc6c046435b8847293d348290c6 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:298 -msgid "" -"The window that appears shows a list of the objects that you are adding and " -"the objects you are modifying or deleting. In the box at the bottom you are " -"asked to provide a comment about the changes that you are making. Type in " -"here a description of your edits." -msgstr "" - -# d44537544a1d47b4bbcf2c9fe9f84d29 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:306 -msgid "Click :guilabel:`Upload Changes`." -msgstr "" - -# 33adb2b89837460d96f7366216d414dd -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:308 -msgid "" -"If this is your first time saving changes to OSM, you will be asked for the " -"username and password that you created in Module 2. Enter them in the window " -"that appears. If you check the box in this window, your username and " -"password will be saved and you won’t need to enter them again in the future. " -"Click :guilabel:`Authenticate`." -msgstr "" - -# 05e64ddc72c44874af4ba39e0d8d2f24 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:317 -msgid "" -"Wait a few seconds for your changes to be uploaded, and then you are done! " -"You have made your first edits to OSM. You may continue editing to add all " -"your points if you wish. Always be sure to upload your changes before " -"closing JOSM." -msgstr "" - -# 07e4584ef68c470bb7e205934f16f63a -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:322 -msgid "After you have uploaded all your changes, you can see the updated map." -msgstr "" - -# a050b3c871a9426a96af0dbb9caef59d -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:324 -msgid "" -"Open your internet browser and go to `openstreetmap.org `_" -msgstr "" - -# cd98f9ab95c54520a85fac308123a23a -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:327 -msgid "Move the map to the area that you edited." -msgstr "" - -# 19b6770887304d85ade9bd9b5bc5a5a3 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:329 -msgid "" -"You should see your changes now on the map! If you don’t, try pressing :kbd:" -"`CTRL+R` to refresh the web page. Sometimes the map doesn’t update properly " -"and needs to be reloaded." -msgstr "" - -# 3067765f3922467eaf8fbd72070d6d6a -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:333 -msgid "" -"What if you don’t see your changes? Don’t worry - it may take a few minutes " -"for the changes to be shown on the map. Also, check your additions in JOSM " -"to make sure that you added them correctly. A good general rule is, if your " -"point has an icon in JOSM, then it should be seen on the main map on the OSM " -"website." -msgstr "" - -# 411ae0764bc84cc38499329cb0743b86 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:340 -msgid "6. Saving OSM files" -msgstr "" - -# ae9ea74cab244ba0b4237b413618ac8c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:342 -msgid "" -"Sometimes after you download some OSM data, you may wish to save it so that " -"you can edit it offline, and then upload it later when you have internet " -"access again." -msgstr "" - -# 096743af88cd4949a795fe732262aede -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:346 -msgid "" -"To save an OSM file, make sure that it is the active layer in the the Layers " -"panel. Go to :menuselection:`File ‣ Save`. Choose a location for the file " -"and give it a name. It can also be saved by clicking this button:" -msgstr "" - -# cb3f6ce6dc5740348e8ed1cf45a00a92 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:354 -msgid "" -"You can now close JOSM and your data will be saved. When you want to open " -"the file again, simply open JOSM and go to :menuselection:`File ‣ Open...`." -msgstr "" - -# b26d3cdeba4845ee9a9b8b25bcf94650 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:357 -msgid "" -"While it is possible to download OSM data, save it, and then upload later " -"when you are connected to the internet, this may cause problems, especially " -"if a lot of time passes between the time you download and the time you " -"upload the changes. If another OSM user edits the same area and the same " -"objects during this time, it may cause conflicts to occur. Try not to let " -"too much time pass between downloading and uploading data." -msgstr "" - -# f00b2c82afa84f0bbb033d78f497eef2 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:365 -msgid "7. Using keyboard shortcuts" -msgstr "" - -# a0f93ad0fdfb4f939759c8f259721b43 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:367 -msgid "" -"It can be dizzying to click over and over again between the various tools " -"and menus in JOSM. Fortunately, there are shortcuts for most actions in JOSM " -"with a simple press of the keyboard. Here is a list of commonly used " -"keyboard shortcuts and their associated functions:" -msgstr "" - -# daf9b58f7b624504bab15d8cdd430ecf -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:372 -msgid ":kbd:`S`: Select tool (select objects)" -msgstr "" - -# cb9b8a7adaa04922811358af1536927d -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:373 -msgid ":kbd:`A`: Draw tool (draw objects)" -msgstr "" - -# 1c0d738df80a41b9832f7b1c5ea53dfa -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:374 -msgid ":kbd:`Z`: Zoom tool" -msgstr "" - -# 85b562e92cea41899e4c41f16d29771d -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:375 -msgid ":kbd:`Minus` (or :kbd:`Ctrl + >`): Zoom out" -msgstr "" - -# c80a265a6c3640a1a13f4660f1a91cbf -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:376 -msgid ":kbd:`Plus` (or :kbd:`Ctrl + <`): Zoom in" -msgstr "" - -# aa535cadfaf8481ab157b90072e0ba89 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:377 -msgid ":kbd:`P`: Split Way" -msgstr "" - -# fb3e528cf3f147d095b0453cc0140ff5 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:378 -msgid ":kbd:`C`: Combine Way" -msgstr "" - -# 724e30f47ad549c3a40fda375274cb06 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:379 -msgid ":kbd:`O`: Align in Circle (set the points into a circle)" -msgstr "" - -# b50160fa4b894b66a2a5f859f6ef4feb -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:380 -msgid ":kbd:`L`: Align in line (set the points into a straight line)" -msgstr "" - -# 2cd435023cf740b284d917e5459f3637 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:381 -msgid ":kbd:`Q`: Orthogonalise (make into a square shape)" -msgstr "" - -# 9c25a2c9fecd406380ca1743d2bd9f51 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:384 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/107-imagery-offset.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/107-imagery-offset.po deleted file mode 100644 index de44a064..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/107-imagery-offset.po +++ /dev/null @@ -1,585 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-11-22 22:42+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# c80b0e110eb8488b9ea3cd613faaa4e1 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:6 -msgid "Module 7: Imagery Offset" -msgstr "" - -# 9634790b0eb840adb8e31998d7703928 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 21a017ec77fa49c9a7a825542fa9815c -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:10 -msgid "Understand the definition of imagery offset" -msgstr "" - -# 295047ebd2984b2ca108bab9e80d0c0d -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:11 -msgid "Understand components of imagery (resolution and georeference)" -msgstr "" - -# 59755072dff94868a9a3ae37c92435df -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:12 -msgid "Understand how imagery offset occurs" -msgstr "" - -# f5db9ef127ef45efb1d5f39a04319122 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:13 -msgid "Fix imagery offset" -msgstr "" - -# 79fd21e026034b85a39198cd901e096d -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:15 -msgid "" -"Using aerial imagery is the most widely used approach in making maps with " -"OpenStreetMap. Mappers typically use Bing or Mapbox satellite imagery as a " -"background layer, or imagery from another provider. We have already seen " -"this in action. In this module we will learn a little bit more about aerial " -"imagery, and we will learn how to solve the one important problem of using " -"aerial photographs - imagery offset." -msgstr "" - -# 363c760287174f25a41ade747746e090 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:24 -msgid "1. Components of imagery" -msgstr "" - -# 452a6fba685749bba4c08c50ce8f28b2 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:26 -msgid "" -"Aerial imagery is the term that we use to describe photographs that are " -"taken from the sky. These can be taken from airplanes, helicopters, or even " -"kites and balloons, but the most common source of imagery comes from " -"satellites orbiting the Earth." -msgstr "" - -# 15678e0ad43e4ab88ffc3f701afedbdf -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:31 -msgid "" -"In the :ref:`module on GPS` we learned about the dozens of " -"satellites orbiting Earth which allow our GPS receivers to identify latitude " -"and longitude. In addition to these GPS satellites, there are also " -"satellites which take photos of the earth. These photos are then manipulated " -"so that they can be used in GIS (mapping) software. Bing Aerial Imagery is " -"made up of satellite photos." -msgstr "" - -# 3e8e4a4bf7a0443bb98ab6623de13b0f -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:38 -msgid "" -"Let's look at a couple of the components of aerial imagery - resolution and " -"georeferencing." -msgstr "" - -# 4103d6f153a548fdada69737271dee37 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:42 -msgid "1.1. Resolution" -msgstr "" - -# ad54a5a55a6b43b6aaa7a17e6cb20861 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:44 -msgid "" -"All digital photographs are made up of pixels. If you zoom in very close on " -"a photograph, you will notice the the image starts to get blurry, and " -"eventually you’ll see that an image is made up of thousands of little " -"squares that are each a different colour. This is true whether the " -"photograph is taken with a handheld camera, a mobile phone or a satellite " -"orbiting Earth." -msgstr "" - -# 0002435fc58b420fabf452cb60dac726 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:54 -msgid "" -"Resolution refers to the number of pixels wide by the number of pixels high " -"that an image is. More pixels means higher resolution, which means that you " -"are able to see greater detail in the photograph. Resolution in handheld " -"cameras is often measured in megapixels. The more megapixels your camera is " -"able to record, the higher the resolution of your photos." -msgstr "" - -# d2f837d80734405ba289884bc5d78a51 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:61 -msgid "" -"Aerial imagery works the same, except that we talk about resolution " -"differently. Measurement is important with aerial photographs - hence, a " -"pixel represents a certain measurable area on the surface of the Earth. We " -"usually describe imagery as something like \"two metre resolution imagery\", " -"which means that one pixel in the image is equivalent to two metres on the " -"ground. One metre resolution imagery would have a higher resolution than " -"this, and 50cm resolution would be higher still. This is generally the range " -"of imagery that is provided by Bing, though it varies between locations, and " -"in many places it is worse than two metres, at which point it becomes " -"difficult to identify objects in the image." -msgstr "" - -# c570f2a0ae0f4ee58d37c305ca4756e7 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:75 -msgid "" -"The higher the resolution of an aerial image, the easier it is to use in " -"making maps." -msgstr "" - -# 985c54ebd06c461f8c0785b468996829 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:79 -msgid "1.2. Georeferencing" -msgstr "" - -# 65ed87bfc0d94862af7154db2ddc38a4 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:81 -msgid "" -"Every aerial image is georeferenced, meaning that it is manipulated so that " -"it can be shown in its correct location on the Earth. Georeferencing is a " -"relatively complex process, because images are flat and the Earth is round, " -"and the images need to be positioned and stretched so that the pixels are " -"accurately positioned on the planet." -msgstr "" - -# 1c7746e0622540818abe4504473a461b -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:87 -msgid "" -"The imagery available to us is already georeferenced, so it is not something " -"that we need to concern ourselves with too deeply. We can happily use " -"imagery to help add to OSM, so long as we understand a little bit about the " -"imagery we are using, and so long as we are aware of one common pitfall - " -"imagery offset." -msgstr "" - -# 31e3378affe747739257abfc1cf94558 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:95 -msgid "2. Imagery offset" -msgstr "" - -# d8a42af744eb4eb197365d001ebdfc5b -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:97 -msgid "" -"Imagery providers usually do a pretty good job of georeferencing their " -"imagery, but occasionally the images can be a little bit out of position. " -"This is particularly true in hilly or mountainous areas, where it can be " -"difficult to stretch a flat image over an area of the Earth with many " -"contours. When you load imagery in JOSM, it can sometimes be ten metres or " -"more from its true position. This is called imagery offset." -msgstr "" - -# 806faf3195f64bbcb27cd0933e5a27dc -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:104 -msgid "" -"Aerial imagery layers are composed of many photographs of the Earth's " -"surface that have been georeferenced and then stitched together. Imagery " -"providers cannot verify the accuracy of every photo, so some images may be " -"shifted from their actual positions. This might be a shift of a couple " -"metres, or in rare instances up to hundreds of metres. In mountainous areas, " -"imagery may be distorted non-linearly, which means that nearby parts of the " -"same image may be shifted in many different directions." -msgstr "" - -# b628ea5931e7472cabc00b12c58da7c6 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:112 -msgid "" -"Notice in the following image that two separate aerial photographs have been " -"georeferenced and merged together. Because georeferencing is not a perfect " -"process, the images do not line up perfectly with each other. Hence one, or " -"both, must be inaccurate." -msgstr "" - -# 0b8bcbe3d8014bf0916f59591024f054 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:120 -msgid "" -"We’ve learned about two major ways of making maps - one is by utilising " -"aerial imagery to identify features on the ground, and another is by using " -"GPS to record tracks and waypoints and then add them to OSM. The advantage " -"of aerial imagery is obvious. It enables you, the mapper, to see the whole " -"picture, to observe various details from the image, consider your knowledge " -"of the area, and easily trace roads, buildings and areas. One key advantage " -"of GPS however, is that it doesn’t suffer from offset like imagery. A GPS " -"will always provide you with a correct latitude and longitude. The only " -"exception is when the satellite signals are interrupted by tall buildings or " -"mountains, but in this case it is easy to recognise the error. Observe the " -"GPS trace in this image, compared with the Bing aerial imagery layer beneath " -"it:" -msgstr "" - -# bf3938de79d64ef897bf437fd6da4121 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:136 -msgid "" -"Because of what we now know, it is clear that the GPS trace is likely to be " -"accurate, and the image beneath it is out of place." -msgstr "" - -# 36ef3ea70b2245058eeb399d50003465 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:139 -msgid "" -"So now we must ask, “if the imagery may be out of place, how can we still " -"use it and make accurate maps?”" -msgstr "" - -# d7aea2fc7b574a7680e765900470dd4a -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:143 -msgid "3. Correcting imagery offset" -msgstr "" - -# f2cf4aa0494748319a121d949e328a2f -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:145 -msgid "" -"The answer to the preceding question is that we can move the imagery so that " -"it aligns with things that we know are in the correct location, such as GPS " -"tracks. It is easy to correct imagery offset in JOSM." -msgstr "" - -# 3dc7438ca3e445f191d5ce0a87f402a9 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:149 -msgid "" -"The best references for adjusting imagery are GPS tracks that follow roads. " -"And the more GPS tracks that you have to reference, the more accurate you " -"will be able to align your imagery. Since OSM users often upload their GPS " -"tracks to the OSM database, we can download them and use them to align our " -"imagery." -msgstr "" - -# e71cf2bead0e4c778c899e69c8230e6e -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:155 -msgid "In JOSM, click on the :guilabel:`Download` button." -msgstr "" - -# 932ca5a7ef394fae833d4d685381b78b -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:157 -msgid "" -"Check the box next to :guilabel:`Raw GPS Data` near the top of the :guilabel:" -"`Download` window. Select your area and click :guilabel:`Download`." -msgstr "" - -# 840f15755f97445ba262b1c94bee5c24 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:164 -msgid "" -"This will download an additional layer to JOSM containing GPS tracks. " -"Depending on how many tracks have been uploaded by OSM users, you may see " -"few tracks (or even no tracks):" -msgstr "" - -# 743b22685f184f1ebdc566109094dffb -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:171 -msgid "Or, you may see many tracks:" -msgstr "" - -# f8dc5596a43d4d48adfc473503c1f568 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:176 -msgid "Add an imagery layer (such as Bing Sat) to JOSM." -msgstr "" - -# 8dc893c252214bbd9d89c0eb67ac74f2 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:178 -msgid "" -"To adjust an imagery layer, click on the :guilabel:`Adjust imagery offset` " -"button at the top of JOSM, and then click :guilabel:`New Offset`." -msgstr "" - -# bd78ae26db7a4851819ba3f410ed9e03 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:184 -msgid "" -"Ignoring the box that pops up, use your mouse to drag the imagery layer so " -"that it aligns correctly with the GPS tracks. The GPS tracks should line up " -"with the roads on the imagery as closely as possible. You will see the " -"offset numbers in the box change." -msgstr "" - -# a7f8d356e0a648bba5644a04e1a9aa59 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:192 -msgid "" -"If you like, you can save these offset settings by entering a bookmark name " -"and then clicking :guilabel:`OK`. You can then automatically apply the same " -"settings later by going to :menuselection:`Imagery ‣ Imagery offset` and " -"clicking on your bookmark." -msgstr "" - -# 507b13a8388d4e70964db82088ff811a -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:197 -msgid "" -"If you do not want to save the offset, simply click :guilabel:`OK` without " -"entering a bookmark name." -msgstr "" - -# 2d8e5e5f507046b49cb81e4a23c03302 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:200 -msgid "" -"What if there are no GPS tracks on OSM, and you don’t have a GPS? Without " -"GPS tracks, it is difficult to align imagery. If it is a relatively empty " -"area (not much mapping done), you might choose to simply use the imagery as " -"it is and correct the data later. It’s better to map an area 20 or 30 metres " -"offset than to not map it at all." -msgstr "" - -# 33e4ddca54cc48588e6c3adaa85300bb -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:206 -msgid "" -"If you can positively identify the latitude and longitude of one object on " -"the ground, you can ensure the imagery is correctly placed by following " -"these steps:" -msgstr "" - -# a3f57ade5dd24150add0688cf0f0525c -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:210 -msgid "First, identify the object whose position you know on the imagery." -msgstr "" - -# 7474f89ad0654f69a6a095d8f3ea2703 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:212 -msgid "Click on the latitude and longitude in the bottom left corner of JOSM." -msgstr "" - -# 9144ded3c59d42f1a053ac559c33e6ad -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:217 -msgid "" -"In the dialog that opens, enter the latitude and longitude of the place that " -"you know, and enter a small number for :guilabel:`Zoom`, about five or 10." -msgstr "" - -# 7929310a4aa643729a36f8f04438cb2b -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:224 -msgid "" -"This will zoom and centre the map to your longitude and latitude. Now you " -"can move the imagery as you did previously so that the feature you know is " -"centred at the correct position." -msgstr "" - -# c4b37a7f6a1540d29a10a7851e1ba474 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:228 -msgid "" -"If, on the other hand, the area has already been extensively mapped, then " -"hopefully the previous mappers have drawn objects in their correct " -"locations. In this case, you can align the imagery to the OSM map, but " -"beware! Other mappers may not be aware of imagery offset, and they may have " -"made mistakes when they mapped." -msgstr "" - -# a5abaa46d7764f56b540d48b610996f1 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:235 -msgid "3.1. The imagery offset database" -msgstr "" - -# 963ab361022544428f28317b57298858 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:237 -msgid "" -"Now you know how to watch out for and correct imagery offset, but there is " -"one major problem with this approach that we have overlooked thus far. If " -"every OSM user adjusts the imagery differently, everybody will be mapping " -"with slightly different backgrounds." -msgstr "" - -# bf27679f8e38486b8cf662713ab87238 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:242 -msgid "" -"Imagine that you are mapping a small town, and you realise that Bing imagery " -"is offset by 15 metres to the north. So you adjust the imagery and then use " -"it to map the whole town accurately. But then somebody else wants to add " -"something to the map, so they download the data and load Bing imagery, but " -"they don’t know about the imagery offset you discovered! They will think " -"that something is wrong and all of the objects in town are misplaced by 15 " -"metres, and they will start to move them, which is not correct! This can be " -"disastrous for the town’s map data." -msgstr "" - -# 4eaaa85549174eb1bd894c41f65350ee -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:251 -msgid "" -"For this reason it is important that all users are aware of imagery offset, " -"and should always check for it before mapping an area. To help with this " -"problem, some smart people created a plugin that allows users to save offset " -"information in a database and share it with others. Let’s see how this works:" -msgstr "" - -# b00065a860cf4272a1f27b5cd2e9ff0d -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:256 -msgid "" -"Open the :guilabel:`Preferences` menu in JOSM, and click on the :guilabel:" -"`Plugins` tab." -msgstr "" - -# f246d83da0d547f3bcef4186a3dc5b9d -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:262 -msgid "Find the plugin named *imagery_offset_db* and check the box next to it." -msgstr "" - -# e5f0c4d73ce949cc89c1b80a30dded75 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:267 -msgid "" -"Click :guilabel:`OK`. You will need to restart JOSM to finish the plugin " -"installation." -msgstr "" - -# 7d97caa2d02547b5a766fdf04bbed980 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:270 -msgid "" -"In the same way that you are able to save offsets as bookmarks, this plugin " -"allows you to save offsets to a central database, and to access the offsets " -"that other users have created. Hence, if one mapper creates an imagery " -"offset in an area, other users can use the exact same offset to map with." -msgstr "" - -# 020cd88f492b44c68952bf8bd3f12cee -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:276 -msgid "" -"When using aerial imagery layers, you should ALWAYS check for existing " -"offsets, and when you create your own offset, you should ALWAYS save it to " -"this database." -msgstr "" - -# ea567f709aa74b99a4344da266e9d1fe -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:281 -msgid "3.2. Add imagery offset from the database" -msgstr "" - -# 762f79c4e24448eea05efebbd532e0c5 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:283 -msgid "" -"When you add an imagery layer, the new plugin will alert you that you should " -"check the imagery database for an existing offset. You will see an icon with " -"a red exclamation point on it at the top of JOSM, like this:" -msgstr "" - -# ae81266570ae4740a0d673efd96d4528 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:290 -msgid "" -"Click on the button and the plugin will communicate with the database to see " -"if there are existing offsets in this area." -msgstr "" - -# e0a8ba3ca07242e1b3281139d10974c6 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:293 -msgid "" -"Here we have downloaded OSM data and GPS tracks in Kuta, Bali, Indonesia. In " -"this case, we have found one existing offset. Click on it to apply to the " -"map." -msgstr "" - -# 0d86190a5c294bf7bb14259ef1333684 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:300 -msgid "" -"This causes the imagery layer to shift. However, when we add someone else’s " -"offset like this, we should check that it is valid by comparing it to GPS " -"tracks." -msgstr "" - -# 95c21ccfe80d4f3d8e63352dc689715f -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:307 -msgid "" -"We can see that the imagery layer is in fact misaligned. We don’t want other " -"users to use this offset, so we should mark it as incorrect in the database. " -"Click on the :guilabel:`Offsets` button again (it won’t have a red " -"exclamation mark anymore)." -msgstr "" - -# 6b057c35166e4d4bb769a85f45fde09e -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:315 -msgid "" -"This time when the dialog opens, right-click on the offset and click :" -"guilabel:`Deprecate Offset`." -msgstr "" - -# e5b5ce6f7b60413ab769fa24cb4242c2 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:321 -msgid "Click :guilabel:`Yes` to confirm." -msgstr "" - -# 458f6770105c4bc5818d6da575eca521 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:323 -msgid "Enter a reason for deprecating this offset." -msgstr "" - -# 175e74d96d9f4ceb88ddcb4cdc8984f2 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:329 -msgid "3.3. Add imagery offset to the database" -msgstr "" - -# 6aeac858e18743eaa8c198ed82bcffea -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:331 -msgid "" -"Now that we have marked this user’s offset as \"deprecated\", we should add " -"an improved offset to the database." -msgstr "" - -# 30cc22ec2ecd4446bc989a9e8aefe5bb -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:334 -msgid "Click on the :guilabel:`Adjust imagery offset` button." -msgstr "" - -# eb1935ad3ca14662b2f4c350faadf83a -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:335 -msgid "" -"Adjust the imagery to match the GPS tracks. Click :guilabel:`OK` in the box." -msgstr "" - -# 9e4b0ce1389a4184860d2a860ca5cb7e -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:336 -msgid "Now go to :menuselection:`Offset ‣ Store Imagery Offset...`" -msgstr "" - -# 13621c15dd1a4febb7fd6b822c8fbd79 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:341 -msgid "Enter a description of the offset in the box that opens." -msgstr "" - -# 24595d5d237449b9b6ff59a036ced71f -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:346 -msgid "Click :guilabel:`OK`. Your offset will be saved to the database." -msgstr "" - -# 1892ff4efad2459389a69d435c3ca087 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:348 -msgid "" -"Now let’s hide the GPS layer and look at the OSM data against the correctly " -"placed imagery." -msgstr "" - -# b3c89b13fa15400bb10cef63826b7d50 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:354 -msgid "" -"Oh No! Somebody mapped this area with misaligned imagery, so the area is " -"not correctly mapped. This will take some time to fix." -msgstr "" - -# 5bfbdf2ce20b4b4999cc4288f2cd72b3 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:358 -msgid "3.4. Imagery offset database website" -msgstr "" - -# 95c3e682ee9a466492b544988d94a0f0 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:360 -msgid "" -"For more information on the offset database, you can visit the website at " -"http://offsets.textual.ru/. This lists all the offsets that have been " -"uploaded to the database, and it also has a map feature that visualises " -"where the offsets are located, as you can see here:" -msgstr "" - -# 950d911cbc594246b85178c8af5c60ca -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:368 -msgid "" -"One last thing to remember is that the imagery may not be offset the same " -"distance everywhere! This is especially true in regions where there are lots " -"of hills and mountains. So if the imagery seems to be offset differently in " -"different areas, you’ll need to move it again." -msgstr "" - -# a4bd907ad7104dbdbda6a98f27a61c93 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:374 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/108-getting-osm-data.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/108-getting-osm-data.po deleted file mode 100644 index 2f814d00..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/osm/108-getting-osm-data.po +++ /dev/null @@ -1,196 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-11-22 22:42+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 104892b231f4499589f91209714e4a33 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:6 -msgid "Module 8: Getting OSM Data" -msgstr "" - -# 2a146bf6b5a846c2b5419b9126560ad4 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# d9fc245e71aa43a8888d78b6d447e590 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:10 -msgid "" -"Download OpenStreetMap data from the `Geofabrik website `_" -msgstr "" - -# c8b5a9bb86b64ea3b81d1a98049ca8cf -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:12 -msgid "Download customised OpenStreetMap data using HOT Exports" -msgstr "" - -# 5b7cd98c3fb64835ab70a9a7c67307e6 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:14 -msgid "" -"Now that we have learned how to contribute data to the OpenStreetMap " -"database, let's see how we can access data for download in different " -"formats. You may want to download OSM data as a backup or for use in " -"Geographic Information System software such as |QGIS|." -msgstr "" - -# 2eb53388f7f74780b75ee4356904c123 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:20 -msgid "1. Getting OSM data on Geofabrik website" -msgstr "" - -# eff0da77d72f495c91466e87d7cb5b11 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:22 -msgid "" -"The easiest way to get OSM data is to download a pre-processed data extract " -"from one of the various websites which offers up-to-date downloads. In this " -"section we will see how to download data from Geofabrik, a company which " -"offers free OSM downloads at the link below:" -msgstr "" - -# a8edc184b0c0437c9a721b02e5dbf14e -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:27 -msgid "http://download.geofabrik.de/openstreetmap/" -msgstr "" - -# 0204110550f54adf91f51132e2e5e6a7 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:32 -msgid "" -"The data is divided into several regions. To access the data for Indonesia, " -"click on the :guilabel:`Asia` region in the table." -msgstr "" - -# 678bafd1597f4736887ef2ff5a2cdad6 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:38 -msgid "Then click on :guilabel:`Indonesia`." -msgstr "" - -# db3e456d740c4c27834ebe9b58b586c3 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:43 -msgid "" -"To obtain the Indonesian data in shapefile (.shp) format, click on :guilabel:" -"`indonesia-latest.shp.zip` and the file will be downloaded. Several file " -"formats are available - shapefiles are a popular GIS format which contain " -"several different files with point, line and polygon data." -msgstr "" - -# c680565588874252a581a01467d5cfe8 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:49 -msgid "" -"The website indicates the most recent time that the data was updated. Note " -"that the server usually updates the data once every 24 hours, so if you have " -"just made changes to OSM, don't expect them to appear in this data " -"immediately." -msgstr "" - -# 4fe71e37f37949fabd9a129ba486e628 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:55 -msgid "2. Getting OSM data from HOT Exports" -msgstr "" - -# 9fefecdf135e4912bba25f50022bc6a6 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:57 -msgid "" -"To download a specific area with a specific data attributes that you define, " -"HOT Exports is a more convenient tool for downloading data." -msgstr "" - -# c674023e420b4a4285dee0d713eb94c8 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:60 -msgid "In your web browser, go to http://export.hotosm.org" -msgstr "" - -# 1f217649c89341ddaf77e8d8e66c8ee5 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:65 -msgid "" -"To create a data processing job you must have an account. Click :guilabel:" -"`Create Account` in the bottom left corner and enter your email address, a " -"new password and password confirmation. Complete the registration by " -"clicking :guilabel:`Create Account`. Open your email and click on the link " -"that has been sent in order to activate your account." -msgstr "" - -# 0c05b571715a478b973e54af32938b29 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:74 -msgid "Log in using the account that you have created." -msgstr "" - -# 653b77f90e17471990704ddbc7532685 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:79 -msgid "" -"When you are successfully logged in, click :guilabel:`New Job` in the upper " -"right corner." -msgstr "" - -# 5ffc8ad53abe435e8a4f774ef481a815 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:82 -msgid "" -"Enter a name for the job (such as the name of the area you are downloading). " -"Enter a description as well." -msgstr "" - -# 433fb2286f8d4258b8797793b789c16a -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:85 -msgid "" -"Zoom in on the map to the area that you want to download. Click :guilabel:" -"`Select Area` and draw a box around the area that you want. The box can be " -"manipulated by dragging its corners and centre. When you finish, click :" -"guilabel:`Create Job`." -msgstr "" - -# ab11d9de9c894e1ab7d54a835654150b -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:93 -msgid "" -"Next, you may optionally select a presets file to include in your data " -"extract. Presets files are the same as those used in JOSM, and instruct HOT " -"Exports to extract specific data attributes in your custom download. This is " -"useful if the data you are accessing contains non-standard tags that are not " -"typically included in data extracts." -msgstr "" - -# 7c5352dcd9d04cb796f69694edfd68c3 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:99 -msgid "" -"To add a presets file, click the drop-down menu next to :guilabel:`Select " -"Preset File` and choose one of the available options. Check the box next to :" -"guilabel:`Add Default Tags?` to include the default attributes in the data " -"extract." -msgstr "" - -# 649691ff5a5044fbb10eab228e4d1cf5 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:107 -msgid "" -"Click :guilabel:`Save` and the server will begin to process your request. " -"The length of the process depends on the area you choose and server capacity." -msgstr "" - -# 626f31753f7c4eab9b2d2fe808d72149 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:111 -msgid "" -"When the process is complete, the data can be downloaded in a variety of " -"formats, including shapefiles, KML and database formats." -msgstr "" - -# 20c21953d50a438a8931fff935d5e01c -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:117 -msgid "" -"All jobs you create will appear in the list on the :guilabel:`Jobs` page. If " -"any time you want to download the same area with up-to-date data, find the " -"job on this page. Click :guilabel:`Start new run` to process the same " -"extract again but with the most recent OSM data." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/200-introduction.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/200-introduction.po deleted file mode 100644 index c852fab6..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/200-introduction.po +++ /dev/null @@ -1,245 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-04-02 17:15+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 7344507bc71a4b5ab0e20ee438371bc7 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:6 -msgid "Introduction" -msgstr "Introduction" - -# 71d29bdbcfd5460d8967e5e560dbef2a -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:9 -msgid "Disclaimer" -msgstr "" - -# 4fd1d90c43fe43e097887aa3a9347602 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:11 -msgid "" -"This document is initial draft and still in reviewing phase by these parties:" -msgstr "" - -# 544a369f7a6b4c72b8c10bd66c3e2f0a -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:13 -msgid "Badan Nasional Penanggulangan Bencana (|BNPB|)" -msgstr "" - -# 9ea462299f0f47f38967fd9b347094b4 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:14 -msgid "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" -msgstr "" - -# 3230f6ccdd3244b5a05281feff714ce9 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:15 -msgid "Humanitarian OpenStreetMap Team (|HOT|)" -msgstr "" - -# 7c895933cc5f4d32b0e3e3be9ef45f85 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:17 -msgid "" -"All contents and materials in this document may be changed without public " -"notice." -msgstr "" - -# 385c76a44fb445618f495331c02c2660 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:21 -msgid "Licence" -msgstr "" - -# 837a37e639974938b57c5b7e0a5abe18 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:25 -msgid "" -"All contents and materials in this document are licensed as Creative Commons " -"Attribution Australia (CCbyA)." -msgstr "" - -# 48f3501557324bc5a6ddf4fba46f0bf9 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:28 -msgid "You are free:" -msgstr "" - -# be1af29f684a44808fadfb9ae1135422 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:30 -msgid "to copy, distribute, display, and perform the work" -msgstr "" - -# 93d0ed1fb767496ba5eab54d6cee40fa -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:31 -msgid "to make derivative works" -msgstr "" - -# 2e74246dcbf34c69b4a0374c0ae40b18 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:32 -msgid "to make commercial use of the work" -msgstr "" - -# 53e98b7bcdd749e8a0077b686e077380 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:34 -msgid "You must give the original author credit." -msgstr "" - -# 0c1be603560948eba7d6b59a7bd596b7 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:36 -msgid "" -"More information about CCbyA License: http://creativecommons.org/licenses/" -"by/3.0/au/deed.en_GB" -msgstr "" - -# 888507da4b6d4bddb0f3cb25646cc8b3 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:40 -msgid "About Us" -msgstr "" - -# 9c440d5e3856482b8353240e377985ea -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:42 -msgid "Badan Nasional Penanggulangan Bencana (BNPB)" -msgstr "" - -# a9738955ee0647d7b50fcc8361564382 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:46 -msgid "" -"BNPB is Indonesia’s National Disaster Management Agency. |BNPB| is a non-" -"departmental ministerial-level government agency, tasked with providing " -"guidance and direction to the efforts of disaster management that includes " -"disaster prevention, emergency response, rehabilitation and reconstruction " -"in a fair and equal way. |BNPB| functions as a policy maker regarding " -"refugee/IDP management for effective and efficient response. It coordinates " -"the implementation of disaster management activities in a planned, " -"integrated and comprehensive way." -msgstr "" - -# f68e6d360a9e4fa694eb51afcf787e61 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:56 -msgid "http://bnpb.go.id" -msgstr "" - -# a6c01f037ab34c4fbaf4d6a48f803984 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:59 -msgid "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" -msgstr "" - -# 3925c430d6504c4a9d68a4e3456a6637 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:63 -msgid "" -"The Australia-Indonesia Facility for Disaster Reduction (|AIFDR|) is a joint " -"initiative between the governments of Australia and Indonesia. They work to " -"strengthen Indonesia's ability to reduce the impact of disasters. The " -"Australian and Indonesian governments at a special ceremony on 15 July 2010 " -"launched the Australia-Indonesia facility. The launch marks an important " -"event in the strong relationship now shared by both countries and their " -"united commitment to better prepare for and respond to natural disasters in " -"Indonesia." -msgstr "" - -# ff0ca3bdd70c4c9f8b2e25f60b2fa245 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:72 -msgid "http://aifdr.org" -msgstr "" - -# d2bf989b83eb4a96a77f0c99b80bd024 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:75 -msgid "Humanitarian OpenStreetMap Team (HOT)" -msgstr "" - -# fab017c38d1d4e6882e7fa3a80ef955c -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:79 -msgid "" -"Free, collaborative maps are uniquely valuable to humanitarian work, " -"especially in places where base map data is often scarce, out-of-date, or " -"rapidly changing. OpenStreetMap is a web project to create a free and open " -"map of the entire world, built entirely by volunteers surveying with GPS, " -"digitising aerial imagery, and collecting and liberating existing public " -"sources of geographic data. The Humanitarian OpenStreetMap Team (|HOT|) is " -"an initiative to apply the principles and activities of open source and open " -"data sharing towards humanitarian response and economic development." -msgstr "" - -# e9a9b78697b245b996aefeb25efa0f98 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:88 -msgid "http://hot.openstreetmap.org" -msgstr "" - -# 3ff955ece7ba43e4b3ddc8f9ca412ce8 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:91 -msgid "Universitas Gadjah Mada" -msgstr "" - -# 08ccb2d1f7c7454a8957359b416f70a8 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:95 -msgid "" -"Universitas Gadjah Mada (internationally known as Gadjah Mada University, or " -"UGM) is a top research university located in Yogyakarta, Indonesia. The " -"Department of Geodetic Engineering and Faculty of Engineering focuses on " -"education, research, and community services related to geodesy and geomatics " -"engineering, including acquisition, analysis, and uses of detailed and " -"accurate geospatial data and large-scale maps using open source geospatial " -"software for disaster management." -msgstr "" - -# d4eea4cf7dbe4102b766246077056ffc -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:103 -msgid "http://ugm.ac.id" -msgstr "" - -# 9378e3190167428d8b17df1100325021 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:106 -msgid "Preface" -msgstr "" - -# 85b4e49add414e44b456321183c13d0f -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:107 -msgid "" -"A Geographic Information System (GIS) is a system designed to enable people " -"to work with data related to places on Earth. A GIS allows the creation, " -"storage, manipulation and analysis of geographic data. GIS is a very broad " -"concept and can involve complex hardware and software. But for most people’s " -"purposes, a simple GIS software application is all that is required." -msgstr "" - -# c51a6e4cfab64da7834c5be2721ad72d -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:115 -msgid "" -"GIS can be used in a variety of fields, including disaster management. In " -"this training we use GIS software that is free and open, which includes " -"special functionality for the preparation of contingency plans." -msgstr "" - -# 1787c51490c04539ac14fd6b3c8f7b53 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:120 -msgid "" -"The software, called |QGIS|, is a Geographic Information System (GIS) that " -"is user-friendly and open-source. |project_name| is a QGIS plugin, which is " -"also free and open-source. It can create realistic scenarios of natural " -"disaster impact for planning, preparation and better response. |" -"project_name| is developed by |AIFDR| through consultation with |BNPB|." -msgstr "" - -# 087085d2dcc042d3a6a58cfb958d911a -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:126 -msgid "" -"Data Analysis using QGIS and |project_name| covers different material from " -"the previous unit, complementing and building on top of it. Unit One was " -"about the collection of relevant data using OSM. In this unit we will " -"explore how to use geographic data to better understand disaster impact and " -"to help develop contingency plans." -msgstr "" - -# df5816de6b254c7687921aaf2e773c34 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:132 -msgid ":ref:`Go to first module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.po deleted file mode 100644 index a0b184fa..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.po +++ /dev/null @@ -1,135 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-03-01 00:20+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# a6db799e425f42ce88be02c4313fb856 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:6 -msgid "Module 1: GIS for Developing Contingency Plan" -msgstr "Module 1 : SIG pour le développement de plans de contingence " - -# 7a14d599404d4931bc4d7450ddc58fb7 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 07a891f399b644f784240165c4ad9004 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:10 -msgid "Distinguish between data and information" -msgstr "" - -# f4121fa94b5c4eb388ef4152f00244fc -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:11 -msgid "Understand the concept of GIS" -msgstr "Comprendre le concept de SIG" - -# 5df587301cf0489cb1ea1e6d289143b7 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:14 -msgid "Difference between data and information" -msgstr "" - -# 55fc9eff258d432fb510b0174943c57f -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:16 -msgid "" -"In the first unit, we looked at OpenStreetMap and how to collect data and " -"add it to the worldwide map. But what do we mean when we say that we collect " -"data? Is this the same as collecting information? Well, not exactly." -msgstr "" - -# 1d6df95a09624755b081d5c341a88794 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:20 -msgid "" -"Data are raw facts. Information is data that is organised and presented in " -"such a way as to be useful. In other words, when we go mapping to collect " -"locations and facts about those locations, we have collected data - we have " -"collected facts. To turn this data into information, we must make sense of " -"it. We must present the data in such a way that it can be easily understood." -msgstr "" - -# d1964df3f5c94a57887521ad76bc4ee8 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:26 -msgid "" -"OSM data is already made informative in an obvious way. The map that you see " -"when you visit the OSM website is there because a computer has processed all " -"of the OSM data and used it to paint a nice looking map. The map is " -"informative, and useful for us to see where places are in relation to us." -msgstr "" - -# 838d08aa2cbf4b23890943aad39f004d -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:31 -msgid "" -"In this unit we will take this even further. We will learn how to perform " -"geographic data analysis, and thereby learn how to make our data more " -"useful, informative and effective." -msgstr "" - -# ba789d8903ec4bfeb218b97ee34df790 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:36 -msgid "Terminology of Geographic Information Systems (GIS)" -msgstr "" - -# 1905e1ad30914f97ab740cb8c1c39502 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:38 -msgid "" -"A Geographic Information System (GIS) is a system designed to enable people " -"to work with data related to places on the Earth. A GIS allows the creation, " -"storage, manipulation and analysis of geographic data. GIS is a very broad " -"concept and can involve complex hardware and software. But for most people’s " -"purposes, a simple GIS software application is all that is required, and in " -"this unit we will learn how to use the excellent open-source application, " -"QGIS." -msgstr "" - -# 6d7069e2eedb4bdc80aef79e3212c152 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:45 -msgid "" -"GIS provides different ways of analysing data. It enables us to ask complex " -"questions, such as:" -msgstr "" - -# 07149ab44b394058b93b052b3b71f3c0 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:48 -msgid "Where are all schools with more than 100 students?" -msgstr "" - -# 574a5dc16ab34ee3bf8cc9f57c2717f2 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:49 -msgid "How many children live in a certain district?" -msgstr "" - -# decffb28de734499b69037e970e52e7b -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:50 -msgid "How many women live within 500 metres of a certain hospital?" -msgstr "" - -# 55b072694ab14602af1a241feb1acc0a -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:51 -msgid "What is the shortest walking path from a given point to a hospital?" -msgstr "" - -# 43b12bd168624429b950e083cf38d90c -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:53 -msgid "" -"GIS helps us to answer these sorts of questions. In the previous unit we " -"learned how to collect data, and in this unit we will see how to analyse it." -msgstr "" - -# a511f08268354e76b676363cfba4ab81 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:56 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.po deleted file mode 100644 index e5aff397..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.po +++ /dev/null @@ -1,209 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-11-22 22:41+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 4c3d7f770afd4d03aa7969fbc02c7b6b -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:6 -msgid "Module 2: QGIS and |project_name| in Contingency Planning" -msgstr "" - -# 8cbe7f06be2b49ad923e3d19f36a4bae -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# aaa40ad22d09477cb8fe01ddabab2e33 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:10 -msgid "Understand the role of GIS in contingency plan preparation" -msgstr "" - -# 952e9ebcc21049e8a0797a81c3d67470 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:11 -msgid "Understand the importance of data" -msgstr "" - -# 578c8f896c5344bfa1d26a929e336623 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:12 -msgid "" -"Understand the benefits of QGIS/|project_name| in the development of " -"scenarios for contingency planning" -msgstr "" - -# 5e50ca14488f4098987ce4a0cf647f26 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:16 -msgid "GIS for preparing contingency plans" -msgstr "" - -# 59c075b098a8476ca457e8c9d2246f08 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:17 -msgid "" -"GIS has an important role in contingency planning. A contingency plan is " -"intended to support community preparedness to anticipate the arrival of a " -"potentially hazardous event, such as an earthquake or tsunami. The purpose " -"of such a plan is to minimise casualties and losses in case of such an event." -msgstr "" - -# df2470d3045f4064b8737cea416e6995 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:24 -msgid "" -"Before contemplating a contingency plan, one must first consider potential " -"disaster scenarios. A good plan will likely answer questions such as:" -msgstr "" - -# f68597283ec64d5b90614a9a1404e020 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:28 -msgid "what sort of disaster is likely to happen?" -msgstr "" - -# 3a2ea0668f9244ccb6db5a967a016eb9 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:29 -msgid "how widespread might the impact be?" -msgstr "" - -# 1a26beb28cc84ca8bc278f9525d4d0d0 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:30 -msgid "who is responsible for helping?" -msgstr "" - -# 5c4dff0dabf04fa2ae97c636992402e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:31 -msgid "what should be given as aid?" -msgstr "" - -# a6137b9cfe91454b936da5fc5d000e56 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:32 -msgid "where are the priority areas?" -msgstr "" - -# 75f7b703ca9d40fdacfbeb63d0596067 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:34 -msgid "" -"In other words, a contingency plan answers the question, who does what, " -"where and when?" -msgstr "" - -# 2a3ca5c1053b42518511e23d234437af -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:37 -msgid "" -"A Geographic Information System is able to help planners answer these " -"questions, especially the important spatial elements of contingency " -"planning. GIS may be used to model hazardous events so that they can be " -"better predicted. It may be used to plan evacuation routes prior to a " -"disaster. When a disaster occurs, GIS may also play a role in the emergency " -"response phase. It can be used to map the area affected and position of " -"refugee camps, so that helpers can be directed to the most useful locations " -"to aid those affected. After a disaster, GIS may also be used to plan for " -"rehabilitation and reconstruction. Overall, GIS helps to perform analysis of " -"a disaster, damage and losses caused, and opportunities for reducing risk." -msgstr "" - -# 25a5170ae891409eb1367229bbb681d3 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:52 -msgid "The importance of data" -msgstr "" - -# 0708e1d922bf4d94bcbc9c722772cab3 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:53 -msgid "" -"We previously learned how to start collecting exposure data. When thinking " -"about GIS it is important to remember that if your data is bad, your " -"analysis will be bad also. Hence the more detailed and accurate your data " -"is, the better your analysis and action may be during a disaster." -msgstr "" - -# 4f27ff0f9d90445490a7507b0d297227 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:59 -msgid "" -"As we shall see in this unit, some data may be obtained from various " -"agencies that specialise in certain kinds of data. For example, we will " -"obtain our hazard models (hazard data) from various organisations that " -"specialise in this. As for exposure data, some data we may find through " -"agencies, such as population data. For infrastructure data, collecting data " -"at a community level is key, which is why in the previous unit we learned " -"how to utilise the crowd-sourced OpenStreetMap platform." -msgstr "" - -# b3d3b9fa789f4998a5ae868b30edf0cf -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:70 -msgid "QGIS and |project_name|" -msgstr "" - -# d8e60456200c431e9068a86de8f6a4e9 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:71 -msgid "" -"QGIS is a user-friendly open-source Geographic Information System (GIS). It " -"runs on Windows, Mac OSX, and Linux. QGIS provides a continually growing " -"number of capabilities provided by core functions and plugins. You can " -"visualise, manage, edit, analyse data and compose printable maps. QGIS is " -"great because:" -msgstr "" - -# 175fcf9d6c9940d48459424b3a5cacd6 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:78 -msgid "It’s completely free. It doesn’t cost anything." -msgstr "" - -# 2fb637188c17439b9ae484e36c604466 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:79 -msgid "" -"It’s free, as in liberty. If you think a feature is missing, you can sponsor " -"the development of a feature, or add it yourself if you are familiar with " -"programming." -msgstr "" - -# ca7bf1b9ee784f73bf68b795aa95cfd0 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:82 -msgid "" -"It’s constantly developing and improving. Because many people continue " -"adding features, it keeps getting better." -msgstr "" - -# 0b95b456bdd24daf9fc6d5d3c4c2b4b9 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:84 -msgid "" -"Extensive help and documentation is available. If you have problems you can " -"always turn to the software documentation, other QGIS users, or even the " -"developers." -msgstr "" - -# 22cc3a470f724c26ab18fdd4784b86a8 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:88 -msgid "" -"QGIS has many plugins which extend the core functionality of the software. " -"One of these plugins is |project_name|, which can be used to analyse the " -"impact of a disaster and create a list of actions needed to be taken when a " -"disaster occurs. QGIS and |project_name| can also help to determine the " -"location of ideal places of refuge, evacuation routes, areas likely to be " -"damaged and more." -msgstr "" - -# a8900149e20c4b429b3e2fd05bc9529c -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:98 -msgid "" -"|project_name| provides overviews of potential disaster scenarios and their " -"outcomes, as well as maps which can aid decision-makers when disaster " -"strikes. Maps are an effective way of communicating disaster impact, by " -"showing in a simple way the areas of damage, such as the extent of flood-" -"affected areas and buildings affected by a flood." -msgstr "" - -# 9c87be1dbe7845e295fa745508860d9d -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:105 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.po deleted file mode 100644 index 50598737..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.po +++ /dev/null @@ -1,625 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-06-11 09:47+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# c8c9d2c189924d0d91fd33a9720312c0 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:6 -msgid "Module 3: The Basics of QGIS" -msgstr "Mudule 3: Les bases de QGIS" - -# ffe076e4ed1646b19c9875e44585c40b -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 5e2f4d9498074c78a9c9041c7fc76433 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:10 -msgid "Download QGIS" -msgstr "" - -# 71fe85a764634c01bc4e19e9d119ffc7 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:11 -msgid "Install QGIS" -msgstr "Installer QGIS" - -# f1dd3cabfca14bf8b960b44fc656f59e -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:12 -msgid "Open a previously created QGIS project" -msgstr "Ouvrir un projet QGIS préexistant" - -# 8c906eb50a7049588b0849cf1bb004d7 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:13 -msgid "Understand the layers panel" -msgstr "" - -# d128a2ddbb5949e4a9c15ff08be7dac5 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:14 -msgid "Access basic tools through the toolbar" -msgstr "" - -# ce9a819f0b1b457c81fdafaab8d845e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:15 -msgid "Clean up the toolbar" -msgstr "Ranger la barre d'outils" - -# 0e0d0bc7c8c848769050b918738f047c -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:16 -msgid "Show a map in the map window" -msgstr "" - -# 720c7364075f4a3d84b38f2b0b084236 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:17 -msgid "Get information on an active map through the status bar" -msgstr "" - -# e2d8a6c7e52b44d9b3500d86e8b733f1 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:19 -msgid "" -"In this module we begin using QGIS. We’ll see how to install the software " -"and understand the layout, interface and core functions of the software. By " -"the end of this module, you’ll be on your way to becoming a competent GIS " -"user!" -msgstr "" - -# 639d23d590064db1ac062e67b3b3b3ad -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:25 -msgid "" -"Note that if you have previously installed QGIS, feel free to skip ahead to :" -"ref:`section three `. Otherwise, let’s start here and " -"get QGIS installed." -msgstr "" - -# f95373723ebd4e319d1dbbd5ea8af112 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:30 -msgid "1. Getting QGIS" -msgstr "" - -# 1d396b8daa874029ad5e204904943cb8 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:31 -msgid "" -"Open your web browser and in the address bar at the top of the window, type :" -"kbd:`qgis.org`. Press :guilabel:`Enter`." -msgstr "" - -# fc748fcaa2224f2da7f5c085abc119cb -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:38 -msgid "The QGIS website will look something like this:" -msgstr "Le sit de QGIS doit ressembler à ça:" - -# a9b658701f9f4f1f8af76ec6ed607293 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:43 -msgid "Click :guilabel:`Download Now`." -msgstr "" - -# 88c5c5c788ca44c2b70a4b3f2c195175 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:48 -msgid "" -"If you are using Windows click :guilabel:`QGIS Standalone Installer Version " -"2.8 (32 bit)`. Your exact version number may be different." -msgstr "" - -# bb1f5dc80ebc4d9db573632de5a85737 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:55 -msgid "" -"If you are not using Windows, select your operating system from the menu. " -"Follow the installation instructions." -msgstr "" - -# 3e2450dd47a54af5ac0686a075a416ba -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:61 -msgid "" -"When the file is downloaded, run it and follow the instructions to install " -"QGIS." -msgstr "" -"à la fin du téléchargement, lancez l'installateur et suivez les instructions " -"pour installer QGIS." - -# cf7c7ab173004de0848a7941060d9f2f -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:65 -msgid "2. Installing QGIS" -msgstr "" - -# ed8c1592680d40af8fb98933a3808a7f -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:67 -msgid "Open the folder where you have the QGIS installation file." -msgstr "" -"Ouvrez le répertoire dans lequel vous avez téléchargé le fichier " -"d'installation QGIS." - -# 89a93a248e0d49f7abe0b167cb40e71c -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:72 -msgid "" -"Run the installation file. If you are installing QGIS version 2.x, it should " -"look like this:" -msgstr "" - -# d19eef3eed54448eb0f37c72d6247371 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:78 -msgid "Click :guilabel:`Next`." -msgstr "Clickez :guilabel:`Suivant`." - -# 4a675d05397343a39c9bcdfd77f9cec3 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:80 -msgid "" -"Click :guilabel:`I Agree` to agree with the conditions in the licence " -"agreement." -msgstr "" - -# 9d16aedc085546e8a8b0354095eeee80 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:86 -msgid "" -"The next window asks where you would like to install QGIS. In most cases, " -"the default should be fine. Click :guilabel:`Next`." -msgstr "" - -# f9afa424d66f450ea3738fbd045d04df -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:93 -msgid "" -"In the next window, Click :guilabel:`Install` without checking any of the " -"boxes." -msgstr "" -"Dans la fenêtre suivante, clickez :guilabel:`Installer` sans cocher les case " -"à cocher." - -# d95490e506e0442e9e6cddba24123439 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:99 -msgid "QGIS will begin to install. It may take a few minutes to complete." -msgstr "" - -# 762a723842d74729b417ecc4bc6257e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:104 -msgid "" -"Click :guilabel:`Finish` to complete the installation. Your computer will " -"automatically reboot." -msgstr "" - -# 2a88dbe736f3485a9a851c4ddae52c27 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:110 -msgid "Now open QGIS from the Start Menu." -msgstr "" - -# 9ee2c33b38fc4bcea1e1bc564e0f90fc -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:115 -msgid "QGIS will look something like this:" -msgstr "QGIS doit ressembler à ceci:" - -# f76e4988579d482aa3b01eb2a749585b -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:123 -msgid "3. Terminology of Geographic Information Systems (GIS)" -msgstr "" - -# 56a6a19bfe6b489dbf64a6f9975c4d65 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:125 -msgid "" -"Next we will open up a QGIS project, and take a look at the different pieces " -"of the QGIS interface. If you installed |project_name| previously, make sure " -"it is closed by clicking on the X in the upper right corner of the |" -"project_name| panel. If it isn’t open or you haven’t installed it yet, carry " -"on. We will come back to this later." -msgstr "" - -# c47f96e729fe4c79a2c6ae78bfc95597 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:132 -msgid "" -"Click on the folder icon on the upper toolbar or go to :menuselection:" -"`Project ‣ Open...`" -msgstr "" - -# bca88f68ddd54ddc826a1d83d30e77b2 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:138 -msgid "" -"Navigate to the tutorial files and go into the :file:`qgis/` directory. Open " -"the file named :file:`sleman_2_2.qgs`." -msgstr "" -"naviguez jusq'aux fichiers de tutoriel et allez dans le répertoire :file:" -"`qgis/`. Ouvrez le fichier nommé :file:`sleman_2_2.qgs`." - -# fa20ed97c7c74f3e97bb4fb220d249a3 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:141 -msgid "" -"QGIS should now look something like the following image. Let’s pause for a " -"moment and go over the various components of the QGIS interface." -msgstr "" - -# c9df07e1e7714da98a2c835717b6cb50 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:149 -msgid "Map canvas" -msgstr "Fond de carte" - -# a328af8ad900416fa435b68fbc69d853 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:150 -msgid "" -"This is the window where the map is shown. Our project has two different " -"files open, one which shows districts of the Sleman regency, and another " -"that shows the railway line running through the area. Both of these files " -"are drawn together in the map canvas." -msgstr "" - -# 0f4c83d1b4de4e919b451f11c74d3a4d -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:157 -msgid "Layers panel" -msgstr "" - -# 1c03954d3cca47d7ab5ef6a9f7d47944 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:158 -msgid "" -"On the left side of QGIS is the layers panel. This lists the layers, or " -"files, that are loaded into our QGIS project. In this project, we have two " -"layers, :file:`Kecamatan_Sleman` and :file:`railway_Sleman_OSM`." -msgstr "" - -# f91889bed666449e8025f0062c75245d -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:163 -msgid "" -"The layers panel not only shows all the files that are currently open, it " -"also determines the order that they will be drawn on the map canvas. A layer " -"that is at the bottom of the list will be drawn first, and any layers above " -"it will be drawn on top." -msgstr "" - -# 0b4bd9415c25401aa04cb77f494aa1bc -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:168 -msgid "" -"Click on the layer :guilabel:`railway_Sleman_OSM` and drag it below the " -"layer named :guilabel:`Kecamatan_Sleman`." -msgstr "" - -# 81d662e981f241dd8918aaecb0056b0a -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:174 -msgid "" -"Notice how the map canvas changes. The railway layer is now shown below the " -"district layer, and part of the railway is now obscured. A map should never " -"show railway hidden beneath district areas, so go ahead and move the layers " -"back." -msgstr "" - -# 0a7f619f06b44f298dae8e7fe3a6bd19 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:180 -msgid "" -"Uncheck the box next to a layer’s name. It will be hidden from the map " -"canvas." -msgstr "" - -# 24eb6f801d784812abb326794e50f305 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:183 -msgid "" -"Expand collapsed items by clicking the arrow or plus symbol beside them. " -"This will provide you with more information on the layer’s current " -"appearance." -msgstr "" - -# 6b2ee8eb4b5f4dc7891cdfeb20970329 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:190 -msgid "" -"Right-click on a layer to view a menu with extra options. You’ll be using " -"some of them before long, so take a look around!" -msgstr "" - -# 0c57c9fa0f5c40b3bc55d0cb7d402afb -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:194 -msgid "Toolbars" -msgstr "Barre d'outils" - -# 14226ecfe3af4fe7a341590ded291db8 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:195 -msgid "" -"At the top of QGIS are a large number of tools, which are contained within " -"various “toolbars”. For example, the :guilabel:`File` toolbar allows you to " -"save, load, print and start a new project. We already used one of these " -"tools when we opened this project." -msgstr "" - -# c30ece788bd7489797791d42637b69fe -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:204 -msgid "" -"By hovering your mouse over an icon, the name of the tool will appear to " -"help you identify each tool. The number of tools (buttons) can seem a bit " -"overwhelming at first, but you will gradually get to know them. The tools " -"are grouped into related functions on toolbars. If you look closely you can " -"see a vertical array of ten dots to the left of each toolbar. By grabbing " -"these with your mouse, you can move the toolbar to a more convenient " -"location, or separate it so that it sits on its own." -msgstr "" - -# fd8c644beea54830a298c181470d6f20 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:217 -msgid "" -"If you feel overwhelmed by the number of toolbars, you can customise the " -"interface to see only the tools you use most often, adding or removing " -"toolbars as necessary." -msgstr "" - -# 4dec85f6ae7c4e8bb57c45a2865e1e79 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:221 -msgid "" -"To add or remove a toolbar, right-click on any of the toolbars, or go to :" -"menuselection:`View ‣ Toolbars`." -msgstr "" - -# a9ef003243194568a26ca6473a16c740 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:227 -msgid "" -"Let’s remove some of the toolbars that we will not be using in this " -"training, to make the interface a bit cleaner. Right-click on the toolbar, " -"and uncheck the boxes next to the following toolbars:" -msgstr "" - -# 76c25d46182d45988c5f1f4975cc6ccd -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:232 -msgid "Advanced Digitising" -msgstr "" - -# a6a950c6249e460f858f14c21609fa7b -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:233 -msgid "Database" -msgstr "Base de données" - -# 69dbac66b6da48aca073a43e3b11e60a -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:234 -msgid "GRASS" -msgstr "GRASS" - -# 9b8bf899d32a469781a6c1c35ad9f9cf -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:235 -msgid "Label" -msgstr "Etiquettes" - -# 2ab5c73bc50144fc80317dc6e31117fd -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:236 -msgid "Raster" -msgstr "Raster" - -# c98f6e42dda24e52805e4b4c5ba59dd4 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:237 -msgid "Vector" -msgstr "Vecteur" - -# a4d4a9717fdf4856ae29d20c05dec178 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:239 -msgid "" -"After removing these toolbars and moving them around, your tools should look " -"like this:" -msgstr "" -"Après avoir enlevé ces barres d'outils et en avoir déplacé, vous devriez " -"avoir ce type d'aspect:" - -# 20c9881abeee41028de414630c3a7c22 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:245 -msgid "" -"Even if they are not visible in a toolbar, all of your tools will remain " -"accessible via the menus. For example, if you remove the :guilabel:`File` " -"toolbar (which contains the :guilabel:`Save` button), you can still save " -"your map by going to :menuselection:`Project ‣ Save`." -msgstr "" - -# 3420067df7ab40ad994fb83e7376e533 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:252 -msgid "Status Bar" -msgstr "" - -# 19af154b91a548ec959c72bf311baa3d -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:253 -msgid "" -"The status bar shows information about the current map. It allows you to " -"adjust the map scale and see the mouse cursor’s coordinates on the map." -msgstr "" - -# c4cca2545fc3496aae50c57df153950f -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:260 -msgid "" -"The coordinates of this map are the same type of coordinates that are " -"recorded by GPS devices. The status bar shows the longitude and latitude of " -"your mouse cursor." -msgstr "" - -# a7d5ee309ae040b4b127235afedae28a -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:264 -msgid "" -"This may not all be clear right now, but as you progress in your knowledge " -"of GIS, this will make more and more sense." -msgstr "" - -# fa19fa0dac98440fa65edebfb79a1346 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:270 -msgid "4. Adding a vector layer" -msgstr "" - -# 7272b8f91da64376911aae8e75e6bdde -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:271 -msgid "Now we will add an additional layer containing roads to our project." -msgstr "" -"Nous allons maintenant ajouter une couche vecteur contenant des routes à " -"notre projet." - -# b9d8b7b711824b9eb8902550de9f7cce -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:273 -msgid "Click on the :guilabel:`Add Vector Layer` button on the toolbar." -msgstr "" -"Clickez sur le bouton :guilabel:`Ajouter une couche vecteur` de la barre " -"d'outils." - -# 02f418d8526247a7ba3248bf1cb6ba8d -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:278 -msgid "A dialog box will open. Click the :guilabel:`Browse` button." -msgstr "" - -# fdfecea7f3f24995b4cf649aeecf0020 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:283 -msgid "" -"Navigate to the file :file:`qgis/Sleman/Jalan_Sleman_OSM.shp` (you may need " -"to unzip the file :file:`Sleman.zip` first). Select the file and click :" -"guilabel:`Open`." -msgstr "" - -# 3be32d45d03a498785fafabdd7f1c28b -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:288 -msgid "" -"One of the most common file formats are shapefiles, which end with the " -"extension :file:`.shp`. Shapefiles are often used to save geodata, and are " -"commonly used with GIS applications like QGIS." -msgstr "" - -# ae69218463e84c3b9b2a43c27911835b -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:293 -msgid "" -"You should now see your new layer appear both in the map canvas and in the " -"layers panel. It should be drawn above both the district and railway layers." -msgstr "" - -# d17070fb73994647b02f9ecd9d09d246 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:301 -msgid "5. Basic QGIS tools" -msgstr "" - -# 4edb89c58e0741fdabec72d2edb475cf -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:302 -msgid "" -"We’ve already taken a look at the QGIS toolbar and seen the tools for " -"opening a project and adding a new layer. Here’s a list of some other " -"commonly used tools. Feel free to play around with them if you like. The " -"important thing for now is to start getting familiar with QGIS." -msgstr "" - -# 230c9050bdc74ef0b1df54b8fffee54d -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:309 -msgid "Toggle Editing" -msgstr "Bascule en mode édition" - -# a78abb11b48345cd9c184a4424c067b3 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:309 -msgid "Edit features in a layer" -msgstr "Éditer un objet dans une couche" - -# 4f35ef8b707d48cc99d841213b928f3b -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:311 -msgid "Pan Map" -msgstr "faire glisser la carte" - -# 691d514271c4451985ac026b02323c0f -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:311 -msgid "Drag the map into new location" -msgstr "Déplacer la carte" - -# 61feac568abe4d7290ce72104007c641 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:313 -msgid "Zoom In" -msgstr "Zoomer" - -# b409910e78b148748be27e7f1e21b1c1 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:313 -msgid "Zoom in on the map" -msgstr "" - -# 6622e68e70034362abf5686629f89e8c -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:315 -msgid "Zoom Out" -msgstr "Dézoomer" - -# 9ea0288b1a354b9eba3fe8ade2077dd6 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:315 -msgid "Zoom out on the map" -msgstr "" - -# 6f75b55b51244a3b9fdc8bab851b0d6a -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:317 -msgid "Zoom Full" -msgstr "zoomer sur l'ensemble des couches" - -# 7ded18e6a3b6425db7cc7b7a90078730 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:317 -msgid "Zoom so that all layers fit in the map window" -msgstr "" - -# 4347a01e3b1342739e608be3bf0d486f -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:320 -msgid "Open Attribute Table" -msgstr "Ouvrir la table d'attributs" - -# 75fd24ab17bb41b781d41a8b889a2a02 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:320 -msgid "Open a layer's attribute table" -msgstr "ouvre la table d'attributs de la couche considérée" - -# 0e78d38c60d44b80ab7dc540fd985540 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:322 -msgid "Select Single Feature" -msgstr "" - -# 298ce437dd4b4e078ba5da64d73ec4a1 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:322 -msgid "Select a feature in selected layer" -msgstr "pour sélectionner un objet dans la couche considérée" - -# 6695f95498b24b369e0e6200c997979e -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:327 -msgid "6. Navigating the map" -msgstr "" - -# 9983e1f5ecac45dfa1a1a9d9be37ad48 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:328 -msgid "" -"Before we examine the attributes of individual features, let’s take a quick " -"look at how to navigate the map. The main controls for moving the map around " -"and zooming in and out are by default on the panels at the top of QGIS." -msgstr "" - -# b95fa42059f24bddb1228c1083378e0d -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:336 -msgid "" -"When you click on one of these buttons, it changes what you can do with your " -"mouse in the main map window." -msgstr "" -"Clicker sur l'un de ces booutons modifie ce que l'on peut faire avec la " -"souris sur la fenêtre principale, celle de la carte." - -# eec3ebefa39c4dbf990f882899fe7624 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:339 -msgid "" -"Select the first button that looks like a hand. Now hold the left mouse " -"button down and drag the mouse in the map window. This allows you to pan the " -"map, or move it around." -msgstr "" - -# d05c5ca6e3f045b3860c39118106c6cd -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:343 -msgid "" -"The button that has a plus sign below a magnifying glass allows you to zoom " -"in on the map. Select this button. Using your mouse, draw a box around an " -"area where you want to zoom in, and release your mouse." -msgstr "" - -# 1aff1e88c0154670a90eab7d18348516 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:349 -msgid "" -"The button that has a minus sign below a magnifying glass allows you to zoom " -"out on the map. Select this button and click on the map." -msgstr "" - -# 8b173d3cff8f45acad87aba80deb6222 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:353 -msgid "" -"The button that looks like a magnifying glass with red arrows pointing away " -"from it lets you zoom to the full extent of your map. Click this button to " -"see all of the data that is loaded in the project fit into the map canvas." -msgstr "" - -# b1eda9b02fd549738a63526cb0d6b5af -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:359 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.po deleted file mode 100644 index 882739bf..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.po +++ /dev/null @@ -1,265 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-04-02 17:14+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 598218c2f02e49bdb243b55c17b49a8a -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:6 -msgid "Module 4: QGIS Plugins" -msgstr "" - -# 44cdc173726c47ed9a72c429e8ad1bc6 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 86305682140746d8a5af01287fcc44d6 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:10 -msgid "Understand the concept of plugins" -msgstr "" - -# c82dbec74bfb420d82d4535e59f011f2 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:11 -msgid "Install QGIS plugins" -msgstr "" - -# 98c824fe001f47e4a37a6f4b754a0893 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:12 -msgid "Add satellite imagery via OpenLayers" -msgstr "" - -# 672cb69772244bea9fd510d437097403 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:14 -msgid "" -"QGIS has core functionality, which we will continue to explore in this " -"guide, but it also allows the use of plugins, which add functionality to the " -"software. Again, these plugins are free. To use them, we simply need to " -"connect to the internet and install. In this module we will learn how to " -"install QGIS plugins, using one plugin to add a satellite imagery layer to " -"our QGIS project." -msgstr "" - -# 1d123d549b104996a430487ebfbdce3c -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:22 -msgid "" -"If you have closed QGIS since completing the previous module, start QGIS and " -"open the project :file:`named sleman_2_3.qgs` in the :file:`qgis/` folder." -msgstr "" - -# be7ca4579d96460d897b23ecec191036 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:25 -msgid "" -"Note that you must be connected to the internet to follow the exercises in " -"this module." -msgstr "" - -# 31efac76dc02416b96fe08d0b65d540a -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:29 -msgid "1. Managing plugins" -msgstr "" - -# cf97d74458e6470da788c6657798aaad -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:30 -msgid "" -"To install new plugins, they first need to be downloaded and activated. Some " -"plugins are already downloaded and available." -msgstr "" - -# 14838ccd9dcd428491dc1edfb2640d45 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:33 -msgid "" -"Go to :menuselection:`Plugins ‣ Manage and Install Plugins...` to view them." -msgstr "" - -# cbf764c40c9e4001b0ef0a076e417e14 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:38 -msgid "" -"This displays a list of plugins that have already been downloaded and can be " -"activated. To enable a plugin, check the box next to it in this menu. For " -"now, let’s leave all the plugins as they are. We’re going to download and " -"activate a new plugin in the next section." -msgstr "" - -# 38f0e55904524aadbe0481fd3df10b60 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:49 -msgid "2. Installing plugins" -msgstr "" - -# d05b260f981a4a32af4c8daa5e22128f -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:50 -msgid "" -"There are many more plugins, but they must first be downloaded. To download " -"a plugin, click the :guilabel:`Not installed` tab. This will load available " -"plugin repositories, and you will see a list of all available plugins for " -"download." -msgstr "" - -# 50e1a007a7144b99a1a683e4b35f5b2b -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:58 -msgid "" -"Note that plugins, which have already been downloaded can be activated or " -"deactivated from the :guilabel:`Installed` tab. If it has not yet been " -"downloaded, downloading a plugin from the :guilabel:`Not installed` tab will " -"automatically activate it." -msgstr "" - -# 02d12f0c67214830a720cf0694f79d5f -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:64 -msgid "3. The OpenLayers plugin" -msgstr "" - -# 4c4dd5a410284cf1bf73f5001e42ab90 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:65 -msgid "" -"The OpenLayers plugin allows you to view various web maps as a layer in " -"QGIS. This means that you can access the OSM slippy map, Google Maps and " -"Bing Maps from within QGIS. Follow along and we’ll see how this works." -msgstr "" - -# f99d2ad9c74646cea4831478d07811c2 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:69 -msgid "" -"Go to :menuselection:`Plugins ‣ Manage and Install Plugins` and click on " -"the :guilabel:`Not installed` tab. Type :kbd:`openlayers` into the Search " -"box." -msgstr "" - -# 97d9c7ad15f64363978b9e1f059ace59 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:75 -msgid "" -"Select :guilabel:`OpenLayers Plugin` from the list and click :guilabel:" -"`Install plugin`." -msgstr "" - -# 35a19739e59c439cba9eca12519b79d6 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:81 -msgid "It may take a few minutes to download." -msgstr "" - -# 1248eeebdaa0470a8f3db731e947283c -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:86 -msgid "When the download finishes click :guilabel:`OK`." -msgstr "" - -# 479e3110b5884efc8651df446ab36e85 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:91 -msgid "" -"Now the OpenLayers plugin is installed and activated. Click the :guilabel:" -"`Installed` tab to see it in your list of active plugins. Click :guilabel:" -"`Close` when you are finished." -msgstr "" - -# 9b4b212c69034d9da99b8d41fc3e469b -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:98 -msgid "" -"The new plugin provides a menu which offers extra functionality. Go to :" -"menuselection:`Web ‣ OpenLayers plugin` to see various map layers that can " -"be loaded." -msgstr "" - -# 98d511939cac4966a6b60b0ae073abbe -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:105 -msgid "" -"Go to :menuselection:`Web ‣ OpenLayers plugin ‣ Bing Maps ‣ Bing Aerial`. A " -"new layer called “Bing Aerial” will be added to the Layers panel, and the " -"imagery will load in the map canvas. If the layer is above your other " -"layers, drag it to the bottom of the layers list." -msgstr "" - -# 9c662893ae7f4a3ea902735b5a80ab41 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:113 -msgid "Your project should now look like this:" -msgstr "" - -# 0e380b1fbfb446ecb70531abdf183468 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:118 -msgid "" -"If you pay attention, there is something wrong with the map. Can you guess " -"what it is? All three layers above Bing Aerial layers should be shown on the " -"map." -msgstr "" - -# ea62c94244de4ec890b991fc843fee5b -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:122 -msgid "" -"To fix this, go to :menuselection:`View ‣ Panels` and check the box next to :" -"menuselection:`Layer order`." -msgstr "" - -# 4eb7081750e549e9be55cfd5641e8183 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:128 -msgid "" -"The Layer order panel will appear next to the Layers panel (1). Click it and " -"uncheck :guilabel:`Control Rendering Order` (2)." -msgstr "" - -# 5bdc634e235a461fb860861453b379c4 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:134 -msgid "" -"Return to the Layers panel. The map layers should now appear in the correct " -"order. All layers above Bing Aerial will show up on the map canvas as in the " -"image below." -msgstr "" - -# 861adf5b70364f81b0782049782a06f9 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:141 -msgid "" -"Adding a layer such as Bing Aerial will change the Coordinate Reference " -"System, or CRS, of your project. Essentially this means that your project is " -"not using longitude and latitude coordinates anymore. This shouldn’t affect " -"you right now, but it will make sense later when we cover CRSes." -msgstr "" - -# f24e0f942cc34e7eae3f6fb8a9036b4c -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:147 -msgid "" -"If the map data does not appear to match up correctly with the aerial " -"imagery, it may be due to different CRSes. You can fix this problem by going " -"to :menuselection:`Project ‣ Project Properties` and checking the box next " -"to :guilabel:`Enable ‘on the fly’ CRS transformation`." -msgstr "" - -# de631f68a62b4c5db7b0f2940e960242 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:158 -msgid "" -"Great! Now we can see our map data on top of an aerial photograph of the " -"Earth. Note that this is the same imagery provided by Microsoft Bing that " -"you would load for editing in JOSM. Try unchecking the box next to the " -"layer :guilabel:`Kecamatan_Sleman` so that you can see the area better. Zoom " -"in close to see detailed imagery with our street and railway layers " -"displayed on top." -msgstr "" - -# 163344e2b260491f9e28dd9dc49fd5cf -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:168 -msgid "" -"Remove the Bing Aerial layer by right-clicking it in the Layers panel and " -"clicking :guilabel:`Remove`." -msgstr "" - -# d46918117d574a1b93426c8761ab3953 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:171 -msgid "" -"Try out other layers that are available from the :menuselection:`Web ‣ " -"OpenLayers plugin` menu." -msgstr "" - -# f614a8f583da438cb6a55626646a5e63 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:175 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.po deleted file mode 100644 index fc84ee62..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.po +++ /dev/null @@ -1,472 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-04-02 17:14+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# e3f54aaca4d84bdd955a43d877c6d834 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:6 -msgid "Module 5: Map Projection Basics" -msgstr "" - -# 2409d58b7c8d4d76b2568310f8d42427 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 6520fa72a5b840ca8bc41d929df0e9e8 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:10 -msgid "Understand Coordinate Reference Systems (CRS)" -msgstr "" - -# 6429d89dccef4eddb79df15823a4cf51 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:11 -msgid "Identify the CRS of a vector dataset" -msgstr "" - -# 755ed0eee0a74bd59a1f0f020ead7d11 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:12 -msgid "Do 'on the fly' reprojection" -msgstr "" - -# 97228f4aa33644eea3240f8b427b3cc6 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:13 -msgid "Save dataset with a different CRS" -msgstr "" - -# 1ac06164e2a04ad18bacc7051254d169 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:14 -msgid "Create a custom projection" -msgstr "" - -# 0a4b63e5a4414a12b1b776f43b7556df -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:16 -msgid "" -"We’ve talked a little bit about Coordinate Reference Systems (CRSs) " -"previously, but haven’t covered it in depth. In this module, we’ll look more " -"at what a CRS means practically, and how it affects our work in QGIS." -msgstr "" - -# 4f0ac1de34c54cf68259d7d6a9709da7 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:22 -msgid "1. Coordinate Reference Systems (CRS)" -msgstr "" - -# 2cd01e8369ef4f3eb7ea2d857a98a02c -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:24 -msgid "" -"The CRS that all the data, as well as the map itself are in right now is " -"called WGS84. This is a very common Geographic Coordinate System (GCS) for " -"representing data. But there’s a problem, as we will see." -msgstr "" - -# c495b75350234825adc932da17f923ac -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:30 -msgid "" -"Open the project :file:`world.qgs`, located in the :file:`qgis/` folder. " -"Zoom in to Indonesia by using the :guilabel:`Zoom In` tool." -msgstr "" - -# 67c17de30ceb4c899119e24b5f67a2cc -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:36 -msgid "" -"Set the scale in the :guilabel:`Scale` field, which is in the status bar " -"along the bottom of the screen. While over Indonesia, set this value to " -"1:20000000 (one to twenty million)." -msgstr "" - -# 74b9ea70ebb04beab0e7a2a62aef04f6 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:43 -msgid "Now pan around the map while keeping an eye on the Scale field." -msgstr "" - -# a2ef23f8f2034097871d268a6cf4bd3c -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:45 -msgid "" -"Do you notice the scale changing? This is because you’re moving away from " -"the one point that you zoomed into at 1:20000000, which was at the centre of " -"your screen. All around that point, the scale is different." -msgstr "" - -# f6d2bd5b3d974a7f88bea713d693b256 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:50 -msgid "" -"To understand why, think about a globe of the Earth. It has lines running " -"vertically along it from North to South. These longitude lines are far apart " -"at the equator, but they meet at the poles. In a GCS, you’re working on this " -"sphere, but your screen is flat. When you try to represent the sphere of the " -"earth on a flat surface, it becomes distorted, as if you took an orange peel " -"and tried to flatten it. What this means on a map is that the longitude " -"lines stay equally far apart from each other, even at the poles (where they " -"are supposed to meet). This means that, as you travel away from the equator " -"on your map, the scale of the objects that you see gets larger and larger. " -"What this means for us, practically, is that there is no constant scale on " -"our map!" -msgstr "" - -# 139d9861c60849b8a7081f9062f619a5 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:64 -msgid "" -"To solve this, we’ll use a Projected Coordinate System (PCS) instead. A PCS " -"projects or converts the data in a way that makes allowance for the scale " -"change and corrects it. Therefore, to keep the scale constant, we should re-" -"project our data to use a PCS." -msgstr "" - -# 1e73572d542c474682c36ac273df28c3 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:70 -msgid "" -"Projection is the act of taking coordinates on a sphere (like the earth), " -"and manipulating them so that they can be displayed on a flat surface." -msgstr "" - -# b77ded0edd4442a1a6e36d05cafea8f9 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:75 -msgid "2. “On the fly” reprojection" -msgstr "" - -# eac3294d4f864246bc039392f97dec1e -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:77 -msgid "" -"Every QGIS project has a CRS, and each of the data layers has a CRS too. " -"Often these are the same. Your project may be in WGS84, and the layers too. " -"But sometimes you will add a layer that is not in the same CRS as the " -"project, and you need QGIS to convert it so that it can be displayed along " -"with the rest of the data. The term that we use for this is reprojecting 'on " -"the fly'." -msgstr "" - -# b57a50b814c14ac782f1e22582240abe -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:85 -msgid "" -"To enable 'on the fly' projection, click on the :guilabel:`CRS Status` " -"button in the status bar along the bottom of the QGIS window:" -msgstr "" - -# 8ad334e993bf48bc832ae5e7e731a471 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:91 -msgid "" -"In the dialog that appears, check the box next to :guilabel:`Enable ‘on the " -"fly’ CRS transformation`." -msgstr "" - -# 002443cb43124bf8b8888b608ce0a970 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:97 -msgid "" -"Type :kbd:`NSIDC` into the Filter field. One CRS (\"NSIDC EASE-Grid " -"Global\") will appear in the list below." -msgstr "" - -# 07995583b80049b38716de1d8b6bb8d3 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:103 -msgid "Click on it to select it, and then click :guilabel:`OK`." -msgstr "" - -# f5cc52c7bb434bbc9df3d77cfc210b13 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:105 -msgid "" -"Notice how the shape of Indonesia changes. All projections work by changing " -"the apparent shapes of objects on Earth." -msgstr "" - -# 984ab1c6d6d3404e8a625f01c9fc1fae -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:108 -msgid "Zoom in to a scale of 1:20000000 again, as before." -msgstr "" - -# 5ba6465542d34590b18a33bab773ca2c -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:110 -msgid "Pan around the map." -msgstr "" - -# 5005898e3f2241bbab94faf7b7ba63a4 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:112 -msgid "" -"Notice that the scale stays the same! 'On the fly' reprojection is useful " -"for combining datasets that are in different CRSes." -msgstr "" - -# 0195f6490f0944fd94d520ef6a14c4e8 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:115 -msgid "" -"Deactivate 'on the fly' reprojection again, by unchecking the box next to :" -"guilabel:`Enable ‘on the fly’ CRS transformation`." -msgstr "" - -# db99a6232a174a2f9d5bec9a1a8ba34e -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:118 -msgid "" -"Load the vector layer :file:`Indonesia.shp` located in :file:`qgis/" -"peta_dunia/`." -msgstr "" - -# debf1bf5e42146ac814fd7500ac5100b -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:121 -msgid "" -"You may need to unzip :file:`peta_dunia.zip` first in order to open the " -"shapefile." -msgstr "" - -# 49e261d3013d47808eb87f108948e178 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:124 -msgid "" -"What do you notice? The layer is not visible! But that’s easy to fix, right?" -msgstr "" - -# be0ed0e18d11428ebeb03d4a3f0a6ac4 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:128 -msgid "Right-click on the new layer in the Layers panel." -msgstr "" - -# 6a4b1ef8d2b742f0b04f3a4b0613454c -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:130 -msgid "Click :guilabel:`Zoom to Layer Extent`." -msgstr "" - -# 23ab7f19e398478cb781e3375f44d22e -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:132 -msgid "OK, so now we see Indonesia... but where is the rest of the world?" -msgstr "" - -# 2e2345012e2f4727acd7f9f926626e8e -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:134 -msgid "" -"It turns out that we can zoom between these two layers, but we can’t ever " -"see them at the same time. That is because their Coordinate Reference " -"Systems are so different. The continents layer is in degrees, but the " -"Indonesia layer is in metres. In other words, one feature in the continents " -"layer might be 8.5 degrees away from the equator, but the same feature in " -"the Indonesia layer might be 900000 metres away from the equator." -msgstr "" - -# f4d0d87e30ce4126a52249b9c4efa5b1 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:143 -msgid "" -"8.5 degrees and 900000 metres is about the same distance, but QGIS does not " -"know that! One of our layers must be reprojected to match the other layer. " -"To correct this, again enable tranformation:" -msgstr "" - -# 389cb250bdad4e4ba2524902b79f11b0 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:148 -msgid "Activate :guilabel:`Enable ‘on the fly’ CRS transformation` as before." -msgstr "" - -# a08aff09c67943c1a8ca6c7b51117ea0 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:150 -msgid "Again click :guilabel:`Zoom to Layer extent` on the Indonesia dataset." -msgstr "" - -# 5c64874c3c394af28eb0b3675f299b6d -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:152 -msgid "" -"Now, because they’re made to project in the same CRS, the two datasets fit " -"perfectly:" -msgstr "" - -# 4d513d22c81b487a82fd1dada8b4741a -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:158 -msgid "" -"When combining data from different sources, it’s important to remember that " -"they might not be in the same CRS. 'On the fly' reprojection helps you to " -"display them together." -msgstr "" - -# a0f9539d7d3540d2b9da2fbb447e2e1f -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:163 -msgid "3. Datasets with different CRSes" -msgstr "" - -# e1c10cb576ce4709bf35e99b20906273 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:165 -msgid "" -"It’s great that QGIS can reproject layers on the fly so that we can work " -"with them in the same project. But this requires more time for our computer " -"to reproject the layers, and can slow down our work. For this, or for other " -"reasons, we might want to be able to reproject a dataset one time, and save " -"it with the new projection." -msgstr "" - -# 03b625e09acd46faa75ea7aeff019bdd -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:172 -msgid "" -"Let’s reproject the Indonesia layer so that it is in the same CRS as the " -"project. To do this, we will need to export the data to a new file using a " -"new projection." -msgstr "" - -# fa8cb003600e4e90965120fee03a7f3d -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:177 -msgid "Right-click on the :guilabel:`Indonesia` layer in the Layers panel." -msgstr "" - -# 810e700a7dee442cb09421a76b9dd08d -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:179 -msgid "" -"Select :guilabel:`Save As...` in the menu that appears. You will be shown " -"the :guilabel:`Save vector layer as...` dialog." -msgstr "" - -# bced811e3a0f482da0b10e209eab45cc -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:182 -msgid "" -"Click the :guilabel:`Browse` button next to the :guilabel:`Save as` field." -msgstr "" - -# 5f60641dcf4e47018547dad35c2567c1 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:184 -msgid "" -"Navigate to :file:`qgis/peta_dunia/` and specify the name of the new layer " -"as :kbd:`Indonesia_terproyeksi.shp`." -msgstr "" - -# 2012f4648993441191083b54abfaaecc -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:187 -msgid "Leave the encoding unchanged." -msgstr "" - -# 6d71524788724f6bbff5b25859b410a8 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:189 -msgid "" -"Change the value of the CRS in drop-down box to :guilabel:`Project CRS`." -msgstr "" - -# a11d34b9dc384a67ae3a6b1fbc8ef0eb -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:191 -msgid "Check the box next to :guilabel:`Add saved file to map`." -msgstr "" - -# e4d0c8c9054b4bef8bb3d75dc1c2eac1 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:193 -msgid "The :guilabel:`Save vector layer as...` dialog now looks like this:" -msgstr "" - -# 4aecaa4fbfaf4f4485dcc89313937e57 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:198 -msgid "" -"Click :guilabel:`OK` and after a minute, above your map extent you should be " -"presented with:" -msgstr "" - -# 6949592c51a642d6a3bc21113c7fa8f7 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:203 -msgid "Wait until the notification disappear." -msgstr "" - -# ed489b1c758a4c5a81d119fc7b7c70c7 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:205 -msgid "" -"Now your new layer, :guilabel:`Indonesia_terproyeksi`, will be shown in the " -"layers panel. If you turn off 'on the fly' reprojection, this layer will " -"still be shown correctly, because it has been reprojected into the same CRS " -"as the project (and the continents layer)." -msgstr "" - -# 5c0e1c9876c3429693c7082950908433 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:211 -msgid "4. Creating a custom projection" -msgstr "" - -# 088d2a769a8748dab473ba98c6bd58d0 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:213 -msgid "" -"There are many more projections than just those included in QGIS by default. " -"You can even create your own projections. Let’s see how this works." -msgstr "" - -# 4dd459c7863b4416864df00703383cb0 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:217 -msgid "Start a new project." -msgstr "" - -# 6f7a52b8ecb941bbb5997564a193ddb6 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:219 -msgid "" -"Load the vector layer :file:`oceans.shp` located in :file:`qgis/peta_dunia/`." -msgstr "" - -# 9cc52fcd89554530bced559a45648822 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:222 -msgid "" -"Go to :menuselection:`Settings ‣ Custom CRS...` and you’ll see this dialog:" -msgstr "" - -# 648cbabc22e1414dab3fa960bc61d21d -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:227 -msgid "" -"We will create a projection known as Van der Grinten I. This interesting " -"projection represents the earth on a circular field instead of a rectangular " -"field, as most projections do." -msgstr "" - -# b7cc3ace4f0740e794eaf19a63c8df55 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:231 -msgid "Enter :kbd:`Van der Grinten I` in the :guilabel:`Name` field." -msgstr "" - -# da51c430c3504826bac90bc65cfb7ffd -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:233 -msgid "In the Parameters field, enter the following string:" -msgstr "" - -# c9bed4b230b7489fab6ebb0455bc71e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:235 -msgid "" -":kbd:`+proj=vandg +lon_0=0 +x_0=0 +y_0=0 +R_A +a=6371000 +b=6371000 +units=m " -"+no_defs`" -msgstr "" - -# a48bb981a6084437ab55a184d2180ee7 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:237 -msgid "Click :guilabel:`OK`." -msgstr "" - -# 0f56e9d928bc4417aaeff1c3c0a37700 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:239 -msgid "Go to :menuselection:`Project ‣ Project Properties`." -msgstr "" - -# 977ba28df1cb4fef8eadcc6afb84f1e7 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:241 -msgid "Enable 'on the fly' reprojection." -msgstr "" - -# 6086d6480da144b6b9e8094a4361354e -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:246 -msgid "" -"Search for your newly defined projection by typing it into the :guilabel:" -"`Filter` box:" -msgstr "" - -# b8832181699b48eb94b16894c23e1a00 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:252 -msgid "" -"You should see it appear in the box at the bottom. Select it, and click :" -"guilabel:`OK`." -msgstr "" - -# 0f8d89555d304db181bede19f54ef74a -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:255 -msgid "" -"Once you’ve applied the new projection, the map will be reprojected like " -"this:" -msgstr "" - -# b877a9ea8a1546a19f6f8c3319ac94bb -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:261 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.po deleted file mode 100644 index fb0961ae..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.po +++ /dev/null @@ -1,856 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-04-02 17:14+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 37540e785a3d4078869e17d9ebffc6a5 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:6 -msgid "Module 6: Working with Vector Data" -msgstr "" - -# 1572daa245454d21bf21760d7743ca67 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 68a8dddc16af459daa069f710a7e2806 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:10 -msgid "Understand vector data" -msgstr "" - -# cb1b83444d924949b031e1b6e0330db9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:11 -msgid "Identify attributes of vector data" -msgstr "" - -# c43c8e6ce6c942c1904fc471b3a55472 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:12 -msgid "Add vector layers" -msgstr "" - -# 10eb9c2d29e54b0b8660a25b09ed72ff -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:13 -msgid "Symbolise vector layers" -msgstr "" - -# 666870e255e34172b174aa9e633913a3 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:15 -msgid "" -"In this module, we will learn what is meant by vector data. We will practise " -"adding it to our QGIS projects, and we will learn how to style the data in " -"different ways." -msgstr "" - -# bca8c07185dd40e0b7e01cfbb6f23ed9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:21 -msgid "1. Vector data" -msgstr "" - -# b1ba1ef327f24adcb9f7fb29fcfba43c -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:23 -msgid "" -"Vector data is the most common type of data found in GIS. A vector is " -"essentially something made up of single points, or lines connecting those " -"points. In other words, points, lines and polygons are all vectors (curved " -"lines are vectors too, but we won’t worry about that for now). We are " -"already quite familiar with vector data because in the previous unit, we " -"used JOSM to create it!" -msgstr "" - -# 9a0c52cb628547869107e97d84b94a42 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:31 -msgid "" -"Each object in a vector dataset is referred to as a feature. In JOSM we " -"often refer to them as objects, but in traditional GIS terminology they are " -"features. A polygon that represents a building is a feature, as is a line " -"that represents a river. Each feature has a geographic location and is " -"attached to other data that describe the feature." -msgstr "" - -# 94ddbd49cd2747119c4daec772a6a827 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:39 -msgid "" -"One important thing to note is that QGIS layers can only contain one type of " -"feature. That is, one layer can’t contain both point features and line " -"features, because they are different types of data. Hence if you have a file " -"that contains school polygons and another file that contains school points, " -"you would add them as two separate layers." -msgstr "" - -# 770aee1d19a24f959b1d82ccfceccd94 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:46 -msgid "" -"Almost always, polygon layers will be at the bottom of your layers list, " -"line layers in the middle and point layers at the top. You don’t generally " -"want your polygons overlapping your lines and points." -msgstr "" - -# cb1233ea780b47b88e6acf51488dd127 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:51 -msgid "2. Attribute data" -msgstr "" - -# e18cecab87b44f0d9d5d5c108d736017 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:53 -msgid "" -"It’s important to know that the data you will be working with does not only " -"represent where objects are in space, but also tells you what those objects " -"are." -msgstr "" - -# 44525e30060a4f0d8c5568ba5e220992 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:56 -msgid "" -"Open the project :file:`sleman_2_5.qgs`. This is the same project that you " -"worked with previously." -msgstr "" - -# 684a9ead683740d58d61687c43de7608 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:59 -msgid "" -"In the project we see the position of Sleman districts, the railway, and " -"some roads, but we can’t see all of the data contained in those layers." -msgstr "" - -# a5ada67aa8034b6ca381bb288600e2ed -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:62 -msgid "Select :guilabel:`Jalan_Sleman_OSM` in the Layers panel." -msgstr "" - -# c718614f073640278d1c404fedcbd09f -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:67 -msgid "Click the :guilabel:`Open Attribute Table` button:" -msgstr "" - -# 38c9d4f5dbc74f97b430063cab990737 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:72 -msgid "" -"You will see a table with more data about the streets layer. This extra data " -"is called **attribute data**. The lines that you can see on your map, which " -"represent the location of the streets is called **spatial data**. Remember " -"in JOSM there was the same division. The points, lines and shapes we draw " -"tell us **where**, but the tags, or attributes, tell us **what**. These " -"definitions are commonly used in GIS, so it’s essential to remember them!" -msgstr "" - -# 5bcd966878804e80b8bb607f3bb51214 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:85 -msgid "" -"Take a look at the attribute table. Each row in the table is associated with " -"one feature in the streets layer. Each column contains one of the " -"attributes. If you select other layers and click on the :guilabel:`Open " -"Attribute Table` button, you’ll see different tables." -msgstr "" - -# 5b9c335ddd434f7fa50e4568619acd00 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:91 -msgid "Close the attribute table." -msgstr "" - -# 4d6a8e73ad4748458255f097524c9a8e -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:94 -msgid "3. Adding vector data" -msgstr "" - -# e4b4d835e8c841ee939f35f45c8cb5ae -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:97 -msgid "3.1 Shapefiles" -msgstr "" - -# 65e7089282844e8c974ec5f46589d19c -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:99 -msgid "" -"You’ve already added vector data to a project in the form of a shapefile. As " -"we mentioned previously, a shapefile is a commonly used geographic file " -"format. It can easily be converted into other formats, and most GIS software " -"can read this type of file. You may notice when adding a shapefile that " -"there are numerous files in your shapefile directory with the same name. " -"This is because a shapefile actually relies on a collection of several other " -"files to store the data and keep various settings. When you add a shapefile " -"to your project, you should always add the one that ends in :file:`.shp`, " -"but the rest of the files are important too!" -msgstr "" - -# cbf6b112869d4a9cb3f934621dbc4318 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:111 -msgid "" -"Do you remember how to add a shapefile to a project? Try adding the layer :" -"file:`POI_Sleman_OSM`, from the shapefile located in the tutorial directory. " -"If you don’t remember how to add a new vector layer, refer to the " -"instructions :ref:`module 3 `." -msgstr "" - -# a4252f0570614478b76e1358728ae020 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:117 -msgid "Your project should look like this after the new layer has been added:" -msgstr "" - -# 48af3d0563484105a106c2deae8b26a2 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:123 -msgid "3.2 Databases" -msgstr "" - -# 89e2611fcead4777947927657dd384aa -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:125 -msgid "" -"Shapefiles (and other types of files) are one way to store geographic data. " -"You can also load a vector layer into QGIS from a database. You may already " -"be familiar with Database Management Systems (DBMS) such as Microsoft " -"Access. GIS applications also make use of databases to store geographic " -"data. Databases can be hosted and used locally on your computer, or could be " -"shared between users over a network or the internet." -msgstr "" - -# 277f4734fd524997a4f8f946e0b4709d -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:133 -msgid "" -"Let’s try adding a layer from a database. Click the :guilabel:`Add " -"SpatiaLite Layer` button. If you can’t find it, right-click on the toolbar " -"and make sure that the :guilabel:`Manage Layers` toolbar is enabled." -msgstr "" - -# d3b4376dfdd442b6bcf2782e09a2b753 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:141 -msgid "You will see a dialog box. Click :guilabel:`New`." -msgstr "" - -# 81f5f5f7780b46d6a751f95453e3ec58 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:147 -msgid "" -"Navigate to the :file:`qgis_data/Sleman/` folder and find :file:`guna_lahan." -"db`. Select the file and click :guilabel:`Open`." -msgstr "" - -# 04d578b07e1c418e91ade0735094088a -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:151 -msgid "" -"Now in the original dialog box, notice that the drop-down button contains " -"*“guna_lahan.db @ ...”*, followed by the path of the database file on your " -"computer." -msgstr "" - -# 3ebea78a589c4816931ad469126116a0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:155 -msgid "Click :guilabel:`Connect`. You will see the following in the box:" -msgstr "" - -# f99f921adb0d4267ae178c20b7f14c63 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:161 -msgid "" -"This database actually has three different layers available, all saved in " -"the database. Click on the first layer to select it, then hold :kbd:`SHIFT` " -"and click the last layer to select them all." -msgstr "" - -# 1640bd9dfc774855ba1d755af6c12f6f -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:166 -msgid "Click :guilabel:`Add`. This will add all three layers to our project." -msgstr "" - -# 704dace1b0b24201835439da245bbf42 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:169 -msgid "" -"Remember frequently to save your map! Your QGIS project file does not save " -"the data (data is saved in a shapefile or a database), but it does remember " -"the layers that you have added to the project, their order and any settings " -"that you adjust." -msgstr "" - -# 53df3c246ac24f6ab4d1b7d3b0e149d6 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:174 -msgid "" -"The layers you have just added are all polygon layers, so you will want to " -"drag them down below the line and point layers. If you have a checkbox " -"beneath your layers list that reads :guilabel:`Control rendering order`, go " -"ahead and check it." -msgstr "" - -# bdeb2962114a4221bc7db71427f4cbc0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:179 -msgid "" -"Let’s remove a couple of layers to make it easier to deal with our data. " -"Right-click on the :guilabel:`railway` and :guilabel:`district` layers and " -"click :guilabel:`Remove`. Then order your layers like this:" -msgstr "" - -# 32d98bc2960d49f8be30e9eed9b55b41 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:188 -msgid "4. Symbology" -msgstr "" - -# b52ab4c761cd4a939506cf27f4a8a344 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:190 -msgid "" -"The symbology of a layer is its visual appearance on the map. One of the " -"basic strengths of GIS is that you have a dynamic visual representation of " -"the data you are working with. Therefore, the visual appearance of the map " -"(which depends on the symbology of the individual layers) is very important. " -"The end user of the maps you produce, will need to be able to easily see " -"what the map represents. Equally as important, you need to be able to " -"explore the data as you’re working with it, and good symbology helps a lot." -msgstr "" - -# d7aa88aa120640f2966963a694e71b81 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:200 -msgid "" -"In other words, having proper symbology is not a luxury or just nice to " -"have. In fact, it’s essential for you to use a GIS properly and produce maps " -"and information that people will understand and be able to use." -msgstr "" - -# fd9c9f0631dc4a6ea2f4a545b1993600 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:205 -msgid "4.1 Changing colours" -msgstr "" - -# 5afb5c3653954aad83a06e2638949c69 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:207 -msgid "" -"To change a layer’s symbology, we will open its properties. Let’s begin by " -"changing the colour of the :guilabel:`pemukiman` layer." -msgstr "" - -# c62129212991473693327b4e8eb91e01 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:210 -msgid "Right-click on the :guilabel:`pemukiman` layer in the Layers panel." -msgstr "" - -# 4b2f796099604c52a976b4e5df84d202 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:212 -msgid "Select :guilabel:`Properties` in the menu that appears." -msgstr "" - -# aa215d1042b54519a261acacb43f8a9e -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:214 -msgid "" -"By default you can also access the Properties menu by double-clicking on the " -"name of the layer." -msgstr "" - -# 1a3de3b37ff24822a79622e891e7a2f4 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:217 -msgid "In the Properties window select the :guilabel:`Style` tab." -msgstr "" - -# 9a78a0fd1be242efb663f67dc26cae6a -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:222 -msgid "Click the :guilabel:`Color` button to change the colour." -msgstr "" - -# ad508e5661d24ddba215f4c7e112013e -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:227 -msgid "" -"A standard colour dialog will appear. Choose a pink colour and click :" -"guilabel:`OK`." -msgstr "" - -# 98ba506482cc43d39bd8f5bba46d3e10 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:233 -msgid "" -"If you succeed at changing the colour of the :guilabel:`pemukiman`layer then " -"you can try to change the colour of the :guilabel:`vegetasi` layer and the :" -"guilabel:`tubuh_air` layer too. You can use a green colour for the :guilabel:" -"`vegetasi` layer and a blue colour for the :guilabel:`tubuh_air` layer." -msgstr "" - -# 114368c3e0b34cf39a0dfbbf5b8258a4 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:238 -msgid "" -"Click :guilabel:`OK` again in the Layer Properties window, and you will see " -"the colour change being applied to the layer." -msgstr "" - -# c79f6965d9e2444b9cb7cce5f080cfea -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:245 -msgid "4.2 Changing symbol structure" -msgstr "" - -# 0ffba8c92e204268be2e729dcf2071d9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:247 -msgid "" -"There’s more to a layer’s symbology than just its colour. Next we want to " -"change the colour of the vegetation, but we also want to eliminate the lines " -"between the different types of vegetation, so as to make the map less " -"visually cluttered." -msgstr "" - -# 49a7a2a59e1e453cad2faf56f9513b30 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:253 -msgid "" -"Open the :guilabel:`Layer Properties` window for the :guilabel:`vegetasi` " -"layer. Under the :guilabel:`Style` tab, you will see the same kind of dialog " -"as before. This time, however, we will do more than just change the colour." -msgstr "" - -# 8c82a744410a42b1aa71c36448d73495 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:258 -msgid "" -"Click on :guilabel:`Simple Fill` under :guilabel:`Symbol layers`. The Symbol " -"layer dialog will appear on the right side of the panel." -msgstr "" - -# 091589ead77f40819860734b4da1cd16 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:264 -msgid "" -"Change the colour inside the polygons in the layer by clicking the button " -"next to the :guilabel:`Fill` label:" -msgstr "" - -# 85cbbdfaa4734326b6b5d8fd20e2c00a -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:270 -msgid "" -"In the dialog that appears, choose a new colour (one that suits vegetation)." -msgstr "" - -# d34012010ab94148988efefaf3a454e9 -# 29cf0cdee3104a57b962f68eceff8a74 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:273 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:335 -msgid "Click :guilabel:`OK`." -msgstr "" - -# d66eb630228a4bbfafcad4bb464b6a0b -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:275 -msgid "Next, we want to get rid of the lines between all the farms." -msgstr "" - -# 3595c7b9ef0b49f0945e12006076c253 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:277 -msgid "" -"Click on the :guilabel:`Border style` drop-down box. At the moment, it " -"should be showing a short line and the words :guilabel:`Solid Line`." -msgstr "" - -# b483a071ba414fb095c00d6a63495bd2 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:281 -msgid "Change this to :guilabel:`No Pen`." -msgstr "" - -# 648177f825f5498bbec18b0c4889322f -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:286 -msgid "" -"Click :guilabel:`OK`, and then :guilabel:`OK` again. Now when we look at our " -"map, the vegetasi layer will have a new colour and no lines between polygons." -msgstr "" - -# 565604b5653f4c3e910edf18faf2fc2a -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:290 -msgid "" -"Try changing the symbology of the :guilabel:`pemukiman` layer so that it " -"also does not have outlines." -msgstr "" - -# 4625a8c7f429475693e11ed9f1cf6ad0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:297 -msgid "4.3 Scale-based visibility" -msgstr "" - -# e8d4166e1ca34a4588435569b27d948e -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:299 -msgid "" -"Sometimes you will find that one of your layers is not suitable for a given " -"scale. For example, if you have a layer which shows the earth’s continents " -"but not with very much detail, the continent lines may not be very accurate " -"when you are zoomed in very far." -msgstr "" - -# d8e0da20f4a14f93a175a400d8393188 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:305 -msgid "" -"Scale is a reference to how your map references what is actually on the " -"ground in terms of size. Scale is usually given in terms like 1:10000, which " -"means that one centimetre of length on your map is equal to 10000 " -"centimetres in the real world. When you zoom in or out on a map, the scale " -"changes, as you can see in the status bar at the bottom of QGIS." -msgstr "" - -# 8d2a736ed31e49af84483bd8d32a2c33 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:313 -msgid "" -"In our case, we may decide to hide our streets layer when we are zoomed out " -"very far (a small scale). For example, the streets layer is not very useful " -"when we are zoomed out far and it looks like a blob." -msgstr "" - -# 390c10459ec240d7b711d7bd57112c52 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:318 -msgid "Let’s enable scale-based rendering:" -msgstr "" - -# c420db572b624967a6991d4b29e29e97 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:320 -msgid "" -"Open the :guilabel:`Layer Properties` dialog for the :guilabel:" -"`Jalan_Sleman_OSM` layer." -msgstr "" - -# 314c4a5ae0484b47a0365a902ef9197a -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:323 -msgid "Click the :guilabel:`General` tab." -msgstr "" - -# f8712d1b9b124deeb2bd99907fb7a590 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:328 -msgid "" -"Enable scale-based rendering by clicking on the checkbox :guilabel:`Scale " -"dependent visibility` then change the value in :guilabel:`Maximum` to 1:10 " -"and :guilabel:`Minimum` to 1:100000." -msgstr "" - -# 5f2ac087054540e1af1083be69acbc41 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:337 -msgid "" -"Look at your map and see what happens when you zoom in and out. The streets " -"layer should appear when you are at a large scale and disappear at small " -"scales." -msgstr "" - -# f4bd067f8279410a8be8028751efd02a -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:341 -msgid "" -"You can use your mouse wheel to zoom in increments. Alternatively, use the " -"zoom tools to draw a box and zoom to it:" -msgstr "" - -# 9fbab652390d409a8d08397c36b6a291 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:348 -msgid "4.4 Adding symbol layers" -msgstr "" - -# 5de416042888455395b1ffec15990f20 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:350 -msgid "" -"Now that we know how to change simple symbology for layers, the next step is " -"to create more complex symbology. QGIS allows us to do this using symbol " -"layers." -msgstr "" - -# f369f51e07634bcba6e2011535e8aac1 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:354 -msgid "" -"Open the :guilabel:`vegetasi` layer’s Symbol properties dialog as before." -msgstr "" - -# 25f5ea95246642b7a0673de32a708485 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:356 -msgid "" -"In this example, the current symbology has no outline (i.e., it uses the :" -"guilabel:`No Pen` border style)." -msgstr "" - -# e1173a1a41ca478aa8dbc3113d4b4df0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:362 -msgid "Select :guilabel:`Fill` and Click the :guilabel:`+` button on the left." -msgstr "" - -# 835f6c47ec8948b5aeaea063a33056c0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:367 -msgid "Another symbol layer will be added to the list:" -msgstr "" - -# 54d384f1016b4041bad3ffa3e88741e9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:372 -msgid "" -"The symbol layers may appear different in colour, but don't worry, we’re " -"going to customise it anyway." -msgstr "" - -# 34736a6d47814222af18282ab56c56e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:375 -msgid "" -"Now this layer has two different symbologies. In other words, both the blue " -"colour AND the green colour will be drawn. However, the green colour will be " -"drawn above the blue, and since it is a solid colour, it will completely " -"hide the blue colour. Let’s change it." -msgstr "" - -# fd228d54cd284a7d8e3538bbd15d0cf3 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:381 -msgid "" -"It’s important not to get confused between a map layer and a symbol layer. A " -"map layer is a vector (or raster) that has been loaded into the map. A " -"symbol layer is only the symbology used to represent a map layer. This " -"course will usually refer to a map layer as just a layer, but a symbol layer " -"will always be called a symbol layer, to prevent confusion." -msgstr "" - -# 3b0396784195412db2939a49ddc4f495 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:387 -msgid "Set the :guilabel:`Border style` to :guilabel:`No Pen` as before." -msgstr "" - -# 19a6d0ca4c744e03af7825b2a629ecba -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:389 -msgid "" -"Change the fill style to something other than :guilabel:`Solid` or :guilabel:" -"`No brush`. For example, :guilabel:`Dense 7`:" -msgstr "" - -# 1982b7d27eca4f6eb9e8e2db04056ef6 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:395 -msgid "" -"Click :guilabel:`OK` and then :guilabel:`OK` and take a look at your layer's " -"new symbology." -msgstr "" - -# fd1591d1e02d4a6684c7e404e9c85f70 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:401 -msgid "" -"Now try it yourself. Add an additional symbology layer to the :guilabel:" -"`Jalan_Sleman_OSM` layer." -msgstr "" - -# daf0bae2376442f3927102ae0aa15700 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:404 -msgid "Give the thickness of the original layer a value of 2.0" -msgstr "" - -# 66dd849f44704e398e37c04e6ea2d3ec -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:405 -msgid "Give the thickness of the new symbology layer a value of 1.0" -msgstr "" - -# 2ae9f7ef8add4dfa918c1f09965a7a80 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:407 -msgid "This will result in your roads looking something like this:" -msgstr "" - -# a912abe6c3244a56a230503b42a65f0b -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:412 -msgid "" -"Our streets now appear to have an outline, but they seem disjointed, as if " -"they don’t connect with each other. To prevent this from happening, we can " -"enable symbol levels, which will control the order in which the different " -"symbol layers are rendered." -msgstr "" - -# c7dbcc52ca8442f3ae1efc3f36542d54 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:418 -msgid "" -"In the Layer Properties dialog, go to :menuselection:`Advanced ‣ Symbol " -"levels...`:" -msgstr "" - -# a7124069e0a9467daab153f64fd6d122 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:424 -msgid "" -"The Symbol Levels dialog will appear. Check the box next to :guilabel:" -"`Enable symbol levels`." -msgstr "" - -# 31728eefe4b94ad99defa4b22a193f51 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:430 -msgid "Your map will now look like this:" -msgstr "" - -# 6235548687af43b9b522f60966e02cd0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:435 -msgid "" -"When you’re done, you can save the symbol itself in QGIS so that you won’t " -"have to do all this work again if you want to use the symbol in the future. " -"Save your current symbol style by clicking the :guilabel:`Save Style...` " -"button under the Style tab of the Layer Properties dialog." -msgstr "" - -# 71e318425a274bb2b48967c2c79a0b7f -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:441 -msgid "" -"Give your style file a name and save. You can load a previously saved style " -"at any time by clicking the :guilabel:`Load Style ...` button. Before you " -"change a style, keep in mind that any unsaved style you are replacing will " -"be lost." -msgstr "" - -# 05268d7dc5044de4a8ea69ea485b4b9e -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:450 -msgid "" -"Try to change the appearance of the streets layer again, so that the roads " -"are dark grey or black, with a thin yellow outline and a dashed white line " -"running in the middle." -msgstr "" - -# f868039d754d4b60bb70965f3ffe4fe9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:458 -msgid "4.5 Classified symbology" -msgstr "" - -# 97c54c9861564d87a4850a607af026d0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:460 -msgid "" -"Symbol levels also work for classified layers (i.e., layers having multiple " -"symbols). We will cover classification in the next module, but you can see " -"how it works here with roads. By classifying various streets according to " -"their type, we can give them different symbologies and they will still " -"appear to flow into each other." -msgstr "" - -# aec2f700916b4795bf453a1f69d28dcb -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:472 -msgid "4.6 Symbol layer types" -msgstr "" - -# 1accd0191c2f44cb881a27d8495b58d2 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:474 -msgid "" -"In addition to setting fill colours and using predefined patterns, you can " -"use different symbol layer types entirely. The only type we’ve been using up " -"to now was the Simple Fill type. The more advanced symbol layer types allow " -"you to customise your symbols even further." -msgstr "" - -# 897cc09b8ef54103b3f0f352346a719b -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:480 -msgid "" -"Each type of vector (point, line and polygon) has its own set of symbol " -"layer types." -msgstr "" - -# 94feff4bff524e56bc5d145925b3b775 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:484 -msgid "4.6.1 Vector points" -msgstr "" - -# 9a421190ba6844138ef3b5d2b46434d0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:486 -msgid "Open the symbol properties for the :guilabel:`POI_Sleman_OSM` layer:" -msgstr "" - -# 58ef3d5dcc8b4791a3b48f5f0f4009ab -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:491 -msgid "" -"Access the various symbol layer types by clicking a symbol layer (1) then " -"clicking the drop-down box in the upper right corner (2)" -msgstr "" - -# f7c240db37e744eaa8bfdcab21aee3a9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:497 -msgid "" -"Investigate the various options available to you, and choose a symbol layer " -"type other than the default Simple Marker." -msgstr "" - -# 1e5627c21a614930bae81f602f623252 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:500 -msgid "If in doubt, use an Ellipse Marker." -msgstr "" - -# 1335fe7a893944d990af30a319652dba -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:502 -msgid "" -"Choose a white outline and dark fill, with a symbol width of 2.00 and symbol " -"height of 4.00." -msgstr "" - -# e265d92356f84c1ea0557d7096c2f168 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:512 -msgid "4.6.2 Vector lines" -msgstr "" - -# 2fb3c21bf8f2428991d087eda164167e -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:514 -msgid "" -"To see the various symbology options for vector lines, open the Layer " -"Properties for the streets layer, and click on the drop-down box:" -msgstr "" - -# 51c6233424034e9e87a1f8f3aeb8b2b8 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:520 -msgid "Click :guilabel:`Marker line`." -msgstr "" - -# 2ef7a9c184f54e1fb012525ad9748e90 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:525 -msgid "Click :guilabel:`Simple Marker` in the Symbol layers panel (1)." -msgstr "" - -# 138936d02341402785bb8b0bf45a8d39 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:530 -msgid "Change the symbol properties to match this dialog:" -msgstr "" - -# 92332ed952c7495a8d7665bfa942a399 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:535 -msgid "" -"Click on :guilabel:`Marker line` in the Symbol layers panel, and change the " -"interval to 2.00:" -msgstr "" - -# 58a786b3aa74441d9f3de29cc22b3919 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:541 -msgid "" -"Once you have applied the style, take a look at its results on the map. As " -"you can see, these symbols change direction along with the road but don’t " -"always bend along with it. This is useful for some purposes, but not for " -"others. If you prefer, you can change the symbol layer in question back to " -"the way it was before." -msgstr "" - -# 822cd5bfd81c4fbbacf6b84b12c935db -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:552 -msgid "4.6.3 Vector polygons" -msgstr "" - -# cc1cd3f8e55f452388427dc66e1c7adf -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:554 -msgid "" -"Now let’s change the symbol layer type for the :guilabel:`pemukiman` layer. " -"Take a look at the drop-down menu as you have done for the point and line " -"layers, and see what the various options can do." -msgstr "" - -# 703ecc3f5d3b4b2f9b236094483f7a55 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:561 -msgid "" -"Feel free to play around with the various options. We will use the Point " -"pattern fill with the following settings:" -msgstr "" - -# 78498a3660a44ddd9ab09063299e18d9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:567 -msgid "Add a new symbol layer with a normal Simple fill." -msgstr "" - -# a2945d8c399b4e8281d77cabfee37a57 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:569 -msgid "Make it grey with no outlines." -msgstr "" - -# 87f3d223f648415f84a1a4a08586dac4 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:571 -msgid "" -"Move it underneath the point pattern symbol layer with the :guilabel:`Move " -"down` button:" -msgstr "" - -# ba8849aedc994a7385e825ed15832a58 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:577 -msgid "The symbol properties should look like this:" -msgstr "" - -# a79f0949c4be44808c44c4f4ddedf1b0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:582 -msgid "" -"As a result, you have a textured symbol for the urban layer, with the added " -"benefit that you can change the size, shape and distance of the individual " -"dots that make up the texture." -msgstr "" - -# 2a0e741b92694c12a1bdb7cb13aa3ca9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:587 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.po deleted file mode 100644 index d733e1d6..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.po +++ /dev/null @@ -1,544 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-04-02 17:15+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# a973c5f559e14a4b9ac596153b2024c1 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:6 -msgid "Module 7: Labels and Classification" -msgstr "" - -# 8a5c5539d12a40b38e27a4d8b8817c6a -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 5aa5b9a225314ffdb4958c45a0673e53 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:10 -msgid "" -"Explore attribute data of an object and understand the uses of different " -"types of data" -msgstr "" - -# 4821600e65d4486181becb06521ec110 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:12 -msgid "Add labels to vector layers" -msgstr "" - -# 91816deeba7144b7aeee99337fce7518 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:13 -msgid "Symbolise vector data using categories" -msgstr "" - -# e8af5eb984744a648429dc76e038f5c5 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:15 -msgid "" -"Up to now, none of the changes we have made to the map have been influenced " -"by the objects that are being shown. In other words, every type of " -"vegetation looks alike, and all the roads look alike. When looking at the " -"map, the viewers don’t know anything about the roads they are seeing; only " -"that there is a road of a certain shape in a certain area." -msgstr "" - -# 7b0c7bdee03b40afa423835ec9f9d1f5 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:21 -msgid "" -"But the whole strength of GIS is that all the objects that are visible on " -"the map also have attributes. Maps in a GIS aren’t just pictures. They " -"represent not only objects in locations, but also information about those " -"objects. In this lesson we will explore the attribute data of an object and " -"understand what the various data can be useful for." -msgstr "" - -# 266b98bc64ec4cbdbad3c9428ea13dd3 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:27 -msgid "" -"If you would like to start with the examples used in this module, begin by " -"opening the QGIS project :file:`sleman_2_6.qgs`." -msgstr "" - -# 96fed2611466438ba21e1959774f99c3 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:31 -msgid "1. Attribute data" -msgstr "" - -# 05f8cdf1e1534490a187f5fa9a0e6094 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:33 -msgid "" -"Open the attribute table for the :guilabel:`POI_Sleman_OSM` layer by " -"selecting it in the Layers panel and clicking the :guilabel:`Open Attribute " -"Table` button (or right-click on the layer and select :menuselection:`Open " -"Attribute Table`)." -msgstr "" - -# 65fccc3d38674b82a7edb44e3427bd51 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:42 -msgid "Which field would be the most useful to use as a label?" -msgstr "" - -# c1338f50d5ba4c509080e21a512b85a1 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:47 -msgid "" -"You now know how to use the attribute table to see what is actually in the " -"data you’re using. A dataset will only be useful to you if it has the " -"attributes that you care about. If you know which attributes you need, you " -"can quickly decide if you’re able to use a given dataset, or if you need to " -"look for another one that has the required attribute data." -msgstr "" - -# 878806b87bf54a4ebc07745c2d5825f1 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:53 -msgid "" -"Different attributes are useful for different purposes. Some of them can be " -"represented directly as text for the map user to see. Next we’ll see how to " -"use attributes as labels, so that users can see the text on your map." -msgstr "" - -# b01c0efc5b694db4b5b802100b5d4d12 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:58 -msgid "2. Label tool" -msgstr "" - -# 4e904a6525634dba9d6527e8a817763b -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:60 -msgid "" -"Labels can be added to a map to show any information about an object. Any " -"vector layer can have labels associated with it. Labels rely on the " -"attribute data of a layer for their content." -msgstr "" - -# 1ef969ea5c974af6a2e42d3710e64547 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:64 -msgid "" -"There are several ways to add labels in QGIS, but some are better than " -"others. You may notice that when you open the Layer Properties window for a " -"layer, there is a tab called “Labels.” While this tab is designed to put " -"labels on your map, it is not nearly as good as the so-called “Label Tool,” " -"which we will learn in this section. Before being able to access the Label " -"tool, you will need to ensure that it has been activated." -msgstr "" - -# f568e5082b4c496a81a14e037f1e79cb -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:71 -msgid "Go to the menu item :menuselection:`View ‣ Toolbars`." -msgstr "" - -# c86d5aa197974cc4ad68e2dcd6b51c96 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:73 -msgid "" -"Ensure that the Label item has a checkmark next to it. If it doesn’t, click " -"on the Label item, and it will be activated. The Label toolbar looks like " -"this:" -msgstr "" - -# 9f4a1b6044004d1ab672c385e8eefc11 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:79 -msgid "" -"Click on the :guilabel:`POI_Sleman_OSM` layer in the Layers panel, so that " -"it is highlighted." -msgstr "" - -# eff10cab1d5b4b23b2dc7e30597250cf -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:82 -msgid "Click on the :guilabel:`Layer Labeling Options` button:" -msgstr "" - -# bc2086ee356d48738c8f82bce7b3f4ae -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:87 -msgid "This gives you the Layer labeling settings dialog." -msgstr "" - -# 0d29d8994d7a4482a9082d5192533af0 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:89 -msgid "Check the box next to :guilabel:`Label this layer with...`" -msgstr "" - -# ff0611d4053749858b2b91cfe036a432 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:94 -msgid "" -"We must indicate which of the attribute fields we want to use for the " -"labels. The **NAME** field is the mostly likely candidate for a label, so " -"select NAME from the drop-down box:" -msgstr "" - -# fe90e8fc546e4fa6b1b95de9becb035a -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:101 -msgid "Click :guilabel:`OK`. The map should now have labels like this:" -msgstr "" - -# 3d092562f7924387834417c496707b84 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:106 -msgid "" -"This is good, but as you can see, the labels are overlapping the points that " -"they are associated with. That doesn’t look very nice. The text is also a " -"bit larger than it needs to be. Let’s fix these problems!" -msgstr "" - -# 24c7e0e2d2d0409499ec76496516e708 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:110 -msgid "" -"Open the :guilabel:`Layer Labeling Options` again by clicking on its button." -msgstr "" - -# 7d344989406b46cba133e5cec06a9108 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:112 -msgid "Click on the :guilabel:`Text` tab to change the text properties:" -msgstr "" - -# 0250207084f649b79ef4a10a20918384 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:117 -msgid "" -"A standard text change dialog appears, similar to those in many other " -"programs. Change the font to :kbd:`Arial` and size to :kbd:`9`." -msgstr "" - -# 6c99a71883e445e68e863e25a532252a -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:120 -msgid "" -"Now click on the :guilabel:`Buffer` tab to add a buffer space around the " -"text. Check the box labelled :guilabel:`Draw text buffer`." -msgstr "" - -# a8de625fb4204e3bbb530aab7f256a36 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:126 -msgid "Your labels will look like this:" -msgstr "" - -# 2eda5dea556043d49723d8518d5a4497 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:131 -msgid "" -"That’s the font problem solved! Now let’s look at the problem of the labels " -"overlapping the points." -msgstr "" - -# 04f13fd9482540e198454560544c2ac9 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:134 -msgid "In the Label window dialog, go to the :guilabel:`Placement` tab." -msgstr "" - -# 09d5239d04fc4eb696310bb427fe46e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:136 -msgid "Change the value of :guilabel:`Distance` to :kbd:`2`." -msgstr "" - -# 876b8ddd48114f54bd945d9c29a731cf -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:141 -msgid "" -"Click :guilabel:`OK`. The labels no longer hover over the icons, but are " -"“buffered” a short distance away:" -msgstr "" - -# 6caa338d934740b4b7fe296c8adb21c9 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:148 -msgid "Labelling lines" -msgstr "" - -# 324135ff30e34e779d6a0b132be1e4c1 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:150 -msgid "" -"Now that you know how labelling works, there’s an additional problem. Points " -"and polygons are easy to label, but what about lines? If you label them the " -"same way as the points, they will look funny. Street name labels, for " -"example, should be parallel to the street lines, not hovering horizontally " -"above them. To make lines behave, we’ll need to edit some options." -msgstr "" - -# b2aa414914b140b6a9a78e176d153195 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:156 -msgid "" -"Hide the :guilabel:`POI_Sleman_OSM` layer so that it doesn’t distract you." -msgstr "" - -# af482234444648b68f1c6b44f2de9333 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:158 -msgid "" -"Activate labels for the :guilabel:`Jalan_Sleman_OSM` layer as before. " -"(Remember to use the Label tool on the toolbar, not the one in Label " -"Properties!)" -msgstr "" - -# 14fb62f99a2c413b81b8bba71d9ea6f4 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:162 -msgid "Set the font size to :kbd:`9` so that you can see more labels." -msgstr "" - -# d4f05cf785604cbb866240eed1abc460 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:164 -msgid "Zoom in so that the scale is near 1:10000." -msgstr "" - -# 7c3cc432b52d48a483614f61f97dc13b -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:166 -msgid "" -"On the Label window’s :guilabel:`Placement` tab, choose the following " -"settings:" -msgstr "" - -# 299bc482a7024612ad9e0390e021a3af -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:172 -msgid "The map will look somewhat like this, depending on scale:" -msgstr "" - -# 2f66f19ee9b34c478ea6a2615c8b2d38 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:177 -msgid "" -"It’s good but still not ideal. For starters, some of the names appear more " -"than once, and that’s not always necessary. To prevent that from happening:" -msgstr "" - -# 0538ec4debb444c1b0f226dc89adc8fb -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:181 -msgid "" -"Enable the option :guilabel:`Merge connected lines to avoid duplicate " -"labels` which is located on the :guilabel:`Rendering` tab." -msgstr "" - -# c9d3ca3e33a740e1ac96d795e1b5e3e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:184 -msgid "" -"Another useful function is to prevent labels being drawn for features too " -"short to be of notice." -msgstr "" - -# b61962d7354a4e08810200550f127456 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:187 -msgid "" -"Also on the :guilabel:`Rendering` tab, set the value of :guilabel:`Suppress " -"labeling of features smaller than ...` to :kbd:`5.0 mm`. Observe the results " -"after you click :guilabel:`Apply`." -msgstr "" - -# b9464bb94ae74e37973dc9f62fd138e2 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:194 -msgid "" -"Try out different settings on the :guilabel:`Placement` tab as well. As we " -"mentioned before, the horizontal option is not a good idea for roads in this " -"case, so let’s try the curved option instead!" -msgstr "" - -# d0d76e17261a4fd19a8a5122e4bc3c10 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:201 -msgid "" -"Select :guilabel:`Curved` under :guilabel:`Placement`. Here’s the result:" -msgstr "" - -# a0c270869a074aba8536b8baa95d7282 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:206 -msgid "" -"As you can see, this hides a lot of the labels that were previously visible, " -"because of the difficulty of making some of them follow twisting street " -"lines and still be legible. You can decide which of these options to use, " -"depending on what you think seems more useful or what looks better." -msgstr "" - -# f6ab2f1656db41f7aba2f17711de31b1 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:211 -msgid "" -"Now that you know how attributes can make a visual difference for your map, " -"how about using them to change the symbology of objects themselves? That’s " -"the topic for the next section!" -msgstr "" - -# b647c45cc95e42999c9bf04d9578153d -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:216 -msgid "3. Classification" -msgstr "" - -# 17de942653034c40acfcb339edb10575 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:218 -msgid "" -"Labels are a good way to communicate information such as the names of " -"individual places, but they can’t be used for everything. For example, let’s " -"say that we want to show which district each feature in our vegetation layer " -"is in. Using labels, it would look like this:" -msgstr "" - -# 4d6be07aec4741a9aa8c0fb2807dbf6c -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:226 -msgid "" -"Obviously this is not ideal, so we need another solution. That’s what this " -"lesson is about! In this section, we will learn how to classify vector data " -"effectively." -msgstr "" - -# 450b6fa5ab7f45329100d74ffab7a5c8 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:231 -msgid "3.1 Classifying nominal data" -msgstr "" - -# 4c7b6cb381ad4f57a4b8e525ffa6d14f -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:233 -msgid "Open Layer Properties for the :guilabel:`vegetasi` layer." -msgstr "" - -# 3cdaa89c4c1a43dbb842b6de486ddf76 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:235 -msgid "Go to the :guilabel:`Style` tab." -msgstr "" - -# b2ff2ecb292347a492bde9e6d7dc0f32 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:237 -msgid "Click on the drop-down box that says :guilabel:`Single Symbol`." -msgstr "" - -# 91b9367435e745e08ac72ceed8400bc1 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:242 -msgid "Change it to :guilabel:`Categorized`. The interface will change:" -msgstr "" - -# 01e5b481a413494a80f08bb81b4c92ce -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:247 -msgid "" -"Change the :guilabel:`Column` field to :guilabel:`guna_lahan` and the :" -"guilabel:`Color ramp` to :guilabel:`Spectral`:" -msgstr "" - -# ec06ebac54a342eea34c239b9dbd3ce7 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:253 -msgid "Click the button labelled :guilabel:`Classify`:" -msgstr "" - -# 538fbfe591e643bc9c4628656679820e -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:258 -msgid "Click :guilabel:`OK`. You’ll see something like this:" -msgstr "" - -# 83d00dbf62384b2f9c89861b5d0394ab -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:263 -msgid "" -"In the Layers panel, click the plus sign next to the :guilabel:`vegetasi` " -"layer. This will show more information about the layer classification and " -"styles." -msgstr "" - -# b3b5c6deab374e5792e4c7364f2010e4 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:270 -msgid "" -"So, this is useful! But it hurts your eyes to look at it, so let’s see what " -"we can do about that." -msgstr "" - -# a3e32d3fa434405aa55763f68ed44961 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:273 -msgid "" -"Open :guilabel:`Layer Properties` and go to the :guilabel:`Style` tab again." -msgstr "" - -# 507fbf02041a4d6fa71c8244cd1e8f2f -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:275 -msgid "Click the :guilabel:`Change` button next to :guilabel:`Symbol`." -msgstr "" - -# fab75d13bdc9441fa35dc8ea68865e07 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:280 -msgid "" -"Remove the outline as you did in the previous module (change the border " -"style to “No Pen”)." -msgstr "" - -# a5a5fe87c1814168af3d8ed3978660b4 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:283 -msgid "Click the :guilabel:`Delete all` button." -msgstr "" - -# dbae775e71f64abd828126b244d8d635 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:288 -msgid "Now click :guilabel:`Classify` again, and new symbols will appear." -msgstr "" - -# 8c00083a23dd4d57bc85b8c4c9d96a92 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:290 -msgid "" -"Change the colour for each type of vegetation by double-clicking on the " -"coloured block next to its name. You can change the colour for each type of " -"vegetation to something that you think is more applicable." -msgstr "" - -# 6b5cdfd8e8dc46f2833a0832c2da3ace -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:297 -msgid "" -"Notice that the category on the bottom is empty. Select it, and click the :" -"guilabel:`Delete` button." -msgstr "" - -# d2a04fb67da84ea1b0a48f9ebb5d2194 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:300 -msgid "When we click :guilabel:`OK` our map looks like this:" -msgstr "" - -# 105372a32cc0482a83623381ea49b264 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:305 -msgid "" -"If you feel confident in your new classification skills, try to classify the " -"residential layer yourself. Use darker colours to distinguish it from " -"vegetation." -msgstr "" - -# dedcf745ce6e4800ba7a45ad8fb0e0a6 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:310 -msgid "3.2 Ratio classification" -msgstr "" - -# 4a7dca283b084a9bad235e734f0731af -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:312 -msgid "" -"In the previous example, we classified the :guilabel:`vegetasi` layer by " -"what is known as nominal classification. This type of classification is when " -"categories are defined based on names. Next we will classify the :guilabel:" -"`pemukiman` layer based on the size of each feature. Classifying with " -"attributes that contain only positive numbers, such as land area, is known " -"as ratio classification." -msgstr "" - -# 7397f0910eff46a3a444f3fc5b1ccd03 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:319 -msgid "" -"Open the Attribute Table for the :guilabel:`pemukiman` layer. Notice the " -"final column, :guilabel:`luas_ha`. This attribute contains the size of the " -"land area contained within that feature polygon." -msgstr "" - -# 6b2727653d354808b01cae1b7a4e1559 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:326 -msgid "Open the Layer Properties for :guilabel:`pemukiman`." -msgstr "" - -# 2dd4a5a3ce224a8dafcfa95cc262242d -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:328 -msgid "" -"Change the style type to :guilabel:`Graduated` and use :guilabel:`luas_ha` " -"as the :guilabel:`Column`." -msgstr "" - -# 0dde8bd87cc14aceb0fe1fa9cf09abf0 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:334 -msgid "" -"Because we are categorising with numbers this time, a colour gradient will " -"be useful for representing our categories. Click on :guilabel:`Oranges` next " -"to :guilabel:`Color ramp` and then click :guilabel:`Classify`." -msgstr "" - -# 3a6fe4d0a9134b10adcdac47ab3a2f1d -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:341 -msgid "Now you’ll have something like this:" -msgstr "" - -# bf5773a26cd344c797ff4bed8740cde9 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:347 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.po deleted file mode 100644 index 95077ab7..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.po +++ /dev/null @@ -1,572 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-03-24 18:25+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 9f15568ef0d74a758c59de34d22931aa -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:6 -msgid "Module 8: Working with Raster Data" -msgstr "" - -# 40d6ccf2c7b24b2aab00c7b52db759ce -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# bfa6bccb8e334977a552f7fd466b6bd7 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:10 -msgid "Create raster data" -msgstr "" - -# b041ef844873499895b064e66c70b00f -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:11 -msgid "Change raster symbology" -msgstr "" - -# 442bec90bac94e989f4cc03e423e8340 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:12 -msgid "Perform terrain analysis" -msgstr "" - -# faa171497dea4fff81db1d35badf7365 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:14 -msgid "" -"Thus far we’ve worked mostly with vector data, which consists of features, " -"and these features are themselves made up of points and lines. In this " -"module we will learn about raster data. Remember when you were editing " -"OpenStreetMap in JOSM? The points, lines and shapes that you drew were " -"vector data. But when you loaded Bing aerial imagery in the background, that " -"was raster data. So what’s the difference?" -msgstr "" - -# 93b78af50eda470b863db9c93f225ee4 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:21 -msgid "" -"Raster data essentially comes in the form of an image. It is made up of " -"pixels, like a photograph, and a raster image will always be some number of " -"pixels wide and some number of pixels high. If you zoom in far enough on a " -"raster image, it will start to become blurry, just as if you opened a photo " -"on your computer and zoomed in very close. As we’ll see in this module, " -"however, a raster image can mean more than just a photograph from the sky. " -"Follow along and we’ll learn all about rasters!" -msgstr "" - -# 0e456197d0f64feda17ab4cb286be71e -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:30 -msgid "1. Loading raster data" -msgstr "" - -# 6ca5f4837d644deca4b51e721b97b9cc -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:32 -msgid "" -"Open the project named :file:`sleman_2_7.qgs` in the directory :file:`qgis/" -"`. We’ve simplified the project since the last module to make it easier to " -"follow along, and so that our layers load a bit faster. However, if you are " -"comfortable you can easily carry on with your project from the previous " -"module." -msgstr "" - -# de634aea15f24f1098d340f46eae8d80 -# eefa291ffbca4373a60a7f3af152d07c -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:38 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:86 -msgid "Click on the :guilabel:`Load Raster Layer` button:" -msgstr "" - -# ff91d1fa979242e7855f912926727e09 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:43 -msgid "" -"The Load Raster Layer dialog will open. Find the file in the directory :file:" -"`Sleman/` named :file:`Sleman.tif`. Open it." -msgstr "" - -# 7f6a086eeb3c49b1a2a23ade6830308c -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:46 -msgid "" -"QGIS will open a dialog which explains that the new layer does not have a " -"CRS assigned. In the box at the bottom, scroll down until you find **WGS " -"84 / UTM zone 49S**. Select it and click :guilabel:`OK`." -msgstr "" - -# 98a7c62ac5944ff5834a1c86dc177957 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:53 -msgid "" -"When the raster layer loads, be sure to drag it to the bottom of the list in " -"the Layers panel." -msgstr "" - -# 3b9a53f3af274860ad0030d0f04ea050 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:56 -msgid "" -"If you can’t see the raster layer, you may need to enable 'on the fly' " -"transformations. To do so:" -msgstr "" - -# d65f727848454847957216f4d6eadd4d -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:59 -msgid "Go to :menuselection:`Project ‣ Project Properties...`" -msgstr "" - -# 28baebc695d84209b0c885a260a9f4dc -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:60 -msgid "" -"Check the box next to :guilabel:`Enable 'on the fly' CRS transformation`." -msgstr "" - -# e0ad13629b6e42b2a1276675c5493d9f -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:61 -msgid "Click :guilabel:`OK`." -msgstr "" - -# b9c33743877c4e90b391085216191127 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:66 -msgid "The raster should display nicely underneath your vector data layers." -msgstr "" - -# 9b9a67a3d8124f9e96a9cb7c951605a7 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:74 -msgid "2. Changing raster symbology" -msgstr "" - -# 8c51673663994c8a89190530d884797d -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:76 -msgid "" -"Not all raster data consists of aerial photographs. There are many other " -"forms of raster data, and in many of those cases, it’s essential to " -"symbolise the data so that it becomes properly visible and useful. In this " -"section we’ll add a new kind of raster and see how to change it’s symbology." -msgstr "" - -# 1a5feb21a4794919b8496df0925bd3ce -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:82 -msgid "" -"First let’s remove our previous raster image so that our project will load " -"faster. Right-click on the :guilabel:`Sleman` layer and click :guilabel:" -"`Remove`." -msgstr "" - -# 78c89ec577ff4fef8336d1216613a61c -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:91 -msgid "" -"Open the file named :file:`SRTM_Sleman.tif`, which is located in :file:" -"`Sleman/SRTM/`." -msgstr "" - -# 56be720d571d40dcadcb9ae4c06af03c -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:94 -msgid "" -"When it appears in the Layers panel, right-click on it and click :guilabel:" -"`Rename`. Give it the name :kbd:`DEM`." -msgstr "" - -# 7adb61bcb5904bf596c71659ee11f71f -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:97 -msgid "" -"This dataset is a Digital Elevation Model (DEM). It’s a map of the elevation " -"(altitude) of the terrain, showing us where the mountains and valleys are. " -"In an aerial photograph, each pixel in the image is a colour. When we view " -"all of these different coloured pixels together, they show us something we " -"can understand - the Earth as viewed from above. In a DEM, each pixel has a " -"different value instead of colour. The value of each pixel represents " -"elevation." -msgstr "" - -# 5c6ca1b12ea449d1bc8337375b877776 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:105 -msgid "" -"When it loads, you’ll notice that the new raster image appears as a grey " -"rectangle. It’s seen here with the roads layers on top:" -msgstr "" - -# 2dc8394444194ca2b6c8087b0962baac -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:111 -msgid "" -"The layer appears grey (and doesn’t give us any information) because its " -"symbology hasn’t been customised yet. In the colour aerial photograph we " -"loaded previously, everything is already defined. But if you load a raster " -"image and it’s just a grey rectangle, then you know there’s no symbology for " -"it yet. It still needs to be defined. That’s what we will do next." -msgstr "" - -# 7bf5033f7adb4cf38ee1e0979b07185a -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:117 -msgid "" -"Open the Layer Properties dialog for the SRTM layer, which is now named :" -"guilabel:`DEM`." -msgstr "" - -# 055c6268aa9140ec9d510246a674fa46 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:120 -msgid "" -"Switch to the :guilabel:`Style` tab. This shows the current symbology " -"settings, and as we’ve seen, they don’t give us much information on the " -"layer. Let’s make sure the layer has data in it." -msgstr "" - -# 31418127e89340189ce6dc18583f043f -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:124 -msgid "" -"Change the :guilabel:`Render type` to :guilabel:`Singleband pseudocolor`." -msgstr "" - -# ede92d29ceae46d081d2087d34f26675 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:129 -msgid "Click :guilabel:`OK`. The raster should look like this:" -msgstr "" - -# 428f03d75a9d489a90da204906297982 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:134 -msgid "" -"Good! This tells us that there is data in this layer. And by looking at it " -"we can get an idea of where the elevation gets higher. In the north we can " -"see the location of Mount Merapi." -msgstr "" - -# 0eb5043c1cfa4c0cad762255e918c8cc -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:138 -msgid "" -"Let’s stop for a minute and understand what is happening here. Remember that " -"an image is made up of pixels, individual cells that contain a value, which " -"is usually a colour value. For example, if you zoom in very closely on a " -"photograph you can see those individual pixels, like this:" -msgstr "" - -# 491fe850ef9b412fa921f8024f648d26 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:146 -msgid "" -"The value of each cell is saved in the file. Imagine the file being saved " -"something like this, where each square is a pixel:" -msgstr "" - -# 97125d6a94f94d8489882028ea94314f -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:152 -msgid "" -"Of course the computer doesn’t understand words for colours. In fact the " -"value of each cell would be a number, which the computer then associates " -"with a certain colour. For our aerial image, this is already defined. Since " -"it is a normal image, it knows to associate the numbers for each pixel in " -"the file with the common colours that we see every day. But this new raster " -"image is different, because the values of each pixel don’t represent " -"colours, but rather altitude, and QGIS doesn’t know automatically how to " -"display it. Hence it shows every pixel in the image as grey, even if the " -"values in each pixel are different. When we change the symbology to " -"Psuedocolor, we can see all the different pixel values shown with various " -"colours." -msgstr "" - -# 6ab3c0febe8a496eb12e1a9dcb4767aa -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:163 -msgid "" -"It would be nice to represent our DEM layer as a greyscale spectrum, rather " -"than a variety of bright colours.. Next we will tell QGIS to symbolise the " -"layer with colours in a spectrum, beginning at the lowest pixel value in the " -"file and ending at the highest pixel value. In other words, if the pixel " -"values looked like this:" -msgstr "" - -# bc1a13845bc8454d98bc439a04c65482 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:172 -msgid "QGIS would create a spectrum equating numbers to colours like this:" -msgstr "" - -# 6bacca0798bb4e76a6de1b9cb8758beb -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:177 -msgid "And render the image like this:" -msgstr "" - -# a190cae558864258b6f912fecd878486 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:182 -msgid "Open the Layer Properties again." -msgstr "" - -# 9e0f2d36adb84849906d047147b76fa7 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:184 -msgid "Switch the render type back to :guilabel:`Singleband gray` (1)." -msgstr "" - -# cdfa4d15a6b143bea10da9f36287b3ce -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:186 -msgid "Check the box next to :guilabel:`Min / max` (2)." -msgstr "" - -# d426cafdbd3e46c8a1b3f3ffa893cc40 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:188 -msgid "" -"Next to :guilabel:`Contrast enhancement`, select :guilabel:`Stretch to " -"MinMax` (3)." -msgstr "" - -# af53a409ad154011be19811d785ad03d -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:194 -msgid "" -"But what are the minimum and maximum values that should be used? The " -"current values are those that just gave us a grey rectangle. Instead, we " -"should be using the minimum and maximum pixel values that are actually in " -"the image. You can determine those values easily by loading the minimum and " -"maximum values of the raster." -msgstr "" - -# 335946ce682544f1ac034d4bfc37309e -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:201 -msgid "" -"Under :guilabel:`Load min / max values`, select :guilabel:`Estimate " -"(faster)`." -msgstr "" - -# a09a184e884d4f4a81fc1b7bf3fc4fb4 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:204 -msgid "Click the :guilabel:`Load` button:" -msgstr "" - -# 37ef34ce8c2d4f3db08e19b76f0d5982 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:209 -msgid "" -"Notice how the custom :guilabel:`Min` and :guilabel:`Max` values have " -"changed. The lowest pixel value in this image file is 0 and the highest is " -"about 3294." -msgstr "" - -# a20d34d6cf3d4974819ee2ecd8020fb5 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:215 -msgid "" -"Click :guilabel:`OK`. You should see the values of the raster properly " -"displayed, with the darker colours representing valleys and the lighter " -"ones, mountains:" -msgstr "" - -# d70b7a303abf414f81dac5447f234fc7 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:222 -msgid "" -"We’ve learned to do this the tricky way, but can we do it faster? Of course! " -"Now that you understand what needs to be done, you’ll be glad to know that " -"there’s a tool for doing all of this more easily." -msgstr "" - -# 095e710dc20849718c89d7b931d61e6b -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:226 -msgid "" -"Remove :guilabel:`DEM` from the Layers panel, by right-clicking it and " -"clicking :menuselection:`Remove`." -msgstr "" - -# f913b1bea764417a80f1f11cafb323d7 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:229 -msgid "" -"Load the raster image again, renaming it to :guilabel:`DEM` as before. It " -"will be a grey rectangle again." -msgstr "" - -# c18223efafa4427fab21c90b93057afb -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:232 -msgid "" -"Enable the tool you’ll need by enabling :menuselection:`View ‣ Toolbars ‣ " -"Raster`. These icons will appear in the interface:" -msgstr "" - -# bcf094b600134b28abf3cc19e4047ef5 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:239 -msgid "" -"The button on the right will stretch the minimum and maximum values to give " -"you the best contrast in the local area that you’re zoomed into. It’s useful " -"for large datasets. The button on the left will stretch the minimum and " -"maximum values to constant values across the whole image." -msgstr "" - -# 90ae6499e286442eb3ca5509fcbad160 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:244 -msgid "" -"Click the left button labelled :guilabel:`(Stretch Histogram to Full " -"Dataset)`. You’ll see the data is now correctly represented as before! Easy!" -msgstr "" - -# 77ce37b07ac04b35a11e856027da6a89 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:249 -msgid "3. Terrain analysis" -msgstr "" - -# 66a1ab204aee49a79250ce90ef9e48b1 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:251 -msgid "" -"Certain types of rasters allow you to gain more insight into the terrain " -"that they represent. Digital Elevation Models (DEMs) are particularly useful " -"in this regard. In this section we’ll do a little bit more with our DEM " -"raster, in order to try to extract more information from it." -msgstr "" - -# ce6994a135b94e3bb8391b342bb98bc2 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:257 -msgid "3.1 Calculating a hillshade" -msgstr "" - -# cf0ebd1e5ece48aa91bdb5fb81ab98c4 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:259 -msgid "" -"The DEM you have on your map right now does show you the elevation of the " -"terrain, but it can sometimes seem a little abstract. It contains all the 3D " -"elevation information about the terrain that you need, but it doesn’t really " -"look 3-Dimensional. To get a better look at the terrain, it is possible to " -"calculate a hillshade, which is a raster that maps the terrain using light " -"and shadow to create a 3D-looking image." -msgstr "" - -# f7d99f56bc37486295e7c329f2141ceb -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:266 -msgid "" -"To work with DEMs, we will use the all-in-one DEM (Terrain models) analysis " -"tool." -msgstr "" - -# 61d41ff44bef4826bcc37ab997e46c9a -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:269 -msgid "Go to :menuselection:`Raster ‣ Analysis ‣ DEM (Terrain models)`." -msgstr "" - -# 89bc7be51cab4a1997889e0aebea1330 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:274 -msgid "" -"In the dialog that appears, ensure that the input file is the :kbd:`DEM` " -"layer." -msgstr "" - -# 1db56771cbaf4caa8944ddc89d3a1636 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:277 -msgid "" -"Set the output file to :kbd:`hillshade.tif` in the directory :file:`qgis/" -"Sleman/`." -msgstr "" - -# d7d58dd4244b4d948c67d28472fd891f -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:283 -msgid "Check the box next to :guilabel:`Load into canvas when finished`." -msgstr "" - -# f94aa884afd84fedad08d8e3996459cb -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:288 -msgid "Leave all the other options unchanged." -msgstr "" - -# d406ea15e934456797e4205fc1a64730 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:290 -msgid "Click :guilabel:`OK` to generate the hillshade." -msgstr "" - -# 58d6e5c5ec4f463aad092131d1acb9cd -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:292 -msgid "" -"When the processing is complete, click :guilabel:`OK` on the notification." -msgstr "" - -# e8f869b420394683ad1480e80af20809 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:294 -msgid "Click :guilabel:`Close` in the dialog." -msgstr "" - -# 9e47c28edd9b4aadae0c738d8a42f5e5 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:296 -msgid "" -"There should now be a new layer called :guilabel:`hillshade` that looks like " -"this:" -msgstr "" - -# 2c21e1d2ff85420eacc6da94578cbf52 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:302 -msgid "" -"This looks more Three-Dimensional, but can we improve on this? On its own, " -"the hillshade looks like a plaster cast. It will look better if we can " -"combine it with our more colourful DEM. We can do this by making the " -"hillshade layer an overlay." -msgstr "" - -# 75fe4317f21f4089976593bb622099fc -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:308 -msgid "3.2 Using a hillshade as an overlay" -msgstr "" - -# 3d2872ec5ac241a28c49205f6dbf5aba -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:310 -msgid "" -"A hillshade can provide very useful information about the sunlight at a " -"given time of day. But it can also be used for aesthetic purposes, to make " -"the map look better. The key to this is setting the hillshade to being " -"mostly transparent." -msgstr "" - -# 6c2ce059e7744773a18e6122ff7902f0 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:315 -msgid "" -"Change the symbology of the original :guilabel:`DEM` layer to use the :" -"guilabel:`Pseudocolor` scheme." -msgstr "" - -# 3508bc7f59324139a224655cd3b73ab0 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:318 -msgid "Hide all the layers except the DEM and hillshade layers." -msgstr "" - -# 9d8f7d75b8eb4ab8a2a51cf35a3f015e -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:320 -msgid "" -"Click and drag the :guilabel:`DEM` layer beneath the :guilabel:`hillshade` " -"layer in the Layers panel." -msgstr "" - -# 0660f082b0db4e9abfac6409b20f9bf5 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:326 -msgid "Ensure that :guilabel:`Control rendering order` is checked." -msgstr "" - -# 918eb294348b4f48aac2069bf0bf6bd2 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:331 -msgid "" -"Now we will make the hillshade layer somewhat transparent. Open its Layer " -"Properties and go to the :guilabel:`Transparency` tab." -msgstr "" - -# 265ee4fdcacd40aeb406b9729c9b995c -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:334 -msgid "Set the :guilabel:`Global transparency` to 50%:" -msgstr "" - -# 471bff17d7b84332971579a779df5a2e -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:339 -msgid "" -"Click :guilabel:`OK` in the Layer Properties dialog. You should get a result " -"similar to this:" -msgstr "" - -# 6b0fa03fd2794fefa51b08bbb17547a4 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:345 -msgid "" -"Switch the :guilabel:`hillshade` layer off and on in the Layers panel to see " -"the difference it makes." -msgstr "" - -# 7fa9c1af0d8849e2ada5676c8fa5d510 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:348 -msgid "" -"Using a hillshade in this way, it’s possible to enhance the topography of " -"the landscape. If the effect doesn’t seem strong enough to you, you can " -"change the transparency of the hillshade layer; but of course, the brighter " -"the hillshade becomes, the dimmer the colours behind it will be. You will " -"need to find a balance that works for you." -msgstr "" - -# 582ace51d1294ee0af1ecb28f52c6cc0 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:354 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.po deleted file mode 100644 index 8fcd07f4..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.po +++ /dev/null @@ -1,725 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-04-02 17:15+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 0a384e75ea674adfb393bde459ab786b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:6 -msgid "Module 9: Creating Vector Layers" -msgstr "" - -# 4bb9a044a45147079c130c60d2591f25 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# e55a5d4e9f3840a487fb435ddb76c17d -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:10 -msgid "Add a raster layer for digitising" -msgstr "" - -# 129acf84a7a2415faad6eaa08fb83048 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:11 -msgid "Create new vector features (polygons, lines and points)" -msgstr "" - -# 83494bc3ccaf40fbb307dc7744a280a2 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:12 -msgid "Digitise new vectors by tracing a raster layer, considering topology" -msgstr "" - -# ce713753300341db840725b8f4fb9892 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:13 -msgid "Georeference an image" -msgstr "" - -# 7504d6ff410247219ff210b1c2ebbdce -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:15 -msgid "" -"Creating a map using data that already exists is only the beginning. We have " -"already learned how to edit and add features to OpenStreetMap using JOSM. In " -"this module, we will discuss how to edit existing vector layers in QGIS, and " -"how to create an entirely new dataset." -msgstr "" - -# 8f3ef9d4d84448329125e49aaa9f3a27 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:22 -msgid "1. The layer creation dialog" -msgstr "" - -# 04d5e71ba94441979b9c766d7d30a1c1 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:24 -msgid "" -"Before you can add new vector data, you need a vector dataset (a layer) to " -"add it to. In our case, we’ll begin by creating a new data layer, and then " -"we’ll add features to it. First, we must define our dataset." -msgstr "" - -# 9801b3765fda401398019e7ff79c0b58 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:30 -msgid "" -"Create a new project in QGIS by clicking on the :guilabel:`New Project` icon." -msgstr "" - -# f0c954944a4542dc8faeacfd6992631d -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:36 -msgid "" -"Go to :menuselection:`Layer ‣ Create Layer ‣ New Shapefile Layer`. You’ll be " -"presented with the following dialog:" -msgstr "" - -# aa4db0702c9040deb5a50747e14a072f -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:42 -msgid "" -"At this point we must decide what kind of dataset we want to create. " -"Remember that a data layer can only contain features of points, lines or " -"polygons - never a mix. When we create the layer, we must define what type " -"of data it will contain." -msgstr "" - -# bad6cc59e7e54327a32e970fc47d096d -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:48 -msgid "" -"Since polygons are made up of points and lines, let’s jump into polygons. " -"Once you’ve mastered this, creating a point or a line layer should be easy!" -msgstr "" - -# b210a2c51aab41fbb8256e16b14b8369 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:51 -msgid "Check the box next to :guilabel:`Polygon`." -msgstr "" - -# e6dda01422404aacb098283d70a85c14 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:56 -msgid "" -"We’ll specify the Coordinate Reference System (CRS) in the next box. By " -"default the box will contain the CRS of the project, which for us will be " -"WGS84. This is a widely used and very useful CRS, so let’s stick with it!" -msgstr "" - -# 7294009f2b934a468ff72542c68da165 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:64 -msgid "" -"When we create our new layer, the attribute table will only have one column " -"by default - **id**. This attribute contains a unique id number for every " -"feature. We can add additional fields to the attribute table now, when we " -"create the layer. Let’s add a name field." -msgstr "" - -# 0bef3f030fcd45b58275199ffe42ba11 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:71 -msgid "" -"Type :kbd:`nama` into the box next to Name. The settings should match those " -"shown here:" -msgstr "" - -# 4f5de6fb19044579b96ae673dd775c92 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:77 -msgid "Click the :guilabel:`Add to attributes list` button." -msgstr "" - -# 23dfbd3ed69f417e8ed6ca74776ce949 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:79 -msgid "Your attributes list should now look like this." -msgstr "" - -# 8ada7ac3c66d4684a4b811d9541b6052 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:84 -msgid "Click :guilabel:`OK`. A save dialog will appear." -msgstr "" - -# 82499f346e334ac19e3b181e090567da -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:87 -msgid "Navigate to a directory of your choosing." -msgstr "" - -# 700bcd1668c94416b8229448ee3a0950 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:89 -msgid "Save the new layer as :kbd:`gedung_kampus.shp`." -msgstr "" - -# a23f7a4203f443de94e9644123886bfa -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:91 -msgid "The new layer should appear in your Layers panel." -msgstr "" - -# 50a5f1fb04e048228f414d857392e61c -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:94 -msgid "2. Data sources" -msgstr "" - -# b21c5dd645fc416391f585555848472a -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:96 -msgid "" -"When you create new data, it should represent objects that really exist on " -"the ground. We have already learned of numerous ways to collect data using " -"OSM tools. We learned about GPS to record locations, Field Papers and of " -"course, aerial imagery. These are all tools that we can use to identify real-" -"life locations and record them in a digital data layer." -msgstr "" - -# 976b7383d16543c095495686f1b766c6 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:105 -msgid "" -"In QGIS, we can use the same types of sources to get information about the " -"ground. In this example, we will once again turn to aerial imagery, but " -"instead of using Bing, we will use a raster image provided in the tutorial " -"directory." -msgstr "" - -# 4e37532235ca404387cc93a5b9980cde -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:111 -msgid "Click on the :guilabel:`Add Raster Layer` button:" -msgstr "" - -# f4d45f4bdf2b4933826ec40836f98c2f -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:116 -msgid "Navigate to :file:`/qgis/Sleman/`." -msgstr "" - -# cdbc40ef7f1a4446b0084cac8abfab40 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:118 -msgid "Select the file :file:`UGM.tif`." -msgstr "" - -# 096af0855a644fe8b65a01dd45ff6a6b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:120 -msgid "Click :guilabel:`Open`. An image will load into your map." -msgstr "" - -# 47068acf477748be84a2c61b82df6da0 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:123 -msgid "Find the new entry in the Layers panel." -msgstr "" - -# 58d7a39f3af24162a61d09399ac1ad8a -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:125 -msgid "" -"Drag it to the bottom of the list so that it is below the vector layer you " -"created in the previous section." -msgstr "" - -# addb511bc65649b791a623b972d75b9b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:131 -msgid "" -"Go to :menuselection:`Project ‣ Project Properties` and enable 'on the fly' " -"transformation." -msgstr "" - -# 299f545dcb654e6ab6321f237352f7d2 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:134 -msgid "" -"Make sure that “WGS 84” is selected as the CRS, and click :guilabel:`OK`." -msgstr "" - -# f17fadd7355f4bc0a64ff4e0b5035717 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:139 -msgid "" -"Right-click on the :guilabel:`UGM` layer and click :guilabel:`Zoom to Layer`." -msgstr "" - -# f1d184e44693453385456b7b5299f8b6 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:142 -msgid "" -"Zoom in to the centre of the raster image. We will be digitising three areas:" -msgstr "" - -# 4e3369321997410189c431b8c5652b50 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:149 -msgid "3. Digitising" -msgstr "" - -# f937e11a0959429faba63e56cc635328 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:151 -msgid "" -"Digitising, as you might have guessed, is the art (or science) of creating " -"digital vector data from another source, such as a raster image. In order to " -"begin digitising, we must first enter edit mode. GIS software commonly " -"requires a separate mode for editing, to prevent users from accidentally " -"editing or deleting important data. Edit mode is switched on or off " -"individually for each layer." -msgstr "" - -# 34696af274ab4f148f44eeeae2401f35 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:158 -msgid "Let’s enter edit mode for the :guilabel:`gedung_kampus` layer:" -msgstr "" - -# b32d37d58a7742f0b1a910265831608f -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:160 -msgid "Select :guilabel:`gedung_kampus` in the Layers panel." -msgstr "" - -# 5f9b30f7ae2f47749faed8e9c83bdd03 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:162 -msgid "Click on the :guilabel:`Toggle Editing` button:" -msgstr "" - -# 4b2603370c114266823448dd411430e8 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:167 -msgid "" -"If you can’t find this button, ensure that the Digitising toolbar is " -"enabled. There should be a check mark next to the :menuselection:`View ‣ " -"Toolbars ‣ Digitizing` menu entry." -msgstr "" - -# 54834f30057d405ba348e899edf8e115 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:172 -msgid "Once you are in edit mode, the digitising tools will become active:" -msgstr "" - -# 3119685eb7ff4710b26c7a7190aa14ea -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:177 -msgid "From left to right on the image above, they are:" -msgstr "" - -# 5efafc260c724a278878448aecfdb269 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:179 -msgid "**Toggle Editing**: activates / deactivates edit mode." -msgstr "" - -# 316ded114bce4043af52f4c68f625ffd -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:180 -msgid "**Save Layer Edits**: saves changes made to the layer." -msgstr "" - -# e32b9e750c1640b793b0b94c1c638e6c -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:181 -msgid "**Add Feature**: start digitising a new feature." -msgstr "" - -# c80a99c4aa10491c9d6d561847c6fc35 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:182 -msgid "**Move Feature(s)**: move an entire feature around." -msgstr "" - -# 5c252590f9d44c039810ad65ae06e22b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:183 -msgid "**Node Tool**: move only one part of a feature." -msgstr "" - -# a8b6b5e21dbe4434aee9b5ab299f3cfd -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:184 -msgid "" -"**Delete Selected**: delete the selected feature (only active if a feature " -"is selected)." -msgstr "" - -# 44d0528422c844a48daf29e2c9be6f95 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:186 -msgid "" -"**Cut Features**: cut the selected feature (only active if a feature is " -"selected)." -msgstr "" - -# ae0cfe5c540c42d197b2291926dd3cbf -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:188 -msgid "" -"**Copy Features**: copy the selected feature (only active if a feature is " -"selected)." -msgstr "" - -# 4a27504b282a4f15bf678aacea12442e -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:190 -msgid "" -"**Paste Features**: paste a cut or copied feature back into the map (only " -"active if a feature has been cut or copied)." -msgstr "" - -# a54d9ad963554bf2b05863bd821369c3 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:193 -msgid "We want to add a new feature." -msgstr "" - -# 665e62084d0944978e97b3df7936ad15 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:195 -msgid "Click on the :guilabel:`Add Feature` button to start digitising:" -msgstr "" - -# 173ad069dd4d40749db01e13dd34ca55 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:200 -msgid "" -"You’ll notice that your mouse cursor becomes a crosshair. This allows you to " -"more accurately place the points you’ll be digitising. Remember that even as " -"you’re using the digitising tool, you can zoom in and out on your map by " -"rolling the mouse wheel, and you can pan around by holding down the mouse " -"wheel and dragging around in the map." -msgstr "" - -# 5f16205f560b4d048243c10e7b636d5b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:207 -msgid "The first feature you’ll digitise is a field (called \"GSP Field\"):" -msgstr "" - -# e873f71d8a784d9ca4457b020e7fc9c8 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:212 -msgid "Start by clicking on a point somewhere along the edge of the field." -msgstr "" - -# cda2685d257f46cb8f48225fa82f87ef -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:214 -msgid "" -"Place more points by clicking further along the edge, until the shape you’re " -"drawing completely covers the field. This is very similar to drawing a " -"polygon in JOSM." -msgstr "" - -# 5acb33399a0743599372ebd430b6bba3 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:218 -msgid "" -"To place the last point, right-click where you want it to be. This will " -"finalise the feature and bring up the Attributes dialog." -msgstr "" - -# 30bc8379a00e427a9863b416ef81d854 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:221 -msgid "Fill in the values as shown here:" -msgstr "" - -# 912b369841914f34958db215d29d5d77 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:226 -msgid "Click :guilabel:`OK`. You’ve created a new feature!" -msgstr "" - -# 12459431b0ee4dd68aa037587ed30935 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:228 -msgid "" -"If you make a mistake while digitising a feature, you can always edit it " -"later. Simply finish digitising the feature and then follow these steps:" -msgstr "" - -# 112ad681347540a3bfadb066b77de537 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:232 -msgid "Select the feature with the :guilabel:`Select Feature` tool:" -msgstr "" - -# 1dd5b5d8c58b4a829e499d89c9dc5802 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:237 -msgid "Then use one of these tools to edit the feature:" -msgstr "" - -# fdb913dcb9014378bbfff78322f79cbe -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:240 -msgid "Move feature(s) tools" -msgstr "" - -# 2b548971719a472d8bb45bfeb8b20ffd -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:240 -msgid "Move the entire feature(s)" -msgstr "" - -# 8da3ba58d5ac4294b0c1fd9a3242e7ef -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:242 -msgid "Node tools" -msgstr "" - -# a23c9175220846398bd7a350936c5f40 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:242 -msgid "move only one point where you may have misclicked" -msgstr "" - -# 8708ae27ba5b4c518a39b95e1cc131c2 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:244 -msgid "Delete selected" -msgstr "" - -# 7fd5ce79227e4e478b642a510ae7c225 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:244 -msgid "get rid of the feature entirely so you can try again" -msgstr "" - -# 74cbb65f6763425ea7022eb5c8e09a2b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:246 -msgid "Go to Edit ‣ Undo or press :kbd:`Ctrl+Z` on keyboard" -msgstr "" - -# 7ae3402554ca4f4ca1ea20fdac6c5757 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:246 -msgid "Undo mistakes" -msgstr "" - -# baa9a83ffdb44a80bfd9926105461f57 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:249 -msgid "Now try it on your own:" -msgstr "" - -# 1fb213a2efb04bef951ff2acc77a1d50 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:251 -msgid "" -"Digitise the school itself and the upper field. Use this image to assist you:" -msgstr "" - -# 629b69bac5254523a365ea4869b26be6 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:257 -msgid "Remember that each new feature needs to have a unique id value!" -msgstr "" - -# 30a94d011f3c4b04a356429292673527 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:259 -msgid "" -"When you are finished adding features to a layer, you must save the changes " -"to that layer." -msgstr "" - -# c5a2aa9a0c2440978b0762a64e7c8f00 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:262 -msgid "Click on the :guilabel:`Toggle Editing` button." -msgstr "" - -# b20058fb036b4027b709ef3f1ba1cb89 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:267 -msgid "You will be asked to save your edits. Click :guilabel:`Save`." -msgstr "" - -# de98b75cde03471094482fdc9f073783 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:273 -msgid "" -"Now you know how to create polygon features! Creating points and line layers " -"is just as easy - you simply need to define the type of layer when you " -"create it, and of course you can only create points in point layers and " -"lines in line layers." -msgstr "" - -# 9a104f2dd4b242e5a9bd28d8d02df128 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:279 -msgid "4. Georeferencing" -msgstr "" - -# 5b9c7e741def40eb8bfd0a41fafdbb06 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:281 -msgid "" -"In the previous section we digitised a raster image, thus creating vector " -"data. This is essentially the same process as when we use Bing imagery in " -"JOSM to add to OSM. In both of these cases, the imagery that we use is " -"already **georeferenced** - that is, it is correctly placed in its proper " -"location." -msgstr "" - -# 33efdbca85f045bb80331fd3e9aaddbc -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:288 -msgid "" -"When an image is georeferenced, it is stretched in different ways so that " -"each pixel in the image corresponds as closely as possible to the area it " -"represents on the spherical Earth. Because it is difficult to perfectly " -"align a flat image on a round object, there are often small georeferencing " -"errors, as we learned previously with imagery offset." -msgstr "" - -# 712e67631ce24a8a8c1104a7d15ab5db -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:295 -msgid "" -"What if you have a map that is not georeferenced? What if you have a paper " -"map given to you by a government agency? How can you digitise it?" -msgstr "" - -# 2ada9eb02e444da6b34f4da5f425a251 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:299 -msgid "" -"The first step is to turn your paper map into a digital image that you can " -"manipulate with your computer. You can do this with a scanner (or possibly a " -"digital camera), although doing so is beyond the scope of this module." -msgstr "" - -# 1bb13e878ee64680bea2b0350d8c48f5 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:305 -msgid "4.1 Georeferencing an image" -msgstr "" - -# 84b24fef1b93421f9c38cbe9b56e08b6 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:307 -msgid "" -"Now we will learn how to georeference an image in QGIS so that is correctly " -"located on Earth. We will be using a map provided in the tutorial files, " -"which looks like this:" -msgstr "" - -# 4dcb89739eab41f898216666dfdacff9 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:314 -msgid "Start a new QGIS project. Save your previous work if you like." -msgstr "" - -# 012858d3cf4f4c1c838fa986a63c3316 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:317 -msgid "Go to :menuselection:`Raster ‣ Georeferencer ‣ Georeferencer`." -msgstr "" - -# 04b44e31db05460f969fedc27d2db84e -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:322 -msgid "Click the :guilabel:`Open raster` button." -msgstr "" - -# 17b3a5874d374c22986016dd04c4fea6 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:327 -msgid "" -"Find the file :file:`peta_krb_merapi_2002.jpg`, which is located in the the :" -"file:`qgis/Sleman/Merapi/` folder. Click :guilabel:`Open`." -msgstr "" - -# 0ca1d2bb627949edbed88cbd262a39b3 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:330 -msgid "Select :guilabel:`WGS 84` when prompted and click :guilabel:`OK`." -msgstr "" - -# 3a4f1b120cd444aa9c60341dd3856027 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:335 -msgid "" -"In order to georeference this image, we need to associate points on the " -"image, to known points on the Earth. Such points are called ground control " -"points (GCPs). Luckily, this map image has latitude and longitude " -"coordinates written on it at every corner. So, to georeference this image, " -"we will create four GCPs, one at each corner of the map, and we will turn " -"our jpeg file into a geotiff, a georeferenced image." -msgstr "" - -# ce7da7ed2213448eb568d5a6931e46e4 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:344 -msgid "Zoom in to the upper left corner of the map." -msgstr "" - -# 486ac103e43a42eb989c15f8a687a61f -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:349 -msgid "Click the :guilabel:`Add point` button." -msgstr "" - -# e8ae910746524b198ff48a356f457177 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:354 -msgid "" -"Click on the very top left point of the map, right where the top border of " -"the map meets the left border." -msgstr "" - -# 2366036a80be4824ad9c1d60fc918962 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:357 -msgid "" -"A box will pop up requesting the x and y coordinates of the point you just " -"clicked. The coordinates are written in blue on the map. The longitude (x " -"coordinate) is 110° 15’ 00” E and the latitude (y coordinate) is 7° 29’ 47” " -"S. We can enter the coordinates in the box as follows. Remember that south " -"and west coordinates will be negative numbers." -msgstr "" - -# 3bd4cfc89eb94983b3a2ab9ea2796cb4 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:368 -msgid "Click :guilabel:`OK`." -msgstr "" - -# 466dc58a95b640fc91918ca1cafdea2f -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:370 -msgid "" -"You will see a red point appear showing the location of your control point, " -"and an entry in the table at the bottom." -msgstr "" - -# 3b647c63370f4d27b94b2cc591ffb384 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:373 -msgid "" -"Repeat this process, creating ground control points at each of the four " -"corners of the map. Remember to enter the longitude and latitude that is " -"written at each corner. When you are finished, you should have four GCPs and " -"your table will look like this:" -msgstr "" - -# 2f14d0a52d324e86a8cd7bee53538bd3 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:382 -msgid "Lastly we will adjust the settings and then create our output file." -msgstr "" - -# d3766afef174434ba04151ec380266e4 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:384 -msgid "Click on the :guilabel:`Transformation settings` button." -msgstr "" - -# a8a838a90a2a4768b768a667d19b11c2 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:389 -msgid "Next to :guilabel:`Transformation type` select :guilabel:`Linear`." -msgstr "" - -# 21029452e4c44fee9bf0699a47731dfa -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:391 -msgid "" -"Provide a filename for the output raster. The file type will be :file:`.tif`." -msgstr "" - -# a7f5933bf98d4ef1b7e449dda378c190 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:394 -msgid "" -"Check the box next to :guilabel:`Load in QGIS when done`. It should look " -"like this:" -msgstr "" - -# d53c22c91e0140ad99779ecfe2b06b55 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:400 -msgid "Click :guilabel:`OK` and look at the table." -msgstr "" - -# bd26893f5ea24122b40815790e83c044 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:405 -msgid "Make sure the residual value is near zero to improve accuracy." -msgstr "" - -# 7e6b43e3677a45898cd5192d0c3ca589 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:407 -msgid "" -"Now we are ready to produce the georeferenced image file. Click on the :" -"guilabel:`Start georeferencing` button." -msgstr "" - -# fe939131c61641378477b12d0ae55154 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:413 -msgid "" -"If you are asked to select the layer’s coordinate system, choose :guilabel:" -"`WGS 84`." -msgstr "" - -# bf736c1c3c944a78b2872f7fee5ee694 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:416 -msgid "" -"Go to :menuselection:`Project ‣ Project Properties` and make sure that on " -"the fly transformation is enabled." -msgstr "" - -# 92d7e85d4ea1463eb084c194aafdf29d -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:422 -msgid "" -"The output file will be created and automatically added to your project. If " -"you hover over the image, you should see coordinates at the bottom of QGIS, " -"which are close to the coordinates you entered when placing the GCPs." -msgstr "" - -# dbd6355e78824d4b8b133eb3a08b9658 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:430 -msgid "" -"Another way to see that the image is correctly placed, is by adding a layer " -"with the OpenLayers plugin. Here we have added Bing satellite imagery, and " -"made our new geotiff transparent to see Merapi in the background." -msgstr "" - -# feacc49d97a44ea58666962d6dca428b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:438 -msgid "" -"Knowing how to georeference is important when you want to digitise from a " -"paper map or an image that is not already georeferenced. Once you have " -"georeferenced an image like this, you can apply the same digitisation " -"techniques that we learned previously in this module to create vector " -"shapefiles that can be used in QGIS and |project_name|." -msgstr "" - -# 4e97ae7df0e14c9abc650fd2b7dc7456 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:444 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.po deleted file mode 100644 index 2dd788f3..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.po +++ /dev/null @@ -1,893 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-04-02 17:15+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 136176e1dccf4f70b59c9b9a8b9a76f9 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:6 -msgid "Module 10: Vector Analysis for Problem Solving" -msgstr "" - -# 610ae6d9156e4b98908c2144b567823b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 1a343b0ac76444f4bdebd185a83e80ea -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:10 -msgid "Understand the GIS process" -msgstr "" - -# 819a36670e7d43569c2ba8ece095e94e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:11 -msgid "Identify addressable problems" -msgstr "" - -# 63a8bc80cfff4d06982a1e3cf33bfaf8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:12 -msgid "Understand data needs" -msgstr "" - -# 5f7b3ffcf170431897f17c4be18ec552 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:13 -msgid "Start a QGIS project" -msgstr "" - -# d507c32b1d3e49aaa12b0275f87b699b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:14 -msgid "Analyse problems" -msgstr "" - -# ad9bbd8fd6d644278f028d0b332a3a28 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:15 -msgid "Identify hazard zones" -msgstr "" - -# 27b0150c143c4630ae40187b7b52d68f -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:16 -msgid "Look for important roads" -msgstr "" - -# 888f157eba2d48b58630843f6dca15fb -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:17 -msgid "Look for medical facilities" -msgstr "" - -# 498e529f1da14f508efe3ba5d1e3de1b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:18 -msgid "Buffer roads and medical facilities" -msgstr "" - -# fb14febf7b474ad7b86908cefbde2bf8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:19 -msgid "Analyse overlapped areas" -msgstr "" - -# 245daca414ca4cd48b5200f67b32cf56 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:21 -msgid "" -"The power of GIS is its ability to help us analyse data. Vector data can be " -"analysed to reveal how different features interact with each other. In this " -"module, we’ll work through the GIS process, attempting to solve a problem, " -"and as we proceed, we will learn about various analysis tools that QGIS " -"provides." -msgstr "" - -# cf8fac4cf3f6449c8d82d1315e8b7909 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:27 -msgid "1. The GIS process" -msgstr "" - -# d3b38e6cd3eb4c00ab72429fa1cc57c8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:29 -msgid "" -"Before we start, it will be useful to give a brief overview of a process " -"that can be used to solve any GIS problem. The steps are simple:" -msgstr "" - -# 394b8ec05c454c01ba98a32e3376a35a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:32 -msgid "State the problem" -msgstr "" - -# 327ab4f6a35c4a18bd78a38ee2d25bb3 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:33 -msgid "Get the data" -msgstr "" - -# 92adfed6f44047e883314546a42e806d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:34 -msgid "Analyse the problem" -msgstr "" - -# e738c56da7634befa8846c3732881c4e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:35 -msgid "Present the results" -msgstr "" - -# f5b07d1e511d42c6a8d5e7cfbc46fe71 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:38 -msgid "2. Problem" -msgstr "" - -# 2bbf767513b64453838477a7117a2c74 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:40 -msgid "" -"Let’s start off by deciding on a problem to solve. Imagine that you’re a " -"disaster manager, and you need to provide the best locations to place " -"refugees (IDPs) in villages surrounding Mount Merapi when it erupts. You’ve " -"come up with the following criteria for these locations:" -msgstr "" - -# e3c2d9bb44fa4d83bdb78a21703a0528 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:45 -msgid "" -"The area should be a dry field or farm in the districts Ngemplak, Turi or " -"Pakem." -msgstr "" - -# eee07933dbd849a19193b71433fcca4e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:47 -msgid "The area must be outside of Merapi Eruption Disaster Prone Region III." -msgstr "" - -# 3bfda07503ad4ea0bbf1ff0878c7506c -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:48 -msgid "" -"Access to the site should be easy, so it will not be more than 300 metres " -"from a main road." -msgstr "" - -# 891273bb882c4dd297946a66ff21a07e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:50 -msgid "The site should be close to health facilities." -msgstr "" - -# 93ab626f53154fe1898ab2fd58e80f01 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:51 -msgid "The land area should be between 50000-150000 m²." -msgstr "" - -# cbfa9ef0304047788ac363102c591aa6 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:54 -msgid "3. Data" -msgstr "" - -# f3fb7ddce09e478283a42e0591fa2ae8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:56 -msgid "To answer these questions, we’re going to need the following data:" -msgstr "" - -# 6569bb23e4364e2380ca96c0228af556 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:58 -msgid "Landuse in Sleman regency" -msgstr "" - -# 86a60588003e44b3b6f083637298e6c5 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:59 -msgid "Streets in Sleman" -msgstr "" - -# df93c4f291ee425ab7fe07a51effe98a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:60 -msgid "Location of health facilities" -msgstr "" - -# 38a8437a78ae428f9cd3e33902e4c2e4 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:61 -msgid "" -"KRB Merapi (Merapi Eruption Disaster Prone Region - this is the same data " -"that we learned how to georeference in the previous module)" -msgstr "" - -# 4b2c2fda9a2c40f19c9ee1f1af06ab56 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:64 -msgid "" -"For this exercise the data has been provided already, but in a real scenario " -"you may need to find providers for the datasets in question. In Indonesia, " -"the National Land Agency and BNPB Bappeda are good sources for the types of " -"data you will need, and OpenStreetMap can be used as a source for roads and " -"infrastructure." -msgstr "" - -# 70899b3baf2a45c085f6200a76db9870 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:71 -msgid "4. Start a project" -msgstr "" - -# e4eda803768444e6a48db46d3cec3480 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:73 -msgid "Now that we know what we want to do, let’s start doing it!" -msgstr "" - -# d6904b9ec5fa40cdabe007e47cc3e924 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:75 -msgid "Start a new QGIS project." -msgstr "" - -# 52202360b0b24cdebabb9d13035c6ec8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:80 -msgid "" -"Start adding the layers we will use. In the :file:`Sleman/Merapi/` folder, " -"add the layers :file:`jalan_sleman_49S`, :file:`tempat_penting_Sleman_49S`, :" -"file:`KRB3_49S` and :file:`vegetasi_49S`. Your Layers panel should look like " -"this:" -msgstr "" - -# 35881ca0e6ea401f9d8068c2d7c402f5 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:88 -msgid "" -"Most of the layers are pretty self-explanatory, but what are KRB3, KRB2, and " -"KRB1? These layers show areas of impact when Merapi erupts. KRB3 is the area " -"of worst impact, KRB2 is medium, and KRB1 has little impact. In this " -"scenario we want to find locations that are not within KRB3." -msgstr "" - -# fd8acc2796c148c58d5b8e80b488c51c -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:93 -msgid "" -"The data we are working with now is similar to that from previous modules, " -"but now it is in a Projected Coordinate System. The previous data was saved " -"in WGS84 - this meant that the coordinates of our features were stored in " -"degrees, which aren’t very good for measuring size or distance. By using a " -"projected system our coordinates are in metres, which is important for " -"analysis, because we can easily measure distances between and around " -"features." -msgstr "" - -# c29080c1433e4f21a91671af104013ed -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:100 -msgid "" -"Rename the layers by right-clicking on them and selecting :guilabel:`Rename`." -msgstr "" - -# 0b21240463b649c5a1c369945778ae9b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:102 -msgid "" -"Give them the new, simpler names :guilabel:`jalan`, :guilabel:" -"`lokasi_penting`, :guilabel:`KRB III` and :guilabel:`vegetasi`." -msgstr "" - -# 8bc53dc7f2ec4f69ad28c2b38086fcd7 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:105 -msgid "Save your project as :kbd:`merapi_analisis.qgs`." -msgstr "" - -# 6373931b399f4bd18c41aec921b64a30 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:107 -msgid "" -"In your operating system’s file manager, create a new folder under :file:" -"`qgis/Sleman/Merapi/` and call it :file:`evakuasi_bencana`." -msgstr "" - -# 460dd7a54ff64566a7b09a6213d02d05 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:111 -msgid "" -"This is where you’ll save the datasets that we will create during our " -"anaysis." -msgstr "" - -# 225214252880499a82a8708601d3936a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:113 -msgid "Now that we’ve got the data, let’s analyse the problem!" -msgstr "" - -# 2dc31419419342528c3e6593bb17808b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:116 -msgid "5. Analysing the problem: farms and dry fields" -msgstr "" - -# 09062df5404e4f04b1039bd1b968b62d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:118 -msgid "" -"The first criteria we’re facing is that the land must be a farm or dry " -"field, and it must be in one of three areas. So let’s tell QGIS to only show " -"us the farms and dry fields that are, in fact, in these sub-districts!" -msgstr "" - -# 7282b36ac82f442e996efd9fe6ba9ff2 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:122 -msgid "Right-click on the :guilabel:`vegetasi` layer in the Layers panel." -msgstr "" - -# 2ae7f06ec20f488387a93e85dfb33fb8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:124 -msgid "Click :guilabel:`Filter...` This opens the Query Builder dialog." -msgstr "" - -# dbda1d5d7a184dd6bb18d764113bad30 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:129 -msgid "" -"Scroll down in the Fields list on the left of this dialog until you see the " -"field :guilabel:`kec`. Click on it once." -msgstr "" - -# 90fbab0bd50243d5a8e9709e2593d0f8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:132 -msgid "Click the :guilabel:`All` button underneath the Values list:" -msgstr "" - -# 80d6eb107a1247fb8c8be40fcf5542ec -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:137 -msgid "" -"Next we are going to build a query. A query is a statement that allows us to " -"show only the data that we want from a layer. In this case, we want to " -"instruct QGIS to only show us farms and dry fields, that have a sub-district " -"value equal to Ngemplak, Turi, or Pakem." -msgstr "" - -# d1fb6ee51bef4fe998dae6a138b67b4d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:142 -msgid "Double-click :guilabel:`kec` in the Fields list." -msgstr "" - -# 9e9c8a3081ce4fbe85114d438264ba7e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:144 -msgid "Click the :guilabel:`=` button (under Operators)." -msgstr "" - -# e4161aacd4bd4025a1daa6beea58c4ea -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:149 -msgid "Double-click the value :guilabel:`Ngemplak` in the Values list." -msgstr "" - -# 41da083c13b64e0990fb7f041b68b20b -# 094e70dcfa1f4f818a5dfdfc369a2a7a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:151 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:168 -msgid "Click :guilabel:`OR`." -msgstr "" - -# f939fb10ac5149fea6a6d72d8630bfb8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:153 -msgid "" -"Repeat these steps twice more, using the values :guilabel:`Turi` and :" -"guilabel:`Pakem` instead of :guilabel:`Ngemplak`. The query should look like " -"this:" -msgstr "" - -# e7bc020964004f70b55bd555c35ab22e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:160 -msgid "Click :guilabel:`AND`." -msgstr "" - -# e87bd8d7ac6b4ef4b58a51b588dfdda8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:162 -msgid "" -"Now highlight :guilabel:`guna_lahan` in the Fields list, and click the :" -"guilabel:`All` button to load the values." -msgstr "" - -# 89fb1c8619124eba98b0da16d2d61ccf -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:165 -msgid "" -"Double-click :guilabel:`guna_lahan`. Then click the :guilabel:`=` button. " -"Then double-click the value :guilabel:`KEBUN`." -msgstr "" - -# 20696a65a25840e7890f7659543b7b94 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:170 -msgid "" -"Repeat the previous step but instead of :guilabel:`KEBUN` use :guilabel:" -"`TEGALAN`. Your query should look like this:" -msgstr "" - -# 7c062c74c6c346f38e724b1f0ee3d011 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:176 -msgid "" -"The idea is that the query will filter the data layer so that it will only " -"show us the features we want - that is, farms and dry fields in Pakem, Turis " -"and Ngemplak." -msgstr "" - -# 13c98862b00d4295a3f90ff57be08d7c -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:180 -msgid "" -"We need to add one more thing to our query: parentheses. Without these, our " -"query won’t work quite right. Add two pairs of parentheses on each side of " -"the word AND, like so:" -msgstr "" - -# 63561c7e3b0f4828aaf9d95186ca1d82 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:187 -msgid "" -"Click :guilabel:`OK`. The :guilabel:`vegetasi` layer has far fewer features " -"now." -msgstr "" - -# b5cf8ff7413f4bdba09ebf85f30f36c1 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:193 -msgid "" -"Well done! We’ve applied our first criteria to begin solving the problem!" -msgstr "" - -# c49c97e87a9043eeaa1f4b11385a043d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:196 -msgid "6. Danger zone" -msgstr "" - -# 86fd2afd0e7844a4b781973a8dbb51ad -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:198 -msgid "" -"Our next criteria is that our chosen location should be outside of the " -"danger zone, which is defined by the layer :guilabel:`KRB III`. For this we " -"can use the Spatial Query tool." -msgstr "" - -# 8f9abe68e0b547cdb9775640c225f233 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:202 -msgid "Go to :menuselection:`Vector ‣ Spatial Query ‣ Spatial Query`." -msgstr "" - -# 01b1eff6701c4670aea30531499767bd -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:207 -msgid "" -"Under :guilabel:`Select source features from` choose :guilabel:`vegetasi`. " -"In the next box choose :guilabel:`Is disjoint`. The third box should be set " -"to :guilabel:`KRB III`. The Spatial Query window should look like this:" -msgstr "" - -# 92d4c8d3cab24e01a91bc408fd695877 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:214 -msgid "" -"Click :guilabel:`Apply`. Then click :guilabel:`Close` once the selection has " -"been applied." -msgstr "" - -# 47236747ef6f4f2789bf0430a3f185b6 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:220 -msgid "" -"Now the vegetasi layer looks like the image below. Notice that all the " -"features have been selected that fall outside the KRB III area." -msgstr "" - -# 91a6c7566faa4b97a0f5eb3a240f76a4 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:226 -msgid "" -"The next steps of our analysis will be easier if we save this selection as a " -"separate layer." -msgstr "" - -# 5ac818e47ff147d09eba3438bb73d9c3 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:229 -msgid "" -"Right-click on the :guilabel:`vegetasi` layer and click :guilabel:`Save As..." -"`" -msgstr "" - -# c1f4fe60cdda4b67bf40b92ccb35d456 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:235 -msgid "" -"Next to the :guilabel:`Save as` field in the dialog that appears, click the :" -"guilabel:`Browse` button." -msgstr "" - -# a95cbfb8888543e8a471855f1b78d774 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:238 -msgid "" -"Save the layer under :file:`evakuasi_bencana/` as :kbd:`kebun_tegalan.shp`." -msgstr "" - -# a0689db46352434ba0c27e1c3169a8d9 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:240 -msgid "" -"Check the box labelled :guilabel:`Save only selected features` and :guilabel:" -"`Add saved file to map` in the :guilabel:`Save vector layer as...` dialog." -msgstr "" - -# dcd75d4c9f584745b28391270b957a02 -# 5c9934c4fdd346009a59090ba16d936a -# d9a468534ddf411686c287874a160f1b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:247 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:472 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:497 -msgid "Click :guilabel:`OK`." -msgstr "" - -# 1279464177f848c59ab79a0155b8626e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:249 -msgid "" -"Rename the layers by right-clicking on new vegetasi layer and selecting :" -"guilabel:`Rename`. Rename with :kbd:`kebun_tegalan`." -msgstr "" - -# eeca04927a1841109d7c7426057e669e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:252 -msgid "" -":guilabel:`Right-click` on the old vegetation layer and remove it. You " -"should have these layers remaining:" -msgstr "" - -# fdc99e101d6b4b3eadf78e01ca0343a1 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:259 -msgid "7. Finding important roads" -msgstr "" - -# b57eb01c01114b77b1edff84ebb7ea1a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:261 -msgid "" -"We have a problem with our roads layer, similar to that of our vegetation " -"layer. Our roads layer has too many roads! We only want to use main roads " -"for our analysis, so that we can meet the criteria that our location is " -"within 300 metres of a major road. Once again, we will use the Query Builder." -msgstr "" - -# 65d841d3684b4c98845d3219dadb0b28 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:266 -msgid "" -"Right-click on the :guilabel:`jalan` layer and click :guilabel:`Filter...`" -msgstr "" - -# b84ce570bb96453ea1ad411617ae4619 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:268 -msgid "" -"Build a query for the roads layer, like you did above for the vegetation " -"layer You want only primary and secondary roads, so you need to build this " -"query:" -msgstr "" - -# 4c52e3f5799440d4867bf8180f0d7c53 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:272 -msgid "*\"TYPE\" = 'primary' OR \"TYPE\" = 'secondary'*" -msgstr "" - -# 110beba9618445ae8f043b40e60b5738 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:274 -msgid "" -"You can use the approach that we learned above, or you can simply type this " -"command into the query box. But be careful that you type it correctly!" -msgstr "" - -# f2f20454a5e549168207607f072f9a40 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:282 -msgid "8. Looking for health facilities" -msgstr "" - -# 350f10dbc31a4c9ab7d312087ed3ec9f -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:284 -msgid "" -"Using the same approach, build a query for the :guilabel:`lokasi_penting` " -"layer as shown:" -msgstr "" - -# 017a5640983e4e5eacd5d6ee31c260fe -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:287 -msgid "*\"Fungsi\" = 'Kesehatan'*" -msgstr "" - -# 5f24d36e1b92435a971cebef4697accd -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:290 -msgid "9. Buffering Roads" -msgstr "" - -# 3590f6e1eed64508b0a59d36ad4f4b06 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:292 -msgid "" -"Okay, we’ve refined our data a bit so that it shows us the features we are " -"interested in analysing. Remember that according to our criteria our land " -"area should be within 300 metres of a main road and close to a health " -"facility. QGIS allows us to calculate distances from any vector object, and " -"we will use this functionality to help us reach a solution." -msgstr "" - -# 3e5edddc2a2d4b4b91082aab17ad347d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:298 -msgid "" -"Make sure that only the :guilabel:`jalan` and :guilabel:`kebun_tegalan` " -"layers are visible, to simplify the map while you’re working." -msgstr "" - -# 42b5eabdaf094f41938d866ddad49147 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:304 -msgid "Go to :menuselection:`Vector ‣ Geoprocessing Tools ‣ Buffer(s)`." -msgstr "" - -# 08b12762da6747c19f460674ca742d3d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:309 -msgid "In the first drop-down box select :guilabel:`jalan`." -msgstr "" - -# 3da096f4ec63448590dbc1ae206e660a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:311 -msgid "Enter :kbd:`300` next to :guilabel:`Buffer distance`." -msgstr "" - -# 1ef27ee637c646319e2f430dbb2e1eb6 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:313 -msgid "Check the box next to :guilabel:`Dissolve buffer results.`" -msgstr "" - -# d63139b782c74d50a480a1b75e02f5de -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:315 -msgid "" -"Click :guilabel:`Browse` and type :kbd:`buffer_jalan_300m.shp` for the " -"filename." -msgstr "" - -# 90ab1e5643af4e518954663fad886e0a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:321 -msgid "" -"We input the buffer distance in metres. Good thing we used projected data!" -msgstr "" - -# b96658d273614fe293a1864fd7d28297 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:324 -msgid "" -"Click :guilabel:`OK`. QGIS will create a buffer around the streets that " -"extends 300 metres." -msgstr "" - -# 80153ce85cac450bac437966c120fa09 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:327 -msgid "" -"When the process finish and buffer_jalan_300m.shp appear in the Layers, you " -"can click :guilabel:`Close` the Buffer dialog." -msgstr "" - -# c4004880a2c94378aa380e0ddada82ad -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:333 -msgid "Close the Buffer dialog and see your new layer:" -msgstr "" - -# fbf6eb3aaef7465fa8c6c6b9280fbfcd -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:338 -msgid "" -"Those big fat lines are actually areas that are within 300 metres of primary " -"and secondary roads." -msgstr "" - -# e868793b1a564c31bf523f9b20f723e8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:342 -msgid "10. Buffering health facilities" -msgstr "" - -# 4dade93d63b24583890ea3350f9199d5 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:344 -msgid "" -"Now try it yourself! Using the same approach, create a new buffer layer " -"around your health facilities. The buffer should be 2.5 km in radius." -msgstr "" - -# aeb77ccaf58a409990a2aae03e4bfcc9 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:347 -msgid "" -"Don’t forget to check the box :guilabel:`Dissolve buffer results` so every " -"overlapping buffer will become one feature. Then save the new layer in the " -"same directory as :file:`buffer_fas_kesehatan_2.5km.shp`. Your resulting map " -"will look something like this:" -msgstr "" - -# d8e0318f0fc44b9894d508916ec42e8c -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:355 -msgid "" -"Remember that the buffer distance is in metres. Keep this in mind when you " -"want to create a 2.5 km buffer!" -msgstr "" - -# 31c715269bfe4ab6ad0bab1f4ab3e2e8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:359 -msgid "11. Overlapping areas" -msgstr "" - -# ed1d1f7e1e264d64b29b8f2b62e000e7 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:361 -msgid "" -"Now we can see areas where a main road is 300 metres away and where there is " -"a health facility within 2.5 km. But we only want the areas where both of " -"these criteria are satisfied at once! To do that we will use the Intersect " -"tool." -msgstr "" - -# 98566aece7ec40b28722e22f77e1a9e8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:365 -msgid "Go to :menuselection:`Vector ‣ Geoprocessing Tools ‣ Intersect`." -msgstr "" - -# 50ac31b8bd3c439a894d45698a2e4a4b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:370 -msgid "" -"Enter :guilabel:`buffer_fas_kesehatan_2.5km` and :guilabel:" -"`buffer_jalan_300m` as the two input layers. Name the output shapefile :kbd:" -"`intersect_buffer_jalan_kesehatan.shp`." -msgstr "" - -# cf5f76e68f4a45b7aeea1ef26a2cdb68 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:377 -msgid "Click :guilabel:`OK` and add the layer to the project when prompted." -msgstr "" - -# 894cbcf9ec6a453383a6dd1f008e6617 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:379 -msgid "" -"If we hide the original layers, we can see that our new layer shows us the " -"areas where they intersect. These are the areas where both of these criteria " -"are satisfied." -msgstr "" - -# 67556b789387488bb8d8f1cf1f7e8801 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:387 -msgid "12. Select farms and dry fields" -msgstr "" - -# 9b00ee68eefd46f19fd7115e9e2c2329 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:389 -msgid "" -"Now we have the layer :guilabel:`kebun_tegalan`, which satisfies two of our " -"criteria, and the layer :guilabel:`intersect_buffer_jalan_kesehatan.shp`, " -"which satisfies two other criteria. We need to know where they overlap!" -msgstr "" - -# 22fa2c3f89c24184859f8c6620bdf136 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:393 -msgid "" -"Go to :menuselection:`Vector ‣ Research Tools ‣ Select by location`. A " -"dialog will appear." -msgstr "" - -# 3dfe5448ab5c4197a61fd4463aad4963 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:399 -msgid "Set it up like this:" -msgstr "" - -# d2cc11a9a80f49f5a7f43db674c8d52f -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:404 -msgid "" -"Click :guilabel:`OK` and you’ll see the results are selected (they are " -"yellow)." -msgstr "" - -# 5c18ab293fe4461db348e211dbfc8f6a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:410 -msgid "Let’s save this selection as a new layer." -msgstr "" - -# 55fac701b92044e0bff542fa2c116a6d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:412 -msgid "Right-click on the :guilabel:`kebun_tegalan` layer in the Layers panel." -msgstr "" - -# ac9dfe4bf17546cdadc79d4acefeaa5b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:414 -msgid "Click :guilabel:`Save As...`." -msgstr "" - -# 4ca94fa4769b40e1a9dc6c197284afe5 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:416 -msgid "" -"Name the new file :kbd:`kebun_tegalan_lokasi_terpilih.shp`. Then check the " -"box next to :guilabel:`Save only selected features` and :guilabel:`Add saved " -"file to map`." -msgstr "" - -# ca47d69d58be44628e91866c2d1b6d1b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:423 -msgid "" -"After the process is finish, rename the layers by right-clicking the new " -"kebun_tegalan layer and selecting :guilabel:`Rename`. Rename with :kbd:" -"`kebun_tegalan_lokasi_terpilih`. If we hide all the other layers, we can see " -"the resulting layer:" -msgstr "" - -# 4c1121fa120f4da9945be67785040a05 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:431 -msgid "13. Select land areas of the appropriate size" -msgstr "" - -# 789215e610494814884cb7674728500f -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:433 -msgid "" -"Hooray! We have now found land areas that meet four of our five criteria. " -"The only remaining criteria is the size of the land. We need to make sure " -"that our possible locations are between 50000-150000 m²." -msgstr "" - -# bf3a9ccd591746eb9a3486cd4f78becb -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:437 -msgid "" -"Open the attribute table for the :guilabel:`kebun_tegalan_lokasi_terpilih` " -"layer. Notice that there is a column named :guilabel:`luas_ha`. This is the " -"size of the area in hectares. We could use this field to answer our " -"question, but let’s add another column that contains the size of the area in " -"square metres." -msgstr "" - -# 98e8badd87b74942a3f2d6e79302515a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:443 -msgid "" -"Select the :guilabel:`kebun_tegalan_lokasi_terpilih` layer and open its " -"attribute table:" -msgstr "" - -# 4edde082e6e146c7b499b7f22ad3502d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:449 -msgid "Enter editing mode by clicking this button:" -msgstr "" - -# 7085a21147934ba197992216b6116784 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:454 -msgid "" -"Click the :guilabel:`Start the field calculator` button (located in the " -"Attribute Table window)." -msgstr "" - -# bf950c47574e410cbc764820d9ea16ee -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:460 -msgid "" -"Check the box next to :guilabel:`Create a new field`. In the box type :kbd:" -"`luas_m2`." -msgstr "" - -# 642cec9b7cab447e9910237618d2b55d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:466 -msgid "" -"Change :guilabel:`Output field type` to :guilabel:`Decimal number (real)`. " -"Then click on :guilabel:`Geometry` and double-click :guilabel:`$area`." -msgstr "" - -# 73b230aace0241f8b0f830fd894b061a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:474 -msgid "" -"You should now see a new column on your attribute table, named :kbd:" -"`luas_m2`. And QGIS has filled it in for us with square metres!" -msgstr "" - -# 8aed3d79adc54bf99126963a15572618 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:480 -msgid "Click the edit mode button again, and save your edits." -msgstr "" - -# ac979c1c0a9a483c9c0c897fd6d2ce75 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:485 -msgid "Close the attribute table. Now we can just do a simple query." -msgstr "" - -# b05198a85f6b4918bafd89e2cf8250f3 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:487 -msgid "" -"Right-click on the :guilabel:`kebun_tegalan_lokasi_terpilih` layer and " -"click :guilabel:`Filter...`" -msgstr "" - -# 0bac35d1386a4757a610126fc6a03c6a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:490 -msgid "Enter the following:" -msgstr "" - -# a682d11f535c475ca8cc5d14ac935c38 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:492 -msgid "*\"luas_m2\" >= 50000 AND \"luas_m2\" <= 150000*" -msgstr "" - -# 974456136c4b4c01a44df6a6f13e5605 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:502 -msgid "" -"That’s it! We have eight pieces of land that meet ALL of our criteria. Any " -"of these pieces of land might be suitable for a location to place refugees." -msgstr "" - -# 0ede5749fe3f4b4dbec0624cf0c6c9ee -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:505 -msgid "" -"Right-click the :guilabel:`kebun_tegalan_terpilih` layer and click :guilabel:" -"`Save As`. Name the file :file:`refugees_location.shp`." -msgstr "" - -# 6de9c3cd55bc42648b81f1f95f2024c9 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:509 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/211-using-map-composer.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/211-using-map-composer.po deleted file mode 100644 index 4f7c42ff..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/211-using-map-composer.po +++ /dev/null @@ -1,557 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-04-02 17:14+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# e36663a0ac854e29a6d4709585aac785 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:6 -msgid "Module 11: Using Map Composer" -msgstr "" - -# 7f9ea90fc273481bb37909f2fe443f8d -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# e31781ebcb264fe8820ee5fd2ec0746f -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:10 -msgid "Arrange map layout" -msgstr "" - -# 097d1e28d5f24af3a04fc1ea16de0e9f -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:11 -msgid "Add a new map" -msgstr "" - -# 6a0c436327af4d4b976f2b894069579f -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:12 -msgid "Add title to a map" -msgstr "" - -# 0c72ad5b00c74266afb41035e54ca832 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:13 -msgid "Add graphic and numeric scales" -msgstr "" - -# 2b27f3bd31d64ea0bacc5a00e44088cd -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:14 -msgid "Add grid to a map" -msgstr "" - -# 355afe5c33ce4eac8f08481e94b578dc -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:15 -msgid "Add an inset" -msgstr "" - -# a3fc3d321b01430ca04ae61f098d0d2b -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:16 -msgid "Customise the content of the legend" -msgstr "" - -# 46428c51429d4c189d74e6c0cbf8f948 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:17 -msgid "Export a map to different formats (pdf, jpeg, svg)" -msgstr "" - -# f3799ea829b84332b8093b81929629be -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:19 -msgid "" -"A map is a means to communicate information (as well as new ideas) to the " -"audience. We use symbology to convey the contents of our data so it can be " -"easily understood. When we create a map layout, we go one step further - we " -"present our map so that it becomes a means of information." -msgstr "" - -# 85ae972f204242c3917e60aa1d6a77a8 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:25 -msgid "" -"No matter what media we plan to distribute our map by (whether it’s printed " -"or sent over the internet), we must pay attention to how the map elements " -"are composed in the layout. In this module we will discuss the presentation " -"of printed maps, and create our very own." -msgstr "" - -# ca6a997fd8ba4ceca168ba9988293606 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:31 -msgid "1. The Map Composer" -msgstr "" - -# 72b158840a714ea1969c4ec3dcfde28f -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:33 -msgid "" -"The QGIS Map Composer allows you to prepare your map for printing. Apart " -"from the map, you are able to add additional information such as images, " -"labels, legends and scalebars." -msgstr "" - -# 380af1436c17483d8b2861a47e75844b -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:37 -msgid "" -"Let’s start with some data in the Sleman regency that has already been " -"symbolised. Open the project named :file:`print_2_11.qgs` in the :file:`qgis/" -"` directory." -msgstr "" - -# cb2e5177be4f4aecb1b5ceec3e7ab029 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:44 -msgid "" -"This map shows some familiar layers from the previous module. We have the " -"roads and vegetation of Sleman, along with the three impact zones from a " -"Merapi eruption model." -msgstr "" - -# a7f7f274715d4d21b2e8442d1c77f3a9 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:48 -msgid "" -"Let’s see how we can use Map Composer to adjust the layout and prepare this " -"map for printing." -msgstr "" - -# 81e1b71566b74c978ffbccfd5641d6e3 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:51 -msgid "" -"Go to :menuselection:`Project ‣ New Print Composer`. Then, give a unique " -"title name for your layout, such as :kbd:`My Layout 1`. Click :guilabel:" -"`OK`. A new window will load that looks like this:" -msgstr "" - -# 33e9c080ced94dd9bd1ef8ee4632b753 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:58 -msgid "" -"This is the window where you can compose the layout of a map that you want " -"to print. The blank white area is your “canvas.” It is a model of the paper " -"you are going to print out. You can put various elements onto this canvas, " -"such as your map (obviously), a title, scalebar and legend. These are " -"elements commonly used on printed maps." -msgstr "" - -# 1b6b7fdd461a45a69e1bf0ce7f6eb7a2 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:64 -msgid "" -"Take a look at the right panel. In the :guilabel:`Composition` tab, you can " -"change paper size, number of pages and quality of output." -msgstr "" - -# e5994faeaf4e46b1a36b33fb335b453c -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:70 -msgid "" -"Take a look at the icons across the top of the window. We will use some of " -"these as we lay our map out, so here’s an overview of what they do:" -msgstr "" - -# b9ee9834e5b14201a5cc797bad524d81 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:76 -msgid "Display Icon" -msgstr "" - -# 122d769e497244d0b6115cc605a85c91 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:76 -msgid "Function" -msgstr "" - -# 27e8cb6df7cc4b70af87154e41652894 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:78 -msgid "" -"**Add New Map** will add a map element. This is what we will use to add the " -"map from our project into our print layout. It should be noted, however, " -"that if we change the map in our QGIS project, it will not update the same " -"map that we have added to our print composer, as we shall see later." -msgstr "" - -# 2f291554ea02418ebf4039b9c739e6a7 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:84 -msgid "" -"**Add Image** allows us to add a picture. You can add a company or " -"organisational logo, or simply display images from a particular location. " -"You can also add an image of a compass (to point North)." -msgstr "" - -# 533dac2d7bd648acb1186ddb878441d0 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:88 -msgid "" -"**Add New Label** is used for adding text to the layout, such as titles or " -"other information." -msgstr "" - -# 47b3e1a74eba47f2841482389be45e35 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:91 -msgid "" -"**Add New Legend** is for adding a legend, which will conform to the active " -"layer in the QGIS window." -msgstr "" - -# 461b960bd46d49a8aa756f983a8aed02 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:94 -msgid "**Add New Scalebar** is used to add a scale to the layout." -msgstr "" - -# 5b2730ffef8e4f6cab1fdc560ffbfd3b -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:96 -msgid "" -"**Add Ellipse/Triangle/Rectangle** is used to add one of these geometric " -"shapes. For example, this might be used to indicate special areas or " -"highlight things on the map." -msgstr "" - -# 6534621b21a64dc7bf62d7b65b26a2c5 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:100 -msgid "**Add Arrow** is used to draw an arrow on the map layout." -msgstr "" - -# 28dee0ada94e4983bfa0e371526213dc -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:102 -msgid "" -"**Select / Move Item** allows us to choose and move the elements that are in " -"the map layout. With this tool selected, you can right-click on an element " -"to lock its position." -msgstr "" - -# b364a08bdab54a349c1bf81706a1bcb2 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:109 -msgid "2. Adding a new map" -msgstr "" - -# 2078e1ab84824ac088911ae6baad1af7 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:111 -msgid "" -"In the Print Composer window, click on the :guilabel:`Add new map` button." -msgstr "" - -# abb1c396ca0f4f3e9710ddfe265d2333 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:116 -msgid "" -"Next, click and drag your mouse across the canvas, creating a box. Your map " -"layout should look similar to this when you are done:" -msgstr "" - -# 48ee0373fdbd43c983587b78bc154144 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:122 -msgid "" -"If you are not happy with the placement of your map, you can drag the " -"corners to change the size, or drag the entire element around the canvas." -msgstr "" - -# 75ba1784fbe94ba8a56027f1610ed5e2 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:126 -msgid "" -"Once you are happy set the scale of your map by going to the :guilabel:`Item " -"Properties` tab in the right panel." -msgstr "" - -# ab0234b08e6240b08ad8ffbea58f194b -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:132 -msgid "" -"Edit the scale and press :kbd:`Enter`. You’ll see that the scale (zoom " -"level) of the map element changes. A scale of about 200000 should be good " -"for this project." -msgstr "" - -# 580d3ebde7ef4773a7f422742d4de7b3 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:136 -msgid "" -"Add a frame by clicking the box next to :guilabel:`Frame`. Configure the " -"frame colour and border thickness." -msgstr "" - -# d198de83ca9d499fb0a2f91cdcb3853c -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:142 -msgid "" -"When you change the scale some parts of your map may become invisible. Click " -"on the “Move item content” button and drag the map so that it is all visible." -msgstr "" - -# 53c15dbf0afc4b749da92d463ed9cd72 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:150 -msgid "3. Adding a title" -msgstr "" - -# f5f773cd1e3344be9e0b488bc749c5da -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:152 -msgid "" -"Now we’ve got the most important thing added to our map layout - the map! " -"But let’s add some additional elements to make it more informative." -msgstr "" - -# 120610193ee444c0b454c53ed0de2f1a -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:155 -msgid "" -"Let’s add a title to our map. Click on the :guilabel:`Add new label` button." -msgstr "" - -# 3bf0af9624494e5485b4cce98d6af86e -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:160 -msgid "" -"Adjust the size of the element. We will edit the text and the text " -"properties in the panel on the right." -msgstr "" - -# 9faafaa3fc83499a9832d747f0a0c02a -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:163 -msgid "" -"Click the :guilabel:`Font` button. Change the text size to 18 and make it " -"bold. Change the alignment to :guilabel:`Center`. Lastly, add the following " -"text, or create your own:" -msgstr "" - -# 152bfeeb1cef46339a1dbe564d70dab3 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:173 -msgid "Your map layout should now look similar to this:" -msgstr "" - -# b2cb1183cd3545cdaf915938000652a6 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:179 -msgid "4. Adding a scale bar" -msgstr "" - -# 511050f6d7884c4a9085a3fd42639875 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:181 -msgid "" -"Let’s add a scale bar, so that anyone who looks at our map will have an idea " -"what size area this map shows." -msgstr "" - -# 146baec50c1b4395bf4e2e7b46eb9fe1 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:184 -msgid "Click on the :guilabel:`Add scale bar` button." -msgstr "" - -# 97089dcea5a54fea88759421b0ab6bdb -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:189 -msgid "" -"Draw the new scalebar element on your map. A good location for it is in the " -"lower left corner of your map layout." -msgstr "" - -# d4bbc6f78c984fc5bb02626d41379cb6 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:192 -msgid "" -"Next we need to adjust the scalebar options. Since our project is in a PCS " -"(Projected Coordinate System), our measurements are in metres. Enter the " -"following values in the scalebar options:" -msgstr "" - -# 3d04fbd2d10245929aba7f992b9df9c5 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:199 -msgid "This should result in a scalebar that looks like this:" -msgstr "" - -# ca5006a9ca8246258277e5920e6351d8 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:205 -msgid "5. Creating a grid" -msgstr "" - -# 7ebf631805994c9a8071b6b25a059572 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:207 -msgid "Now let’s create a grid for our map." -msgstr "" - -# c52950c3600a4b5faebbb7de7f5f2012 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:209 -msgid "Choose the :guilabel:`Select` tool and click on the map." -msgstr "" - -# 6bd260bbc6644626add09e0da44d4f01 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:214 -msgid "" -"In the panel on the right you should see the word :guilabel:`Grid`. Click on " -"it." -msgstr "" - -# c4836832676447abb0025bc2b1bdd4b1 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:217 -msgid "Check the box :guilabel:`+` and enter the following values:" -msgstr "" - -# ffe635bec0ff425887081731005fd85e -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:222 -msgid "" -"We used coordinate reference systems with UTM (metre) on the project QGIS " -"and all map layers." -msgstr "" - -# 78f024b0189641178f78c9d4129389f5 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:225 -msgid "" -"Scroll down item properties dialog and check the box next to :guilabel:`Draw " -"Coordinates` and enter the following values:" -msgstr "" - -# 1cea0cc9cb954b13ae8afd646a07de30 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:231 -msgid "" -"Your map should now have a grid appear over it, which will look something " -"like this:" -msgstr "" - -# d3844d107ed448d4bb6208fe27577988 -# cbf0ce84420949c8891cd35c48dc780e -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:238 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:318 -msgid "Tips" -msgstr "" - -# e6299d42719d4e94a5c7fdbbe5c218c8 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:240 -msgid "" -"Play around a little bit with the coordinate format. You can change decimal " -"degrees as the coordinate format or change it into Degree Minute format (DD " -"MM) or Degree Minute Second (DD MM SS)." -msgstr "" - -# 59501d75d3dc4abe869fd362f56652b5 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:245 -msgid "" -"You can also adjust the coordinate placement. You can place the text inside " -"or outside the frame, and make the orientation either vertical or horizontal." -msgstr "" - -# 3fce0adab8064a749f0e78479ae8e1d3 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:249 -msgid "" -"Change the font type and font size by clicking :guilabel:`Font` in the panel." -msgstr "" - -# cb97cb473b2b4c50a66bf6cfa977d926 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:252 -msgid "6. Overview inset" -msgstr "" - -# 6b40a69a575846bfbf62f7029f2c63a2 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:254 -msgid "" -"Next, let’s add an inset that gives viewers of our map a little more " -"information about what they are looking at." -msgstr "" - -# 9da3362c3c39446d8a00534c9f4154e1 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:257 -msgid "Minimise the Print Composer and go back into QGIS." -msgstr "" - -# 57544275370c404db9be2999a75507a5 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:259 -msgid "" -"Add the layer :file:`Indonesia.shp`, which is located in :file:`qgis/" -"peta_dunia/`. Click :guilabel:`Zoom Full`." -msgstr "" - -# 05f9941b4fd94dd49d2d3c45796396d1 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:265 -msgid "The new layer will load." -msgstr "" - -# 05345900bb6f4eb2b778f7af3016e03a -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:270 -msgid "" -"Return to the Map Composer and create a new map with the :guilabel:`Add new " -"map` button." -msgstr "" - -# 134117bcbbe042568ce41901e40afcf8 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:276 -msgid "Draw a small box on the right side of your map layout." -msgstr "" - -# 20d292abeeb242b5a8ffd8aaafae54e6 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:278 -msgid "" -"The current view of your QGIS project will appear in the new map element " -"(but notice that the old map element doesn’t change!). Add a frame for the " -"inset, so that it looks like this:" -msgstr "" - -# a3943646bf1c4e0aac72e22c30b8840d -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:286 -msgid "7. Adding a legend" -msgstr "" - -# 5c90396e03a4465c94983eaf0e3f4db8 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:288 -msgid "" -"Now let’s add a legend so that viewers of our map will know what our " -"symbology represents." -msgstr "" - -# 58cf192602a2410bac8d689190d12d74 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:291 -msgid "Click on the :guilabel:`Add legend` button." -msgstr "" - -# a5e4f434df97494caa8be9c5069471c2 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:296 -msgid "" -"Draw a box in the remaining empty space on your map layout. You will see a " -"legend with symbologies shown in a list." -msgstr "" - -# 2c9a19d1ea31428bb3b527b402de24d8 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:299 -msgid "" -"In the panel on the right, click on :guilabel:`Legend items`. Uncheck :" -"guilabel:`Auto update` and use the edit button to change the names on the " -"legend. Use the :guilabel:`+` and :guilabel:`-` buttons to add or remove " -"items from the legend. Choose which elements are important to include." -msgstr "" - -# 1c47226007b54973b533adf632972d50 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:307 -msgid "Our legend looks like this:" -msgstr "" - -# 4f325bda8a8e492d84d8228de55f9117 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:312 -msgid "When you are finished, your map layout should look similiar to this:" -msgstr "" - -# a8b116fcc2934598a47c8ddcd2afb9d0 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:320 -msgid "" -"To save your map composer that you created, you can click on the :" -"menuselection:`Composer ‣ Save Project`. So if you open the project QGIS and " -"want to use the map composer that you saved, click on :menuselection:" -"`Project ‣ Print Composer ‣ My Layout 1`" -msgstr "" - -# d592e8be8d274173867c73da6065a7b3 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:326 -msgid "8. Printing the map" -msgstr "" - -# b014ff3a96274b3c99799cdd913834d6 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:328 -msgid "" -"Lastly, you can print your map. Simply click the :guilabel:`Print` button " -"and follow the dialog." -msgstr "" - -# 26fb7f7d18064983873387895a89e1b1 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:334 -msgid "You may also save the map as PNG image." -msgstr "" - -# ffa2814c597d481894284baa09d72fb9 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:339 -msgid "" -"Additionally you can save the map as a PDF, which you can easily send over " -"email or print later when you have a chance." -msgstr "" - -# eaa2f0f775ed44dcb53b4708aad854fe -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:346 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.po deleted file mode 100644 index f9fb73b0..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.po +++ /dev/null @@ -1,562 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-04-02 17:15+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 01af7f625b6741ce803e85c3d676da21 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:6 -msgid "Module 12: Understanding |project_name|" -msgstr "" - -# 97c03a66c12443db9d87e60f06d9da35 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# c958ed7d99174d548128a1a53cd0b792 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:10 -msgid "Understand the concept of hazard, exposure and impact data" -msgstr "" - -# a109125ad8b84bacb6bce407ad062ae8 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:11 -msgid "Understand how to determine impact" -msgstr "" - -# 0cc28958ef2e418caf545460e33d18a7 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:12 -msgid "Understand the |project_name| interface" -msgstr "" - -# f0fb5062dceb4bdcadcffe50534fcab5 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:13 -msgid "Add hazard data" -msgstr "" - -# a5038d2da5bd4b40bf5ede53e9cc8f89 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:14 -msgid "Add unprocessed exposure data (vector and raster)" -msgstr "" - -# 5d86c4a550634ad19bda025b4df70b8c -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:15 -msgid "Use the keywords editor" -msgstr "" - -# b1164b92aad340bba063fcdb6d470421 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:16 -msgid "Analyse impact" -msgstr "" - -# a7749434f0294a2ea162d9644894b03a -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:17 -msgid "Improve |project_name| output map" -msgstr "" - -# affafb43ac51465aaf818856ce35e263 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:18 -msgid "Save and print scenario results" -msgstr "" - -# 0ca736038ee6453cad6a0d804c20798b -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:22 -msgid "1. Hazards, exposure and impact" -msgstr "" - -# 3ee19352df4b41b3abe829b05b9d659c -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:24 -msgid "" -"Let’s begin by reviewing the inputs and outputs of |project_name| - " -"**hazard**, **exposure**, and **impact**. These terms are important for you " -"to remember because the analysis process depends on these three things." -msgstr "" - -# d777ecb2f5e841cc9da41e9a351f1c12 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:29 -msgid "" -"**Hazards** (also called disasters) are what we call the data layers that " -"describe the extent and magnitude of natural events (such as earthquakes, " -"tsunamis and volcanic eruptions) that could potentially cause an event or " -"series of events that threaten and disrupt the lives and livelihoods of " -"people." -msgstr "" - -# e5c72125171f4d928a7c784c2b73adeb -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:34 -msgid "" -"In general, the hazard data we use in |project_name| represents a single " -"hazard scenario. A scenario means that the hazard:" -msgstr "" - -# d02dd1588e9b47519a39795ff8edbe22 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:37 -msgid "is at a particular location" -msgstr "" - -# 861f35575b8e44b6a4ccc2d9334716fd -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:38 -msgid "has a measured intensity" -msgstr "" - -# c19c7610fffb4147bab8abdebaf494df -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:39 -msgid "has a measured duration" -msgstr "" - -# 5eaae3a8256c42b8bac33b48a324be2b -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:40 -msgid "has a certain time frame" -msgstr "" - -# 4324d4b7f9db4be5ad89a423c1462ada -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:42 -msgid "" -"In this module we will use a dataset modelled from an earthquake in Lembang." -msgstr "" - -# 401752bd187e4c4aa9596d396694cdbe -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:44 -msgid "" -"The earthquake modelling was done by experts. |project_name| is not a hazard " -"modelling tool." -msgstr "" - -# a2edaa7617404f6f9a47d1d6c9a27bac -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:47 -msgid "" -"**Exposure** data represents things that are at risk when faced with a " -"potential hazard. This can be man-made features such as public buildings, " -"houses, roads and bridges, or it can be so-called natural features, such as " -"population, rice paddies and lakes. These exposed elements can be divided " -"into various categories, including physical elements (houses, power lines), " -"economic elements (agricultural land, access to employment), social elements " -"(vulnerable groups, population count), and environmental elements (air, " -"water, plants and animals)." -msgstr "" - -# b3fbf17984174dd4abe30c2e31aaf372 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:58 -msgid "" -"**Impact** is the result we get after |project_name| processes the effect of " -"the hazard data upon the exposure data. For example, if there is an " -"earthquake model in Lembang, and we process it against building data in " -"Bandung, our impact layer may show those houses that would be severely " -"damaged, those somewhat damaged, and those mildly damaged. In other words, " -"what goes in to |project_name| are hazards and exposure. What comes out is " -"impact." -msgstr "" - -# ae30feb3a3cd4abcbc3f266de640fc73 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:68 -msgid "2. The InaSAFE interface" -msgstr "" - -# 22116ec9b42047a295564acf227d8e32 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:70 -msgid "" -"Before we run any scenarios, let’s take a closer look at the |project_name| " -"interface." -msgstr "" - -# 619f119e0c604d8d8617541318a91fcb -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:73 -msgid "" -"First make sure that you’ve installed the |project_name| plugin. Follow the " -"plugin instructions in :ref:`module 4 `. Find and " -"install the plugin called |project_name|." -msgstr "" - -# 3d8b29d6bdb54380809c5f66c7590935 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:77 -msgid "Open a new project in QGIS." -msgstr "" - -# 150c4fa0156e405f9a1712781cd3c5e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:79 -msgid "" -"If the |project_name| toolbar is not visible, right-click on the toolbars " -"and make sure that :guilabel:`InaSAFE` plugin is checked. The toolbar looks " -"like this:" -msgstr "" - -# 807e188eb6b0476695e1fbd4eb2de91d -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:86 -msgid "" -"To show the |project_name| panel, click on the :guilabel:`Toggle InaSAFE " -"dock` button." -msgstr "" - -# 403f16b66b664ae88cf4182eb8475419 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:92 -msgid "" -"Just like QGIS toolbars, you can drag and drop the |project_name| dock panel " -"to change its position in the QGIS interface. You can pull it away as a " -"separate window, or place it below the Layers panel. It’s convenient in its " -"location on the right side of QGIS, so we will leave it there." -msgstr "" - -# 6d4871866e4346c0a66406643bb2e266 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:102 -msgid "" -"The |project_name| panel consists of three parts: Questions, Results and " -"Buttons. The questions are mixed in with drop-down boxes - this is where we " -"establish our input data and define the scenario that we want |project_name| " -"to process. The purpose of |project_name| is to make your impact analysis " -"very simple and easy to do. The Questions section provides a simple way for " -"you to formulate what you want to know. All questions are created in the " -"following format:" -msgstr "" - -# c6257e6e3b974f92b5c3eebbd136025a -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:112 -msgid "*In the event of [hazard] how many [exposure] might [impact]?*" -msgstr "" - -# ee52d34845114445ad78d5ecf7669de1 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:114 -msgid "" -"For example: \"In the event of an earthquake how many buildings might be " -"destroyed?\"" -msgstr "" - -# 744593f68dd846bab62689fa7c03d450 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:117 -msgid "" -"The Results section is filled in with information after |project_name| is " -"run, as we shall see. The buttons at the bottom allow us to run a scenario, " -"print and access help." -msgstr "" - -# 622915ea8f604cfc8a1534e59ec0d616 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:122 -msgid "3. Adding hazard data" -msgstr "" - -# 8f4e6ef46e964bf39599dd47f4d1b602 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:124 -msgid "" -"**Hazards** can be represented by vector layers or by raster layers. " -"Remember that raster layers are like images with many pixels, and each pixel " -"represents some data about an area on the ground. A raster that shows " -"elevation, for example, will contain pixels with different values based on " -"the altitude of the location. Similarly, a raster that represents an " -"earthquake will contain the magnitude of the earthquake at the time of the " -"event in every pixel in the raster." -msgstr "" - -# 5170aef6f09446caa130c4c9f7d66fd5 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:133 -msgid "" -"An earthquake can also be modelled with vector data, although the detail of " -"the data will most likely be lower. In this case vector polygons represent " -"the area where the earthquake occurred, and various polygons may show areas " -"of differing magnitudes." -msgstr "" - -# febfc9f89b7f43bfbb101fbca585989c -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:139 -msgid "" -"Let’s begin by adding our hazard layer to QGIS. It’s a raster model of an " -"earthquake in Lembang." -msgstr "" - -# a24fd48303524e1b8d5d009d95931b72 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:142 -msgid "Click the :guilabel:`Add Raster Layer` button." -msgstr "" - -# 7d3df4e7a2524cf78ff481c68d1a4f95 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:147 -msgid "" -"Navigate to the :file:`qgis/Bandung/` folder and add :file:" -"`Lembang_Earthquake_Scenario.asc`. This data is raster data (in ASCII " -"format) which represents the magnitude of the earthquake. The layer will " -"look like this:" -msgstr "" - -# 9ffc1352b2764fdaa0e4d49c3c7093e6 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:156 -msgid "" -"Try to change the layer band into Singleband Pseudocolor so that the layer " -"looks like the image below (refer to :ref:`module 8 `, if you forgot how!):" -msgstr "" - -# 4c5921da580e4c13b6e05f8879ab347d -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:163 -msgid "" -"You will notice that the hazard drop-down box has been automatically filled " -"in the |project_name| panel. This is because the data file has already been " -"prepared for us with keyword metadata (fancy words for settings) that tells |" -"project_name| whether it’s a hazard or exposure layer. When we add the " -"exposure data, we will learn how to add these |project_name| keywords " -"ourselves." -msgstr "" - -# 60321721b0124047846bde9f7fb5bf6e -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:172 -msgid "4. Exposure" -msgstr "" - -# bc21617d24aa47a38a29013956f8d739 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:174 -msgid "**Exposure** can also be represented by vectors or rasters." -msgstr "" - -# 3f9ac789032c4679914c3bd8025eed77 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:176 -msgid "" -"Let’s add our exposure data to QGIS - we will be using buildings obtained " -"from OpenStreetMap." -msgstr "" - -# 2b23520fd9604c04bc657ec327212264 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:179 -msgid "Click on the :guilabel:`Add Vector Layer` button." -msgstr "" - -# 1622296439da40fea82bf06669b4393a -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:184 -msgid "" -"Add the file :file:`Bangunan_Bandung.shp`, which is located in the :file:" -"`qgis/Bandung/` folder." -msgstr "" - -# 1269c5faa1d6402a9b45d226c751cb50 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:190 -msgid "" -"Notice that unlike the hazard layer, it does not appear automatically in |" -"project_name|!" -msgstr "" - -# d159b6b201c945598e57b0af6ececb35 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:194 -msgid "5. Adding keyword metadata" -msgstr "" - -# e166bd0e3c8148108230c70ee23f8120 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:196 -msgid "" -"In order for |project_name| to know that our layers are hazard or exposure " -"datasets, we need to assign keywords to the layers using the |project_name| " -"Wizard tool. Let’s take a look at the keywords that have already been " -"created on the hazard layer." -msgstr "" - -# 9f2f20a6899441a9ad7efac4512f6c2b -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:202 -msgid "" -"Select the earthquake layer in the Layers panel, and click on the :guilabel:" -"`InaSAFE Wizard` button." -msgstr "" - -# 0b716f29d20f4f8892fdc41600980a66 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:208 -msgid "" -"In the InaSAFE Wizard window, we can follow the existing instructions step " -"by step and change several keyword fields." -msgstr "" - -# 8096410d34044f6c92b7371788f6773b -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:215 -msgid "Click :guilabel:`OK`." -msgstr "" - -# a7770a3ce97346588aab1c2e660b4a18 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:217 -msgid "Select the :guilabel:`Bangunan_Bandung` layer and open the Wizard." -msgstr "" - -# e27eceddba0e4948913daeda8be780cf -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:222 -msgid "Notice that title and category are set, but not the subcategory." -msgstr "" - -# f74734719b384bbaa1ef9cd3da3796d9 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:224 -msgid "" -"Change the subcategory to :guilabel:`structure`, and click :guilabel:`OK`." -msgstr "" - -# 46be547a1ccf440a94294ddd921d0844 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:226 -msgid "Notice that the layer now appears in the |project_name| panel." -msgstr "" - -# add3967ae0ca46e4924300ad12379a81 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:232 -msgid "6. Impact Analysis" -msgstr "" - -# 74874b4ed09c40c8b93eb98870e3294f -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:234 -msgid "" -"Now our hazard and exposure data are set in the |project_name| panel, " -"because the appropriate keywords have been added to our layers. Note that if " -"we were to add a second exposure layer to our project, we would be able to " -"choose which exposure layer we wanted from the |project_name| drop-down " -"menu. The same applies to hazard layers." -msgstr "" - -# c33794cc51764336bdf5253eaef9e118 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:241 -msgid "" -"The third drop-down box is the impact function (“Might”). This concludes our " -"question, and defines the function that |project_name| will run behind the " -"scenes. |project_name| developers have written many of these functions to " -"analyse all sorts of hazard and exposure layers. The function that is " -"selected for us here will process the hazard and exposure layers spatially " -"to determine how the exposure layer will “be affected.”" -msgstr "" - -# 199291fa1bd7479b856a5f6fd097eed6 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:250 -msgid "" -"Click the :guilabel:`Run` button at the bottom to start the impact analysis. " -"At the end of the process, the statistics will be displayed in the Results " -"section, and a new layer will be added to the Layers panel that describes " -"the result of the analysis. The map will distinguish between buildings that " -"are affected and those that are not." -msgstr "" - -# 0e8242143edf44f191821711d1c7f5ae -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:261 -msgid "7. Improve the InaSAFE output map" -msgstr "" - -# d609bba3dc364aaaaaf98075e7da3b68 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:263 -msgid "" -"We can improve our impact map by editing the symbology in QGIS. Styles can " -"be changed, other relevant layers can be added, and the layout can be " -"changed using the Print Composer." -msgstr "" - -# 9caaba140aa24dc6bc10e57427a772f6 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:267 -msgid "Let’s add Bing aerial imagery as a background for our map." -msgstr "" - -# 661e978a9bc044a798abd75b2d085f59 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:269 -msgid "" -"Go to :menuselection:`Web ‣ OpenLayers plugin ‣ Bing Maps ‣ Bing Aerial`." -msgstr "" - -# f354317adb5c4cf9a50bdb787f545f55 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:271 -msgid "" -"Drag the layer below your new impact layer. If the buildings don’t show " -"correctly above the imagery, right-click on the layer and click :guilabel:" -"`Update drawing order`." -msgstr "" - -# c9eb9b52a8394c129123f3a29e379063 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:280 -msgid "8. Using the print button" -msgstr "" - -# 481befad3c59443fa2ecb00d0a06db73 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:282 -msgid "" -"The data displayed on the screen can be saved to a PDF file by clicking :" -"guilabel:`Print` at the bottom of the |project_name| panel." -msgstr "" - -# c9dbd968a3604b9da10239c46a5cde7a -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:285 -msgid "" -"Click on the |project_name| result layer and then click :guilabel:`Print`." -msgstr "" - -# e8656c67feae4d17bb839c46ac0a1fb8 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:287 -msgid "" -"A window will appear, in which you can choose the extent to be printed. " -"Choose :guilabel:`Analysis extent` if you want to print the entire map " -"extent, or choose :guilabel:`Current extent` to print the analysis based on " -"the current view of the map." -msgstr "" - -# 00c5b43ab9d34b23b96e1123780697a7 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:292 -msgid "" -"You may also choose a custom print template :guilabel:`inasafe-potrait-a4`." -msgstr "" - -# d9d7b48d260a4ffa9639f2c53ceeaaf7 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:298 -msgid "" -"If you want to add additional information before printing, click :guilabel:" -"`Open Composer`." -msgstr "" - -# bee16ec37f4f40a0a4218fbe994afd30 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:301 -msgid "To save it in PDF format for printing, click :guilabel:`Open PDF`." -msgstr "" - -# 722f2bdbe6cc496db1dd0884605fa4f2 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:303 -msgid "Choose your save location and click :guilabel:`Save`." -msgstr "" - -# eb2da91862564ef8b6ca97b8f5829e56 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:315 -msgid "9. Save your results" -msgstr "" - -# 36166430040f4792b13eba2f319ff603 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:317 -msgid "" -"You can save the impact layer that |project_name| created, and you can save " -"the QGIS project to come back to it later, but note that the |project_name| " -"statistics cannot be saved (except when you save them in a PDF). To get the " -"statistics again in QGIS, you will need to run the analysis again." -msgstr "" - -# 34c48f352a1a4341a2e1b3cdf4fa585c -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:323 -msgid "" -"To save the newly generated layer, right-click on it in the Layers panel. " -"Click :guilabel:`Save As...`" -msgstr "" - -# 68378805ff3444c781d568572d8de606 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:326 -msgid "Select a name and location for the file. Click :guilabel:`OK`." -msgstr "" - -# 9933c40b95274f1b959311bf8a644899 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:328 -msgid "" -"To save the project, click on the :guilabel:`Save Project` button at the top " -"of QGIS." -msgstr "" - -# ddeca0cddfec47368a6f354a33c95eeb -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:334 -msgid "" -"Give a name to the project and put it in the directory where you want to " -"save your work. Then click :guilabel:`Save`." -msgstr "" - -# 013950d872a04cdaae8581fff91155bf -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:342 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/213-getting-support.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/213-getting-support.po deleted file mode 100644 index 061079fe..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/213-getting-support.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-04-02 17:15+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# a031ec24e7e44a528978906697d8dbf4 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:6 -msgid "Module 13: Getting Support" -msgstr "" - -# 23ad8abe10464819bd934372055ec6c3 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 0937bfdddaea49baa669f6b20facb0cf -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:10 -msgid "Use social media to connect with |project_name| community" -msgstr "" - -# 94b66f959a0e4eac855f8c3dda0ce7ff -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:11 -msgid "Access QGIS tutorial website" -msgstr "" - -# f49cc3c43efd418f8d3fe6d4c3a863c4 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:15 -msgid "1. Facebook" -msgstr "" - -# 7e3a9218e7e74f08a91906fb17c1ed17 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:17 -msgid "" -"With the development of social media today, it is great that QGIS and |" -"project_name| users can exchange ideas online. One common platform that can " -"be used is Facebook." -msgstr "" - -# 5995fc1df56f469688385bb7283fe0c3 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:21 -msgid "" -"In Indonesia, you can join the community of QGIS users on Facebook in the " -"group **Forum Pengguna QGIS dan InaSAFE Indonesia** to discuss the " -"experiences or difficulties you have using QGIS and |project_name|." -msgstr "" - -# b46d0fe809324c36967c3dcf40a99b0f -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:26 -msgid "https://www.facebook.com/groups/forumQGISindo/" -msgstr "" - -# b48863dc86584672909d6e881a271646 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:32 -msgid "2. QGIS Tutorials" -msgstr "" - -# 723733efd3894df1bdcebd54a169620b -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:34 -msgid "" -"You can also obtain a variety of tutorials and the latest information about " -"QGIS on the web `here `_." -msgstr "" - -# 4e1799929fd8428b86494f6225389a52 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:37 -msgid "" -"On this page you will also find contact information for the QGIS Indonesia " -"forum, if you need assistance at any time regarding the use of QGIS or |" -"project_name|." -msgstr "" - -# bec166ee5f444497907137a1355a0667 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:41 -msgid "Please stop by any time!" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/index.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/index.po deleted file mode 100644 index 2acbe5f6..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/index.po +++ /dev/null @@ -1,24 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:01+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 0d5fb79c1d7b4405a021c510bb33283d -#: ../../source/training/old-training/beginner/qgis-inasafe/index.rst:4 -msgid "Unit 2: Data Analysis Using QGIS and |project_name| Beginner Level" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/index.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/index.po deleted file mode 100644 index 522c2919..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/index.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Language-Team: French (https://www.transifex.com/inasafe/teams/57762/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 50f38d1eb3b84be4a8e2240418f29bff -#: ../../source/training/old-training/index.rst:4 -msgid "OSM & QGIS (Old Training Materials)" -msgstr "" - -# 6f24d42ebe504c4e9b8a4ac0626b3512 -#: ../../source/training/old-training/index.rst:6 -msgid "" -"This section of the old documentation contains step-by-step tutorials on " -"using OpenStreetMap and |project_name| with QGIS (using QGIS 2.8 and InaSAFE " -"3.1)." -msgstr "" - -# 3149835f0f424f6d9404304b86f0143d -#: ../../source/training/old-training/index.rst:9 -msgid "Training" -msgstr "" - -# 1a73a32c21494d59804a2980a55d103e -#: ../../source/training/old-training/index.rst:9 -msgid "Intended Length" -msgstr "" - -# a598939090394d139501087bbc1b7013 -#: ../../source/training/old-training/index.rst:11 -msgid "Beginner" -msgstr "" - -# 811791ce981548e9aa3794047389282d -#: ../../source/training/old-training/index.rst:11 -msgid "10 Days" -msgstr "" - -# dc9d477c27764e6d9f8aa5886a6ac4e5 -#: ../../source/training/old-training/index.rst:13 -msgid "Intermediate" -msgstr "" - -# 5d5399fa82d440f29b4922e66cde8560 -#: ../../source/training/old-training/index.rst:13 -msgid "6 Days" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/index.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/index.po deleted file mode 100644 index 139f794f..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/index.po +++ /dev/null @@ -1,41 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Language-Team: French (https://www.transifex.com/inasafe/teams/57762/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# e5dc7c2de8d24c27b2b96ca2b7a160b6 -#: ../../source/training/old-training/intermediate/index.rst:4 -msgid "Intermediate Training Module" -msgstr "" - -# 0447a2cc52be4b9892aa928e58f11791 -#: ../../source/training/old-training/intermediate/index.rst:6 -msgid "" -"The intermediate training module has been designed by Badan Nasional " -"Penanggulangan Bencana (BNPB), Humanitarian OpenStreetMap Team (HOT) and " -"Australia-Indonesia Facility for Disaster Reduction (AIFDR) to provide hands-" -"on experience with |project_name| for data collection and data analysis for " -"contingency planning. The course is scheduled to run for six days." -msgstr "" - -# 39f11a678c6245acaadd088a46deedc8 -#: ../../source/training/old-training/intermediate/index.rst:12 -msgid "" -"The data used in this course is available for download on `data.inasafe.org " -"`_. Ask your trainer which data you will need to " -"download for the course if they do not provide it to you directly." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/300-introduction.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/300-introduction.po deleted file mode 100644 index 013b41c7..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/300-introduction.po +++ /dev/null @@ -1,227 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:51+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# c8530ff82744479d8ca30d70f932b191 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:6 -msgid "Introduction" -msgstr "Introduction" - -# 447504542121429b87c9ba69068a3564 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:9 -msgid "Disclaimer" -msgstr "" - -# ab3bce58381342bb9e9d324425526d40 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:11 -msgid "" -"This document is initial draft and still in reviewing phase by these parties:" -msgstr "" - -# fe3c705760844b58a6d4cd18db15be0c -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:13 -msgid "Badan Nasional Penanggulangan Bencana (|BNPB|)" -msgstr "" - -# d5105695352c47d8abccdee780c9e79d -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:14 -msgid "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" -msgstr "" - -# b5f6a205e3fb4b579582c0c690e6384e -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:15 -msgid "Humanitarian OpenStreetMap Team (|HOT|)" -msgstr "" - -# e7256cd89c524167ab115d80fd3f803a -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:17 -msgid "" -"All contents and materials on this document may be changed without public " -"notice." -msgstr "" - -# b1648a8fc0ae4487be03af580cbac0fb -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:21 -msgid "Licence" -msgstr "" - -# dbf3153cafc5477d86ef0e72a3a58a1c -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:25 -msgid "" -"All contents and materials in this document are licensed as Creative Commons " -"Attribution Australia (CCbyA)." -msgstr "" - -# d64855afbf2043ccafbf5213eba87fc3 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:28 -msgid "You are free:" -msgstr "" - -# b7201d2874b44b34a36103c4ab016d4c -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:30 -msgid "to copy, distribute, display, and perform the work" -msgstr "" - -# 1f3f5cfcf9b84086b5bbfa3318a03a94 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:31 -msgid "to make derivative works" -msgstr "" - -# 16ec24bb2b214e208d17b2aca5f0f609 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:32 -msgid "to make commercial use of the work" -msgstr "" - -# cdb2a8a6e8ca4fa0b8a1eaf6c2854145 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:34 -msgid "You must give the original author credit." -msgstr "" - -# 2aa63ba12b3744e18855e6669e0ddaa4 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:36 -msgid "" -"More information about CCbyA License: http://creativecommons.org/licenses/" -"by/3.0/au/deed.en_GB" -msgstr "" - -# 792de441d3a34da08e392bd01c6e328c -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:40 -msgid "About Us" -msgstr "" - -# b7d9e0fbbd0642cdaf57fcbe1730aa94 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:42 -msgid "Badan Nasional Penanggulangan Bencana (BNPB)" -msgstr "" - -# 1661c90aaf0c460da28aeb56b92ffd5b -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:46 -msgid "" -"BNPB is Indonesia’s National Disaster Management Agency. |BNPB| is a non-" -"departmental ministerial-level government agency, tasked with providing " -"guidance and direction to the efforts of disaster management that includes " -"disaster prevention, emergency response, rehabilitation and reconstruction " -"in a fair and equal way. |BNPB| functions as a policy maker regarding " -"refugee/IDP management for effective and efficient response. It coordinates " -"the implementation of disaster management activities in a planned, " -"integrated and comprehensive way." -msgstr "" - -# 574b86e7d76e465297080d5be85d3860 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:56 -msgid "http://bnpb.go.id" -msgstr "" - -# b48a218a46ea4682bab3e2809e44bcf7 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:59 -msgid "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" -msgstr "" - -# e0375fd5be164be6b2af18599f266e0d -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:63 -msgid "" -"The Australia-Indonesia Facility for Disaster Reduction (|AIFDR|) is a joint " -"initiative between the governments of Australia and Indonesia. They work to " -"strengthen Indonesia's ability to reduce the impact of disasters. The " -"Australian and Indonesian governments at a special ceremony on 15 July 2010 " -"launched the Australia-Indonesia facility. The launch marks an important " -"event in the strong relationship now shared by both countries and their " -"united commitment to better prepare for and respond to natural disasters in " -"Indonesia." -msgstr "" - -# 9e06abfe37e44b7097ab0ba64653375c -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:72 -msgid "http://aifdr.org" -msgstr "" - -# f5021c6c9271467d9985df436b9b2923 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:75 -msgid "Humanitarian OpenStreetMap Team (HOT)" -msgstr "" - -# 37faed31349b405fba14f877086c3eba -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:79 -msgid "" -"Free, collaborative maps are uniquely valuable to humanitarian work, " -"especially in places where base map data is often scarce, out-of-date, or " -"rapidly changing. OpenStreetMap is a web project to create a free and open " -"map of the entire world, built entirely by volunteers surveying with GPS, " -"digitising aerial imagery, and collecting and liberating existing public " -"sources of geographic data. The Humanitarian OpenStreetMap Team (|HOT|) is " -"an initiative to apply the principles and activities of open source and open " -"data sharing towards humanitarian response and economic development." -msgstr "" - -# af8809f35a644ccfa6e305b1017a45ba -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:88 -msgid "http://hot.openstreetmap.org" -msgstr "" - -# 1cb21a6d29c747e3b9526a3caefcdd1a -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:91 -msgid "Universitas Gadjah Mada" -msgstr "" - -# 1fe03e48d7534207aa101dbda7b8ea14 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:95 -msgid "" -"Universitas Gadjah Mada (internationally known as Gadjah Mada University, or " -"UGM) is a top research university located in Yogyakarta, Indonesia. The " -"Department of Geodetic Engineering and Faculty of Engineering focuses on " -"education, research, and commmunity services related to geodesy and " -"geomatics engineering, including acquisition, analysis, and uses of detailed " -"and accurate geospatial data and large-scale maps using open source " -"geospatial software for disaster management." -msgstr "" - -# 1956489ff930465993fc11a3c253cc4e -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:103 -msgid "http://ugm.ac.id" -msgstr "" - -# 814ff5f856cb4df0bdb0a1e1c9036a49 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:107 -msgid "Preface" -msgstr "" - -# d3827927ba0246e69988ba3c273418a5 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:108 -msgid "" -"Every day thousands of people contribute to OSM, a project with the lofty " -"goal of mapping the world. Most OSM software is free and open source, and " -"the data is open for anyone to use. The idea is simple: if you make a map of " -"your town and we make a map of ours, we can share those maps on a common " -"platform. With enough people contributing, we can collect data throughout " -"the world." -msgstr "" - -# 1703d2b2559440bcb0d797687f0d473a -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:115 -msgid "" -"Collecting Spatial Data using OSM Intermediate Level is a step-by-step " -"course designed to help those who wish to carry on from the beginner " -"tutorial and explore OSM in more detail. We recommend reviewing Collecting " -"Spatial Data using OSM Beginner Level prior to this unit." -msgstr "" - -# 50822312fe92471588c187b69734a86d -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:121 -msgid ":ref:`Go to first module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/301-advanced-editing.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/301-advanced-editing.po deleted file mode 100644 index bdefb3ee..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/301-advanced-editing.po +++ /dev/null @@ -1,598 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-11-22 22:41+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 00b0abbafbb84270954eb2e7ec1ca599 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:6 -msgid "Module 1: Advanced Editing" -msgstr "" - -# 91190d5dea424976b38fcf1df8130387 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# cd756b85bb774777b88804462ba73ab4 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:10 -msgid "Use advanced editing tools in JOSM" -msgstr "" - -# 9ef3dc76f9bf45e2bd0316bb9cabe223 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:11 -msgid "Make relations among objects" -msgstr "" - -# 1f36555ec81e4e7d9e17d116918aa749 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:13 -msgid "" -"Welcome to the intermediate guide for spatial data collection with " -"OpenStreetMap. In the previous unit you learned how to draw points, lines " -"and shapes in JOSM, how to open your GPS waypoints and tracks in JOSM and " -"how to download, edit and upload your changes on OSM. In this module, we " -"will describe relations, JOSM editing tools and editing techniques in " -"greater detail." -msgstr "" - -# 338f84204e994fc2a178aa79f8e8f2e6 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:20 -msgid "" -"While this module is not extremely advanced, it is a step higher than the " -"previous unit. If you don’t feel like you fully understand the lessons " -"leading up to this, you may wish to practise a little bit more before " -"continuing." -msgstr "" - -# fb5118148ffe44659a9e9576db3f5ca3 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:27 -msgid "1. Advanced editing tools" -msgstr "" - -# 11fad8b422d34f7f90ebab3ba2530167 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:29 -msgid "" -"There are a few ways you can access more editing tools in JOSM. We will look " -"more at the default tools, as well as additional tools available through " -"plugins." -msgstr "" - -# e5370ac5af6f49e98655ad4c10297cc7 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:34 -msgid "1.1 Default drawing tools" -msgstr "" - -# d06de6bd9ad842b686bdc50df152a4d2 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:36 -msgid "" -"JOSM has some additional tools to make it easier to draw lines and shapes. " -"These tools are found in the :menuselection:`Tools` menu at the top of JOSM." -msgstr "" - -# 4421659a78e14435a60e06a2b3546894 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:42 -msgid "" -"In order to apply the functions in this menu, you must first select a point, " -"line or shape in the map window. Some of the most useful functions are " -"described here:" -msgstr "" - -# f8ef42066e454713a527266b01db2fec -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:47 -msgid "Split Way" -msgstr "" - -# 5fb8d37e05fc49f29d88f1ff3c41790f -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:48 -msgid "" -"This allows you to divide a line into two separate lines. This is useful if " -"you want to add different attributes to different parts of a road, such as a " -"bridge. To use this function, select a point in the middle of the line that " -"you want to split, go to :menuselection:`Tools ‣ Split Way` and your line " -"should be split in two." -msgstr "" - -# 80514dd1e2e5475399572a81d4141100 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:58 -msgid "Combine Way" -msgstr "" - -# 38cc9e06123d4ce4a52613b565c105a3 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:59 -msgid "" -"This does the opposite of :guilabel:`Split Way`. To combine two lines into a " -"single line, they must share a single point. To use this function, select " -"both lines that you want to combine. You can select more than one object by " -"holding the :kbd:`SHIFT` key on your keyboard and clicking on each line. " -"When you have selected both lines, go to :menuselection:`Tools ‣ Combine " -"Way`." -msgstr "" - -# dd608ae04fe24a80b32b98dc0b4590f9 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:69 -msgid "" -"Note that you if are combining roads that have different directions, you " -"might get this warning:" -msgstr "" - -# b7922972b69d4f409f6a3f365aea97b4 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:75 -msgid "" -"If the roads are connected and go in the same direction, click :guilabel:" -"`Reverse and Combine`." -msgstr "" - -# b6e8f61500fc48fb84817244c233ceda -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:79 -msgid "Reverse Way" -msgstr "" - -# 0df8719ee7b84700a98e557dba4978f7 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:80 -msgid "" -"This will change the direction of the line. If the line incorrectly " -"represents a road or river that is one-way, you may want to change its " -"direction. Unless someone has intentionally created a way to be one way you " -"do not usually have to worry about altering the direction because ways in " -"OSM default to represent both directions." -msgstr "" - -# 7668f00c359a422a8dcbd729b62e2d89 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:90 -msgid "Simplify Way" -msgstr "" - -# be876ce29fb6482e916d6f13afcb2493 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:91 -msgid "" -"If your line has too many nodes in it and you’d like to make it simpler, " -"this will remove some of the points from a line." -msgstr "" - -# 10cca37263004235a6db0dea5feedcf4 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:98 -msgid "Create Circle OR Align Nodes in Circle" -msgstr "" - -# 185336140346447aaced40cac36fbea6 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:99 -msgid "" -"If you are trying to make a circular shape, draw the circle as best you can " -"and then select three nodes and the function. It will help arrange your " -"points in a circle." -msgstr "" - -# d03dd8ccbcd4465a90dc563387cf0f2a -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:107 -msgid "Align Nodes in Line" -msgstr "" - -# 7d273ead1e0144e9a2bc6cb947a75fb5 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:108 -msgid "" -"This function will align a series of points into a straight line. With long " -"lines it is best to select sections of the line to straighten. Be careful as " -"this does have the tendency to shift the line a little." -msgstr "" - -# 4a1a217e99a54136925afe722302cddc -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:117 -msgid "Orthogonalize Shape" -msgstr "" - -# 9a0fdc9742a0445ab690aac632d2d0ee -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:118 -msgid "" -"This function is very useful for drawing regular shapes such as buildings. " -"After you draw an area, this function will reshape it to have square " -"corners. This feature is most useful for other regularly shaped features, " -"such as tennis courts or landuse areas (Using the Building Plugin, which is " -"explained below, might be easier for buildings)." -msgstr "" - -# e6709b176d094decb7bd49b139e5506d -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:129 -msgid "Unglue Ways" -msgstr "" - -# 194bc88bdf034c93bdfb87b431d65dc6 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:130 -msgid "This tool allows you to detach nodes that are connected." -msgstr "" - -# ab7fc9fa9b084fbcb7a93345bd819800 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:135 -msgid "" -"The line and node will not actually appear separate as the last screenshot " -"implies." -msgstr "" - -# 5af6f1b0ab434000b4c2a4be53b26874 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:139 -msgid "1.2 Plugins" -msgstr "" - -# fb6a4fce9e0647ed88548f8913bb55d4 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:142 -msgid "Building Plugin" -msgstr "" - -# 31b716e1f90244d08143cbdbfe95901e -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:146 -msgid "" -"This plugin is by far one of the most useful tools for editing (digitising). " -"Install it as with any other plugin. It will appear as an icon on the left " -"hand toolbar. The functionality of this tool is explained here:" -msgstr "" - -# c6dd3ae02a794c11be342e4cb82d096e -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:150 -msgid "" -"The Building tool allows you to create shapes with 90 degree corners with " -"just three clicks. First, trace the edge of the building and then drag out " -"the line to make it a polygon." -msgstr "" - -# e2e890a7ef9f4825a2ac67b589ced271 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:160 -msgid "" -"You can also create more complicated buildings by using the merge option. " -"Create your building outline, select all of the polygons (press :kbd:`SHIFT` " -"to highlight them all) and then press :kbd:`SHIFT + J` to merge the objects." -msgstr "" - -# 308d219b3bc74a08844c3ad936a9995c -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:167 -msgid "" -"Furthermore, you can also change the default settings (size of building and " -"default tags) by going to :menuselection:`Data ‣ Set building size`." -msgstr "" - -# df9c57b5c8fc4b08b6fd00bee8935ca6 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:173 -msgid "" -"This is useful if you are drawing many buildings of a known dimension (such " -"as five by six metres). If you are mapping infrastructure which requires " -"tags other than **building=yes**, you can set the desired default tags by " -"going to :guilabel:`Advanced...`." -msgstr "" - -# bfbea6b57797449795fbcb82ad8cdecc -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:183 -msgid "Utilsplugin2 (More Tools)" -msgstr "" - -# a4177d1286ad445dae9df21e33c5ec13 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:185 -msgid "" -"The plugin utilsplugin2 has several features that are also useful for " -"editing." -msgstr "" - -# 8351cdad189b444daa66d5a8465d1645 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:190 -msgid "" -"After you install this plugin, a new menu will appear called :menuselection:" -"`More Tools`." -msgstr "" - -# a7f059f3c9154ae7ae11976e8de86ea6 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:196 -msgid "The following tools are some of the most useful:" -msgstr "" - -# dea3a4076f36451f9596f4bf06284129 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:199 -msgid "Add Nodes at Intersections" -msgstr "" - -# 3d32a1977c9d48e6a2c41a224adf8136 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:200 -msgid "" -"This tool is helpful for adding missing nodes in intersections of selected " -"ways. It is good practice that roads and rivers should always have common " -"nodes where they intersect." -msgstr "" - -# 31bfed3e07e74fb8881dddf69a58034b -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:208 -msgid "Copy Tags from Previous Selection" -msgstr "" - -# b1f4c7986a6d49189e823c5be4f7227a -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:209 -msgid "" -"This function makes copying tags easier. If you want to create many objects " -"with the same tags, first draw the objects. Then add the tags to one object. " -"Click on another object and press :kbd:`Shift + R` to copy the tags from the " -"previously selected object. You can do this for all objects that you want to " -"tag. Remember that the tags will be copied from the previously selected " -"object, so if you click on an untagged object and then another untagged " -"object, you will not be able to copy any tags." -msgstr "" - -# 6ac31fea88a9488190bd386a997b2323 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:222 -msgid "Add Source Tag" -msgstr "" - -# 8e44f26eebd542a1a45b37d09f8fc5b5 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:223 -msgid "" -"This tool simplifies adding a source tag. It remembers the source that was " -"specified last and adds it as remembered source tag to your objects. You can " -"insert the source with just one click." -msgstr "" - -# 298c6a636110441688a8275fac489d08 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:228 -msgid "Replace Geometry" -msgstr "" - -# 42fcfac451b74d2f831b314aaa263871 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:229 -msgid "" -"This tool is great if you want to redraw a poorly shaped object, but want to " -"keep the history, attributes and ID number of that object. For example, if " -"you come across a building that is complicated and drawn in a poor fashion, " -"then instead of painfully changing each node, you can (2) just draw the " -"object again (3) select the old and new object (4) press :guilabel:`Replace " -"Geometry` to transfer all the information over." -msgstr "" - -# c0734cd19b054ae4b946a9047a4a3359 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:240 -msgid "" -"Utilsplugin2 also provides a new selection menu that provides more tools:" -msgstr "" - -# ed930c70cd434d0e914b6bb4104ebf8a -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:245 -msgid "These tools are some of the most useful:" -msgstr "" - -# d76a98049b68447ebe1a56eaa6749fc4 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:248 -msgid "Unselect Nodes" -msgstr "" - -# b3bf3971f9904132a10e9f8a6b34bcf2 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:249 -msgid "" -"This tool allows you to deselect nodes, which makes it useful for tagging " -"the objects selected. This tool is necessary if you have mapped several " -"polygon objects with similar attributes and would like to tag the objects " -"without tagging the nodes. To do so, select all of the objects - polygons, " -"ways and relations. Then unselect the nodes and tag appropriately." -msgstr "" - -# 4401e9be91e340388582f4ff840bf6d5 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:259 -msgid "Select Last Modified Nodes" -msgstr "" - -# e5fcd4ed66ef40f8820f4d87d56be432 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:260 -msgid "" -"This tool permits you to go back to the nodes that you most recently changed." -msgstr "" - -# 2afb87db485343dc8997762dc9c5f531 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:264 -msgid "2. Relations" -msgstr "" - -# 8482b590623547b2ae7602b43a680a74 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:266 -msgid "" -"In the first unit we learned that there are three types of objects that can " -"be drawn in OSM - points (nodes), lines (ways) and polygons. Lines contain " -"numerous points, and the line itself carries the attributes that define what " -"it represents. Polygons are the same as lines, except that the the line must " -"finish where it begins in order to form a shape." -msgstr "" - -# 07ef32832ee548dcba34811517ce7faf -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:272 -msgid "" -"In fact, there is one other type of object in OSM, and these are called " -"relations. In the same way that a line consists of other points, a relation " -"contains a group of other objects, be they points, lines or polygons. If you " -"are looking to obtain advanced editing skills, then understanding and " -"knowing how to properly edit relations is important." -msgstr "" - -# cec7e2f1f1914e2e974b3555bd028e04 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:278 -msgid "" -"For example, imagine that you want to map a building that has courtyards in " -"the centre. You would need to draw a polygon around the outside of the " -"building, and you would need other polygons around the courtyards to " -"indicate that they are not part of the building. This is an example of a " -"relation. The relation would contain several polygons - and the attributes " -"of the building would be attached to the relation, not the polygons." -msgstr "" - -# a95470c5123c4316a7caf101fcc15a20 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:288 -msgid "" -"Relations are used to represent anything that requires a collection of " -"objects to define. Other examples are bus routes (a collections of lines), " -"long and complex objects (rivers or roads), or multiple polygons that are " -"all part of one location (like buildings in a university)." -msgstr "" - -# c78c4d295d9246f499c506462cc8f621 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:293 -msgid "" -"There are mainly four types of relations you will encounter in OSM: " -"**Multipolygons, Routes, Boundaries and Restrictions**. In this section we " -"will go over Multipolygons and Routes." -msgstr "" - -# b599b4f5d70b432c9efecc198705372a -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:298 -msgid "2.1 Editing relations" -msgstr "" - -# 2e473b24660c4f80b431856b93becc90 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:300 -msgid "" -"The multipolygon above contains a polygon for the outer limits of the " -"building and two more to mark the inner courtyards. To create a relation " -"from these three polygons we need to:" -msgstr "" - -# 5648217a26fb48a4bbb07372cd9266d8 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:304 -msgid "Select all of the polygons." -msgstr "" - -# 8a46743fe2b64cb3a1d15e830b18936b -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:306 -msgid "Go to :menuselection:`Tools ‣ Create multipolygon`" -msgstr "" - -# 3f9608b651624f13bb9b6b1346dadf54 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:311 -msgid "The polygons should automatically be created as a multi-polygon." -msgstr "" - -# 3365acb4849b4f7182bac603c125aacf -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:316 -msgid "Click the :guilabel:`Edit` button in the :guilabel:`Tags` tab." -msgstr "" - -# d1026497d1f34acd8805bbe12fd5f121 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:318 -msgid "" -"This opens the relation editor. Notice that in the lower-left corner is a " -"list of the members of the relation. One has been automatically defined with " -"the role of \"outer\" (the outer polygon), and the other carries the role of " -"\"inner.\"" -msgstr "" - -# c5fbc2b9f89d47feb8c836e1247b130b -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:322 -msgid "" -"At the top are a list of the tags applied to this relation. Right now only " -"one tag exists, **type=multipolygon**. This tag indicates what type of " -"relation the object is." -msgstr "" - -# bb971a503ce543988b3244e4f5e95c4b -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:326 -msgid "Click beneath it and add one more tag: **building=yes**." -msgstr "" - -# 60ad4b1466a74509bcdcf972e75796b8 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:331 -msgid "" -"Click :guilabel:`OK`. The object will change colours and will now appear as " -"a building, but with a courtyard." -msgstr "" - -# 66baf6345e6d486ab09a3ac991e8dd04 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:334 -msgid "" -"The data behind the relation in our example is visible on OSM: You can see " -"this multipolygon on OSM by going to http://www.openstreetmap.org/browse/" -"relation/2435797. It will appear on OSM like this:" -msgstr "" - -# 4801a6d8495349e38917c9768fc32740 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:343 -msgid "2.2 Another multipolygon" -msgstr "" - -# 92845e3da7c54342b1665ed73ee6e584 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:345 -msgid "" -"The river below is another example of a multipolygon. Effectively it is the " -"same as the building example, but with a greater number of members and " -"covering a much larger area. It can be viewed on OSM here: http://www." -"openstreetmap.org/browse/relation/1046961." -msgstr "" - -# fa35d81774454b1dae1462897b8a71f2 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:357 -msgid "This river contains ten ways that are connected like a long polygon." -msgstr "" - -# 193fccb2c3184bd1b450323be80946ab -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:360 -msgid "2.3 Linestring relations" -msgstr "" - -# d2107911cbde4bfb9883f56ad38628eb -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:362 -msgid "" -"Relations are also very useful for creating, labeling and editing large " -"linestrings; for example, bus routes, hiking trails, bicycle paths, etc. " -"These differ from multipolygons because they are relations with members, as " -"supposed to complex areas. A linestring could simply be one line with " -"multiple members. Additional features, such as bus stops represented by " -"separate nodes can also be tagged as relation members." -msgstr "" - -# 05651650c3684f36a69f20579ce1ccee -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:374 -msgid "To create a linestring relation:" -msgstr "" - -# ed3a68e40d4a45e1a988595d1256a56c -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:376 -msgid "" -"Make sure that all of the ways in which the route runs along are " -"appropriately tagged. For example, **highway=footway**." -msgstr "" - -# 82e7808037b547cf9c1c6ba2f9d387d4 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:379 -msgid "" -"Select all of the highways or ways that are part of the bus route. If you " -"would only like to select certain parts of a way, then you must divide the " -"way into sections. This creates more work, but you can easily do it with " -"the :guilabel:`Split Way` tool." -msgstr "" - -# c442132aa2484c48a5c9e1d22b450b66 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:385 -msgid "" -"Go to :menuselection:`Presets ‣ Transport Public Transport ‣ Route master`." -msgstr "" - -# b83e9aeab86547cf84114b68b7eb7e8e -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:390 -msgid "" -"Fill in the information about the bus route and click :guilabel:`New " -"relation`." -msgstr "" - -# bd9191f4560a417e886c723da9bb7804 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:396 -msgid "" -"Relations are difficult to understand and do not have to be used often, but " -"they are necessary to know about. As you get more developed with your OSM " -"skills and want to create more complex buildings, rivers and routes, " -"relations will be useful." -msgstr "" - -# ef7b701e2efe48f2bc54ae3d5b8b1b63 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:402 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/302-quality-assurance.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/302-quality-assurance.po deleted file mode 100644 index 56bea6ca..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/302-quality-assurance.po +++ /dev/null @@ -1,634 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-11-22 22:41+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# a7511c06d52646df9c0d9641a19cc927 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:6 -msgid "Module 2: Quality Assurance" -msgstr "" - -# f6803454f69f4106a37b5d02a51424c9 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 3d9c390988694ee58317ed926f5d8716 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:10 -msgid "Use validation tools in JOSM" -msgstr "" - -# 7c7ae34fda4948da9e1fb411e7d2dd77 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:11 -msgid "Use online validation tools" -msgstr "" - -# 712ac291fd7c4e7f8e8c55f363dd5cea -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:13 -msgid "" -"Contributing to OpenStreetMap is easy to learn, but difficult to master. " -"Everybody makes mistakes, but the system works because even when one person " -"does something the “wrong” way, there are always other mappers ready to help " -"and fix errors. As you map more and more it will continue to get easier, and " -"you will learn the “proper” way to do things. In this module we will take a " -"look at the JOSM validation tool, which is an automated tool to search for " -"errors and warnings in your data. We will also take a look at one of the " -"online validation tools, which can aid us further in identifying mistakes on " -"OSM." -msgstr "" - -# 87370b2f5ecb478cbc577025bb22db19 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:25 -msgid "1. Errors and warnings" -msgstr "" - -# 9fcfca67e974465aa942f017231dd511 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:27 -msgid "" -"Sometimes when you go to upload your edits in JOSM you get a pop-up window " -"like this:" -msgstr "" - -# 9369686abca54d7ab8bb02dfec1e225f -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:33 -msgid "" -"This is JOSM’s way of telling you that there is suspicious data and that you " -"might want to review the errors and warnings before uploading to OSM." -msgstr "" - -# dbed1c0b98bb4304b337c3a195ec6ddd -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:36 -msgid "" -"JOSM comes with a tool that does an automated analysis of possible mistakes. " -"This is useful for finding errors that you may have overlooked. When you run " -"the validation tool, it returns two lists of problems:" -msgstr "" - -# fb7c0c19035a4d0f926877078f21a8d4 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:40 -msgid "" -"**Errors:** These are important to fix, and therefore usually you should not " -"ignore these. Examples of errors include duplicated objects or overlapping " -"lines and polygons." -msgstr "" - -# efbda5e64ac04a92957aca6d742f816a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:44 -msgid "" -"**Warnings:** These are problems that are important to fix, but in some " -"cases, they are tolerable." -msgstr "" - -# bafe24f545f44d688338a5b41f665e31 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:47 -msgid "" -"One thing to note is that if you download a large area of the map and run " -"the validation tool, you may get a very long list of errors and warnings. " -"This is because the validation tool works on the whole map, not only the " -"changes that you have made. You may see mistakes that other mappers have " -"made, and you can fix them, or ignore them. The validation tool gives you " -"the opportunity to look at the mistakes one by one." -msgstr "" - -# ef81ed5f50e447399e63c337ec34a454 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:57 -msgid "2. Using the validation tool" -msgstr "" - -# 3b54c29f4a3341e39fd2e85c9329852e -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:59 -msgid "Let’s see how to use the validation tool:" -msgstr "" - -# 500bc27b20dd42e890b9a6b6949fb633 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:61 -msgid "" -"In JOSM, download a section of the map. If you don’t see the :guilabel:" -"`Validation Results` window in the right panel, click on the blue checkmark " -"on the left to show it." -msgstr "" - -# 8018b117d11b403cba7e55876eb8fdd6 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:68 -msgid "" -"Ensure that nothing on the map is selected. If you run the validation tool " -"with anything selected, it will only validate what you have selected, and " -"not the whole map. Hover your mouse in the validation window and click :" -"guilabel:`Validation`." -msgstr "" - -# 63c6959d56f44e1f8fb6780ee4c5aa81 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:76 -msgid "" -"The map will change and any warnings will be circled in yellow, errors in " -"red. In the :guilabel:`Validation Results` window you will see a list of " -"warnings and errors, if there are any." -msgstr "" - -# 4c07ae7d313a45b389fcb34b80ca8d1a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:83 -msgid "" -"Errors should almost always be fixed. Zoom to an error by right-clicking on " -"it in the window and selecting :guilabel:`Zoom to Problem`. Then fix the " -"mistake manually." -msgstr "" - -# f6057ba5572046f1bee558a6c88c0807 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:88 -msgid "" -"Some errors can be automatically fixed, such as \"Duplicated nodes” errors. " -"Click on the folder for these types of errors and click the :guilabel:`Fix` " -"button in the window. Many errors, however, need to be corrected manually." -msgstr "" - -# 96551e7da2d74a80a149064907579201 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:96 -msgid "" -"Usually there are many more warnings than errors. By giving you a warning, " -"JOSM is telling you that it is probably a mistake, but not always. Use your " -"judgement to see if it is an important error or not." -msgstr "" - -# 093e8c3308314fc6b03fa35cb88a87a2 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:101 -msgid "" -"If you select a warning from the list and decide that it is not a problem, " -"click :guilabel:`Ignore` and it will be removed from the list." -msgstr "" - -# c61442b319f74850a7766a9a6d71cca3 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:104 -msgid "" -"Re-run the validation tool at any time by clicking the :guilabel:" -"`Validation` button." -msgstr "" - -# a8a71245b2d4427a81a54a4be254a9e0 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:108 -msgid "3. Common validation warnings" -msgstr "" - -# c83e2c12a4974f7f8f9afcba30c55bdc -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:111 -msgid "Ways that are not closed" -msgstr "" - -# c3122e4bc740459e978bf7f0b89a56c3 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:112 -msgid "" -"This is usually a line that does not form a polygon. Common examples are " -"buildings where the first node does not meet the last node." -msgstr "" - -# a5197d3fb75045d7bbc55d2794ab1cd9 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:118 -msgid "" -"To fix this, select both nodes and go to :menuselection:`Tools ‣ Merge " -"Nodes` to connect them." -msgstr "" - -# 5dc288b4ebfd4654818a0fead08889ca -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:122 -msgid "Crossing buildings (overlapping buildings)" -msgstr "" - -# 42e42d97072e48158c79aa149ebf2bd7 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:124 -msgid "This means that buildings are overlapping each other." -msgstr "" - -# 68af1ce1137f4ec6879c01bf7af23e54 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:129 -msgid "" -"To fix this, move the nodes of one of the buildings outside of the other " -"building. It is possible for two buildings to share nodes, if the buildings " -"share a common wall. But two buildings cannot overlap with one another." -msgstr "" - -# 1b8b281a76e942a1abefe38753523d75 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:134 -msgid "Untagged nodes or ways" -msgstr "" - -# f94920b3922b4b719a49a85310138928 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:136 -msgid "" -"If someone draws a point or a line but forgets to give it any tags, then it " -"is useless, because it does not mean anything." -msgstr "" - -# 48763246d27c466887ad2c809ed9d5ba -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:142 -msgid "" -"To fix this, apply tags to the object to identify it, or delete it if it is " -"a mistake." -msgstr "" - -# caeb5c7fbb374eb49c060fc187c29ff9 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:146 -msgid "End node near another way" -msgstr "" - -# 557c180e0a7d42f2b007bf89decef3a0 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:148 -msgid "" -"If a line ends very close to another line but does not connect, this raises " -"a warning." -msgstr "" - -# 59fee31bd6f542298f65cfa76e30b38f -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:151 -msgid "" -"Many times this warning is not important, but it helps to find road " -"intersections that are supposed to connect but do not." -msgstr "" - -# 8e4040bc2d204732bc65104d3b7c8496 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:158 -msgid "Crossing ways" -msgstr "" - -# 895ad2114ef44baab7299d8e1d0dabb7 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:160 -msgid "" -"Lines that cross other lines without being connected will raise warnings. " -"Many times this is not a problem, because the crossing ways are intentional " -"- such as in the case of bridges, or streets and rivers that cross landuse " -"polygons. However, it is sometimes helpful to find errors." -msgstr "" - -# 24db47639a6e46e8b555b392a2b41925 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:170 -msgid "" -"OSM depends on people correcting and editing mistakes. Editing and " -"validating data is important for improving maps. If you do not have time to " -"get in the field with a GPS or trace imagery, validating objects and " -"attribute data is a good way to contribute." -msgstr "" - -# a869a5fc18184f638f8855e2c3655859 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:177 -msgid "4. Using the tasking manager" -msgstr "" - -# 98b133611eae4084afa90d1ef3c229cd -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:179 -msgid "" -"The OSM Tasking Manager is a tool that mappers can use to sort an area into " -"a grid, and work together to map in an organised way. Apart from being more " -"organised, the tasking manager is also one way to avoid editing conflicts, " -"because it helps prevent more than one person from editing the same area at " -"the same time." -msgstr "" - -# 36bc42d52d0e4105beb89b62fdc065e2 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:185 -msgid "" -"One consistent challenge is coordinating field and/or remote workers to map " -"an area together. To help address this, HOT has developed the Tasking " -"Manager to make it easier for administrators to define the areas of mapping " -"interest and to delegate workers. The idea behind this tool is that if there " -"is an area, let’s say a city, that we want to map, we can coordinate between " -"people mapping on the ground and others mapping remotely with satellite " -"imagery, This tool allows us to create a grid of the entire area. " -"Collaborators select blocks in the grid that they plan to map, and when they " -"finish, they mark the area as complete. In this way a team of many people " -"can coordinate to map the entire grid." -msgstr "" - -# ac5d07d10df5447aadaea55c6470b271 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:198 -msgid "To see how the tasking manager works, let’s take a closer look." -msgstr "" - -# 3c3672af16a143f2af8f3f884f27add2 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:200 -msgid "" -"Open your internet browser and go `here `_. You " -"will see a page like this:" -msgstr "" - -# f6cc35b9a0ff41bea6ab22aa4e2a10e5 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:206 -msgid "Click :guilabel:`login to OpenStreetMap`." -msgstr "" - -# c9f1b29fbb4d4f589169fa7e7565040e -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:208 -msgid "" -"Here you must agree to allow this application some access to your OSM " -"account. To do so, click :guilabel:`Save Changes`." -msgstr "" - -# 1e4fd8f713794b479df4dd98c2ec065a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:214 -msgid "" -"On the left is a list of current mapping tasks. These are different places " -"in the world that people are coordinating to map." -msgstr "" - -# 17d4e20db8f84a709922f8865db1a2a0 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:220 -msgid "Click on one of the projects to see more information about it." -msgstr "" - -# ba933a94123c4276b3b56ceaac8927c7 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:225 -msgid "" -"This page shows you everything you need to know about the project. On the " -"left side of the page is a description of the mapping project and how it is " -"being organised. You can click on the different tabs to get more " -"information. On the right side is a grid showing the area to be mapped. Red " -"grid squares have been completed, green squares have been completed and " -"checked by another person, and the remaining squares still need to be mapped " -"or are being worked on." -msgstr "" - -# fd933d8d73a04cd78c106be259e523b8 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:234 -msgid "" -"Click on the :guilabel:`Activity` tab to see activity for this task. The :" -"guilabel:`Stats` tab shows various users and their contributions." -msgstr "" - -# c2ba08f792824dd1a8a99ca83df06a0a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:237 -msgid "" -"To claim a grid square to work on yourself, click :guilabel:`Start " -"contributing` on the :guilabel:`Instructions` tab, or simply click an " -"unclaimed square on the map and then click :guilabel:`Start mapping`." -msgstr "" - -# 9a6aa155d59e44a1bcf70af38f83f59c -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:244 -msgid "" -"Next you see a view of the square that you have chosen to map. Click the " -"button on the left to open the area up for editing with JOSM, iD, Potlatch 2 " -"or create a Field Paper." -msgstr "" - -# 47e793da3e804954bfc8c1a6d6c9c645 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:253 -msgid "" -"If you plan to edit with JOSM, you need to enable the JOSM remote control " -"before you are able to launch the application from the Tasking Manager. To " -"do this, open JOSM and go the :menuselection:`Preferences` menu. Click on " -"the :guilabel:`Remote Settings` tab and check the box next to :guilabel:" -"`Enable remote control`. Restart JOSM." -msgstr "" - -# 1b8c11b19d504bb88e31a4dcc4fdc68d -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:263 -msgid "" -"Return to the Tasking Manager and choose :guilabel:`Edit with JOSM`. If you " -"have JOSM open and you correctly enabled the remote control, the grid area " -"of the map you selected will automatically be loaded into JOSM." -msgstr "" - -# 4402b66b1ce540449cb95e389195610e -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:267 -msgid "" -"Next you may edit the area using the instructions provided in the project " -"information. Usually tasks will be to trace certain features using imagery, " -"such as buildings and roads. Alternatively, tasks might be set to map in " -"more detail on the ground." -msgstr "" - -# ac30b3b36c0844f089962864d25582c1 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:272 -msgid "" -"When you are finished you will upload your edits and then return to the " -"Tasking Manager to add a comment about your work. If you finish the grid " -"square, click :guilabel:`Mark task as done`." -msgstr "" - -# 483749408bff4153a374e62632dfaf26 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:276 -msgid "" -"If you are unable to complete the task, click :guilabel:`Unlock` to make the " -"task available again for other mappers." -msgstr "" - -# 499ddce2ac4e4da8a13d1014bf077d2a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:282 -msgid "" -"When you finish an area, the grid square will turn yellow on the map to " -"indicate that it is done. Someone else will then look at your work to make " -"sure it is good, and if they agree that you’ve completed the square well, " -"the grid square will turn green, meaning it is complete!" -msgstr "" - -# fcab89290b754a888830648c66ae0bcc -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:289 -msgid "5. Editing tips" -msgstr "" - -# 312eaca0638f4747b0a87066773f48ca -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:291 -msgid "" -"In this section we will go over some common mistakes in JOSM and provide " -"some editing tips for making your maps great!" -msgstr "" - -# d8eaadb81a0248298d05d04ea3f141fc -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:295 -msgid "Some objects should not connect" -msgstr "" - -# b61ee0d6a9f04bcaba828f4792eed5ed -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:297 -msgid "" -"When you are creating polygons and lines that are not supposed to be " -"connected, make sure that they are not merged together by sharing a node. " -"For example, highway nodes should not be snapped to buildings, because no " -"one likes a road that leads directly into a wall! If you want to disentangle " -"two or more obejcts that share the same node, select the node and press :kbd:" -"`G`." -msgstr "" - -# 079b16d8f0c14a8bbfdf5a12e89f747f -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:311 -msgid "But, some objects should connect" -msgstr "" - -# 70004f548ae346609646688e809d10a0 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:313 -msgid "" -"However, some objects SHOULD connect! Road intersections should always be " -"snapped together. If two roads do not share a common node, then the computer " -"has no way of knowing that the roads actually connect to each other." -msgstr "" - -# cf79d79615da4eeab76349bfcf2b93ef -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:322 -msgid "Overlapping objects" -msgstr "" - -# 4e4567d74b604197aec6be6f869e04d1 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:324 -msgid "" -"A common error is to have overlapping polygons when the objects they " -"represent do not overlap in real life. A building cannot overlap another " -"building. This mistake is commonly made with buildings and landuse polygons. " -"For example, a polygon drawn to represent a park outside a building should " -"not overlap with the building. Instead it should be drawn next to the " -"building. There are some exceptions to this rule, such as schools. Within a " -"school yard you might identify individual buildings using polygons, yet you " -"also might want to create a polygon around the entire school yard. In this " -"case it is fine for the polygons to overlap, but the rule to follow here is " -"to make sure that the buildings are completely inside the landuse polygon." -msgstr "" - -# defca5d0e79246efaf4bf06fbd573800 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:344 -msgid "" -"We all make mistakes, and as you map more you will make less mistakes! Just " -"remember that even if you upload data that contains mistakes, it is simple " -"to fix your mistakes and upload the change again. This is what is great " -"about OSM, you can always make it better!" -msgstr "" - -# 325bb6c4cb5c4ef4b7993a5febc68659 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:351 -msgid "6. Presets standardisation" -msgstr "" - -# 76cc13a2549d44c0928d00fb17bf7d33 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:353 -msgid "" -"OSM is used around the world by speakers of many different languages. Any " -"feature in OSM can have whatever tags users choose. While this provides a " -"lot of flexibility, it is important that users worldwide agree on the same " -"tags to identify the same objects no matter what country they are located in." -msgstr "" - -# 882c2af7cd1b4240ad2ecd92b476246b -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:358 -msgid "" -"For such purposes of standardisation, most tags in OSM are in British " -"English. An extensive list of standardised OSM tags is available on the OSM " -"Wiki `Map Features page `_." -msgstr "" - -# 0abc1430269a4fc189d3d08d0df6cd55 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:362 -msgid "" -"When users enter tags manually in JOSM or another editor, it is common to " -"make spelling or other mistakes, particularly for beginners. For this " -"reason, it is a good idea to use the presets menu, which uses forms that " -"prevent incorrect tags from being entered." -msgstr "" - -# a57ff8c0b6ae4abd8e2a70cc94cf6d93 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:367 -msgid "Using standardised tags aids in:" -msgstr "" - -# a0b1bac3dc874d5fa929cb2878aee756 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:369 -msgid "Assuring data consistency and stability" -msgstr "" - -# 85fb220ea57a45baa7851e1191e35bfd -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:370 -msgid "Easier data search and analysis" -msgstr "" - -# 009cd83e2d854223944ea3c6ecca0e56 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:371 -msgid "Setting benchmarks for improvement" -msgstr "" - -# ebeb0174d8814c1dbb6ed2531911851d -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:372 -msgid "Data validation" -msgstr "" - -# 7b720c6a695b43a6a185d5d636bfd44c -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:373 -msgid "Map rendering on OSM website" -msgstr "" - -# f86dc45f4465481ab5f5b81f215c6b0a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:377 -msgid "7. KeepRight" -msgstr "" - -# d336e45414534b6ea4f45d0be13ce6f5 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:379 -msgid "" -"The KeepRight website is another useful validation tool for OSM. Open your " -"web browser and head to http://keepright.at." -msgstr "" - -# 0dcd50f6bf8c41b0929b8499071f9d48 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:382 -msgid "" -"If needed, switch the site into Indonesian by choosing :guilabel:`id` from " -"the drop-down box in the in the upper right." -msgstr "" - -# e5d44adf208243bbbcf033a6b36fbe45 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:388 -msgid "" -"Click :guilabel:`Data Checks for Asia` to check OSM data in Asia. This will " -"open up a slippy map with errors displayed on it." -msgstr "" - -# d8e20479b5bd4f17afdc4a3e90b7f019 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:391 -msgid "Navigate to your area of interest by using the zoom and pan functions." -msgstr "" - -# 202d594747a2479f97481b58dd085831 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:397 -msgid "" -"The types of errors are listed to the left of the map. Get more details " -"about each error by clicking on the icons which hover above the map." -msgstr "" - -# 518fe215967a46e09177bcea8245347d -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:404 -msgid "" -"When you see an error in your area of interest, the next step is to fix it. " -"Click on the links to one of the editors (JOSM, Potlatch, or iD) to open " -"this data in the editor. Note that to edit in JOSM you must have the JOSM " -"Remote Control Enabled (as described in the :ref:`Tasking Manager section " -"` above)." -msgstr "" - -# 8bdc69670fe24364b28babf41b521a6a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:411 -msgid "" -"We recommend that the editing is done in JOSM, because its editing features " -"are more complete. Note that JOSM must be open (with remote control enabled) " -"in order to connect with the KeepRight website." -msgstr "" - -# 457ef6b2950448599b31bd71b32349d8 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:419 -msgid "" -"Use JOSM (or another editor) to fix the errors that you find on the " -"KeepRight website. After fixing them, return to the site and select :" -"guilabel:`ignore temporarily`. Add a comment and click :guilabel:`save`." -msgstr "" - -# b4e4d9c786d24fefb44da390cbb84760 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:424 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/303-dealing-with-conflicts.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/303-dealing-with-conflicts.po deleted file mode 100644 index f938d5dd..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/303-dealing-with-conflicts.po +++ /dev/null @@ -1,274 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-11-22 22:41+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# e370069a54594060adb9f311000dd150 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:6 -msgid "Module 3: Dealing With Conflicts" -msgstr "" - -# c0779ffdcb6d4d84a0e51ea8c0e4dda2 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# c7fa09aff8f0478c84e049eeb9f66ea6 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:10 -msgid "Identify conflicts" -msgstr "" - -# d9d6c96d1d8041f2b4775aa6a5361aec -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:11 -msgid "Understand why conflicts occur" -msgstr "" - -# 97c92792785e40b89182c56ecaf81202 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:12 -msgid "Solve conflicts" -msgstr "" - -# 93b94a7eef624523a307538a7b132f09 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:14 -msgid "" -"Sometimes you are working in JOSM and when you upload all of your beautiful " -"edits you get a nasty message complaining about a conflict." -msgstr "" - -# bf0c1dc7c9cd4f699395d849f38e119c -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:21 -msgid "" -"What happened is essentially this: You downloaded data, which included a " -"point which we will call Node A. Then while you were editing, another user " -"else also downloaded Node A, changed it, and saved the changes back on " -"OpenStreetMap. Now when you try to upload your version of Node A, it is " -"different from the one saved on OSM. Therefore JOSM doesn’t know which " -"version of Node A should be saved." -msgstr "" - -# be160b8622994157b5d3abc6a62b5d4f -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:30 -msgid "1. Conflicts" -msgstr "" - -# 9c96aff9ea9f436989479bb28d2451ad -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:32 -msgid "" -"Sometimes, JOSM is able to figure out what to do with conflicts on its own, " -"and it will give you a message like this:" -msgstr "" - -# 417c58781286473dbc6b16e8c934a39a -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:38 -msgid "" -"This means that JOSM has automatically decided that items in your local " -"dataset will not be uploaded to the main server because they have already " -"been deleted by another user." -msgstr "" - -# 1837fb3503ac444fa4c5f6f48b3b1b30 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:42 -msgid "" -"In some conflicts, however, there is no easy action for JOSM to take and so " -"it leaves the decision up to the user to determine what to do. This means it " -"is up to you to resolve the conflicts." -msgstr "" - -# 4fd5fa46a97943589b141ba1be1a061c -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:50 -msgid "" -"*This tells you to look at all of your conflicts in Layer 1 in the Dialog " -"List box.*" -msgstr "" - -# 650309a1e9e54ddda1f76ffb737f7c8c -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:56 -msgid "" -"*This window provides you with a warning as to whether you are likely to " -"experience a conflict with your edits. If you check on the server you will " -"be able to fix the editing issues that would arise.*" -msgstr "" - -# 9b5acd01a2964c96aeb920d40c4a3638 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:64 -msgid "" -"*This warning tells you that JOSM failed to delete a node due to it still " -"being referenced in a way. In order to remedy this, the user has to go back " -"into JOSM and resolve the conflict before uploading the data.*" -msgstr "" - -# 8e2f724e215644beac0a02833102f2ea -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:70 -msgid "2. Conflict resolution" -msgstr "" - -# 1e7c7e813a0944049ecfe86e88c410b9 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:72 -msgid "" -"The process of resolving a conflict is simple, although it can appear " -"confusing at first in JOSM. Basically, for every conflict JOSM will present " -"you with two choices - your version of an object and the one that is on the " -"server. You need to choose whether to keep your version, or whether the new " -"version on the server should remain." -msgstr "" - -# b7ba73c59f7c4c2aa54d428c97eab902 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:79 -msgid "" -"You might think, “of course my version is going to be better!”. And maybe " -"you’re right. But think back to our example at the start of this module. " -"Perhaps while you were busy editing, another mapper added a lot of " -"information to one of the nodes in your data set. If you choose your version " -"over their version, you will lose all of that valuable information that they " -"added. Hence you should consider keeping their version, or merging it with " -"your own." -msgstr "" - -# ee683a96148f4ef59f14b15c94a0e6d0 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:88 -msgid "" -"When a conflict window pops up, it is usually best to choose the button :" -"guilabel:`Synchronize ... only`. You may need to do this for more than one " -"object, but it is best to resolve conflicts one at a time." -msgstr "" - -# d129e028f5c546309f2149e6065f22ba -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:96 -msgid "" -"After clicking this button, a pop-up window will appear detailing the " -"conflict. The error message may look complicated, but it is not. You can see " -"what type of conflict you have from the following symbol in the top tab." -msgstr "" - -# f6ca47a5ed694be198f15804eb8ce010 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:105 -msgid "" -"The conflict in our example refers to the properties, such as the location " -"and existence of the object. This is why the coordinates and deleted state " -"are listed." -msgstr "" - -# 76ba5cbe3f22449e94a43eabaad4b143 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:112 -msgid "Types of conflict are:" -msgstr "" - -# d76dbd15732a432db31025cf90505982 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:114 -msgid "**Properties**: Object has been moved (coordinates) or deleted" -msgstr "" - -# 373dc84b56f24e25b73f7f516aa0ebe5 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:115 -msgid "**Tags**: Tags do not match" -msgstr "" - -# abf338d11d3e4b979810764061566518 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:116 -msgid "**Nodes**: There is a differences in the list of nodes in two ways" -msgstr "" - -# 80f7a434324940e2b984e833cfc14922 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:117 -msgid "**Members**: There is a difference in the list of members in a relation" -msgstr "" - -# 5a452b0bd3284d359755a931dfaba7a8 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:119 -msgid "" -"Conflicts only appear with two different edits at a time. If there are three " -"or more conflicts, then a chain of conflicts will pop up. Therefore you have " -"to choose or merge with only two conflicts at a time. You can choose your " -"version, the other version or, at times, merge the two." -msgstr "" - -# e737c410a6d94548a168a4480718b8d4 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:124 -msgid "" -"In our example we do not have the option of merging. Click on the first " -"column, or :guilabel:`My version` if you believe that your edits are " -"correct. Click on :guilabel:`Their version` if you think that the other " -"edits are better." -msgstr "" - -# 64e59aaf49484f11bc45aef585eed8b4 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:133 -msgid "" -"Once you have selected which version you think is best, click :guilabel:" -"`Apply Resolution`." -msgstr "" - -# 77b65b37bb66492aa30d7b92f4a1fa75 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:136 -msgid "You can open the Conflicts panel to see a list of conflicts." -msgstr "" - -# a616307ea6e447c3a4ae8f89d9f759a0 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:141 -msgid "" -"The total number of unresolved conflicts is shown in the header. Select or " -"resolve a conflict by clicking on it. This is useful when you have many " -"conflicts to deal with." -msgstr "" - -# 1ff6a8ebeae44eb78525d34a8f0f05d2 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:148 -msgid "You cannot upload your changes until this list is empty." -msgstr "" - -# 0e74d6da32a34c6d9c9601552ce879db -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:151 -msgid "3. Ways to avoid conflicts" -msgstr "" - -# 795e17f22627456db05ad7b8d747c802 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:154 -msgid "Upload frequently" -msgstr "" - -# 25454c0008a1418590b0185108256bee -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:156 -msgid "" -"To minimise the chance and number of conflicts it is important to upload " -"your edits regularly. Conflicts appear more frequently for those who tend to " -"save the area they are working on in their local computer and wait a while " -"to upload it. It is best to download the area you are working on, edit it " -"and then immediately upload it. The longer the time between downloading data " -"and uploading changes to that data, the more likely it is that someone has " -"edited something in the meantime." -msgstr "" - -# 1d4ce3cfbe0f47e7b1f0c15d9539dc05 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:166 -msgid "Edit in the area you download" -msgstr "" - -# ebc354d5a91d40a1a3abe66487ed66dd -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:168 -msgid "" -"Editing in the specific area you have downloaded minimises the risk of " -"conflict. Make sure you do not edit outside of the area that you have " -"downloaded. You can easily see the areas outside your download area in JOSM, " -"because the background is made up of diagonal lines instead of being solid " -"black." -msgstr "" - -# c7a03ad596eb45c3915a4eefb4e4200d -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:177 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/304-creating-josm-file-presets.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/304-creating-josm-file-presets.po deleted file mode 100644 index ceaa1da5..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/304-creating-josm-file-presets.po +++ /dev/null @@ -1,820 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-11-22 22:41+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 0b36e4ae09614e848f2a20d0bb2048f1 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:6 -msgid "Module 4: Creating JOSM File Presets" -msgstr "" - -# b2b98d04a4ca408086fc9db41cef9db8 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 568c6ff602624fe69877f417b3c8c4c1 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:10 -msgid "Understand tags" -msgstr "" - -# 6e990147680346a4ba71ab0441d9790f -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:11 -msgid "Understand XML" -msgstr "" - -# 52c3a95b25d04d798bd49a082c123c92 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:12 -msgid "Understand keys and values" -msgstr "" - -# 202c3920d0974601a11116ccb643d672 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:13 -msgid "Make presets" -msgstr "" - -# 4eb012d345204a8aabb04a51874cb8ee -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:14 -msgid "Put preset files into JOSM" -msgstr "" - -# 5982f106a90142ecbccf152c74b41185 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:15 -msgid "Apply new presets to an object" -msgstr "" - -# a60c170085174a24b262b3813ebcbbac -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:17 -msgid "" -"By now you probably have a good understanding of how objects are drawn in " -"JOSM, and how to add information to these objects to describe what they are. " -"You add attributes to a point, line or shape by attaching tags to it. By " -"using the JOSM presets menu, you can easily attach the correct tags to an " -"object by finding the type of object you want to create through a menu, and " -"then filling in information in a form. In this module we will review tags " -"and presets once more, and then learn how we can create our own presets " -"menus to use in JOSM." -msgstr "" - -# 9efd6d5c45a04f50b0cc2f321a23872a -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:27 -msgid "1. Tags and presets" -msgstr "" - -# 6be22fa7940e4a18b242ec5386e2c9ee -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:29 -msgid "" -"Remember that after you draw an object on the map in JOSM, you need to " -"attach tags in order to describe what it is, its name and any other " -"attributes. For example when you want to create a clothing shop with the " -"name “Some Clothing Shop”, you need two tags - one to describe the point as " -"a clothing shop, and one to hold the name. In JOSM, the tags are shown in " -"the Properties panel when an object is selected." -msgstr "" - -# bf6130b0da94456ba78e69f6fce69ab7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:40 -msgid "" -"Tags consist of two parts, the **key** and the **value**. The key typically " -"defines the type of information you are attaching, and the value defines the " -"specific object. Here we have two tags, and hence two pairs of keys and " -"values." -msgstr "" - -# 4a3f0832d938482b91431106e1be7d60 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:45 -msgid "**KEY = VALUE**" -msgstr "" - -# ce5a79e2ccd74033a0e8489cd0f88612 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:47 -msgid "**name = Some Clothing Shop**" -msgstr "" - -# 182bc07303a14fd5a0905db80be1962f -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:49 -msgid "**shop = clothes**" -msgstr "" - -# 5ba9fc958ef44baaa3400f9c8492939b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:51 -msgid "" -"When we create a point with these tags, JOSM knows to display the icon like " -"this:" -msgstr "" - -# 5c949b22e71648c2a9849c2dd7d2a31b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:57 -msgid "" -"And when we look at this on the `OpenStreetMap `_ " -"website, the object looks like this:" -msgstr "" - -# 3595f7a8477e49cb9b7d1da84f9ed234 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:63 -msgid "" -"The reason this works is because we’ve applied the appropriate **tags**." -msgstr "" - -# 5b1530e5ce5f43ec82774932bf374e63 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:65 -msgid "" -"Because OSM is so open, anybody can add any tags they want to anything. But " -"what happens when mappers in England disagree with mappers in Japan about " -"the best way to tag something? For example, it is important that all schools " -"have the same tag describing it as a school. If some people tag schools as " -"**amenity=school** but others tag them as **education=school**, it is a " -"problem. Hence, people must agree on how to tag places." -msgstr "" - -# 076067b922e84a4ea019241de4f59ce9 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:75 -msgid "" -"OSM has been around for many years now, so there is an accepted standard for " -"how to identify most types of locations, and those are listed on the Map " -"Features page on the OSM Wiki." -msgstr "" - -# cca5828fdd97426ca4141aa682c58839 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:79 -msgid "http://wiki.openstreetmap.org/wiki/Map_Features" -msgstr "" - -# bb403e520873426493e3bb9365d3b96c -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:81 -msgid "" -"This web page has grown longer and longer over the years as people have " -"sought to map more and more things and have needed more tags to do so. It is " -"impossible to remember all of these tags, and quite a hassle to look them up " -"every time you need them. Hence, JOSM has a Presets menu which makes it much " -"easier to apply the correct tags to an object. With the Presets menu, we can " -"easily find the entry for school, enter information into a form and not have " -"to worry about whether the correct tag is **amenity=school** or " -"**education=school** or something else entirely." -msgstr "" - -# 33271ccb1f5f415f886e1d40e887eaca -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:95 -msgid "" -"Notice that when you add attributes using the presets menu, the correct tags " -"are automatically added in the Properties menu on the right." -msgstr "" - -# d1cbd8614b3b4af9ac71718531c269d7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:98 -msgid "" -"JOSM comes with most of the presets that you will need already loaded, but " -"sometimes you may want to add your own presets to create tags for the " -"specific type of data you are collecting. The remainder of this module will " -"explain how to create a custom Presets menu." -msgstr "" - -# 836d7cd96ddb415d8294c2992f6216db -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:104 -msgid "2. Introduction to XML" -msgstr "" - -# f7e5050d3b484807a821dfcc2c0c2c6a -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:106 -msgid "" -"In order to create our own Presets menu, we first need to understand a " -"language called XML. XML, which stands for *Extensible Mark-up Language*, is " -"a language similar to HTML. The key difference is that XML is designed to " -"carry data, not display it. Many applications on the internet use XML to " -"transmit data, including OSM. XML uses **elements**, and each element can " -"contain child elements inside it. For example, let’s imagine that we want to " -"create an XML file that contains data about a restaurant menu. We must " -"create a **root element** to contain all the data about our menu. Our root " -"element will have an opening and a closing tag, like this: ::" -msgstr "" - -# 86f76608b1934a81a81193f381563c58 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:125 -msgid "" -"Information is contained inside an element, and within each element there " -"can be more elements. ::" -msgstr "" - -# a3ea68b34e5b4fb39bb33d475d170efc -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:140 -msgid "" -"In this example we have placed two **** elements within our **** " -"element to describe two different items that are contained in the menu. Each " -"item contains two more elements in them, **** and ****. " -"Notice also how we have written name=”Hamburger” inside the opening " -"**** tag. This is called an attribute, and adds information about the " -"element." -msgstr "" - -# 9b0a80959821464fad4cf7d074ff0556 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:148 -msgid "XML Terminology" -msgstr "" - -# f56e9a46cf2b4c6e9b19e88a0482a52f -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:150 -msgid "" -"**root element:** the outermost element of an XML document, which describes " -"what is contained" -msgstr "" - -# 101bc52ad13941689fb6aebdb9e028ad -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:152 -msgid "" -"**element:** any XML object, contained by opening and closing tags, such as " -"**...data...**" -msgstr "" - -# 08396492ef7b423e8e243796a3fde5e9 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:154 -msgid "" -"**tag:** something contained in brackets, such as ****. **** is " -"the opening tag of an element, and **** is the closing tag." -msgstr "" - -# 140562115e0b460e93cdf6b0b1b7219f -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:156 -msgid "" -"**attribute:** a piece of information contained inside a tag, such as " -"**name=“Hamburger”**" -msgstr "" - -# 9c53e69dfc4d4ac1beaaa53b380f9cb5 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:159 -msgid "" -"Using XML to hold and transmit data is great because it is easy to " -"understand for computers. To provide one more example, this is what the XML " -"might look like for the point we created in JOSM previously. ::" -msgstr "" - -# 1cabd59735374a5d8a7380d6782cb69e -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:172 -msgid "" -"This XML has a root element **** which indicates that OSM data is " -"contained inside. Then it has one **** element which is the OSM way of " -"describing a **point**. The node has numerous attributes, including a unique " -"id number, the coordinates of the point, the user who created the point, and " -"some additional information which we will not discuss right now. Between the " -"opening **** tag and the closing **** tag there are two more " -"elements of type ****. Each **** has an attribute k and an " -"attribute v. These are the keys and values that we added in JOSM. Notice " -"that the **** elements don’t have a closing ****. This is because " -"they don’t have any other elements contained within them, but instead have a " -"forward slash indicating that it does not require a closing tag. ****" -msgstr "" - -# dc6a160e42814a7dbcb234e7e3386d59 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:189 -msgid "3. JOSM presets files" -msgstr "" - -# ae11b3d391f041d2a458eeb622a42843 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:191 -msgid "" -"As you’ve already discovered, JOSM comes pre-loaded with a presets menu that " -"includes most common types of geographic options. But sometimes you want to " -"add additional presets for specific information that you want to collect. " -"You can create your own presets menu by writing it in XML, and then loading " -"it in JOSM. First, let’s look at how we can load additional presets menus " -"into JOSM." -msgstr "" - -# b593e8cc96344acdbf5f009871035163 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:199 -msgid "" -"Open JOSM and open the Preferences menu by going to :menuselection:`Edit ‣ " -"Preferences`." -msgstr "" - -# 685552b6c39347e2925dd0dbf52188c0 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:202 -msgid "Click on the third icon from the top which looks like this:" -msgstr "" - -# 0a4bc74cc1914e338c4d16bade2e03f8 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:207 -msgid "Click on the third tab labelled :guilabel:`Tagging Presets`." -msgstr "" - -# 3aad03c92ab84c7baafa465b5a653385 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:209 -msgid "" -"Select :guilabel:`Buildings by Kate Chapman` and click on the right arrow " -"button to add it to Active presets." -msgstr "" - -# 3def0223ef4448a3a2a8eabd7a7fb577 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:215 -msgid "Click :guilabel:`OK`." -msgstr "" - -# 9470e0d9f3664053839e7ddb8dab033d -# 37214623a5f44aacb3c42b02aaca8bde -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:217 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:494 -msgid "Restart JOSM." -msgstr "" - -# 86a616c94a8b4b2492534d3c35b94331 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:219 -msgid "Create a new layer by going to :menuselection:`File ‣ New Layer`." -msgstr "" - -# ef7dccdc40be400dbdc7dd74db351996 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:221 -msgid "Create a point and make sure it is selected." -msgstr "" - -# 645023634c864a4cb87bb268af9353a8 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:223 -msgid "" -"Go to the Presets menu. You should now see the presets that you added at the " -"bottom." -msgstr "" - -# d0b351174219427385edc6789ae7227e -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:229 -msgid "" -"Click on :menuselection:`Building` to see the the building presets form." -msgstr "" - -# 4062c0c8a02e4f0ca1afb8075faa679a -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:234 -msgid "" -"When we added these new presets through the preferences menu, what we were " -"doing is adding an XML file that describes how the new menu should behave. " -"In the next sections, we will learn how to create our own XML presets file " -"that we can load into JOSM." -msgstr "" - -# 3a2a3602ffdc4bf18ebcfc38d87c37dc -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:240 -msgid "4. A sample presets file" -msgstr "" - -# 70430e5fbfab4f55874dad49ed78503b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:242 -msgid "" -"To understand how a presets file is written, let’s first look at the XML for " -"one of the pre-loaded presets in JOSM. When you go to the presets menu and " -"select :menuselection:`Facilities ‣ Culture ‣ Place of Worship` you will see " -"a form like this:" -msgstr "" - -# 9e8f285e3a3e4177bd8c4bc31777e293 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:251 -msgid "The XML for this form looks like this: ::" -msgstr "" - -# c2c257ba3a9c41ccb9e1647b61d2d0b9 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:265 -msgid "" -"This may look complex, but it is not as difficult as it may seem. Let’s walk " -"through it line by line." -msgstr "" - -# 92bf7888cb014dc8aefd3f17e1649286 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:268 -msgid "" -"The first line is the opening tag of our root element ****. There are " -"several attributes describing the element." -msgstr "" - -# f0d3ce60a74842b7b483c9c522fccb2d -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:272 -msgid "name=\"Place of Worship\"" -msgstr "" - -# 0cbb9c11c51448caaef983afdceae27d -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:272 -msgid "The name of what you are creating." -msgstr "" - -# eb2bfffa62a840e6bffd051f0db9500d -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:274 -msgid "icon=\"presets/church.*\"" -msgstr "" - -# 52aac380334b481cb9170084f4e8523a -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:274 -msgid "" -"The icon of the object. PNGs are the most effective in OSM since they are " -"compressed low-colour graphics with transparent backgrounds." -msgstr "" - -# 6088916f4749442383996766e21f4016 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:277 -msgid "type=\"node,closedway,relation\"" -msgstr "" - -# edd6554f9ec14f2788b59a139e533295 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:277 -msgid "" -"The types of object that this preset can be applied to. Node means it can be " -"applied on a point, way means it can be applied to a line, closedway means " -"it can be applied to a shape, and relation means it can be applied to a " -"relation, which is a type of OSM object we have not discussed. Notice that " -"way is not an option here, because a place of worship cannot be a line - it " -"must be a point or a shape." -msgstr "" - -# fbc14b25e8334f8fbadd240dc1b75f75 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:285 -msgid "" -"The second line provides a link to the OSM wiki page for this type of " -"location." -msgstr "" - -# a2d30e01ef924b3a8fce89e95624074d -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:288 -msgid "" -"****" -msgstr "" - -# b0e14b7f16414ea0bbfccca5e8f35a26 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:290 -msgid "" -"The third line has the tag **" -msgstr "" - -# e0aa900ecbf44d22a4ee930688dd70dc -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:323 -msgid "5. Creating your own presets file" -msgstr "" - -# 73edaf1e0d3c49d3aefccd4bb27b420b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:325 -msgid "" -"Now follow along as we create our own presets file. We will create an " -"example presets menu which will allow us to tag buildings or points " -"according to the type of utilities access that they have available. For " -"this, let’s invent some new tags:" -msgstr "" - -# 8b0972042cff4e84a645826e566b1ad8 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:331 -msgid "Key" -msgstr "" - -# 5bc383ab7436447eb29f915d161f7025 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:331 -msgid "Possible Value" -msgstr "" - -# b087623bd8874f2fb1aa0eb12375a0f3 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:333 -msgid "utility:water" -msgstr "" - -# 61d1ce6181a1420d83b34d75786d140f -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:333 -msgid "well, municipal, yes, no" -msgstr "" - -# 552b620c47424095bfcb0391eeaab97b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:333 -msgid "" -"Does the household have access to water? well indicates it has access to " -"well water. municipal indicates it has pipes running to it. If we want to be " -"less descriptive, we can select yes or no to indicate if the building has " -"water access" -msgstr "" - -# 20c25c346c7e47c19323f2284a626a23 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:340 -msgid "utility:electricity" -msgstr "" - -# a655b81f771140a0a098091f1c2265f1 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:340 -msgid "yes, no" -msgstr "" - -# f9f855033ea74a0ead2eb11a79f7cd52 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:340 -msgid "Does the household have electrical access?" -msgstr "" - -# 666fd202b2794bfaa204145e10c313e5 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:342 -msgid "utility:phone" -msgstr "" - -# 3fecb8949c584297881ac9da58fabdc8 -# ad3d5cf8bbec4f03985f5f3713dd4f6d -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:342 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:348 -msgid "landline, mobile, yes, no" -msgstr "" - -# c24801f6a6da4d319a235babfc71bb49 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:342 -msgid "" -"Does the household have phone access? landline indicates that there is a " -"hard phone line in the house. mobile indicates that the household has a " -"mobile phone. If we want to be less descriptive, we can use yes or no" -msgstr "" - -# b0ff29916f5a4174b9e4490b2759f783 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:348 -msgid "utility:internet" -msgstr "" - -# e46cf3fbb89d43fba5ee6cbc92685a51 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:348 -msgid "" -"Same values as for phone, this will indicate if the household has internet " -"access" -msgstr "" - -# 2081220b298e4d13a2fd4959784a1d5d -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:352 -msgid "" -"When the preset we create is selected, we will also automatically add the " -"tag **building=yes**, and we will create a tag with the key name that the " -"user can fill in with using a text box." -msgstr "" - -# bd065e2ebec64f8995881ff0a73f3e38 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:356 -msgid "" -"Now look at the possible tags we have described in the table above. What is " -"the best way to represent each of these on the form? For name, we want to " -"create a text box, because the user can fill in any name that they want for " -"this tag." -msgstr "" - -# 46012e9f75ba46e4b2fca5c493175595 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:361 -msgid "" -"For **utility:water**, **utility:phone**, and **utility:internet**, there " -"are four possible values that the user can select from on our form, so the " -"best way to add this is with a combo box - that is, a drop-down menu where " -"the user can select one of the options. The tag **utility:electrical** only " -"has two possible values, yes or no, so the best way to show this on our form " -"is with a checkbox, although we could use a drop-down box if we wanted as " -"well. When we are finished our form should look like this:" -msgstr "" - -# 45155fa5a97549e6a9398d84756ab77c -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:373 -msgid "" -"Open a text editor and follow along as we create the XML for this preset. A " -"simple and common editor to use on Windows is called Notepad. DO NOT use a " -"word processing program like Microsoft Word." -msgstr "" - -# d92247a45c5645acb7206a5c6b7fba77 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:380 -msgid "" -"First, we need to create a root element in our XML so that JOSM knows it is " -"a presets file." -msgstr "" - -# 308082179a864280a89279aa42f6a5a7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:386 -msgid "" -"Next let’s create an element called . This is not actually necessary " -"because we are only creating one preset, but it will demonstrate how we can " -"create submenus with many different options on our presets menu. Don’t " -"forget to add the closing tags **** and **** to your " -"elements." -msgstr "" - -# 18a0b9c04253421196cc79aff96f52d3 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:396 -msgid "" -"Now we can create an item on our menu. We want to create an element " -"inside of the group element. Add the following text:" -msgstr "" - -# 85331b795fb44a11bca37fe6174bdd3f -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:406 -msgid "" -"Inside the **** element we will add the text box, combo boxes and " -"check box that we want on our form. Add the following inside your **** " -"element:" -msgstr "" - -# 2b54442eae8348d8a066512da1c2b4f4 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:421 -msgid "When you are finished your file will look like this:" -msgstr "" - -# 05d2ec0c2a92426aae2b1abe7543eaba -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:425 -msgid "" -"Much of this is similar to what you saw previously. Let’s analyse it. Inside " -"the **** element we have created six more elements:" -msgstr "" - -# dc5144ec380742bc9f7f8cbba027c83b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:429 -msgid "" -msgstr "" - -# d5a726f70bff4e6faf341af1ff0f376b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:430 -msgid "" -msgstr "" - -# 8c3198c47cdc467794015456960574d9 -# db03c1ceeb904d9abff9547ff78b10e1 -# 429f719860a5464a8f8fab28935adfaa -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:431 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:433 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:434 -msgid "" -msgstr "" - -# 4fc17435cbef4654b043375581900b1c -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:432 -msgid "" -msgstr "" - -# 08321451516647378f597d4b383671ed -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:436 -msgid "" -"Can you guess what each of these elements do? They create different items on " -"our presets form in JOSM. The first line, ****, does not display anything on our form, but tells JOSM to " -"automatically apply the tag **building=yes** to an object when this preset " -"is selected." -msgstr "" - -# 2aa5efa36a5247db991ee63294d4c4ce -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:442 -msgid "" -"The second line, ****, creates a text field with the key " -"name, as we saw when we looked at the presets XML in the previous section." -msgstr "" - -# 453e60018ae84ee38e783de71a60a94b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:446 -msgid "" -"We have three **** elements and each element has several attributes. " -"key indicates what key should be created for the tag. Text indicates what " -"text should be displayed on our form. Values are the possible values that " -"the user can select in the drop-down box. And we’ve added something new - " -"the attribute **display_values**, which let’s us show different text in the " -"drop-down boxes than the values that will be created. This is useful if we " -"want the form to be more descriptive about the options a user can select, or " -"if we want the display values to be in a different language from English." -msgstr "" - -# 4318442da0694a23ace9d33905246587 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:457 -msgid "" -"Lastly, we’ve added one new element, a **checkbox**. The code for this is " -"simple, ****. " -"This creates a check box on our form. When it is selected, JOSM will add a " -"tag to our object that says **utility:electrical=yes**." -msgstr "" - -# d6580bd13daa4981a7011532d2fe68c4 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:463 -msgid "" -"Finally, let’s save the XML file so that we can load it into JOSM. In " -"Notepad, go to :menuselection:`File ‣ Save`." -msgstr "" - -# df4c10006c2c4952a98aac9779a71014 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:466 -msgid "Type in :kbd:`household_access.xml` as the filename." -msgstr "" - -# 85b6fdeeef36439688ac384c5c873095 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:468 -msgid "" -"In the box that says :guilabel:`Save as type:` be sure to select :guilabel:" -"`All Files`, because we don’t want to save the file as a text document, but " -"rather as an XML document." -msgstr "" - -# 57cf6f41b711414b8c76c7af5d985951 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:472 -msgid "Click :guilabel:`Save`." -msgstr "" - -# 613124cf0d1c4b999bda66a38ee4a9c7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:476 -msgid "6. Try It!" -msgstr "" - -# 85c4b4469d4844378a9a1a708917de86 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:478 -msgid "Now let’s open our presets file in JOSM and see how it looks!" -msgstr "" - -# a0847584bcad48008d62cbac4183d112 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:480 -msgid "" -"Open the Preferences in JOSM and go to :guilabel:`Tagging Presets`, as you " -"did previously." -msgstr "" - -# 36b1f9af68e04ce194092fcc2271b904 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:483 -msgid "" -"On the right side next to Active presets click on the :guilabel:`+` button." -msgstr "" - -# 8146a7f2407b4129ae798902447301b7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:488 -msgid "Type :kbd:`Household Presets` into the :guilabel:`Name` field." -msgstr "" - -# 99c80bbcb5dd43df9f1de2c111e249f7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:490 -msgid "Next to URL / File, open the xml file that you just created." -msgstr "" - -# 28a0b84e02bf48feb072dad8145c4052 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:492 -msgid "" -"Click :guilabel:`OK`, and :guilabel:`OK` again to save your preferences." -msgstr "" - -# 3759ae813db94379ae2a95e43d5142e7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:496 -msgid "Create a new layer and add a point." -msgstr "" - -# 983812e495c244869503e48bb2de6839 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:498 -msgid "Go to the Presets menu. You should see the menu that you just created!" -msgstr "" - -# d3550f27b2b849d6a9953d4fdcad9064 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:504 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/305-using-private-data-store.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/305-using-private-data-store.po deleted file mode 100644 index 8bf0bfe5..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/305-using-private-data-store.po +++ /dev/null @@ -1,354 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:37+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 4ce32e7093494780aed1b91a3ce309ac -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:6 -msgid "Module 5: Using the Separate Data Store" -msgstr "" - -# 3176d448c93848a49acbda089645ddac -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# ad37363240464e3687fc4defb2a2c049 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:10 -msgid "Understand the functions of the Separate Data Store (SDS)" -msgstr "" - -# 5314a0f67ab0452d907cd51dd8beaf5e -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:11 -msgid "Understand what data should be kept publicly and what should be private" -msgstr "" - -# 8fd094f3152a43d5b781d70ecf8133dc -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:12 -msgid "Install SDS plugin in JOSM" -msgstr "" - -# 88570e8a3d5e4b8284e3386bb61e3d83 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:13 -msgid "Use SDS presets" -msgstr "" - -# 1d7ceb745cf44bfe9137343cab51d982 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:14 -msgid "Use SDS plugin for selecting public and private data" -msgstr "" - -# dcd75f39f0004c55905c59d6b97a28d3 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:15 -msgid "Access online datastore" -msgstr "" - -# 358be8fee6b84b4184511edb57b6542c -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:17 -msgid "" -"OpenStreetMap data is open and available to anyone who would like to access " -"it. However, there may be times when you want to use OSM to collect data, " -"but you would like to keep some attributes stored in a private database. For " -"this purpose, HOT has developed a tool for JOSM known as the Separate Data " -"Store. The SDS allows you to create maps and add data into JOSM the same as " -"always, but when you upload your edits, public data is saved to the OSM " -"database and private data is saved separately to your private data server." -msgstr "" - -# 82fde13ca0e34518b549856f6fe21d25 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:30 -msgid "" -"This module is designed for people who desire to store private geospatial " -"information, such as household income, personal health care data or the " -"location of gold mines." -msgstr "" - -# 78f45810be8d4062bc977f996baf8a26 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:34 -msgid "" -"For liability reasons, HOT does not provide the SDS service itself, but the " -"software is available for installation on a private server. In this module " -"we will utilise the SDS development server to demonstrate its functionality." -msgstr "" - -# 1a420fc939df4a699c84c375d37a46d9 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:38 -msgid "" -"If you are interested to set up your own SDS server, please contact us (team." -"id[at]hotosm.org)." -msgstr "" - -# e866ebf3931e4194aa4e047dd934d70f -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:43 -msgid "1. Installing the SDS plugin" -msgstr "" - -# 25b52782a1e8414c8d913731d5512a5b -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:45 -msgid "" -"This plug-in allows private data to be diverted into the private data store, " -"rather than being saved in the OSM database. A recent version of JOSM is " -"required for the SDS plugin to run. (If you do not have a recent version of " -"JOSM, download and install it from http://josm.openstreetmap.de/.)." -msgstr "" - -# 7e15e8df359f4b9b923172e2a58bef13 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:51 -msgid "Open the preferences menu in JOSM and go to the plugins tab." -msgstr "" - -# c36eae865ac64a37b2167b8e718bb231 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:56 -msgid "" -"Click :guilabel:`Download List` to ensure that all available plugins are " -"listed." -msgstr "" - -# 8d6fd3f88cde4117888522475b6d9185 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:59 -msgid "In the search box, type :kbd:`sds`." -msgstr "" - -# 4f0b6477fe954d618df308193be5b9eb -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:64 -msgid "" -"Check the box next to the plugin to activate it. Click :guilabel:`OK` to " -"download and install. You will need to restart JOSM." -msgstr "" - -# c14d5010d1ac465a841db13f292ba2ed -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:68 -msgid "2. Using the plugin" -msgstr "" - -# 724306ca76e9477fb133da4f0acfef88 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:70 -msgid "" -"Editing the map works just the same as before. The only difference is that " -"when you upload changes, some tags will be automatically saved on the " -"private datastore, and the rest will be saved directly onto OSM." -msgstr "" - -# 19d1c8336a3241bbb455e905f64f256f -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:75 -msgid "" -"After installing the plugin, you need to edit the settings so that private " -"data is directed to the correct SDS server. In this module we will use a " -"demo version of the SDS, but you may also configure the plugin to save " -"private data on your custom SDS server." -msgstr "" - -# f5ae15ada9624ad8aacf0a57bb105605 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:80 -msgid "Go to :menuselection:`SDS ‣ Preferences...`." -msgstr "" - -# 88ec2f4960c8450b9e9faabdc6b574f3 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:82 -msgid "" -"Edit the :guilabel:`SDS server URL` so that it points to :kbd:`http://sds." -"dev.hotosm.org/`." -msgstr "" - -# 07b1546b829848dfa79e65df1f14948f -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:85 -msgid "" -"We will use a sample account to try out the SDS. Enter the following for the " -"username and password:" -msgstr "" - -# b8c6bd38ebc543dfbe372399ebbe08ae -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:88 -msgid "SDS username: test_sds@hotosm.org" -msgstr "" - -# eeafb87ba84d46cd83c431c1eb07f918 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:89 -msgid "SDS password: CyYi3VeuHk" -msgstr "" - -# a42663e2360b4d6bad79237599394a36 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:94 -msgid "" -"Click :guilabel:`Test credentials now`. If it is set up correctly, you " -"should receive a message which tells you the connection is successful." -msgstr "" - -# e5bd698b642b4d0c980de81ebcb134e5 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:99 -msgid "3. How it works" -msgstr "" - -# 93e4cd9435cb4871896f3f117d723637 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:101 -msgid "" -"How does the plugin know which data you want to store on OSM and which data " -"you want to store publicly? Quite simply, it knows because of the tags. " -"Normal tags go to OSM as always, but you can use tags with a special prefix " -"that will be sent to the private datastore." -msgstr "" - -# fcccebb50fb14d009568a144bd4b01a1 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:107 -msgid "" -"By default, any tag that has the prefix **hot:** will go to the private " -"datastore. This can be changed in the SDS preferences menu:" -msgstr "" - -# c69c48fbcca14eac9b9b2142fd2aa1f7 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:113 -msgid "" -"When you create or edit an object on the map, you can apply tags like this:" -msgstr "" - -# e68fb141bde74c7eb32a26905f1e64ed -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:118 -msgid "" -"In this case, the first two tags will be saved on OSM. The third tag, " -"because it has the prefix **hot:**, will be saved on the private datastore." -msgstr "" - -# ab3fa3f86ea24af0b5158a1a1135eb97 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:122 -msgid "" -"You will most likely collaborate with others when using a private datastore, " -"so you will have a standard list of tags to use for the specific data you " -"are collecting. These tags can then be made into a presets menu, which will " -"provide an easy-to-use form for adding both public and private data." -msgstr "" - -# 74c3434196af40f2837ad8bd9c4c2ad2 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:130 -msgid "4. Accessing the datastore online" -msgstr "" - -# 1e9004fa9c2c4ae1b3c82a4de634c699 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:132 -msgid "" -"You can access the SDS online with your username and password. To visit the " -"example SDS, open your browser and go to http://sds.dev.hotosm.org/." -msgstr "" - -# 827645357ae3457bb0710b2870d4f4bd -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:138 -msgid "" -"There are two types of SDS users. Admin users can add new projects or users " -"onto the SDS. Personal users are regular users who are part of a project " -"team which is using the SDS." -msgstr "" - -# cec5e2862b5f41a9bf316007232eb384 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:145 -msgid "" -"Our sample account is a personal account, not an admin, but we can see the " -"online platform where our private data is kept." -msgstr "" - -# 08514f3237694e379c39bbd5f3ebb0be -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:148 -msgid "Let's see what the private data looks like online." -msgstr "" - -# 7161c39c380d46b795b93e5385981afb -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:150 -msgid "Click on :guilabel:`Tag search`." -msgstr "" - -# 5270162a5b4c485d9edc873b9caa8e5e -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:152 -msgid "In the text box, type :kbd:`hot` and click :guilabel:`search`." -msgstr "" - -# c13e424f54814fa0bc965d43ee2924a9 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:154 -msgid "" -"You should see at least one search result. Click on the eyeball button next " -"to it to see complete information." -msgstr "" - -# 57c5412676dc4998b8fb3e7bb1c75412 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:160 -msgid "" -"We can see all the information about this object, both the public attributes " -"from OSM and the private attributes kept in the SDS." -msgstr "" - -# 2175bea6665d4cbb9930ce70f0ebd656 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:166 -msgid "" -"Click on :guilabel:`Expert View` to see the actual tags that are used with " -"this object. Look at :guilabel:`OSM Properties` to see the tags that are " -"saved publicly on OSM." -msgstr "" - -# 53565280ac9c40caad25d98f02995189 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:171 -msgid "5. Common questions" -msgstr "" - -# 9055b2aa37e845e7a3671dda33f9518e -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:174 -msgid "How do we save our data?" -msgstr "" - -# d0679e8e6f0c4d8583cc1fd78ecbab90 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:176 -msgid "" -"The steps are exactly the same as uploading changes to OSM. The only " -"difference is that tags with the prefix you select (such as **hot:**) will " -"be diverted to a private datastore." -msgstr "" - -# 9568dcb7f53a4cb6b3ae4011d71d093d -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:181 -msgid "How many users can use the same account? How can we add users?" -msgstr "" - -# 3cc95cdacc1142e699c15a13ff83277f -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:183 -msgid "" -"There is no limit for user accounts. When you set up your own SDS, you will " -"have an Admin account and can add as many users as you need." -msgstr "" - -# 618fc72fd63a49158031ee5f545f0d69 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:187 -msgid "How much data can we save in our private server?" -msgstr "" - -# 5326a4f8c56b4170a4c4552a71ce4e33 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:189 -msgid "A lot! Basically this depends on the size of your server." -msgstr "" - -# 3fb72e05f40f47e69d1f644142c2ae0b -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:192 -msgid "Is there an easy way to search the private data?" -msgstr "" - -# 92ec3081391e4fc9b7d77a68ef0d1167 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:194 -msgid "" -"After you sign in to the SDS website you are able to perform a tag search, " -"as we have done in this module." -msgstr "" - -# f62a125f21764b08a2fcabcc723c087b -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:198 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/306-editing-wiki-osm.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/306-editing-wiki-osm.po deleted file mode 100644 index cd37595d..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/306-editing-wiki-osm.po +++ /dev/null @@ -1,1056 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:37+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# e3db1c947d6d4a059c441e178baaa0ac -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:6 -msgid "Module 6: Editing the OpenStreetMap Wiki" -msgstr "" - -# 1cf28bcab25c4c838a0dd92c951a656a -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 295c7ed6f029495eb60987c3ea48a5c0 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:10 -msgid "Make an account on the OpenStreetMap wiki" -msgstr "" - -# e699823bc42540169371c60dd56a1528 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:11 -msgid "Understand conventions and rules in developing a wiki page" -msgstr "" - -# e36a008baccc4b59b11a699c71ed51cf -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:12 -msgid "Edit the wiki" -msgstr "" - -# c0575969226840399358eba61d243b30 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:13 -msgid "Upload files and images" -msgstr "" - -# a4780a43700142b9ac513cd569f46741 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:14 -msgid "Translate and revise wiki" -msgstr "" - -# 33ecdbcc42b9461aaa040aee37bf62ea -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:16 -msgid "" -"OpenStreetMap is based around a community of mappers working together. " -"Because of this it is necessary to have a way to communicate with each " -"other, whether it be to organise social mapping events, to discuss different " -"projects related to OSM or to create standards for mapping processes. The " -"main avenue for mappers to do this is through the OSM wiki, a website where " -"users can create different web pages about different topics and in different " -"languages. To see the OSM wiki, visit http://wiki.openstreetmap.org" -msgstr "" - -# a691539e2b0f4c27b4120e639a1ddc21 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:28 -msgid "1. OSM wiki" -msgstr "" - -# 6f0541e758254963816183211183c7ce -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:30 -msgid "" -"A wiki is a website where any user can add pages and edit existing pages. It " -"is based on the same principle as OSM. The only difference is that with OSM " -"users are editing maps, while wiki users are editing text. The most famous " -"wiki is Wikipedia (http://www.wikipedia.org), an online encyclopedia that " -"covers almost every topic imaginable." -msgstr "" - -# 998df35268cd4d49bc5c1d51bc6f4756 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:36 -msgid "" -"The OSM wiki contains information about everything related to OSM. When " -"someone is working on a project that uses OSM, they create a wiki page so " -"that other people can read about their project. The wiki contains help for " -"users wanting to learn more about OSM, for common standards on how to make " -"maps and on how to tag objects on the map, as well as many other things. You " -"have already seen at least one of the OSM wiki pages, which describes all of " -"the most common features that you can add to the map, and how they are " -"commonly tagged. This is the Map Features page: http://wiki.openstreetmap." -"org/wiki/Map_Features" -msgstr "" - -# a8775b0be711460bb32857717af16c70 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:47 -msgid "" -"In this module we will learn how to add and edit pages on the OSM wiki. We " -"will learn the guidelines for contributing, the special markup language for " -"creating a wiki page, and helpful ways for improving the wiki, such as " -"translating important pages." -msgstr "" - -# c5225766c8c04dd9ad9dc9f36bad4e9b -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:53 -msgid "2. Signing up" -msgstr "" - -# 53afe3a82d554fff8443e04ad0036aa6 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:58 -msgid "" -"Go to http://wiki.openstreetmap.org to see the main wiki page. You’ll see a " -"lot of things here, and many links to other pages on the wiki. In the left " -"column are links to some of the main pages. At the top of the page are a " -"list of all the languages in which you can view this page. If it’s " -"available, you can switch the page to your language. Try exploring some of " -"the links on the page to what kind of information is available on the wiki." -msgstr "" - -# b6810418aa93436181af5e07881d1480 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:67 -msgid "" -"It is not necessary to have an account in order to view the OSM wiki, but " -"you will need to create an account if you want to edit or add pages. Note " -"that this is not the same as your OSM account. You must create a new " -"account, although you can use the same name on the wiki as you did when " -"signing up for OSM." -msgstr "" - -# 5ef11ff26ca54ceda94fae638b5332ae -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:73 -msgid "" -"To create a new account, click on :guilabel:`Create account` in the upper " -"right corner of the website. If you already have an account click :guilabel:" -"`Log in` to sign in to the website." -msgstr "" - -# c7314fc08f5444aca1902161b00e4ac2 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:80 -msgid "" -"Fill in the form with the username you want to create, your password twice, " -"your email address, and your real name. In the CAPTCHA box at the top you " -"need to type the words that are shown in the box. This is a security " -"prevention to ensure that you are human, and not a computer." -msgstr "" - -# c47386f561b94f3d9a5a9f65fe784ce7 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:90 -msgid "Click :guilabel:`Create your account`." -msgstr "" - -# 24c90fb245974ac080df63bffa34d420 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:92 -msgid "" -"You will be automatically logged in, and your username and other links will " -"appear in the upper right corner of the website." -msgstr "" - -# b663332fe0044c4990826a037fbf22cb -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:99 -msgid "3. Editing" -msgstr "" - -# bd7818b99a3b443db27c6eabb0eb16ac -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:101 -msgid "" -"Let’s start out by editing our user page. Every user has a page on the wiki. " -"These pages are commonly used to provide information about yourself, your " -"location, for communication between users and for creating test pages and " -"drafts." -msgstr "" - -# 6a5b2a0ae39d4d3d8f7e35f29e74eb12 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:106 -msgid "" -"This is a great place to start learning the basics of editing a wiki page." -msgstr "" - -# 0b5637832ed14f97bde36cb5fba0c2e2 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:108 -msgid "" -"Go to your user page by clicking on your username in the upper right corner. " -"The user in our example is “MapJeff”. Yours will be the username you signed " -"up with." -msgstr "" - -# 41d508263ec84fc58e22c26a126342d2 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:115 -msgid "" -"Right now the page is empty. Click on :guilabel:`edit this page` to add " -"something to it." -msgstr "" - -# 6d7443370cff4356929466dc74028024 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:118 -msgid "" -"We can type anything into the editor to add information to the page. For " -"example, let’s add some basic information and a description. Add information " -"about yourself. Here is an example:" -msgstr "" - -# a4562c8a076a46db9db7df5147957f62 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:125 -msgid "" -"When you have added some text, enter a summary of your changes in the box " -"next to :guilabel:`Summary` and click :guilabel:`Save Page`. The page will " -"look something like this:" -msgstr "" - -# 439eff45649f4266987ba89e456b04ef -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:132 -msgid "" -"This is great because we have successfully saved our text to the page, but " -"it is no good because it not formatted in a good way. In order to make it " -"look nice, we need to learn some of the basic wiki formatting techniques. " -"Click :guilabel:`Edit` at the top of the page, and let’s make some more " -"changes to our page." -msgstr "" - -# 128b76a68f84450da60cda4119feb01b -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:142 -msgid "" -"If you understood the previous module on XML, you will remember that we used " -"**elements** which have opening tags and closing tags. We will do something " -"similar on the wiki, using special characters to surround the text we want " -"to appear a certain way." -msgstr "" - -# 7ae897b759e44d96a62664709e421792 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:147 -msgid "" -"The wiki does not automatically put new lines in unless we ask it to, so we " -"need to put the tag :kbd:`
` at the end of each of our lines in the first " -"section. This will cause a line break to occur." -msgstr "" - -# 75d1307ba13b49b0b250cc9323dc45a0 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:151 -msgid "" -"Then, we want the words “About Me” to appear highlighted since it is the " -"heading of a section. To do this we can surround it like this:" -msgstr "" - -# 05f115bd3136404ea8e37f951c639e83 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:159 -msgid "Now our code looks like this:" -msgstr "" - -# 88fe3961114048e682f01b2d942f4e84 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:164 -msgid "After we save it the page will look nicely formatted:" -msgstr "" - -# fc9f5b4a16824e9f9560bbebdbbdcea1 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:169 -msgid "" -"Practice formatting your text in different ways. A small hint: the buttons " -"above the text box will automatically insert different types of formatting " -"code into your text!" -msgstr "" - -# 8abfee4a7f0445bcba91309c32c5d6ce -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:176 -msgid "" -"Once you have saved your page, it will be viewable by anyone on the " -"internet. The following link goes to our demo page, but if you replace our " -"username with yours, it will go to your user page." -msgstr "" - -# 100bd5a621924524a0a1bd30e9deab77 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:181 -msgid "https://wiki.openstreetmap.org/wiki/User:MapJeff" -msgstr "" - -# 3d53d4f678874e28a55475ee588c5665 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:184 -msgid "4. Wiki formatting" -msgstr "" - -# c79fa8979b3d4228a596b7639e45abe9 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:186 -msgid "" -"In this section we will discuss many of the different ways you can format " -"your information on a wiki page and the appropriate codes to use to create " -"different elements." -msgstr "" - -# 801a579c6ee448a68fa28a1416d72338 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:190 -msgid "" -"It’s a good idea to practise before trying to create an official wiki page " -"that you want others to see, so first let’s create a sub-page under your " -"user page where you can play around and practise editing." -msgstr "" - -# bce3ac7091c4400e990f060ab02f7309 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:194 -msgid "" -"Create a new wiki page by typing in the link to the page that you want and " -"then creating a new page. For now, let’s create a new subpage that we can " -"use to practise our wiki editing. In your web browser go to the following " -"address, replacing “MapJeff” with your own username: https://wiki." -"openstreetmap.org/wiki/User:MapJeff/testpage" -msgstr "" - -# c52fed3cf3544891b5ccb5f9c942b20e -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:202 -msgid "This will take us to an empty page that we can edit." -msgstr "" - -# 067f32741df843ae8eb48a413033abbe -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:204 -msgid "" -"Now let’s look at how to format our text. Use your test page to try out " -"different formatting." -msgstr "" - -# b058dc2ee1fa4298bcea717069b197f4 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:208 -msgid "Simple formatting" -msgstr "" - -# c8e002e0501c4a67ab0c88d03ea2e035 -# 3f1a52db6b1d4d3ab3b81deadef9e959 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:211 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:235 -msgid "Description" -msgstr "" - -# a484b1a5322b4878b68c96ff15b7949e -# a53f761592aa4f67a6bebe12ac3dcf36 -# 6c2d6cc205cb46abbdb185ff85dbd438 -# 0e96072491d14781865acd9914360e4b -# 10b6f3cb08e74c7d85030879d4986c13 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:211 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:235 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:260 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:282 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:326 -msgid "Example wiki source" -msgstr "" - -# 61daf4c6e8634c4eb430bd7365a64545 -# 39cd18b69eed455ca4dcf5926af70b1b -# 58e42f3f0a4345859f612fc3aedfa27f -# 46963e2948c349e3bb81da096d91de8d -# 4c654d40097241e38e053fcc8bf3a7ab -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:211 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:235 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:260 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:282 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:326 -msgid "Result" -msgstr "" - -# e4a34b2adf1d495fb647569e11154106 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:213 -msgid "" -"Surrounding text with two apostrophes (') will display the text in italic" -msgstr "" - -# 0dd4ef7226f14a2c894132f16c1aac0f -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:213 -msgid "''italic text''" -msgstr "" - -# 29a69aa627044319892bbca2ba4f3a1f -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:213 -msgid "*italic text*" -msgstr "" - -# ee55d9bf780b4cd9aeabe797ad989a36 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:217 -msgid "" -"Surrounding text with three apostrophes (') will display the text in bold" -msgstr "" - -# 8eef110eb5344d91ba302ba5aa80eab3 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:217 -msgid "'''bold text''" -msgstr "" - -# 7fec8a3cd6904debbf760522a0103a5a -# e86e9799b900462eb726e3270f934f04 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:217 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:237 -msgid "**bold text**" -msgstr "" - -# 2db24a1e397c4f709eb72fd40c8e2267 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:221 -msgid "" -"Surrounding text with five apostrophes (') will display the text in bold " -"italic" -msgstr "" - -# 920bd55eb72e4e55b6098a75f21871e3 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:221 -msgid "'''''bold and italic text'''''" -msgstr "" - -# 3e14ec7b7898423e87d9b272844e0bd8 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:226 -msgid "" -"Four dashes in a row will create a horizontal line. This should be used " -"sparingly." -msgstr "" - -# 84c828c3a57c430faba9e84501d5c0df -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:226 -msgid "_ _ _ _" -msgstr "" - -# 4c93d572002648c08890f5d190418510 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:232 -msgid "Special formatting" -msgstr "" - -# bd10724fb3844dc48c373d129414e10e -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:237 -msgid "" -"The tags '' and '' disable the wiki-syntax in the enclosed " -"text." -msgstr "" - -# 287c6a2ef391417ab5ffea40938ecf3f -# 0099bcbf10b04f7e9e4625da2656f6e8 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:237 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:239 -msgid "'''bold text'''" -msgstr "" - -# d705e124db2a4790a6b21068b0577ead -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:239 -msgid "'''bold text'''" -msgstr "" - -# db900c42e9194ffa98993ddef6a5b297 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:242 -msgid "" -"Surround your text with '' and the enclosed text will not " -"display on the wiki-page (a comment)." -msgstr "" - -# 640384e79bb141dea26687faa022ba66 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:242 -msgid "Comment! " -msgstr "" - -# 27b86766ff7e42ef8887bbe91f8e557d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:242 -msgid "Comment!" -msgstr "" - -# 84f93f80a2fe432b8fefe2c5bc34f48d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:249 -msgid "Headings and subheadings" -msgstr "" - -# 6b9c4e11cd07484ca484bed7947aec82 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:251 -msgid "" -"A section starts with a header consisting of a line beginning and ending " -"with two or more consecutive equal signs (=). The number of equal signs " -"indicates the nesting level of sections." -msgstr "" - -# 3e20e600278247af9504dff7ed366cd7 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:255 -msgid "" -"When you create sections and subsection headings in your wiki page, the page " -"will automatically have a table of contents section created at the top of " -"the page." -msgstr "" - -# eaee6f99da56416d9f80f7c6511f5a5e -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:262 -msgid "= = =Header 2= = =" -msgstr "" - -# 849012481f9d41c6a3128f0bca0b4fc4 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:262 -msgid "Header 2 (try this out!)" -msgstr "" - -# 634ba4d1e6354b54bd517294bc1eb601 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:264 -msgid "= = = =Header 3= = = =" -msgstr "" - -# 95f4d77546d142a59156d341b1433211 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:264 -msgid "Header 3" -msgstr "" - -# 3f04998362d34650907f7ed17ffce5b3 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:266 -msgid "= = = = =Header 4= = = = =" -msgstr "" - -# 46eaa3375ffd4dc3b1abb7d169b9ba3d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:266 -msgid "Header 4" -msgstr "" - -# cfb8fd2bc58941e6be291319948f6cae -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:270 -msgid "Lists" -msgstr "" - -# a522fc24524b4712995d9217d3e068b0 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:272 -msgid "" -"It’s easy to create a bullet list. In order to make an item in a list, you " -"simply need to use a star (*) as the first character on one or more " -"consecutive lines." -msgstr "" - -# 0a12acb957b6451e9768b13da3e2e97c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:276 -msgid "" -"To create an ordered list, simply use number signs(#) instead of stars(*). " -"Create nested lists by using a combination of stars and number signs. Nested " -"lists display as lists with different levels of indentation. When nesting " -"lists you may mix bullet lists and numbered lists on each level." -msgstr "" - -# 7965c015f18545eaa595b973b61400cd -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:284 -msgid "\\* Item in a bullet list\\" -msgstr "" - -# e94c5b328a6e4341a289d3d12cfe2b82 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:286 -msgid "\\* Another item\\" -msgstr "" - -# 9a45a1dfb44547c393e1b528e2094325 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:284 -msgid "Item in a bullet list" -msgstr "" - -# 6f814512c6774beca6e96ea1b969efdb -# 6067482239a44c2eb375b5f8cdee42b6 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:286 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:290 -msgid "Another item" -msgstr "" - -# 66ccd840f5774e8c8df8a4ad2df10685 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:288 -msgid "\\# Item in a numbered list\\" -msgstr "" - -# 9319433952a74c68a7b6f3dae585fcde -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:290 -msgid "\\# Another item\\" -msgstr "" - -# b69186305a5c49ed93c3a92037e8afbe -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:288 -msgid "Item in a numbered list" -msgstr "" - -# b09fdbd04a494f15bd1f23e7eb686aa1 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:292 -msgid "\\* This list has\\" -msgstr "" - -# db277db8dc9c460c82d69d6593ec503e -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:294 -msgid "\\*# two levels.\\" -msgstr "" - -# 7070037ecd8f47d890ab8c21f6ec9267 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:296 -msgid "\\*# Numbers on the second level, and\\" -msgstr "" - -# b841dadaed3f4c3b86bfaeffdf6bda59 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:298 -msgid "\\* bullets on the first level\\" -msgstr "" - -# 5c64d64f0dc54e2f844a304bde9fead8 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:292 -msgid "This list has" -msgstr "" - -# 14912d9320b54449b70dceb3f8538674 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:294 -msgid "two levels." -msgstr "" - -# 9b0ca02b792343f3a6a0c9813f155a98 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:296 -msgid "Numbers on the second level, and" -msgstr "" - -# c9e53b6c21e64a0f9604bbe7ed1029dc -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:298 -msgid "bullets on the first level" -msgstr "" - -# 55f6c7daee1545f7ac2e7d2774493e5b -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:302 -msgid "Links" -msgstr "" - -# 844dc75fc6644010bd944eb8099efcc9 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:304 -msgid "" -"Links within the OSM wiki are simple. Simply surround the name of the wiki " -"page you want to link to with double brackets [[wiki-link]]. You could add " -"different text for the link by adding a pipe symbol (|) and the text will " -"appear as the link text. If you want a special language version of a wiki " -"page, you should prefix the page name with the two-letter language code and " -"a colon (:). For example, to link to the German version of a page, you would " -"use [[de:wiki-link]]." -msgstr "" - -# 660ffb2429e745f6965593ef6adcc3ad -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:314 -msgid "" -"If you want to link to an article on Wikipedia, prefix the name of the " -"article with “wikipedia:”. For example, [[wikipedia:article-name]]. If you " -"want to link to a wikipedia article in another language, you can add the " -"language code like this: [[wikipedia:de:article-name]]." -msgstr "" - -# 7fc5f00bbfbf47ff8d5c1b37a7ae1a99 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:320 -msgid "" -"Finally, if you want to create an external link, simply type the URL and it " -"will display as a link. If you want to change the link text, you can use one " -"set of brackets to change the text which links to your URL [external-link " -"link-text]." -msgstr "" - -# 271f9a0b6e314c31834a628dd5e4f20f -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:328 -msgid "[[Map Features]]" -msgstr "" - -# 4f120ba7f6c34ff58cdfc318688e2b51 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:330 -msgid "[[Map Features | different text but links to same]]" -msgstr "" - -# a0a118f6f98843e8aee2bf7b065cf418 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:328 -msgid "`Map Features `_" -msgstr "" - -# a06b24227b4d44af9e84ceba9e5fd792 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:330 -msgid "" -"`different text but links to same `_" -msgstr "" - -# 30dba9bbfc2c4e43a666e3cb8ca7e884 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:332 -msgid "[[wikipedia:OpenStreetMap]]" -msgstr "" - -# 3969b6e1c57a4f4c95b04d7dc79c9379 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:334 -msgid "[[wikipedia:OpenStreetMap | different text]]" -msgstr "" - -# 47cca51cba1845099ffa66d836c98449 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:332 -msgid "" -"`wikipedia:OpenStreetMap `_" -msgstr "" - -# 878aa6e76c35467097a77b202275daf4 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:334 -msgid "`different text `_" -msgstr "" - -# ccd2381671b14380a9282958b729d068 -# cf5ed0d57c43491a82354bf63c9a6308 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:336 -msgid "http://fieldpapers.org" -msgstr "" - -# 4beffe826e6942c6b31107da767f521d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:338 -msgid "[http://fieldpapers.org | other text]" -msgstr "" - -# 1994083724dd4865ab6e43fcfe259f07 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:338 -msgid "`other text `_" -msgstr "" - -# ebd3e81b265a4363aeb4998d4e46f819 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:342 -msgid "Tables" -msgstr "" - -# 2bf4c12bca344543a9ef409022e2ddbc -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:344 -msgid "" -"Tables are probably the trickiest thing to create in a wiki, but easy once " -"you understand how it works. First, you need to understand that a table is " -"really a grid that has some number of rows and some number of columns, and " -"one type of information is contained horizontally in rows and another type " -"vertically in columns." -msgstr "" - -# 61eabc0f9736409f85dc95e5a96e46fb -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:350 -msgid "A basic table needs the following parts:" -msgstr "" - -# 01b76c4ada154843afe55e9602e124e8 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:352 -msgid "" -"A line with the first two characters '{\\|' indicating the begin of a table." -msgstr "" - -# f7f742d0841d4a29926cb96e4ef0d54d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:353 -msgid "" -"An optional line with the first two characters '\\|+' for the caption of the " -"table." -msgstr "" - -# 8d6105362aef4f1a93b2aa2034aeda1c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:355 -msgid "" -"One or more table rows, beginning with '\\|-' and usually no other content." -msgstr "" - -# 58aa28d655fe40beb9c9d23bf87b399d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:356 -msgid "" -"After each table row one or more lines with table cells and their text/" -"content. A table cell has as the first character a pipe symbol (\\|) and the " -"second character cannot be either plus (+) or minus (-) because these two " -"are reserved for caption and table row respectively." -msgstr "" - -# 89b9e87aa378446991cf31c3ecdd7d4b -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:360 -msgid "" -"A line with the first two characters '\\|}' indicating the end of a table." -msgstr "" - -# 6579ca222f69452f8cae1a57f606d64d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:362 -msgid "" -"It is good practise and increases readability to use a space as the second/" -"third character, thus avoiding any ambiguity." -msgstr "" - -# 2fde27e749f0488f8a9b0f2a62869b16 -# 9cea61ad86f642028bd412392e07f39d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:365 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:382 -msgid "**Example wiki source** ::" -msgstr "" - -# 333f9bf41baa45febf412a7b6ada83ec -# af975730748c4726b8d7493f7ba3663c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:378 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:394 -msgid "**Result**" -msgstr "" - -# 78a43f87a98e445cbb802c80030f4971 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:399 -msgid "" -"Play around with all these different techniques for formatting your wiki. To " -"see an example of all of these things, take a look at the test page we " -"created here: https://wiki.openstreetmap.org/wiki/User:MapJeff/testpage" -msgstr "" - -# 64fb510450e84b238a370f58fe861692 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:403 -msgid "" -"Compare the wiki text to the way it is formatted when you are viewing it. " -"Find more information on editing at http://wiki.openstreetmap.org/wiki/Help:" -"Wiki-Editing." -msgstr "" - -# 8fa94fceaec147199288253657cd7718 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:408 -msgid "5. Creating a new page" -msgstr "" - -# cc980a21c15d4d85b1ae130c48d747b6 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:410 -msgid "" -"You can create any wiki page the same way that you have created your user " -"page. However, before you run off creating hundreds of pages, it is " -"important to understand a few guidelines for how to best contribute. Some " -"key things to keep in mind are:" -msgstr "" - -# 9375f68c3edd42a5a56a19018719c7e4 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:417 -msgid "Before creating a page" -msgstr "" - -# 4ee636e54fa74b68acbd2cc908cfcefc -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:419 -msgid "" -"Don’t duplicate. When you want to create a new wiki page, do a comprehensive " -"search of the wiki to ensure that someone else hasn’t already created a page " -"about the same topic. You can search for existing pages using the search box " -"in the upper right." -msgstr "" - -# 7ef4573e5a40444d8bcae3ae0259d855 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:425 -msgid "" -"If a page that you want to create already exists, but you think it could be " -"better, you should improve it, instead of creating an entirely new page." -msgstr "" - -# 1d3d1444e9fb469dae6d511e2fe2cc38 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:428 -msgid "" -"Choose a descriptive name, capitalise new words and don’t use spaces or " -"dashes. The Map Features page for example, is named Map_Features, making the " -"link: http://wiki.openstreetmap.org/wiki/Map_Features." -msgstr "" - -# 1e6022fc1f634708ad5fbbdff559752c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:434 -msgid "When structuring a page" -msgstr "" - -# 97ae38609c874fb3b721cef8a677190c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:436 -msgid "Divide your page into sections and subsections." -msgstr "" - -# d035d97bfe794a36ab01519a14c0078b -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:438 -msgid "" -"Create an “Introduction” section at the top of the page to give a brief " -"explanation of the page." -msgstr "" - -# 56f94ddced254b9891a8dd686f9c2436 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:441 -msgid "" -"Format different parts of your pages as tables or lists, when appropriate." -msgstr "" - -# c75512151ca34c81be07e9ad0f581dcb -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:443 -msgid "" -"When in doubt, look at other pages on the wiki for inspiration about how to " -"format things. Remember that you can look at the code for any page by " -"clicking on the edit tab and seeing how other users format their text." -msgstr "" - -# 29b3e8d458d54cd0a8913ef5cb26c6e1 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:449 -msgid "6. Uploading files and images" -msgstr "" - -# 7f06ec0bad5f480595c9313024e620bf -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:451 -msgid "" -"To add or insert files or images on wiki pages, first we must upload the " -"file itself to the wiki." -msgstr "" - -# 0089417e17ec41ccb78990579b1494a1 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:455 -msgid "Uploading files" -msgstr "" - -# 7a33af715f9d46de8eb8264c8e2a418c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:457 -msgid "Go to https://wiki.openstreetmap.org and make sure you are logged in." -msgstr "" - -# 5bedf7db13a44ddc89d2232825925d49 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:459 -msgid "" -"Click :guilabel:`Upload file` on the left side of the screen, under the " -"Tools menu." -msgstr "" - -# 5c4aa003261844ef93a98bb1a10c7ab5 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:465 -msgid "" -"Click :guilabel:`Choose File`. Find the file that will be uploaded from your " -"computer." -msgstr "" - -# 5efad4546a7a43b08301a7380cf3979c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:471 -msgid "" -"Optionally, you may enter a new filename for the file, a summary, and a " -"licence." -msgstr "" - -# 24cf3306e6fb48a3943b9b01516b58ab -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:474 -msgid "" -"After selecting the file, click :guilabel:`Upload file` at the bottom of the " -"page. A page like this will appear, with your file shown:" -msgstr "" - -# 741e523866cf42aeac0551ea16406c2e -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:481 -msgid "" -"This shows that your file or image uploaded successfully. The next step is " -"to add it on to a wiki page." -msgstr "" - -# 0454521cf36c472daaf3fcc91f5e293d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:485 -msgid "Insert file / image in the wiki page" -msgstr "" - -# 6ae28012a6d9445884e88915dc53af9b -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:487 -msgid "" -"Go to the page where you wish to insert your file of image, and click :" -"guilabel:`Edit`." -msgstr "" - -# 6a3498ee4ff2451782a123958b1788bb -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:490 -msgid "" -"Copy the filename that you uploaded previously, for example: :kbd:`File:" -"Mapping jakarta.JPG` and :kbd:`File:Pemetaan dengan OSM.pdf`." -msgstr "" - -# a94209fa98aa4fb5aa2864bac13642a7 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:493 -msgid "" -"Paste the filename(s) you have uploaded into the editing box, with two sets " -"of brackets around it:" -msgstr "" - -# 24a566510d0b458d936995e5b54906ec -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:499 -msgid "Click :guilabel:`Save page`." -msgstr "" - -# 65e7690f4cdd4f19b47b2486c9b681db -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:501 -msgid "In our example, the result looks like this:" -msgstr "" - -# 85332991295040b88e2d261629c1abb1 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:507 -msgid "7. Translating pages" -msgstr "" - -# dd2ee2ac4994435c96098aad773e46a8 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:509 -msgid "" -"One very useful thing that can be done on the wiki is to translate important " -"pages into your language. As you’ve already seen, many wiki pages have links " -"at the top where you can switch languages. However, this is only available " -"for pages that have been translated, and that include a special tag at the " -"top - {{Languages|page_name}}" -msgstr "" - -# b52aa7db84cd47b591812d5e58855b68 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:516 -msgid "" -"When developing the OSM community in your country, it is very useful for key " -"wiki pages to be translated into your language. Adding translated pages is " -"easy, as we will see here." -msgstr "" - -# 61c6a185cd244ba5b73c99fa75fbd400 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:520 -msgid "" -"The names of pages are always created in English, but different versions of " -"the same page can be created by adding a language code into the URL. For " -"example, the Map Features page is at http://wiki.openstreetmap.org/wiki/" -"Map_Features" -msgstr "" - -# 9ee546fd67f24f2e91b5d745d2cb0db0 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:525 -msgid "" -"If you want the Spanish version of this page, it is available at http://wiki." -"openstreetmap.org/wiki/ES:Map_Features" -msgstr "" - -# ce05d550bb1f4532a792ac930cd3381e -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:528 -msgid "" -"If a page exists that you want to translate, simply visit the URL with your " -"language code and a colon (:) preceding the page name. For example, if we " -"wanted to translate this page into Indonesian, we would visit http://wiki." -"openstreetmap.org/wiki/ID:Map_Features." -msgstr "" - -# 62a9bce403144a40b2b3cfeb4226b1b3 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:533 -msgid "Then click :guilabel:`Edit` to create this page." -msgstr "" - -# 9b1b5f2b56f94524ac2bd020d7e713c9 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:535 -msgid "" -"The easiest way to add a translation is to go to a page in English, click :" -"guilabel:`Edit`, and copy all of the wiki text to your Clipboard. Then edit " -"the page in your own language, pasting in the original English text and " -"translating it piece by piece. This will allow you to keep all of the " -"original formatting and links correctly, but translate the English text into " -"your own language." -msgstr "" - -# 8e4a9d573a304e2b8b39b87913e15e67 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:543 -msgid "8. Watching pages" -msgstr "" - -# 06d0d8b72d3d4c21a60bc282e47b0ec7 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:545 -msgid "" -"You may want to keep an eye on pages that you have edited yourself, or that " -"you have an interest in. To do this, you can add specific pages to your :" -"guilabel:`Watchlist` which keeps a record of recent changes to pages, so " -"that you will know when others have edited them." -msgstr "" - -# 8ccd023a9f4a42289f201fddc7765db0 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:551 -msgid "" -"To add a page to your watchlist, click on the star at the top of the page " -"section:" -msgstr "" - -# b45573a66bd24cb5b7ed4104bccbbf69 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:557 -msgid "" -"Then, you can view your watchlist by clicking on :guilabel:`Watchlist` at " -"the top of the page:" -msgstr "" - -# 3464d8c02e5841489488876911cb750c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:563 -msgid "" -"On the Watchlist page you choose to show changes to your watched pages " -"within the past hours, days or since you started watching the page." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/index.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/index.po deleted file mode 100644 index b1d0be51..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/osm/index.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Language-Team: French (https://www.transifex.com/inasafe/teams/57762/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# f51644227d2c484f9b65acd13ff16567 -#: ../../source/training/old-training/intermediate/osm/index.rst:4 -msgid "Unit 3: Data Collection Using OpenStreetMap Intermediate Level" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/400-introduction.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/400-introduction.po deleted file mode 100644 index 5d5bf844..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/400-introduction.po +++ /dev/null @@ -1,235 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-04-02 17:14+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 3e0c547a385a4eae8700a1fc57bd1edf -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:6 -msgid "Introduction" -msgstr "Introduction" - -# e47c11362a524a1e80fa9fefb6a3e1e0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:9 -msgid "Disclaimer" -msgstr "" - -# 849144f984ff4a369230382da0e4c810 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:11 -msgid "" -"This document is an initial draft and is still in the reviewing phase by " -"these parties:" -msgstr "" - -# a1f5f511de7d40b9b0ee4a4c7271985d -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:13 -msgid "Badan Nasional Penanggulangan Bencana (|BNPB|)" -msgstr "" - -# 662afd368a4b4a5fb3ae46288e82d979 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:14 -msgid "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" -msgstr "" - -# 889f2b60f42c49c9be19d5f43cac46b0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:15 -msgid "Humanitarian OpenStreetMap Team (|HOT|)" -msgstr "" - -# 7cec1f77f02848c48e1ea9c7e4ed144d -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:17 -msgid "" -"All contents and materials in this document may be changed without public " -"notice." -msgstr "" - -# b1b0acbc24594bae9fe57cdb7445fcf9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:21 -msgid "Licence" -msgstr "" - -# e22bcf288c4a48beacd4fa9c45897b47 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:25 -msgid "" -"All contents and materials in this document are licensed as Creative Commons " -"Attribution Australia (CCbyA)." -msgstr "" - -# eae3f44772374baa914000e0d78d9fac -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:28 -msgid "You are free:" -msgstr "" - -# 970794adab0448c7b58421613595f9b9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:30 -msgid "to copy, distribute, display, and perform the work" -msgstr "" - -# a9291574e5c2403e8c378c2eff53dd84 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:31 -msgid "to make derivative works" -msgstr "" - -# 7aa0021d1fcb49db98fdc67617fa789c -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:32 -msgid "to make commercial use of the work" -msgstr "" - -# 715ccdfa47e247e38c2adb4044668175 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:34 -msgid "You must give the original author credit." -msgstr "" - -# 74f7194f833e44e1b184e1d3ac6cf43c -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:36 -msgid "" -"More information about CCbyA License: http://creativecommons.org/licenses/" -"by/3.0/au/deed.en_GB" -msgstr "" - -# 0ba7ba0e1ea04f72b06757108e31fb55 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:40 -msgid "About Us" -msgstr "" - -# 6f6c2b1e75344651a5b33368786fcb87 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:42 -msgid "Badan Nasional Penanggulangan Bencana (BNPB)" -msgstr "" - -# 6f29b432b9e94042b52f80c6a90a930b -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:46 -msgid "" -"BNPB is Indonesia’s National Disaster Management Agency. |BNPB| is a non-" -"departmental ministerial-level government agency, tasked with providing " -"guidance and direction to the efforts of disaster management that includes " -"disaster prevention, emergency response, rehabilitation and reconstruction " -"in a fair and equal way. |BNPB| functions as a policy maker regarding " -"refugee/IDP management for effective and efficient response. It coordinates " -"the implementation of disaster management activities in a planned, " -"integrated and comprehensive way." -msgstr "" - -# b28a3a76cf87424ebbc9a44f286c3b40 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:56 -msgid "http://bnpb.go.id" -msgstr "" - -# 9c8f510bde6747d4bbf6a5c2d4498727 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:59 -msgid "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" -msgstr "" - -# ff54f6750d024dbbae82d5b89baa36ca -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:63 -msgid "" -"The Australia-Indonesia Facility for Disaster Reduction (|AIFDR|) is a joint " -"initiative between the governments of Australia and Indonesia. They work to " -"strengthen Indonesia's ability to reduce the impact of disasters. The " -"Australian and Indonesian governments at a special ceremony on 15 July 2010 " -"launched the Australia-Indonesia facility. The launch marks an important " -"event in the strong relationship now shared by both countries and their " -"united commitment to better prepare for and respond to natural disasters in " -"Indonesia." -msgstr "" - -# a7a5950497fa4c30b342802d9bc67d9f -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:72 -msgid "http://aifdr.org" -msgstr "" - -# 6b4c6e5e7d7e4be296002e2f47a608a2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:75 -msgid "Humanitarian OpenStreetMap Team (HOT)" -msgstr "" - -# 58f0fb0a0ab64766a9bf2d2671bf9a6a -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:79 -msgid "" -"Free, collaborative maps are uniquely valuable to humanitarian work, " -"especially in places where base map data is often scarce, out-of-date, or " -"rapidly changing. OpenStreetMap is a web project to create a free and open " -"map of the entire world, built entirely by volunteers surveying with GPS, " -"digitising aerial imagery, and collecting and liberating existing public " -"sources of geographic data. The Humanitarian OpenStreetMap Team (|HOT|) is " -"an initiative to apply the principles and activities of open source and open " -"data sharing towards humanitarian response and economic development." -msgstr "" - -# 21ce44dad0064bc8aa23cb3d24262710 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:88 -msgid "http://hot.openstreetmap.org" -msgstr "" - -# f7d9e7655212416aae6739d57edc006f -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:91 -msgid "Universitas Gadjah Mada" -msgstr "" - -# 9a7ee698ff6447e7b8d54c600761fb97 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:95 -msgid "" -"Universitas Gadjah Mada (internationally known as Gadjah Mada University, or " -"UGM) is a top research university located in Yogyakarta, Indonesia. The " -"Department of Geodetic Engineering and Faculty of Engineering focuses on " -"education, research, and community services related to geodesy and geomatics " -"engineering, including acquisition, analysis, and uses of detailed and " -"accurate geospatial data and large-scale maps using open source geospatial " -"software for disaster management." -msgstr "" - -# 40d616d1222847edaf8f43686bc993ad -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:103 -msgid "http://ugm.ac.id" -msgstr "" - -# 2717c8b33f79438d93ae4804659e70a9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:107 -msgid "Preface" -msgstr "" - -# 2fefb69118fc4731931584ec79bd5d0c -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:109 -msgid "" -"By now you should be adept in data collection techniques and have a solid " -"foundation in analysis with QGIS. In this unit we will be focusing again on |" -"project_name| and QGIS skills that aid in contingency planning." -msgstr "" - -# b5da1a3b18df4f31ac0a15b5ff4d0496 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:114 -msgid "" -"First, we will undertake a brief review of unit 2, to solidify the QGIS " -"skills that we studied previously. Then we will begin working on another |" -"project_name| project using flood data as our hazard. We will consider the " -"best possible evacuation routes and locations for IDP camps, calculate " -"damages and losses and learn how to display them on a map." -msgstr "" - -# beae0b301b734d7baf23491549d4eec1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:121 -msgid "" -"This unit covers much of what we have been working toward. We will bring " -"together the data which we now know how to collect in OSM, QGIS spatial " -"analysis skills and the power of |project_name| to help develop effective " -"and informative contingency plans." -msgstr "" - -# 9b036a2bdce443cc864481853afc4342 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:127 -msgid ":ref:`Go to first module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/401-review-qgis.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/401-review-qgis.po deleted file mode 100644 index 0fbd8393..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/401-review-qgis.po +++ /dev/null @@ -1,389 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-04-02 17:14+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# d6c4d0219a6c45f8969380ff70f8728d -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:6 -msgid "Module 1: QGIS Review" -msgstr "" - -# 747253862c4048ed8ac5789404125592 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# cadcd7f2b9674951880dbde8f7e028f2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:10 -msgid "Identify data types in QGIS" -msgstr "" - -# 4f936e7355f84b06938046d5fe700467 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:11 -msgid "Understand symbology" -msgstr "" - -# 4d3d6c64d4974605b3321f6692fbe273 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:12 -msgid "Understand map layout" -msgstr "" - -# d848cdd28b2247e39f25479f991e2362 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:14 -msgid "" -"Before we dive deeper into |project_name|, we will review the QGIS " -"techniques that we covered in Unit 2. We will once more go over some of they " -"key aspects of QGIS, including adding vector and raster layers, symbolising " -"layers and using the Print Composer. If you feel competent in all of these " -"areas, feel free to jump ahead to the :ref:`next module `, but otherwise follow along for a brief review!" -msgstr "" - -# 23db30363e304562a357798269f3de69 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:24 -msgid "1. Data types in QGIS" -msgstr "" - -# 236421619aeb460c92ccd6c8e9d255a3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:26 -msgid "" -"As you may recall, there are two types of data that we often use in QGIS: " -"raster and vector data. Raster data is characterised as an array of data " -"which consists of rows and columns, like the pixels in an image. Vector " -"data, on the other hand, consists of discrete features made of points and " -"lines, and their position is defined by coordinates." -msgstr "" - -# 17f6447866804c6697c2509790712365 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:34 -msgid "1.1 Adding vector data" -msgstr "" - -# dd1cf5f924154c36a6ddfe9148875e3b -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:36 -msgid "Let’s add vector data to a new project." -msgstr "" - -# 5edc5f2bead148aaa537c7672b46365b -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:38 -msgid "Open a new QGIS project. Your map and Layers panel should be empty." -msgstr "" - -# b98d3af00a1a41468f6503248a762b4b -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:43 -msgid "" -"There are two ways to add a new vector layer to your project. Navigate to :" -"menuselection:`Layer ‣ Add Vector Layer...` on the menu or click on the :" -"guilabel:`Add Vector Layer` button on the toolbar:" -msgstr "" - -# 9f9e368b4b7c4eb0b875cc081f808a5d -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:51 -msgid "" -"If you can’t find the toolbar button, right-click the toolbars and make sure " -"that the box is checked next to :guilabel:`File`." -msgstr "" - -# 6343f3f6e8dc40b480ec4c58603c2a50 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:54 -msgid "The :guilabel:`Add vector layer` dialog looks like this:" -msgstr "" - -# c6aed03b593e42649428d2d6606a4140 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:59 -msgid "" -"Click on the :guilabel:`Browse` button and navigate to your exercise data. " -"Go into the :file:`qgis/Sleman/` directory and select :file:" -"`Jalan_Sleman_OSM`, :file:`POI_Sleman` and :file:`Kecamatan_Sleman`. Select " -"multiple files by holding the :kbd:`CTRL` key on your keyboard as you click " -"each file. Click :guilabel:`Open` and then :guilabel:`Open` again." -msgstr "" - -# e0cb4522d80f4ab8bb0c68f60b17f545 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:67 -msgid "Your map canvas will now look like this:" -msgstr "" - -# ee9a6cdf381749f9897afce1edc21736 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:72 -msgid "Great! You’ve added some vector data to your map." -msgstr "" - -# defd7feac9304f20bfc17b3b94532dea -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:74 -msgid "Remember that there are three kinds of vectors:" -msgstr "" - -# 972b78f1653945158a71d21ab2de093c -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:76 -msgid "points" -msgstr "" - -# c665a8cf4a2c49e18a27dac75d71663a -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:77 -msgid "lines" -msgstr "" - -# 7629485dd85343b19befd9cbea737dfe -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:78 -msgid "polygons" -msgstr "" - -# 9f073691115d466d94736191a7186765 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:80 -msgid "We have just added one layer of each type." -msgstr "" - -# fbb704bfdfdf40a0906c72588b250ef5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:84 -msgid "1.2 Adding Raster Data" -msgstr "" - -# 24a5504da1274709b82c669400b935c7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:86 -msgid "" -"Raster data has different characteristics than vector data. Raster data is " -"composed of rows and columns which form small boxes (known as pixels). The " -"pixels contain information, which is usually expressed as greyscale or " -"colour. The information in each pixel could be the altitude of a point, the " -"size of the population, the area’s colour or another value." -msgstr "" - -# ce67e4aaa0804a2f8003d76068b52a67 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:94 -msgid "" -"There are two ways to add a new raster layer to your project. Navigate to :" -"menuselection:`Layer ‣ Add Raster Layer...` on the menu or click on the :" -"guilabel:`Add Raster Layer` button on the toolbar:" -msgstr "" - -# 495ae578de1c4a36bce7cd464c9a936a -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:102 -msgid "" -"Navigate to :file:`qgis/Sleman/SRTM/` and select :file:`SRTM_Sleman.tif`, " -"which depicts the topography of the area." -msgstr "" - -# 8ae22188426e4c9d9a862c8bbb42eaf7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:108 -msgid "Click :guilabel:`Open`. The raster will be added to our project." -msgstr "" - -# ad36befe908d4e72b124c572df3efdea -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:114 -msgid "Next we will symbolise the data to make it easier to understand." -msgstr "" - -# 29b28960ccc449fda5bb2436ccaedbf3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:117 -msgid "2. Symbolising data" -msgstr "" - -# a01578ea9d5f48cba6d22ce8a140c035 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:119 -msgid "" -"Layer symbology is useful so that users can easily understand our maps. It " -"is also important to make our maps more attractive. Your choice of a layer’s " -"symbology is very important to deliver the right information." -msgstr "" - -# 814d90a23d254dd39c5a19ad955c24ae -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:125 -msgid "2.1 Symbolise the districts" -msgstr "" - -# 845f5f162a5c45d081096b45011c104c -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:127 -msgid "Let’s symbolise the district layer that we’ve added:" -msgstr "" - -# 1ca9be7385554f48baeea94679f80bab -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:129 -msgid "" -"Right-click on the :guilabel:`Kecamatan_Sleman` layer, and click :guilabel:" -"`Properties`, or double-click the layer name." -msgstr "" - -# b269cfc449a04576b43d9f1692fdbda2 -# 9859f0a4b29d44ab8d254277420da3e7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:132 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:168 -msgid "Click on the :guilabel:`Style` tab." -msgstr "" - -# f8a289e28f0b4b6b8f11225667bf9fe8 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:137 -msgid "" -"Notice all the options that we have to change the appearance of this layer. " -"We can change the layer’s transparency or its colour, or make even more " -"detailed variations by clicking on :guilabel:`Change`." -msgstr "" - -# 5249df4d944e4da592a22e779cb0e103 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:143 -msgid "" -"We can also base the symbology on the data contained in the layer itself." -msgstr "" - -# ef958056e7954dfd9a40f1fc47020e6b -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:145 -msgid "" -"Click on the box that says :guilabel:`Single Symbol` and change it to :" -"guilabel:`Categorized`." -msgstr "" - -# 86a96270acc148949fb108d1cd12731c -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:151 -msgid "" -"Change the Color Ramp to a set of colours that you like, and then click :" -"guilabel:`Classify`. It may look something like this (although your colours " -"will be different):" -msgstr "" - -# 39b23b1a18b14b199e0db6c2f9b4770c -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:158 -msgid "Click :guilabel:`OK` to apply the style changes." -msgstr "" - -# f86cee457b814b46acfe498b3a8a55d7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:161 -msgid "2.2 Symbolise the roads" -msgstr "" - -# 049eebb29c7b43de8107f39dba7e88f4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:163 -msgid "Next, let’s symbolise our roads layer." -msgstr "" - -# 13ce5d35407c46a9bb5b283cc315bd2a -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:165 -msgid "" -"Double-click :guilabel:`Jalan_Sleman_OSM` in the Layers panel to open the " -"Properties window." -msgstr "" - -# c05aadce22bb42b38a932f461bee3b8a -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:170 -msgid "" -"Adjust the colour as you like, or choose one of the style presets that are " -"displayed at the bottom." -msgstr "" - -# 5a7f103d3ac341e29fca7ed9ba7a49ee -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:173 -msgid "" -"Feel free to experiment. As you make changes, click :guilabel:`Apply` to " -"view your changes on the map." -msgstr "" - -# 8d6365f9fa854293b177e6cc3b01b939 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:176 -msgid "" -"If you use multiple symbologies (as we covered in Unit 2), your roads may " -"end up looking like this:" -msgstr "" - -# 2a9f757ff90146e9acec2eecdb491257 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:182 -msgid "" -"This isn’t ideal. To fix this, open the Properties window and on the :" -"guilabel:`Style` tab click on the :guilabel:`Advanced` button and choose :" -"guilabel:`Symbol Levels`. Check the box next to :guilabel:`Enable symbol " -"levels`." -msgstr "" - -# 5f95999f72ea4583b3a1fd1a3eecf008 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:190 -msgid "The roads will then look correct:" -msgstr "" - -# fa861df17e6c4a339deab3db8d2af428 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:195 -msgid "" -"Try editing the symbology of the :guilabel:`POI_Sleman_OSM` layer on your " -"own." -msgstr "" - -# ac1fcc4c6a354e4a9eadb7f132b49a3a -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:197 -msgid "Your map should end up looking something like this:" -msgstr "" - -# 5d9ccd8b332d43f3bfa477f4ba817615 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:203 -msgid "3. Map layout" -msgstr "" - -# 8cf0a5d20d174294873ce5c77aa0b199 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:205 -msgid "" -"Your map is a medium to communicate information (as well as your ideas). " -"Layer symbology is used to convey the content of your data so that it can be " -"easily understood by the user. By creating a map layout, you are going a " -"step further in using your map as a way to convey information." -msgstr "" - -# b886c1e054e94a4d90dbaebe37698951 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:211 -msgid "" -"For a full review of Map Composer, refer back to :ref:`Unit 2 `. For now, let’s create a basic layout with a legend." -msgstr "" - -# eb58828048b64edcbca7400ff1c32cfb -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:215 -msgid "" -"Start a new :guilabel:`Map Composer` window by going to :menuselection:`File " -"‣ New Print Composer`." -msgstr "" - -# 5f4c127deffe4881af86007c8c56071a -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:218 -msgid "" -"Click the :guilabel:`Add new map` button and draw a box on the left side of " -"the canvas." -msgstr "" - -# dab00a478d6b4de5838510ac2e850e29 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:224 -msgid "" -"Now click on the :guilabel:`Add new legend` button and draw a box on the " -"right side of the canvas." -msgstr "" - -# 7325114d1e4e49ff82010a74220fa901 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:230 -msgid "Your map will look similar to this:" -msgstr "" - -# 9f20865cc7a145daa49e4aeb82e897df -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:235 -msgid "" -"Play around a bit with the Print Composer if you like, and refresh your " -"memory!" -msgstr "" - -# fec27eed276b40d9879845abda27f49b -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:238 -msgid "Now it’s time to get back to |project_name|!" -msgstr "" - -# 1a291682c5684ae38bab2bbdd0c95ad1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:241 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.po deleted file mode 100644 index f42d30c1..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.po +++ /dev/null @@ -1,561 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-04-02 17:14+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 2062f413c9fd4db0aa6d62e23356f43d -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:6 -msgid "Module 2: Preparing Data and Keywords for |project_name|" -msgstr "" - -# 620ca4b6fdfb4dc7b09afe437a479ff3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# f5de5b2097964e57b6d53efd565f98c7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:10 -msgid "Understand |project_name| inputs" -msgstr "" - -# d86871c8a062427f8ce6cf0ff52b9f30 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:11 -msgid "Get OSM data from the HOT export server" -msgstr "" - -# 905f159ad7da4d09ad944a68645c64de -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:12 -msgid "Load data into |project_name|" -msgstr "" - -# be66052346f34173a7c98e1d28ee782b -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:13 -msgid "Add keywords" -msgstr "" - -# ad85c11f1c6b44adaac0ac1171ec8ddc -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:14 -msgid "Prepare the hazard layer" -msgstr "" - -# a24daff724ea426dbaa224f8011b8bab -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:15 -msgid "Run |project_name|" -msgstr "" - -# c4d0c58fcbd648d48349f1f7ff2c656f -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:17 -msgid "" -"Now that you know your way around QGIS and |project_name|, let’s go further. " -"In this module, we will see how to prepare our own data so that it can be " -"processed in |project_name|. Much of what we cover in this module you’ve " -"already done, though we will go over some of it in greater detail. We’ll be " -"using the project created in this module throughout the rest of the unit, so " -"be sure to save it along the way!" -msgstr "" - -# d9cf7844721848f99eb5078df1afcf54 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:26 -msgid "1. |project_name| inputs" -msgstr "" - -# fecc14196ea742f4b1a392d8d0377eca -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:28 -msgid "Let’s review the types of data used by |project_name|." -msgstr "" - -# 31368d7957754efa8cac06160b3dd1ae -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:30 -msgid "" -"**Hazards** are conditions, phenomenon, or human activity that potentially " -"cause victims and destruction to society and environment. Frequently " -"observed hazards are earthquakes, tsunamis, floods, landslides and tornadoes." -msgstr "" - -# 398b64a9df60475f838abc94b9bde4ea -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:35 -msgid "" -"When we are working in |project_name|, hazard data refers to a vector or " -"raster dataset that represents the level and magnitude of an event that can " -"potentially cause damages. To be used for impact calculation in |" -"project_name|, level and magnitude of an event scenario must be mapped over " -"the area of interest. This means that hazard data must be geographic - it " -"must have location. We have already looked at hazard data for the 2007 " -"Jakarta flood and the Lembang earthquake. These hazard layers were produced " -"from scientific modelling conducted by scientific organisations and " -"government agencies. These are typical sources for such hazard data, " -"although in cases of flood hazards such data may also be gathered from " -"affected communities." -msgstr "" - -# c625c7d22a9b46f8b6b1518a5ba9b6ad -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:48 -msgid "Generally, hazard data has the following characteristics:" -msgstr "" - -# 8135b80f7a364e8c90c65386ff4cfda4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:50 -msgid "are at a particular location" -msgstr "" - -# 32a2e22ce9934355a570bb5fb088bd90 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:51 -msgid "" -"have a measured intensity (ie. the depth of a flood or the MMI of an " -"earthquake)" -msgstr "" - -# aaf64b7139be43cfa7edff30564bac78 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:53 -msgid "have a measured duration of impact (ie. hours or days after a flood)" -msgstr "" - -# 3bf9195d5e9f477784d82b80e4625c0d -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:54 -msgid "have a certain time frame (ie. in the case of a sea rise flood)" -msgstr "" - -# 8e500d23e4c7420ba289c2e37dd15904 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:56 -msgid "" -"In this module, our hazard input will be a flood in the village of Sirahan, " -"in Magelang regency in Central Java. The data for this flood comes from " -"participatory mapping activities done by community members as part of the " -"REKOMPAK project. The data is in the training folder :file:`qgis/Sirahan/`." -msgstr "" - -# 68493a057a244039b2f700d6704ad6a8 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:62 -msgid "" -"**Exposure** data refers to natural and man-made objects that may be " -"affected if a disaster scenario really happens. In this module we will use " -"building exposure data created in OpenStreetMap." -msgstr "" - -# 1665f07694fe4efeb6fef95c41a9bcb4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:66 -msgid "" -"The |project_name| impact functions produce an output layer representing " -"potential damages or losses on the affected exposure layer. This output " -"layer will be created once the impact calculation process is finished " -"processing. |project_name| has many impact functions available, which are " -"listed through the 'Impact Functions Doc' menu (see below). The impact " -"calculation will only be possible when users provide the hazard and exposure " -"layer datasets and, when necessary, users define the required parameters " -"through the keyword Wizard correctly." -msgstr "" - -# 00de9afcda724ed8a92eb0ad823bfb0e -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:79 -msgid "" -"**Aggregation** is used to reclassify the result of the impact calculation " -"according to a specific administrative boundary level." -msgstr "" - -# 52db544b29be4000959b4cbb3a77f143 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:82 -msgid "" -"**Keywords** define which category a dataset belongs to, whether hazard or " -"exposure. They are also used to define specific parameters to be considered, " -"as we shall see. After you calculate the impact of a scenario with |" -"project_name|, what next? Well, the impact calculation can be used to " -"prepare a contingency plan. That's why relevant questions and remarks are " -"displayed in the Result section, which may then be considered by disaster " -"risk managers or planning managers." -msgstr "" - -# b7302a60a44a4ffeb8b52d1c3b87f347 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:92 -msgid "2. Getting OSM data from HOT Exports" -msgstr "" - -# 53a5f2c5e61846ffb372e0ba6dfd7d28 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:94 -msgid "" -"In previous scenarios, we used example data provided in the training " -"directory, but to set up our scenario in the village of Sirahan, let’s " -"access the OSM data ourselves to use as our exposure layer. We will use the " -"OSM buildings to calculate how many buildings (and which) will be inundated " -"when a flood occurs similar to our hazard model." -msgstr "" - -# 10ddee6e10b44376a57dfc265a6da433 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:100 -msgid "" -"We’ve worked with OSM data a lot already. Now we will utilise a website " -"where we can quickly and easily access the data from OSM." -msgstr "" - -# 05fd32efd3ed42d78a9636573a72273f -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:104 -msgid "Open your web browser and navigate to http://export.hotosm.org." -msgstr "" - -# 646e42675b084e2ebd8f7ed4630dd1ad -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:109 -msgid "" -"If you are a new user, create an account. If you have an account already, " -"sign in." -msgstr "" - -# 4c97fd5211734b7a85ab591cbe9dff16 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:112 -msgid "" -"The HOT Export website allows you to choose an area and create a data " -"extract from that area. Then you can download the data in a variety of " -"formats that are easily read by QGIS." -msgstr "" - -# 770261c8d6414c0d950292a0cbca6312 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:117 -msgid "In the upper right corner, click :guilabel:`New Job`" -msgstr "" - -# 8868ee63dfe948fd9a9aa695236195e8 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:119 -msgid "Give the job a name, such as :kbd:`Desa Sirahan`." -msgstr "" - -# 18c7a88bc57449ee9184faa6304a6c16 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:121 -msgid "" -"Zoom in on the map until you can see the village Sirahan, which is just " -"north-west of Yogyakarta." -msgstr "" - -# 0a13704cf78d46a29eed2f5433cae561 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:124 -msgid "" -"Click :guilabel:`Select Area` and then draw a box around Sirahan village." -msgstr "" - -# a800962f702b4d9faab4870de4c3645c -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:129 -msgid "The page should look something like this:" -msgstr "" - -# 271b003d2caf446a99466d45773597c1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:134 -msgid "Click the :guilabel:`Create Job` button." -msgstr "" - -# f2858d25f0734bb6aa227bcdb629dee7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:136 -msgid "" -"You will be asked to define a presets file. This is like the presets that " -"you added to JOSM in the previous unit, except here, they define the " -"attributes that the HOT export server will provide." -msgstr "" - -# 0cd5776d9ac84afb937c02f13515d591 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:141 -msgid "Choose :guilabel:`preset file-INASAFE`." -msgstr "" - -# 92fb2ac9052c4593bfbc8c6e4bba9147 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:146 -msgid "Click the :guilabel:`Save` button and take a few breaths!" -msgstr "" - -# 61b5aca5854a435c84a2dc5e1f0c3d78 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:148 -msgid "" -"It may take a few minutes for the data extraction job to process. When it is " -"finished, the page will change and you will see a list of files you can " -"download like this:" -msgstr "" - -# f195f9649fd14fcf81830d44da3fc969 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:155 -msgid "" -"Click on :guilabel:`ESRI Shapefile` to download shapefiles, and once you " -"have it, extract (unzip) the archive on your computer. It should create a " -"directory named :file:`extract.shp`." -msgstr "" - -# 19e27f2bf24b44ca8bf03b280abf1c69 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:160 -msgid "3. Loading data" -msgstr "" - -# 29635f55150745e788438bceba834160 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:162 -msgid "" -"We will use this OSM data as our exposure data. Open a new QGIS project and " -"add all of the shapefiles that you downloaded as vector layers. You should " -"have four layers:" -msgstr "" - -# 6bd58fcd0d454674b6c29577c6423ab9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:170 -msgid "" -"For reasons that will become clear later, we need to change the map " -"projection from the default OSM projection (WGS 84) to WGS 84 / UTM 49S. In " -"other words, we need a CRS that uses metres, not degrees." -msgstr "" - -# 12300a7a4ee44ba288dc004a31a926d6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:174 -msgid "" -"Right-click on the :guilabel:`planet_osm_polygon` layer and click :guilabel:" -"`Save as`." -msgstr "" - -# 0612ff3f8a8d45558474eec5d411d048 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:177 -msgid "" -"Click :guilabel:`Browse` and navigate to a place where you would like to put " -"the new shapefile. Name the file :kbd:`Bangunan_Sirahan` and click :guilabel:" -"`Save`." -msgstr "" - -# 52bd0f0ba67d4749b7d1244de12b8edd -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:181 -msgid "Next to CRS, click :guilabel:`CRS icon`." -msgstr "" - -# 98712ec64ca04f02a6e848e36667aadc -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:186 -msgid "In the filter box, type :kbd:`UTM zone 49S`, as shown below:" -msgstr "" - -# 368d45e4ef514f8396dfaafb9252f7b7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:191 -msgid "" -"Select the CRS :guilabel:`WGS 84 / UTM zone 49S` and click :guilabel:`OK`." -msgstr "" - -# 8364c40bb16c4cf7ab31699b9f979400 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:193 -msgid "The :guilabel:`Save vector layer as...` dialog will look like this:" -msgstr "" - -# 990514ea802649b38eaf7a2d1a66f7db -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:198 -msgid "" -"This is the layer that we will be using as our exposure data. You can remove " -"the other OSM layers, or if you would like them to remain visible, go to :" -"menuselection:`Settings ‣ Project Properties` and enable 'on the fly' " -"transformation." -msgstr "" - -# 992d9754e8ed46f78ff289450b9b7297 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:204 -msgid "4. Adding keywords" -msgstr "" - -# 51b8aea009e141e09ef40de2f6f22cc1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:206 -msgid "" -"Since we’ll be using this buildings layer as our exposure, we need to set " -"the keywords so that |project_name| knows what the layer contains. If you " -"remember from Unit 2, this is done with the keywords Wizard." -msgstr "" - -# 44f135043e6945a08a8b50d8eae729d2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:210 -msgid "" -"Select the :guilabel:`Bangunan_Sirahan` layer and click the :guilabel:" -"`Wizard` button on the |project_name| toolbar." -msgstr "" - -# b1d07c09269741d8af5348ff2d01582e -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:216 -msgid "" -"You will see a dialog box and select :guilabel:`exposure` and after that you " -"can follow the steps in the dialog box." -msgstr "" - -# 062071e02bbd433b90bfccf66d8b9bf3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:222 -msgid "" -"Select unit information that you want to calculate in InaSAFE. For building " -"data you can choose :guilabel:`building type` to group the result of the " -"impact function. You need to make sure there is the building type attribute " -"in your exposure data. Or if you do not have the building type attribute in " -"your exposure data, you can select :guilabel:`building generic`." -msgstr "" - -# a566ea9a3f8849a48fb2815ab4b84dbb -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:228 -msgid "" -"You also need to select which attribute has building type values. In this " -"data please select :guilabel:`amenity` and in the last step you can give a " -"title for your exposure data and click :guilabel:`Finish`" -msgstr "" - -# eb3a137deadd45978e33ae0db3bb02f3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:236 -msgid "5. Preparing a hazard layer" -msgstr "" - -# 957e6113ee294a5eb07085515f474f50 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:238 -msgid "" -"The hazard data that we have used previously has come from government " -"agencies and scientific institutions. This time, we will use data that came " -"from community mapping activities, that is, from community members on the " -"ground. The data was created as a paper map and later converted into digital " -"format. The data has already been prepared, so we simply need to add it as " -"our hazard layer." -msgstr "" - -# 202d9e611cd947cd952e2f8d2f613a90 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:247 -msgid "" -"Click :guilabel:`Add Vector Layer...` and add :file:`area_terdampak_Sirahan." -"shp` in the :file:`qgis/Sirahan/` directory." -msgstr "" - -# 4ba930af5c4647a884e4a98b088cdcc9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:254 -msgid "" -"You can see that this layer is already known to |project_name|, so " -"presumably it has keywords already set." -msgstr "" - -# 92ebd072e7d6405dbaacf6fafcaba916 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:257 -msgid "" -"Before we define the keywords of this data and because of the way that |" -"project_name| calculates this function, we need to make sure that this " -"exposure layer has a column in the attribute table that |project_name| " -"expects, named \"AFFECTED\"." -msgstr "" - -# 0c17a641f34c4a218a39be31613cca2b -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:262 -msgid "" -"Open the attribute table for the :guilabel:`area_terdampak_Sirahan` layer." -msgstr "" - -# c17965fe21a74980a6fdbe6db2302e5a -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:267 -msgid "" -"We need to add some data to this layer so that QGIS can run the flood " -"function correctly. When QGIS runs the flood function, it checks every " -"feature in the hazard layer to make sure that it is in fact a flood prone " -"area. Hence, each feature must have an attribute named \"AFFECTED\". First, " -"let’s add the new column to our layer." -msgstr "" - -# 6b7952aee02049f39f9a55cacd5661ff -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:274 -msgid "In the attribute table, click the :guilabel:`Toggle Editing` button." -msgstr "" - -# 6f23daabbb954e29b32c223596847114 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:279 -msgid "Click the :guilabel:`New Column` button." -msgstr "" - -# 022be236c7874e809d1127eb766d6f67 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:284 -msgid "" -"Type :kbd:`affected` as the name and select :guilabel:`Text(string)` for :" -"guilabel:`Type`. Give :kbd:`10` for the width." -msgstr "" - -# 8c0e3f71382e49f28ad0183b8e5f9e53 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:290 -msgid "Click :guilabel:`OK`." -msgstr "" - -# 82f7e1e8db5140d9bd22be803e11f521 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:292 -msgid "" -"Now select each value in the column “affected” and type “1”, instead of NULL" -msgstr "" - -# 4df914c00b024dc8b902f0694d8f3e26 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:297 -msgid "" -"Click :guilabel:`Save Edits` and then :guilabel:`Toggle Editing` to stop the " -"editing process." -msgstr "" - -# 06b277f69660477eb98fde076fac5e9d -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:303 -msgid "" -"Select the layer and open the :guilabel:`Keyword Wizard` and select :" -"guilabel:`Hazard` and follow the steps in the dialog box" -msgstr "" - -# cea7099d672b46329aa993ea7b3e6bbc -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:309 -msgid "" -"In this hazard data we select :guilabel:`flood` as the hazard type because " -"we assume that this is a flood hazard." -msgstr "" - -# 9c160ed1ca0e4579a88b8546813b57b7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:312 -msgid "" -"Select :guilabel:`wet/dry` as the subcategory for flood, and after that " -"select the :guilabel:`wet/dry` attribute that represents the flood extent as " -"wet/dry." -msgstr "" - -# 05adba141f8043d080ce4c815abc11a0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:315 -msgid "" -"As the last step, you can give a title for your hazard data and click :" -"guilabel:`Finish`" -msgstr "" - -# af7ec0efa82149f4bf3ceeb00384f9b4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:319 -msgid "6. Running |project_name|" -msgstr "" - -# 51ac18a05466480fa9dbc518720b8908 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:321 -msgid "" -"Everything is prepared now - our layers are loaded, the keywords are set, " -"and we’ve ensured that the layers have the data that |project_name| expects. " -"Make sure the question form in InaSAFE looks like this" -msgstr "" - -# ad0d24f038bd48229be70976ea4483d7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:328 -msgid "and then click :guilabel:`Run`!" -msgstr "" - -# 02e928f7415749c195ad34deef40897e -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:333 -msgid "The results should looks something like this:" -msgstr "" - -# ea642391a00e4cf98f44291bf110b674 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:338 -msgid "Save your project! We’ll be using it in the upcoming modules..." -msgstr "" - -# b341e05294bd4c4dbc7696ec95c00a94 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:341 -msgid "" -"We’ve run a few scenarios, but what is next? In the next modules we will use " -"our QGIS skills to find the best evacuation routes for people to use in the " -"case of the flood disaster, as well as examining appropriate places for IDP " -"camps." -msgstr "" - -# 8b6b9d716e6349ffb4536de0934d4328 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:347 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.po deleted file mode 100644 index bff3a968..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.po +++ /dev/null @@ -1,586 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-04-02 17:14+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 7c48363d58b34701b23a588993614ffa -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:6 -msgid "Module 3: Determining IDP Camp Location" -msgstr "" - -# 10ee610f786846afba59855be48cf6d0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 4153dfdaedfc41578a5cf105169e9cc6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:10 -msgid "Develop criteria for determining an ideal IDP camp location" -msgstr "" - -# 5cbf68f84abb4afca0972c1be033c3d4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:11 -msgid "Use geoprocessing tools" -msgstr "" - -# 288f3b579a1146a187710d7934e9bef1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:12 -msgid "" -"Use various spatial queries: contains, within, equal, intersect and is " -"disjoint" -msgstr "" - -# 91fb643e1e47425fa348752837d4dffd -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:13 -msgid "" -"Combine geoprocessing tools and spatial queries to select building(s) for " -"temporary IDP camps" -msgstr "" - -# a7abd3ae8dd543d5875b9493b8036726 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:16 -msgid "" -"Another important part of disaster planning is determining potential " -"locations for IDP camps. To do this we need to be able to take various " -"criteria into account in finding an appropriate location. In Unit 2 we did " -"exactly this. We analysed various layers and performed a GIS analysis to " -"determine several land areas appropriate for IDP camps near Merapi." -msgstr "" - -# b1bc0a2954a24f7e89a8261b0b867997 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:22 -msgid "" -"In this module we will take a closer look at the tools we use to perform " -"this GIS analysis, but the process will remain the same. As with any proper " -"GIS enquiry, we will follow these steps:" -msgstr "" - -# bec9079b8b5745f08079cf81b00bb704 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:26 -msgid "Define the problem" -msgstr "" - -# 2343d8470cc9427981a65cb989f6a7fc -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:27 -msgid "Obtain data" -msgstr "" - -# c26078984b574c769ba289b98c005a61 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:28 -msgid "Analyse the problem" -msgstr "" - -# a94db71353b346fcb506ed5f62f62565 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:29 -msgid "Visualise the result" -msgstr "" - -# 5f8a93bd9cdb44808a29283f8fc42d97 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:32 -msgid "1. Geoprocessing tools" -msgstr "" - -# 0fea8e70a29c42e6a26f7522e86979c3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:34 -msgid "" -"When we performed our first analysis, we utilised several spatial functions " -"in order to answer questions such as “what locations match conditions in " -"layer A and different conditions in layer B?”. Before we begin our GIS " -"analysis, let’s examine some of the spatial functions that are available to " -"us." -msgstr "" - -# 28562adc104d4125a8dc16ef9693a08a -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:41 -msgid "Buffer" -msgstr "" - -# b35e1da58a934e5ea7e2455b532f6117 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:42 -msgid "" -"The buffer function is used to make a new feature based on a given distance. " -"We saw this in Unit 2, when we defined a buffer around roads and health " -"facilities. For example, we created a 3km buffer around health facilities " -"and created a new layer from this – these defined areas which met one of our " -"criteria – that camp locations should be close by." -msgstr "" - -# 22c85744743f49e2bafbc4397db4f8fa -# 3b8e59a479ac444eabcc5c1e87e876bc -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:53 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:124 -msgid "Intersect" -msgstr "" - -# d867f6b85e4842ddbcc880a3f5656d9c -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:54 -msgid "" -"The intersect function is used to combine two overlapping layers, with the " -"result that only the intersecting features from both layers will be " -"contained in the output layer. Attributes from both layer features will be " -"combined in the new layer." -msgstr "" - -# ed351222d0fc4ffcb237ad5f3ffbabee -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:63 -msgid "Clip" -msgstr "" - -# f4f7b8ea2e754c6c9b6a00757042353d -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:64 -msgid "" -"Clip is used to cut an input feature with another feature (clip feature). " -"The attributes from the input feature are left intact, only the shape of the " -"input feature will follow the shape of the clipping feature." -msgstr "" - -# 27136c65ad8c465a87bb3b0fabda0533 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:72 -msgid "Union" -msgstr "" - -# 1a8ff8c4010a48f3bafa65414458485a -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:73 -msgid "" -"Union is used to make a new feature by combining two features. The feature " -"produced contains features and attributes from the two source features." -msgstr "" - -# 787ea5d6a0434550b44f09d5f523353f -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:81 -msgid "Dissolve" -msgstr "" - -# 370ddf72df0640c49aaa0fbf9499df05 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:82 -msgid "" -"Dissolve is used to combine features inside layers that have the same value " -"in one of their fields." -msgstr "" - -# c07a7faec66d41e9a1ae910e754c798c -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:89 -msgid "2. Spatial queries" -msgstr "" - -# f2d7c29ee5f34d9db801e08971f326f0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:91 -msgid "" -"Spatial Query is used to find the relationship between two features. The " -"resulting value is either TRUE or FALSE, unlike the geoprocessing functions " -"above, which result in new geometric features. Thus performing a Spatial " -"Query is more like asking a yes or no question. Various Spatial Query " -"functions are covered here:" -msgstr "" - -# 8f900ac2e65549abbd420048fd92c1d5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:98 -msgid "Within" -msgstr "" - -# 3c519d6f2f48487f9e5c276f4050a907 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:99 -msgid "" -"Within is used to ask the question: ‘is feature A fully located inside " -"feature B?’ In the image below, let’s assume the dark-coloured circle is " -"feature A and the light-coloured circle is feature B. We can use the Within " -"function to ask the question, “Is feature A fully within feature B?” The " -"result would be TRUE. On the other hand, if we asked “Is feature B fully " -"within feature A?” the answer would of course be FALSE." -msgstr "" - -# dd046732c9ca4efc81795dc209875cf2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:113 -msgid "Contains" -msgstr "" - -# f90a96f0969941d28b2dcd79813ebd1c -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:114 -msgid "" -"Contains is the opposite of Within. This function allows us to ask “Does " -"feature A contain feature B?”" -msgstr "" - -# 09defb45256c4d7195e783cd7f8eb4d7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:118 -msgid "Equal" -msgstr "" - -# 74be04031c4e42ab9722a37d8d98c1ce -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:119 -msgid "" -"Equal results in TRUE if two features have the same position and size. In " -"the above example, the result would be FALSE, because feature A and feature " -"B do not have the same size or the same position." -msgstr "" - -# 47c18299c02a4ebcbccb4cdb8d9506d9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:125 -msgid "" -"Like the geoprocessing intersect tool we mentioned in the previous section, " -"this spatial query function evaluates whether two features are intersecting. " -"If the features intersect, this query will return TRUE." -msgstr "" - -# 644e365bda78428dafc982aa3e41b626 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:133 -msgid "Is Disjoint" -msgstr "" - -# b4e2bdce566643d5b82f05a0eb213b2f -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:134 -msgid "" -"This function is the opposite of Intersect, meaning that it will return TRUE " -"if two features are not touching one another. We might use this query if we " -"want to search for buildings that are located outside of an impacted " -"disaster area. Because this function is the opposite of Intersect, it would " -"return FALSE if run on the example above." -msgstr "" - -# 3529cbf410944769a471c9a3e4d44990 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:141 -msgid "" -"Implementation of these functions is important in supporting analysis for " -"scenario development, specifically to obtain answers to questions such as:" -msgstr "" - -# 6bd4518927a34ed39226638a78dd3f48 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:145 -msgid "Which schools are safe from an earthquake?" -msgstr "" - -# e2e069a7cf4c43b0bbf1e05d496f4db7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:146 -msgid "Which buildings can be used as temporary IDP camps?" -msgstr "" - -# 2c51916b2f0d4c9f94f20fa6096377de -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:147 -msgid "How many kilometres of national road will be lost in case of tsunami?" -msgstr "" - -# b7ae12d956c8451da442b07261c6d698 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:151 -msgid "3. IDP camp criteria and data" -msgstr "" - -# 593453135bc44ac5b9b39e864626b601 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:153 -msgid "" -"Now let’s get back to our Sirahan project. Throughout the rest of this " -"module, we will apply our knowledge of geoprocessing tools and spatial " -"queries in order to identify an appropriate IDP camp location during a flood " -"that is similar to the one in our model. First, let’s list some criteria " -"that we can use to determine the best location. Try to think of your own " -"list, and then see how it compares to ours below:" -msgstr "" - -# ee99b6e3548043ffb0961d02d783aede -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:161 -msgid "" -"Buildings/Houses that will be used as an evacuation site should be situated " -"outside the affected area (outside the flood zone)" -msgstr "" - -# d46caedb8fb84741a39aad91422ab0f6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:163 -msgid "" -"Location should have direct access to a primary road (jalan kabupaten) or " -"secondary road (jalan desa) with a maximum distance of 20 metres" -msgstr "" - -# 4546743d9cba4abda05dbb9a9016b3cc -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:165 -msgid "Building should have an area of at least 225 square metres" -msgstr "" - -# f626ff81e5a540049cbab9ef073dc26e -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:167 -msgid "" -"We’ve defined our problem, so the next step in the GIS process is to prepare " -"our data. We should have all the data ready from the previous module, but " -"let’s make a quick list of what data we must have in order to work with our " -"criteria." -msgstr "" - -# ccf95994cb7341cfa92c82f5afc7037e -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:173 -msgid "Buildings/houses" -msgstr "" - -# bd2d5b718fbd49428941b540e15db496 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:174 -msgid "Impacted area of flood" -msgstr "" - -# 85dc7969df344986822034b9a02503b0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:175 -msgid "Road network with road class attribute" -msgstr "" - -# 2421732bdc2e4afbbf7a2363be16505d -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:177 -msgid "" -"Luckily, we have this data already prepared. The data you use might be " -"different if you have different criteria, or you have different needs and " -"problems." -msgstr "" - -# a5a295201c8d48d3b7db724558e2ee1d -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:181 -msgid "" -"Create a new project or edit your existing project so that it contains the " -"following layers: (the new layers are located in :file:`qgis/Sirahan/`)" -msgstr "" - -# d0391d3cacbc419ebc80ee8941d73f37 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:187 -msgid "Your map will look similar to this:" -msgstr "" - -# e54d336cc7b8492ea38dd0c8e60ea60a -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:192 -msgid "" -"Save the project as :file:`analisis_vektor.qgs` and create a new folder with " -"the name :file:`analisis_vektor`. As we run various geoprocessing tasks and " -"output new layers, we will save the new files in this directory." -msgstr "" - -# 3356c634041c41f79d8bd62b5bbf255a -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:198 -msgid "4. Criteria #1: building must be outside affected area" -msgstr "" - -# e488ceec58e64770856d11fed93cbc7a -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:200 -msgid "" -"Okay, let’s work on our first criteria, that the building we choose as an " -"IDP refuge should be outside the affected area. Can you guess which type of " -"spatial query we will perform? Refer to the list of operations covered " -"previously in this module and guess which one fits. If you guessed Is " -"Disjoint, you are right! Is Disjoint let’s us search for features in one " -"layer that DO NOT touch features in another layer." -msgstr "" - -# 28ad433924c74d7c99341b7079811fde -# ad551c4776d04bf39706f7c55a097ddf -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:209 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:295 -msgid "Go to :menuselection:`Vector ‣ Spatial Query ‣ Spatial Query`." -msgstr "" - -# 7fe2c5fcd74b47b4ab40804096394cd7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:211 -msgid "" -"Choose :guilabel:`Bangunan_Sirahan` as the input layer under :guilabel:" -"`Select source features from`." -msgstr "" - -# ebe75ddfd4e44a2e9c0786cde3e0fc4b -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:214 -msgid "" -"Use the Is Disjoint operator and choose :guilabel:`area_terdampak_Sirahan` " -"as the reference feature." -msgstr "" - -# aa3c0ae56a734fadbf69053c1543c8e2 -# 38afbc5665794c03a6950a445ab85754 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:220 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:302 -msgid "Click :guilabel:`Apply`." -msgstr "" - -# 4acc53e587e243f4b006c29256da6b7b -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:222 -msgid "" -"A window will appear which looks like the image below. Click :guilabel:" -"`Close`." -msgstr "" - -# 89b0f003940e43da84b159852903afde -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:228 -msgid "The buildings outside of the affected flood areas will become selected:" -msgstr "" - -# 001f8f16d8fa4032a1eb1497ccf7e1ec -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:233 -msgid "" -"Save the selection as a new layer named :file:`Bangunan_Sirahan_terpilih." -"shp` and add it to the map." -msgstr "" - -# 5b854056cf5f4d3f927d5097ecfbfee1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:236 -msgid "Remove the old buildings layer." -msgstr "" - -# 2d1e37e0851e43cb9083bbec5b7a3ee7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:239 -msgid "" -"5. Criteria #2: location must have direct access to a primary/secondary road " -"within 20 metres" -msgstr "" - -# 455baf99af344d59b9f72500c3f191fd -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:241 -msgid "" -"Now, we need to consider our second criteria, that the building chosen as an " -"IDP refuge is close to a main road. We used the same consideration with our " -"example in Unit 2. Do you remember how we can do this? First, we must use " -"the :guilabel:`Query Builder` so that we are only using the primary and " -"secondary roads. Then we will use one of the Geoprocessing tools – Buffer!" -msgstr "" - -# f24bfe29be704f518f0a9d01e2b670f9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:249 -msgid "" -"Right-click on the :guilabel:`Jalan_Sirahan` layer and click :guilabel:" -"`Query`." -msgstr "" - -# 5bf7218e924f457a965f4ffeb7ec297c -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:252 -msgid "Create a query like this:" -msgstr "" - -# 6531a6d578b34107bbbcad4bc79de959 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:258 -msgid "" -"Click :guilabel:`Test`. This will run the query and tell you how many " -"features meet the conditions in your query." -msgstr "" - -# ed770092d2154cefad18e74c913b63be -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:264 -msgid "" -"You should see that our map shows fewer roads now, because we have filtered " -"out those that are not primary or secondary. Now that we have the roads, we " -"will create a buffer around them." -msgstr "" - -# 823e20a0159d464f9045924df3355727 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:271 -msgid "" -"Select the :guilabel:`Jalan_Sirahan` layer and go to :menuselection:`Vector " -"‣ Geoprocessing tools ‣ Buffer(s)`:" -msgstr "" - -# 6993945c1f8245c09ff27524dc561933 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:277 -msgid "Set it up like this:" -msgstr "" - -# 1c9d6eca66514070b4546db693b92f65 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:282 -msgid "" -"Save the layer as :file:`Jalan_Sirahan_buffer_20m.shp`. Click :guilabel:`OK` " -"and QGIS will create the buffer, which will look like this:" -msgstr "" - -# 3489359252ca494fa4e05deaba6adad8 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:289 -msgid "" -"Now we have a layer which shows the areas that are within 20 metres of the " -"primary and secondary roads. The last thing to do in order to apply our " -"criteria is determine which buildings are situated within the buffer. Hence " -"we need to do another spatial query, this time of type Within." -msgstr "" - -# a24ab499408b404585486d44164d07cc -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:297 -msgid "Fill in the fields to look like this:" -msgstr "" - -# 8f6da07c49384637aec7ca37c05f0b65 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:304 -msgid "" -"The buildings that are within the roads buffer will be selected. Right-click " -"on the :guilabel:`Bangunan_Sirahan_Terpilih` layer and click :guilabel:`Save " -"Selection As…`. Save the selection with the name :file:" -"`Bangunan_Sirahan_buffer_20m`." -msgstr "" - -# f06b268ead844c44a6b541d6f3941c4d -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:310 -msgid "" -"6. Criteria #3: building must have an area of at least 225 square metres" -msgstr "" - -# 02624093c3d54e7bb15adada82264f37 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:312 -msgid "" -"Our final criteria is that the building we choose should have an area of at " -"least 225 square metres. With an area this size, the building will be able " -"to serve as an IDP camp for the residents of Sirahan whose homes are " -"affected by the flood." -msgstr "" - -# 3cb1a959acd849588851883772779770 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:317 -msgid "" -"Right-click on the :guilabel:`Bangunan_Sirahan_buffer_20m` layer and click :" -"guilabel:`Query`. Enter the following query for the layer:" -msgstr "" - -# 8948ad04632e4e299971378028a7f862 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:324 -msgid "" -"Click :guilabel:`Test`. The query should return only a handful of features." -msgstr "" - -# df5cc30940a343d6aad43b64a75fc4bb -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:329 -msgid "" -"Take a closer look at the remaining buildings. You can inspect the features " -"of each individually by using the :guilabel:`Identify Features` tool." -msgstr "" - -# d05448b7fb4e4fafa52a3384a6561b87 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:336 -msgid "" -"In the very south tip of Sirahan you should find a building that is " -"identified as a hospital. This building is, in fact, a real world hospital, " -"and it is an actual IDP camp. Compare it with your result. This should be " -"one of the buildings that your analysis deems suitable as a camp, and when " -"you consider that it is also a hospital, it clearly makes a good location." -msgstr "" - -# 783f1041e6a343a49cc7db1a9b84115a -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:349 -msgid "Summary" -msgstr "" - -# 574bb8e75f754842bb4128111fac35e9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:351 -msgid "" -"In this module we reviewed the various Geoprocessing tools and spatial " -"queries, and we used some of them to analyse our problem – where to put an " -"IDP camp." -msgstr "" - -# 1a82898063264f10baafede118a5f88c -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:355 -msgid "" -"This is yet another key component of contingency planning, and luckily it’s " -"not difficult to perform with GIS." -msgstr "" - -# cc47b8b0baa641a4be73e060e96bff81 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:359 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.po deleted file mode 100644 index a8c80afb..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.po +++ /dev/null @@ -1,327 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-04-02 17:14+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 2ea04f2d14d74c2bb7d7d1f404131e03 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:6 -msgid "Module 4: Planning an Evacuation Route Based on Hazard Information" -msgstr "" - -# d6f3bf67e67e4e06b8bad6b176bb6400 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 02fdc6030cee4a35ac74a277796dfe90 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:10 -msgid "Understand the concept of shortest path and fastest route" -msgstr "" - -# 9a6c5b4aedf44c4f8d2c139bdaccdcb3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:11 -msgid "Use the Road Graph plugin" -msgstr "" - -# 4756d85a1e564dfd8cff77668fa53d4f -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:12 -msgid "Set up speed and road direction" -msgstr "" - -# 3bb73d4a0e954d5bbbc056c082cac78e -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:13 -msgid "Determine start and destination points" -msgstr "" - -# 72872f1215654fe791b1eb6538353ad6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:14 -msgid "Conduct route analysis and selection" -msgstr "" - -# 07e6bf1a5c6646fc87112f79438158e2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:16 -msgid "" -"By now you should have a pretty good understanding of how |project_name| " -"works and its operations." -msgstr "" - -# 5b7d3eea5b434f929d9be5f01a08b168 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:19 -msgid "" -"You know how to add layers, and how to define keywords so that |" -"project_name| can recognise layers appropriately. Now that we can use |" -"project_name| effectively to run scenario analyses, we will look at other " -"QGIS functionality that will help us in preparing contingency plans." -msgstr "" - -# ad19f101ee2e48b2a6e16c9b9f479bb3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:25 -msgid "" -"In this module, we will learn how to perform a GIS analysis in order to " -"determine an appropriate evacuation route in the event of a disaster." -msgstr "" - -# 6377e62167354a8eadfd3e55a44fcfd0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:28 -msgid "" -"The term **fastest route** indicates the route a person can take between " -"point A and point B that will allow them to cover the distance in the least " -"amount of time." -msgstr "" - -# 534e837901d848b2b60b12182f6765c1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:32 -msgid "" -"Similarly, **shortest path** indicates the route that will allow a person to " -"get from point A to point B with the least distance travelled. In theory, " -"this would be a straight line between point A and point B, but in reality " -"this is impractical, because travelling in a straight line means climbing " -"hills and going around buildings and fences. Of course this is why we use " -"roads, and why we calculate fastest and shortest routes using roads." -msgstr "" - -# 6d2d2665b0ae4591816b7be6c77f29b5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:40 -msgid "" -"We will use the Road Graph plugin in this module, which does just that. If " -"we provide two points, the plugin is able to calculate either the fastest " -"route or the shortest path between them." -msgstr "" - -# ffe8347c7dbc4cc38eaf6f373933d197 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:45 -msgid "1. Road Graph plugin" -msgstr "" - -# ecabea39906f4cfcae9c75218d486cf5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:47 -msgid "" -"We will be continuing with the previous example, which you should have " -"saved. We won’t be using the |project_name| plugin in this module, so you " -"may close the panel if you like." -msgstr "" - -# d6ce543f30fe4223973c516768c800f5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:51 -msgid "Open the project in QGIS." -msgstr "" - -# dfe9ed0e79cf4da99f599619a1a98aa2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:53 -msgid "" -"We will use a pre-prepared roads layer in this module, which may be slightly " -"more detailed than OpenStreetMap. Remove the :guilabel:`planet_osm_roads` " -"layer and add :guilabel:`Jalan_Sirahan`, which is located in the :file:`qgis/" -"Sirahan/` directory. You should have the following layers:" -msgstr "" - -# 7b254ce9145a4cdd8d34cada827e5e90 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:63 -msgid "" -"We will be using a plugin that comes installed with QGIS. Right-click on the " -"toolbars to see which toolbars are activated, and select :guilabel:`Shortest " -"path`." -msgstr "" - -# ecbd78d717da48988404b21ae78b570a -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:70 -msgid "" -"A new plugin window will appear in your project window that looks like this:" -msgstr "" - -# ee473868cc244b9cae414842e9183ca6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:76 -msgid "2. Editing plugin settings" -msgstr "" - -# c72a734ac834478a8ef3d345286b8d11 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:78 -msgid "" -"We must edit some settings in order for the :guilabel:`Shortest path` plugin " -"to work. Go to :menuselection:`Vector ‣ Road graph ‣ Settings`." -msgstr "" - -# 98d347ce29844975a380761406731aea -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:85 -msgid "" -"Make sure that :guilabel:`hour` and :guilabel:`kilometer` are selected as " -"the units." -msgstr "" - -# 2271955ea901425d94dcc4ecaed59464 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:88 -msgid "Set :guilabel:`Topology tolerance` to :kbd:`4`." -msgstr "" - -# e0177d4b76f546eea8d6e8ca4cd70311 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:90 -msgid "" -"On the :guilabel:`Transportation layer` tab, select :guilabel:" -"`Jalan_Sirahan` as the layer. This layer contains the streets that the " -"plugin will use to calculate routes. The rest will remain the same. It " -"should look like this:" -msgstr "" - -# 965f3950da7a4e4089e12ba1a9e2df83 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:97 -msgid "" -"On the :guilabel:`Default settings` tab, we must fill in the direction and " -"speed. Choose :guilabel:`two-way direction` and :kbd:`25` for the speed " -"(meaning 25 km/hr). This assumes that traffic can go in both directions at a " -"maximum speed of 25 km/hr." -msgstr "" - -# 302d5be6f19c44769f81f0110610f98a -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:105 -msgid "Click :guilabel:`OK`." -msgstr "" - -# 80f87d76e00648da9df67b96e376a308 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:108 -msgid "3. Choosing start and destination points" -msgstr "" - -# 3eb9d6d0d75348d09e4876f1faa70b76 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:110 -msgid "" -"The Road Graph plugin calculates either the shortest or fastest route " -"between two points, so we need to provide a start point and an end point for " -"an evacuation route." -msgstr "" - -# 8dbb2ae82794491ca1820a8b89863081 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:114 -msgid "" -"Of course an evacuation route should be for all people in an area, but we " -"can experiment with different start points and see if evacuation routes will " -"be different in different areas." -msgstr "" - -# b19b0e600b524e7e9b51bbacabe7c8b4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:118 -msgid "" -"On the Road Graph panel, click on the plus button next to :guilabel:`Start` " -"and then click somewhere on the map to indicate the first point of your " -"evacuation route. This would be the initial point for the evacuation route " -"in the time of a disaster." -msgstr "" - -# ee3320a52871438b8100facbe829d5ee -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:126 -msgid "" -"Your starting point will be marked as a green point and the coordinates of " -"the point will be recorded in the :guilabel:`Start` input box." -msgstr "" - -# 3a6a4dbae61a4d419e396ff3bfd1698c -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:129 -msgid "" -"Now we need to assign the destination of our evacuation route. Where will " -"people be evacuated to? Because this is an example, we don’t have a great " -"idea of where an appropriate place would be. We might use GIS to determine " -"appropriate locations, which would most likely be high ground in the event " -"of a flood. For this example, we will choose a destination at the south-east " -"corner of the village." -msgstr "" - -# 10c9ef5e453740b08cf5a27efa6760d3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:137 -msgid "" -"Click the plus sign next to :guilabel:`Stop` and click somewhere on the map. " -"The destination will be marked with a red point." -msgstr "" - -# eb8218891b2b42678d2f6598555fdffb -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:143 -msgid "" -"Choose :guilabel:`Length` or :guilabel:`Time` next to :guilabel:`Criterion`. " -"This determines whether Road Graph will look for the shortest distance or " -"the shortest amount of time." -msgstr "" - -# 6e39f4f881e141ebb69c8bad7e2a7e26 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:147 -msgid "Click :guilabel:`Calculate`." -msgstr "" - -# bba23bceafc84c1ba887759ac1caad91 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:149 -msgid "" -"The time and distance required for the evacuation route will be displayed." -msgstr "" - -# cb1c020163824bcea3492e217d86f2da -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:154 -msgid "" -"In this example, the length of the fastest route between our two points is " -"about 1.97 kilometres and the travel time is 0.0788 hours, which is about 5 " -"minutes. The time in our example is determined by the distance and our " -"default speed of 25 km/hr. The speed can be changed, and can even be set to " -"different amounts for each segment of road." -msgstr "" - -# f894ee0d00874bb68a525eab5f0a6987 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:160 -msgid "The route appears on our map:" -msgstr "" - -# 0fc690340ea84ed3bb161db8414ce79a -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:165 -msgid "" -"To save the evacuation route as a separate layer, go to :menuselection:" -"`Export ‣ New temporary layer`, and click :guilabel:`OK`." -msgstr "" - -# d80632c208f54a61a06dd3f4be95de18 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:171 -msgid "" -"You may need to choose a CRS for the new layer. UTM zone 49S should work " -"fine." -msgstr "" - -# 46a1665ce6134996ba779b6eb1723e59 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:174 -msgid "" -"The layer will be added to your Layers panel as :guilabel:`shortest_path`, " -"but you still need to save the layer." -msgstr "" - -# 887ca39069a844bba13af84a1e9e4141 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:177 -msgid "To save, right-click on the layer and click :guilabel:`Save as…`" -msgstr "" - -# 213800dc4c9f4f2f99ece4cc0e3407ac -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:180 -msgid "Summary" -msgstr "" - -# d6875b2182ea43c890848ad4f102a0fa -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:182 -msgid "" -"In this module we’ve learned how to calculate the shortest distance between " -"two points using the Road Graph plugin. Using this you can easily determine " -"evacuation routes from various areas. Evacuation routes are important for " -"contingency plans, and those living in threatened areas can be educated with " -"the quickest and safest routes to take in the event of an emergency." -msgstr "" - -# 3f01bbe606f54a2c8365f75885205cad -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:189 -msgid ":ref:`Go to next module --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.po deleted file mode 100644 index c0e85bb3..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.po +++ /dev/null @@ -1,730 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-04-02 17:14+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 0f631676d93048b4a2897a6c1ca9a7d6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:6 -msgid "Module 5: Calculating Damages and Losses" -msgstr "" - -# d4b7064c25c24d37898f528c3ec05931 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# f70837ab5bd24189974c1b3c5e3decc9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:10 -msgid "" -"Understand the definition of damages, losses and their calculation based on " -"community exposure data" -msgstr "" - -# 2b738280189f4dfbaca1aaed46e61583 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:12 -msgid "Understand damage and losses assessment values based on BNPB and BPBD" -msgstr "" - -# 9d330ef0c5984ef6b298a095e74e32e3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:13 -msgid "Make a damage and losses map" -msgstr "" - -# d8bdf14897db42c79adcaabaf409832b -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:14 -msgid "Calculate damage area" -msgstr "" - -# 19b2d81a07e34d1c9fba3544685ec62b -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:15 -msgid "" -"Manipulate attribute data of affected features to obtain damage values for " -"each object" -msgstr "" - -# 5b343e8cdbb549c1a0a66067204e02cd -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:17 -msgid "" -"Manipulate attribute data of affected features to obtain loss values for " -"each object" -msgstr "" - -# 3c963d8e85b946838403263fc77ac135 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:19 -msgid "" -"Group attribute data for administrative areas (hamlet, village, subdistrict)" -msgstr "" - -# 21c19f938dfe4cb29fca357bbdb1029b -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:21 -msgid "" -"Join attribute data for administrative areas (hamlet, village, subdistrict)" -msgstr "" - -# 7150aa59a7f0486d94777332b492248d -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:23 -msgid "Present damage and loss values using charts" -msgstr "" - -# 348d3181f98248a0a0b0b493ed44c97d -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:25 -msgid "" -"A **Damage and Loss Assessment (DaLA)** is usually created after a disaster. " -"The standard DaLA methodology was developed by the UN Economic Commission " -"for Latin America and the Caribbean (UN-ECLAC) in 1972, and has evolved with " -"various international organisations since. Simply, it is a methodology for " -"approximating damage and losses due to a disaster, basing calculations on a " -"country’s economy and individual livelihoods to define the needs for " -"recovery and reconstruction." -msgstr "" - -# a56c1a9512064c47bb93edd6bcb5c4d6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:34 -msgid "A Damage and Loss Assessment includes the following:" -msgstr "" - -# 3999ed8988944f5c9e0b59635d60ac62 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:36 -msgid "" -"Damage calculated as the replacement value of totally or partially destroyed " -"physical assets" -msgstr "" - -# 9144ddb67f6d48d1873e30ec5564e17d -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:38 -msgid "" -"Losses in the flows of economy that arise from the temporary absence of the " -"damaged assets" -msgstr "" - -# 2ce894f6da8348d0847acefcde064334 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:40 -msgid "" -"The resultant impact on post-disaster macroeconomic performance, with " -"special reference to economic growth/GDP, the balance of payments and fiscal " -"situation of the government." -msgstr "" - -# 13ac5957b2994cf9804694231e209608 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:44 -msgid "" -"In this module we will learn how to calculate some of the basic data used in " -"a DaLA, and use various QGIS functions to design a thematic map that shows " -"damage and loss." -msgstr "" - -# 974e07f721ee494c934a0a907423d0ff -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:49 -msgid "1. BPBD damage assessment guide" -msgstr "" - -# 67e5581b0a8445728cec69bf3cc43211 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:51 -msgid "" -"The BPBD has created a guide for damage and loss assessment for Indonesia, " -"which defines varying degrees of damage and the economic impact of " -"individual elements. Parts of this definition are shown here:" -msgstr "" - -# 8fbf448697754603941d411d20dfe8ea -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:59 -msgid "" -"Notice that there are several elements at work here. First, damage to " -"different types of infrastructure is “valued” differently. To put losses " -"into monetary terms, the loss of a bridge has a loss value as does the loss " -"of a public building or a private home. Then, depending on whether a feature " -"suffers heavy, medium or low damage, a multiplier is applied to determine " -"the value of the loss." -msgstr "" - -# ca5baca07a984f5a85b7d6f861190ae5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:66 -msgid "" -"By adding up all of the damage it is possible to assess the total damages " -"caused by a disaster. In the remainder of this module, we will calculate the " -"value of the losses in our Sirahan project, and see how we can display them " -"graphically using our map, based on the damage suffered in each hamlet." -msgstr "" - -# 2c356e52d596430a94a4b1c78abf563c -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:73 -msgid "2. Damage and losses assessment map" -msgstr "" - -# fd239d1ed6a54b1f901491e9679d9fdf -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:75 -msgid "" -"We will create a damage and loss assessment map using our data from Sirahan " -"village that we have been working with throughout this unit." -msgstr "" - -# f7f7b6db73ed4c47a3b416b8c880e407 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:78 -msgid "" -"Open QGIS and make sure that the following layers are loaded into your " -"project:" -msgstr "" - -# a35056d10b1846839144ef470438c8c0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:80 -msgid "area_terdampak_Sirahan" -msgstr "" - -# e301aa19f326473689b84cedb9550bab -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:81 -msgid "Jalan_Sirahan" -msgstr "" - -# 8678c6b99a70413cb5ba1b29ce6d18ec -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:82 -msgid "Sungai_Sirahan" -msgstr "" - -# a74087d8d4d046228f5d3df3a5a0f1aa -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:83 -msgid "Batas_Desa_Sirahan" -msgstr "" - -# 673db13bced146929e13f48407eca371 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:84 -msgid "Bangunan_Sirahan" -msgstr "" - -# 283ff229e00742638be5950aedaeb373 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:89 -msgid "" -"We will assume that all the buildings in the :guilabel:" -"`area_terdampak_Sirahan` layer (hazard zone) suffered heavy damage from the " -"disaster. Let’s create a spatial query to filter out these buildings." -msgstr "" - -# db03bacc16b44af5afb10f3b50679330 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:93 -msgid "" -"Go to :menuselection:`Vector ‣ Spatial Query ‣ Spatial Query` and enter the " -"fields like this:" -msgstr "" - -# 2ebcfd5d283f40b6ac08cc0be2e8c097 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:99 -msgid "" -"We now have a group of buildings selected which we are assuming will suffer " -"heavy damages. According to the BNPB Guide, we can assess the loss of " -"heavily damaged buildings at a rate of 1.8 million Rp. per square metre, and " -"the multiplier factor is 70%. Our formula for calculating losses is:" -msgstr "" - -# 44586cad04614691aaf026c8db30bee2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:104 -msgid "*Total Building area x Loss Value per m² x Multiplier factor*" -msgstr "" - -# 634afac95ece494c931ae774cd5b3432 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:106 -msgid "Therefore we want to calculate:" -msgstr "" - -# 74ae8ee0bd9a44cfa24f181ab3bd49e4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:108 -msgid "*Total Building Area x 1.8 million Rp. x 70%*" -msgstr "" - -# 6717aa35a1244a80a325f9e5bb750b6f -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:110 -msgid "in order to get a calculation of the value of total losses." -msgstr "" - -# 4c7efb326bfb49e7881f9fa5cdb51536 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:112 -msgid "" -"We will use the Intersect Geoprocessing tool, so that we can combine " -"attributes from our district layer with the selection of buildings we have " -"just made." -msgstr "" - -# 8185aa31f88c4fc085a69dbe65363ea7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:116 -msgid "" -"Go to :menuselection:`Vector ‣ Geoprocessing Tools ‣ Intersect` and fill in " -"the fields as follows:" -msgstr "" - -# c6d3361b436146d2b242743b94e7ad3e -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:122 -msgid "Save the result as :kbd:`Bangunan_Terdampak`." -msgstr "" - -# db079ade05ff40bfb27537382ae97d7d -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:124 -msgid "Hide the original buildings layer so that your map looks like this:" -msgstr "" - -# 06f9d4ea78664ae5b096aa2a37b01bb0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:129 -msgid "" -"Run Intersect again, this time with the new :guilabel:`Bangunan_Terdampak` " -"layer and the :guilabel:`Batas_Desa_Sirahan` layer, so that the attribute " -"table will include the DUSUN attribute. Name the new layer :kbd:" -"`bangunan_terdampak_perdusun.shp`." -msgstr "" - -# 05507717ec994c299f59133d96bd349a -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:138 -msgid "3. Calculating damage area" -msgstr "" - -# 105a768670be46019fa9bd53329b6e5f -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:140 -msgid "" -"On the attribute table of :guilabel:`bangunan_terdampak_perdusun`, click " -"the :guilabel:`Toggle Editing` button." -msgstr "" - -# e751409e95184d2da586ab5f4ce98ebc -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:146 -msgid "Click the :guilabel:`New Column` button." -msgstr "" - -# 043d3d31edc74210a3af63f167b30e95 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:151 -msgid "Create a new column named :kbd:`Damage` of type decimal number:" -msgstr "" - -# 672ea040e6d543c49bdc960b380a0325 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:156 -msgid "" -"To calculate the damaged area of affected buildings we will use the field " -"calculator to determine the number of square metres in each building " -"feature. Click on :guilabel:`Field Calculator`." -msgstr "" - -# 80e88cead65d489795b3736addd59814 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:163 -msgid "" -"Check the box next to :guilabel:`Update existing field` and select :guilabel:" -"`Damage_Area` in the drop-down box." -msgstr "" - -# b1d54d1c6e0d4414b3b5bbdb0f2eb603 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:166 -msgid "" -"Find :guilabel:`$area` under :guilabel:`Geometry` in the function list and " -"double-click on it, so that it appears in the Expression box at the bottom. " -"It should look like this:" -msgstr "" - -# 29641abb8860410c94fcb04ec3e8e4d3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:173 -msgid "" -"Click :guilabel:`OK`. You will see that the column is filled in with the " -"area, in square metres, of the buildings." -msgstr "" - -# d622e5eb5f2d456ca15268f6dc5fe5b9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:179 -msgid "" -"Click the :guilabel:`Toggle Editing` button and be sure to save your edits." -msgstr "" - -# f4983efe27d84edda9f47ef85c8c60e5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:182 -msgid "4. Calculating damages using the Group Stats plugin" -msgstr "" - -# 05093db80de84f1393a54cb53332bd27 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:184 -msgid "" -"We will be using a QGIS plugin called Group Stats in order to calculate " -"damages by each hamlet within Sirahan. You must be connected to the internet " -"to install this plugin." -msgstr "" - -# d66798941fc242d0b20d4693cc1c2d9b -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:188 -msgid "Go to :menuselection:`Plugins ‣ Manage and Install Plugins`." -msgstr "" - -# 425974e61479451885e8cdb8875bfbd9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:190 -msgid "" -"Go to the :guilabel:`All` tab. Type :kbd:`group stats`. When you find the " -"plugin, select it and click :guilabel:`Install`." -msgstr "" - -# 05bac4fc6b3942799d691f065cff3ad3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:196 -msgid "" -"Once it is installed, you will find Group Stats on :menuselection:`Vektor ‣ " -"Group Stats ‣ Group Stats` or your Toolbar. Click it." -msgstr "" - -# 798787461b1249f9a0bd6b2d3354ddc4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:202 -msgid "The Group Stats window will appear." -msgstr "" - -# efef2dae66234fcd9bb71b9115843e9c -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:204 -msgid "" -"To calculate building damages per hamlet, select :guilabel:" -"`bangunan_terdampak_perdusun` in the drop-down box under :guilabel:`layers`." -msgstr "" - -# e6b06aba64a647029874d1e66444adda -# 148de0ca52534189bdd9a50e2668a51a -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:208 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:264 -msgid "" -"Find :guilabel:`Nama_Dusun` in the list of fields. Drag and drop it to :" -"guilabel:`Rows`." -msgstr "" - -# c13d68829c7a4fd29525c72048a7f630 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:211 -msgid "" -"Find :guilabel:`Damage` and :guilabel:`sum` in the list of fields. Drag and " -"drop them to :guilabel:`Value`." -msgstr "" - -# cc98f8a02028419ab64e335335244e09 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:214 -msgid "Click :guilabel:`Calculate`. The results should look like this:" -msgstr "" - -# 0efe4f2f1a294af0b0b47c93b5709ce5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:219 -msgid "" -"Go to :menuselection:`Data ‣ Save all to CSV files` and save it as :kbd:" -"`BNG_Damages`." -msgstr "" - -# f97fb4cd43cb48df96fe64bd0a9d6e12 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:223 -msgid "5. Calculating losses" -msgstr "" - -# d06b4b91021d409db853f198d0b0f53b -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:225 -msgid "" -"We’ve calculated the damaged area and we’ve created a table with damage data " -"for various hamlets in Sirahan. Now let’s implement our losses formula in " -"the same way." -msgstr "" - -# f25aacac1bbb44f3a922dbeabdf190f6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:229 -msgid "" -"Go back to the attribute table for :guilabel:`bangunan_terdampak_perdusun` " -"and add a new column named :kbd:`Losses`." -msgstr "" - -# 5ba5c226e49a416089ab929ee5b5ba8e -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:235 -msgid "Open the :guilabel:`Field Calculator`." -msgstr "" - -# 49f9f1f6ed0d4975a31540a33d7e8157 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:237 -msgid "" -"Check the box next to :guilabel:`Update existing field` and choose :guilabel:" -"`Losses` in the function list." -msgstr "" - -# ffd33e30a54c4c4793d032ebf58b272f -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:240 -msgid "At the bottom in the Expression box, enter the following formula:" -msgstr "" - -# 88f8a1246f7042308ea911171cc68f49 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:242 -msgid "*“Damage” * 1800000 * 0.7*" -msgstr "" - -# 6a588f1251bb4f4287c8dac8caae48dd -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:247 -msgid "" -"Your new column is now filled with information calculated from this formula, " -"which assesses the value of losses in Rp for each individual building." -msgstr "" - -# dc3819083f2f41d2a7517c7c02d2aa51 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:250 -msgid "Save the layer and end the editing session." -msgstr "" - -# 01f7f92966b942dab5cf263dc48b730d -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:253 -msgid "6. Calculating losses using the Group Stats plugin" -msgstr "" - -# a574b2c9464345069f7ef196d198f130 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:255 -msgid "Now let’s calculate losses per hamlet using the Group Stats again." -msgstr "" - -# a853471ec6684a3b9cd9261a6ab418be -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:257 -msgid "Open the Group Stats window." -msgstr "" - -# 3ec4778a41304fe3bc60f153d92f1802 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:259 -msgid "" -"Select :guilabel:`bangunan_terdampak_perdusun` in the drop-down box under :" -"guilabel:`layers`." -msgstr "" - -# 10d8ed5554be432f905f88555275840e -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:262 -msgid "Click :guilabel:`Clear` to start a new analysis." -msgstr "" - -# c397524987dd429e8710f10bfa5e33a7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:267 -msgid "" -"Find :guilabel:`Losses` and :guilabel:`sum` in the list of fields. Drag and " -"drop them to :guilabel:`Value`." -msgstr "" - -# 25814b6003074c0dbfd864c0852d23aa -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:270 -msgid "" -"Click :guilabel:`Calculate`. The new table shows the losses in each hamlet:" -msgstr "" - -# ad05f6fd0547427dbcdaa0da978deceb -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:275 -msgid "" -"Go to :menuselection:`Data ‣ Save all to CSV files` and save it as :kbd:" -"`BNG_Losses`." -msgstr "" - -# 2e107eaea2494b91b7b06eb5b55b7bd3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:279 -msgid "7. Joining data" -msgstr "" - -# ef9c4fd629004302bed66e433b674fd6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:281 -msgid "" -"Now we will join the tables that we created to our :guilabel:" -"`Batas_Desa_Sirahan` attribute table and then use them to add new columns to " -"the file." -msgstr "" - -# 973224c4fbad4d0b96ffca13bfe981bb -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:285 -msgid "" -"Add the files :file:`BNG_Damages` and :file:`BNG_Losses` into QGIS, using :" -"guilabel:`Add vector layer`. Make sure you set the file type as CSV in the " -"dialog so that CSV files appear." -msgstr "" - -# eb14e3251c474e6e89c4b23277373266 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:292 -msgid "" -"The new files will appear in your Layers panel but not on your map, because " -"they are not geographic data files, but rather tables." -msgstr "" - -# 40cd528b451747f7b5dcaee7c6059321 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:298 -msgid "" -"Now we will perform an operation to join the layer :guilabel:" -"`Batas_Desa_Sirahan` with :guilabel:`BNG_Damage`. Right-click on the :" -"guilabel:`Batas_Desa_Sirahan` layer and open the Properties window." -msgstr "" - -# 0fed8ae2d36647fdab02a9c335a728ac -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:303 -msgid "Go to the Joins tab:" -msgstr "" - -# 533311602eb9444caf6bb808b3ad86ec -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:308 -msgid "Click the plus sign and fill in the following fields:" -msgstr "" - -# 8ee883408ca84a3790a0fd821113d8c0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:310 -msgid "Join layer: BNG_Damages" -msgstr "" - -# b898d454544f430b96518ae471441636 -# 0bfc34aac9fe4932ad2182643e009849 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:311 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:322 -msgid "Join field: Nama_Dusun" -msgstr "" - -# 64f38fa7fc164b6193110506cf6126c9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:312 -msgid "Target field: Nama_Dusun" -msgstr "" - -# 48476de6403f4526ac860db371c9bf36 -# bc19d222bc6842bbb800029c243abf67 -# d6c4a9e4e8384d338fc086f6f46204b6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:317 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:325 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:357 -msgid "Click :guilabel:`OK`." -msgstr "" - -# 82f886c4fda443a5b65aca91aaeb3fbd -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:319 -msgid "Click the plus sign again and fill in the following fields:" -msgstr "" - -# f114822a20e044f59e85791903342e14 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:321 -msgid "Join layer : BNG_Losses" -msgstr "" - -# ba4261f8db6c48f5be9e30d01216ffb7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:323 -msgid "Target field : Nama_Dusun" -msgstr "" - -# a23a0c24f26b4e0fb3072899ce101a83 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:327 -msgid "" -"Close the Properties window. Open the attribute table for :guilabel:" -"`Batas_Desa_Sirahan`. The BNG_Damages and BNG_Losses columns are now " -"attached based on the hamlet." -msgstr "" - -# d0f4ae710886420f9cae1d093414cf90 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:335 -msgid "" -"Note that the BNG_Damages and BNG_Losses columns are not permanently " -"attached, but rather joined together with our file in the computer memory. " -"We should save it as a new layer. Close the attribute table. Right-click " -"the :guilabel:`Batas_Desa_Sirahan` layer and click :guilabel:`Save as`. Name " -"the new layer :kbd:`analisis_dala_Sirahan.shp`." -msgstr "" - -# df4154d175154e32a04709f4cd7b1edc -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:342 -msgid "" -"We need to convert the BNG_Damages and BNG_Losses column in our new layer to " -"real numbers. Open the attribute table for :guilabel:" -"`analisis_dala_Sirahan`. Click the :guilabel:`Toggle editing` button and " -"open the Field Calculator." -msgstr "" - -# 702ff7bc21bd4c4bab0fad13fde2d93e -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:347 -msgid "" -"This time, we will create a new field. Enter as the new field name :kbd:" -"`Damages`, with the output field type as :guilabel:`Decimal number (real)`. " -"Enter :kbd:`20` as the field width and the precision as :kbd:`10`. Under the " -"function list double-click :guilabel:`BNG_Damage`. The window should look " -"like this:" -msgstr "" - -# b0dc74ebf604460b8132cffe6cb41940 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:359 -msgid "" -"Now, we will create another new field for Losses. Enter as the new field " -"name :kbd:`Losses`, with the output field type as :guilabel:`Decimal number " -"(real)`. Enter :kbd:`20` as the field width and the precision as :kbd:`10`. " -"Under the function list double-click :guilabel:`BNG_Losses`. Click :guilabel:" -"`OK`." -msgstr "" - -# 12da265270f34385b4b3c59585803952 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:366 -msgid "Exit editing mode and save your changes." -msgstr "" - -# d1c91023c88a425f813b502e76b38ddc -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:370 -msgid "8. Creating a chart" -msgstr "" - -# 36cb4a76b1ac4ea89eccbe7c5f8922ac -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:372 -msgid "" -"We will conclude by representing these damage and loss values as a chart in " -"QGIS." -msgstr "" - -# 9fdf6a5130a54c29a1ed65d9f02240c3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:374 -msgid "" -"Open the the Properties window for :guilabel:`analisis_dala_Sirahan`. Go to " -"the :guilabel:`Diagram` tab." -msgstr "" - -# c6559cf991a84252b2240a996ecdaafc -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:377 -msgid "Check the box next to :guilabel:`Display diagrams`" -msgstr "" - -# 46fbcd5c0d044b6d8e7effa86d49d00c -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:379 -msgid "Make sure :guilabel:`Pie chart` is selected in the drop-down box." -msgstr "" - -# 32e320e473b344939046e79d6885b4a9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:381 -msgid "" -"Under :guilabel:`Available attributes`, select :guilabel:`Damages` and click " -"the plus(+) button." -msgstr "" - -# 62749d036d35428fa2494372b536fff2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:384 -msgid "" -"You can change the colour by double-clicking the colour under :guilabel:" -"`Assigned attributes`. The settings should look like this:" -msgstr "" - -# 5af7c32b4f3c41059c9aa93b1b953ff8 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:390 -msgid "Go to the :guilabel:`Size` tab." -msgstr "" - -# 86d3faefe12b4a9ab5897ccd6a96b85e -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:392 -msgid "" -"Disable the fixed value, and then click :guilabel:`Find Maximum Value`. " -"Change the scale value to :guilabel:`Area`." -msgstr "" - -# 3e90823dd95d4e329078a93fd61323f4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:398 -msgid "" -"You may change the value next to :guilabel:`Size` also if you feel the " -"diagram is too big." -msgstr "" - -# 51e2c5c1f8904dcc9f7bddba9902f482 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:401 -msgid "The resulting map will look like this:" -msgstr "" - -# 5557d29413c247f8b002e8271d26092a -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:406 -msgid "" -"The size of each bubble represents the loss values in each hamlet. The " -"bigger the size, the heavier the losses. Creating a map with this sort of " -"chart can be an effective way to communicate the impact of a disaster. Now " -"you can lay out your map, and then create another map showing Losses." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/index.po b/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/index.po deleted file mode 100644 index d928ac8a..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/index.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Language-Team: French (https://www.transifex.com/inasafe/teams/57762/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 973ddd4e3be44cdd8b6058cf2be0a288 -#: ../../source/training/old-training/intermediate/qgis-inasafe/index.rst:4 -msgid "Unit 4: Data Analysis Using QGIS and |project_name| Intermediate Level" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-00-preface.po b/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-00-preface.po deleted file mode 100644 index eda3ff97..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-00-preface.po +++ /dev/null @@ -1,224 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:02+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 219d357a37634c61b66f07f6fe708b26 -# f2cf1c8eae1c4396ba88b18cb075e253 -#: ../../source/training/osm/Chapter-00-preface.rst:5 -#: ../../source/training/osm/Chapter-00-preface.rst:91 -msgid "Preface" -msgstr "" - -# 6a1cc6db129243efae0f127c985f0271 -#: ../../source/training/osm/Chapter-00-preface.rst:8 -msgid "Disclaimer" -msgstr "" - -# 79d63f09ebec4972bc5d22e94dcf2e88 -#: ../../source/training/osm/Chapter-00-preface.rst:10 -msgid "" -"This document is initial draft and still in reviewing phase by these parties:" -msgstr "" - -# d1bcd25359af41debe82d54a1c164294 -#: ../../source/training/osm/Chapter-00-preface.rst:12 -msgid "Badan Nasional Penanggulangan Bencana (|BNPB|)" -msgstr "" - -# d8a2ab4740d143389be37b3afb10d009 -#: ../../source/training/osm/Chapter-00-preface.rst:13 -msgid "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" -msgstr "" - -# 7d1effbf34764c37949298617eaba2e5 -#: ../../source/training/osm/Chapter-00-preface.rst:14 -msgid "Humanitarian OpenStreetMap Team (|HOT|)" -msgstr "" - -# 520426a824ec404a8734350052a1c0af -#: ../../source/training/osm/Chapter-00-preface.rst:16 -msgid "" -"All contents and materials on this document may be changed without public " -"notice." -msgstr "" - -# 563f21c25fe94df494bda7393bd5ed79 -#: ../../source/training/osm/Chapter-00-preface.rst:20 -msgid "Licence" -msgstr "" - -# 41859a45845d4a21978cd68d4e7dc259 -#: ../../source/training/osm/Chapter-00-preface.rst:24 -msgid "" -"All contents and materials in this document are licensed as Creative Commons " -"Attribution Australia (CCbyA)." -msgstr "" - -# d114645f05024cc4bef4fab95332711e -#: ../../source/training/osm/Chapter-00-preface.rst:27 -msgid "You are free:" -msgstr "" - -# 2bdc648a77ee4c7da199e1248c8c7892 -#: ../../source/training/osm/Chapter-00-preface.rst:29 -msgid "to copy, distribute, display, and perform the work" -msgstr "" - -# f01c9d84bd1347cf9bbdcea02ee881f2 -#: ../../source/training/osm/Chapter-00-preface.rst:30 -msgid "to make derivative works" -msgstr "" - -# a1d65dd5ae184cc0ba1d4ad37b7403c3 -#: ../../source/training/osm/Chapter-00-preface.rst:31 -msgid "to make commercial use of the work" -msgstr "" - -# 61533ad60f7e4f9eb0269f441efb163d -#: ../../source/training/osm/Chapter-00-preface.rst:33 -msgid "You must give the original author credit." -msgstr "" - -# 6989cfee309c4a6884e55d7eb1a1cc47 -#: ../../source/training/osm/Chapter-00-preface.rst:35 -msgid "" -"More information about CCbyA License: http://creativecommons.org/licenses/" -"by/3.0/au/deed.en_GB" -msgstr "" - -# c42ec5897e264d098da9cbbe028b0cb0 -#: ../../source/training/osm/Chapter-00-preface.rst:39 -msgid "About Us" -msgstr "" - -# ded60fc646b7452cb08680f22285a91b -#: ../../source/training/osm/Chapter-00-preface.rst:41 -msgid "Badan Nasional Penanggulangan Bencana (BNPB)" -msgstr "" - -# 2ca1634ab0ae4c2fa41d1c95f840ca9d -#: ../../source/training/osm/Chapter-00-preface.rst:45 -msgid "" -"BNPB is Indonesia’s National Disaster Management Agency. |BNPB| is a non-" -"departmental ministerial-level government agency, tasked with providing " -"guidance and direction to the efforts of disaster management that includes " -"disaster prevention, emergency response, rehabilitation and reconstruction " -"in a fair and equal way. |BNPB| functions as a policy maker regarding " -"refugee/IDP management for effective and efficient response. It coordinates " -"the implementation of disaster management activities in a planned, " -"integrated and comprehensive way." -msgstr "" - -# 16b41f190325409aa54c607fc5555562 -#: ../../source/training/osm/Chapter-00-preface.rst:55 -msgid "http://bnpb.go.id" -msgstr "" - -# f3738d63b44f401596b3f45dfd527efe -#: ../../source/training/osm/Chapter-00-preface.rst:58 -msgid "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" -msgstr "" - -# c7250e48c7b54fc8b7317237aaaace9b -#: ../../source/training/osm/Chapter-00-preface.rst:62 -msgid "" -"The Australia-Indonesia Facility for Disaster Reduction (|AIFDR|) is a joint " -"initiative between the governments of Australia and Indonesia. They work to " -"strengthen Indonesia's ability to reduce the impact of disasters. The " -"Australian and Indonesian governments at a special ceremony on 15 July 2010 " -"launched the Australia-Indonesia facility. The launch marks an important " -"event in the strong relationship now shared by both countries and their " -"united commitment to better prepare for and respond to natural disasters in " -"Indonesia." -msgstr "" - -# 044bd1e0983b422dbf5521fd2cf031c6 -#: ../../source/training/osm/Chapter-00-preface.rst:71 -msgid "http://aifdr.org" -msgstr "" - -# a34b979099d84a3d839644ed6bfdd5e6 -#: ../../source/training/osm/Chapter-00-preface.rst:74 -msgid "Humanitarian OpenStreetMap Team (HOT)" -msgstr "" - -# 9f20fb2a9d684d50932900917bec1b5c -#: ../../source/training/osm/Chapter-00-preface.rst:78 -msgid "" -"Free, collaborative maps are uniquely valuable to humanitarian work, " -"especially in places where base map data is often scarce, out-of-date, or " -"rapidly changing. OpenStreetMap (OSM) is a web project to create a free and " -"open map of the entire world, built entirely by volunteers surveying with " -"GPS, digitising aerial imagery, and collecting and liberating existing " -"public sources of geographic data. The Humanitarian OpenStreetMap Team (|" -"HOT|) is an initiative to apply the principles and activities of open source " -"and open data sharing towards humanitarian response and economic development." -msgstr "" - -# 6e464d870bc34e9da27f6a497d85a566 -#: ../../source/training/osm/Chapter-00-preface.rst:87 -msgid "http://hot.openstreetmap.org" -msgstr "" - -# 5d7bd91a8bde4c8baaaaa91642201763 -#: ../../source/training/osm/Chapter-00-preface.rst:92 -msgid "" -"Every day thousands of people contribute to OSM, a project with the lofty " -"goal of mapping the world. Most OSM software is free and open source, and " -"the data is open for anyone to use. The idea is simple: if you make a map of " -"your town and we make a map of ours, we can share those maps on a common " -"platform. With enough people contributing, we can collect data throughout " -"the world." -msgstr "" - -# e3d782d070d8415bb5e8a69831890348 -#: ../../source/training/osm/Chapter-00-preface.rst:99 -msgid "" -"Collecting Spatial Data using OpenStreetMap is a step-by-step course " -"designed to help anyone get started with OSM. While it might seem daunting " -"at first, OSM is simple enough that anyone can get started creating maps, " -"and as your understanding grows you'll find that you can do more and more " -"interesting things." -msgstr "" - -# dfb7c1b9a8984510904a836b7ef56230 -#: ../../source/training/osm/Chapter-00-preface.rst:105 -msgid "" -"This tutorial makes few assumptions. It assumes you have used a computer " -"before, and that you have an email address. If you don't have an email " -"address, we suggest you have a friend help you sign up for one. There are " -"many websites where you can get a free email address, such as www.gmail.com " -"or mail.yahoo.com." -msgstr "" - -# 6869381e8cde4d4189470500d19679d8 -#: ../../source/training/osm/Chapter-00-preface.rst:111 -msgid "" -"The only other assumption is that you've used the internet before. Perhaps " -"you're familiar with Facebook or email, and that's certainly enough to get " -"started with OSM. If you're already comfortable using a computer and surfing " -"the web, don't worry – this guide is for you too. No matter your " -"proficiency, we'll take you step-by-step through OSM and you'll be mapping " -"in no time!" -msgstr "" - -# 5b54c3f7908742448912de591aacbaab -#: ../../source/training/osm/Chapter-00-preface.rst:118 -msgid ":ref:`Go to first chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-01-introduction.po b/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-01-introduction.po deleted file mode 100644 index cce458cf..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-01-introduction.po +++ /dev/null @@ -1,145 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# d204398e069540ecbdd3f20363576045 -#: ../../source/training/osm/Chapter-01-introduction.rst:6 -msgid "Chapter 1: Introduction" -msgstr "" - -# 342aabec49b04a108f6faf6b3a1b3223 -#: ../../source/training/osm/Chapter-01-introduction.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# a8a964c8b4cb404bb76a9520e304057e -#: ../../source/training/osm/Chapter-01-introduction.rst:10 -msgid "Understanding OpenStreetMap" -msgstr "" - -# 09ab60b7430b4e40aca7e37e2bc0b544 -#: ../../source/training/osm/Chapter-01-introduction.rst:11 -msgid "Understanding Data Collection Purposes" -msgstr "" - -# 3459dc2490d74048bdfd069fe0adfdb5 -#: ../../source/training/osm/Chapter-01-introduction.rst:13 -msgid "" -"Information is important. With good information and the right understanding, " -"individuals and communities are better able to improve their lives and make " -"good decisions about the future. There are many people and organizations who " -"make decisions that affect our lives. Good information allows these NGO’s " -"(non-government organisations), governments and communities to make better " -"decisions, and hopefully make our lives better." -msgstr "" - -# 5b8f529166b742c6b5d3387985a3b932 -#: ../../source/training/osm/Chapter-01-introduction.rst:19 -msgid "*Satellite Imagery*" -msgstr "" - -# 82ba8f2b49114751a5d89662f46da9ff -#: ../../source/training/osm/Chapter-01-introduction.rst:21 -msgid "" -"Maps are a good way to deliver information. Maps are visual symbols ofour " -"world. They can often demonstrate an idea better than words. This in turn " -"can help us answer important questions. Where is the closest school or " -"hospital? Who has the least access to these facilities? Where is poverty the " -"most problematic? Questions like these can often best be expressed with " -"maps, and maps can help find solutions to these questions." -msgstr "" - -# bd1352de191848439c0b02fab3230262 -#: ../../source/training/osm/Chapter-01-introduction.rst:24 -msgid "" -"As an exercise, get a pen and paper and draw a map of your town or village. " -"What are the most important things to include on the map? What is the most " -"important information? Spend a few minutes making your map, and when you’re " -"finished, think about why the information you included is important, and who " -"it might be important to." -msgstr "" - -# b01b538c2a7d47e09ed600604e091ec9 -#: ../../source/training/osm/Chapter-01-introduction.rst:29 -msgid "*Example of Paper Map*" -msgstr "" - -# 1817117e71994a14bc81de493f6ba42a -#: ../../source/training/osm/Chapter-01-introduction.rst:31 -msgid "" -"If your town is like most, you may have drawn some lines to represent roads, " -"possibly a river or stream. Perhaps you added important buildings such as " -"schools and offices, fields, or boundaries. Whatever you drew, you probably " -"used symbols – a line to symbolize a road, a square to symbolize a building, " -"and so on. Your map is a representation of what is on the ground." -msgstr "" - -# b32d0373a196421b98fd98e1a9c5cb67 -#: ../../source/training/osm/Chapter-01-introduction.rst:37 -msgid "*Example of Symbols that be used in Map*" -msgstr "" - -# a4f1c5e2e36a447da2e8acf8cd296e5c -#: ../../source/training/osm/Chapter-01-introduction.rst:39 -msgid "" -"Your map is informative. You might use a map like this to explain to someone " -"where different places are, where problems are in your community, or merely " -"to help someone find their way around. The use of your map is limited though " -"- there is only one copy of the map. The way you drew it may make sense to " -"you, but perhaps not to someone else who would have drawn their own map in a " -"different way. Because your map is merely on paper, it is difficult to get " -"that information to others. This is why making your map on a computer, in " -"such a way that anyone can access it, can be much more valuable." -msgstr "" - -# 375f29800fb645b2a71f660bb45760c9 -#: ../../source/training/osm/Chapter-01-introduction.rst:46 -msgid "*Digital Map*" -msgstr "" - -# e528419161a94eacb2e190a4fe759237 -#: ../../source/training/osm/Chapter-01-introduction.rst:48 -msgid "" -"OpenStreetMap is a tool for creating and sharing map information. Anyone can " -"contribute to OSM, and thousands of people add to the project every day. " -"Users draw maps on computers, rather than paper, but as we will see in this " -"guide, drawing a map on a computer is not all that different from drawing on " -"paper. We still draw lines to represent roads, fields and anything else and " -"we still represent schools and hospitals with symbols. The important thing " -"is that OSM maps are saved on the internet, and anyone can access them at " -"any time. Most importantly, the data are free." -msgstr "" - -# 0aceebdfae0a4dc6837ab646ca396935 -#: ../../source/training/osm/Chapter-01-introduction.rst:55 -msgid "*OpenStreetMap*" -msgstr "" - -# f22df9bd471f47dc9a8e2a90a8ede6c7 -#: ../../source/training/osm/Chapter-01-introduction.rst:57 -msgid "" -"We hope that you will find OpenStreetMap useful and interesting in your work " -"and activities. By following this guide, you should be able to quickly learn " -"start making digital maps with OpenStreetMap." -msgstr "" - -# 38079e1472ba43c0826d93c411a112e4 -#: ../../source/training/osm/Chapter-01-introduction.rst:59 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-02-getting-started.po b/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-02-getting-started.po deleted file mode 100644 index d3b2740b..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-02-getting-started.po +++ /dev/null @@ -1,364 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 9814a3bcb8794ee3ae6ea44c8cc42c58 -#: ../../source/training/osm/Chapter-02-getting-started.rst:6 -msgid "Chapter 2: Getting Started" -msgstr "" - -# 783c7fb25c8046c88646e03eb1c45b63 -#: ../../source/training/osm/Chapter-02-getting-started.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 2d3eac3b04a84ba687011676434a5805 -#: ../../source/training/osm/Chapter-02-getting-started.rst:10 -msgid "Navigating to the OpenStreetMap Website" -msgstr "" - -# b2ae0081205f455cb8c9619666930b05 -#: ../../source/training/osm/Chapter-02-getting-started.rst:11 -msgid "Know how to navigate OpenStreetMap (search, move, zoom in/zoom out)" -msgstr "" - -# df1a745d1e874edf8dbb4f6b1ca24ef7 -#: ../../source/training/osm/Chapter-02-getting-started.rst:12 -msgid "Know how to export OpenStreetMap into image and changing layers" -msgstr "" - -# d112953df5da4c37b52bb4c5ba778a0d -#: ../../source/training/osm/Chapter-02-getting-started.rst:13 -msgid "Know how to create an account in OpenStreetMap" -msgstr "" - -# e9d47f4174d6406fb3309dca6250ee4d -#: ../../source/training/osm/Chapter-02-getting-started.rst:15 -msgid "" -"In this section we will learn step by step how to navigate the OpenStreetMap " -"website, view maps, and sign up for a user account. After you have your " -"OpenStreetMap account, you will be able to contribute your first points to " -"the map." -msgstr "" - -# 981e164b8eaa4c72af56e936d534ebae -#: ../../source/training/osm/Chapter-02-getting-started.rst:18 -msgid "2.1 Visit the OpenStreetMap Website" -msgstr "" - -# 0ace8e57f2804bcfb26e4cf37a1f7f36 -#: ../../source/training/osm/Chapter-02-getting-started.rst:20 -msgid "" -"Before you begin, be sure your computer is connected to the internet. Then, " -"follow these steps:" -msgstr "" - -# 9e69d9c0d9b7449d9a90d96544de65c3 -#: ../../source/training/osm/Chapter-02-getting-started.rst:22 -msgid "" -"Open your web browser. Common browsers are Firefox, Chrome, Opera, or " -"Internet Explorer." -msgstr "" - -# e1a6b6f01fa94ebfb98e5166cba4c82b -#: ../../source/training/osm/Chapter-02-getting-started.rst:23 -msgid "" -"In the address bar at the top of your browser, type `www.openstreetmap.org " -"`__ and enter" -msgstr "" - -# 4649f1bb2af44da99561f0df31d5f8ec -#: ../../source/training/osm/Chapter-02-getting-started.rst:24 -msgid "When the page has finished loading, you should see something like this:" -msgstr "" - -# 92fdb5d9065d43749bcaab87b7e202fc -#: ../../source/training/osm/Chapter-02-getting-started.rst:29 -msgid "*OpenStreetMap Interface*" -msgstr "" - -# cb206ed053114717b784d7e3e99ee472 -#: ../../source/training/osm/Chapter-02-getting-started.rst:32 -msgid "2.2 Navigate the Map" -msgstr "" - -# 4b704df7b01e4c61ab70b30aed3e68f6 -#: ../../source/training/osm/Chapter-02-getting-started.rst:34 -msgid "" -"The main thing you should see is the map. Move the map by clicking on it " -"with your left mouse button, holding the button down, and dragging your " -"mouse around (see figure below)." -msgstr "" - -# 947613bcba0f4a2ab9c384af8c4cdd44 -#: ../../source/training/osm/Chapter-02-getting-started.rst:39 -msgid "*Some Tools in OpenStreetMap*" -msgstr "" - -# b39a90e1bb3142f59e5285b09b2251b5 -#: ../../source/training/osm/Chapter-02-getting-started.rst:41 -msgid "" -"If you have mouse with scroll wheel, you can zoom in and zoom out your map " -"using scroll wheel in your mouse. If you do not have, you can use :guilabel:" -"`+` and :guilabel:`-` button at the top right corner on your map." -msgstr "" - -# 95fc7af4d904407b88e66f69bbae4121 -#: ../../source/training/osm/Chapter-02-getting-started.rst:47 -msgid "*Navigation Instruction Using a Mouse*" -msgstr "" - -# 8f2b9bd7399147009ee59b39df884e35 -#: ../../source/training/osm/Chapter-02-getting-started.rst:49 -msgid "" -"To search for a place, left-click in the box labeled :guilabel:`search` on " -"the left side of the page. Type name of your town or village and press " -"Enter. A window should appear to the left of the map with the results of " -"your search. Click on the location that looks like the one you want. The " -"map will automatically re-center on the location chosen from the list." -msgstr "" - -# 123c5d8c0e04446397ceede37ae6c291 -#: ../../source/training/osm/Chapter-02-getting-started.rst:56 -msgid "*OpenStreetMap Search Result*" -msgstr "" - -# 0100469795234b09b658343e6c2af4e8 -#: ../../source/training/osm/Chapter-02-getting-started.rst:59 -msgid "2.3 View with Different Map Styles" -msgstr "" - -# b1bded9f5219446b870d0b60c519bc33 -#: ../../source/training/osm/Chapter-02-getting-started.rst:61 -msgid "" -"OpenStreetMap contains geographic data from all over the world. Although it " -"is a single database, the data can be interpreted and styled in different " -"ways. To see this in action, click the :guilabel:`layers` button at right " -"side in your map window." -msgstr "" - -# 5870ee8f065242129e48e137ab5607ff -#: ../../source/training/osm/Chapter-02-getting-started.rst:67 -msgid "*Layer Button to change layers in OpenStreetMap*" -msgstr "" - -# f1b9c1d495a94942ac5938e395b2f1a9 -#: ../../source/training/osm/Chapter-02-getting-started.rst:69 -msgid "" -"Click on the different layer options for the map. Each layer has a different " -"style. For instance, the Transport Map emphasizes transportation routes such " -"as roads and bus stations, while the Humanitarian Map emphasizes public " -"facilities such as schools, hospitals and government offices. All of these " -"views are possible because of the structured data contained in the OSM " -"database. See the figure below for a comparison of the Transport Map and the " -"Humanitarian Map." -msgstr "" - -# 05a78515731542d2a0a56e3abc7967b1 -#: ../../source/training/osm/Chapter-02-getting-started.rst:76 -msgid "*(Top) Humanitarian (Bottom) Transport Map*" -msgstr "" - -# 61bc2f0ba2694c778e524069589c4024 -#: ../../source/training/osm/Chapter-02-getting-started.rst:79 -msgid "2.4 Export Map into Image" -msgstr "" - -# e7994386299040e291586c9f5b1aa0b5 -#: ../../source/training/osm/Chapter-02-getting-started.rst:81 -msgid "" -"In addition to changing the layers in OpenStreetMap, you also can export " -"your map as an image. The steps are as follow:" -msgstr "" - -# 17785b280b5042dab06880200b88547b -#: ../../source/training/osm/Chapter-02-getting-started.rst:83 -msgid "" -"Click the :guilabel:`Share` icon at your right side on your map window, as " -"shown in the figure below:" -msgstr "" - -# a93f9c9cd88744a292dc0dc3f0e0198e -#: ../../source/training/osm/Chapter-02-getting-started.rst:88 -msgid "*Share Button in OpenStreetMap*" -msgstr "" - -# 402cf0e37c104ebfb16e23630e7a1a1b -#: ../../source/training/osm/Chapter-02-getting-started.rst:90 -msgid "" -"After determining the area that want to be exported, tick :guilabel:`Set " -"custom dimensions` box and adjust size of the area that you want to export. " -"You also can change the scale." -msgstr "" - -# 92668017bab34bdda178d052ca384c0c -#: ../../source/training/osm/Chapter-02-getting-started.rst:92 -msgid "" -"When you are finished adjusting the size of the download area, click :" -"guilabel:`download`" -msgstr "" - -# d2a6b7a581f543c8a347fbb93b5c0a5f -#: ../../source/training/osm/Chapter-02-getting-started.rst:97 -msgid "*Export Map in OpenStreetMap*" -msgstr "" - -# 123cb195c6b54f96949ca22d84901c00 -#: ../../source/training/osm/Chapter-02-getting-started.rst:100 -msgid "2.5 Create an Account in OpenStreetMap" -msgstr "" - -# 998b1b1182bd43bc80835dddfa9aa70e -#: ../../source/training/osm/Chapter-02-getting-started.rst:102 -msgid "" -"Now that you have seen what the main website looks like, you’re now ready to " -"learn how to create an account in OpenStreetMap and make your first " -"additions to the map. The steps are as follows:" -msgstr "" - -# d3c285f9d56a43dfbf47b1b7b6d0bb53 -#: ../../source/training/osm/Chapter-02-getting-started.rst:104 -msgid "" -"On the OpenStreetMap website, click :guilabel:`sign up` in the top right " -"corner of the page." -msgstr "" - -# 14ca6ffa6e014c92a39729a8540479b6 -#: ../../source/training/osm/Chapter-02-getting-started.rst:106 -msgid "You should see a new page that looks like the figure below:" -msgstr "" - -# 96d3a9841c564f6a990c84a1daa9796e -#: ../../source/training/osm/Chapter-02-getting-started.rst:111 -msgid "*Interface to make account in OpenStreetMap*" -msgstr "" - -# 0424216a0111448fb1809a80825e1b68 -#: ../../source/training/osm/Chapter-02-getting-started.rst:113 -msgid "" -"There are five boxes on this page that you need to fill in to register an " -"account with OSM." -msgstr "" - -# ead9a303deb249b990b0e0060dbd63af -#: ../../source/training/osm/Chapter-02-getting-started.rst:115 -msgid "" -"Enter your :guilabel:`email address` in the first two boxes. You should " -"enter the same email address in both boxes. Later, you will need to open " -"your email to confirm your account with OpenStreetMap." -msgstr "" - -# c9dfdebc46614cf6b5136b9ab69b5d11 -#: ../../source/training/osm/Chapter-02-getting-started.rst:117 -msgid "" -"In the third box, enter the :guilabel:`username` that you would like to " -"have. Your username will be unique to you, and you will not be able to " -"choose a username that someone else has chosen, so be creative. If you try " -"to enter something simple, like your first name, it is likely that someone " -"has already claimed that name." -msgstr "" - -# 1151a38234664603b13b39b17df322a9 -#: ../../source/training/osm/Chapter-02-getting-started.rst:119 -msgid "" -"Enter a :guilabel:`new password` in the fourth and fifth boxes. Take care to " -"enter the same password in both boxes. It does not need to be the same as " -"the password for your email." -msgstr "" - -# 697cb696404743c4912fa4176288da59 -#: ../../source/training/osm/Chapter-02-getting-started.rst:121 -msgid "" -"You may want to write down your OSM username and password. You will need it " -"to log in later." -msgstr "" - -# ca761ea131e24f25b3ccbf53d9552b55 -#: ../../source/training/osm/Chapter-02-getting-started.rst:123 -msgid "" -"After you have completed all the boxes, click :guilabel:`Sign Up` at the " -"bottom of the page." -msgstr "" - -# aa5a23d0d52a46488f80ef8bcf852382 -#: ../../source/training/osm/Chapter-02-getting-started.rst:125 -msgid "" -"Open a separate window or tab in your internet browser, and open your email." -msgstr "" - -# 69e4b8846b94436788a4ef4db0541a3f -#: ../../source/training/osm/Chapter-02-getting-started.rst:127 -msgid "Enter your email address and your email password to open your email." -msgstr "" - -# a0636220b5f949539e9ed3f9f66798ab -#: ../../source/training/osm/Chapter-02-getting-started.rst:129 -msgid "" -"If everything was successful with your registration, you should see an email " -"from OpenStreetMap in your inbox. Open the email. It should look like the " -"image below. Click on the link that is identified below:" -msgstr "" - -# 45373db834fb4d729563e498b654b671 -#: ../../source/training/osm/Chapter-02-getting-started.rst:134 -msgid "*Notification from OSM in your inbox*" -msgstr "" - -# 9546b55ed0d3441f952abd3b4ea680ea -#: ../../source/training/osm/Chapter-02-getting-started.rst:136 -msgid "A new tab or window will open. You now have an OSM account!" -msgstr "" - -# 834787fd902e4df9a199441977685072 -#: ../../source/training/osm/Chapter-02-getting-started.rst:138 -msgid "" -"On the OpenStreetMap page, click :guilabel:`Sign Up` in the top right " -"corner. Enter your OpenStreetMap username and password and press Enter. You " -"should now be logged in. You should see your username in the upper right " -"corner of the page." -msgstr "" - -# 90ded1e3194c414781dc39494dcffff7 -#: ../../source/training/osm/Chapter-02-getting-started.rst:140 -msgid "" -"If there are any problems, an error message may pop up. Check top make sure " -"that your email is the same in the first two boxes, and your password is the " -"same in the bottom two boxes. If the third box is highlighted red, it means " -"that someone else has already chosen your username, and you should try a " -"different name." -msgstr "" - -# f0b8671c5656425eabca77e7dd825137 -#: ../../source/training/osm/Chapter-02-getting-started.rst:143 -msgid "Summary" -msgstr "" - -# 7a4c768fbab948e39cac087cd35b58d4 -#: ../../source/training/osm/Chapter-02-getting-started.rst:145 -msgid "" -"Congratulations! If all went as expected, you have your own OpenStreetMap " -"account and you know how to navigate the OSM website. In next chapter, we " -"will learn how to add our data into OpenStreetMap using online editor called " -"iD Editor." -msgstr "" - -# 653e482d83104bd0a899a5c5e87e2d50 -#: ../../source/training/osm/Chapter-02-getting-started.rst:148 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-03-introducing-the-id-editor.po b/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-03-introducing-the-id-editor.po deleted file mode 100644 index 286533b6..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-03-introducing-the-id-editor.po +++ /dev/null @@ -1,599 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:02+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 1b1f181ea8554abb8ff0087d1cd878eb -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:6 -msgid "Chapter 3: Introducing the iD Editor" -msgstr "" - -# 72718940b19e47cfa75a79a596fd9ff1 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 9fd77d6c4e9043bab0abd28f9dba053e -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:10 -msgid "Understanding iD Editor interface" -msgstr "" - -# 0d3827287c2d4a258379c4d360e35f94 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:11 -msgid "Editing OpenStreetMap using the iD Editor" -msgstr "" - -# 096ec962d9c44460b7f9f07de1af308e -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:12 -msgid "Saving and Uploading edits" -msgstr "" - -# da7e16da10b64f4c996fd9cc23b94e01 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:14 -msgid "" -"You have succeeded on creating OpenStreetMap account and you’re eligible to " -"edit OpenStreetMap. Now we will learn how to add your data and edit it using " -"an editor that runs in the browser called the iD Editor." -msgstr "" - -# bdc6834fcb714268b86b1a289864c3b4 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:17 -msgid "" -"iD Editor is a web based OpenStreetMap editor that allows you to add and " -"make changes to the OpenStreetMap data easily and fast by using spatial data " -"sources such as satelite imagerY, GPS, and FiledPapers." -msgstr "" - -# 301fa7a6b9a141e985112d5e6a647a6d -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:21 -msgid "3.1 STARTING ID EDITOR" -msgstr "" - -# 89bdc21e291f482d84a22354e8887ee2 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:23 -msgid "" -"Before you start, your computer must be connected to the internet. Open your " -"browser, then go to OpenStreetMap website `http://www.openstreetmap.org " -"`_ , :guilabel:`log in` to your account and :" -"guilabel:`zoom in` to the area that you want to edit until the Edit menu is " -"active. Click on the :guilabel:`arrow sign` next to the :menuselection:`Edit " -"‣ Edit with iD (in-browser editor)` as shown in the figure below." -msgstr "" - -# de009856fd404bd499365c21aac8ffbb -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:31 -msgid "*Activating iD Editor on OpenStreetMap website*" -msgstr "" - -# 4dec832c4f574e93bd7f171504a9b493 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:34 -msgid "3.2 iD Editor Interface" -msgstr "" - -# 1e1da4b481c645b7a2e118cbe29cbaa4 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:36 -msgid "The figure below shows the main features of the iD editor." -msgstr "" - -# 0d211af58e7440c5a912fcb61f6b5dee -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:41 -msgid "*iD Editor Interface*" -msgstr "" - -# 16084bafe6254fe3b7df192395afa960 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:43 -msgid "" -"**Feature Panel**: This panel will show the attributes of an object selected " -"from the map. You can add and edit attribute data from this panel." -msgstr "" - -# a070c2620d3e4fa09fd93a05bb169681 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:46 -msgid "" -"**Panel tools**: This Panel shows some basic editing functions, such as:" -msgstr "" - -# 4d6fba4a8f7340dc9b943010a4c89bb7 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:49 -msgid "Adding a point" -msgstr "" - -# 146f6751c06241c2a3ee35c0d854ce59 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:51 -msgid "Adding lines" -msgstr "" - -# c070a64c1e9f40c6b075761524d9471f -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:53 -msgid "Adding an area (polygon)" -msgstr "" - -# 904b5438340f49cb887597aac52a0c31 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:55 -msgid "Undo" -msgstr "" - -# d63dfac54754414e96d8a649707547c9 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:57 -msgid "Redo" -msgstr "" - -# da9c2ba1baea422bb67ef4f2dbe61422 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:59 -msgid "Saving your changes" -msgstr "" - -# 86d8fcc7613d493c929bc23e7ea186be -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:62 -msgid "" -"**Map Panel**: This panel shows some functions to set and alter the map " -"display" -msgstr "" - -# 512c734132c64ae7ae254c2f7be30455 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:65 -msgid "Zoom In" -msgstr "Zoomer" - -# 23a18c241e544a8d9c9923cd2eab7e67 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:67 -msgid "Zoom Out" -msgstr "Dézoomer" - -# 34e8472f3f06460f866168faff5339cd -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:69 -msgid "Go to your current location" -msgstr "" - -# b110dc05c17d4898aad94b11c6e6215c -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:71 -msgid "Set the map background" -msgstr "" - -# 6250f78231c9499ab443f522b308eede -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:73 -msgid "Getting Help" -msgstr "" - -# 32ec1004bf6343a5a019c7fe04f1d4c6 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:76 -msgid "" -"**Information panel**: At the very bottom of the image area, this panel " -"shows some information such as those who have contributed map edits in this " -"area, as well as attribution for imagery sources and other map data." -msgstr "" - -# 01ebb4906e824f20b6278dbf04e691ec -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:80 -msgid "3.3 Setting the Map Background" -msgstr "" - -# dc69920d1fce483e8ec40d8cfee7677e -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:82 -msgid "" -"Before you start editing, you can change the map background. Now click on " -"the :guilabel:`layer button`" -msgstr "" - -# 86226458dd4e4107bb66eef4db55cc53 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:87 -msgid "Then a new panel will pop up like this:" -msgstr "" - -# ad4e996fc1bd40a9a66659abd0479753 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:92 -msgid "*Background and brightness setting in iD Editor*" -msgstr "" - -# bffb8b22eb144b859f5bf3e1fefec230 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:94 -msgid "There are several ways to adjust the background in iD Editor. They are:" -msgstr "" - -# c44c1254af204fba8d163345c53a5bc8 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:96 -msgid "" -"You can set the brightness of the satellite imagery by clicking on this box" -msgstr "" - -# afe983aa8bcf4fcabea2f476620059f0 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:101 -msgid "" -"There are 3 brightness you can choose: 100%, 50%, and 0%. Try all of them to " -"see the difference." -msgstr "" - -# 32bde51ec9074598b4e729a7fbdb0899 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:103 -msgid "" -"You can also set the provider of satellite imagery depending on which one is " -"available for your desired area (the standard choice is Bing Aerial " -"Imagery). You can also set OpenStreetMap map as your background." -msgstr "" - -# 9a5168c4e0074f8bbf08d8c85cbd92a2 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:106 -msgid "" -"Also, if you want to make a previously uploaded Field Papers to be your " -"background, please click on the :guilabel:`Custom` choice and put the " -"FieldPapers URL (for example: *http://fieldpapers.org/snapshot.php?" -"id=fdsbgzns#17/-6.20049/106.82533*) on the column as seen below:" -msgstr "" - -# 5c59266573114e66b3d88f88b246f0d5 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:113 -msgid "*Inserting Field Papers into iD Editor*" -msgstr "" - -# ad91fdd1a8ad469ba936b8f61103d2dd -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:115 -msgid "" -"You can add your GPS tracks and waypoints that are saved on your computer " -"(they must be in GPX file format). Just click on your :guilabel:`GPX`, hold, " -"and drag it to the editor page." -msgstr "" - -# 02f632df50dc462daa6e35239210f47d -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:118 -msgid "" -"If there is a known satellite imagery offset, you can do a correction by " -"clicking on :guilabel:`Fix misalignment` until a box seen below shows up:" -msgstr "" - -# d43969f0ac9d4fb19578e28c8a691815 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:124 -msgid "" -"You can set the correction by clicking on the :guilabel:`navigation buttons`" -msgstr "" - -# 05b1da439083499295c12d29558c776f -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:129 -msgid "Click on" -msgstr "" - -# 53dcd59c984847749f1b2c3988b5956b -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:134 -msgid "to bring the imagery back to the initial position." -msgstr "" - -# e0b7c96a4e6a41f8b232221f7a15aa27 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:137 -msgid "3.4 BASIC EDITING WITH ID EDITOR" -msgstr "" - -# d4301ff01e3f485c9134f599c7021b63 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:139 -msgid "" -"Before we start practicing using iD Editor, first navigate to the desired " -"area on the map that you want to edit. You can pan around the map by " -"clicking on your mouse and dragging the map to your area of interest." -msgstr "" - -# 690178be20eb4c2398c556ac242cac5d -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:143 -msgid "Adding a Point" -msgstr "" - -# 526bff5a05f549e7a005d80a62f2be4d -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:145 -msgid "To add a point feature, click on" -msgstr "" - -# 7566496f14fe4dddaeb8938ee8fab5c5 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:150 -msgid "" -"You will see the cursor change into a plus sign **(+)**. Now, click on the " -"object that you want to map. For example, you see a building on the map and " -"you know that building is a hospital. Click on the building." -msgstr "" - -# 250db7c6945647a6a4812cb0fb8211d8 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:156 -msgid "*Adding a point in iD Editor*" -msgstr "" - -# 5e98946715964ec3bdfcdb72736bb770 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:158 -msgid "" -"Now, you can see there’s a new point. At the same time, the feature panel " -"will be showing you attributes that you can choose depending on the object " -"type. Now type **Hospital** on the Search section, and choose **Hospital** " -"to add this feature to the map, as shown in the figure below." -msgstr "" - -# 28145ad4ddc748c5828659ff0e39768f -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:165 -msgid "*Adding information to a point in iD Editor*" -msgstr "" - -# fdd1d5c056c74538839c02c1cb84d1a6 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:167 -msgid "" -"The point symbol will change automatically, and the feature panel will " -"change into a form which can be filled with information about the hospital, " -"such as the name of the hospital, the address, and other information about " -"this feature." -msgstr "" - -# 08b9610c2f8b4d568773858a6fb0b8c4 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:169 -msgid "" -"Features may have a different forms - points, lines, or polygons. It will " -"depends on the type of the feature, the mapping scale, and the quality of " -"imagery." -msgstr "" - -# 6f2f7f184bd44fa4832b4da1861e09fe -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:172 -msgid "" -"If you want to move the location of that point, you can click on the object " -"then hold it and move it to the new location. If you want to delete the " -"object, click on the object, a delete button will show up." -msgstr "" - -# 0d0a2aafb8714c3fb739681f55862dcf -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:178 -msgid "Click on that button to delete the object." -msgstr "" - -# 417737d6cb29463bb84369e7a5d535a3 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:181 -msgid "Adding a Line" -msgstr "" - -# 229f6b3be3c840eea804146a06038a07 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:183 -msgid "Click on:" -msgstr "" - -# 98e77901832a4ac2961602e5a275bb6f -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:188 -msgid "" -"And again you will see the cursor change into a plus sign **(+)**. Suppose " -"you want to draw a road. To do this, first click at one of the ends of the " -"road, then just move your cursor to and keep clicking along the way of the " -"roads and follow it until a road line formed. Double click to end the line " -"and the feature panel will appear again on the left side of the window." -msgstr "" - -# 6d80946318184876b71b8276b69b9624 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:196 -msgid "*Adding lines in iD Editor*" -msgstr "" - -# 649c39ddaa5846a8ad11b78ff75becf5 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:198 -msgid "" -"The feature panel will display some attributes for you to choose from, " -"depending on the type of your line. You can also move the points in the line " -"by clicking on a point and move it. The other thing you can do is move the " -"line by clicking on it, holding down the mouse button, and moving the line. " -"Also, when you click on a point (vertex) on the line, you will find some " -"additional functions as shown in the figure below:" -msgstr "" - -# 681c43ac9b104d8ea10049335d1d92e2 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:205 -msgid "Deleting/removing the point from the line" -msgstr "" - -# faf07503033148b0be38101ed95019f7 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:207 -msgid "Separating a point that is attached to other object." -msgstr "" - -# b85a3c04e38f47fda5f3d9ed755ec4c7 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:209 -msgid "" -"Spliting a line into two different parts. It is useful when there are " -"different attributes in a long line (For example, different road names)" -msgstr "" - -# 344aa4e190cb4dbf9ed0aba726f602e1 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:212 -msgid "" -"Also, when you click on the line (in between points), you will find " -"additional functionality as shown in the figure below:" -msgstr "" - -# a502a1dcea914ae694de22fcad2c3960 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:215 -msgid "Removing the line" -msgstr "" - -# 26acf70c7f9e474aa8f5cf9f1f9a81db -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:217 -msgid "Forming the line into a circle" -msgstr "" - -# 499b07c4c651473d90b821bb7fe24a40 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:219 -msgid "Moving the line position" -msgstr "" - -# 84945d9ec54d4d4996c14cd540036337 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:221 -msgid "Creating the angles of the line into right-angled line" -msgstr "" - -# 6367f62a3128413baec71425328c3229 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:223 -msgid "Reversing the line direction" -msgstr "" - -# 4b8b61bf200a442892ddc4a348b466cb -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:230 -msgid "Adding an Area (Polygon)" -msgstr "" - -# f92a38d6d2b3403d93c522f71c2a7530 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:232 -msgid "To add an area, or polygon feature, click on the button below:" -msgstr "" - -# 8742d9f1ce44422c9a2c7d85ab333d93 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:237 -msgid "" -"Again the cursor will change to a plus sign **(+)**. Using the imagery as a " -"guide, trace the area by clicking on the corners of the feature, as shown in " -"the figure below." -msgstr "" - -# b3f530caf68548c5870e8f17cb0a32fb -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:243 -msgid "*Adding area/polygon in iD Editor*" -msgstr "" - -# 0002848288e04b66acedacb743b52627 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:245 -msgid "" -"As with point and line features, when you click on one of the point on the " -"polygon, you will see additional editing functionality. Similarly, clicking " -"on the line of the polygon (between points) will reveal additional editing " -"operations available to you." -msgstr "" - -# d32870718c7f42bea1919f04b1929985 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:250 -msgid "3.5 Saving your Changes" -msgstr "" - -# 5081022c212f42e892f2644f06f16140 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:252 -msgid "Click on the button below:" -msgstr "" - -# 6040f3ffb64446558185301ebd833912 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:257 -msgid "" -"to save your changes. Pay attention to the panel on your left side that will " -"show something like this:" -msgstr "" - -# d17c60d978344ed1a4412be0b6e5a1df -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:262 -msgid "*Saving your changes in iD Editor*" -msgstr "" - -# b4aef9f90c44419b8659e24407f7b198 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:264 -msgid "" -"Fill in the :guilabel:`Comment column` with a brief note about the changes " -"made in that area so that other users can note your edits. Then click :" -"guilabel:`Save`." -msgstr "" - -# d5505e0866e34d9eae9226f6e2c234c7 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:268 -msgid "3.6 Additional Attributes" -msgstr "" - -# ec74f342d13147cea3d60723f16e7e5d -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:270 -msgid "" -"When you add attributes to features, you can make the data more useful by " -"adding more information. The icons shown in the figure below help you to add " -"additional details to your map data:" -msgstr "" - -# 5bc1b3a98d1e48438a5825ae0876c7ba -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:274 -msgid "Adding elevation information" -msgstr "" - -# 9f018c0c3b984d07a481e67de3453b53 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:276 -msgid "Adding notes" -msgstr "" - -# cf7c8b51b72b4c34bedd06cb49091dad -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:278 -msgid "Adding contacts/phone number" -msgstr "" - -# 6e1578704d704180a1d0413937af556c -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:280 -msgid "Adding sources" -msgstr "" - -# d3efd5b5222a454b88776736eeb55610 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:282 -msgid "Adding website information" -msgstr "" - -# 310f1bee190f445882b32944ba10478a -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:284 -msgid "" -"Add information on the availability of accessibility for people with " -"disabilities" -msgstr "" - -# e1ba7985c10746ae9bd61df6986f3459 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:286 -msgid "Adding Wikipedia links" -msgstr "" - -# 6bfee51c8ac74dd7aabcc58853d6fbd3 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:289 -msgid "**Tags list on iD Editor**" -msgstr "" - -# 7cc66892480648f7ab345ece5ce7f146 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:291 -msgid "" -"In addition, you can also add your own attributes by clicking on the icon" -msgstr "" - -# ed4315542b5f40f7be99aed269d45bad -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:296 -msgid "This will raise a form allowing you to add your own attributes:" -msgstr "" - -# 17899f75ea2b4712bfe1f855dd326153 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:301 -msgid "" -"Click on the :guilabel:`+` sign to add a key and value that you want. For " -"guidance, consult the full list for key/value pairs here: `Wiki " -"OpenStreetMap Map Features `__\\" -msgstr "" - -# 9938b40a0f264cc88ce43a2723b19db2 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:308 -msgid "*Adding a tag in iD Editor*" -msgstr "" - -# a5058d6fbb5d477fb08dedba8a31bc27 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:311 -msgid "Summary" -msgstr "" - -# cb37819f84d24900bddcd901800682a3 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:313 -msgid "" -"You should now be able to add your data to OpenStreetMap using the in-" -"browser iD Editor. You also learned how to digitize the 3 types of objects " -"in OpenStreetMap: points, lines, and areas (polygons). In the next chapter, " -"we will learn about another editor, the Java OpenStreetMap editor, or JOSM " -"as it is popularly known." -msgstr "" - -# 8671258679dd4230bd84b0f68ee1ea7e -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:319 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-04-getting-started-with-josm.po b/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-04-getting-started-with-josm.po deleted file mode 100644 index 94b72113..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-04-getting-started-with-josm.po +++ /dev/null @@ -1,818 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:02+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 72e8d6b81def4fd6a117df210a5209ae -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:6 -msgid "Chapter 4: Getting started with JOSM" -msgstr "" - -# fabd5c2b22724ae5963702118d4546e8 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 7923244e1e634195b72a4c4340718e28 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:10 -msgid "Downloading JOSM" -msgstr "" - -# fdbbeb3ff28b470ca258abb7eeafd57b -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:11 -msgid "Installing JOSM" -msgstr "" - -# bfea5d48ff4749139a22e94523d60443 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:12 -msgid "Adjusting settings in JOSM" -msgstr "" - -# d037917c0a9848849f5050c1292862ac -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:13 -msgid "Using basic tools (move and draw the objects)" -msgstr "" - -# 4894371b23ea458b8519b61789817def -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:14 -msgid "Adding presets" -msgstr "" - -# f0be990af775405bad22e892dcc29e8f -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:16 -msgid "" -"We will now learn how to download and install JOSM step-by-step. JOSM is the " -"Java OpenStreetMap editor, a full-feature desktop editor. When using iD " -"Editor we always have be connected to the internet, while in JOSM we can use " -"it offline or with an intermittent internet connection." -msgstr "" - -# ed987ebf66e942b784cc1abaa39c3d08 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:20 -msgid "" -"In this module, we will also change some JOSM settings that will help us in " -"using JOSM. We will then open a sample map and learn some basic operations " -"of this software. Recall in the introduction module, you were asked to draw " -"a map of the city or region around the neighborhood where you live. We will " -"draw it again in this module, but we will draw it digitally using JOSM. " -"After learning this chapter, you will have a good comprehension of how to " -"map using the JOSM editor." -msgstr "" - -# aee16f2b7f084877a23effdfa2b5413e -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:27 -msgid "4.1 Downloading JOSM" -msgstr "" - -# 828b0ee84cf2422eb9c30322cc1239cb -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:29 -msgid "" -"If you have a copy of the JOSM installation file on a CD or flashdisk, you " -"can skip to the next session on JOSM installation. If you do not have the " -"JOSM installation package or you want the newest version of JOSM, you can " -"open your web browser (using Firefox, Chrome, Opera or Internet Explorer). " -"In the address bar at the top of the window, enter the following text and " -"press enter: `josm.openstreetmap.de `_. You " -"can also find JOSM site by searching for \"JOSM\" using your favorite search " -"engine. The JOSM site will look much like the figure below:" -msgstr "" - -# c7c00b4721204f1a82b1aa031f4d8b47 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:39 -msgid "*JOSM site interface*" -msgstr "" - -# d12a962ed7d34a399804b7cff373ddd3 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:41 -msgid "" -"Select the installation file according to your computer's operating system. " -"If you are using a computer with Windows Operating System, click :guilabel:" -"`Windows installer` to download JOSM. If you have other operating systems, " -"click on the link that corresponds to your computer's operating system and " -"download the installation package. In this module, we assume you are using " -"Windows, but the instructions will be similar for other operating systems." -msgstr "" - -# a32fa16f1bf54d8c8559c40d75f22b65 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:48 -msgid "4.2 JOSM Installation" -msgstr "" - -# e372265bfaa0480fb90a08930c255e2d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:50 -msgid "" -"Once the JOSM installation package has downloaded, we will install onto our " -"computer or laptop. Here are the steps for installing JOSM:" -msgstr "" - -# 6aeaf9539fdf4cdab1e9680b91d91ce0 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:53 -msgid "" -"Find the JOSM installer file on your computer. Double-click it to begin " -"setup." -msgstr "" - -# 8800dac2deb7417cbc198e04fca0af0d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:55 -msgid "" -"Click :guilabel:`OK`, :guilabel:`Next`, :guilabel:`I Agree`, and :guilabel:" -"`Install`. When the installation is complete, click :guilabel:`Finish` to " -"lunch JOSM for the first time. Later, when you want to start JOSM, you can " -"do so by clicking on the :guilabel:`Start Menu` in the lower left corner of " -"your computer, and clicking the program JOSM." -msgstr "" - -# e47c699ddce043159857a8158c4448d8 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:60 -msgid "" -"When JOSM starts, it will look something like the image in the figure below:" -msgstr "" - -# eec2d5d2c4b147cea39ebba2dd80fc7a -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:65 -msgid "*JOSM home view*" -msgstr "" - -# bb981c13e9ef46a19e679e690496890d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:68 -msgid "" -"You may have problems when installing JOSM if Java is not installed on your " -"computer. If you have" -msgstr "" - -# 1b04dd48993942308af85e9f7e6afa3e -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:68 -msgid "" -"problems during the installation in this section, try to download and " -"install Java. You can download here: `www.java.com/en/download/ `_" -msgstr "" - -# 6c3c5ff934294135a0c74f843ca31dd4 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:70 -msgid "" -"When the first time you open JOSM, you might see a window appears there ask " -"to update the software. You do not need to update it because you just " -"downloaded a new software. :guilabel:`Cancel` button. If you don’t want to " -"see this message anymore, check a **box below** before clicking “Cancel”." -msgstr "" - -# 9d7091d0a4234c30bab0f95de7300f08 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:73 -msgid "" -"JOSM used in this module is the newest version from the site. The display " -"version could possibly change if you are using another JOSM version." -msgstr "" - -# cd80d555f587430097dcc74b1e323b60 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:78 -msgid "4.3 JOSM Setup" -msgstr "" - -# b1c720a79d7b4f5cbf463460d77b10a0 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:81 -msgid "4.3.1 Change Language" -msgstr "" - -# 1ce29fe6d01146b78ac338630a4d4e68 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:83 -msgid "" -"There are many settings that you can adjust in JOSM. One of settings you " -"might want to adjust is the local JOSM language. JOSM has been localized " -"with many language options, and you should choose the language that you want." -msgstr "" - -# 2b6e27e691024433a5680ab42cf12e42 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:87 -msgid "" -"To access Preferences windows, click :menuselection:`Edit ‣ Preferences...`" -msgstr "" - -# c760dc5ec43d4f3aa190ffae4dbd4215 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:92 -msgid "*Bring up the preferences menu in JOSM*" -msgstr "" - -# b7f93bf82fbd4865834dbf84044e1d95 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:94 -msgid "" -"On the left side, click icon that looks like a **paint can** and " -"**paintbrush**." -msgstr "" - -# 2ede2a6cc206492eb06dacaddec2e620 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:99 -msgid "" -"At the top of the window, click the tab that says :guilabel:`Look and Feel`." -msgstr "" - -# 617b0abd32d44db1bc2be7e21e2824ea -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:101 -msgid "" -"Choose your language in the dropdown box next to the word **Language** as " -"shown in the figure below." -msgstr "" - -# 0c3923d81ebe45ddb68ad50d8f7c3aa3 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:106 -msgid "*Change language in JOSM*" -msgstr "" - -# 95c50be44e4048018cf8c86dd6006b49 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:109 -msgid "4.3.2 Account and Proxy Settings" -msgstr "" - -# eca84fc5a2a740b6a97970319392f737 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:111 -msgid "" -"After changing the language we also need to enter the username and password " -"of our OSM account in JOSM. This will be useful when we edit or add data on " -"the OSM map, the server will recognize that the edits belong to a registered " -"user. If you do not add your account information, you will not be able to " -"upload data into OpenStreetMap. Here are the steps to add your account " -"information:" -msgstr "" - -# 18542c9d858b4ec584a2ac417d260461 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:116 -msgid "" -"Click icon that looks like a **Globe** at the left side of preferences box." -msgstr "" - -# 0469739f716843ca99d237eb739e22f2 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:121 -msgid "Then enter your OSM username and password as shown in the figure below." -msgstr "" - -# fa195d91da9a4eb8a57b60ad61d62615 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:126 -msgid "*Adding OSM username and password in JOSM*" -msgstr "" - -# 9291ad5addcd41cf85ead887edef8eba -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:128 -msgid "" -"If your internet connection is using proxy, you can also enter the proxy on " -"the :guilabel:`proxy settings` tab then simply enter the appropriate proxy " -"for your internet network." -msgstr "" - -# b897ae49d10d4fb08ae8fad0959abb5a -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:132 -msgid "4.3.3 Adding Presets" -msgstr "" - -# e3e1ddd6162d486cb4629d83b3b74085 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:134 -msgid "" -"By now you should have entered your account name. Next is to configure JOSM " -"by adding menu presets. What are menu presets? Menu presets are small files " -"added to JOSM that can pre-supply the attribute fields for mapping features, " -"such as name and address for a building, or street name for a road. If you " -"are still a bit confused about presets, follow along and you. To add menu " -"presets, follow these steps:" -msgstr "" - -# 3f141801d2a34a628fca6f1f3807c00c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:139 -msgid "Click the icon that looks like a grid:" -msgstr "" - -# a2059b6094394b5b873e0b4b6d7edee1 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:144 -msgid "Click the tab at the top that reads :guilabel:`Tagging Presets`." -msgstr "" - -# 8c7876c8c3e44f6b9e58fe7257ddf82b -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:146 -msgid "" -"Under **Available Presets** find and select the entry labelled **Buildings " -"Indonesia**. Then click the blue arrow to the right of this box, as shown in " -"the figure below." -msgstr "" - -# 357da02e79c641ceb1896b2c46938868 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:152 -msgid "*Adding presets in JOSM*" -msgstr "" - -# ef214d72b2924bf7988f3f74d1b671a1 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:154 -msgid "" -"If you already have your own presets file on your computer, you can insert " -"it directly:" -msgstr "" - -# fdd2444cbf7046adbca8129c96e3846d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:156 -msgid "Click :guilabel:`+` beside active presets box" -msgstr "" - -# dbf43509c8b54896826ef0ff03cfb2f6 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:158 -msgid "Then click this icon below to find your presets file" -msgstr "" - -# 6b1dfd4c9b4043c58dc13e1fae222114 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:163 -msgid "" -"When you locate the presets file, click :guilabel:`Open` then :guilabel:`Ok`." -msgstr "" - -# 0da59d5006b045f99c9707fa9c9c9519 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:166 -msgid "4.3.4 Adding a Plugin" -msgstr "" - -# c73578cb62e54ddda98c9f97b0b5ae0c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:168 -msgid "" -"Now we will try to add a plugin in JOSM. A plugin is a tool that we can add " -"it as an extension in JOSM to help us during editing. Here are the steps to " -"add plugin in JOSM:" -msgstr "" - -# f4d4075c6535413d9bcb7af37a7b4529 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:171 -msgid "Click :guilabel:`plugin` icon that looks like picture below" -msgstr "" - -# d1cbc0c8e63946c08cb1bc12e175e26c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:176 -msgid "" -"Then click :guilabel:`Download list` to download all plugins that available " -"in JOSM" -msgstr "" - -# 75ee187e3c1641c58660cafd3ea48dd1 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:178 -msgid "" -"In search box, type the name of the plugin, for example :guilabel:" -"`building_tools`" -msgstr "" - -# 5c505783d17d4329a485c39fc8ebae39 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:180 -msgid "Then check the box beside the plugin name as shown in the figure below:" -msgstr "" - -# be617222bcdc4cf3a90beacb2390cbe8 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:185 -msgid "*Download plugin in JOSM*" -msgstr "" - -# 268e598852e34e048a805bf8f3a2d9ba -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:188 -msgid "4.3.5 Activate Remote Control" -msgstr "" - -# b5be1d459ae34eabbfd01c1325b09f2e -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:190 -msgid "" -"*Remote Control* in JOSM needs to be set in order for other sites, such as " -"the HOT Tasking Manager to access your OpenStreetMap account and enable " -"editing. To activate the remote control function:" -msgstr "" - -# e6ef356121e94d098bd6ff1e8384b81b -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:193 -msgid "Click the icon depicted in the picture below" -msgstr "" - -# 48de6c53f533462e9071ef4481ff34be -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:198 -msgid "Then check on the box beside :guilabel:`Enable remote control`" -msgstr "" - -# 97a414501cb640cb801b12036870e3ce -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:200 -msgid "Check any other box shown in the figure below according to your needs." -msgstr "" - -# 6de96050ca844ecd835c6404132e6fd0 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:205 -msgid "*Activate remote control in JOSM*" -msgstr "" - -# ae9ca39ebda4493eb57672564dae6b67 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:208 -msgid "4.3.6 Adding Satellite Imagery" -msgstr "" - -# 07e1e05ffd3d47e8a3c19d62782c1391 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:210 -msgid "" -"We will want to use satellite imagery as a background to identify features " -"and trace them when making our map, so let’s add imagery from the Preference " -"window." -msgstr "" - -# 7e5d6bb066ed4a698810eac362bac1e0 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:213 -msgid "Click on the icon that says **WMS TMS** like this:" -msgstr "" - -# c791de7e941c4b24bb1355340a3d2d92 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:218 -msgid "" -"Bing Satellite imagery is often the default choice, so click on :guilabel:" -"`Bing Sat`. Then click :guilabel:`Activate` as shown in the figure below." -msgstr "" - -# 9f662e9faaf545b394d1a82c864a6811 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:224 -msgid "*Satellite imagery layer list in JOSM*" -msgstr "" - -# 1e8c36a8b1f042b984e62f98793a1123 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:227 -msgid "4.4 JOSM Interface" -msgstr "" - -# 5310d2028fbf4bfcb63c3f1b11aabef6 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:229 -msgid "" -"At this point, you’ve should have learned to customize and pre-configure the " -"basic settings in JOSM, and now you’re ready to edit the map. In this " -"chapter, we turn attention to the important parts of the JOSM editor and how " -"to use them. The figure below shows the essential parts of the JOSM " -"interface." -msgstr "" - -# 94437ad194914884908914d3c4201982 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:236 -msgid "*JOSM interface*" -msgstr "" - -# e25f64031f054357b702126c7c5847b6 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:238 -msgid "" -"The main window, as you have seen earlier, -is the map area, and where most " -"of the editing activity takes place. Here you will view, interrogate, edit, " -"and add data to OpenStreetMap." -msgstr "" - -# 7cae9767c25b46ad8bbb4071198a84d8 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:241 -msgid "" -"To the right of the map area are stacked panels, each having a dedicated " -"function. Usually when the first time you install JOSM, several panels that " -"will be displayed with the default settings, such as **Layers, Properties**, " -"and **Selection**. When you **select a node, way, or polygon** in map area, " -"it'll be displayed on **Selection panel**. **Information about the object** " -"will be displayed on **Properties panel**, and **username of the object " -"author** will be displayed on **Author panel**." -msgstr "" - -# 433eb9d8c3e34270b00fce786db96abf -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:247 -msgid "" -"To the left of the map area is a vertical toolbar, each icon corresponds to " -"an editing function (see ‘Tools’ in figure above). For example, there are " -"buttons for editing such as **Select object(s)** tool and **Draw nodes** " -"tool. Other tools depicted in the above example include icons for deleting " -"an object, drawing a polygon, and creating a way that is parallel to the " -"other ways." -msgstr "" - -# 995b0d773fdd415aaa7c7714c9254fdf -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:253 -msgid "4.5 Learn Basic Drawing in JOSM" -msgstr "" - -# 5187c61a30424cb98e62c04c8025c200 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:255 -msgid "" -"Let’s start by opening up a sample OSM file which we will use to learn the " -"basic ways to draw maps with JOSM. Note that this map is not real, in that " -"it is not a real map of a real place, so we will not save it on " -"OpenStreetMap." -msgstr "" - -# 796a69a19af54750933465a77ef9afdc -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:258 -msgid "Download the file here: `bit.ly/osmsample `_" -msgstr "" - -# 34068a63a8d84516b4ef8fe69067095d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:260 -msgid "Open JOSM. Click the **Open** button in the upper left." -msgstr "" - -# 7fe8bf3553b541438e7a631383fbfc4c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:265 -msgid "" -"Find the file :file:`sample.osm` on your computer and open it. Your JOSM " -"screen should look quite similar to the figure below:" -msgstr "" - -# 82ccc93705d446279c963e85bb1bdfcd -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:271 -msgid "*Display of sample file in JOSM*" -msgstr "" - -# 0ca68f0b678d4444af102a83ca5adfeb -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:274 -msgid "4.5.1 Basic Operation" -msgstr "" - -# a724adf567cd410b8cb3e5e85835d1c6 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:276 -msgid "" -"To **move the map** left or right, up or down, **hold your right mouse** " -"button down, and **move your mouse**." -msgstr "" - -# 6f978fc7d8104997a32c64d64fac6005 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:278 -msgid "" -"There are several ways to **zoom in** and **zoom out** of the map. If you " -"have a mouse, you can use your scroll wheel to zoom in and out. If you are " -"using a laptop and don’t have a mouse, you can zoom in and out using the " -"scale bar in the upper left of the map window. **Drag the bar left and right " -"by holding your left mouse down** **and moving the bar left or right** with " -"your mouse." -msgstr "" - -# c25a88621c344ee28bc0ada2e2834784 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:286 -msgid "" -"Look at the sample map. There a few different types of objects here. For " -"example, there is a river, a forest, some buildings, several roads, and a " -"couple of shops. **Select an object by clicking** on it with your left mouse " -"button. Click on each of these objects and note the information in the " -"panels on the right." -msgstr "" - -# fcc3c19a70a042ebb34cf3ee1dd93d0c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:291 -msgid "4.5.2 Node, Ways, and Polygons" -msgstr "" - -# 4a38f97563da4f7c81b129de02e0a3a4 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:293 -msgid "" -"As you click different objects on the sample map, notice that there are " -"three different types of objects on the map. There are **nodes, ways**, and " -"**polygons**." -msgstr "" - -# 9f01adccb8124a37a394d13189456af4 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:296 -msgid "" -"Points are a single location, represented by symbols. On this sample map, " -"there are two points, a clothing shop and a market. The clothing shop is " -"represented by a shirt symbol, and the market is represented by a shopping " -"cart. If you can not see these features clearly, please zoom in to the map." -msgstr "" - -# 4186cbb49c7f4da5b7a783ca6d214b8d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:300 -msgid "" -"There are several ways on the map as well, which represent roads. If you " -"look closely you will see that within the ways, there are nodes as well. " -"These nodes don’t have any symbols or other information associated with " -"them, but they define where the line is located and give it shape." -msgstr "" - -# dc0d6345229d4a57830a27ec4b0884aa -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:304 -msgid "" -"Lastly, there are numerous polygons on the sample map, representing " -"different places - a forest, a river, and buildings. A polygon generally " -"represents an area, like a field or a building. A polygon is exactly like a " -"way - the only difference is that the way begins and ends at the same node. " -"That is to say, they are closed." -msgstr "" - -# ef6ad01f979a4a4bacc975186abad576 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:308 -msgid "" -"It's easy to think about the map that contains three basic types of objects " -"- points, lines, and polygons. OpenStreetMap contained in specific terms " -"that you will learn as you progress. In OSM, a point called node, and lines " -"are ways. Polygon called closed way because this is just a line that starts " -"and ends at the same point." -msgstr "" - -# 69ae74fde2424478afcbba7ead9a830c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:312 -msgid "" -"You may notice that when you select an **object**, it will be highlighted in " -"**red** and a list appears to the right of the map in a window called " -"**“Properties”**. These are known as tags and are depicted in the figure " -"below.. **Tags** are **attributes of the selected point, line or polygon " -"that identify and describe** **that feature**. But for now, all you need to " -"know is that this information helps describe whether our object is a forest, " -"a river, a building, or something else. Think about drawing a map by hand, " -"and how you are also drawing points, lines, and shapes. What other places " -"are best represented by points? Lines? Shapes?" -msgstr "" - -# 355023af2455435fa54b1a61dd23f27a -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:321 -msgid "*Information of object in JOSM Properties Panel*" -msgstr "" - -# d0e4354433674ab4b65e29f7eae45f6b -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:324 -msgid "4.5.3 How to Change Object" -msgstr "" - -# 93a3b721482b414c9c5677176855d3b5 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:326 -msgid "" -"Select the forest on the left side of the map. Be sure to click on the line " -"around the forest, not one of the points on the line. Now **hold your left " -"mouse button down and drag your mouse**. You should be able to move the " -"forest to a new location on the map." -msgstr "" - -# c5a7efb5781147aca7a8848df9731216 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:330 -msgid "" -"**Click on one of the points** on the line around the forest. Hold your left " -"mouse button down and drag your mouse. You should be able to move the point. " -"This is how you can change the shape of an object, or move a point." -msgstr "" - -# be0942aef70a44398b6165220487cc79 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:334 -msgid "4.5.4 Drawing an Object" -msgstr "" - -# 25d71799fe8449e8a0191e2d84c2e1bb -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:336 -msgid "" -"On the left side of a JOSM is a column of buttons. Many of these buttons " -"open new windows on the right side that provide more information about the " -"map. The most important buttons, however, are at the top of these column. " -"These buttons change the operations you do with your mouse." -msgstr "" - -# d8b5ab136c5f40d48e9d144ee2ad0439 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:340 -msgid "" -"**Select button** is one of the keys that you will use frequently. This " -"button is useful for selecting objects and to draw new objects. The **Select " -"button** looks like this:" -msgstr "" - -# eb27f3a62aea4bbfb1a154ad8c26466d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:346 -msgid "" -"Before you draw, you need to make sure that nothing is selected. Click in " -"the black space on the map, where it is empty, to make sure nothing is " -"selected." -msgstr "" - -# 05a16266e03341a78e24f3b1e9aa2243 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:349 -msgid "Click on the second button, the **Draw** tool." -msgstr "" - -# c8b58068caae46e384b8e8aa64fc318f -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:354 -msgid "" -"Find an empty area on the map, and **double-click** with your mouse. This " -"**will draw a single point**." -msgstr "" - -# 16cf6ebcff0143b883234ab068d9fdd5 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:356 -msgid "" -"To **draw a line, single-click** with your mouse. **Move your mouse** and " -"click again. **Continue until you are happy with your line**. To **end the " -"line, double-click** your mouse." -msgstr "" - -# 681c03da84e84105b7eadf2ca5de3137 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:359 -msgid "" -"**Draw a polygon** the **same way** that you **draw a line, but** finish the " -"polygon by double-clicking on the point where you started the line." -msgstr "" - -# 6e2ab164cc3e443ebe9b1008195f5fd1 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:363 -msgid "4.5.5 How to Add Presets" -msgstr "" - -# 864b3c4d75934b208c781a1b2b578989 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:365 -msgid "" -"Now we know how to draw points, lines and shapes, but we still haven’t " -"defined what they represent. We want to be able to say that our points are " -"shops, schools, or something else, and whether our shapes are fields, " -"buildings, or something else. To provide information on the objects that we " -"create or edit we need to include presets in the object. Here are the steps:" -msgstr "" - -# 4429c534f4e447aba9309df4032606f2 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:370 -msgid "Click on the **Select tool**, in the column of buttons on the left." -msgstr "" - -# 8292c88b6d7c424887039460036c48db -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:375 -msgid "" -"Select one of the objects that you drew with the Draw tool. On the top menu, " -"click :guilabel:`Presets`. Move your mouse through the sub-menu to the type " -"of location you would like to define." -msgstr "" - -# 9d6389e5057b4e97a0340f2cd69ce5a4 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:378 -msgid "" -"Go to Preset menu. Click on item named **Building**, which has been added at " -"the bottom of the menu as shown in the figure below." -msgstr "" - -# 4d53cbfeedb84c08bad1c0a07833a4c1 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:384 -msgid "*Building presets box in JOSM*" -msgstr "" - -# d833daabd616417499f1d0b2a1e0d641 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:386 -msgid "" -"When you click on a preset, a form will pop up asking you for more " -"information. You do not have to fill in every field, but **you may wish to " -"add some of the important fields, such as the name of the object**." -msgstr "" - -# 789d37d4445d4f6e82978c8d29281db0 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:389 -msgid "" -"When you are finished entering the information, click :guilabel:`Apply " -"Preset`. If all goes as expected, your point, line, or shape should change " -"colors or display a symbol. This is because you have defined what it is." -msgstr "" - -# d203a29256eb4dbf9246bd0a65be00c3 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:393 -msgid "4.6 Draw Your Own Map" -msgstr "" - -# 3c94527e8c5b47d9b74cd82085cad594 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:395 -msgid "" -"Now let’s draw a map in order to practice the techniques you have learned. " -"You may wish to redraw the map that you drew on paper in previous module." -msgstr "" - -# 6f15a1330efe44f99f7bb87f6a06ad4f -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:398 -msgid "" -"**Drag the map away** from the sample map. Hold the right mouse button and " -"drag your mouse, **until you have a nice empty area** to draw on." -msgstr "" - -# 9da57f6e27004ba5b8d4f0064ecf6b6c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:401 -msgid "" -"**Use the Draw tool to create points, lines, and polygon**. Describe what " -"your objects are by selecting from the Presets menu." -msgstr "" - -# f80b1e74bd534f9888709b28e299a5f7 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:404 -msgid "" -"When you are finished, you should have your own map, similar to the sample " -"map that we opened in sample.osm." -msgstr "" - -# 5ac3fba4dcbc489384faa48d12758c0e -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:407 -msgid "Summary" -msgstr "" - -# 38214db668d44ae2b56b3824977a50a5 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:408 -msgid "" -"At this point, you should have learned how to setup JOSM on your computer " -"and how to use basic editing tools available in JOSM. In the next module, we " -"will take a closer look into the process of editing OpenStreetMap using the " -"JOSM editor." -msgstr "" - -# e3e2643b5df04430bd249c74c0e0c3ca -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:412 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-05-editing-with-josm.po b/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-05-editing-with-josm.po deleted file mode 100644 index 02ece52d..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-05-editing-with-josm.po +++ /dev/null @@ -1,1416 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:02+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 639caf3f6d5d446db8790170f5a14827 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:6 -msgid "Chapter 5: Editing with JOSM" -msgstr "" - -# deb4d2daebc14e91a32f3a747d6b3d15 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 6cf3c769af144976b7a6446dbee1ecd1 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:10 -msgid "Using the editing tools in JOSM" -msgstr "" - -# c527f1dab3e8404a863e6595e5597369 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:11 -msgid "Knowing the shortcut buttons in JOSM" -msgstr "" - -# 35fe0b8421054278aeccb60a8c1f2cee -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:12 -msgid "Extending functionality with JOSM plug-ins" -msgstr "" - -# 817cd97044dd4202967c7541951e4ceb -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:13 -msgid "Familiarity with errors and editing tips" -msgstr "" - -# 8e38f1b6986b4c399e5ae066a7ad2ed3 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:14 -msgid "Knowing and understanding the stages of editing in JOSM" -msgstr "" - -# f6de3447bf6a492abdb0d31a4737a568 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:15 -msgid "Saving OSM file" -msgstr "" - -# d038c9bb38de4adaa878b55e3ca8843f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:17 -msgid "" -"In a previous session, you have already installed and configured JOSM as " -"well as master basic operations in JOSM such as drawing points, lines, and " -"polygons. You also used menu presets to add attributes to an object you " -"created on the map. Finally, you are to the point where you can digitize and " -"edit features on the map using JOSM." -msgstr "" - -# 117e5c1b08644fbeac1081c65239bfbd -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:20 -msgid "" -"In this session, we will look closely at the JOSM interface and learn how to " -"stage the map editing process in JOSM and also how to maximize the tools " -"that exist in JOSM." -msgstr "" - -# 023bf8218b8b4f2c8c69a2afff6800d5 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:24 -msgid "5.1 Editing tools in JOSM" -msgstr "" - -# 3c56599851bc4ec897d3bcb64edd1da4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:26 -msgid "" -"In this section, we build on our command of basic tools and techniques to " -"draw map features in JOSM and look closely at some advanced drawing tools. " -"To follow along with this section and practice using advanced JOSM tools, " -"please download in `Edit tools `_ then open JOSM " -"and point to the edittools package. It will look like the figure below:" -msgstr "" - -# 19d137fc01e844b3b8deecdc382889c0 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:32 -msgid "*The display of editing file in JOSM*" -msgstr "" - -# b28c3c4ff9ad4eb2b9e665d89d1a2f8b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:36 -msgid "5.1.1 Drawing Tools" -msgstr "" - -# e44a7fa5155e474bac67538b61e62daf -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:38 -msgid "" -"JOSM has some additional tools to make it easier to create high quality " -"lines and polygons. These tools are found in the :guilabel:`Tools` menu at " -"the top of JOSM. A quick glance reveals many functions that can help when " -"drawing lines and polygons, and editing objects on the map. We discuss the " -"most important of those tools in this section." -msgstr "" - -# f555c83028864d0bafaa55aa78d97ce8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:46 -msgid "**Options in JOSM Tools Menu**" -msgstr "" - -# ae1e0d1520fd42b3939dc233520df35b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:48 -msgid "" -"In applying the functions in this menu, you first must select a point, line " -"or polygon in the map window. The sample file you already downloaded " -"contains various elements that are labeled the names of different tools on " -"the menu." -msgstr "" - -# afb03d1b822c4649a9d6e348e7568e03 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:50 -msgid "" -"Try to select one of the elements in the file. Then go to the :guilabel:" -"`Tools` menu and click on the function identified on the feature you have " -"selected." -msgstr "" - -# eac5f5fe9f5643ca9909e47b90c0179a -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:52 -msgid "For example, click on the asymmetric circle." -msgstr "" - -# 9895441f41284d7ba8d87704d6004c27 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:57 -msgid "Next go to the :menuselection:`Tools ‣ Align Nodes in Circle`" -msgstr "" - -# 79f7e09879674c7faf17f61bb7d1a434 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:59 -msgid "The irregular circle will be aligned and symmetrical." -msgstr "" - -# 85c7d6569b674c32b1bf09d180ee75f2 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:61 -msgid "" -"Experiment with each of the tools using this sample file. A description of " -"some of the tools is provided below." -msgstr "" - -# 07ab423b23d642e0bcab9e3249456b21 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:63 -msgid "" -"**Split Way:** This allows you to divide a way into two separate ways. This " -"is useful if you want to add the attribute to the different road, such as " -"bridge. To use this function, select a point in the middle of way that you " -"want to cut, then select **Split Way** from the :guilabel:`Tools` menu, and " -"your way should be split into two ways." -msgstr "" - -# b29d12f88ae84f569148c60b155883af -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:65 -msgid "" -"**Combine Way:** This is **the opposite of Split Way**. To combine two ways " -"into one way, they have to share a single point. To use this function, " -"select the way you want to combine. You can select more than one object by " -"holding the **SHIFT** button on your keyboard and click on each way. When " -"you have selected the both of the ways, select :menuselection:`Tools ‣ " -"Combine Way`." -msgstr "" - -# 76ecc5970e3b49388a4b941ffde315fc -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:70 -msgid "*The result of the combine way operation in JOSM*" -msgstr "" - -# b9fbbc359e8e4a069582aff072c173a1 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:72 -msgid "" -"That if you want to combine ways that have different directions, you will " -"see this warning:" -msgstr "" - -# d92c4b1b976a480aa5152b55470db08f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:77 -msgid "" -"If the ways are connected, they can be aligned in the same direction by " -"selecting :guilabel:`Reverse and Combine`." -msgstr "" - -# 380f1715c8dd4fae867eba8f3c8ef233 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:79 -msgid "" -"**Reverse Way**: This will change the direction of a way. All ways in OSM " -"have a direction, shown in JOSM with an arrow pointing in the direction of " -"alignment. Direction is usual not a problem, except in cases where the one " -"way roads and river that flow in a certain direction. In this case, you need " -"to reverse the way so that it flows in the right direction." -msgstr "" - -# 2630049c7b9f40319e887b44dbbd909d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:84 -msgid "" -"**Simplify Way**: If your way has too many points in it and you want to make " -"it simpler, this operation will remove some points from a way without " -"adversely affecting the shape." -msgstr "" - -# 7ed8d223596b45eca8b3f43c0d217d95 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:89 -msgid "*The example of ways which will be simplified in JOSM*" -msgstr "" - -# 5f8c834617b44d059d3bc80691ad6f64 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:91 -msgid "" -"**Align Nodes in Circle**: If you try to make a circle, you draw a circle as " -"best you can then select the object. This function will help distribute the " -"points to make a perfect circle." -msgstr "" - -# c576895a9ee04ab0aa46919ab446053b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:93 -msgid "" -"**Create Circle**: Alternatively, you can use this tool, it will make a " -"perfect circle. Draw a way that represents the diameter of your circle." -msgstr "" - -# 50ce13940ad648b394836c145944b6a4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:98 -msgid "" -"**Align Nodes in Line**: This function will align a series of points into a " -"straight way. With long ways it is best to select sections of the line to " -"straighten. Be careful as this does have the tendency to shift the line a " -"little bit." -msgstr "" - -# 6f4a9713b0024630b264e634942f836f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:103 -msgid "*The Concept of Making A Way That Turned into A Straight*" -msgstr "" - -# b887560156d641a2a2ecc43834553af4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:105 -msgid "" -"**Orthogonalize Shape**: This function is more useful to draw a regular " -"shape such as building. After you draw an area, this function will reshaped " -"it to have square corners." -msgstr "" - -# 4ad550e966f44e0f82080e9a3e87b7ec -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:110 -msgid "*The concept of perfect the shape of polygon*" -msgstr "" - -# fed6810303554d01bd91fd5e0df1329b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:112 -msgid "" -"**Unglue way**: This tool allows you to detach the nodes that are connected. " -"For example, the common error is for a road shares the point with the corner " -"of a building. Of course roads don’t run into buildings usually, so this is " -"a mistake, and you can unglue the objects from one another." -msgstr "" - -# 473cc026024d41e69168b2bfc672c826 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:117 -msgid "" -"The common question is how to rotate a way or a polygon after the object was " -"drew." -msgstr "" - -# 0bd6166bf5324c0e8b01f893c321e833 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:119 -msgid "To rotate an object, first you need to select the object" -msgstr "" - -# 870789a667d545fa8b1967fc48693350 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:121 -msgid "Hold :kbd:`SHIFT+CTRL` in your keyboard" -msgstr "" - -# 2a9a432b4ee44f708b7a7c06fe294bbe -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:123 -msgid "Click and drag the mouse to rotate" -msgstr "" - -# a2c617bfdaf24d5fad8509a7000a8c83 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:128 -msgid "*The concept of rotating an object in JOSM*" -msgstr "" - -# dd6c0593e9234ab2b3833cd9bf1a9dd1 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:132 -msgid "5.1.2 Keyboard Shortcuts" -msgstr "" - -# 5b144a462fab4751bb44aa2a160f2038 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:134 -msgid "" -"After editing in OpenStreetMap, you will realize that you are spending a lot " -"of time with each click on the menu and submenu. To overcome this, JOSM has " -"a shortcut button that substitutes the lengthy menu process. You can simply " -"select the object directly and press the button in your keyboard. Here are " -"the most important shortcut keys." -msgstr "" - -# 177590ec552242e591509c3a62d3b97d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:139 -msgid "Select Tool" -msgstr "" - -# b2903aafec96478b959e909f82e803b6 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:143 -msgid "Draw Tool" -msgstr "" - -# 211dbcc4693a458fba47d88aa3df03be -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:147 -msgid "Zoom Tool" -msgstr "" - -# 4cc4f9816c0c4fb1bce07901ed904cf6 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:151 -msgid "Remove Object" -msgstr "" - -# 0deda17250c14cdf8f9d108abdac52dc -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:155 -msgid "Zoom In" -msgstr "Zoomer" - -# 2c829894801d45d6831d4456317a9f4a -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:160 -msgid "Zoom Out" -msgstr "Dézoomer" - -# 4d8606a16c254a1ab05d2f384b228362 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:163 -msgid "5.1.3 JOSM Plugins" -msgstr "" - -# 3905d79107814f3e99d76ccd7d5e13a8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:165 -msgid "" -"After you have acquired some skill in editing the map, you may want to use " -"the additional JOSM features to improve your mapping skills. JOSM allows you " -"to install various plugins, extending the functionality of the software. In " -"this session, we will look some of the more useful plugins that exist for " -"JOSM." -msgstr "" - -# 44351563e3ee424dba83660d3478f125 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:168 -msgid "" -"**buildings_tools**: If you draw a lot of buildings, this tool will make the " -"process faster and easier. **Building Tools Plugin** is useful to digitize " -"the building. It allows you to digitize one side of square building and " -"extend the shapes with ease, saving mouse clicks and saving time. After the " -"plugin is installed, you will see the new button in left side of JOSM, that " -"look like this:" -msgstr "" - -# 06f384991abe4c9d9582ef62ead7ed93 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:174 -msgid "Open JOSM and make a new layer" -msgstr "" - -# 0e111145af2a43f09dde882680c5e25b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:176 -msgid "" -"Select :guilabel:`building_tools` and double click to draw a way on the map" -msgstr "" - -# 476bbb3b7d5c4569b9b018339bcb0038 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:178 -msgid "" -"Then drag your mouse and click again to draw a square as shown in the figure " -"below" -msgstr "" - -# 2de4e380450d4484927d10384cb18e6e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:186 -msgid "*The process of drawing a building with building tools plugin*" -msgstr "" - -# 0b242d1eaa1c434084f6eb16d4013d3f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:188 -msgid "" -"The tool not only creates a square with a triple click, but it also will " -"automatically apply the **building=yes** tag into the polygon." -msgstr "" - -# 82d670bdd615410397da8afffcc90d59 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:191 -msgid "**Creating Complex Buildings**" -msgstr "" - -# 7edc86ff081e43259f7c7f68dcbb0538 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:193 -msgid "" -"You can also create building more complicated buildings by first drawing " -"some overlapping buildings and merging them together." -msgstr "" - -# 1b18535f937b49988a8571bb786bdaa7 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:195 -msgid "Draw two buildings which overlap, so that they form a L shape." -msgstr "" - -# 88576b7e69104cacbe172ba7d562b650 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:197 -msgid "" -"Select both buildings (hold :kbd:`SHIFT` to select more than one object)." -msgstr "" - -# 0c522cdd68954eba83f7cda28fe36b7b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:199 -msgid "" -"Go to :menuselection:`Tools > Join overlapping areas` or hold :kbd:`SHIFT+J` " -"in your keyboard." -msgstr "" - -# 2f50abc4bcf74636a4f0856b384ff91e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:204 -msgid "" -"**DirectUpload:** If you collect a lot of GPS tracks and you want to save to " -"the OSM database, this plugin will make it easier for bulk uploads." -msgstr "" - -# 0412d18caef64aa68c2e2adcedbbb2ce -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:206 -msgid "" -"**editgpx**: If you want to upload the GPS track from Garmin device, you may " -"need to use this plugin. Due to a technical glitch, OSM will not receive GPS " -"track that have been saved on an external memory card in Garmin, but this " -"plugin can fix the file so they can be uploaded." -msgstr "" - -# ef190e6884be4037b8c4b25765eb81d8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:208 -msgid "" -"**fieldpapers**: This plugin loads Field Papers that have been scanned in " -"JOSM." -msgstr "" - -# 8dd301ec2def4f47ae535cc087c80bb6 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:210 -msgid "" -"**imagery_offset_db**: This plugin for mappers who discover areas where the " -"Bing satellite imagery is not aligned. This will be explained in more detail " -"in the next chapter." -msgstr "" - -# a64ab53c814a4d56a1e4cb9cb5fa5132 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:212 -msgid "" -"**mirrored_download**: With this plugin, you can download OSM data with a " -"wider area to edit." -msgstr "" - -# 1c8010581e5444f08fa8be971d8f66fc -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:214 -msgid "" -"**print**: To add Print function, if you want to print an area quickly and " -"where it need not look very good." -msgstr "" - -# 7270541de9f946888c7f9abda2af31c2 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:216 -msgid "**utilsplugin2**: To add additional tools and menus in JOSM." -msgstr "" - -# 6fbe602ae6d04bf9b5c51385f4992585 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:218 -msgid "" -"If you haven’t done so already, install the plugin shown in the figure below " -"following the instructions for `JOSM Plugins `__." -msgstr "" - -# 3ab8c2f70c744772ac4272ffd6068d27 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:223 -msgid "*The display of utilsplugin 2*" -msgstr "" - -# aa2759ae22c34f038005982433845708 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:225 -msgid "" -"After you install this plugin and restart JOSM, you will have a new menu at " -"the top of JOSM labeled :guilabel:`More Tools` as shown in the figure below." -msgstr "" - -# 614234f18a7f499d918188c71b70b47e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:230 -msgid "*The option of more tools menu in JOSM*" -msgstr "" - -# 7754c31bbf584da39c8a8fc4c238172d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:232 -msgid "" -"Create new layer and experiment with some of the new tools. We will explain " -"some of the new tools that are very useful:" -msgstr "" - -# 903716ad1c1145af92f56d92098ccad4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:234 -msgid "" -"**Add Nodes at Intersections**: This tool is very useful to add a missing " -"node in the selected way intersections. It’s good practice that the way " -"should have common nodes where they intersect." -msgstr "" - -# afe3a3a637944a5cb86e409208d6d85c -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:239 -msgid "*Adding node at intersections*" -msgstr "" - -# 3fc605d95dfd494799eb2764177f60bb -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:241 -msgid "" -"**Copy Tags from Previous Selection**: This function is very useful for " -"copying a tag easily. Suppose you want to create a lot of objects with the " -"same tagging scheme. Click on an object with the tagging scheme you want to " -"apply and press :kbd:`SHIFT+R` to copy a tag from the previously selected " -"object. You can repeat this process for all objects that you want to apply a " -"tag. Remember that the tags will be copied from the previously selected " -"object, so if you click on an object that has not been tagged the copy " -"function will have no effect.." -msgstr "" - -# 21fd61c3975c4c8ab9ab58470c489cad -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:246 -msgid "*Copying tag from the selected building*" -msgstr "" - -# 754845769ebe4defa99c19a31740136d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:248 -msgid "" -"**Add Source Tag**: This tool simplifies adding a source tag, given that the " -"last specified source will be added as source tag to your object. You can " -"insert source with just one click." -msgstr "" - -# 823a038a5a0548418ffd91dcb4839a0b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:250 -msgid "" -"**Replace Geometry**: This tool is very good if you want to improve the " -"drawing of an object, but retain the history, the attribute and the object " -"ID. Example, if you find a complex building drawn in a way that is not " -"appropriate, you can draw the object again, select the old object and new " -"object, select :guilabel:`Replace Geometry` to transfer all of the above " -"information." -msgstr "" - -# 6d5c7e1283c649b498e8442bcef3f305 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:255 -msgid "*Replace Geometry in JOSM*" -msgstr "" - -# 5cb242d5c5ea409290cd0308f742aa02 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:258 -msgid "**Selection**" -msgstr "" - -# fa86fdc2af624ff28dfb20b33c2fd2eb -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:260 -msgid "" -"Utilsplugin2 also provides a lot of tools in :guilabel:`Selection` menu. Try " -"experimenting with each of these tools." -msgstr "" - -# 1b07a0e0bfff4cfd9b9981e61f875477 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:266 -msgid "*The display of menu in selection tools*" -msgstr "" - -# a1f1b21e80014154b99fc8f058fc9431 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:268 -msgid "" -"One of the selection tools which we use frequently is **Unselect Nodes**: " -"This tool deselects all points. This can be useful if you draw a square to " -"select a lof of objects, but you don’t want to select a point that contains " -"all the lines and polygons. An example is shown in the figure below." -msgstr "" - -# 0468ba81f3a84e4886f86849acef0d47 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:275 -msgid "*The example cancel node in JOSM*" -msgstr "" - -# fe9b0dfe34e94574ab2e39f5170d00e3 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:279 -msgid "5.2 Editing Tips" -msgstr "" - -# dc90e6ab2e53470ba181f98b14fcae95 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:281 -msgid "" -"There are some common mistakes that mappers make when they start using " -"OpenStreetmap. In this chapter we’ll identify a few of the most frequent " -"errors and offer some tips for better mapping." -msgstr "" - -# 7d12b99efe3f41d98ff9c78354a10fc6 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:285 -msgid "5.2.1 Connecting Objects" -msgstr "" - -# ab0f482ab109460fbf37f62e0bccca62 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:287 -msgid "**Some objects should not connect...**" -msgstr "" - -# a3e95a77ac66461ea0b8d55bda58954f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:289 -msgid "" -"When you are creating polygon and line that are not supposed to be " -"connected, make sure that they are not merged together by sharing a node. " -"For example, highway nodes should not be snapped to buildings, because no " -"one likes a road that leads directly into a wall! If you want to disconnect " -"two or more objects that share the same node, select node and go to :" -"menuselection:`Tools -> Unglue Ways` or press :kbd:`G` as shown in the " -"figure below." -msgstr "" - -# 8bd5567cfb5c4ed58cc497a34acdb728 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:295 -msgid "*Building and Road Connected*" -msgstr "" - -# e06aa64bbd224db0a22a315e1f42946a -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:300 -msgid "*Building and Road Separated*" -msgstr "" - -# 33a15ec1e1b6486ca98af77e4cd53542 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:303 -msgid "**...but some objects should connect**" -msgstr "" - -# d58b422529d84e2b895afe6c4f256b07 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:306 -msgid "" -"Roads that intersect should always share a node as shown in the figure " -"below. If they do not share in a common node, then the computer has no way " -"of knowing that the roads actually connect to each other. Therefore if you " -"see the roads are not connecting to each other, please fix it by selecting " -"the node from the road that you want to connect then go to :menuselection:" -"`Tools -> Merge Node` or press :kbd:`M` in your keyboard and drag it." -msgstr "" - -# a7e84eb49e8f41c79f6c46174d2966a4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:312 -msgid "*Road must connect to each other*" -msgstr "" - -# 184338e25b8a4d4db73702af59ca9423 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:316 -msgid "5.2.2 Overlapping Object" -msgstr "" - -# 7dd36808884f4f35885d72def8c9a6c2 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:318 -msgid "" -"A common error is to have overlapping polygons when the objects they " -"represent do not overlap in real life. A building can not overlap to another " -"building. For example, a polygon drawn to represent a park outside a " -"building should not overlap with the building. Instead it should be drawn " -"next to the building." -msgstr "" - -# 595a7428135c4ffb9a388c07dfe98930 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:325 -msgid "*The example of overlap building*" -msgstr "" - -# bc51f28a339d43f89d96aaa0779d79e0 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:327 -msgid "" -"There are some exceptions to this rule, such as school. Within a school yard " -"you might identify individual buildings using polygons, yet you also might " -"want to create a polygon around the entire school yard. In this case it is " -"fine for the polygons to overlap, but the rule to follow here is to make " -"sure that the buildings are completely inside the landuse polygon." -msgstr "" - -# 4fa2217518304c55a685f8dd30bb68c4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:333 -msgid "*The example of overlap building that is true and false*" -msgstr "" - -# cbba6dc6f0c047b6aea896ca7c5669cd -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:337 -msgid "5.2.3 Other Errors" -msgstr "" - -# c520a78ba7f345e6828153e57ddc43a7 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:340 -msgid "Tag given in the node rather than on building" -msgstr "" - -# ae377823206141cd8182337d204ff89c -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:345 -msgid "*The example of building given a false tag (left) and true tag (right)*" -msgstr "" - -# 61a46a08d8e745469951c5f86bbddac4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:347 -msgid "" -"A common error is adding tag on a node that makes up part of a line or " -"polygon. This often happens when someone draws a building and then select " -"one of the nodes that participate in the object. The way to avoid creating " -"an improper way is by clicking directly on the line." -msgstr "" - -# 63cede9d537445e685ddde2c65c709dd -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:352 -msgid "" -"Intersection that meets in road corner/ intersections should be separated" -msgstr "" - -# a18d74edb8a54f51b773546049973a49 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:357 -msgid "*The wrong intersection (left) and true intersection (right)*" -msgstr "" - -# b8d3f419d16e4cf3b49c96fd9dc9d709 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:359 -msgid "" -"When roads intersect each other at road corners, you should not create a " -"curved line at intersection. Line should form an angle of 90° that " -"represents the actual conditions." -msgstr "" - -# 7bce0b5751c54557b53b4928112ecf4d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:363 -msgid "There is no tag in a node or a line" -msgstr "" - -# 942e17857e754d2385194662a67eadd5 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:368 -msgid "" -"To fix this, select an object and tag the object in accordance with the " -"information that describes the object. Alternatively, the object can be " -"removed if the object is in error." -msgstr "" - -# c0a192ff2bff448eb7cd82122a88fb8d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:373 -msgid "Line near, or with another line but they are not connecting" -msgstr "" - -# b9e0dbd13fbf42d782a98252b5da80a8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:375 -msgid "" -"The figure below shows an example of lines that should connect but do not." -msgstr "" - -# 8049d00080344f0cb94c28ee07941c7f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:380 -msgid "*The example of lines not connecting to each other*" -msgstr "" - -# 1d611787352a4859a7ab7bd769ee318f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:382 -msgid "" -"To fix it, you can select a node from the line that you want to connect, and " -"then select the :guilabel:`Draw Node` tool to add a node at the end of the " -"line. Alternatively, you can use the :guilabel:`Merge Node` tool (if the " -"front line is not connecting, that is a node), the following stages are:" -msgstr "" - -# 7dac99ad2dab464081b44f94b7b39d30 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:385 -msgid "" -"Select the two adjacent nodes, which is in the second line you want to " -"connect" -msgstr "" - -# 35c41538428841f9b6f2e578a281b7bf -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:387 -msgid "Select :menuselection:`Merge Node > Tools` menu" -msgstr "" - -# 91a085bb21ec4a9e8be831131a5dfc12 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:389 -msgid "" -"If the end of the first line is not yet connected, and there is not a point " -"to connect to in the second line, you can use the :menuselection:`Tools > " -"Join Node to Way`." -msgstr "" - -# 365be9bb5b2f4c3084c6d0ec7717309d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:393 -msgid "Way should not cross the building" -msgstr "" - -# 2a17b8c11f434b0fb990ea54ad3e9483 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:395 -msgid "In the figure below, a linear feature runs directly through a building." -msgstr "" - -# d5ae55dbbb7e43ef81c0e130c7fd074d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:400 -msgid "*The example of way cross the building*" -msgstr "" - -# 2700aa138df44945bf587d42a79651ac -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:402 -msgid "" -"To fix this, you need to use the latest satellite imagery so you can " -"determine which objects are correctly placed. If you are already using the " -"latest imagery, simply move the object to the appropriate place and delete " -"any obsolete features." -msgstr "" - -# ae8060902ddc4fd6b50c7d3acac0d978 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:406 -msgid "5.3 JOSM Editing Process" -msgstr "" - -# f9ca9ada166c48f2a9592aae3f0ad412 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:408 -msgid "" -"Editing OpenStreetMap with JOSM is similar to editing with the iD editor. " -"But because JOSM is a desktop application, it works a little bit " -"differently. The general process of editing and adding to OpenStreetMap with " -"JOSM will always follow this pattern:" -msgstr "" - -# 9c092d9559c84c2fbb30b2fbb368f379 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:411 -msgid ":guilabel:`Download` the current map data from OSM" -msgstr "" - -# 85031d1101694223abf0154e94d4013a -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:413 -msgid ":guilabel:`Edit` it using satellite imagery, GPS or Field Papers" -msgstr "" - -# 0690e93483344b64a1f9ae04d09cc945 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:415 -msgid ":guilabel:`Save` changes to OpenStreetMap" -msgstr "" - -# 7e34e2006e26434189b8eb3983257089 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:417 -msgid "In the following sections, we explore this pattern in greater detail." -msgstr "" - -# 620dcf592b724efc890ab597ec088e28 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:420 -msgid "5.3.1 Downloading OSM Data" -msgstr "" - -# 1dad5a196c194ff7bd7914305e757c0e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:422 -msgid "" -"The first step is to download the data for the area of interest that you " -"want to map. Remember that you need to do this every time that you want to " -"make changes to the map, because the map is often being updated by other " -"users and you will want the latest data." -msgstr "" - -# 128b54f2c92843269683ac735d288882 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:425 -msgid "" -"Click on :guilabel:`File` in the top left corner of JOSM and click :guilabel:" -"`Download from OSM`. This will open up the download window. You can access " -"this window more simply by clicking on the :guilabel:`download` button, " -"shown here:" -msgstr "" - -# 7556b6700d0b4ba49d4ac4a080931619 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:431 -msgid "" -"When the download window opens, you should see a map with a pink box drawn " -"on it. If you don’t see the map, click on the tab marked :guilabel:`Slippy " -"map` as shown in the figure below." -msgstr "" - -# 53084ac29bef4bf88a870c278a0d3156 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:437 -msgid "" -"3. The pink box represents the area of interest that we would like to " -"download for editing. Use your mouse to pan and zoom to an area that you " -"know very well, such as your hometown or neighborhood. The controls are the " -"same as in the JOSM map window. The right mouse button lets you drag the " -"map, and your scroll wheel allows you to zoom in and out." -msgstr "" - -# de62a50c193d4f60a6fde57da9eaa2e8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:441 -msgid "" -"4. Draw a box around the area that you want to download. To draw a new box, " -"click on the map, hold your left mouse button down, and drag your mouse to " -"create a box. Release the mouse button to finish drawing the box." -msgstr "" - -# 30410edaa7824a28ad115c648ea186fc -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:444 -msgid "" -"5. When you are satisfied with the size and location of the box, click :" -"guilabel:`Download` at the bottom of the window. JOSM will fetch the data " -"for this area from OpenStreetMap and open it in your map window for editing." -msgstr "" - -# 2ddee426f30444c4bba261fb4f0baf42 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:451 -msgid "5.3.2 Add Imagery" -msgstr "" - -# 1861e87673a746ddb1c4a2792b452b7e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:453 -msgid "" -"If you followed along when we added our first points with the iD editor, you " -"remember that beneath the map data there was a satellite image that helped " -"us identify objects on the ground. This imagery was licensed from Microsoft " -"Bing, which generously provides its imagery for OpenStreetMap users to use " -"as a reference while contributing to the map." -msgstr "" - -# 37ec6f5dc85d4a619886f0a1533e9115 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:457 -msgid "" -"To add the Bing satellite imagery in JOSM, click :guilabel:`Imagery` on the " -"top menu of JOSM and selecting :guilabel:`Bing Sat`." -msgstr "" - -# e16c1e4fc6914444a26576ca7890f7b9 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:464 -msgid "5.3.3 Edit with JOSM" -msgstr "" - -# 6f4e30d858244b4d878e2ab295aeaddd -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:466 -msgid "" -"To this point, we have been doing some pre-edit steps in JOSM starting with " -"downloading OSM data and adding satellite imagery as the background. Next, " -"we’ll edit the map and add new objects on it." -msgstr "" - -# e433b0edbb63458590da20141237292d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:469 -msgid "" -"You might rather see more or less data in your editing window. What you see " -"will depend on the size of your editable area. Please note, the data you are " -"working with is real data and the nodes, lines and polygon in your map area " -"represents actual objects on the ground." -msgstr "" - -# a71da0ff102a4e3ab01495f97a94c47e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:472 -msgid "" -"Use same steps that you have learned before to add nodes to your map. If you " -"see any error in your object, please fix it." -msgstr "" - -# 9005a649fb9d40bc8e06b9e9889a3238 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:474 -msgid "" -"2. You do not need to hurry, take your time to understand the steps. If you " -"are not really sure about the outline or identify of some object, you should " -"leave these off the map." -msgstr "" - -# a5b7eec8176741eda98ebf83d00526ee -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:477 -msgid "" -"3. If you want to move nodes, lines, or polygon, you can use :guilabel:" -"`Select Tools`. Click the object that you want to move and drag it to where " -"it should be.This step could be used to fix location of objects which have " -"wrong position." -msgstr "" - -# dca619f9a1e843d4b68d95a699cd75e4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:483 -msgid "" -"4. Use :guilabel:`Draw Tool` to draw nodes, lines, and polygon. Add " -"description and information of your object using Presets menu. You have done " -"this in previous chapter." -msgstr "" - -# 150a8ed97687411a88f93842aa75b27f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:487 -msgid "JOSM Layer" -msgstr "" - -# 300ab2bf617d49ac87bccd51af9cff9f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:489 -msgid "" -"You might be notice that everytime you add new object to JOSM, your object " -"will be added to layer panel at right side in JOSM. Your :guilabel:`Panel " -"Layer` should looks like this:" -msgstr "" - -# c117810b2f7f42818a4e1f17f4cef576 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:495 -msgid "" -"Every item listed is a different source of data that you have open in JOSM. " -"In the example shown in the figure above, :guilabel:`Data Layer 1` is the " -"OpenStreetMap data that we are currently editing. :guilabel:`BingSat` layer " -"is satellite imagery that is used as a background in JOSM." -msgstr "" - -# 297355afa6a84497bde8e20a777cb52d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:499 -msgid "" -"Those layers that are used as background images help us identify and " -"digitize objects in JOSM. These include satellite imagery, but also GPS " -"tracks and scans of Field Papers. We call these layers **base layers** and " -"our OSM data layer is main layer that we use to digitize and edit, add " -"objects, move objects, etc." -msgstr "" - -# 771c35257db549999248e0459a97f864 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:503 -msgid "" -"To move a layer, click on that layer in :guilabel:`Layers` panel and click :" -"guilabel:`up` or :guilabel:`down blue arrow` to move it." -msgstr "" - -# 7f0fd80fefbf4bafb5de092b1cc76f09 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:508 -msgid "" -"To hide a layer, select layer with your mouse and you can click :guilabel:" -"`Show/Hide` button:" -msgstr "" - -# fbcb20268fee42288ff53cfb6f63645b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:513 -msgid "" -"You should see your layer that you select will be hide in JOSM. If you want " -"to show it again, you can click the show/hide button and it would be " -"automatically show in JOSM." -msgstr "" - -# ad0146c5591e4411b01dd3da7ff3409d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:516 -msgid "You also can delete a layer using the :guilabel:`delete` button:" -msgstr "" - -# 29451a25dc914432876568f67e26915b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:521 -msgid "" -"4. Last, it is very important to know that you only can edit the :guilabel:" -"`Active` layer in JOSM. If you can not edit your map in JOSM, it might be " -"because your layer is not active. Most layer, such as GPS point, Field " -"Papers, and Aerial Imagery cannot be edited. The only layer that can be " -"edited are data from OpenStreetMap, which are usually called **Data Layer " -"1**." -msgstr "" - -# e57a9d7ab914405d94ef7de934f1d769 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:525 -msgid "" -"To make a layer active, select it in the :guilabel:`Layers` panel, and click " -"on the :guilabel:`Activate` button:" -msgstr "" - -# c2c1bad3546a4568876006c15961a0cf -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:531 -msgid "Tag" -msgstr "" - -# 94f7816a7d304111a6ba4d23748215fd -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:533 -msgid "" -"Tag is just like a label that you put to an object. For instance, if we add " -"an object in some area and that object is a mosque and its name is **Masjid " -"Raya Sabilal Muhtadin**; amenity that we can use is **place of worship** and " -"mosque as we know, is Muslim place of worship. Therefore, you can add a " -"**religion=Muslim** tag to the mosque as well as any other information you " -"can supply about that object. The tag will be saved as text, specifically as " -"a **key** and **value** combination. In OpenStreetMap, you can see all " -"information about an objects in properties panel at right side of your JOSM " -"window as shown in the figure below." -msgstr "" - -# ab0941e450d64341beac5c5048225057 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:542 -msgid "*Example Tag of object in JOSM*" -msgstr "" - -# 9dfee9aa157b4a66849e18499137eb0e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:546 -msgid "Editing Tags" -msgstr "" - -# 94c720852efd432983efa54a44bdd2d8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:548 -msgid "" -"You can add, edit, and remove tags directly from properties panel. But, tags " -"are automatically defined in English and sometimes it is confusing " -"especially if you do not understand English. Hence, non-English speakers may " -"find it is easier to manage tags using a Preset Menu. Needless to say, when " -"you add or edit tag, the attribute of object will be change as well." -msgstr "" - -# 294ebc4cda1c4f5a918138acd658f818 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:552 -msgid "To edit tag of an object, first **select the object**." -msgstr "" - -# 639f3e6abd6c48ddba1ccbe50e306097 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:554 -msgid "" -"You can edit the tag either: (1) **Using Presets Menu**, or (2) **Edit " -"Directly** in properties windows at right side of your JOSM." -msgstr "" - -# 18cf6b9da00c49e29124174885ddc8b1 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:557 -msgid "5.3.4 Save Changes" -msgstr "" - -# a878dd8dee1a426d8d83cbfbc6cb7448 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:559 -msgid "" -"The third and final step to complete our edits is to upload changes we have " -"made to the OpenStreetMap database. To save the changes, you must be " -"connected to the internet." -msgstr "" - -# 384e3dced1ad4ea7986f3e3679c056ed -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:562 -msgid "" -"1. Click :guilabel:`File` on the top menu, and then click :guilabel: `Upload " -"Data`. This will open up the upload window. You can access this window more " -"simply by clicking on the :guilabel:`upload` button, shown here:" -msgstr "" - -# ae665258146140bdaffa76827e132175 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:568 -msgid "" -"2. The window that appears shows a list of the objects that you are adding " -"and the objects you are modifying or deleting. In the box at the bottom you " -"are asked to provide a comment about the changes that you are making. Type " -"in here a brief description of your edits." -msgstr "" - -# ed7d42951f084253aa4d4568982690d4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:574 -msgid "Click :guilabel:`Upload Changes`" -msgstr "" - -# 8a61f3caac1a4855a3f2e260e489f2e3 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:576 -msgid "" -"Wait a few seconds for your changes to be uploaded, and then you are " -"finished! You have edited OpenStreetMap!" -msgstr "" - -# feeffab8804e4c33bb31229ccd3eb6a0 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:580 -msgid "5.3.5 Save OSM File" -msgstr "" - -# a4c72f97d2534716b227377750831229 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:582 -msgid "" -"When you edit using JOSM, you should download, edit and upload your changes " -"at regular intervals. Do not be afraid to upload your changes several times " -"during an editing session. This insures your changes upload to OSM database " -"completely and you face less risk of losing your work. There are some cases " -"where you have not finished your work, or your internet connection may be " -"suddenly turned off. If that happens, you can save your work locally in " -"JOSM. These are the steps to save your work:" -msgstr "" - -# 428a685a5b9349328a0ff45f90fc55c5 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:587 -msgid "" -"1. To save your OSM file, make sure your layer active. Click :menuselection:" -"`File > Save`. Choose your location in your computer and give a name to your " -"file. You also can save your file by click this button:" -msgstr "" - -# fb5fbcd29c41430dbc48e11803fcc9a8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:593 -msgid "" -"You can close your JOSM and your works has been saved. When you want to open " -"your file, open JOSM and go to :menuselection:`File > Open`." -msgstr "" - -# dbd9662dfcad4ff18f8db6195724fc74 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:596 -msgid "5.3.6 See Your Changes on The Map" -msgstr "" - -# 54ad2ba9382f4cd0ac48ee713f3e84c8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:598 -msgid "To see your edits on the map, take the following steps:" -msgstr "" - -# fff6a3256f034ce5962d891a15b56007 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:600 -msgid "" -"Open your internet browser and go to `openstreetmap.org `_" -msgstr "" - -# 90146fdb1fe147f8a9264981f0477548 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:602 -msgid "Move the map to the area that you edited." -msgstr "" - -# 6e3fe1c409184746bea275dceced631b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:604 -msgid "" -"You should see your changes now appearing on the map! If you don’t, try " -"pressing :kbd:`CTRL+R` to refresh the web page. Sometimes the map doesn’t " -"update properly and needs to be reloaded." -msgstr "" - -# d6f52d87ec4b4629bf4808be552ce6d6 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:606 -msgid "" -"What if you don’t see your changes? Don’t worry, it may take a few minutes " -"for the changes to be shown on the map. Also, check your additions in JOSM " -"to make sure that you added them correctly. A good general rule is, if your " -"point has an icon in JOSM, then it should be seen on the main map at the " -"OpenStreetMap website." -msgstr "" - -# abfd6de54286412ca46f59719299b49f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:610 -msgid "5.4 JOSM Data Quality Assurance" -msgstr "" - -# e40b70ecc0b64ef7921df6a33a63e2e1 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:612 -msgid "" -"Contributing to OpenStreetMap is easy to learn, but difficult to master. " -"Everybody makes mistakes, but the system works because even when one person " -"does something the “wrong” way, there are always other mappers ready to help " -"and fix errors. As you map more and more, the process will continue to get " -"easier, and you will learn the “proper” way to do things. This chapter is " -"devoted to helping you make quality contributions to OpenStreetMap. We will " -"begin by discussing various editing techniques in JOSM that will improve " -"your workflow, and how to avoid common mistakes that beginning mappers make. " -"Lastly, we will then discuss the JOSM validator tool, which is an automated " -"way of checking for errors." -msgstr "" - -# 204fbe3bfa2b4bed8f3a7ac13f3adf8a -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:620 -msgid "5.4.1 Warnings and Errors in JOSM" -msgstr "" - -# 92b381f04c314defaae16ba0687963a8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:622 -msgid "" -"There is a stage when you upload your work to OpenStreetMap when you get a " -"window notification as in the figure below:" -msgstr "" - -# d3e8dbc434584f80b0f3ae5bb777dcfe -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:627 -msgid "" -"This is the way JOSM tells us that something is wrong with our data and it " -"needs to be fixed before we upload it to the server." -msgstr "" - -# 9409d590b1a44879a983fea23675b54e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:629 -msgid "" -"JOSM comes with a :guilabel:`validation` tool that does an automated " -"analysis of possible mistakes. This is useful for finding errors that you " -"may have overlooked. When you run the validation tool, it returns two types " -"of problems:" -msgstr "" - -# 1c22dbb316fe4924b42cbcebb53d9aed -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:631 -msgid "" -"**Errors**: These are important to fix, and you should not ignore these. " -"Examples of errors include duplicated objects or overlapping lines and " -"polygons." -msgstr "" - -# 6e33c2c560b34e2b803e4eb269345d9c -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:633 -msgid "" -"**Warning:** These are problems that are important to fix, but in some " -"cases, they are tolerable." -msgstr "" - -# a4e6719d20ea4295bcdcb9c07bc5991d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:635 -msgid "" -"One thing to note is that if you download a large area of the map and run " -"the validation tool, you may get a very long list of errors and warnings. " -"This is because the validation tool works on the whole map in your editing " -"extents, --not only the changes that you have made. So you may see mistakes " -"that other mappers have made which you are free to fix or ignore. But the " -"validation tool gives you the opportunity to look at the mistakes one by one " -"and evaluate them." -msgstr "" - -# c0651555ba344c12b0c1738e7e9cc4be -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:641 -msgid "5.4.2 Validation Tool" -msgstr "" - -# 6a9778eab96a4623baf77ba5154a6a99 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:643 -msgid "Let’s learn how to use validation tool." -msgstr "" - -# 111333f713604532ad4910f0a3ac4a89 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:645 -msgid "" -"Download some area in JOSM. If you do not see :guilabel:`Validation Result` " -"at **right side panel** in your window, tick on the **blue checklist** icon " -"from the left panel in your JOSM window as circled in the figure below." -msgstr "" - -# 1bf9268836414897937cff38d633f009 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:650 -msgid "*Validation Result Button*" -msgstr "" - -# 71eb1d21b175436e91ffe7a10ba4cf53 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:652 -msgid "" -"**Ensure that nothing on the map is selected**. If you run the validation " -"tool with anything selected, it will only validate what you have selected, " -"and not the whole map. However your mouse in the validation window and " -"click :guilabel:`Validation`" -msgstr "" - -# 3ec215b79e0c4048b63c8cd056d7eae2 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:657 -msgid "" -"The map will change and any warnings will be circled in yellow, errors in " -"red. In the :guilabel:`Validation Results` window, as shown in the figure " -"below, you will see a list of warnings and errors, if there are any." -msgstr "" - -# 7f057c583e5943b8b2f2be24dfdceb99 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:662 -msgid "*Validation Layer and Validation Result*" -msgstr "" - -# 6d0c1d61ce5b4092aecabeaa358d490a -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:664 -msgid "" -"**Error** should almost always be fixed. You can zoom to an error, by right " -"clicking on it in the window and selecting :guilabel:`Zoom to Problem`. Then " -"you can fix the mistake manually." -msgstr "" - -# e32534e352894e4083b62e24658ccb88 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:666 -msgid "" -"5. **Some errors can be automatically fixed**, such as **Duplicated node** " -"errors. You can click on the folder for these types of errors and click the :" -"guilabel:`Fix` button in the window. Many errors, however, need to be " -"corrected manually." -msgstr "" - -# 34899aa53d394482bef2a7da8ac48bd7 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:672 -msgid "" -"Usually there are many more warnings than errors. By giving you a warning, " -"JOSM is telling you that it is probably a mistake, but not always. So you " -"will need to use your judgement to see if it is an error or not." -msgstr "" - -# 7ea7c219216d462b8f14a4b67d59c13d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:674 -msgid "" -"If you select a warning from the list and decide that it is not a problem, " -"click :guilabel:`Ignore` and it will be removed from the list." -msgstr "" - -# 1c6de1ee95204bcabee22b99dfb95fa4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:676 -msgid "" -"You can re-run the validation tool at any time by clicking :guilabel:" -"`Validation`." -msgstr "" - -# e13a75ff2f8b4cc68c8f932e6012714d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:679 -msgid "Summary" -msgstr "" - -# d4897bfa82b445508af43f12c8834ea5 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:681 -msgid "" -"Awesome! You have successfully learned how to edit OpenStreetMap in JOSM and " -"how to maximize some tools in JOSM to help us in editing our map. You also " -"know about mistakes and errors that should be avoided when editing in JOSM." -msgstr "" - -# 0ff2a045adc54bc5b0fd9124407ac5e4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:684 -msgid "" -"In next chapter, we will learn how to use **Global Positioning System** " -"(GPS) to collect data when doing a field survey and how to add it to " -"OpenStreetMap." -msgstr "" - -# b2cfaf78e5004ceb9a1d7c7057136037 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:686 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-06-using-gps.po b/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-06-using-gps.po deleted file mode 100644 index 4422788e..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-06-using-gps.po +++ /dev/null @@ -1,678 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 98f2cfd852394b52ad5a0ce6eede45a0 -#: ../../source/training/osm/Chapter-06-using-gps.rst:6 -msgid "Chapter 6: Using GPS" -msgstr "" - -# fd4b485bf5294b44a561f776ffa00ebd -#: ../../source/training/osm/Chapter-06-using-gps.rst:8 -msgid "**Learning objectives:**" -msgstr "" - -# bfca61cebf9c43c3b095670d36b2e5dd -#: ../../source/training/osm/Chapter-06-using-gps.rst:10 -msgid "Understand GPS and the types of GPS" -msgstr "" - -# cd467f9f07244d01903a40af7d51b0d9 -#: ../../source/training/osm/Chapter-06-using-gps.rst:11 -msgid "Turn on a GPS unit" -msgstr "" - -# 632c9642834e497d8d7f002b70eb7ffb -#: ../../source/training/osm/Chapter-06-using-gps.rst:12 -msgid "Adjust GPS settings" -msgstr "" - -# 928ed40ac12148cda89aac6855acf686 -#: ../../source/training/osm/Chapter-06-using-gps.rst:13 -msgid "Understand factors that affect GPS accuracy" -msgstr "" - -# 73336677f58d4fdfa212b7f211a05c19 -#: ../../source/training/osm/Chapter-06-using-gps.rst:14 -msgid "Understand tracks and waypoints" -msgstr "" - -# b51c3e2bf17b4455a9b48a49d203ec04 -#: ../../source/training/osm/Chapter-06-using-gps.rst:15 -msgid "Collect data using GPS" -msgstr "" - -# 7e382349466647e294f23d607ae1fac9 -#: ../../source/training/osm/Chapter-06-using-gps.rst:16 -msgid "Copy GPS data (tracks and waypoints) to computer" -msgstr "" - -# 4dda42eb72e9442588795c113026350f -#: ../../source/training/osm/Chapter-06-using-gps.rst:17 -msgid "Open waypoints and tracks in JOSM" -msgstr "" - -# 19da7f27a55048348950a1a22be392e0 -#: ../../source/training/osm/Chapter-06-using-gps.rst:19 -msgid "" -"In this chapter we discuss one of the most important parts of mapping: how " -"to add actual information from field to map. We will learn several methods " -"to do field survey in this module. We will see what GPS is and how GPS work. " -"You will learn how to operate GPS and how to use the results for making a " -"map." -msgstr "" - -# 0001776e69374deaae8568c53e026ef7 -#: ../../source/training/osm/Chapter-06-using-gps.rst:25 -msgid "" -"Here we will explain how to operate Garmin eTrex Vista HCx, a GPS that is " -"commonly use for mapping activities. There are so many other GPS model that " -"can use the same operation so if you use different model, don’t worry – in " -"principle it is still the same." -msgstr "" - -# 7cabad609dbe43649e71b5b721c11b92 -#: ../../source/training/osm/Chapter-06-using-gps.rst:31 -msgid "6.1 What is GPS?" -msgstr "" - -# 224b8b561719443aa96b8a85ac42a992 -#: ../../source/training/osm/Chapter-06-using-gps.rst:33 -msgid "" -"A GPS is like a mobile phone, except that instead of receiving radio signals " -"from telephone companies, it receives signals from satellites that are going " -"around the Earth. By receiving these signals from the satellites, a GPS is " -"able to calculate its exact location on the planet. It records this location " -"in coordinates, which are two long numbers. One number tells you how far " -"east or west you are - this is called **longitude**. The second number tells " -"you how far north or south you are - this is called **latitude**. Every " -"place on Earth has unique geographic coordinates." -msgstr "" - -# a41b6c68558642d38849068862c140f2 -#: ../../source/training/osm/Chapter-06-using-gps.rst:50 -msgid "6.2 Turning on the GPS" -msgstr "" - -# 67a930980e6b4eceb38d7aa4720575e2 -#: ../../source/training/osm/Chapter-06-using-gps.rst:53 -msgid "" -"Before turning on your GPS, go outside where you have a clear view of the " -"sky." -msgstr "" - -# 79bdfdaf0cdb4db0a694cca505e70416 -#: ../../source/training/osm/Chapter-06-using-gps.rst:53 -msgid "" -"Because the GPS determines your location by receiving signals from " -"satellites, **it will not work indoors**." -msgstr "" - -# b216f521234e40089014b0cdcb3d93ad -#: ../../source/training/osm/Chapter-06-using-gps.rst:58 -msgid "" -"On the right side of the GPS, press and hold the :guilabel:`Power` button." -msgstr "" - -# 5561d178cabd4ecba9b347768939f9dd -#: ../../source/training/osm/Chapter-06-using-gps.rst:56 -msgid "" -"The GPS will start, and it will show you the Satellites page. You should see " -"something like the image below, where the GPS is seeking satellite signals. " -"When it has connected to three or more satellites, it can determine your " -"location." -msgstr "" - -# 19ce5d548f554968ad4fca4436b87ef0 -#: ../../source/training/osm/Chapter-06-using-gps.rst:65 -msgid "" -"Once your location is determined, the Satellites page will disappear and" -msgstr "" - -# 62c428f9fd344f5d9e4d1946264f2a74 -#: ../../source/training/osm/Chapter-06-using-gps.rst:65 -msgid "you will see the Main Menu." -msgstr "" - -# 00b13c8f639b4fd29f219788825493a3 -#: ../../source/training/osm/Chapter-06-using-gps.rst:72 -msgid "6.3 Navigating the GPS" -msgstr "" - -# 1258b8402a644f75aee0dd76245cdf32 -#: ../../source/training/osm/Chapter-06-using-gps.rst:74 -msgid "" -"The GPS has different pages and menus that allow you to do different things." -msgstr "" - -# 14e247b31b034edf8d078870de88e5e7 -#: ../../source/training/osm/Chapter-06-using-gps.rst:80 -msgid "To switch between pages, press the button marked :kbd:`X`, just above" -msgstr "" - -# 6b68aaa699d04d08b4f5fac7b6005e74 -#: ../../source/training/osm/Chapter-06-using-gps.rst:78 -msgid "" -"the power button on the right side of the device. This button also serves to " -"go back. If you press something by mistake and would like to cancel or go " -"back, press the :kbd:`X` button." -msgstr "" - -# 870ffeb552bf454b9b9a3031610f750c -#: ../../source/training/osm/Chapter-06-using-gps.rst:83 -msgid "" -"By pressing the :kbd:`X` button, you should be able to flip through different" -msgstr "" - -# 5c82e3ae634c497f8f5fd983ef2fcf33 -#: ../../source/training/osm/Chapter-06-using-gps.rst:83 -msgid "screens that will look something like this:" -msgstr "" - -# c170ba123e714ad6a097e3f675f0908a -#: ../../source/training/osm/Chapter-06-using-gps.rst:90 -msgid "" -"If you return to Satellites page, you will see that you are connected to" -msgstr "" - -# 65f3ef6376384e0db49e7aa1539e7c83 -#: ../../source/training/osm/Chapter-06-using-gps.rst:89 -msgid "" -"three or more satellites. In the upper left corner are your coordinates, " -"your latitude and longitude." -msgstr "" - -# 0b62d60deb74438bbd33e481f7485aa7 -#: ../../source/training/osm/Chapter-06-using-gps.rst:95 -msgid "Go to the Map page, and you can see a map of your current location. If" -msgstr "" - -# 6221188535bd46e4ae9b2232140e1ab4 -#: ../../source/training/osm/Chapter-06-using-gps.rst:93 -msgid "" -"you have added OpenStreetMap maps to your GPS, you may see roads and points-" -"of-interest. Otherwise, the map may look quite blank. Zoom in and out by " -"pressing the up and down arrow buttons on the left side of the GPS." -msgstr "" - -# 42d5ed318bf24016b0541a25a2dc7e35 -#: ../../source/training/osm/Chapter-06-using-gps.rst:98 -msgid "6.4 Tracks and waypoints" -msgstr "" - -# d95accef91964a91b8c4f060258f7fe6 -#: ../../source/training/osm/Chapter-06-using-gps.rst:100 -msgid "" -"A GPS records two kinds of information that are useful for creating maps or " -"saving the coordinates of a place. First, it allows you to save your " -"location in the memory of the GPS. When you save a location, the coordinates " -"will be saved with a name. For example, by default your first saved point " -"will be named 001, the second 002, and so on." -msgstr "" - -# 7bf2eef9e39b4b23a49e73a4cc98ac83 -#: ../../source/training/osm/Chapter-06-using-gps.rst:106 -msgid "" -"When you save a point, you can write down the number on a piece of paper, " -"along with a note about what it is, and any attributes or indicators you " -"would like to collect. Saved locations on your GPS are called waypoints." -msgstr "" - -# 2e468f014eda42d6ba6c2a7f379f1a96 -#: ../../source/training/osm/Chapter-06-using-gps.rst:111 -msgid "" -"Second, a GPS can save what are called tracks. While a waypoint only saves a " -"single location, a track will save a series of locations wherever you move. " -"For example, a track will record your location every one second, or every " -"one metre, and the result will be a series of dots that show the path of " -"where you have been. Tracks are useful for mapping objects that are " -"represented by lines or shapes, such as the course of a road or the shape of " -"a field." -msgstr "" - -# a12a9b6fcca442e4a9624ea52cd79539 -#: ../../source/training/osm/Chapter-06-using-gps.rst:122 -msgid "" -"If your GPS not started from 001 and you want to erase the previous point, " -"go to icon “Find” in the main menu. Press on “waypoint” and then submenu in " -"the right side to show Waypoint submenu. Drag to bottom and press “Delete” " -"and “all symbols” and then “Yes”." -msgstr "" - -# 4d5b5703aa1b4d149321c46f3bcb5c67 -#: ../../source/training/osm/Chapter-06-using-gps.rst:128 -msgid "6.5 Saving your location" -msgstr "" - -# c75eeb1702544b14b0c180baf2a8130c -#: ../../source/training/osm/Chapter-06-using-gps.rst:130 -msgid "To save your current location as a waypoint:" -msgstr "" - -# 9d040d86dd7b45b6bc81bfc1e3a03794 -#: ../../source/training/osm/Chapter-06-using-gps.rst:134 -msgid "click the :kbd:`X` button until your reach the Main Menu." -msgstr "" - -# a7ddcb30594649ee9442af4ebff26c7f -#: ../../source/training/osm/Chapter-06-using-gps.rst:133 -msgid "" -"Using the joystick, move it so that :guilabel:`Mark` is highlighted on the " -"screen. Push the joystick button down to open the **Save Waypoint** page." -msgstr "" - -# 1c8c3b82157b4dcba69dca20ac7916e3 -#: ../../source/training/osm/Chapter-06-using-gps.rst:139 -msgid "" -"You can see on this page some information about the waypoint that you are " -"saving. First is the name. If this is your first waypoint, it probably reads " -"“001”. This is the number you should record on paper along with the " -"information you want to collect about this object, e.g. name, address, " -"phone, etc. Next you will see the time and date when the point is recorded. " -"Below that are the coordinates, followed by the altitude." -msgstr "" - -# 53a6055db99e4781b40bf207632120f3 -#: ../../source/training/osm/Chapter-06-using-gps.rst:150 -msgid "" -"Use the joystick to move to the :guilabel:`OK` button at the bottom of the " -"screen." -msgstr "" - -# f857bf67d8de4665a56890a81bffbef0 -#: ../../source/training/osm/Chapter-06-using-gps.rst:148 -msgid "" -"Press the joystick button down to save this point. Be sure to write down in " -"your notebook the number of the point, along with a description of the place " -"and any other information you want to record about the place." -msgstr "" - -# 1eda744c2dd14771bb098c672c98c1e6 -#: ../../source/training/osm/Chapter-06-using-gps.rst:157 -msgid "" -"Press the :kbd:`X` button to go to the Map page. You should now see your " -"point" -msgstr "" - -# 342f867ec8e34aa4b3d91051d77cc874 -#: ../../source/training/osm/Chapter-06-using-gps.rst:157 -msgid "on the map." -msgstr "" - -# cc7d41c25d504f209d68d330e1368101 -#: ../../source/training/osm/Chapter-06-using-gps.rst:160 -msgid "6.6 Turning on the Track Log" -msgstr "" - -# c1482a4ec54d481c94cae11a938d67fa -#: ../../source/training/osm/Chapter-06-using-gps.rst:162 -msgid "" -"Now that we have learned how to save points, let’s learn how to turn the " -"track log on and off. When the track log is turned on, it will automatically " -"record your path. It’s good practice to turn on the log when you begin " -"mapping, and turn it off when you are finished. You will then be able to " -"look at the track on a computer and see the path that you mapped. If you " -"would like to map the course of a road, it is a good idea to save a waypoint " -"at the beginning and end of the road, writing in your notebook the name and " -"type of the road, and any other important information about the road." -msgstr "" - -# cbea4078d3384c0080ce994441bed56c -#: ../../source/training/osm/Chapter-06-using-gps.rst:173 -msgid "" -"To turn track log, click the :kbd:`X` button until your reach the page that" -msgstr "" - -# ed78694cd6d743eb83d66bd607cf867e -#: ../../source/training/osm/Chapter-06-using-gps.rst:173 -msgid "says Track Log." -msgstr "" - -# ccc7c8eb06324ff2a5ebad456beb9e38 -#: ../../source/training/osm/Chapter-06-using-gps.rst:180 -msgid "If you want To empty the track log (to delete earlier recordings), use" -msgstr "" - -# c3e74cc5695443458a49a9c9b049f72d -#: ../../source/training/osm/Chapter-06-using-gps.rst:179 -msgid "" -"the joystick to select :guilabel:`Clear`, and press the joystick down. The " -"bar at the top should read “0%”" -msgstr "" - -# ea1eac2f24964fbea6708934b80f860c -#: ../../source/training/osm/Chapter-06-using-gps.rst:183 -msgid "" -"To turn on the log, move the joystick to highlight :guilabel:`On`, and press " -"the joystick down." -msgstr "" - -# 3c14a5e203b04a838cfb7745cb7e5331 -#: ../../source/training/osm/Chapter-06-using-gps.rst:183 -msgid "The track log is now recording your path." -msgstr "" - -# 767ab4e8b65642608e9a8f57b48f5c36 -#: ../../source/training/osm/Chapter-06-using-gps.rst:186 -msgid "" -"Press the :kbd:`X` button to go to the Map page. As you move you will see " -"your" -msgstr "" - -# ef1171a8d1ff44c7bdee00ef447933de -#: ../../source/training/osm/Chapter-06-using-gps.rst:186 -msgid "track shown as a series of dots." -msgstr "" - -# af2dac0e4765453597d1d5fd34414bd0 -#: ../../source/training/osm/Chapter-06-using-gps.rst:189 -msgid "6.7 Copying waypoints and tracks to the computer" -msgstr "" - -# 5a0f5590862741478516a79329bbfc85 -#: ../../source/training/osm/Chapter-06-using-gps.rst:191 -msgid "" -"When you are finished mapping with the GPS you will want to copy the points " -"and tracks to your computer so that you can open them in JOSM and begin " -"editing." -msgstr "" - -# 0cfe02d63a1a4d68b8885ae2ee13d830 -#: ../../source/training/osm/Chapter-06-using-gps.rst:194 -msgid "" -"One way to copy waypoints and tracks is using the free BaseCamp software " -"supplied by Garmin and available for download from the Garmin website. " -"However in this module, we will use an opensource program called GPSBabel, " -"that provides several additional features." -msgstr "" - -# 0f7dec4fe531438b85b5a54fd4cc4103 -#: ../../source/training/osm/Chapter-06-using-gps.rst:200 -msgid "6.7.1 Installing GPS drivers" -msgstr "" - -# 4bdfac18c54e4f9785cda8815d16063b -#: ../../source/training/osm/Chapter-06-using-gps.rst:204 -msgid "" -"You may need to install GPS drivers on your computer. Open your training" -msgstr "" - -# f8a83394c7524586a65d0b9e529e8759 -#: ../../source/training/osm/Chapter-06-using-gps.rst:203 -msgid "" -"folder and find :file:`software/USBDrivers_23.exe`. Double-click it and " -"install." -msgstr "" - -# 7577a9477ee840bf917502b08f3e6cf7 -#: ../../source/training/osm/Chapter-06-using-gps.rst:208 -msgid "If you don’t have this file, you can download it. Open your internet" -msgstr "" - -# d0d316b05d6744ee81cd87ed64624819 -#: ../../source/training/osm/Chapter-06-using-gps.rst:207 -msgid "" -"browser and go to: `http://www8.garmin.com/support/download_details .jsp?" -"id=591 `_" -msgstr "" - -# 31e5438cdb214ed49c7f12fa162f67cf -#: ../../source/training/osm/Chapter-06-using-gps.rst:212 -msgid "" -"3 Click :guilabel:`Download` to get the installation file. Locate it on your" -msgstr "" - -# 640d9fa7335d4cc3915fc12294cafa3e -#: ../../source/training/osm/Chapter-06-using-gps.rst:211 -msgid "computer, and double-click to install." -msgstr "" - -# 578b2078f7284ff2b70494a4d83d2c94 -#: ../../source/training/osm/Chapter-06-using-gps.rst:215 -msgid "6.7.2 Attaching GPS to the Computer" -msgstr "" - -# 86427e6afeca43dcafa7045c99dad8a7 -#: ../../source/training/osm/Chapter-06-using-gps.rst:217 -msgid "" -"1. First, turn off the track log on your GPS by going to the Track page and " -"selecting :guilabel:`Off`." -msgstr "" - -# 5f69ed67b39c43d08e74692b96ae14b4 -#: ../../source/training/osm/Chapter-06-using-gps.rst:223 -msgid "" -"Attach the GPS to your computer with the cable. One end should plug into" -msgstr "" - -# 74c995d831b946b3a9b496cbe2f52434 -#: ../../source/training/osm/Chapter-06-using-gps.rst:221 -msgid "" -"your computer’s USB port, and the other goes into the back of the GPS, " -"beneath the rubber flap at the top. The GPS should be turned on to " -"facilitate copying of the points and tracks." -msgstr "" - -# 437bc7c03abc49aeafda63cc19f06c49 -#: ../../source/training/osm/Chapter-06-using-gps.rst:226 -msgid "6.7.2 Getting the GPSBabel setup program" -msgstr "" - -# 2aa7982dc7a54941b7d0bd7547705c4a -#: ../../source/training/osm/Chapter-06-using-gps.rst:228 -msgid "" -"GPSBabel is a program that allows us to copy data from the GPS. If you have " -"copy of GPSBabel in CD or flashdisk, you can skip this step and move to next " -"section. If you don’t have GPSbabel:" -msgstr "" - -# 7d2f89f50bc046ac95aaeadc3f61a11c -#: ../../source/training/osm/Chapter-06-using-gps.rst:232 -msgid "" -"Open your web browser and go to `www.gpsbabel.org `_" -msgstr "" - -# d4b42078c83846c6b72ded3139f263c8 -#: ../../source/training/osm/Chapter-06-using-gps.rst:234 -msgid "Click :guilabel:`Downloads` at the top of the page." -msgstr "" - -# 32422ade623c4b1f8f2901155d4120d7 -#: ../../source/training/osm/Chapter-06-using-gps.rst:239 -msgid "Scroll down the page. If your computer uses Windows, you want to" -msgstr "" - -# b73e638b67984480bf7de510eb343248 -#: ../../source/training/osm/Chapter-06-using-gps.rst:237 -msgid "" -"download the installation file for Windows. Click :file:`GPSBabel-1.5.1-" -"Setup.exe`. The file will be downloaded to your computer. Find GPSBabel " -"installation software and double click to install." -msgstr "" - -# 9224d1876caf4b599beecc550b3f9816 -#: ../../source/training/osm/Chapter-06-using-gps.rst:241 -msgid "Click :guilabel:`Next`." -msgstr "Clickez :guilabel:`Suivant`." - -# 8b6d950386544c0794ef23b518c745c1 -#: ../../source/training/osm/Chapter-06-using-gps.rst:243 -msgid "Clcik :guilabel:`I accept` and :guilabel:`Next`." -msgstr "" - -# 1c0b11efe145427bbcd966b85bc868ca -#: ../../source/training/osm/Chapter-06-using-gps.rst:245 -msgid "Continue clicking :guilabel:`Next` until the program installs." -msgstr "" - -# e954ca6a86104367963d6ddd9a4ca1ac -#: ../../source/training/osm/Chapter-06-using-gps.rst:247 -msgid "" -"When the program has finished installing, click :guilabel:`Finish` to start " -"GPSBabel." -msgstr "" - -# 3dd036785d89456997f6d9d09bee9cbd -#: ../../source/training/osm/Chapter-06-using-gps.rst:251 -msgid "6.7.3 Copying Tracks and Waypoints" -msgstr "" - -# 283e0930e77348a990b7ade65ac997a8 -#: ../../source/training/osm/Chapter-06-using-gps.rst:253 -msgid "" -"After you success install GPSBabel, it will automatically launch GPSBabel. " -"Otherwise, you can find GPSBabel icon in the desktop or start menu." -msgstr "" - -# 265cac69c79f45a2a79281da9eb51adf -#: ../../source/training/osm/Chapter-06-using-gps.rst:258 -msgid "" -"Click in the circle next to the word :guilabel:`Device` at the top of the" -msgstr "" - -# 5b24bbad441145c4b0ea25fdee3cc3f0 -#: ../../source/training/osm/Chapter-06-using-gps.rst:258 -msgid "window." -msgstr "" - -# 62f5659200cf41c49178fc48bc3ac3b4 -#: ../../source/training/osm/Chapter-06-using-gps.rst:263 -msgid "" -"In the drop-down menu labelled :guilabel:`Format`, select :guilabel:`Garmin " -"serial/USB protocol`" -msgstr "" - -# cf875335ca04488da42ffa17e6ae04a1 -#: ../../source/training/osm/Chapter-06-using-gps.rst:265 -msgid "" -"Go down to the middle of the window, under :guilabel:`Output`. In the drop-" -"down menu labelled :guilabel:`Format`, select :guilabel:`GPX XML`" -msgstr "" - -# 7c0ac1ab9fe34f84b9f702b0ef0214e8 -#: ../../source/training/osm/Chapter-06-using-gps.rst:272 -msgid "Click :guilabel:`File Name` and type a name for your saved file." -msgstr "" - -# 3cf69d0b98434a50b13c595d0495c808 -#: ../../source/training/osm/Chapter-06-using-gps.rst:271 -msgid "" -"It should be something that describes the data, such as the date and the " -"location. For example: :file:`jakarta-07-07-2014`." -msgstr "" - -# ad2d076aa2ea40ddb710e5566f8894e1 -#: ../../source/training/osm/Chapter-06-using-gps.rst:274 -msgid "Make sure your GPS is connected to the computer and turned on." -msgstr "" - -# 7b60355cd13d45d4bb7a384edfdf7b82 -#: ../../source/training/osm/Chapter-06-using-gps.rst:276 -msgid "Click :guilabel:`Apply` in the bottom right corner of the window" -msgstr "" - -# 43a258347b594847b59e081d3b3f7aa9 -#: ../../source/training/osm/Chapter-06-using-gps.rst:281 -msgid "If all goes well you should see a bar move across the screen," -msgstr "" - -# 3b15573eb0984cedbad5dcac77947ab2 -#: ../../source/training/osm/Chapter-06-using-gps.rst:279 -msgid "" -"indicating that the data is being retrieved from the GPS. When it is " -"finished, your points and track will be saved in the file that you selected" -msgstr "" - -# a3d07d7b27b843489f577c04dafc3d9a -#: ../../source/training/osm/Chapter-06-using-gps.rst:284 -msgid "6.8 Open Waypoints and Tracks in JOSM" -msgstr "" - -# 036cac486db349c59708e2c6fe699a90 -#: ../../source/training/osm/Chapter-06-using-gps.rst:286 -msgid "Now open JOSM. Go to :menuselection:`File → Open...`" -msgstr "" - -# a97662b4095549bcb683e01022c634ab -#: ../../source/training/osm/Chapter-06-using-gps.rst:288 -msgid "" -"Find and select the file that you created with GPSBabel. Click :guilabel:" -"`Open`." -msgstr "" - -# 3d101afb7f494524ae7f5e923713f304 -#: ../../source/training/osm/Chapter-06-using-gps.rst:290 -msgid "You should now see your points and tracks loaded into JOSM." -msgstr "" - -# 0f406814a19546e99639d0ffcce88340 -#: ../../source/training/osm/Chapter-06-using-gps.rst:296 -msgid "6.8.1 Change waypoints and tracks colour in JOSM" -msgstr "" - -# 7801070a5a20479faa3221daaefa624e -#: ../../source/training/osm/Chapter-06-using-gps.rst:298 -msgid "" -"To change tracks and waypoints colour, right click on the :guilabel:`track` " -"layer or :guilabel:`waypoints` layer and then select :guilabel:`Customize " -"Colours` and choose your preferred colour." -msgstr "" - -# 9cbaa887dc304010b103ce5d55db4a5d -#: ../../source/training/osm/Chapter-06-using-gps.rst:302 -msgid "" -"For tracks, not only you can change **line colour** but you can also change " -"**line width**. Right click on :guilabel:`track` layer and then select :" -"guilabel:`Customize Track Drawing`. Change :guilabel:`Drawing width of GPX " -"Lines` with your preferred number (The larger the number the thicker the " -"line)" -msgstr "" - -# b4bd7e507919424c92d6b48b12db1736 -#: ../../source/training/osm/Chapter-06-using-gps.rst:310 -msgid "Summary" -msgstr "" - -# 8ae4475239e541bfa8c378afec4ca26d -#: ../../source/training/osm/Chapter-06-using-gps.rst:312 -msgid "" -"Congratulations! Now you already learned about how to use GPS. If you still " -"need practice, try to save points from several location that you think " -"important." -msgstr "" - -# 554f1f76314944b798ed05a0080f5d1f -#: ../../source/training/osm/Chapter-06-using-gps.rst:316 -msgid "" -"In this chapter we have learned how to collect waypoints and tracks, " -"download them from the GPS, and display them in JOSM. Later we will use this " -"information to add new objects in OpenStreetMap." -msgstr "" - -# 456ca3f40b4a42178ebb50cc90208fd2 -#: ../../source/training/osm/Chapter-06-using-gps.rst:320 -msgid "" -"In the next chapter, we will learn about another survey method called Field " -"Papers. Field Papers allows you to create map without a GPS!" -msgstr "" - -# 25cc7aa84c444ed6a370d6de49b54f01 -#: ../../source/training/osm/Chapter-06-using-gps.rst:323 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-07-field-papers.po b/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-07-field-papers.po deleted file mode 100644 index 2b6cb464..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-07-field-papers.po +++ /dev/null @@ -1,590 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:02+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 9adc9d76cd284fd1945c460e3f4a92bd -#: ../../source/training/osm/Chapter-07-field-papers.rst:6 -msgid "Chapter 7: Field Papers" -msgstr "" - -# e96d8214f7954c5886a22a38c7ad7b14 -#: ../../source/training/osm/Chapter-07-field-papers.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# def27042d3404d35aaa23df84e9ac8d4 -#: ../../source/training/osm/Chapter-07-field-papers.rst:10 -msgid "How to use Field Papers" -msgstr "" - -# 1c30907f90fc409fbc2008ce96d067dc -#: ../../source/training/osm/Chapter-07-field-papers.rst:11 -msgid "Make and print Field Papers" -msgstr "" - -# 82d7bb5dc1534b84b676cf72cf9be804 -#: ../../source/training/osm/Chapter-07-field-papers.rst:12 -msgid "Add data to print using Field Papers" -msgstr "" - -# bc6985209ea74076b01c5b8bbc878bca -#: ../../source/training/osm/Chapter-07-field-papers.rst:13 -msgid "Scan and upload Field Papers to Field Papers website" -msgstr "" - -# a283600fae524e53ad4ac758468128bb -#: ../../source/training/osm/Chapter-07-field-papers.rst:14 -msgid "Open Field Papers into JOSM" -msgstr "" - -# 8e5404a2663146cdb4d1d38d33026644 -#: ../../source/training/osm/Chapter-07-field-papers.rst:16 -msgid "" -"In this module we will see how we can record the coordinates of places " -"without a GPS. We will use a paper-based tool called Field Papers, which " -"allows you to print a map of an area, draw on it, add notes, and load the " -"paper back into JOSM, where you can add your locations to OpenStreetMap." -msgstr "" - -# 91492f44bec145f9a20adbc44ac93e9a -#: ../../source/training/osm/Chapter-07-field-papers.rst:21 -msgid "7.1 Overview of Field Papers" -msgstr "" - -# 88df4323cc954f6ba614781d306ffe0a -#: ../../source/training/osm/Chapter-07-field-papers.rst:23 -msgid "" -"Before going into detail about Field Papers, let’s look at a general " -"overview of how the Field Papers process works:" -msgstr "" - -# a2a82a2367c4462db0516281f83b0419 -#: ../../source/training/osm/Chapter-07-field-papers.rst:25 -msgid "" -"Locate the area of interest you want to map on the Field Papers website. " -"Create a map for the area of interest. Print out a map of this area. You can " -"choose to print the area of interest using the default OpenStreetMap " -"backdrop, or you may choose to print aerial imagery, if it is a available in " -"your area." -msgstr "" - -# be46fde1c1b44bacb031f6d5d70be56b -# 41321ae0a84c4ffb8407eec5377e378b -#: ../../source/training/osm/Chapter-07-field-papers.rst:32 -#: ../../source/training/osm/Chapter-07-field-papers.rst:83 -msgid "*Interface Field Papers*" -msgstr "" - -# 47b90d4e746d4a99ac9df744e7bd3025 -#: ../../source/training/osm/Chapter-07-field-papers.rst:34 -msgid "" -"Use your printed map to survey the area. Add more places by drawing them on " -"the map. Draw lines for roads, shapes for buildings, and so forth. Write " -"notes about each location directly on the map, or write numbers on the map " -"that relate to numbers in your notebook, where you can write more detailed " -"information about each object." -msgstr "" - -# e923e982684942b2a99bd31d1ab3a0ed -#: ../../source/training/osm/Chapter-07-field-papers.rst:39 -msgid "" -"Scan your paper into the computer. If you do not have a scanner, you can " -"take a photograph of the paper, if your camera is able to take high quality " -"pictures. Upload the image to the Field Papers website." -msgstr "" - -# f37aac904ab042298394bb3d16b80140 -# 235f9aadaa1949de91042295beba747d -#: ../../source/training/osm/Chapter-07-field-papers.rst:45 -#: ../../source/training/osm/Chapter-07-field-papers.rst:196 -msgid "*Field Papers Image*" -msgstr "" - -# 4cd5ac5c0ec0421596ca48f00d591f71 -#: ../../source/training/osm/Chapter-07-field-papers.rst:47 -msgid "" -"In JOSM, load the Field Papers. Use the objects you drew as a reference to " -"add the digitally into OpenStreetMap." -msgstr "" - -# c3ae57d5618449f7807e3bfd936ec27a -# a0d83c70239e4f4bbfdc460c92dc29a3 -#: ../../source/training/osm/Chapter-07-field-papers.rst:52 -#: ../../source/training/osm/Chapter-07-field-papers.rst:299 -msgid "*Interface Field Papers in JOSM*" -msgstr "" - -# ca90036eefbc4e0083ad0a27c191efc9 -#: ../../source/training/osm/Chapter-07-field-papers.rst:55 -msgid "7.2 How does Field Papers Work?" -msgstr "" - -# 75b8e607fb4d427598c888e9385b25fb -#: ../../source/training/osm/Chapter-07-field-papers.rst:57 -msgid "" -"If you follow the Field Papers process described above, you will be " -"collecting accurate geographic coordinate of places with nothing more than " -"paper. How is this possible?" -msgstr "" - -# aeb690bb85bc46a99c692b87bd446f0a -#: ../../source/training/osm/Chapter-07-field-papers.rst:63 -msgid "*Barcode Field Papers*" -msgstr "" - -# acb746d16e914d939d1cf208119fcfb7 -#: ../../source/training/osm/Chapter-07-field-papers.rst:65 -msgid "" -"When you print a Field Papers, the paper comes with a square barcode on the " -"bottom of the page. This barcode allows Field Papers to determine the exact " -"location of the map that you are using to survey. Later, when you load the " -"paper back into JOSM, all the objects that you drew will be in shown " -"relative to their actual locations. This is same with you using GPS for " -"collecting actual coordinates, except all you need is paper!" -msgstr "" - -# 54769d22f7eb4ced80bdaa06a523bd6f -#: ../../source/training/osm/Chapter-07-field-papers.rst:70 -msgid "Now let’s learn how to create and use Field Papers." -msgstr "" - -# dd0b8bceeb3842a5bccba569018201eb -#: ../../source/training/osm/Chapter-07-field-papers.rst:73 -msgid "7.3 Create and Print Field Papers" -msgstr "" - -# 9cb7e70bcc054611b779d1ad8386e049 -#: ../../source/training/osm/Chapter-07-field-papers.rst:75 -msgid "" -"Open your web browser. In the address bar at the top of the window, enter " -"`http://fieldpapers.org/ `_ and press :kbd:`Enter`" -msgstr "" - -# 24e595bb3f0e47a4803306b842b5ca08 -#: ../../source/training/osm/Chapter-07-field-papers.rst:78 -msgid "The website should look something like the figure below:" -msgstr "" - -# c34462aadf794049a0800fd8f92f5f24 -#: ../../source/training/osm/Chapter-07-field-papers.rst:85 -msgid "" -"Click :guilabel:`Make yourself an Atlas` to select the area that you want " -"print out." -msgstr "" - -# 3ecd7aeceb544288ae032d3b6740cf86 -#: ../../source/training/osm/Chapter-07-field-papers.rst:90 -msgid "*Make Field Papers*" -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:92 -msgid "" -"You will be directed to a page like this where you can see there are some " -"setting at left panel and main map at the right." -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:98 -msgid "*Compose Field Papers*" -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:100 -msgid "" -"On the main map, to find the area that you want to map, you can click search " -"button and type the location name OR you can drag manually the map with the " -"same way when you drag map in OpenStreetMap website, use the left button " -"your mouse for drag map, and scroll your mouse for zoom in and zoom out. " -"Click on :guilabel:`+` and :guilabel:`-` buttons in the upper left corner " -"for zoom in and zoom out." -msgstr "" - -# da4bf90667b342ec9c57b738b4a63e1b -#: ../../source/training/osm/Chapter-07-field-papers.rst:106 -msgid "*Setting the area in Field Papers*" -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:108 -msgid "" -"Here you also can define the boundaries of your Field Papers. The boundaries " -"is displayed as hollow box with black border. You want to make sure that the " -"window displays the area of interest that you intend to map. You can add " -"more page or less page. Make sure that your map can display building and " -"road for field survey." -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:115 -msgid "*Setting the page in Field Papers*" -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:117 -msgid "" -"At the left panel are some setting for print out Field Papers. The first is " -"give information to your atlas by type a name on the **Atlas Title** column. " -"If you want, you can add notes to be printed on the map, such as questions " -"you want to remember to answer or specific places you want to identity by " -"give a check mark on **Print notes** and type your notes on the **Notes** " -"column." -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:125 -msgid "*Setting atlas information in Field Papers*" -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:127 -msgid "" -"The second is the Grid Layout setting. The **Paper Size** is used to adjust " -"the paper size that you want use for print out Field Paper. You can choose :" -"guilabel:`letter`, :guilabel:`A3`, or :guilabel:`A4`. Then the " -"**Orientation** is used to adjust the paper orientation that you want use " -"for print out Field Paper. You can choose between :guilabel:`portrait` or :" -"guilabel:`landscape` as shown in the figure below." -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:135 -msgid "*Setting the paper size and paper orientation in Field Papers*" -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:137 -msgid "" -"Still in Grid Layout setting, next you can select the type data for your " -"Field Papers. You can select different **Basemap** for change map " -"background. In this example shown in the figure below, we will select :" -"guilabel:`Satellite Only`." -msgstr "" - -# 02015e0c0fa74dfd97648f1fe94ebfd1 -#: ../../source/training/osm/Chapter-07-field-papers.rst:144 -msgid "*Setting Map Background on Field Papers*" -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:146 -msgid "When you’re finished, click :guilabel:`MAKE ATLAS`" -msgstr "" - -# 123fb9764bf543f0bd0fbb7b247361ca -#: ../../source/training/osm/Chapter-07-field-papers.rst:151 -msgid "*Next step to create Field Papers*" -msgstr "" - -# 48976a468fc34cdf90ba88f6c228461d -#: ../../source/training/osm/Chapter-07-field-papers.rst:153 -msgid "" -"It may take a few minutes to prepare your final Field Papers map. When " -"finished, you will see your Field Paper on this page, shown in the figure " -"below." -msgstr "" - -# 6cebc76e3d654609969999f4cb783ca2 -#: ../../source/training/osm/Chapter-07-field-papers.rst:159 -msgid "*The process preparing Field Papers*" -msgstr "" - -# 3ad5a711a56b4490bbf695f11cb7e54b -#: ../../source/training/osm/Chapter-07-field-papers.rst:161 -msgid "" -"When your print is ready, Click :guilabel:`Download PDF`. The Field Paper " -"should begin downloading. If it loads in your browser, you may need to save " -"it by going to :menuselection:`File ‣ Save`." -msgstr "" - -# ed77ad8e9a5c4bb78d08d437eacbf672 -#: ../../source/training/osm/Chapter-07-field-papers.rst:167 -msgid "*Download Field Papers*" -msgstr "" - -# a7a6385e8f064118a3af7bf75e2c75cc -#: ../../source/training/osm/Chapter-07-field-papers.rst:169 -msgid "" -"When the download is finished, open the PDF file. Connect your computer to a " -"printer and print the page. If everything goes well, you should now have map " -"printed on paper." -msgstr "" - -# 2535d758ac474d539fb582ffad270d9f -#: ../../source/training/osm/Chapter-07-field-papers.rst:173 -msgid "7.4 Mapping with Field Papers" -msgstr "" - -# efcf0063e5d446ee917cbc34edf890c7 -#: ../../source/training/osm/Chapter-07-field-papers.rst:175 -msgid "" -"Take your Field Papers outside, and use it as a guide to walk and identify " -"new places that are not on the map." -msgstr "" - -# 8df96036d8d44f45b7987def9071fe9f -#: ../../source/training/osm/Chapter-07-field-papers.rst:177 -msgid "" -"Draw lines for roads, shapes for buildings, and so forth. Write notes about " -"each location directly on the map, or write numbers on the map that relate " -"to numbers in your notebook, where you can write more detailed information " -"about each object." -msgstr "" - -# 5d358da2eb7a4bf0a83396de20c03f14 -#: ../../source/training/osm/Chapter-07-field-papers.rst:181 -msgid "" -"When you are satisfied with your additions on the paper map, then you can " -"add them digitally into OpenStreetMap." -msgstr "" - -# e35160e0e2bb4965b1e5b34fa051252a -#: ../../source/training/osm/Chapter-07-field-papers.rst:184 -msgid "7.5 Scan and Upload Field Papers" -msgstr "" - -# cc22a317eb4743d1ac144a3a4c1cb522 -#: ../../source/training/osm/Chapter-07-field-papers.rst:186 -msgid "" -"Field Papers are very useful for mapping with nothing more than paper, but " -"they are not a 100% solution. We will still need to load our paper map into " -"JOSM, add our information digitally, and save our changes on OpenStreetMap." -msgstr "" - -# 1bd25157fd394316abd5dadaf78e9723 -#: ../../source/training/osm/Chapter-07-field-papers.rst:189 -msgid "" -"The first step is to scan your Field Papers into your computer. You can do " -"this by attaching a scanner to your computer, scanning the paper, and saving " -"it as an image file. If you don’t have a scanner, you can take a photography " -"of the paper, but you should be careful to take a very good photo. Make sure " -"that the paper is flat and your camera is directly in front of it. Be sure " -"to include the barcode in the image, as Field Papers will not work without " -"it. Here is an example of a scanned/photographed image:" -msgstr "" - -# df8f7313951243a48eefb8b20c637a51 -#: ../../source/training/osm/Chapter-07-field-papers.rst:198 -msgid "" -"Once you have your Field papers scanned and saved on the computer, open your " -"web browser and return to Field Papers website just as before." -msgstr "" - -# 9f5a16e8e3394881aab574aabdaa08fa -#: ../../source/training/osm/Chapter-07-field-papers.rst:201 -msgid "Click the :guilabel:`Upload` tab at the top of the page." -msgstr "" - -# 4644bfb5e4314de182b224e72742aaba -# 61e52a615a75453d826b1ba034e78f86 -#: ../../source/training/osm/Chapter-07-field-papers.rst:206 -msgid "*Upload Field Papers*" -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:208 -msgid "" -"Click :guilabel:`Browse...` and navigate to the file where you scanned/" -"photographed your Field Papers." -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:213 -msgid "*Select the to be uploaded to Field Papers website*" -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:215 -msgid "" -"It may take a few minutes for your paper to upload, depending on the speed " -"of your connection." -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:220 -msgid "*Field Papers uploading process*" -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:222 -msgid "" -"When the upload finished, you can see the page interface as in the figure " -"below:" -msgstr "" - -# 5847962f23144dfd817c2652089343fa -#: ../../source/training/osm/Chapter-07-field-papers.rst:227 -msgid "*The result from upload Field Papers*" -msgstr "" - -# 0aa84cfc249044cf9de2f4e4a2128c9b -#: ../../source/training/osm/Chapter-07-field-papers.rst:230 -msgid "7.6 Add Plugin Field Papers" -msgstr "" - -# 1ff4436156ae4d228d23ae8dcf92a8ce -#: ../../source/training/osm/Chapter-07-field-papers.rst:232 -msgid "" -"Before we open Field Papers in JOSM, we need install the Field Papers " -"plugin. The fieldpapers plugin enables JOSM to open Field Papers that have " -"been uploaded to the Field Papers website. The Field Papers will be used as " -"background, and we open it using the same procedure for opening satellite " -"imagery in JOSM." -msgstr "" - -# ee3da267c2a24a83839494729cb43754 -#: ../../source/training/osm/Chapter-07-field-papers.rst:236 -msgid "Open JOSM and go to :menuselection:`Edit --> Preferences`." -msgstr "" - -# f380636840d940be9ba9aa24221aeb0b -#: ../../source/training/osm/Chapter-07-field-papers.rst:238 -msgid "Click on :guilabel:`Plugins` tab." -msgstr "" - -# e44a9350c799476bb7d1697bc48075e3 -#: ../../source/training/osm/Chapter-07-field-papers.rst:240 -msgid "" -"Type :kbd:`fieldpapers` in the :guilabel:`Search` box. After you find it, " -"tick the fieldpapers box and Click :guilabel:`OK` as shown in the figure " -"below." -msgstr "" - -# dcb8bbd9af3a4aa99e7ea07139e74106 -#: ../../source/training/osm/Chapter-07-field-papers.rst:246 -msgid "*Field Papers Plugin*" -msgstr "" - -# 1adbad725f394c08b792b9567431bad5 -#: ../../source/training/osm/Chapter-07-field-papers.rst:248 -msgid "Restart JOSM so the plugin loads." -msgstr "" - -# c7bd8df9a9374b388508a4e2f287765b -#: ../../source/training/osm/Chapter-07-field-papers.rst:251 -msgid "7.7 Open Field Papers from JOSM" -msgstr "" - -# 0a116f88ba62475cabf0b46bfa19f03b -#: ../../source/training/osm/Chapter-07-field-papers.rst:253 -msgid "" -"Now you can add the results of your scanned Field Papers to JOSM and add " -"your information to OpenStreetMap. Return to the `Field Papers website " -"`_ in browser address bar." -msgstr "" - -# 2f4a9789504442f2b757cf26fcaaaa1c -#: ../../source/training/osm/Chapter-07-field-papers.rst:256 -msgid "" -"Click :guilabel:`Watch` – move your mouse to the bottom and click :guilabel:" -"`Snapshots` until your browser page looks like the figure below:" -msgstr "" - -# c60317050f644e22bf32719f8f4cfa9b -#: ../../source/training/osm/Chapter-07-field-papers.rst:262 -msgid "*List Field Papers in Snapshots*" -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:264 -msgid "" -"To open Field Papers in JOSM, we need copy the photo ID from the Field " -"Papers that have been scanned. We can get the ID from the snapshot URL at " -"the Field Papers website. Click on the image until the url appears as shown " -"below, then copy the URL for example: *http://fieldpapers.org/snapshots/" -"cdq5bfq4#17/-6.81299/107.61451*" -msgstr "" - -# 7b9d8a673e08470cb3e0e5a9a5627f42 -#: ../../source/training/osm/Chapter-07-field-papers.rst:271 -msgid "*URL from Snapshot Field Papers*" -msgstr "" - -# 299ec47fc982466d989f1b61b8c40cdc -#: ../../source/training/osm/Chapter-07-field-papers.rst:273 -msgid "Copy the URL by selecting it and pressing :kbd:`CTRL + C`." -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:275 -msgid "" -"Open JOSM and make sure the Field Papers plugin is listed in the menu on the " -"top of toolbar. Click :menuselection:`Field Papers ‣ Scanned Map...`" -msgstr "" - -# 51368834dc514c1293709be80093d96a -#: ../../source/training/osm/Chapter-07-field-papers.rst:281 -msgid "*Field Papers Menu in JOSM*" -msgstr "" - -# 34556e571cd94724beaf7e7ed2a87c41 -#: ../../source/training/osm/Chapter-07-field-papers.rst:283 -msgid "" -"Then paste the URL that we have copied from the Field Papers site by " -"pressing :kbd:`Ctrl + V` on your keyboard." -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:288 -msgid "*Input Field Papers URL in JOSM*" -msgstr "" - -# 9451a9188c7040189f85824f8a25237d -#: ../../source/training/osm/Chapter-07-field-papers.rst:290 -msgid "Click :guilabel:`OK`." -msgstr "" - -# c4537eb60e2f45b2b50e6a4df984e5a5 -#: ../../source/training/osm/Chapter-07-field-papers.rst:292 -msgid "" -"If everything goes well, the Field Papers will open in JOSM. The next " -"module, we can see how to add objects from the scanned Field Papers to " -"OpenStreetMap." -msgstr "" - -#: ../../source/training/osm/Chapter-07-field-papers.rst:301 -msgid "" -"Also note that you can use scanned Field Papers in other online editors such " -"as ID Editor or Potlatch2 by clicking the link :guilabel:`Edit in... ID` or :" -"guilabel:`Edit in... Potlatch` on page Field Papers that have been scanned." -msgstr "" - -# b81612d9fe484e6d8ba6c194da26e7b4 -#: ../../source/training/osm/Chapter-07-field-papers.rst:308 -msgid "*Editing Field Papers with iD Editor*" -msgstr "" - -# da15a028df13403d9f5338b1d7652ee1 -#: ../../source/training/osm/Chapter-07-field-papers.rst:313 -msgid "*Interface Editing OSM data on iD Editor*" -msgstr "" - -# 89e2c6b018b44512b29dcca5dfa36b44 -#: ../../source/training/osm/Chapter-07-field-papers.rst:316 -msgid "Excercise!" -msgstr "" - -# 9c42a3b237b440358592dbf1cb2a85ce -#: ../../source/training/osm/Chapter-07-field-papers.rst:318 -msgid "" -"After you add your changes to OSM, they will be saved to the OSM servers. " -"When you want add some information to your map, you can print a Field Paper " -"that includes the changes you made. As this process is repeated, and you " -"acquire more details, the map will steadily improve!" -msgstr "" - -# a469f1987fa74e91973c3e69d87e8c92 -#: ../../source/training/osm/Chapter-07-field-papers.rst:323 -msgid "Summary" -msgstr "" - -# 8f3b3ab4f9d8428e92bf0a162a087f5f -#: ../../source/training/osm/Chapter-07-field-papers.rst:325 -msgid "" -"In this module, You have learned how to use Field Papers and how Field " -"Papers works as a data collection device. You have learned how to print, " -"mapping, and scans Field Paper, and how you can use them to improve " -"OpenStreetMap." -msgstr "" - -# 57b9783a7f584554880affa5f6d4bc7a -#: ../../source/training/osm/Chapter-07-field-papers.rst:329 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-08-conflict-resolution-in-osm.po b/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-08-conflict-resolution-in-osm.po deleted file mode 100644 index 82689979..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-08-conflict-resolution-in-osm.po +++ /dev/null @@ -1,362 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# dd25d1d07c3e4ad48d6e3a49f9d29d3e -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:6 -msgid "Chapter 8: Conflict Resolution in OSM" -msgstr "" - -# 9e96445897404088bc35f7b5b0057f3c -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 6fcc1cfb2eb748a792a55885e854cf2f -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:10 -msgid "Finding and resolving conflicts in JOSM" -msgstr "" - -# 3124514c06e7445288e53a3dd7a9a15a -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:12 -msgid "Learning ways to avoid conflicts (using tasking manager)" -msgstr "" - -# 4187456375424e9e95dc2a6ee7dcdced -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:15 -msgid "8.1 Conflict in JOSM" -msgstr "" - -# e9303292e7694a688ffbb42458bf212f -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:17 -msgid "" -"When we are working with JOSM and about to upload the changes, sometimes we " -"encounter this message:" -msgstr "" - -# bb03c01bc03242be95a9ce88649b48ec -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:22 -msgid "" -"This happens when you download a group of data that includes a particular " -"point, let’s say point A. At the same time there are other people who also " -"downloaded point A, making changes to it and upload it back to OSM. Now when " -"you try to upload your changes (including point A) with your version, the " -"version is already different from the server version. This causes the server " -"to be confused on which version of Point A that is correct." -msgstr "" - -# cb161e2a67724db6941771120e310935 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:28 -msgid "8.1.1 Resolving a Conflict" -msgstr "" - -# e9ae38a24fa2440b8ac8c1e01fea3221 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:30 -msgid "" -"The process of resolving conflicts in JOSM is pretty simple, even though it " -"might be confusing at first. Basically, all conflicts that occur in JOSM " -"will leave you with two options – Your Version of the object and Their " -"Version of the object that is on the server. You just need to choose which " -"version you want to use, -your version or the new version in the server." -msgstr "" - -# 6355b5b92e7b4e8eafb63855c3ec49d5 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:35 -msgid "" -"When a conflict window appears, you might want to choose the “Syncronize " -"node ... only”, but this will only resolve the conflict that occurs on the " -"particular node. That is why it is better to choose the :guilabel:" -"`Synchronize Entire Dataset` option so that you can resolve the conflicts " -"all together." -msgstr "" - -# 43fa156845e64bcb896273edf8a91432 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:42 -msgid "" -"When you click on that button, there will be a new window that includes all " -"of the conflict details. The conflict messages might seems complicated, but " -"actually they are quite simple. You will know the type of conflict you " -"encounter by indicating where the symbol" -msgstr "" - -# 738690d7c80e47da98754c461ce78128 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:49 -msgid "" -"located. Conflict in this example indicating that it is on the properties, " -"such as location or the object’s position. You can see that the coordinate " -"and state are deleted." -msgstr "" - -# 04e0404a1b0947dba0aa1f142fae052d -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:52 -msgid "**Types of Conflict:**" -msgstr "" - -# 3d6f33ae9f07495992268fd31daf67ae -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:54 -msgid "**Properties:**  Object has been moved (coordinate) or deleted" -msgstr "" - -# 43c262e27eb140bebf8191a685307b22 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:56 -msgid "**Tag**:  Object has different tags on both version" -msgstr "" - -# 392909b703f849439e1a732c7aca8704 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:58 -msgid "**Node**:  There are differences on the node list" -msgstr "" - -# e36d439d7f0e4bc5ab5291aee72f9a48 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:60 -msgid "**Members**: There are differences regarding the members of a relation" -msgstr "" - -# e2c0927f827d426ca810e2a010c621cf -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:65 -msgid "" -"Conflict just shows up on two different edits at the same time. If there are " -"three or more different edits happen at the same time, chain of conflicts " -"will occurs. You can only solve two conflicts at the same time. You can " -"choose Your Version, Their Version, or merge the two changes." -msgstr "" - -# fc3cb8c6e3f3403f9d5204d46bd7a3eb -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:69 -msgid "" -"In this example, you don’t have option to merge the changes. Click on the :" -"guilabel:`My Version` column if you are sure that your version is the right " -"one. Click on :guilabel:`Their Version` if you think that other mapper’s " -"edit should be retained." -msgstr "" - -# cb7140beca92405b85168a373aba10d7 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:76 -msgid "" -"After you choose which version is best, click on the :guilabel:`Apply " -"Resolution` as shown in the figure above. After you finished resolving all " -"the conflicts, you can start to upload your changes." -msgstr "" - -# 760f562b14bc4ae4b7bde2727fced4dc -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:79 -msgid "" -"Do some more editing. Then click :guilabel:`Upload`. You will get a pop-up " -"like the one below that says:" -msgstr "" - -# 8fb0b1832a604c1189db3b8112a5b884 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:84 -msgid "On your Windows menu you have a **Conflict List Dialog**" -msgstr "" - -# b1ba6c6d2b694f01a66255a31901eb44 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:89 -msgid "" -"This window displays a list of conflicts. The total number of unresolved " -"conflicts is shown in the header. You can select or resolve a conflict by " -"clicking on it. This is useful when you have many conflicts to deal with." -msgstr "" - -# 6cb7fb3bfe7441de8bc53935bc7e0826 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:95 -msgid "" -"You cannot upload your changes until this list is empty and all conflicts " -"have been resolved." -msgstr "" - -# ad21a6f1124f455ab0db274541051baa -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:99 -msgid "8.1.2 Tips to Avoid Conflict" -msgstr "" - -# 72883ddea8e94b928a78b35d1ae19b3e -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:101 -msgid "**Upload frequently**" -msgstr "" - -# cfa8454fb18b419385e21481c0441f1a -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:103 -msgid "" -"To minimise the chance and number of conflicts it is important to upload " -"your edits regularly. Conflicts appear more frequently for those who tend to " -"save the area they are working on in their local computer, but wait a while " -"to upload their changes. It is best to download the area you are working on, " -"edit it and then immediately upload it. The longer the time between " -"downloading data and uploading changes to that data, the more likely it is " -"that someone has edited something in the meantime." -msgstr "" - -# bae130aa169b49df90d78bfa994f578d -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:109 -msgid "**ONLY edit in the area you download**" -msgstr "" - -# 358ae60a0aa7442083093d781745474a -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:111 -msgid "" -"Editing in the specific area you have downloaded minimises the risk of " -"conflict. Make sure you do not edit outside of the area that you have " -"downloaded. You can easily see the areas outside your download area in JOSM, " -"because the background is made up of diagonal lines instead of being solid " -"black." -msgstr "" - -# f5e3f3e4c5e14e9c901e43b098580353 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:119 -msgid "**Using the tasking manager**" -msgstr "" - -# a8b36fc9f1cd415992a540c6c5d2abae -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:121 -msgid "" -"The OSM Tasking Manager is a **tool** that mappers can use to **sort an area " -"into a grid**, and work together **to map in an organised way**. Apart from " -"being more organised, the tasking manager is also one way to avoid editing " -"conflicts, because it helps prevent more than one person from editing the " -"same area at the same time." -msgstr "" - -# aa67252f78da4c449bbf24b6ea1b01bc -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:126 -msgid "" -"The way the tasking manager operates is every mapper on a project selects " -"one box from a grid overlaid on the mapping project area. This box " -"represents a subsection of the mapping project area. When a mapper finishes " -"mapping all features in their box, they can mark it as complete. This way, a " -"team distributed in different areas can coordinate and work together to " -"finish mapping in that grid." -msgstr "" - -# 238509650217406d91c625a8c16b77ce -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:131 -msgid "To see how tasking manager works, let’s practice a bit more." -msgstr "" - -# 0399dac975d54b5fbde0e99844c47ff0 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:133 -msgid "" -"Open your internet browser and go to `tasks.hotosm.org `_. You will see a page like this:" -msgstr "" - -# 46652397d4de4ee394aa43b37ba21b61 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:139 -msgid "Click :guilabel:`Log in to OpenStreetMap`" -msgstr "" - -# 04caa58375bb48669034ea9ac1042cd1 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:144 -msgid "" -"Here you must agree to allow this application some access to your OSM " -"account. To do so, click :guilabel:`Save Changes`." -msgstr "" - -# 2ab52c0649d9447faf78839828ff2e1a -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:149 -msgid "" -"Now you will see a list of projects that currently active from many country " -"where they doing coordination for mapping activities." -msgstr "" - -# ecb035d3a7ae4281a54d475edd4767d2 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:154 -msgid "" -"Click on a project to see further information related to the task as shown " -"in the figure below." -msgstr "" - -# 1499bf14033f4ce6be203481e6e28f8e -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:159 -msgid "" -"This page shows you everything you need to know about the project. On the " -"left side of the page is a description of the mapping project and how it is " -"being organised. You can click on the different tabs to get more " -"information. On the right side is a grid showing the area to be mapped. Red " -"grid squares have been completed, green squares have been completed and " -"checked by another person, and the remaining squares still need to be mapped " -"or are being worked on." -msgstr "" - -# 42fdc06a32704b249298f513592757a7 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:165 -msgid "In the right side show an area that currently being map." -msgstr "" - -# 9d64d9cfe15048e4b512e55b80a3277b -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:167 -msgid "**Orange** box represent an area that already mapped" -msgstr "" - -# 7d53410fdfb1478db4222948962e2449 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:169 -msgid "" -"**Green** box represent an area that already mapped and validated by other " -"people" -msgstr "" - -# 56fbf81acbee447f919c69e9ba299d21 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:171 -msgid "" -"**Orange outline** box represent there is someone who currently map in that " -"area" -msgstr "" - -# 6c548dcde36a43cf8c2c2ee9f8e43469 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:173 -msgid "**Grey/empty** box represent the task is unfinished." -msgstr "" - -# 589a4e8127e4418aa850b3e35364ebb6 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:175 -msgid "" -"You can click on tab :guilabel:`Contribute`, with click on :guilabel:`Take a " -"task at random` if you want to pick task randomly or you can select a task " -"manually in slippy map and then click :guilabel:`Start Mapping`" -msgstr "" - -# c31ae046edc24d44995909e717bb2b8d -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:178 -msgid "" -"After that select :guilabel:`Edit with JOSM` (You need to open JOSM and " -"enable remote control first)" -msgstr "" - -# c90ea267797045c589ca96720be2d7b1 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:183 -msgid "" -"You can also open another editing software such as iD Editor, Potlach 2 and " -"Field Papers" -msgstr "" - -# 40c40f214f9f4fc8ab321e915f3a1e7f -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:185 -msgid "" -"After you finish editing and upload the data into OSM server, you need to go " -"back to the tasking manager and click :guilabel:`Mark task as done` making " -"sure to add a changeset comment for the edits you created. It’s important to " -"let other mappers know that you have finished the grid square. If you cannot " -"finish the task, click :guilabel:`Unlock it` so another mapper can finish " -"your task." -msgstr "" - -# cb83e955478940b698b17bf505de7de6 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:190 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-09-inserting-tag.po b/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-09-inserting-tag.po deleted file mode 100644 index 57edcd67..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-09-inserting-tag.po +++ /dev/null @@ -1,306 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 1dc2b026be2b4674b7aae300cd094c51 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:6 -msgid "Chapter 9: Inserting Special Tag in JOSM" -msgstr "" - -# 3e6a48bc69ff452dbe557baa6bd36304 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 9e3627b4335844528254227ca52d4daf -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:10 -msgid "Be able to insert tag in iD Editor" -msgstr "" - -# fd8317e550634472840daca7f6c0c585 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:11 -msgid "Be able to insert tag in JOSM" -msgstr "" - -# 0445349bdbd74395b90e2396627cbaef -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:12 -msgid "Understanding standard tags that are used in OpenStreetMap" -msgstr "" - -# 2050de8897354fbc94311febc98959e8 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:14 -msgid "" -"You understand how to add data in OpenStreetMap and how to maintain the " -"quality of existing data so that we can contribute better. In this training " -"we want the objects that we mapped in OpenStreetMap to also appear as an " -"article in Wikipedia. Therefore we need to insert some special tags so that " -"later, articles based on mapped objects, can be uniformly displayed and in " -"accordance with applicable rules." -msgstr "" - -# 965efe769c844a90a129d406296b109c -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:20 -msgid "9.1 Inserting Tag in iD Editor" -msgstr "" - -# 149bbe539c7849cbb961b3393fae22d0 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:22 -msgid "" -"When we want to add special tags in iD Editor we must ensure that we are " -"connected to the Internet. Here are the steps for inserting a tag in iD " -"Editor." -msgstr "" - -# ecb43745b8544348adeb1d3b18b35a20 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:25 -msgid "Open the site: `www.openstreetmap.org `_" -msgstr "" - -# ebb35714e81349a1828c0a3941435865 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:27 -msgid ":guilabel:`Sign in` with your OSM account" -msgstr "" - -# 2ea8a27bc6a5426baea8dc1f0258fc5c -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:29 -msgid "Select edit with :guilabel:`iD Editor`" -msgstr "" - -# 43c9c3a83c854a43a84617972ff7f648 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:31 -msgid "Select object that you want to add the tag" -msgstr "" - -# c3dcc4fef1cb4c02bc190a5daa80daed -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:36 -msgid "*Display of tag in iD Editor*" -msgstr "" - -# f26d080f899e466a8ee0e192a9c1220d -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:38 -msgid "" -"Then select :guilabel:`All tags` and click :guilabel:`+` and add tag that " -"you want." -msgstr "" - -# d48a5c3bee0544e0b5ee3310a38ee2b0 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:43 -msgid "*Tag box in iD Editor*" -msgstr "" - -# 5e0596ca7db8476c976fda4899e3ca58 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:45 -msgid "After that, let’s :guilabel:`Save` your changes." -msgstr "" - -# 27f0c49ccd154b418215ac0d6ff25955 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:48 -msgid "9.2 Inserting Tag in JOSM" -msgstr "" - -# 28997d96e1044c028b823a062dcee4c8 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:50 -msgid "" -"Besides inserting a special tag to the object using iD Editor we can also " -"insert the tags to objects using JOSM. Basically inserting tags in JOSM " -"almost equal to iD Editor. Here are the steps:" -msgstr "" - -# 02b8977a50e24a8c9d764ce701e6301b -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:53 -msgid "Open JOSM in your computer/laptop" -msgstr "" - -# e2d1ad14cfdb48df8ef888081584330f -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:55 -msgid "Download area you want to edit" -msgstr "" - -# 766e90fc5f764f85a02f2cb190176fd2 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:57 -msgid "**Select the object** you want to add tags" -msgstr "" - -# d63d277d3c13448a9aa72e79bc787922 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:59 -msgid "" -"Then click :guilabel:`Add` on properties box on the right side as shown in " -"the figure below" -msgstr "" - -# 1108268ef1844010aa98ac63e8aabf21 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:64 -msgid "*Adding tag in JOSM*" -msgstr "" - -# 9b399147b8794bb9adf276f9f1a25970 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:66 -msgid "Type the **tag** that you want to use as shown in the figure below:" -msgstr "" - -# 6ef0d496edea46e78c9fe03eb79617cb -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:71 -msgid "*Adding key and value box*" -msgstr "" - -# 0b8bf7f5afa243b5a73810c04689e0af -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:73 -msgid "Then click :guilabel:`OK`" -msgstr "" - -# cdc4142b5be54ac1b3219395085050a2 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:76 -msgid "9.3 Presets Standardization" -msgstr "" - -# 7188bea5eb4d4abe9a0cf24c2c56d47e -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:77 -msgid "" -"OpenStreetMap allows all users to provide as many details as they can about " -"their map. This information can be imprinted on each object using the menu " -"presets available on OSM editor. We often find inconsistencies in the " -"provision of information on various objects. Therefore the presets help " -"standardization and uniformity of data." -msgstr "" - -# 4f97570e413543ba8d17c4cff0f9f57e -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:81 -msgid "Menu Presets are made for these purposes:" -msgstr "" - -# 2e19b2c53e5c4a5a92e61bf7c3ad1514 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:83 -msgid "To ensure the stability (consistency) of data" -msgstr "" - -# 142508b2192d408894417b6023598eac -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:85 -msgid "To facilitate the search and processing data" -msgstr "" - -# 4bab65bb0c834ebf877e1fd54091fd37 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:87 -msgid "As a benchmark in the provision of information through the presets" -msgstr "" - -# 92aa818f419445dbbfebabc1c3e2ba6d -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:89 -msgid "As a reference if you want to make improvements or validate the data" -msgstr "" - -# 084b253308c64706ac0c269b27ed5c0b -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:91 -msgid "Maximizing the use of existing Internal Presets in JOSM" -msgstr "" - -# 412774b36f2b41169679a04e17020fba -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:93 -msgid "Maximizing data visualization on OpenStreetMap website" -msgstr "" - -# ef7f7abc4a624748be2e31f7d44a7344 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:95 -msgid "" -"By using presets, standardization is enforced for all OSM users that use the " -"standard menu preset when editing the map. One of the advantages of using " -"internal presets that are already available in JOSM is the object " -"visualization will render correctly on the OSM website." -msgstr "" - -# c573970f013c46cb81ee3e896c074010 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:99 -msgid "" -"To see standardized features used in JOSM menu presets please visit the " -"following address: `http://wiki.openstreetmap.org/wiki/Id:Map_Features " -"`_" -msgstr "" - -# 7ac9a60edc2e4ea5b51e79d8af5f9911 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:105 -msgid "*Amenities list in Wiki OSM*" -msgstr "" - -# 1068f79ea4a244ba98022bc74fab1d3f -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:108 -msgid "Here are some informations that you should put into this project:" -msgstr "" - -# 203d612f6aeb491aae86e810f158cfd0 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:110 -msgid "**Building**" -msgstr "" - -# 7be8e1c6530545a98cbe14f18a2ebc7e -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:112 -msgid "Building name (key : name)" -msgstr "" - -# bfc19a82588b4584bb639fc7c5785cd4 -# 72782f2d24034d37b1341a6a6996c075 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:113 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:122 -msgid "Ownership (key : operator)" -msgstr "" - -# 4d9f6d2933574996ba97e5a5dbe9e523 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:114 -msgid "Building type (key : amenity)" -msgstr "" - -# 61cbb2c7b73a4230a31167b521f3b09e -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:115 -msgid "Building level (key : building:levels)" -msgstr "" - -# 4f4d4f7f98f34c37a9982c18bfaf73d4 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:116 -msgid "Address (key : addr:full)" -msgstr "" - -# f7f1437a8589465b88a8655a82d8d3fc -# 1069a95d5a32476c9cd0d6ba143cc1b3 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:117 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:124 -msgid "Reference (key : source:ref)" -msgstr "" - -# 7da629dd5df04d46a5a73bcfd62a26ab -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:119 -msgid "**Highway**" -msgstr "" - -# abb09597f86f4ae28c0617d628a966a3 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:121 -msgid "Highway name (key : name)" -msgstr "" - -# ae7d4ce9364e40eeb7a40fc7bb6737d2 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:123 -msgid "Highway type (key : highway)" -msgstr "" - -# 4dd98194e33a496ab8c461cf5db8247d -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:125 -msgid "Highway width (key : width)" -msgstr "" - -# b4be34e621af4f18af8f849c2d1c3a62 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:127 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-10-imagery-offset.po b/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-10-imagery-offset.po deleted file mode 100644 index 5e8a48a5..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-10-imagery-offset.po +++ /dev/null @@ -1,193 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# cfe12206b86c4fc489b2e1dcae62c6a5 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:6 -msgid "Chapter 10: Imagery Offset" -msgstr "" - -# 6ad92495e25540d38d2fde6a5cf2d742 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 41be876735b649cd9046a2c90a1771fc -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:10 -msgid "Understanding definition of Imagery Offset" -msgstr "" - -# ed9ea07b930241cf97fdec7a51cc1ba4 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:11 -msgid "How to adjust the Imagery Offset" -msgstr "" - -# 6df098a94ca8444da175587578f51e83 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:14 -msgid "10.1 Overview of Imagery Offset" -msgstr "" - -# a501e0c165a5486ab0af00db19fdcab1 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:16 -msgid "" -"Using aerial imagery is the most widely used approach to mapping in " -"OpenStreetMap. Mappers typically use Bing Satellite, or imagery from another " -"provider as a background layer while mapping. We have already seen this in " -"previous sections." -msgstr "" - -# 494b1592175345fa95662c21996df8e3 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:20 -msgid "" -"Imagery providers usually do a pretty good job of georeferencing their " -"imagery, but occasionally the images can be out of position. This is " -"particularly true in hilly or mountainous areas, where it can be difficult " -"to stretch a flat image over an area of the Earth with many contours. When " -"you load imagery in JOSM, it can sometimes be ten meters or more from its " -"true position. This is called imagery offset." -msgstr "" - -# 838c0827a5c3461fbd8fcaa71cfdbfba -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:25 -msgid "" -"We’ve learned about two major ways of making maps – one is by utilizing " -"aerial imagery to identify features on the ground, and another is by using " -"GPS to record tracks and waypoints and then add them to OpenStreetMap. The " -"advantages of aerial imagery is obvious. It is easier for you to see the " -"whole picture, to observe various details from the image, consider your " -"knowledge of the area, and easily trace roads, buildings, and areas." -msgstr "" - -# f3c8c036d9f54fd7afc3a2614da7c5b3 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:29 -msgid "" -"One key advantage of GPS, is that it doesn’t suffer from offset like " -"imagery. A GPS will always provide you with a correct latitude and " -"longitude. The only exception is when the satellite signals are interrupted " -"by high buildings and mountains, but in this case it is easy to recognize " -"the error. Showing the GPS track in this image, compared with Bing aerial " -"imagery layer in the below figure:" -msgstr "" - -# 3fe88570202c4e86837c50b37c3774dc -# e0b7ca9db0d844bcadcbd975cf806a1c -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:36 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:66 -msgid "*Imagery Offset*" -msgstr "" - -# 79993d163a2d4cfb882321d57de7a901 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:38 -msgid "" -"It is clear that the GPS track is likely to be accurate and the satellite " -"imagery beneath it is out of place." -msgstr "" - -# 397ecf05f0cd4e458beeb8de273c765e -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:40 -msgid "" -"So now we must ask, “if the imagery may be out the place, how can we still " -"use it and make accurate maps?”" -msgstr "" - -# e7e0d7da189945a5816112c55d8ff23c -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:43 -msgid "10.2 CORRECTING IMAGERY OFFSET" -msgstr "" - -# a3299a239fd044c69c87e0dd7a431a0e -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:45 -msgid "" -"The best references for adjusting imagery are GPS tracks that follow roads. " -"And the more GPS tracks that you have to reference, the more accurate you " -"will be able to align your imagery. Since OpenStreetMap users often upload " -"their GPS tracks to the OSM database, we can download them and use them to " -"align our imagery." -msgstr "" - -# 09df8cf4f55a4f16bbe157cbe02857a0 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:49 -msgid "Click on the :guilabel:`Download` button." -msgstr "" - -# f73f57cacebc4b609825736d37685f06 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:54 -msgid "" -"Check the box next to :guilabel:`Raw GPS Data` near the top of the Download " -"window. Select your area and click :guilabel:`Download`." -msgstr "" - -# 0f9ff72b4350463cb455e1e966cd5155 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:60 -msgid "" -"This will download an additional layer to JOSM containing GPS tracks. " -"Depending on how many tracks have been uploaded by OSM users, you may see " -"few tracks (or even no tracks):" -msgstr "" - -# 55df30b222e94c5daf65b81037782287 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:68 -msgid "" -"To adjust an imagery layer, click on the :guilabel:`Adjust imagery offset` " -"button at the top of JOSM." -msgstr "" - -# e0b0e8d3a88e46278c8429fb01a70675 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:73 -msgid "" -"Ignoring the box that pops up, use your mouse to drag the imagery layer so " -"that it aligns correctly with the GPS tracks. The GPS tracks should line up " -"with the roads on the imagery as closely as possible. You will see the " -"offset numbers in the box change." -msgstr "" - -# dea49b733bc549138dbfac7055b9a2c0 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:80 -msgid "*Setting Imagery Offset*" -msgstr "" - -# a1119cf0743e4777b967951caf628d3c -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:82 -msgid "" -"If you like, you can save these offset settings by entering a bookmark name " -"and then clicking :guilabel:`OK`. You can then automatically apply the same " -"settings later by going to :menuselection:`Imagery ‣ Imagery Offset` and " -"clicking on your bookmark." -msgstr "" - -# 432054244a4141faaa18dc72772e4a91 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:86 -msgid "" -"If you do not want to save the offset, simply click :guilabel:`OK` without " -"entering a bookmark name." -msgstr "" - -# 75b78d124e0d4e7da3c7ba3c436ad98d -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:88 -msgid "" -"What if there are no GPS tracks on OpenStreetMap, and you don’t have a GPS? " -"Without GPS tracks, it is difficult to align imagery. If it is a relatively " -"empty area (not much mapped), you might choose to simply use the imagery as " -"it is and correct the data later." -msgstr "" - -# 2f709f179c3442c8a708988f87a1cb55 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:92 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-11-export-osm-data.po b/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-11-export-osm-data.po deleted file mode 100644 index b186cee4..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/osm/Chapter-11-export-osm-data.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# ff1336339ed540078f2ce5d73dee2582 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:6 -msgid "Chapter 11: Export OSM data" -msgstr "" - -# e8f22071b0954a3192bfb37fa5877a32 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:8 -msgid "**Learning Objectives:**" -msgstr "" - -# b823dbf199cf4e2bbfe0d778f0a1f775 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:10 -msgid "Learn how to use HOT Export" -msgstr "" - -# 8b397142d23b40ce84dada6cab44b341 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:11 -msgid "Learn how to use overpass turbo" -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:13 -msgid "" -"After you learn how to add and edit in *OpenStreetMap (OSM)*, you may want " -"to export OSM data as back-up or for processing using GIS software such as " -"**QGIS** `www.qgis.org `_. In this chapter we will " -"learn how to use these tools." -msgstr "" - -# 2d41fbcd1f1945e7873c7e47f1e5a656 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:19 -msgid "11.1 Hot Export Tool" -msgstr "" - -# f21fbe6e379a4f9a995501489d30c631 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:21 -msgid "" -"Open your browser and type `export.hotosom.org `_ " -"and it will show like this:" -msgstr "" - -# 8634f8ea881f4935bc3bb857e29f2656 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:26 -msgid "*Hot Export front page*" -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:28 -msgid "" -"To get data from this website, you will need to login into your " -"OpenStreetMap account first before you can use HOT Export. Click :guilabel:" -"`Login to OpenStreetMap`" -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:33 -msgid "*Screenshot Login into OSM Account Page*" -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:35 -msgid "" -"3. if you do not already have one, you have to create it. The first step is " -"you can click :guilabel:`here` in the sentence '**if you don't have an " -"OpenStreetMap account you can register for one here**' of HOT Export front " -"page." -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:41 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:48 -msgid "*Screenshot in Create OSM Account Page*" -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:43 -msgid "" -"After that fill in your email, display name, password and password " -"confirmation. Then click :guilabel:`Sign Up` and open your email to confirm " -"the email from OpenStreetMap." -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:50 -msgid "" -"After you confirm the email, come back to HOT Export front page and login " -"with your OSM account. Fill in your email and password and then click :" -"guilabel:`Log in`." -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:53 -msgid "" -"6. After you successfully log in to the website, you automatically directed " -"into New Export page. In tab :guilabel:`Describe Export` you can fill your " -"export file name, description about the export and the project name that " -"using this export file." -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:56 -msgid "" -"7. In right side of the page, you can define the exported area. You can " -"search by type area name in **search box** or you can select manually by " -"click :guilabel:`Export Area` and draw the area box." -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:62 -msgid "*Screenshot in New Export Page*" -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:64 -msgid "" -"8. If you finish define name and area for your export, click :guilabel:`File " -"Formats` tab to select file format for your export file. There are some file " -"format that you can select such as Esri SHP, Garmin File, Google KMZ, OSM " -"OBF File and SQlite SQL. For Esri SHP file, there are 2 format types which " -"provide different data. OSM Schema will provide 3 type data OSM like point, " -"line and polygon and Thematic Schema will provide data based on its type in " -"OSM such as health, landuse, school, etc." -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:71 -msgid "*Screenshot in Export Format Page*" -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:73 -msgid "" -"9. After select file format, you can click :guilabel:`Tree Tag` tab to chose " -"feature for result data tag of your export. There are 2 options that you can " -"select. Humanitarian Data Model only export all tags that related with " -"humanitarian information such as hazard, public services and utilities, " -"whereas OSM Data Model export all tag in OSM." -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:79 -msgid "*Screenshot in Tree Tag Page*" -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:81 -msgid "" -"Then, click :guilabel:`Preset File` tab add specific preset file if you have " -"any. Using specific preset file will export your data with specific tag " -"based on the presets. Moreover, tag from previous data model both " -"Humanitarian and OSM Data Model will be cleared. However, if you do not have " -"any specific preset you can skip this step." -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:86 -msgid "*Screenshot in Preset File Page*" -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:88 -msgid "" -"11. Last step to make an export file in HOT Export is click :guilabel:" -"`Export Details` tab and you can see summary of your export details file and " -"please select at least one of three options in Export Options about how your " -"export result will be share to other users. If you finish, please click :" -"guilabel:`Create Export` ." -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:94 -msgid "*Screenshot in Export Details Page*" -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:96 -msgid "" -"12. After the running process finished and export status is completed, you " -"can download your export file result in some file format data which have " -"been defined previously. You also can delete, clone or rerun this export " -"project if you want. All other request for HOT Export can be found in :" -"guilabel:`Exports` menu." -msgstr "" - -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:102 -msgid "*Screenshot in Export Result Page*" -msgstr "" - -# 3890dcbed835483bb55e899efbead50c -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:105 -msgid "11.2 Overpass-Turbo" -msgstr "" - -# 904297ad5300453eb501356fd4b17e5a -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:107 -msgid "" -"If you only want specific object in OSM data, the right choice is to use " -"`Overpass Turbo `_. For example you only need " -"schools data in Jakarta and surrounding area. To download OpenStreetMap data " -"using Overpass Turbo you can follow this step:" -msgstr "" - -# d6dbdee17963411d8b0700038eb29bea -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:111 -msgid "Point your web browser to `Overpass Turbo `_" -msgstr "" - -# 3332c99cc7d6499c80829779a876fa1f -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:113 -msgid "" -"You can start find to your area of interest in OpenStreetMap using the " -"Slippy Map in the right side. You can drag and zoom in map with **(+)** and " -"zoom out map using **(-)**. You can also search directly with typing in " -"search box as shown in the Jakarta example shown below. There will be " -"several arear related to Jakarta and you can choose the right area that you " -"want to download." -msgstr "" - -# 5130cb3708ca4f1b9b2be9cbba95e8ae -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:122 -msgid "" -"If you don’t want to download the larger area you can resize the area and " -"draw a border by yourself with click :guilabel:`manually select box` from " -"the toolbar in the left side of the map. Draw a box in the slippy map to " -"define the target area." -msgstr "" - -# 12cc477bd29d4be1b63add2cc7a70ffb -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:129 -msgid "*Select area manually*" -msgstr "" - -# f365d143d87d40868d072839eb8e464e -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:131 -msgid "" -"To download OSM data specific to one feature, for example schools, click :" -"guilabel:`Wizard` menu. In the Wizard menu, you can filter your data with " -"using `JOSN `_ query, in the simple way it can be a " -"tag contains Key and Value, for example if you want to download schools " -"type :kbd:`amenity=school` in :guilabel:`Query Wizard`." -msgstr "" - -# e255b03172394f04a33571b9dd153777 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:139 -msgid "*Query box in Overpass Turbo*" -msgstr "" - -# bb044db5400b44a2b18b758b5194db70 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:141 -msgid "" -"Click :guilabel:`Build and Run Query`, wait for a moment until school " -"objects are displayed in the area of interest. You should see something like " -"the screenshot below which shows all the school objects in OSM in the area " -"of interest." -msgstr "" - -# c9166bb4327c4eb2b143bb53f3293f55 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:147 -msgid "" -"If you only want data type in point/node format, you can specify that in the " -"query box in the left side. To do this, erase school with way and relation " -"type, and then click :guilabel:`Run` menu in the top left side. The result " -"will be a school objects with only point/node data type filtered. You can " -"also add more detailed query in the query box and then click :guilabel:`Run`." -msgstr "" - -# 3a42cea00dca42e48d921403b4a2a6fe -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:156 -msgid "*Erase several query in query box*" -msgstr "" - -# 317f8554580a49a8b3059ba07b343936 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:158 -msgid "" -"To download the schools data you can click Export menu, there are several " -"data formats that you can choose such as **geoJSON, GPX, KML, .osm**, etc. " -"If you not familiar with geoJSON, you can select :guilabel:`level0` to " -"download .osm data format that you can use later with QGIS or other mapping " -"software." -msgstr "" - -# a46c7d7e78e34e789590cf05c295e5d6 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:165 -msgid "*Export Overpass Turbo result*" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/osm/index.po b/docs/i18n/fr/LC_MESSAGES/training/osm/index.po deleted file mode 100644 index 0aefac4b..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/osm/index.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Language-Team: French (https://www.transifex.com/inasafe/teams/57762/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 5fbf4b0c2f6d4f1c89b6036f80b5d070 -#: ../../source/training/osm/index.rst:4 -msgid "Data Collection Using OpenStreetMap" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-00-Preface.po b/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-00-Preface.po deleted file mode 100644 index b2aa7f2f..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-00-Preface.po +++ /dev/null @@ -1,225 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:02+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 6840389a11ae47bdbb01673f10c9f558 -# 7e89ac9a24934bc0a1cbc5ca5fe1dd53 -#: ../../source/training/qgis/Chapter-00-Preface.rst:4 -#: ../../source/training/qgis/Chapter-00-Preface.rst:92 -msgid "Preface" -msgstr "" - -# 937467e00786475bbbe655a65232c6f3 -#: ../../source/training/qgis/Chapter-00-Preface.rst:7 -msgid "Disclaimer" -msgstr "" - -# 6c76bf91c8454d1584bb4bbd025c9032 -#: ../../source/training/qgis/Chapter-00-Preface.rst:9 -msgid "" -"This document is initial draft and still in reviewing phase by these parties:" -msgstr "" - -# 54ff8e02a89845f5bbc709adc7384df5 -#: ../../source/training/qgis/Chapter-00-Preface.rst:11 -msgid "Badan Nasional Penanggulangan Bencana (BNPB)" -msgstr "" - -#: ../../source/training/qgis/Chapter-00-Preface.rst:13 -msgid "Disaster Management Innovation (formerly AIFDR)" -msgstr "" - -# ab8271c2a71d4a4baa27605fe2bcbaee -#: ../../source/training/qgis/Chapter-00-Preface.rst:15 -msgid "Humanitarian OpenStreetMap Team (HOT)" -msgstr "" - -# 5d15ec37d58e4063b3e8097080c5a658 -#: ../../source/training/qgis/Chapter-00-Preface.rst:17 -msgid "" -"All contents and materials on this document possibly changed without public " -"notice." -msgstr "" - -# 23714405f767452b843b40263397ae65 -#: ../../source/training/qgis/Chapter-00-Preface.rst:20 -msgid "License" -msgstr "" - -# 7855f996ce5040cf9a837f54ac14eb30 -#: ../../source/training/qgis/Chapter-00-Preface.rst:26 -msgid "" -"All contents and materials on this document is licensed as Creative Commons" -msgstr "" - -# 989b482689e94dda9d73ffae84b7f16c -#: ../../source/training/qgis/Chapter-00-Preface.rst:28 -msgid "Attribution Australia (CCbyA)." -msgstr "" - -# 247545ca285a496db71681ee5ce53f52 -#: ../../source/training/qgis/Chapter-00-Preface.rst:30 -msgid "You are free:" -msgstr "" - -# 9bf2a10d84554c08b13a629e44e4a6c1 -#: ../../source/training/qgis/Chapter-00-Preface.rst:32 -msgid "to copy, distribute, display, and perform the work" -msgstr "" - -# b8461370603042428e8e6b44a523ac7f -#: ../../source/training/qgis/Chapter-00-Preface.rst:34 -msgid "to make derivative works" -msgstr "" - -# 578917a5a27940c08602f3a3ad4dc9c3 -#: ../../source/training/qgis/Chapter-00-Preface.rst:36 -msgid "to make commercial use of the work" -msgstr "" - -# 4b937b1bbb9747edafaecc6c773dafa6 -#: ../../source/training/qgis/Chapter-00-Preface.rst:38 -msgid "You must give the original author credit." -msgstr "" - -# 48159265cd134c72b6bf88d5418d53f4 -#: ../../source/training/qgis/Chapter-00-Preface.rst:40 -msgid "More information about CCbyA License:" -msgstr "" - -# 2ed296bbafbf4806919968be15e7af33 -#: ../../source/training/qgis/Chapter-00-Preface.rst:42 -msgid "http://creativecommons.org/licenses/by/3.0/au/deed.en_GB" -msgstr "" - -# 45a8df61bcb945ac9b05bf7fbdc95213 -#: ../../source/training/qgis/Chapter-00-Preface.rst:45 -msgid "About Us" -msgstr "" - -# 6b532545c806452b9f139fd880759feb -#: ../../source/training/qgis/Chapter-00-Preface.rst:47 -msgid "**Badan Nasional Penanggulangan Bencana (BNPB)**" -msgstr "" - -# c640ecf7f6814cd296fda6900e1fd1e0 -#: ../../source/training/qgis/Chapter-00-Preface.rst:52 -msgid "" -"BNPB is Indonesia’s National Disaster Management Agency. BNPB is a non-" -"departmental ministerial-level government agency, tasked with providing " -"guidance and direction to the efforts of disaster management that includes " -"disaster prevention, emergency response, rehabilitation, and reconstruction " -"in a fair and equal. National Disaster Management Agency has the function as " -"a policy maker, formulator, and Refugee (IDP) management to act quickly and " -"appropriately and effectively and efficiently; and coordinating the " -"implementation of disaster management activities in a planned, integrated, " -"and comprehensive." -msgstr "" - -# a724440e023f43a08837c4bd4e306412 -#: ../../source/training/qgis/Chapter-00-Preface.rst:60 -msgid "http://bnpb.go.id" -msgstr "" - -#: ../../source/training/qgis/Chapter-00-Preface.rst:62 -msgid "**Disaster Management Innovation (formerly AIFDR)**" -msgstr "" - -#: ../../source/training/qgis/Chapter-00-Preface.rst:67 -msgid "" -"Disaster Management Innovation is the new Australian Government aid " -"investment delivered by Geoscience Australia in Indonesia. DMInnovation " -"builds on the success of The Australia-Indonesia Facility for Disaster " -"Reduction (AIFDR) which was a joint initiative between the governments of " -"Australia and Indonesia. AIFDR was launched by the Australian and Indonesian " -"governments at a special ceremony on 15 July 2010 and was officially closed " -"in August 2015. DMInnovation will maintain the important scientific " -"technical assistance program delivered in partnership between Indonesian " -"science agencies and Geoscience Australia." -msgstr "" - -# c89369dbb97f439daac81f063aea99d2 -#: ../../source/training/qgis/Chapter-00-Preface.rst:74 -msgid "**Humanitarian OpenStreetMap Team (HOT)**" -msgstr "" - -# af49265ef6fc4728968eb1c6c26866c0 -#: ../../source/training/qgis/Chapter-00-Preface.rst:79 -msgid "" -"Free, collaborative maps are uniquely valuable to humanitarian work, " -"especially in places where base map data is often scarce, out of date, or " -"rapidly changing. OpenStreetMap is a web project to create a free and open " -"map of the entire world, built entirely by volunteers surveying with GPS, " -"digitizing aerial imagery, and collecting and liberating existing public " -"sources of geographic data. The Humanitarian OpenStreetMap Team (HOT) is an " -"initiative to apply the principles and activities of open source and open " -"data sharing towards humanitarian response and economic development." -msgstr "" - -# 1f365f241c3b4c18b77d10dd849c7f2f -#: ../../source/training/qgis/Chapter-00-Preface.rst:87 -msgid "http://hot.openstreetmap.org" -msgstr "" - -# 3755eee63d0e46b88f9083bdc977a70b -#: ../../source/training/qgis/Chapter-00-Preface.rst:94 -msgid "" -"A Geographic Information System (GIS) is a system designed to enable people " -"to work with data related to places on the Earth. A GIS allows the creation, " -"storage, manipulation, and analysis of geographic data. GIS is a very broad " -"concept and can involve complex hardware and software. But for most people’s " -"purposes, a simple GIS software application is all that is required" -msgstr "" - -# 89c2a4047c864a3894cc23033b01a9f0 -#: ../../source/training/qgis/Chapter-00-Preface.rst:99 -msgid "" -"GIS in general can be used for a variety of fields, including in disaster " -"management. Unfortunately, the GIS software currently on the market are very " -"expensive. Therefore we make a guide how to analyze the data with GIS " -"software, which is free and open for the purposes of disaster management, " -"particularly in the preparation of contingency plans." -msgstr "" - -# 2b8fd8da873d425a8789a329e443bad2 -#: ../../source/training/qgis/Chapter-00-Preface.rst:105 -msgid "" -"The software used is QGIS (QGIS) is a Geographic Information System (GIS) " -"that is user-friendly and open-source. InaSAFE is a free software and open-" -"source, that can create realistic scenario of natural disasters impact for " -"planning, preparation, and better response. InaSAFE is developed by AIFDR " -"through consultation with BNPB." -msgstr "" - -# a839d34daea64d29bb786e00581252c6 -#: ../../source/training/qgis/Chapter-00-Preface.rst:109 -msgid "" -"Analyzing Data with QGIS and InaSAFE is designed to complement the previous " -"unit to collect spatial data with OpenStreetMap for disaster management." -msgstr "" - -# accc91bb308e4bdf84b7ebc470225e2f -#: ../../source/training/qgis/Chapter-00-Preface.rst:112 -msgid "We hope it can be useful." -msgstr "" - -# 9b47bd80a1de4ba3a0dcd7187dedbf92 -#: ../../source/training/qgis/Chapter-00-Preface.rst:114 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-01-GIS_for_Disaster_Management.po b/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-01-GIS_for_Disaster_Management.po deleted file mode 100644 index 1e0a9140..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-01-GIS_for_Disaster_Management.po +++ /dev/null @@ -1,135 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:03+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# e40f0552c09f4aeca84676cfa5316ced -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:6 -msgid "Chapter 1: GIS for Disaster Management" -msgstr "" - -# a9de71f1654648aa98079f2462c896eb -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:8 -msgid "**Learning Objectives:**" -msgstr "" - -# d85efa9e7f204b76a7c3ddc8d8295c99 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:10 -msgid "Distinguishing between data and information" -msgstr "" - -# 764465c5907f4141845ca29ddc4d2e29 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:12 -msgid "Understand the concept of GIS" -msgstr "Comprendre le concept de SIG" - -# ffdf544c96484a5d98560a9e8c208a80 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:15 -msgid "1.1 The difference between data and information" -msgstr "" - -# c2fd2d63d6914d86a1f5ef94a02bfe3d -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:17 -msgid "" -"In the first unit, we looked at OpenStreetMap and how to collect data and " -"add it to the worldwide map. But what do we mean when we say that we collect " -"data? Is this the same as collecting information? Well, not exactly." -msgstr "" - -# 0ec20eb61b9541c69c8d7c24a193eb19 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:20 -msgid "" -"Data are raw facts. Information is data that is organised and presented in " -"such a way as to be useful. In other words, when we go mapping to collect " -"locations and facts about those locations, we have collected data - we have " -"collected facts. To turn this data into information, we must make sense of " -"it. We must present the data in such a way that it can be easily understood." -msgstr "" - -# b667e319bd8a4ecd8d0cb8a06dea08ca -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:25 -msgid "" -"OSM data is already made informative in an obvious way. The map that you see " -"when you visit the OSM website is there because a computer has processed all " -"of the OSM data and used it to paint a nice looking map. The map is " -"informative, and useful for us to see where places are in relation to us." -msgstr "" - -# 06546b30ddc14104b02ecb3714d8044b -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:30 -msgid "" -"In this unit we will take this even further. We will learn how to perform " -"geographic data analysis, and thereby learn how to make our data more " -"useful, informative and effective." -msgstr "" - -# 3e0967ec58004b0eafee89bec3cb7092 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:34 -msgid "1.2 Terminology of Geographic Information System (GIS)" -msgstr "" - -# 5b636b9b5e414c00a4dbb01820223899 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:36 -msgid "" -"A Geographic Information System (GIS) is a system designed to enable people " -"to work with data related to places on the Earth. A GIS allows the creation, " -"storage, manipulation, and analysis of geographic data. GIS is a very broad " -"concept and can involve complex hardware and software. But for most people’s " -"purposes, a simple GIS software application is all that is required, and in " -"this unit we will learn how to use the excellent open-source application, " -"QGIS." -msgstr "" - -# 05cee11b20034fec8f49673b47c2fdeb -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:42 -msgid "" -"GIS provides different ways to analyse data. It enables us to ask complex " -"questions, such as:" -msgstr "" - -# 07aa9ddf9ccc4bd69441f57cb98ca91c -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:44 -msgid "*Where are all schools with more than 100 students?*" -msgstr "" - -# 466d5c6750974acb84dff4ee6b6c0f87 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:46 -msgid "*How many children live in a certain district?*" -msgstr "" - -# 76e01e12c0604c55b2856be045fc97dd -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:48 -msgid "*How many women live within 500 meters of a certain hospital?*" -msgstr "" - -# 3fcf81e620c24f4cb8bf2d0df72fca1e -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:50 -msgid "*What is the shortest walking path from a given point to a hospital?*" -msgstr "" - -# e4d9f54666754ac8b64130c820f2f29f -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:52 -msgid "" -"GIS helps us to answer these sorts of questions. In the previous unit we " -"learned how to collect data, and in this unit we will see how to analyse it." -msgstr "" - -# 308e68d86994422196ab3ed2bcf33885 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:55 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.po b/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.po deleted file mode 100644 index 4166bce2..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.po +++ /dev/null @@ -1,237 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:02+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# a16541491a3e4e01a14ee19cbfd90f51 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:6 -msgid "Chapter 2: QGIS and InaSAFE in Disaster Management" -msgstr "" - -# 7deaa4f96f2d423abcff729a3c4a0745 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:8 -msgid "**Learning Objective:**" -msgstr "" - -# 7b35477b425c4aaaa71cac4ba63f29bf -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:10 -msgid "Understand the role of GIS in disaster management" -msgstr "" - -# 12585697627847b8be5e6583c9bfabf2 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:12 -msgid "Understand the importance of data" -msgstr "" - -# 9aa8f3d2edb54c489ab5f9a80d8de939 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:14 -msgid "Understand the benefits of QGIS/InaSAFE in disaster management." -msgstr "" - -# a25403fe89ea4b52a798e2f23405ad2c -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:17 -msgid "2.1 GIS for Disaster Management" -msgstr "" - -# 0a266ca2e2a9415b853247c1ab6bf09c -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:19 -msgid "" -"GIS has an important role in disaster management. A disaster management is " -"intended to manage and support both government and community preparedness, " -"mitigation, prevention, response and recovery of a potentially hazardous " -"event, such as an earthquake or tsunami. The purpose of this disaster " -"management is to minimize casualties and losses in case of such an event." -msgstr "" - -# 06f5655b5b58451299a02a47f142cbee -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:25 -msgid "" -"Before contemplating a disaster management, one must first consider " -"potential disaster scenarios. A good disaster management will likely answer " -"questions such as:" -msgstr "" - -# 32e83e770a614c838294610b57760614 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:28 -msgid "*What sort of disaster is likely to happen?*" -msgstr "" - -# c29a5fec6d074b219be5373d726866c4 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:30 -msgid "*How we prevent the disaster?*" -msgstr "" - -# cd6685c07ad74a2aab976d321285701a -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:32 -msgid "*How widespread will the impact be?*" -msgstr "" - -# 4f066a97650e47da8250d92726c539bd -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:34 -msgid "*Who is responsible for helping?*" -msgstr "" - -# d8a00903a6dd441d99a7689ef6261c28 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:36 -msgid "*What should be given as aid?*" -msgstr "" - -# 7d5800c186954e4da3edf1ed43117610 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:38 -msgid "*What should we do when the disaster already happen?*" -msgstr "" - -# ec34eb1355ed46bcb2471c58ff945847 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:40 -msgid "*Where are the priority areas?*" -msgstr "" - -# b848494d2568410fb21fbbc6c9fe182b -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:42 -msgid "" -"In other words, disaster management answers the question, **who does what, " -"where and when?**" -msgstr "" - -# 6d1d3fa219a24d949d7cbdf6e0493e73 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:44 -msgid "" -"A Geographic Information System is able to help planners answer these " -"questions, especially the important spatial elements of contingency " -"planning. GIS may be used to model hazardous events so that they can be " -"better predicted." -msgstr "" - -# 6ce16c70bc04429ba3ce77288788c862 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:48 -msgid "" -"It may be used to plan evacuation routes prior to a disaster. When a " -"disaster occurs, GIS may also play a role in the emergency response phase. " -"It can be used to map the area affected and position of refugee camps, so " -"that helpers can be directed to the most useful locations to aid those " -"affected. After a disaster, GIS may also be used to plan for rehabilitation " -"and reconstruction. Overall, GIS helps to perform analysis of a disaster, " -"damage and losses caused, and opportunities for reducing risk." -msgstr "" - -# 0d7e8086ff6a4d01b406f76a7b906a50 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:56 -msgid "2.2 The Importance of Data" -msgstr "" - -# a403a9a5a60d4da0a7030b1af3ee8840 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:58 -msgid "" -"We previously learned how to start collecting exposure data. When thinking " -"about GIS it is important to remember that if your data is bad, your " -"analysis will be bad also. Hence the more detailed and accurate your data " -"is, the better your analysis and action may be during a disaster." -msgstr "" - -# 39f532ea7e614ba18334b82f5fb046dd -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:63 -msgid "" -"As we shall see in this unit, some data may be obtained from various " -"agencies that specialize in certain kinds of data. For example, we will " -"obtain our hazard models (hazard data) from various organizations that " -"specialize in this. As for exposure data, some data we may find through " -"agencies, such as population data. For infrastructure data, collecting data " -"at a community level is key, which is why in the previous unit we learned " -"how to utilize the crowd-sourced OpenStreetMap platform." -msgstr "" - -# b77a325070114388b301a44c4a0ecda4 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:70 -msgid "2.3 QGIS and InaSAFE" -msgstr "" - -# b37eda5561f14b6ebc2ab399a08887a3 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:72 -msgid "" -"QGIS is a user-friendly open-source Geographic Information System (GIS). It " -"runs on Windows, Mac OSX, and Linux. QGIS provides a continually growing " -"number of capabilities provided by core functions and plugins. You can " -"visualize, manage, edit, analyse data and compose printable maps." -msgstr "" - -# b222aa1d536b44ee91b9eb11d89db16f -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:76 -msgid "QGIS is great because:" -msgstr "" - -# d3c12ff0bd824437bfb1c7d4f54396d4 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:78 -msgid "It’s completely free. It doesn’t cost anything." -msgstr "" - -# ec532d1762cb478ab60acb420288f03b -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:81 -msgid "" -"It’s free, as in liberty. If you think a feature is missing, you can sponsor " -"the development of a feature," -msgstr "" - -# 42346b0839de4c8bbdef8c478a8e21ba -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:81 -msgid "or add it yourself if you are familiar with programming." -msgstr "" - -# b4cb22eb322d4ed485a7a593842b1601 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:83 -msgid "" -"It’s constantly developing and improving. Because many people continue " -"adding features, it keeps getting better." -msgstr "" - -# 775bb80cb9f448a192a9c0590a0919ef -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:86 -msgid "" -"Extensive help and documentation is available. If you have problems you can " -"always turn to the software documentation," -msgstr "" - -# de418582c8044151a1839dd3ff9b6adf -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:86 -msgid "other QGIS users, or even the developers." -msgstr "" - -# 38869ea2599d4f6b9c22ff011031168a -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:88 -msgid "" -"QGIS has many **plugins** which extend the core functionality of the " -"software. One of these plugins is InaSAFE, which can be used to analyse the " -"impact of a disaster and create a list of actions needed to be taken when a " -"disaster occurs. QGIS and InaSAFE can also help to determine the location of " -"ideal places of refuge, evacuation routes, areas likely to be damaged, and " -"more." -msgstr "" - -# 66f5ed3eb0fd467780f6026097392ed2 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:97 -msgid "" -"InaSAFE provides overviews of potential disaster scenarios, of their " -"outcomes, as well as maps which can aid decision makers when disaster " -"strikes. Maps are an effective way of communicating disaster impact, by " -"showing in a simple way the areas of damage, such as the extent of flood-" -"affected areas and buildings affected by a flood." -msgstr "" - -# 0f6ee9d78b604f1dacf7d59777bf7504 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:102 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-03-Basic_QGIS.po b/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-03-Basic_QGIS.po deleted file mode 100644 index 36907c38..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-03-Basic_QGIS.po +++ /dev/null @@ -1,846 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:03+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# c45771c889b14dd7bdb9d329e08ab910 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:6 -msgid "Chapter 3: The Basics of QGIS" -msgstr "" - -# ef145e4964e7429cb758a459ee15f822 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 42b245deedae4ff5bbd1f9de1f3e1de9 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:10 -msgid "Downloading QGIS" -msgstr "Télécharger QGIS" - -# f4a4ae6d56e94e6bba6b8b051ddca52b -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:11 -msgid "Install QGIS" -msgstr "Installer QGIS" - -# 2dd10d647497497b9fcf70ac8e2219fd -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:12 -msgid "Open a previously created QGIS project" -msgstr "Ouvrir un projet QGIS préexistant" - -# 81ca044057814c8c874634295e30ff6d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:13 -msgid "Understand the layers panel" -msgstr "" - -# 8ea7cb6cfedd418283b0b85966915fd1 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:14 -msgid "Access basic tools through toolbar" -msgstr "" - -# 0670e44cb81c4996aac815cb76324877 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:15 -msgid "Clean up the toolbar" -msgstr "Ranger la barre d'outils" - -# 672cc69459004466a62ffcaaf9b4b3d7 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:16 -msgid "Show a map in the map window" -msgstr "" - -# 934f388998bf4d7b82595660df36b9fb -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:18 -msgid "" -"In this chapter we begin using QGIS. We’ll see how to install the software " -"and understand the layout, interface and core functions of the software. By " -"the end of this chapter, you’ll be on your way to becoming a competent GIS " -"user!" -msgstr "" - -# 82b260b2d1c8419da9a111d8d73e0701 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:22 -msgid "" -"Note that if you have previously installed QGIS, feel free to skip ahead to " -"*section three*. Otherwise, let’s start here and get QGIS installed." -msgstr "" - -# db9a3b1fe7ed47b681b31450a6184c49 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:26 -msgid "3.1 Getting QGIS" -msgstr "" - -# a040a5950634435aa9e39fd7c90a2d4b -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:28 -msgid "" -"Open your web browser and in the address bar at the top of the window, type :" -"kbd:`qgis.org`. Press :guilabel:`Enter`." -msgstr "" - -# e03585457f4245ce8b0ad1573b988825 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:33 -msgid "The QGIS website will look something like this:" -msgstr "Le sit de QGIS doit ressembler à ça:" - -# 27e7562cd50d46abafbad99c8e38e72d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:38 -msgid "Click :guilabel:`Download Now`" -msgstr "" - -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:43 -msgid "" -"If you are using Windows, scroll down to the :menuselection:`Long Term " -"Release` version and click on :guilabel:`QGIS Standalone Installer Version " -"2.14 (32 bit).` Your exact version number may be different." -msgstr "" - -# 56c78231afe845edbffd653cc8bad46d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:50 -msgid "" -"If you are not using Windows, select your Operating System from the menu. " -"Follow the installation instructions." -msgstr "" - -# a4ba6d1cb1a148d8bc4f51fe6b46f5d3 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:56 -msgid "" -"When the file is downloaded, run it and follow the instructions to install " -"QGIS." -msgstr "" -"à la fin du téléchargement, lancez l'installateur et suivez les instructions " -"pour installer QGIS." - -# f0832d062d9d49cbaa68094306ad8365 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:59 -msgid "3.2 Installing QGIS" -msgstr "" - -# e6444037b6fb49f59b1c7eaee24d15bf -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:60 -msgid "Open the folder where you have the QGIS installation file." -msgstr "" -"Ouvrez le répertoire dans lequel vous avez téléchargé le fichier " -"d'installation QGIS." - -# 71f3773b92ca43da96d6a77246187dc0 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:65 -msgid "" -"Run the installation file. If you are installing QGIS version 2.x, it should " -"look like this:" -msgstr "" - -# 45d62de749fd4afa84b2cc361b0e541a -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:70 -msgid "Click on :guilabel:`Next`." -msgstr "" - -# c4e80606e4ef49ab9e9e78934d72505d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:72 -msgid "" -"Click :guilabel:`I Agree` to agree with the conditions in the license " -"agreement." -msgstr "Clickez :guilabel:`J'accepte` aux conditions de la licence." - -# 5736169f6c4149919c17cff8c5bc4f92 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:77 -msgid "" -"The next window asks where you would like to install QGIS. In most cases, " -"the default should be fine. Click on :guilabel:`Next`." -msgstr "" - -# 45d176a453cd426799480e8e01d9c0a1 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:82 -msgid "" -"In the next window, click :guilabel:`Install` without checking any of the " -"boxes." -msgstr "" - -# ee522574c5854c58a47c22be6b9de7a4 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:87 -msgid "QGIS will begin to install. It may take a few minutes to complete." -msgstr "" - -# 9839862ce7aa4575ac553a08c2e1bbd1 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:92 -msgid "" -"click :guilabel:`Finish` to complete the installation. Your computer will " -"automatically reboot." -msgstr "" - -# 077a25ab59d7406d9d9e09bcd2689be5 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:97 -msgid "Now open QGIS from the Start Menu." -msgstr "" - -# 2cfca0eb0f244c2cad7ad997b85c415a -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:102 -msgid "QGIS will look something like this:" -msgstr "QGIS doit ressembler à ceci:" - -# eed8035a1bc24d0f84089702d9bbc085 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:109 -msgid "3.3 QGIS user interface layout" -msgstr "" - -# 810b4b6880a84354aff57735ac043a97 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:111 -msgid "" -"Next we will open up a QGIS project, and take a look at the different pieces " -"of the QGIS interface. If you installed InaSAFE previously, make sure it is " -"closed by clicking on the X in the upper right corner of the InaSAFE panel. " -"If it isn’t open or you haven’t installed it yet, carry on. We will come " -"back to this later." -msgstr "" - -# 3e81055cafc04f3aa56750d9934524eb -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:116 -msgid "" -"Click on the folder icon on the upper toolbar or go to :menuselection:" -"`Project --> Open...`" -msgstr "" - -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:121 -msgid "" -"Navigate to the tutorial files and go into the **QGIS for Disaster " -"Management/ directory**. Open the file named **Chapter_3_Basic QGIS.qgs**. " -"QGIS should now look something like the following image. Let’s pause for a " -"moment and go over the various components of the QGIS interface." -msgstr "" - -# 75e7e8f8d7024948ab0c51d3d1db6457 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:128 -msgid "**Map Canvas**" -msgstr "**Cannevas**, carte" - -# 52acd4579ddf4cbeb868d0514a79a2a5 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:130 -msgid "" -"This is the window where the map is shown. Our project has two different " -"files open, one which shows districts of the Sleman regency, and another " -"that shows the railway line running through the area. Both of these files " -"are drawn together in the map canvas." -msgstr "" - -# 7902db14786d4ffe8c649a0f26927065 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:135 -msgid "**Layers Panel**" -msgstr "" - -# f5444f1d337d4c069e1afa54692cd501 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:137 -msgid "" -"On the left side of QGIS is the layers list. This lists the layers, or " -"files, that are loaded into our QGIS project. In this project, we have two " -"layers, **Kecamatan_Sleman** and **railway_Sleman_OSM**." -msgstr "" - -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:140 -msgid "" -"The layers panel not only shows all the files that are currently opened, but " -"also determines the order that they are drawn on the map canvas. A layer " -"that is at the bottom of the list will be drawn first, and any layers above " -"it will be drawn on top." -msgstr "" - -# 8dd8a086945a4af69a7655f1fadaec6d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:143 -msgid "" -"Click on the layer :guilabel:`railway_Sleman_OSM` and drag it below the " -"layer named **Kecamatan_Sleman**." -msgstr "" - -# 6d4c9b43305d4e95b44478e75a6dd717 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:149 -msgid "" -"Notice how the map canvas changes. The railway layer is now shown below the " -"district layer, and part of the railway is now obscured. A map should never " -"show railway hidden beneath district areas, so go ahead and move the layers " -"back." -msgstr "" - -# f344997ec5454eb5ba4c34ebd700b420 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:152 -msgid "" -"Uncheck the box next to a layer’s name. It will be hidden from the map " -"canvas." -msgstr "" - -# ea7a054f0d2d4a9e879643773d870b6a -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:155 -msgid "" -"Expand collapsed items by clicking the arrow or plus symbol beside them. " -"This will provide you with more information on the layer’s current " -"appearance." -msgstr "" - -# 93818df660824ed6845ef50e75f03980 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:161 -msgid "" -"Right-click on a layer to view a menu with menu extra options. You’ll be " -"using some of them before long, so take a look around!" -msgstr "" - -# 5b3bcce90e3046ce863416f3de96e35d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:164 -msgid "**Toolbars**" -msgstr "**Barres d'outils**" - -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:166 -msgid "" -"At the top of QGIS are a large number of tools, which are contained with " -"various *toolbars*. For example, the *File* toolbar allows you to save, " -"load, print, and start a new project. We have already used one of these " -"tools when we opened this project." -msgstr "" - -# fdf88574766947ab863e007d9c8e3d90 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:173 -msgid "" -"By hovering your mouse over an icon, the name of the tool will appear to " -"help you identify each tool." -msgstr "" -"En passant le curseur sur une icone. le nom de l'outil s'affiche pour vous " -"aider à identifier chaque outil." - -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:175 -msgid "" -"The number of tools (buttons) can seem a bit overwhelming at first, but you " -"will gradually get used to them. The tools are grouped into related " -"functions on toolbars. If you look closely, you can see a vertical array of " -"ten dots to the left of each toolbar. By dragging these with your mouse, you " -"can move the toolbar to a more convenient position, or separate it so that " -"it stands on its own." -msgstr "" - -# 685d9f2e9c1f42abbff2a26b7f612b27 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:184 -msgid "" -"If you feel overwhelmed by the number of toolbars, you can customize the " -"interface to see only the tools you use most often, adding or removing " -"toolbars as necessary." -msgstr "" - -# fc04a912e2ab499e898c330109f93e97 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:187 -msgid "" -"To add or remove a toolbar, right-click on any of the toolbars, or go to :" -"menuselection:`View --> Toolbars`." -msgstr "" - -# 57e2985b384147239937f6b9e67fd00a -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:192 -msgid "" -"Let’s remove some of the toolbars that we will not be using in this " -"training, to make the interface a bit cleaner. Right-click on the toolbar, " -"and uncheck the boxes next to the following toolbars:" -msgstr "" - -# 8da1a7bf63cf489ea2ec2bbf7a891812 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:195 -msgid "Advanced Digitizing" -msgstr "Numérisation Avancée" - -# 559650b0c4c4442e8d942ffea8b40a4d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:197 -msgid "Database" -msgstr "Base de données" - -# a1c3466ffcea44bebce9fe7964df1f66 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:199 -msgid "GRASS" -msgstr "GRASS" - -# 74c5f7d9794a4a3f84c6901a226566c0 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:201 -msgid "Label" -msgstr "Etiquettes" - -# f3e79549d81b428fb3fc1c3a30936570 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:203 -msgid "Raster" -msgstr "Raster" - -# 910102edc4e2453e94fbcadc0f8870fa -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:205 -msgid "Vector" -msgstr "Vecteur" - -# 51d47d1cc2464a0a998da7dba6899359 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:207 -msgid "" -"After removing these toolbars and moving them around, your tools should look " -"like this:" -msgstr "" -"Après avoir enlevé ces barres d'outils et en avoir déplacé, vous devriez " -"avoir ce type d'aspect:" - -# b978db020782432eb021555c50041a76 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:212 -msgid "" -"Even if they are not visible in a toolbar, all of your tools will remain " -"accessible via the menus. For example, if you remove the *File* toolbar " -"(which contains the *Save* button), you can still save your map by going to :" -"menuselection:`Project --> Save`." -msgstr "" - -# b6323fa58bfa40299cb646398b983ebc -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:216 -msgid "**Status Bar**" -msgstr "**Barre de statut**" - -# 5786f557add644dbbbbc87ada841993c -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:218 -msgid "" -"The status bar shows information about the current map. It allows you to " -"adjust the map scale and see the mouse cursor’s coordinates on the map." -msgstr "" - -# 415220bc091d484aa7a08bd9cd6846fb -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:224 -msgid "" -"The coordinates of this map are the same type of coordinates that are " -"recorded by GPS devices. The status bar show shows the longitude and " -"latitude of your mouse cursor." -msgstr "" - -# bbdf9ffcdd7b429ba0fcfda3fbd7cbb4 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:227 -#, fuzzy -msgid "" -"This may not all be clear right now, but as you progress in your knowledge " -"of GIS it will make more and more sense." -msgstr "" -"Cela peut être déroutant pour l'instant, mais à mesure que vous progresserez " -"dans votre compréhension des SIG cela vous apparaîtra familier." - -# 8f0ad5d88420438c8333006086b94f04 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:230 -msgid "3.4 Adding a Vector Layer" -msgstr "" - -# 2c06f5a365be4f688c8ff7f056c76eb7 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:232 -msgid "Now we will add an additional layer containing roads to our project." -msgstr "" -"Nous allons maintenant ajouter une couche vecteur contenant des routes à " -"notre projet." - -# c06f080caba648149f7b849231859db8 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:234 -msgid "Click on the :guilabel:`Add Vector Layer` button on the toolbar." -msgstr "" -"Clickez sur le bouton :guilabel:`Ajouter une couche vecteur` de la barre " -"d'outils." - -# 5c300d75a696404da2e9d47dbfee621e -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:239 -msgid "A dialog box will open. Click the :guilabel:`Browse` button." -msgstr "" - -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:244 -msgid "" -"Navigate to the file :file:`QGIS for Disaster Management/Sleman/" -"Jalan_Sleman_OSM.shp`. Select the file and click :guilabel:`Open`." -msgstr "" - -# 2ae2f773a6c74773bf42eea3f3dcde54 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:247 -msgid "" -"One of the most common file formats are **shapefiles**, which end with the " -"extension **.shp**. Shapefiles are often used to save geodata, and are " -"commonly used with GIS applications like QGIS." -msgstr "" - -# c5b81561d1b84dc8a0d67a8e2039d3c7 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:250 -msgid "" -"You should now see your new layer appear both in the map canvas and in the " -"layers panel. It should be drawn above both the district and railway layers." -msgstr "" - -# 4d78a3ebfa584b98aabe720f7e0f8aa7 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:257 -msgid "3.5 Basic QGIS Tools" -msgstr "" - -# 313a46994ed84d97bc1806467fd4f861 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:259 -msgid "" -"We’ve already taken a look at the QGIS toolbar and seen the tools for " -"opening a project and adding a new layer. Here’s a list of some other " -"commonly used tools. Feel free to play around with them if you like. The " -"important thing for now is to start getting familiar with QGIS." -msgstr "" - -# 2173753867d141dfb16481af79181647 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:265 -msgid "Toggle Editing" -msgstr "Bascule en mode édition" - -# 85dbf269140f43238d27deaf20252dad -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:265 -msgid "Edit features in a layer" -msgstr "Éditer un objet dans une couche" - -# 46d8e81096494df596b6b00643812873 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:267 -msgid "Pan Map" -msgstr "faire glisser la carte" - -# 6a0a8291ab874ec780513801c9b142ea -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:267 -msgid "Drag the map to a new location" -msgstr "" - -# 2afa330b2fa041a5be83c6278594305b -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:269 -msgid "Zoom In" -msgstr "Zoomer" - -# d4c5f74c38ab42709d02a917388a9207 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:269 -msgid "Zoom in on the map" -msgstr "" - -# f838591f5d2a4d8cbfc9e518fd4d00f6 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:271 -msgid "Zoom Out" -msgstr "Dézoomer" - -# 385df475910347e3aef9d2820444a054 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:271 -msgid "Zoom out on the map" -msgstr "" - -# b509eb6fa2474173a806117c41801186 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:273 -msgid "Zoom Full" -msgstr "zoomer sur l'ensemble des couches" - -# adc3bf53da6d4ca4918ce34d776769e3 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:273 -msgid "Zoom so that all layers fit in the map window" -msgstr "" - -# 22ffedc2380a4dc7913d0b2267f07014 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:275 -msgid "Open Attribute Table" -msgstr "Ouvrir la table d'attributs" - -# 03a9a37d56d34d12af6b20c434c8f945 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:275 -msgid "Open a layer’s attribute table" -msgstr "" - -# ef23ba8630474a57ad8fbcf2598b9e99 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:277 -msgid "Select Single Feature" -msgstr "" - -# 046bf362f9484879992a9b4350169a76 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:277 -msgid "Select a feature in the selected layer" -msgstr "" - -# 26ab9a9d1c354285885b05d5bb958173 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:281 -msgid "3.6 Navigating the Map" -msgstr "" - -# 8032ad77922842ada63cc4edf87db966 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:283 -msgid "" -"Before we examine the attributes of individual features, let’s take a quick " -"look at how to navigate the map. The main controls for moving the map around " -"and zooming in and out are by default on the panels at the top of QGIS." -msgstr "" - -# 55e801a95ee5491cae5f5c97565400fa -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:289 -msgid "" -"When you click on one of these buttons, it changes what you can do with your " -"mouse in the main map window." -msgstr "" -"Clicker sur l'un de ces booutons modifie ce que l'on peut faire avec la " -"souris sur la fenêtre principale, celle de la carte." - -# dc5bc276c8824eb4b5454f82e5983f9b -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:291 -msgid "" -"Select the first button that looks like a hand. Now hold the left mouse " -"button down and drag the mouse in the map window. This allows you to pan the " -"map, or move it around." -msgstr "" - -# def91eda80bb49d3884a1cdc132064dd -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:295 -msgid "" -"The button which has a plus sign below a magnifying glass allows you to zoom " -"in on the map. Select this button. Using your mouse, draw a box around an " -"area where you want to zoom in, and release your mouse." -msgstr "" - -# 74ea281c5c344f9e99f2e99a1e27705d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:299 -msgid "" -"The button which has a minus sign below a magnifying glass allows you to " -"zoom out on the map. Select this button and click on the map." -msgstr "" - -# 3f97c050cbb34c13b975e32128c618cd -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:302 -msgid "" -"The button that looks like a magnifying glass with red arrows pointing away " -"from it lets you zoom to the full extent of your map. Click this button to " -"see all of the data that is loaded in the project fit into the map canvas." -msgstr "" - -# d21588f26a06453fb177df5a68b9d1b9 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:306 -msgid "3.7 Managing Plugins" -msgstr "" - -# d1b620f566054e3daaf66f4acd357f55 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:308 -msgid "" -"QGIS has core functionality, which we will continue to explore in this " -"guide, but it also allows the use of additional **plugins**, which allow you " -"to add functionality to the software. Again, these plugins are free. To use " -"them, you simply need to connect to the internet and install. To install new " -"plugins, make sure you are connected to the internet. They first need to be " -"downloaded, and then activated. Some plugins are already downloaded and " -"available, and you can see them by going to :menuselection:`Plugins ‣ Manage " -"and Install Plugins`." -msgstr "" - -# 2e7a19a922c74edab7130c0decfb48a6 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:320 -msgid "" -"This displays a list of plugins that have already been downloaded and can be " -"activated. To enable a plugin, check the box next to it in this menu. For " -"now, let’s leave all the plugins as they are. We’re going to download and " -"activate a new plugin in the next section." -msgstr "" - -# e1cfc9ae021e4d23be7f4808a971ff6e -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:329 -msgid "3.7.1 Installing Plugins" -msgstr "" - -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:331 -msgid "" -"There are numerous plugins available, but they must first be downloaded. To " -"download a plugin, click the *Not installed* tab. This will load available " -"plugin repositories, and you will see a list of all available plugins for " -"download." -msgstr "" - -# 610a7f8b13b54906a16bcd0c13ade938 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:337 -msgid "" -"Note that plugins which have already been downloaded can be activated or " -"deactivated from the *Installed* tab. If it has not yet been downloaded, " -"downloading a plugin from the *Not installed* tab will automatically " -"activate it." -msgstr "" - -# d940f4fe66d04e4e95d17acff92c01ab -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:341 -msgid "3.7.2 The OpenLayers Plugin" -msgstr "" - -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:343 -msgid "" -"The OpenLayers plugin allows you to view various web maps as a layer in " -"QGIS. This means that you can access the OSM slippy map, Google Maps and " -"Bing Maps from QGIS directly. Follow along and we’ll see how this works." -msgstr "" - -# c427571556474817a8cc8f7d5a4ec76a -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:347 -msgid "" -"Go to :menuselection:`Plugins --> Manage and Install Plugins…` and click on " -"the :guilabel:`Not installed` tab. Type :kbd:`openlayers` into the Search " -"box." -msgstr "" - -# a53257f48c574bf9ad12e17473376316 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:353 -msgid "" -"Select :guilabel:`OpenLayers Plugin` from the list and click :guilabel:" -"`Install plugin`." -msgstr "" - -# a4914ea95fd24647b5056ab7b81c6406 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:358 -msgid "It may take a few minutes to download." -msgstr "" - -# 9af2e5ebb9ed465181b35630d0ec3c2c -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:363 -msgid "When the download finishes click :guilabel:`OK`." -msgstr "" - -# 81bc8bc3ac1e43fa9cc9a87d2ebe3735 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:368 -msgid "" -"Now the OpenLayers plugin is installed and activated. Click the :guilabel:" -"`Installed` tab to see it in your list of active plugins. Click :guilabel:" -"`Close` when you are finished." -msgstr "" - -# 21afc8285c474f09adab39cbe0c4ed4c -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:375 -msgid "" -"The new plugin provides a menu which offer extra functionality. Go to :" -"menuselection:`*Web --> OpenLayers plugin*` to see various map layers that " -"can be loaded." -msgstr "" - -# d4b65351a0f94d5c9b9f26c8699da35b -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:381 -msgid "" -"Go to :menuselection:`Web --> OpenLayers plugin --> Bing Maps --> Bing " -"Aerial`. A new layer called “Bing Aerial” will be added to the Layers panel, " -"and the imagery will load in the map canvas. If the layer is above your " -"other layers, drag it to the bottom of the layers list." -msgstr "" - -# fba2ca061a014088975d2d2c928c7f62 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:388 -msgid "Your project should now look like this:" -msgstr "" - -# 2a3552bf99914b4db8bdfb0e0cf235ef -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:393 -msgid "" -"If you pay attention, there is something wrong with the maps. Can you guess " -"what it is? All three layers above Bing Aerial layers should be shown on the " -"map." -msgstr "" - -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:397 -msgid "" -"To fix this, go to :menuselection:`View --> Panels` and check the box next " -"to :guilabel:`Layer Order Panel`." -msgstr "" - -# 5c4cbab1e21e4a31a38258470bb2ff62 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:402 -msgid "" -"The Layer order panel will appear next to Layers panel (1). Click that panel " -"and uncheck :guilabel:`Control Rendering Order` (2)." -msgstr "" - -# 943e04802824429ababcf7a590ca3983 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:408 -msgid "" -"Return to the Layers panel. The map should appear in correct order. All " -"layers above Bing Aerial will show up on the map canvas as in the image " -"below." -msgstr "" - -# 0e07bb2d2bb54abcab712ebaa16391ee -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:414 -msgid "" -"Adding a layer such as Bing Aerial will change the Coordinate Reference " -"System, or CRS, of your project. Essentially this means that your project is " -"not using longitude and latitude coordinates anymore. This shouldn’t affect " -"you right now, but it will make sense later when we cover CRSes." -msgstr "" - -# b583aa39f8c44c8c8c87f0c3f943de54 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:418 -msgid "" -"If the map data does not appear to match up correctly with the aerial " -"imagery, it may be due to different CRSes. You can fix this problem by going " -"to :menuselection:`*Project --> Project Properties*` and checking the box " -"next to *Enable ‘on the fly’ CRS transformation*." -msgstr "" - -# 29fd800d4724442081e1bef5206e8a60 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:428 -msgid "" -"Great! Now we can see our map data on top of an aerial photograph of the " -"earth. Note that this is the same imagery provided by Microsoft Bing that " -"you would load for editing in JOSM. Try unchecking the box next to the " -"layer :guilabel:`Kecamatan Sleman` so that you can see the area better. Zoom " -"in close to see detailed imagery with our street and railway layers " -"displayed on top." -msgstr "" - -# 6781502b7d1d473e8964f90315f39900 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:436 -msgid "" -"Remove the Bing Aerial layer by right-clicking it in the Layers panel and " -"clicking :guilabel:`Remove`." -msgstr "" - -# dcfdd1bdf26f4f089a220686bdd52ca6 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:438 -msgid "" -"Try out other layers that are available to you from the :menuselection:`Web " -"--> OpenLayers plugin` menu.." -msgstr "" - -# 59eb1c577d42480c8391753f651f9967 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:441 -msgid "3.7.3 Install InaSAFE Plugin" -msgstr "" - -# 8be92d5b2b91410e960b9926f9a3e7c5 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:443 -msgid "Now, we are going to install InaSAFE plugin." -msgstr "" - -# 3d7c89f0c7d34767bf7f573a25ad6b98 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:445 -msgid "Go to :guilabel:`Plugins Manage and install plugins` menu" -msgstr "" - -# 3795609a9dbb43e19cf65a0fe2f9da0a -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:450 -msgid "Go to the Search box and type :kbd:`“inasafe”`" -msgstr "" - -# db828777f983414eac8103f77f73117e -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:455 -msgid "" -"Select InaSAFE and click :guilabel:`Install plugin` and wait for a moment " -"until a pop-up notification showing that plugin has installed successfully." -msgstr "" - -# 401ddb407989462ca775b2a88f8772d4 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:460 -msgid "" -"Close the plugin manager window and we will learn about InaSAFE later in " -"Chapter 8." -msgstr "" - -# 372140b0e2e34580b158d568485bd96d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:462 -msgid "" -"Now you already know basic QGIS from installation, understand QGIS layout, " -"learning useful toolbar and basic operation in QGIS. You also already learn " -"about how to install InaSAFE, a plugin that we will learn more in the last " -"chapter of this module." -msgstr "" - -# 65bf9722093b493db85378cbdd7651b2 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:465 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-04-Map_Projection_Basic.po b/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-04-Map_Projection_Basic.po deleted file mode 100644 index de32c2bc..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-04-Map_Projection_Basic.po +++ /dev/null @@ -1,572 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:03+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 650c8d038b024dd689c0421908f46302 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:6 -msgid "Chapter 4: Map Projection Basics" -msgstr "" - -# e8940f9abaf442cda52e6de487cb0e98 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 34fc289c9907414d95e7f4d096ee1059 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:10 -msgid "Understand Coordinate Reference Systems (CRS)" -msgstr "" - -# 9657973d4b1b4c3fa183885e2ec57011 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:12 -msgid "Identify the CRS of a vector dataset" -msgstr "" - -# a50d718657f249fdbaaacdc2982fd8cb -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:14 -msgid "Doing “on the fly” reprojection" -msgstr "" - -# a6064ab708824b7ab39408ab0106f3f6 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:16 -msgid "Save dataset with a different CRS" -msgstr "" - -# 8cde9447b4714be4b13b1ef10e1b8cfc -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:18 -msgid "Georeference Digital Image" -msgstr "" - -# a1f90422924f4b17affcee6e01c177ad -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:20 -msgid "" -"We’ve talked a little bit about Coordinate Reference Systems (CRSs) " -"previously, but haven’t covered it in depth. In this chapter, we’ll look " -"more at what a CRS means practically, and how it affects our work in QGIS." -msgstr "" - -# 9de4f55848fe4c2a88a8ba57d4b126c6 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:25 -msgid "4.1 Coordinate Reference System (CRS)" -msgstr "" - -# 5efb75376026417faa06133cb7ef7464 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:27 -msgid "" -"The CRS that all the data as well as the map itself are in right now is " -"called WGS84. This is a very common Geographic Coordinate System (GCS) for " -"representing data. But there’s a problem, as we will see." -msgstr "" - -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:31 -msgid "" -"Open the project :file:`Chapter_4_Map Projection.qgs`, located in the :file:" -"`QGIS for Disaster Management/` folder" -msgstr "" - -# 4549bd672dc74eebba41eda611793cf6 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:33 -msgid "Zoom in to Indonesia by using the :guilabel:`Zoom In tool`." -msgstr "" - -# 19269dd9681f4b91bab767503120c6cc -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:38 -msgid "" -"Setting the scale in the Scale field, which is in the Status Bar along the " -"bottom of the screen. While over Indonesia, set this value to 1:20000000 " -"(one to twenty million)." -msgstr "" - -# 6dfab1444f4d4a52a25c7ad4b3ff9c64 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:44 -msgid "Now pan around the map while keeping an eye on the Scale field." -msgstr "" - -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:46 -msgid "" -"Notice that the scale is changing? That’s because you’re moving away from " -"the one point that you zoomed into at 1:20000000, which was at the center of " -"your screen. All around that point, the scale is different." -msgstr "" - -# d34225e296d749e48019331bd4426ebe -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:49 -msgid "" -"To understand why, think about a globe of the Earth. It has lines running " -"along it from North to South. These longitude lines are far apart at the " -"equator, but they meet at the poles. In a GCS, you’re working on this " -"sphere, but your screen is flat. When you try to represent the sphere of the " -"earth on a flat surface, it becomes distorted, as if you took an orange peel " -"and tried to flatten it. What this means on a map is that the longitude " -"lines stay equally far apart from each other, even at the poles (where they " -"are supposed to meet). This means that, as you travel away from the equator " -"on your map, the scale of the objects that you see gets larger and larger. " -"What this means for us, practically, is that there is no constant scale on " -"our map!" -msgstr "" - -# 9a28b05aba984dd5af8792af65baffab -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:60 -msgid "" -"To solve this, we’ll use a Projected Coordinate System (PCS) instead. A PCS " -"“projects” or converts the data in a way that makes allowance for the scale " -"change and corrects it. Therefore, to keep the scale constant, we should " -"reproject our data to use a PCS." -msgstr "" - -# d1aceabec50b4d2395641a323182ae1f -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:64 -msgid "" -"**Projection** is the act of taking coordinates on a sphere (like the " -"earth), and manipulating them so that they can be displayed on a flat " -"surface." -msgstr "" - -# ebb3f650b4a64174830a41760c7371aa -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:68 -msgid "4.2 “On the Fly” Reprojection" -msgstr "" - -# c252803819ec4ab9a71996a4f5dc133f -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:70 -msgid "" -"Every QGIS project has a CRS, and each of the data layers have a CRS too. " -"Often these are the same. Your project may be in WGS84, and the layers too. " -"But sometimes you will add a layer that is not in the same CRS as the " -"project, and you need QGIS to convert it so that it can be displayed along " -"with the rest of the data. The term that we use for this is reprojecting *on " -"the fly*." -msgstr "" - -# 314b68b49e4c41f8be1a1ffef2a8b4d4 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:76 -msgid "" -"To enable “on the fly” projection, click on the :guilabel:`CRS` Status " -"button in the Status Bar along the bottom of the QGIS window:" -msgstr "" - -# 93a0129bb9974f4da7c80831abe53247 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:82 -msgid "" -"In the dialog that appears, check the box next to :guilabel:`Enable ‘on the " -"fly’` CRS transformation." -msgstr "" - -# f7cfd9835957403489db5cdaff42cea6 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:87 -msgid "" -"Type the :kbd:`NSIDC` into the Filter field. One CRS :guilabel:`NSIDC EASE-" -"Grid Global` will appear in the list below." -msgstr "" - -# b97a531336bf459eb749a197730a6ab2 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:92 -msgid "Click on it to select it, then click :guilabel:`OK`." -msgstr "" - -# eafc74cbad824c538215f098179061ad -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:94 -msgid "" -"Notice how the shape of Indonesia changes. All projections work by changing " -"the apparent shapes of objects on Earth." -msgstr "" - -# 3e64fcb76ab448b6a9afc226ead01676 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:96 -msgid ":guilabel:`Zoom in` to a scale of 1:20000000 again, as before." -msgstr "" - -# 56917aa1525041119b3ea6830950c55a -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:98 -msgid ":guilabel:`Pan` around the map." -msgstr "" - -# 56c871df3d3c47fcabbffe57e084318f -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:100 -msgid "Notice how the scale stays the same!" -msgstr "" - -# 315fa2e4218f4dd6a8ed6a9f73dd48a7 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:102 -msgid "" -"'On the fly' reprojection is useful for combining datasets that are in " -"different CRSes." -msgstr "" - -# aba1801d8c59445ebac2ff9ff8eda1aa -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:104 -msgid "" -"Deactivate “on the fly” reprojection again, by unchecking the box next to :" -"guilabel:`Enable ‘on the fly’` CRS transformation." -msgstr "" - -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:106 -msgid "" -"Now let’s add another vector layer, located in :file:`QGIS for Disaster " -"Management/peta_dunia/Indonesia.shp`. What do you notice? The layer isn’t " -"visible! But that’s easy to fix,right?" -msgstr "" - -# 95ae0ee7f8374961acf41ba4e96a6ec5 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:108 -msgid "Right-click on the layer in the Layers list." -msgstr "" - -# 5aaf1bc28b9841969ae6eaa6e0e4d055 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:110 -msgid "Select :guilabel:`Zoom to Layer Extent`." -msgstr "" - -# 9572f950834a40648a556b765bb0d8ce -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:112 -msgid "OK, so now we see Indonesia... but where is the rest of the world?" -msgstr "" - -# 34babd0159c54211be8ab2ac57a921a4 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:114 -msgid "" -"It turns out that we can zoom between these two layers, but we can’t ever " -"see them at the same time. That’s because their Coordinate Reference Systems " -"are so different. The **continents** layer is in degrees, but the " -"**Indonesia** layer is in meters. In other words, one feature in the " -"continents layer might be 8.5 degrees away from the equator, but the same " -"feature in the Indonesia layer might be 900000 meters away from the equator." -msgstr "" - -# abfe11900b254bb49eaeaffaebd9325d -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:120 -msgid "" -"8.5 degrees and 900000 meters is about the same distance, but QGIS doesn’t " -"know that! One of our layers must be reprojected to match the other layer." -msgstr "" - -# 2df4a6b070734ef9b1a258575a3b95ab -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:123 -msgid "To correct this:" -msgstr "" - -# f58e9abbbb0143ebb18cc4e567958aed -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:125 -msgid "" -"Switch :guilabel:`Enable ‘on the fly’` CRS transformation on again as before." -msgstr "" - -# 7e8986e0da8f4461a09e90ef78c23a6c -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:127 -msgid "Zoom to the extents of the Indonesia dataset." -msgstr "" - -# a4a931b9f5754c069047e0444579a602 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:129 -msgid "" -"Now, because they’re made to project in the same CRS, the two dataset fit " -"perfectly:" -msgstr "" - -# 45fc5f31e34e49f7903ddc7e7d8fe3f2 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:134 -msgid "" -"When combining data from different sources, it’s important to remember that " -"they might not be in the same CRS. 'On the fly' reprojection helps you to " -"display them together." -msgstr "" - -# 70e6005558be4aa585cb98ec93e22ac6 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:138 -msgid "4.3 Dataset with different CRS" -msgstr "" - -# 5f63505751824cf287e5613e49adb82f -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:140 -msgid "" -"It’s great that QGIS can reproject layers on the fly so that we can work " -"with them in the same project. But this requires more time for our computer " -"to reproject the layers, and can slow down our work. For this, or for other " -"reasons, we might want to be able to reproject a dataset, and save it with " -"the new projection." -msgstr "" - -# b162d5d1d7c44cd2bdcee6d96960de63 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:145 -msgid "" -"Let’s reproject the :guilabel:`Indonesia` layer so that it is in the same " -"CRS as the project. To do this, we will need to export the data to a new " -"file using a new projection." -msgstr "" - -# 0963b0e1d71349aaa52cf4526520b8d2 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:148 -msgid "Right-click on the :guilabel:`Indonesia` layer in the Layers list." -msgstr "" - -# 1f3053a324d245ebaea4684741ecd36e -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:150 -msgid "" -"Select :guilabel:`Save As...` in the menu that appears. You will be shown " -"the :guilabel:`Save vector layer as...` dialog." -msgstr "" - -# 0c7fcdddd2aa4c73a873505f0a2096df -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:152 -msgid "Click on the :guilabel:`Browse` button next to the Save as field." -msgstr "" - -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:154 -msgid "" -"Navigate to :file:`QGIS for Disaster Management/peta_dunia/` and specify the " -"name of the new layer as :kbd:`Indonesia_terproyeksi.shp`." -msgstr "" - -# 773633dea2f94f5fa9efa765a35c063e -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:156 -msgid "Leave the :guilabel:`Encoding` unchanged." -msgstr "" - -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:158 -msgid "" -"Change the value of the Layer CRS dropdown by clicking on :guilabel:`Select " -"CRS` icon in the right panel." -msgstr "" - -# 5e849479f22e44369d43bc0ededf23bd -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:164 -msgid "" -"A :guilabel:`Coordinate Reference System Selector` window will appear. Type :" -"kbd:`4326` in :guilabel:`Filter Box`" -msgstr "" - -# a541d4c269aa43c18796959c26539205 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:164 -msgid "and select :guilabel:`WGS 84` in the bottom side of the window." -msgstr "" - -# b93aa44043bc47eda51d4a04b34c0704 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:169 -msgid "Click :guilabel:`OK`. You will back to :guilabel:`Save As…` window." -msgstr "" - -# c4468f602b20474ca4a41f91c797d571 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:171 -msgid "Check the box next to :guilabel:`Add saved file to map`." -msgstr "" - -# 464a4addf0b148f2a1e4069511ef1ec7 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:173 -msgid "The :guilabel:`Save vector layer as...` window now looks like this:" -msgstr "" - -# 0e3152719f4141c9baeaf5f6e887321b -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:178 -msgid "" -"Click :guilabel:`OK` and after a minute, you should be presented with a " -"notification above map canvas telling that the process is finished." -msgstr "" - -# a70c6d216e264e278c87d0cde742fc49 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:180 -msgid "" -"Now your new layer, :guilabel:`Indonesia\\_terproyeksi`, will be shown in " -"the layers panel. If you turn off :guilabel:`on the fly` reprojection, this " -"layer will still be shown correctly, because it has been reprojected into " -"the same CRS as the project (and the :guilabel:`continents` layer)." -msgstr "" - -# fd4270a37aa6426989aebec5322a86d7 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:185 -msgid "4.4 Georeferencing Scanned Image" -msgstr "" - -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:187 -msgid "" -"Georeference is the process of associating a physical map or raster image of " -"a map with spatial locations and may be applied to any kind of object or " -"structure that can be related to a geographic location, such as point of " -"interest, roads, places, bridges, or buildings. Georeferencing is crucial to " -"enable aerial or satellite imagery and also raster images to be overlayed " -"with other spatial data, like vector data and raster data." -msgstr "" - -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:193 -msgid "" -"To georeference an image, we need to establish point with geographic " -"coordinates in these point, known as control points. This control point " -"refer to actual position of objects on Earth. These coordinates are obtained " -"by doing field survey. For example, we need to georeference an aerial image " -"and we know location an object in aerial image with exact location on Earth. " -"To georeference this, simply input the control points with coordinates that " -"we know from field survey. We need 4 control points or more to georeference " -"the image." -msgstr "" - -# 4386da2f1ab94c36a563883469e1df04 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:200 -msgid "" -"Let’s start to georeference an image that we got from `Geospasial BNPB " -"`_." -msgstr "" - -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:202 -msgid "" -"Georeferencing in QGIS is done via the :guilabel:`Georeferencer GDAL` " -"plugin. This is a core plugin - meaning it is already part of your QGIS " -"Installation. You just need to enable it. Go to :menuselection:`Plugins --> " -"Manage and Install Plugins…` and enable the Georeferencer GDAL plugin in the " -"Installed tab." -msgstr "" - -# 2f59826534ae44acb8d5485cafe1db56 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:206 -msgid "Go to :menuselection:`Raster --> Georeferencer --> Georeferencer…`." -msgstr "" - -# 17b049c26ba04d6a965768aa92e9f3d3 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:208 -msgid "" -"A new window will appear. Click :guilabel:`Open Raster` icon in upper left " -"side of the window." -msgstr "" - -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:213 -msgid "" -"Select :file:`QGIS for Disaster Management/Sleman/Merapi/" -"peta_krb_merapi_2002.jpg` and click :guilabel:`Open`." -msgstr "" - -# f84e77cbaa6a4a0395196a72f5ca6cc0 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:215 -msgid "" -"In Coordinate Reference System Selector type :kbd:`4326` in filter box and " -"select :guilabel:`WGS 84` as CRS." -msgstr "" - -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:217 -msgid "An image will appear in Georeferencer Window." -msgstr "" - -# 583d4e2f98104c32970dcdeb4a2cac8f -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:219 -msgid "" -"You can use the :guilabel:`zoom/pan` controls in the toolbar to learn more " -"about the map." -msgstr "" - -# 486b0be878454eb8a0d2ad63ae716c50 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:224 -msgid "" -"If you look closely, you will see coordinate grid with markings. Using this " -"grid, you can determine the X and Y coordinates of the points where the grid " -"intersect. Click on :guilabel:`Add Point` in the toolbar." -msgstr "" - -# 0ed61d121f0a43aab7c7dceb81d15764 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:234 -msgid "A new pop-up window will appear, enter the coordinates." -msgstr "" - -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:232 -msgid "" -"For Indonesia enter X for Bujur (BT) and Y for Lintang (LS). Click :guilabel:" -"`OK`. It can use decimal degree (dd,dd), projected coordinates/UTM (mmmm," -"mmm) and degree minutes seconds (dd mm ss,ss) format. **Don’t forget to put " -"Negative ( - ) in Y/North value for area in the South part of equator**." -msgstr "" - -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:239 -msgid "" -"Notice that GCP table in the bottom of window has a row with detail of your " -"first GCP." -msgstr "" - -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:241 -msgid "" -"Now, let’s add at least 4 GCPs that covers entire image. More GCP’s points " -"will result to a more accurate image." -msgstr "" - -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:246 -msgid "" -"After inputting 4 or more points, click :guilabel:`Transformation Setting` " -"in toolbar." -msgstr "" - -# 94dbf800bec143bca676a2bb6c1069ad -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:248 -msgid "" -"Right click the entry in :guilabel:`GCP Table` to delete the GCP Point or " -"select :guilabel:`Delete Control Point` tool in toolbar above the image, " -"then use it to click on the Control Point in either the GCP table or " -"Workspace Window" -msgstr "" - -# 837da4e4faf349db8e75fac10ac19435 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:255 -msgid "" -"The Transformation Setting Window is displayed. Follow all setting like this:" -msgstr "" - -# bebb058662ce4219b80a45ffdcea2a19 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:260 -msgid "" -"In QGIS there are several method s for transforming the image, these are " -"linear, Helmert, the 1\\ :sup:`st`, 2\\ :sup:`nd` and 3\\ :sup:`rd` order " -"polynomials, and the thin plate spline. These different Transformation " -"Methods interpret your Control Point in different ways, and control how the " -"map is fitted and warped to your georeferenced base map." -msgstr "" - -# d0017358c3dd4216b2d09c6138f6f6a8 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:265 -msgid "" -"For best fit, the thin-plate spline or higher-number polynomial " -"transformations are often best. Its look like a true rubber sheeting method, " -"transforms the source Control Point exactly to the target Control Points, " -"and optimize for local accuracy opposed to global accuracy." -msgstr "" - -# 47aeaf15012f417a88e12b8d1e88e23e -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:270 -msgid "" -"To finish and export your georeferenced map, click the :guilabel:`Start " -"Georeferencing` button" -msgstr "" - -# 47cc919c702f4f9e8f43ecbbef9da6fd -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:270 -msgid "in the :guilabel:`Main Toolbar` at the top of the QGIS Workspace." -msgstr "" - -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:275 -msgid "" -"The Georeferencing is now complete. The georeferenced layer will be loaded " -"in QGIS Map Canvas." -msgstr "" - -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:280 -msgid "" -"Knowing how to georeference is important when we want to digitize from a " -"paper map or an image that is not already georeferenced. Once the image is " -"georeferenced like this, it can be used at the same digitization techniques " -"that we will learn later. In the next chapter, we will create vector " -"shapefiles that can be used in QGIS and InaSAFE." -msgstr "" - -# 8a98b9c7e07d40d48ecfb01d38d8bdca -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:284 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-05-Working_with_Vector_Data.po b/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-05-Working_with_Vector_Data.po deleted file mode 100644 index d20b1a2a..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-05-Working_with_Vector_Data.po +++ /dev/null @@ -1,1698 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:02+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# fdbcaa6303d944ba912f5f8778021bfc -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:6 -msgid "Chapter 5: Working with Vector Data" -msgstr "" - -# ae86270fc9f54ff08af04c31f0227c50 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 2e9bd6d06a7e44e9bc76e95b4b893281 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:10 -msgid "Understand vector data" -msgstr "" - -# 271f8600f3a1426aa5af183b3f416b4b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:11 -msgid "Identify attribute of vector data" -msgstr "" - -# b676d51b467e4dafb529876becd93985 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:12 -msgid "Create vector data" -msgstr "" - -# 08f67a4cbcd3401fbea6f81fe8b70cdf -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:13 -msgid "Add vector layers" -msgstr "" - -# aeb03e9776cd4cd08feaeaf117846ffa -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:14 -msgid "Symbolize vector layers" -msgstr "" - -# ae5658b0ca13407bbaaddbd7104f88b5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:15 -msgid "Add labels to vector layers" -msgstr "" - -# d1da7a15111f4ede836012907bd72f88 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:17 -msgid "" -"In this chapter, we will learn what is meant by vector data. We will " -"practice adding it to our QGIS projects, and we will learn how to style the " -"data in different ways." -msgstr "" - -# 930af21720534ba7b1e8a5c052f85d36 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:21 -msgid "5.1 Vector Data" -msgstr "" - -# 84ab037ec78c485fa1fc13a904f3f04e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:23 -msgid "" -"Vector data is the most common type of data found in GIS. A vector is " -"essentially something in the form of a dots, or lines connecting those dots. " -"In other words, points, lines, and polygons are all **vectors**. (curved " -"lines are vectors too, but we won’t worry about that for now) We are already " -"quite familiar with vector data because in the previous unit, we used JOSM " -"to create it!" -msgstr "" - -# e42ad942f86e42fea2921a347ed2d349 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:31 -msgid "" -"Each object in a vector dataset is referred to as a feature. When we are " -"using JOSM we often refer to them as objects, but in traditional GIS " -"terminology they are features. A polygon that represents a building is a " -"feature, as is a line that represents a river. Each feature has a geographic " -"location, and is attached to other data that describe the feature." -msgstr "" - -# 36fb0bdf2c8c43c59af5773cd85dc4a8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:36 -msgid "" -"One important thing to note is that QGIS layers can only contain one type of " -"feature. That is, one layer can’t contain both point features and line " -"features, because they are different types of data. Hence if you have a file " -"that contains school polygons and another file that contains school points, " -"you would add them as two separate layers." -msgstr "" - -# 9f4df6a0cef7484e81c824a68267e7eb -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:40 -msgid "" -"Almost always, polygon layers will be at the bottom of your layer list, line " -"layers in the middle, and point layers at the top. You don’t generally want " -"your polygons overlapping your lines and points." -msgstr "" - -# 23590e989ffd417c832e2c3ae510d9d3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:44 -msgid "5.2 Attribute Data" -msgstr "" - -# 97dfc9466ded4aa3a51123a7d9315038 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:46 -msgid "" -"It’s important to know that the data you will be working with does not only " -"represent where objects are in space, but also tells you what those objects " -"are." -msgstr "" - -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:49 -msgid "" -"Open the project :file:`Chapter_5_Working with vector.qgs`. This is the same " -"project that you worked with previously." -msgstr "" - -# 80c2e58ba44c48df953ab1e1d8b477e6 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:51 -msgid "Close the InaSAFE panel if you still have it open." -msgstr "" - -# 91988c2483d34f24a1a930feb6304acf -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:53 -msgid "" -"You can see in your project the position of Sleman districts, the railway, " -"and some roads, but you can’t see all of the data contained in those layers." -msgstr "" - -# cc29088d7b4c4468aff6330fb61ae4d2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:56 -msgid "Select :guilabel:`Jalan_Sleman_OSM` in the layers list." -msgstr "" - -# bbe7a49c38cb4420b599d2ee30629d71 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:61 -msgid "Click the :guilabel:`Open Attribute Table` button:" -msgstr "" - -# 49cf458407854185b4ee9945677e18eb -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:66 -msgid "" -"You will see a table with more data about the streets layer. This extra data " -"is called **attribute data**. The lines that you can see on your map " -"represent where the streets go - this is the **spatial data**. You will " -"remember in JOSM that there was the same division. The points, lines, and " -"shapes you drew tell us **where** , but the tags, or attributes, tell us " -"**what**. These definitions are commonly used in GIS, so it’s essential to " -"remember them!" -msgstr "" - -# 5438303de3f1437c9df7fb61749f7bb0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:75 -msgid "" -"Take a look at the attribute table. Each row in the table is associated with " -"one feature in the streets layer. Each column contains one of the " -"attributes. If you select other layers and click on the :guilabel:`Open " -"Attribute Table` button, you’ll see different tables." -msgstr "" - -# e4e2a68e63a7424b813db3064857f507 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:79 -msgid "Close the attribute table." -msgstr "" - -# 2dab9df2574c4d47a9b84c347d75a8b9 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:82 -msgid "5.3 Creating Vector Data" -msgstr "" - -# a303ecfe5f2f4e23b41da173173fb703 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:84 -msgid "" -"Before you can add new vector data, you need a vector dataset (a layer to " -"add it to). In our case, we’ll begin by creating a new data layer, and then " -"we will discuss how to edit existing vector layer in QGIS, and how to create " -"an entirely new dataset." -msgstr "" - -# 69fc3c7b0a974866a68e3b58b02bafb4 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:88 -msgid "" -"Create a new project in QGIS by clicking on the :guilabel:`New Project` icon." -msgstr "" - -# 75fe83dfb47b43628ee5725ce7b701d7 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:90 -msgid "" -"Go to :menuselection:`Layer ‣ Create Layer ‣ New Shapefile Layer`. You’ll be " -"presented with the following dialog:" -msgstr "" - -# 5e8735fe015044c7b958a1a2361c1345 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:95 -msgid "" -"At this point we must decide what kind of dataset we want to create. " -"Remember that a data layer can only contain feature of points, lines, or " -"polygons – never a mix. When we create the layer, we must define what type " -"of data it will contain." -msgstr "" - -# cc3d8b093c0c471283d01305bd7b448a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:99 -msgid "" -"Since polygon are made up of points and lines. Let’s jump into polygons. " -"Once you’ve mastered this, creating a point or a line should be easy!" -msgstr "" - -# 2e432204445442e79b4abe48af5b827b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:102 -msgid "Check the box next to **Polygon**." -msgstr "" - -# db6da8583bf34cfe9469aa90ec0f0564 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:107 -msgid "" -"We’ll specify the Coordinate Reference System (CRS) in the next box. By " -"default the box will contain the CRS of the project, which for us will be " -"WGS84. This is a widely used and very useful CRS, so let’s stick with it!" -msgstr "" - -# 2218a6ce00f340a0a19a76612d9b63ac -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:113 -msgid "" -"When we create our new layer, the attribute table will only have one column " -"by default - **id**. This attribute contains a unique id number for every " -"feature. We can add additional fields to the attribute table now, when we " -"create the layer. Let’s add a name field." -msgstr "" - -# f29caf87b3ee462e8ccae87987795f16 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:117 -msgid "" -"Type :kbd:`keterangan` into the boxt next to Name. The setting should match " -"those shown here:" -msgstr "" - -# abb81867968b438bbde11bfd722b51ea -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:122 -msgid "" -"Click the :guilabel:`Add to attributes list` button. Your attributes list " -"should now look like this." -msgstr "" - -# b40bfdca83ab47e5a27fcdce4ab80911 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:127 -msgid "Click :guilabel:`OK`. A save dialog will appear." -msgstr "" - -# cb5f5add1a7345149f24f4f4e466fd8a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:129 -msgid "Navigate to a directory of your choosing." -msgstr "" - -# 18d7b7da88dc48b1b1e595e390ada357 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:131 -msgid "Save the new layer as :file:`krb_merapi.shp`." -msgstr "" - -# dc91affbf64e4b52b44a785f9b2c4b10 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:133 -msgid "The new layer should appear in your Layer panel." -msgstr "" - -# bcfd7c5eb69a4c3b94d91dea92c5785c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:135 -msgid "" -"Shapefile is a commonly used geographic file format. It can easily be " -"converted into other formats, and most GIS software can read this type of " -"file." -msgstr "" - -# d4bd18fb6371409fb0029362a72ecd4e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:139 -msgid "5.3.1 Digitising Vector Data" -msgstr "" - -# 57ef212fe38d4d54b78cd989b666ac74 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:141 -msgid "" -"Digitising, as you might have guessed, is the art (or science) of creating " -"digital vector data from another source, such as a raster image. In order to " -"begin digitising, we must firt enter edit mode. GIS software commonly " -"requires a separate mode for editing, to prevent user from accidentally " -"editing or deleting important data. Edit mode is switched on or off " -"individually for each layer." -msgstr "" - -# c01692ac8a4c4bfa84457ca86abbbfc8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:146 -msgid "" -"Open raster layer :file:`peta_krb_merapi_2002_modified.tif` in left QGIS " -"toolbar:" -msgstr "" - -# 59c18eb325aa426fa17f790efcff0625 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:151 -msgid "Open vector layer :file:`krb_merapi.shp`:" -msgstr "" - -# a5096ca22b4b401a91642df8fea00459 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:156 -msgid "Select :file:`krb_merapi.shp` in the Layers panel." -msgstr "" - -# f6ef841b6baf4a8eb1bf317be0c8f894 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:158 -msgid "Click on the :guilabel:`Toggle Editing` button:" -msgstr "" - -# 30dff679b593477da5b71da709ffcb88 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:163 -msgid "" -"If you can’t find this button, ensure that the Digitising toolbar is " -"enabled. There should be a check mark next to the :menuselection:`View ‣ " -"Toolbars ‣ Digitizing` menu entry." -msgstr "" - -# 4fe8f049a6c24792aaab21c8382a1531 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:166 -msgid "One you are in edit mode, the digitising tools will become active:" -msgstr "" - -# 2fbcc3e10b9f45738d502266af08894d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:171 -msgid "From left to right on the image above, they are:" -msgstr "" - -# 93fb5ca6ffa9447d9ae751cf1d7ecb96 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:173 -msgid "**Toggle Editing**: activates / deactivates edit mode." -msgstr "" - -# f64cefd899c04ca080fce957aa795160 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:174 -msgid "**Save Layer Edits**: saves changes made to the layer." -msgstr "" - -# a1493dc4b41644b8a533a1f5bc672ec5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:175 -msgid "**Add Feature**: start digitising a new feature." -msgstr "" - -# 3f9fb0f6a8fa443399a846e2fa16fbb2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:176 -msgid "**Move Feature(s)**: move an entire feature around." -msgstr "" - -# 30814e3dbf4f48d8a61e6c4543dccbe8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:177 -msgid "**Node Tool**: move only one part of a feature." -msgstr "" - -# 4b3af2da2eef4a38b1b6c6b939842de8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:178 -msgid "" -"**Delete Selected**: delete the selected feature (only active if a feature " -"is selected)." -msgstr "" - -# 666f4f63744e44cb884e97af43b1dec4 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:179 -msgid "" -"**Cut Features**: cut the selected feature (only active if a feature is " -"selected)." -msgstr "" - -# aa9c9068ecd14cadb74bc73ba88e616c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:180 -msgid "" -"**Copy Features**: copy the selected feature (only active if a feature is " -"selected)." -msgstr "" - -# 6f183f0fca194e389227e46949f474fe -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:181 -msgid "" -"**Paste Features**: paste a cut or copied feature back into the map (only " -"active if a feature has been cut or copied)." -msgstr "" - -# a364d611e0b8426f90a9e4ba6b0bc30e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:184 -msgid "" -"Before you start digitising, go to :menuselection:`Setting ‣ Snapping " -"Options…`" -msgstr "" - -# ae4a628c769e49f1ace57bd7ebd6847c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:186 -msgid "" -"Change Snapping mode to **Advanced**, and check **krb_merapi** layer with " -"Mode **to vertex and segment** and Tolerance value is 1 and then set Units " -"to pixels:" -msgstr "" - -# 0763335270a044b0b054c70e2cbf8081 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:192 -msgid "" -"It’s important to check Avoid intersection if you want to create a polygon " -"with each feature snap each other." -msgstr "" - -# 2362bc79f8e843d0b621b53458d3f2d8 -# 4f738611aff843cf82a2e03ec5ebf6d1 -# 53a7690db51e41bbb958759f6f1974ee -# 89de36e070ea412eb05007fb8bbbf66a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:195 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:223 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:405 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:454 -msgid "Click :guilabel:`OK`." -msgstr "" - -# a21cfc30444b4fd8aa311a9d20943b6d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:197 -msgid "" -"Let’s add new feature. Click on the :guilabel:`Add Feature` button to start " -"digitising:" -msgstr "" - -# 3b2f479cf4514db686126a4bda018ff5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:202 -msgid "" -"You’ll notice that your mouse cursor become a crosshair. This allow you to " -"more accurately place the points you’ll be digitising. Remember that even as " -"you’re using the digitising tool, you can zoom in and out on your map by " -"rolling the mouse wheel, and you can pan around by holding down the mouse " -"wheel and dragging around in the map.*" -msgstr "" - -# 5650e284c0f1436c96691fdbb48ac008 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:207 -msgid "" -"Start by clicking on a point somewhere along the edge of the dark pink area." -msgstr "" - -# 735ca832628a4dc0b38e77f9ee087bd7 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:209 -msgid "" -"Place more points by clicking further along the edge, until the shape you’re " -"drawing completely covers the field. This is very similar to drawing a " -"polygon in JOSM." -msgstr "" - -# d38589b89386490385a50d8743b91c2e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:215 -msgid "" -"To place the last point, right-click where you want it to be. This will " -"finalise the feature and bring up the Attribute form filling dialog." -msgstr "" - -# 50beeb5b958744dea05028901ca2c3c2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:218 -msgid "Fill in the values as shown here:" -msgstr "" - -# 31336a0df33b41aca12685b38ea9b6ca -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:225 -msgid "" -"If you make a mistake while digitising a feature, you can always edit it " -"later. Simply finish digitising the feature and then follow these steps:" -msgstr "" - -# d779cd7722784a7085e6ffb7e14ba85d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:228 -msgid "Select the feature with the :guilabel:`Select Feature` tool:" -msgstr "" - -# 756b437eb3c44feb9be79ce44fc8fbb2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:233 -msgid "Then use one of these tools to edit the feature:" -msgstr "" - -# 863c7e0224e8469ea42d1e82023afe0a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:236 -msgid "Move feature(s) tools" -msgstr "" - -# 2dfc6aa139ed4402940e49742772baaa -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:236 -msgid "Move entire feature(s)" -msgstr "" - -# cd4dfdbcb76745ca898e00a77d7d1aa3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:238 -msgid "Node tools" -msgstr "" - -# 3b163ad209154a34ab579fdceaff5ade -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:238 -msgid "Move only one point where you may have misclicked" -msgstr "" - -# 0375e7cd08b64f13a9e0f1484fcc64c3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:241 -msgid "Delete selected" -msgstr "" - -# 29e075ae08b64b5eb0bc3af20aa93054 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:241 -msgid "Get rid of the feature entirely so you can try again" -msgstr "" - -# 707d990cf1514109bd0fc240788cdcd5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:244 -msgid "Undo" -msgstr "" - -# a329a1aa39cc4f46a2171b3a8aa8051e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:244 -msgid "Undo mistakes or press :kbd:`Ctrl + Z` on keyboard" -msgstr "" - -# cc48dac5f66d4adba68459821b725dcf -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:248 -msgid "Now try it on your own:" -msgstr "" - -# 5325dde85ce14560bcd16886979c99fc -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:250 -msgid "" -"Digitise all the hazard prone area from inner circle and then to outer " -"circle. Use the image to assist you and if you confused about what " -"information for each colours, you might need to look at the legend on the " -"right side." -msgstr "" - -# 1132dd2f34234744970242c39f24aca9 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:256 -msgid "Remember that each new feature need to have a unique id value!" -msgstr "" - -# d6d83173a7894eeb8282baa1f154a115 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:258 -msgid "" -"When you are finished adding feature to a layer, you must savee the changes " -"to that layer." -msgstr "" - -# 40f430f92d144edb86fbd0664b97679a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:260 -msgid "Click on the :guilabel:`Toggle Editing` button." -msgstr "" - -# 54ef7513fa5c460bbeeab610f7b67d58 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:262 -msgid "You will be asked to save your edits. Click :guilabel:`Save`." -msgstr "" - -# 1b4872cc7ea441f28e4bd701ccfd0706 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:267 -msgid "" -"Now you know how to create polygon feature! Creating points and line layer " -"is just as easy – you simply need to define the type of layer when you " -"create it, and of course you can only create point in point layers and lines " -"in line layers." -msgstr "" - -# 0482b456b8d6429da0d2738505af4144 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:272 -msgid "5.4 Adding Vector Data" -msgstr "" - -# 7b66f71c1f3f4e2f935b8c0cf819d73d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:274 -msgid "" -"As we mentioned previously, a shapefile is a commonly used geographic file " -"format. It can easily be converted into other formats, and most GIS software " -"can read this type of file. You may notice when adding a shapefile that " -"there are numerous files in your shapefile directory with the same name. " -"This is because a shapefile actually relies on a collection of several other " -"files to store the data and keep various settings. When you add a shapefile " -"to your project, you should always add the one that ends in **.shp**, but " -"the rest of the files are important too!" -msgstr "" - -# 3cf75a4a518d4d53af521fa50a322c04 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:280 -msgid "" -"Do you remember how to add a shapefile? Try adding the layer :file:" -"`POI_Sleman_OSM`, from the shapefile located in the tutorial directory. If " -"you don’t remember how to add a new vector layer, refer to the instructions " -"in chapter 2." -msgstr "" - -# a144b0a366694a059642c9713becccb2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:284 -msgid "Your project should look like this after the new layer has been added:" -msgstr "" - -# 8577461f7ee44578977a6cf05fa30a59 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:289 -msgid "**Databases**" -msgstr "" - -# ff035704b246435a901294a9694b43f5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:291 -msgid "" -"Shapefiles (and other types of files) are one way to store geographic data. " -"You can also load a vector layer into QGIS from a database. You may already " -"be familiar with Database Management Systems (DBMS) such as Microsoft " -"Access. GIS applications also make use of databases to store geographic " -"data. Databases can be hosted and used locally on your computer, or could be " -"shared between users over a network or even the internet." -msgstr "" - -# 476a4da5630e48ad9d98581ef8e23903 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:296 -msgid "" -"Let’s try adding a layer from a database. Click on the following icon. If " -"you can’t find it, right-click on the toolbar and make sure that the “Manage " -"Layers” toolbar is enabled." -msgstr "" - -# 23233154862f4157bc474a7e3247bc7f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:302 -msgid "You will see a dialog box. Click :guilabel:`New`." -msgstr "" - -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:307 -msgid "" -"Navigate to the :file:`QGSI for Disaster Management/Sleman` folder and find " -"the file :file:`guna_lahan.db`. Select the file and click :guilabel:`Open`." -msgstr "" - -# 0a501d6a7b9a45df9920016a96dac9b2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:310 -msgid "" -"Now in the original dialog box, you will see that the dropdown button now " -"contains **guna_lahan.db @...**, followed by the path of the database file " -"on your computer." -msgstr "" - -# a152eb510321435bb5ce4d13b7616c5f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:313 -msgid "Click :guilabel:`Connect`. You will see the following in the box:" -msgstr "" - -# 38f4ca29d7074a08b80e3b814e9f085e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:318 -msgid "" -"This database actually has three different layers available, all saved in " -"the database. Click on the first layer to select it, then hold SHIFT and " -"click the last layer to select them all." -msgstr "" - -# 838b8b6980314fb799f7616c362adaa5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:321 -msgid "Click :guilabel:`Add`. This will add all three layers to our project." -msgstr "" - -# c6179770f92d4f3681673679451aa4ae -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:323 -msgid "" -"Remember frequently to save your map! Your QGIS project file does not save " -"the data (data is saved in a shapefile or a database), but it does remember " -"the layers that you have added to the project, their order, and any settings " -"that you adjust." -msgstr "" - -# b089954544334c5b9e1faece85845eb8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:327 -msgid "" -"The layers you have just added are all polygon layers, so you will want to " -"drag them down below the line and point layers. If you have a checkbox " -"beneath your layers list that reads **Control rendering order**, go ahead " -"and check it." -msgstr "" - -# 7b8f3c76e5704421bb114377865694b7 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:331 -msgid "" -"Let’s remove a couple of layers to make it easier to deal with our data. " -"Right-click on the railway and district layers and click :guilabel:`Remove`. " -"Then order your layers like this:" -msgstr "" - -# 5b9cf1d729f641139303a4ee97761a04 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:338 -msgid "5.5 Symbology" -msgstr "" - -# 8c7e330c4a704e69b3cf66182a9a8c74 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:340 -msgid "" -"The symbology of a layer is its visual appearance on the map. One of the " -"basic strengths of GIS is that you have a dynamic visual representation of " -"the data you’re working with. Therefore, the visual appearance of the map " -"(which depends on the symbology of the individual layers) is very important. " -"The end user of the maps you produce will need to be able to easily see what " -"the map represents. Equally as important, you need to be able to explore the " -"data as you’re working with it, and good symbology helps a lot." -msgstr "" - -# b00179517fdf478a83469c02e5343c8e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:346 -msgid "" -"In other words, having proper symbology is not a luxury or just nice to " -"have. In fact, it’s essential for you to use a GIS properly and produce maps " -"and information that people will understand and be able to use." -msgstr "" - -# 3523fb0fe9a0464da14e25b7f4366f0e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:350 -msgid "5.5.1 Changing colors" -msgstr "" - -# 99fc2739c6e64184a49e128d2e5ad30e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:352 -msgid "" -"To change a layer’s symbology, we will open its Layer Properties. Let’s " -"begin by changing the color of the **pemukiman** layer." -msgstr "" - -# fd40e01aea5741bdaab4c2ba00f184c5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:355 -msgid "Right-click on the **pemukiman** layer in the Layers list." -msgstr "" - -# 54eacf6f2d0344daa431d9f2c2008a9c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:357 -msgid "Select the menu item Properties in the menu that appears." -msgstr "" - -# 26cb354385c54a4c971ba418c33c954d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:359 -msgid "" -"By default you can also access the Properties menu by double-clicking on the " -"name of the layer." -msgstr "" - -# 95b2d76fabe54408a824ee4502a55334 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:361 -msgid "In the Properties window select the :guilabel:`Style` tab." -msgstr "" - -# 3352e935f26a4e219be65e714c373c9f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:366 -msgid "Click the color button to change the color" -msgstr "" - -# dcf6381a10584542832f7bcd3e9de86f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:371 -msgid "" -"A standard color dialog will appear. Choose a **grey** color and click :" -"guilabel:`OK`." -msgstr "" - -# cc5917c86fd74d98b616cab2ebf19e8a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:376 -msgid "" -"Click :guilabel:`OK` again in the Layer Properties window, and you will see " -"the color change being applied to the layer." -msgstr "" - -# e319924f680b4198bc3d2913d1189f6b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:383 -msgid "5.5.2 Changing Symbol Structure" -msgstr "" - -# 77adf469712048c388ed51ffb79f4b6f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:385 -msgid "" -"This is good stuff so far, but there’s more to a layer’s symbology than just " -"its color. Next we want to change the color of the vegetation, but we also " -"want to eliminate the lines between the different types of vegetation so as " -"to make the map less visually cluttered." -msgstr "" - -# 7b825100209f4159a9aca280c9923d24 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:389 -msgid "" -"Open the Layer Properties window for the **vegetasi** layer. Under the Style " -"tab, you will see the same kind of dialog as before. This time, however, we " -"will do more than just change the color." -msgstr "" - -# 45e3754db85640678f12f6b1ec44260c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:392 -msgid "" -"Click on the Simple Fill under the symbol layer column panel. Then Symbol " -"layer dialog will appear next to the symbol layer column panel." -msgstr "" - -# b07e0459817643a3809576d4d128b838 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:398 -msgid "" -"Change the color inside the polygons in the layer by clicking the button " -"next to the Fill label:" -msgstr "" - -# ef999648e80243f8b2d784400c3553b3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:403 -msgid "" -"In the dialog that appears, choose a new color (that seems to suit " -"vegetation)." -msgstr "" - -# 23afe21cc157465eae694a2037688349 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:407 -msgid "Next, we want to get rid of the lines between all the farms." -msgstr "" - -# 6a00226fcb5b49ddb567e9df0795a5f9 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:409 -msgid "" -"Click on the Border style dropdown. At the moment, it should be showing a " -"short line and the words Solid Line." -msgstr "" - -# 73519971337b4f98895616cd53cf96cc -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:414 -msgid "Change this to **No Pen**." -msgstr "" - -# 7999f74d228147e0a4801355570d9571 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:416 -msgid "" -"Click :guilabel:`OK`, and then :guilabel:`OK` again. Now when we look at our " -"map, the **vegetasi** layer will have a new color and no lines between " -"polygons." -msgstr "" - -# 7f7f8a001283478aa6983e4345941c1c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:422 -msgid "" -"Try changing the symbology of the **pemukiman** layer so that it also does " -"not have outlines." -msgstr "" - -# 1e816148167648d0a82a704878dbd6be -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:425 -msgid "5.5.3 Scale-based Visibility" -msgstr "" - -# 147b519b03e4493cb5bd855f4358b3b3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:427 -msgid "" -"Sometimes you will find that one of your layers is not suitable for a given " -"scale. For example, if you have a layer which shows the earth’s continents " -"but not with very much detail, the continent lines may not be very accurate " -"when you are zoomed in very far to see streets." -msgstr "" - -# 3868cf016fa041918362a0757a30a56f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:431 -msgid "" -"Scale is a reference to how your map references what is actually on the " -"ground in terms of size. Scale is usually given in terms like 1:10000, which " -"means that one centimeter of length on your map is equal to 10000 " -"centimeters in the real world. When you zoom in or out on a map, the scale " -"changes, as you can see in the status bar at the bottom of QGIS." -msgstr "" - -# 17f3b66a22364c668f4c199e2208087e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:436 -msgid "" -"In our case, we may decide to hide our streets layer when we are zoomed out " -"very far (a small scale). For example, the streets layer is not very useful " -"when we are zoomed out far and it looks like a blob." -msgstr "" - -# a41626bc5133418ea903b7af9ebf15d5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:439 -msgid "Let’s enable scale-based rendering:" -msgstr "" - -# e278b7bc7d154b609a1889c0680c886a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:441 -msgid "Open the Layer Properties dialog for the **Jalan_Sleman_OSM** layer." -msgstr "" - -# 5cf4810cdeb94291bcb6a98d6e5da913 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:443 -msgid "Activate the General tab." -msgstr "" - -# d1288ead8af640649b1a9edc3dea5b5f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:448 -msgid "" -"Enable scale-based rendering by clicking on the checkbox labeled :guilabel:" -"`Scale dependent visibility`. Then change the value in “Maximum” to 1:10 and " -"“Minimum” to 1:100000" -msgstr "" - -# 3beff9404eb04e79a40a57f52b4ec3ac -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:456 -msgid "" -"Now look at your map and see what happens when you zoom in and out. The " -"streets layer should appear when you are at a large scale and disappear at " -"small scales." -msgstr "" - -# 59d83cf71b8146fa82281d8efc59dcd5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:459 -msgid "" -"You can use your mouse wheel to zoom in increments. Alternatively, use the " -"zoom tools to draw a box and zoom to it:" -msgstr "" - -# 7299497773b8470a856afdb40d2f4ab6 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:466 -msgid "5.5.4 Adding Symbol Layers" -msgstr "" - -# 57d394d7557547169b043ea04a3a2fed -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:468 -msgid "" -"Now that you know how to change simple symbology for layers, the next step " -"is to create more complex symbology. QGIS allows you to do this using symbol " -"layers." -msgstr "" - -# cba71e2391ec4f78940896372107bbd5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:471 -msgid "Go back to the **vegetasi** layer’s Symbol properties dialog as before." -msgstr "" - -# 363bd6901b9b4e95901efac58c7a8d35 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:473 -msgid "" -"In this example, the current symbol has no outline (i.e., it uses the No Pen " -"border style)." -msgstr "" - -# 2d4fbe9ca9114e9ab13849f27d10438b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:478 -msgid "Click on :guilabel:`Fill` then click :guilabel:`+` button on the left." -msgstr "" - -# 8788208dc2ff47c1a8fb25b2997b54a2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:483 -msgid "Click on it and another symbol layer will be added to the list:" -msgstr "" - -# b74b486d67ca47e0be0d402544c42355 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:488 -msgid "" -"Note that it may appear different in color, but we’re going to change that " -"anyway." -msgstr "" - -# 3914313e8c3e4effaad49a434e62c41b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:490 -msgid "" -"Now this layer has two different symbologies. In other words, both the green " -"color AND the blue color will be drawn. However, the blue color will be " -"drawn above the green, and since it is a solid color, it will completely " -"hide the green color. Let’s change it." -msgstr "" - -# e51fc211f291484499b7b4143c09fe5f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:494 -msgid "" -"It’s important not to get confused between a map layer and a symbol layer. A " -"map layer is a vector (or raster) that has been loaded into the map. A " -"symbol layer is part of the symbol used to represent a map layer. This " -"course will usually refer to a map layer as just a layer, but a symbol layer " -"will always be called a symbol layer, to prevent confusion." -msgstr "" - -# de56450f055c4de789b29d723564b659 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:499 -msgid "Set the border style to **No Pen**, as before." -msgstr "" - -# af37514388b0419ebb0a0cad1fb2f4a1 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:501 -msgid "" -"Change the fill style to something other than Solid or No brush. For example:" -msgstr "" - -# 870473929c3240198569e335010b835e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:506 -msgid "" -"Click :guilabel:`OK` and then :guilabel:`OK` and take a look at your layers " -"new symbology." -msgstr "" - -# b2efe83982f442a085ef94d98230a49c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:511 -msgid "" -"Now try it yourself. Add an additional symbology layer to the " -"**Jalan_Sleman_OSM** layer." -msgstr "" - -# 0018387cc5ea4506a2a62d0e56cc8caf -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:513 -msgid "Give the thickness of the original layer a value of 2.0" -msgstr "" - -# 0a9833f7f71d4400851692b02428daf7 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:515 -msgid "Give the thickness of the new symbology layer a value of 1.0" -msgstr "" - -# bef283205caf48fab5ec9c388e2e7bfa -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:517 -msgid "This will result in your roads looking something like this:" -msgstr "" - -# 50f3300004394b81a898ffd02cd3ec07 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:522 -msgid "" -"Our streets now appear to have an outline, but they seem disjointed, as if " -"they don’t connect with each other. To prevent this from happening, you can " -"enable symbol levels, which will control the order in which the different " -"symbol layers are rendered." -msgstr "" - -# cee43a267cf0446c816506378eb5d47b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:526 -msgid "" -"In the Layer Properties dialog, click on :menuselection:`Advanced ‣ Symbol " -"levels`:" -msgstr "" - -# f71a3d6110d04370aeca84231364014a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:531 -msgid "" -"The Symbol Levels dialog will appear. Check the box next to **Enable symbol " -"levels**." -msgstr "" - -# 4fb0f0c644714f63ab66cee8123d0663 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:536 -msgid "Your map will now look like this:" -msgstr "" - -# 4a507c17fc6d4476bf41a30a1b33237c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:541 -msgid "" -"When you’re done, you can save the symbol itself in QGIS so that you won’t " -"have to do all this work again if you want to use the symbol again in the " -"future. Save your current symbol style by clicking the :guilabel:`Save " -"Style ...` button under the Style tab of the Layer Properties dialog." -msgstr "" - -# 85c64fb0da6e4626877156c7da0342c2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:548 -msgid "" -"Give your style file a name and save. You can load a previously saved style " -"at any time by clicking the :guilabel:`Load Style ...` button. Before you " -"change a style, keep in mind that any unsaved style you are replacing will " -"be lost." -msgstr "" - -# 99309baea845434fa9e5f8b20842b5bf -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:552 -msgid "" -"Symbol levels also work for classified layers (i.e., layers having multiple " -"symbols). We will cover classification in the next section, but you can see " -"how it works here with roads." -msgstr "" - -# b2a0b5f75bbb434f94877e8813ea9eb4 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:556 -msgid "5.5.5 Symbol layer types" -msgstr "" - -# 29cd582f812842359ff08136f0612ada -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:558 -msgid "" -"In addition to setting fill colors and using predefined patterns, you can " -"use different symbol layer types entirely. The only type we’ve been using up " -"to now was the Simple Fill type. The more advanced symbol layer types allow " -"you to customize your symbols even further." -msgstr "" - -# f9650184f1e14626bb0277f6e946e89d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:562 -msgid "" -"Each type of vector (point, line and polygon) has its own set of symbol " -"layer types. First we will look at the types available for points." -msgstr "" - -# 72b1124dcfeb4740b7ff7a186971843e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:566 -msgid "a. Vector Points" -msgstr "" - -# 5b9face028cf40a38b3e760989d5158a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:568 -msgid "Change the symbol properties for the **POI_Sleman_OSM** layer:" -msgstr "" - -# cb8f1a7ba13d4f8ab388c3383b05f692 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:573 -msgid "" -"You can access the various symbol layer types by clicking a symbol layer (1) " -"then clicking the dropdown box in the upper right corner (2)" -msgstr "" - -# 67b251b007a04a409d9e72da79c8f14b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:579 -msgid "" -"Investigate the various options available to you, and choose a symbol layer " -"type other than the default **Simple Marker**." -msgstr "" - -# 741bab0082924e5a97cbf867a6d86083 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:582 -msgid "If in doubt, use an **Ellipse Marker**." -msgstr "" - -# 4f957655571b482b8509765da4f4fc55 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:584 -msgid "" -"Choose a light outline and dark fill, with a symbol width of 2.00 and symbol " -"height of 4.00." -msgstr "" - -# 0f30d69772c846a9a089cc116840bb07 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:593 -msgid "b. Vector Lines" -msgstr "" - -# 20b71faba08840e68c461134484d1cda -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:595 -msgid "" -"To see the various symbology options for vector lines, open the streets " -"layer properties and click on the dropdown box:" -msgstr "" - -# 18407be14d52492daca666a92068bcdb -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:601 -msgid "Click on :guilabel:`Marker line`." -msgstr "" - -# 85af2e2271604872aa3c43937dc15076 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:606 -msgid "Click :guilabel:`Simple Marker` on symbol layers (1)" -msgstr "" - -# 2c1d07620e344a659aecc60226108ca3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:611 -msgid "Change the symbol properties to match this dialog:" -msgstr "" - -# 28605e1deedd40a59e8f55ff7cc08fc7 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:616 -msgid "" -"Now, click on :guilabel:`Marker line` on symbol layers panel, then change " -"the interval to 2.00:" -msgstr "" - -# 4ebf6bf188954f869bae14a9ea257853 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:621 -msgid "Your road should now look something like this:" -msgstr "" - -# dcf07b2b07d24b41b98397a2a1f01aa3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:626 -msgid "" -"Once you have applied the style, take a look at its results on the map. If " -"the dots not shown up, check the advanced setting and go back to Symbol " -"level. Change the upper symbol layer to “2”. Then click OK. As you can see, " -"these symbols change direction along with the road but don’t always bend " -"along with it. This is useful for some purposes, but not for others. If you " -"prefer, you can change the symbol layer in question back to the way it was " -"before." -msgstr "" - -# 680a4d6147c4466da16a7b390f4860f0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:632 -msgid "" -"Try to change the appearance of the streets layer again, so that the roads " -"are dark gray or black, with a thin yellow outline, and a dashed white line " -"running in the middle." -msgstr "" - -# 04aa325169c34f858824175a9e383bac -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:639 -msgid "c. Vector Polygons" -msgstr "" - -# e45f925feafa4ac39099f2c0fbd924d4 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:641 -msgid "" -"Now let’s change the symbol layer type for the :guilabel:`pemukiman` layer. " -"Take a look at the dropdown menu as you’ve done for the point and line " -"layers, and see what the various options can do." -msgstr "" - -# 380d5d892c92410fb6711e1065377b88 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:647 -msgid "" -"Feel free to play around with the various options. We will use the Point " -"pattern fill with the following settings:" -msgstr "" - -# 785e4f9840c34e1a95bcfc75caf3ab83 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:655 -msgid "Add a new symbol layer with a normal Simple fill." -msgstr "" - -# e230183f7c7e4329b3851c87f3594c40 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:657 -msgid "Make it gray with no outlines." -msgstr "" - -# 479a849b1fd64dfe896cf660badb03e0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:659 -msgid "" -"Move it underneath the point pattern symbol layer with the Move down button:" -msgstr "" - -# bdc277ab85444a98b1ad78cff21e61fd -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:664 -msgid "The symbol properties should look like this:" -msgstr "" - -# 5c06936bfcbd45ad9ca3657998188b1e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:669 -msgid "" -"As a result, you have a textured symbol for the urban layer, with the added " -"benefit that you can change the size, shape and distance of the individual " -"dots that make up the texture." -msgstr "" - -# 4bc4b867b1fe431ebda15c140741fbdc -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:673 -msgid "5.5.6 Classified Symbology" -msgstr "" - -# 926c6f089fff45f6867c034165158b5d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:675 -msgid "" -"By classifying vector data according to their type, we can give them " -"different symbologies and they will still appear to flow into each other." -msgstr "" - -# 216f1a727956467fb09f20a4fcbe7914 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:682 -msgid "a. Classifying nominal data" -msgstr "" - -# 760fd1c086a7465099ec40a0aef4a1df -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:684 -msgid "Open Layer Properties for the :guilabel:`vegetasi` layer." -msgstr "" - -# fb21563b973943db9f3fa0f3d435dc85 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:686 -msgid "Go to the :guilabel:`Style` tab." -msgstr "" - -# a5f699331c7c42888e45fd7ac538ee99 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:688 -msgid "Click on the dropdown that says :guilabel:`Single Symbol`:" -msgstr "" - -# a05cd2d8d7ea41fb8d67f071c79be1d6 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:693 -msgid "Change it to :guilabel:`Categorized` and the interface will change:" -msgstr "" - -# 4a36a00a0feb4875a5247e74dd0849f0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:698 -msgid "Change the Column to **guna_lahan** and the Color ramp to **Spectral**:" -msgstr "" - -# 56b719bfb3fb44d9b0c24b786bf6dc4e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:703 -msgid "Click the button labeled :guilabel:`Classify`:" -msgstr "" - -# ebcba81c17244243af4ec380e0bb22b0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:708 -msgid "Click :guilabel:`OK`. You’ll see something like this:" -msgstr "" - -# 6495a429c3564dcb871325b9f3e8c446 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:713 -msgid "" -"Click the arrow (or plus sign) next to rural in the Layer list, you’ll see " -"the categories explained:" -msgstr "" - -# c6e5fb4385d54fb780fb64b2c75bfacb -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:718 -msgid "" -"So, this is useful! But it hurts your eyes to look at it, so let’s see what " -"we can do about that." -msgstr "" - -# 4a9c60bde9924338b041b02ba884ec20 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:720 -msgid "" -"Open :guilabel:`Layer Properties` and go to the :guilabel:`Style` tab again." -msgstr "" - -# f0519d4b23994854a5901dbd19b64990 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:722 -msgid "Click the :guilabel:`Change` button next to Symbol." -msgstr "" - -# 0f0c95ace637436f802e8a3d3f559b0d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:727 -msgid "" -"Remove the outline as you did in the previous chapter. (change the border " -"style to “No Pen”)" -msgstr "" - -# c45105bb96db4d34a3230c9aa2791d65 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:729 -msgid "Click the Delete all button:" -msgstr "" - -# 385fe65f04824065ba2c680318c591ce -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:734 -msgid "Now click :guilabel:`Classify` again, and the new symbols will appear." -msgstr "" - -# 73b610fece684c7b8ce601de4858fe3d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:736 -msgid "" -"You’ll notice they don’t have outlines. This is because because you just " -"removed the outlines!" -msgstr "" - -# 77c9a97cdb864683acaddbbe6d76f526 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:738 -msgid "" -"Change the color for each type of vegetation by double-clicking on the " -"colored block next to its name. You can change the color for each type of " -"vegetation to something that you think is more applicable, as we’ve done " -"here:" -msgstr "" - -# a1354845c52141c78d5ff71b73f8efac -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:745 -msgid "" -"Notice that the category on the bottom is empty. Select it, and click the :" -"guilabel:`Delete` button." -msgstr "" - -# 7a98f289c4b449dfb2e9dfc1d8dce1da -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:747 -msgid "When we click :guilabel:`OK` our map looks like this:" -msgstr "" - -# b4236354652d498b9ffbe85d692718a9 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:752 -msgid "" -"If you feel confident in your new classification skills, try to classify the " -"residential layer yourself. Use darker colors to distinguish it from " -"vegetation." -msgstr "" - -# 253dfa1895a7406eb825807cd3a1c9e6 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:757 -msgid "b. Ratio classification" -msgstr "" - -# 47bdc7d143014cd3a372a942fb9f0055 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:759 -msgid "" -"In the previous example, we classified the **vegetasi** layer by what is " -"known as **nominal classification**. This type of classification is when " -"categories are defined based on names. Next we will classify the " -"**pemukiman** layer based on the size of each feature. Classifiying with " -"attributes that contain only positive numbers, such as land area, is known " -"as **ratio classification**." -msgstr "" - -# 1a07ab685c7b4c82a90992e7430a8f59 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:764 -msgid "" -"Open the attribute table for the **pemukiman** layer. Notice the final " -"column, **luas_ha**. This attribute contains the size of the land area " -"contained within that feature polygon." -msgstr "" - -# 34870b41b6fc450bb0421c76d04ba16d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:770 -msgid "Open the layer properties for **pemukiman**." -msgstr "" - -# 539d487758414399b5fbb3582eca4d1f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:772 -msgid "" -"Change the Style type to **Graduated**, and use **luas_ha** as the column." -msgstr "" - -# cfa03047fc604052b033defdb2ff4555 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:777 -msgid "" -"Because we are categorizing with numbers this time, a color gradient will be " -"useful for representing our categories. Click on “Oranges” in the color " -"ramp, and then click :guilabel:`Classify`." -msgstr "" - -# 058b5a1f78a2409094507c1c78ce1d72 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:783 -msgid "Now you’ll have something like this:" -msgstr "" - -# f00b0cea52ad4a9aa28e468a815d3d19 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:788 -msgid "" -"Now you already know how to symbolize vector data into various types. You " -"can try to symbolize another data such as line or point to make your vector " -"data more informative." -msgstr "" - -# 61d91f3514fe459fa08435c3fef2f9fa -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:792 -msgid "5.6 The Label Tool" -msgstr "" - -# 8ac26d8e8c9741ff8b1c9b43d3c84053 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:794 -msgid "" -"Labels can be added to a map to show any information about an object. Any " -"vector layer can have labels associated with it. Labels rely on the " -"attribute data of a layer for their content." -msgstr "" - -# f0691ba0f9d047c8ae93813538b1f36c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:796 -msgid "" -"There are several ways to add labels in QGIS, but some are better than " -"others. You may notice that when you open the Layer Properties window for a " -"layer, there is a tab called “Labels.” While this tab is designed to put " -"labels on your map, it is not nearly as good as the so-called “Label Tool”, " -"which we will learn in this section." -msgstr "" - -# ea52465c41f64b8c89ab328a86c511b1 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:801 -msgid "5.6.1 Labeling Points" -msgstr "" - -# e24ca3d6d4874c19aab1227f5d5a9a14 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:803 -msgid "" -"Before being able to access the Label tool, you will need to ensure that it " -"has been activated." -msgstr "" - -# d1de358ef0b2453aab6cfc549cbda0f5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:805 -msgid "Go to the menu item :menuselection:`View ‣ Toolbars`." -msgstr "" - -# 6dfab45eaa884ea78bad4a9b19c9dfea -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:807 -msgid "" -"Ensure that the Label item has a checkmark next to it. If it doesn’t, click " -"on the :guilabel:`Label` item, and it will be activated. The :guilabel:" -"`Label` toolbar looks like this:" -msgstr "" - -# 6d528cd7f1104744b1002fdd6127dd8a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:813 -msgid "" -"Click on the **POI_Sleman_OSM** layer in the :guilabel:`Layers` list, so " -"that it is highlighted." -msgstr "" - -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:815 -msgid "Click on the :guilabel:`Labeling` button:" -msgstr "" - -# dcff7582b588401eb96d755bd7f8e957 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:820 -msgid "This gives you the :guilabel:`Layer labeling settings` dialog." -msgstr "" - -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:822 -msgid "" -"Click drop down box in :guilabel:`no label` box and select :guilabel:`Show " -"labels for this layer` in drop down box." -msgstr "" - -# 171706d3ae104844b841642c80d36a05 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:827 -msgid "" -"We must indicate which of the attribute fields we want to use for the " -"labels. The **NAME** field is the mostly likely candidate for a label, so " -"let’s select **NAME** from the list:" -msgstr "" - -# a87ce941d6714fa7b5faa3c70829a8fb -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:833 -msgid "Click :guilabel:`OK`. The map should now have labels like this:" -msgstr "" - -# 322e3de3ee084312bb931a6b63a2ce68 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:838 -msgid "" -"What we have so far is good, but as you can see, the labels are overlapping " -"the points that they are associated with. That doesn’t look very nice. The " -"text is also a bit larger than it needs to be. Let’s fix these problems!" -msgstr "" - -# 41f4cfca483148349e377c1b9d415864 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:841 -msgid "" -"Open the :guilabel:`Label` tool again by clicking on its button as before." -msgstr "" - -# cba3af33a636430ca6c3c36acd35d191 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:843 -msgid "Click on the :guilabel:`Text` tab button to change the text properties:" -msgstr "" - -# 421a115ededd46e4a78e2350a775e5f2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:848 -msgid "" -"A standard text change dialog appears, similar to those in many other " -"programs. Change the font to Arial size 9." -msgstr "" - -# 9ca08b2912d441a89857523aed949318 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:850 -msgid "" -"Now click on :guilabel:`Buffer` tab to add buffer on the text. Check box " -"labelled :guilabel:`Draw text buffer`" -msgstr "" - -# 9191fd6fa9094c0890f877f6193b6bb8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:855 -msgid "Your labels will now look like this:" -msgstr "" - -# 9d77591c08e7468c86b124f4ea2ff9f5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:860 -msgid "Now you can see why we usually need label buffers!" -msgstr "" - -# f9e0a3d2aacd4e47b554ee7d74ae0000 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:862 -msgid "" -"That’s the font problem solved! Now let’s look at the problem of the labels " -"overlapping the points." -msgstr "" - -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:864 -msgid "In the Label tool dialog, click on :guilabel:`Placement` tab." -msgstr "" - -# 61867db3e28f4057be43bb6a4a5c0745 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:866 -msgid "Change the value of Label distance to 2." -msgstr "" - -# 64d31f8e01de49c49610b14d45b43fb9 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:871 -msgid "" -"Click :guilabel:`OK`. The labels no longer hover over the icons, but are " -"“buffered” a short distance away:" -msgstr "" - -# f011a4222f84497c9b831c10434857ad -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:877 -msgid "5.6.2 Labeling lines" -msgstr "" - -# 3120501c2d784ff2a5f2c70adfce43e0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:879 -msgid "" -"Now that you know how labeling works, there’s an additional problem. Points " -"and polygons are easy to label, but what about lines? If you label them the " -"same way as the points, your results would look like this:" -msgstr "" - -# 58841b179f314c14b9f7634728d983ef -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:885 -msgid "" -"This is not very useful! To make lines behave, we’ll need to edit some " -"options." -msgstr "" - -# 64144ec286804df891b39816ff12f56a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:887 -msgid "Hide the **POI_Sleman_OSM** layer so that it doesn’t distract you." -msgstr "" - -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:889 -msgid "Activate labels for the **Jalan_Sleman_OSM** layer as before." -msgstr "" - -# 57d4c300e0584bac8e9f7cd7295c8f27 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:891 -msgid "" -"Set the font Size to 9 and activate the buffer so that you can see more " -"labels." -msgstr "" - -# be45175985e24c5c99c309945e885816 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:893 -msgid "Zoom in so that the scale is around 1:10000." -msgstr "" - -# 67e7a2e3145d4151a74b88cd551612c0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:895 -msgid "" -"In the Label tool dialog’s :guilabel:`Placement` tab, choose the following " -"settings:" -msgstr "" - -# 2b18392f517a4bbbbfd978a9b854434a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:900 -msgid "The map will look somewhat like this, depending on scale:" -msgstr "" - -# 710a630b985a483fa7d9e425e856567d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:905 -msgid "" -"It’s better than before, but still not ideal. For starters, some of the " -"names appear more than once, and that’s not always necessary. To prevent " -"that from happening:" -msgstr "" - -# f44039dbf7f240ee844e522b55b02ece -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:908 -msgid "Go to :guilabel:`Rendering` tab" -msgstr "" - -# 38f9ea2a36e84f5cb2c42e12deaf4b9b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:910 -msgid "" -"Enable the option Merge connected lines to avoid duplicate labels (also " -"under the Rendering tab - you may need to scroll down to see it)." -msgstr "" - -# 2a236b60b6a24652b103b2a2defa0d1e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:913 -msgid "" -"Another useful function is to prevent labels being drawn for features too " -"short to be of notice." -msgstr "" - -# 2e542102eab94b6c91a0d122ab710479 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:915 -msgid "" -"Set the value of Suppress labeling of features smaller than ... to 5 mm and " -"note the results when you click :guilabel:`Apply`." -msgstr "" - -# 06f1c7920d4d4d7295c8e45f7e829b75 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:918 -msgid "" -"Try out different Placement settings as well (also under the Placement tab). " -"As we’ve seen before, the horizontal option is not a good idea in this case, " -"so let’s try the curved option instead!" -msgstr "" - -# 672a746df5254ff4bec3f550fa42dab6 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:921 -msgid "" -"Select the :guilabel:`curved` option under the :guilabel:`Placement` tab of " -"the :guilabel:`Layer labeling settings` dialog." -msgstr "" - -# daf25c7268374e2c9b84ca37acf311bb -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:924 -msgid "Here’s the result:" -msgstr "" - -# a1c96525b8d6455591af9c06e5976d6d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:929 -msgid "" -"As you can see, this hides a lot of the labels that were previously visible, " -"because of the difficulty of making some of them follow twisting street " -"lines and still be legible. You can decide which of these options to use, " -"depending on what you think seems more useful or what looks better." -msgstr "" - -# 95716b6c97f841feaa9e511f53651ad6 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:933 -msgid "" -"Now that you know how attributes can make a visual difference for your map, " -"how about using them to change the symbology of objects themselves? That’s " -"the topic for the next section!" -msgstr "" - -# 19c950a68d194b9f93807ce00ed9b0d1 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:936 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-06-Working_with_Raster_Data.po b/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-06-Working_with_Raster_Data.po deleted file mode 100644 index 4d470958..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-06-Working_with_Raster_Data.po +++ /dev/null @@ -1,522 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:02+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 1ee150908776411b9081a2e34c1f6b8f -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:6 -msgid "Chapter 6: Working with Raster Data" -msgstr "" - -# d38eca356d154446b1f180311f22b96a -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 96f30e137aa746b797551f339596c8ff -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:10 -msgid "Load Raster Data" -msgstr "" - -# 0ffe9288b0ab44c0ad8a1bc78e03be70 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:11 -msgid "Change Raster Symbology" -msgstr "" - -# df3c15156952412491e4ff2ef161d75f -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:12 -msgid "Terrain Analysis" -msgstr "" - -# c573207bf2d148fdb3d122e03248ffd7 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:14 -msgid "" -"Thus far we’ve worked mostly with vector data, which consists of features, " -"and these features are themselves made up of points and lines. In this " -"chapter we will learn about raster data. Remember when you were editing " -"OpenStreetMap in JOSM? The points, lines and shapes that you drew were " -"vector data. But when you loaded Bing aerial imagery in the background, that " -"was raster data. So what’s the difference?" -msgstr "" - -# fb66f2dfeb5942db98dc4c7ddd44f44c -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:17 -msgid "" -"Raster data essentially comes in the form of an image. It is made up of " -"pixels, like a photograph, and a raster image will always be some number of " -"pixels wide and some number of pixels high. If you zoom in far enough on a " -"raster image, it will start to become blurry, just as if you opened a photo " -"on your computer and zoomed in very close. As we’ll see in this chapter, " -"however, a raster image can mean more than just a photograph from the sky. " -"Follow along and we’ll learn all about rasters!" -msgstr "" - -# eb850fa50a63460ea842f30cbd63095e -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:21 -msgid "6.1 Loading Raster Data" -msgstr "" - -# 393b4e0e18dc45c6b441612d47c0ef3b -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:23 -msgid "" -"Not all raster data consist of aerial photographs. There are many other " -"forms of raster data, and in many of those cases, it’s essential to " -"symbolise the data so that it becomes properly visible and useful. In this " -"section we’ll add a new kind of raster and see how to change its symbology." -msgstr "" - -# 6bcf37a53b574aa0892b9a5cf2c1fc52 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:26 -msgid "Click on the :guilabel:`Load Raster Layer` button:" -msgstr "" - -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:31 -msgid "" -"The Load Raster Layer dialog will open. Find the file named :file:" -"`popmap10_all.tif` in :file:`QGSI for Disaster Management/Working with " -"Raster` folder. Open it." -msgstr "" - -# 7b79ae50aafc4fdd974253d61b888b00 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:33 -msgid "" -"When it appears in the Layers Panel, right-click on it and click :guilabel:" -"`Rename`. Give it the name *Indonesian Population*." -msgstr "" - -# 20c8e9556e2d4e4e8b38ec781331cdcb -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:35 -msgid "" -"High resolution, contemporary data on human population distributions are a " -"prerequisite for the accurate measurement of the impacts of population " -"growth, for monitoring changes and for planning Interventions. The AsiaPop " -"project was initiated in July 2011 with an aim of producing detailed and " -"Freely-available population distribution maps for the whole of Asia.*" -msgstr "" - -# 3705299d82c94e50a581f98d3b8fd87b -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:37 -msgid "" -"When it loads, you’ll notice that the new raster image appears as whole " -"Indonesia’s Islands in grey colour." -msgstr "" - -# a66838f1de534d3a8a07af6859cb521a -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:42 -msgid "" -"The layer appears grey (and doesn’t give us any information) because its " -"symbology hasn’t been customised yet. In the colour aerial photograph we " -"loaded via *OpenLayer* Plugin, everything is already defined. But if you load " -"a raster image and it’s just a grey rectangle, then you know there’s no " -"symbology for it yet. It still needs to be defined. That’s what we will do " -"next." -msgstr "" - -# c9434b0628cb4813aa99d1325109785a -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:47 -msgid "6.2 Symbolise Raster Data" -msgstr "" - -# 156b1553eb7f4f269949b7c6892de5b1 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:49 -msgid "" -"Open the :guilabel:`Layer Properties dialog` for the Population layer, which " -"is now named *Indonesian Population*." -msgstr "" - -# 25169c5e1f6c40fe8e3d41eae6b22718 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:51 -msgid "" -"Switch to the :guilabel:`Style` tab. This shows the current symbology " -"settings, and as we’ve seen, they don’t give us much information on the " -"layer. Let’s make sure the layer has data in it." -msgstr "" - -# c9fc0da7ac394819a5bb395ce3195524 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:53 -msgid "" -"Change the :guilabel:`Render type` to :guilabel:`Singleband pseudocolor`. " -"Set colour to :guilabel:`YlOrBr` and change mode to :guilabel:`Equal " -"Interval` with :guilabel:`6 Classes`. Click :guilabel:`Classify` to show 6 " -"classes. As shown below:" -msgstr "" - -# 3638516c182f42be9a20dd06b000c92f -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:58 -msgid "Click *OK*. The raster should look like this:" -msgstr "" - -# e6e4bf00180a47e0aa89b6dfe96d5886 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:63 -msgid "" -"Good! This tell us that there is data in this layer. And by looking at it we " -"can get an idea in Java Island, population number higher than other island " -"in Indonesia." -msgstr "" - -# 05f8ebe98eb4408b90df83e596377c61 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:65 -msgid "" -"Let’s stop for a minute and understand what is happening here. Remember that " -"an image is made up of pixels, individual cells that contain a value, which " -"is usually a colour value. For example, if you zoom in very closely on a " -"photograph you can see those individual pixels, like this:" -msgstr "" - -# e21c586528ab4506873a64489e6aeed6 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:70 -msgid "" -"The value of each cell is saved in the file. Imagine the file being saved " -"something like this, where each square is a pixel:" -msgstr "" - -# 5dc237a510c34b2a8e6c090e8c627352 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:75 -msgid "" -"Of course the computer doesn’t understand words for colours. In fact the " -"value of each cell would be a number, which the computer then associates " -"with a certain colour. For our aerial image, this is already defined. Since " -"it is a normal image, it knows to associate the numbers for each pixel in " -"the file with the common colours that we see every day. But this new raster " -"image is different, because the values of each pixel don’t represent " -"colours, but rather altitude, and QGIS doesn’t know automatically how to " -"display it. Hence it shows every pixel in the image as grey, even if the " -"values in each pixel are different. When we change the symbology to " -"Psuedocolor, we can see all the different pixel values shown with various " -"colours." -msgstr "" - -# 198d1ce9eac1486e8334503f64690e31 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:79 -msgid "" -"It would be nice to represent our Indonesian Population layer as a greyscale " -"spectrum, rather than a variety of bright colours. Next we will tell QGIS to " -"symbolise the layer with colours in a spectrum, beginning at the lowest " -"pixel value in the file and ending at the highest pixel value. In other " -"words, if the pixel values looked like this:" -msgstr "" - -# f1923c6e47524311b15993181a55d7f6 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:84 -msgid "QGIS would create a spectrum equating numbers to colours like this:" -msgstr "" - -# 00dbdd0ca466440a81f913377383b867 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:89 -msgid "And render the image like this:" -msgstr "" - -# 94f7acb290f44f688b58f2b702be7ab4 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:94 -msgid "To do that, let’s start to symbolise Indonesia Population:" -msgstr "" - -# d64e6e86349546a39c17aabb81bf3ca3 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:96 -msgid "Open the :guilabel:`Layer Properties` Again." -msgstr "" - -# bd30723855f6405198dcc125d3b4a8aa -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:98 -msgid "Switch the render type back to :guilabel:`Singleband gray` (1)." -msgstr "" - -# 8c93b9a276ec49ef96a7d1a49b5d1902 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:100 -msgid "Check the box next to :guilabel:`Min / max` (2)." -msgstr "" - -# 92487dd074e4465cb8d2d45c071f03ef -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:102 -msgid "" -"Next to :guilabel:`Contrast enhancement` select :guilabel:`Stretch to " -"MinMax` (3)." -msgstr "" - -# 67282e5cd82641a59dd6f31e3c1c431b -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:104 -msgid "" -"Under :guilabel:`Load min / max values`, select :guilabel:`Estimate " -"(faster)`." -msgstr "" - -# 694674fce2ed4b83907e41360ce79f93 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:106 -msgid "Click the :guilabel:`Load` button:" -msgstr "" - -# 9b140d1d2a2742038813a89990ecbd16 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:111 -msgid "" -"Notice how the custom Min and Max values have changed. The lowest pixel " -"value in this image file is 0 and the highest is about 3024.93. But what are " -"the minimum and maximum values that should be used? The current values are " -"those that just gave us a grey rectangle. Instead, we should be using the " -"minimum and maximum pixel values that are actually in the image. You can " -"determine those values easily by loading the minimum and maximum values of " -"the raster." -msgstr "" - -# ca8b483263164594b325d25378adc43f -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:116 -msgid "" -"Click *OK.* You should see the values of the raster properly displayed, with " -"the darker colour representing small number of population in each pixel and " -"the lighter one, high number of population in each pixel:" -msgstr "" - -# 4ec537b5ef8240e381e4e5d6e709d3ec -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:121 -msgid "" -"We’ve learned to do this the tricky way, but can we do it faster? Of course! " -"Now that you understand what needs to be done, you’ll be glad to know that " -"there’s a tool for doing all of this more easily." -msgstr "" - -# d43b1dd6eec3416299acc7edbf537e0c -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:123 -msgid "" -"Remove :guilabel:`Indonesian Population` from the Layers panel, by right-" -"clicking it and clicking :guilabel:`Remove`" -msgstr "" - -# b49fc9cb09b045ec8fdc7414ac6e0dd2 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:125 -msgid "" -"Load the raster image again, renaming it to *Indonesian Population* as " -"before. It will be a grey rectangle again." -msgstr "" - -# 8f2a0c6f4cbd4c6ea2f4c4b5843bc3dc -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:127 -msgid "" -"Enable the tool you’ll need by enabling :guilabel:`View → Toolbars → Raster` " -"These icons will appear in the interface:" -msgstr "" - -# 39a2fb1f997e46028a8eeff7ebd2a251 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:132 -msgid "" -"The button on the right will stretch the minimum and maximum values to give " -"you the best contrast in the local area that you’re zoomed into. It’s useful " -"for large datasets. The button on the left will stretch the minimum and " -"maximum values to constant values across the whole image." -msgstr "" - -# c8f4e9806a834ed08aecafc6c7a13030 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:134 -msgid "" -"Click the right button labelled :guilabel:`(Stretch Histogram to Full " -"Dataset)`. You’ll see the data is now correctly represented as before!" -msgstr "" - -# 051ad95e358d4eaeb66cd0c2fa2f864b -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:137 -msgid "6.3 Terrain Analysis" -msgstr "" - -# 15323a5e641e4beeb65cd097dc424aef -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:139 -msgid "" -"Certain types of rasters allow you to gain more insight into the terrain " -"that they represent. Digital Elevation Models (DEMs) are particularly useful " -"in this regard. In this section we’ll do a little bit more with our DEM " -"raster, in order to try to extract more information from it." -msgstr "" - -# e214cc5117e546ba84722c82b15c50b7 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:142 -msgid "6.3.1 Calculating a hillshade" -msgstr "" - -# e879be3932e14770a51cab1733329dd4 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:144 -msgid "" -"The DEM you have on your map right now does show you the elevation of the " -"terrain, but it can sometimes seem a little abstract. It contains all the 3D " -"elevation information about the terrain that you need, but it doesn’t really " -"look 3-Dimensional. To get a better look at the terrain, it is possible to " -"calculate a hillshade, which is a raster that maps the terrain using light " -"and shadow to create a 3D-looking image." -msgstr "" - -# 71989287188041689abab6c699147dfd -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:147 -msgid "" -"To work with DEMs, we will use the all-in-one DEM (Terrain models) analysis " -"tool." -msgstr "" - -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:149 -msgid "" -"Open the file named :file:`SRTM_Merapi.tif`, which is located in :file:`QGIS " -"for Disaster Management/Working with Raster` folder." -msgstr "" - -# c4828df4fdfc4ab2a6c3ddb005a0a7c0 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:151 -msgid "When it appears in the :guilabel:`Layer` panel, rename it to **DEM**." -msgstr "" - -# e732789e39354fa5a5a82d10b446468e -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:153 -msgid "Click :guilabel:`Stretch Histogram to Full Dataset` button." -msgstr "" - -# fd086bd7891346df94ee94a79582797a -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:155 -msgid "Go to :guilabel:`Raster → Analysis → DEM (Terrain Models)…`" -msgstr "" - -# 2b7d66b8f6bc4dae971a58fcb100e819 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:160 -msgid "" -"In the dialog that appears, ensure that the input file is the **DEM** layer." -msgstr "" - -# abf708cd4f18491883f7110573951bbb -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:163 -msgid "" -"Set the output file to :guilabel:`hillshade.tif` in the directory :guilabel:" -"`Merapi/SRTM/`." -msgstr "" - -# e4cba23ddb5145b68e9b7dd3e890f2e4 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:168 -msgid "Check the box next to :guilabel:`Load into canvas` when finished." -msgstr "" - -# d45c0b414af647c98201b5c6c808db4a -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:173 -msgid "Leave all the other option unchanged." -msgstr "" - -# fb02bde2861d494fb51795e1518adb71 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:175 -msgid "Click :guilabel:`OK` to generate the hillshade." -msgstr "" - -# 0863b818f69742ea92fd364139e8350b -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:177 -msgid "" -"When the processing is complete. Click :guilabel:`OK` on the notification." -msgstr "" - -# e0069a80094b40b28107b51a893abbe8 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:179 -msgid "Click :guilabel:`Close` in the dialog." -msgstr "" - -# d04022e0f7e34b3c9ea3d9e04d66fecd -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:181 -msgid "" -"There should now be a new layer called *hillshade* that looks like this:" -msgstr "" - -# c2163494b922415689f0e1788b6daf85 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:186 -msgid "" -"This looks more Three-Dimensional, but can we improve on this? When you " -"open :guilabel:`DEM (Terrain Models)` tools, you will notice in the Mode " -"Options for hillshade there’re *Azimuth of the light* and *Altitude of the " -"light*." -msgstr "" - -# 64f656608e1149eeab2a26df59ecbed2 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:188 -msgid "" -":guilabel:`Azimuth of the light` defines in which direction the sun is, " -"whereas 0° represent north, east is 90°, south is 180° and west is 270°. " -"While :guilabel:`Altitude of the light` is the angle between the horizon and " -"the centre of the sun’s disc." -msgstr "" - -# c9ced26d6281409d89a55955fe9115a4 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:191 -msgid "" -"On its own, the hillshade looks like a plaster cast. It will look better if " -"we can combine it with our more colourful DEM. We can do this by making the " -"hillshade layer an overlay." -msgstr "" - -# aef5d6d11c1b420f93c02cfc7e3a0a9b -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:194 -msgid "6.3.2 Using a hillshade as an overlay" -msgstr "" - -# 42d9c0612d5849c29a3a3600b8210672 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:196 -msgid "" -"Hillshade can provide very useful information about the sunlight at a given " -"time of day. But it can also be used for aesthetic purposes, to make the map " -"look better. The key to this is setting the hillshade to being mostly " -"transparent." -msgstr "" - -# ef712e25651847f0ab6db301b9faa373 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:198 -msgid "" -"Change the symbology of the original :guilabel:`DEM` layer to use the :" -"guilabel:`Pseudocolor` scheme." -msgstr "" - -# 1e0f212b39fd4194b547352f3c8c7d7e -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:200 -msgid "" -"Click and drag the :guilabel:`DEM` layer beneath the :guilabel:`hillshade` " -"layer in the Layers panel." -msgstr "" - -# 882fb80077274eac9b842784cf4028bb -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:205 -msgid "Ensure that :guilabel:`Control rendering order` is checked." -msgstr "" - -# c16e26b26bf74316898f9414b522a63a -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:210 -msgid "" -"Now we will make the hillshade layer somewhat transparent. Open its :" -"guilabel:`Layer Properties` and go to the :guilabel:`Transparency` tab." -msgstr "" - -# 585010e7e1fc42139b85c5e61e7ac6c4 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:212 -msgid "Set the :guilabel:`Global transparency` to 50%:" -msgstr "" - -# 52aaf79b498c4dd28c04ed555b8ad2e9 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:217 -msgid "" -"Click :guilabel:`OK` in the Layer Properties dialog. You should get a result " -"similar to this:" -msgstr "" - -# f8083cd867964c8eaf283a77ced9b05f -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:222 -msgid "" -"Using a hillshade in this way, it’s possible to enhance the topography of " -"the landscape. If the effect doesn’t seem strong enough to you, you can " -"change the transparency of the hillshade layer; but of course, the brighter " -"the hillshade becomes, the dimmer the colours behind it will be. You will " -"need to find a balance that works for you." -msgstr "" - -# 8bc04e35e6d3494d811db381b5ecf6f9 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:224 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-07-Using_Map_Composer.po b/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-07-Using_Map_Composer.po deleted file mode 100644 index e19b439c..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-07-Using_Map_Composer.po +++ /dev/null @@ -1,558 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:03+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# c458bc6b9de9424bbef2d6650fc4c0a1 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:6 -msgid "Chapter 7: Using Map Composer" -msgstr "" - -# 81fec65a3aaf479c9d03b5cb55877fd6 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# a699c19b901d4316802d420bedf02e4b -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:10 -msgid "Arrange map layout" -msgstr "" - -# 9469baafd2414c23b1edcd294091b285 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:11 -msgid "Add new map" -msgstr "" - -# 04ff3dc5e17b451db0bdffdb47dc48cb -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:12 -msgid "Add title to a map" -msgstr "" - -# 05322b2954b347feac6b633366dfb9a3 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:13 -msgid "Add graphic and numeric scales" -msgstr "" - -# aab66241940a49aaaacbb61766aeb6aa -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:14 -msgid "Add grid to a map" -msgstr "" - -# f1e3d9c771d44e089885247954a0004d -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:15 -msgid "Add an inset" -msgstr "" - -# 3c5afa6697aa483197daa6b7ac72f97c -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:16 -msgid "Customise the content of the legend" -msgstr "" - -# 660874a6cf6c4d9986ca7de7dd3cb1ea -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:17 -msgid "Export a map to different formats (pdf, jpeg, svg)" -msgstr "" - -# a67587f17e94415c818060b3ad6b152a -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:19 -msgid "" -"A map is a means to communicate information (as well as new ideas) tothe " -"audience. We use symbology to convey the contents of our data so it can be " -"easily understood. When we create a map layout, we go one step further - we " -"present your map so that it becomes a means of information." -msgstr "" - -# 2fdfd606c6eb4d5790d5a1bf2812614a -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:22 -msgid "" -"No matter what media we plan to distribute your map by (whether it’s printed " -"or sent over the internet), we must pay attention to how you compose your " -"map elements in the layout. In this module we will discuss the presentation " -"of printed maps, and create our very own." -msgstr "" - -# 6dce0fc89a2f4a1793c0647543e9ffc0 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:26 -msgid "7.1 The Map Composer" -msgstr "" - -# 21d808a46f814c2ba79f311ba372fe05 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:28 -msgid "" -"The QGIS Map Composer allows you to prepare it for printing. Apart from the " -"map, you are able to add additional information such as images, labels, " -"legends, and scalebars." -msgstr "" - -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:30 -msgid "" -"Let’s start with some data in the Sleman regency that has already been " -"symbolised. Open the project named :file:`Chapter_7_Map Composer.qgs` in " -"the :file:`QGIS for Disaster Management` directory." -msgstr "" - -# a8f9216e83ad4b42aea6850698dad0be -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:35 -msgid "" -"This map shows some familiar layers from the previous module. We have the " -"roads and vegetation of Sleman, along with the three impact zones from a " -"Merapi eruption model." -msgstr "" - -# eb1cf76f8b084ac7939189cf4f8c9163 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:37 -msgid "" -"Let’s see how we can use Map Composer to adjust the layout and prepare this " -"map for printing." -msgstr "" - -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:39 -msgid "" -"Go to :menuselection:`Project ‣ New Print Composer`. Then, give an unique " -"title name for your layout, for example: :kbd:`Sleman`. Click :guilabel:" -"`OK`, then a new window will load that looks like this:" -msgstr "" - -# f06598b895ce4900acc74340dc2d826f -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:44 -msgid "" -"This is the window where you can compose the layout of a map that you want " -"to print. The blank white area is your “canvas”.It is a model of the paper " -"you are going to print out. You can put various elements onto this canvas, " -"such as your map (obviously), a title, scalebar, and legend. These are " -"elements commonly used on printed maps." -msgstr "" - -# e2c4f07482ad49858942cad61121c29e -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:47 -msgid "" -"Take a look at the right panel. In Composition tab, you change paper size, " -"number of pages, and quality of output." -msgstr "" - -# 09bfda9a429b4e569144d3680027ea2b -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:52 -msgid "" -"Take a look at the icons on the left of the window. We will use some of " -"these as we lay our map out, so here’s an overview of what they do:" -msgstr "" - -# 94f2085d917d47769568bfed1a7b1dff -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:55 -msgid "" -"**Add New Map** will add a map element. This is what we will use to add the " -"map from our project into our print layout. It should be noted, however, " -"that if we change the map in our QGIS project, it will not update the same " -"map that we have added to our print composer, as we shall see later." -msgstr "" - -# 55bdc3eb433a4c108bd61ad8f56e4058 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:61 -msgid "" -"**Add Image** allows us to add a picture. You can add a company or " -"organisational logo, or simply display images from a particular location. " -"You can also add an image of a compass (to point North)." -msgstr "" - -# 6dec62e07f0041efb0e4c5dfa31b9f71 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:66 -msgid "" -"**Add New Label** is used for adding text to the layout, such as titles or " -"other information." -msgstr "" - -# 2dbc53c00d21438791c65c626728f761 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:69 -msgid "" -"**Add New Legend** is for adding a legend, which will conform to the active " -"layer in the QGIS window." -msgstr "" - -# 9f4c0c5ac0c54fce8eb0126f95e6c525 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:72 -msgid "**Add New Scalebar** is used to add a scale to the layout." -msgstr "" - -# 4c175906300a4623a3f4298d50528e26 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:74 -msgid "" -"**Add Ellipse/Triangle/Rectangle** is used to add one of these geometric " -"shapes. For example, this might be used to indicate special areas or " -"highlight things on the map." -msgstr "" - -# b2e28a5caafa4141b840423c862b3c59 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:79 -msgid "**Add Arrow** is used to draw an arrow on the map layout." -msgstr "" - -# bd36208322004c2c831fe596d7b61d55 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:81 -msgid "" -"**Select / Move Item** allows us to choose and move the elements that are in " -"the map layout. With this tool selected, you can right-click on an element " -"to lock its position." -msgstr "" - -# 351ef7de74734085a2fa9695e58a2323 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:88 -msgid "7.2 Adding a New Map" -msgstr "" - -# ec169a7b164c47898f753370b2f5da28 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:90 -msgid "" -"In the Print Composer window, click on the :guilabel:`Add new map` button." -msgstr "" - -# c94d75eb367445eba1d8e96f42a89829 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:96 -msgid "Next, click and drag your mouse across the canvas, creating a box." -msgstr "" - -# 7750223794ae47cd88ac7f2805ec5baa -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:96 -msgid "Your map layout should look similar to this when you are done:" -msgstr "" - -# 1d7802cb69074e3f91d64f3cb48f36a0 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:101 -msgid "" -"If you are not happy with the placement of your map, you can drag the " -"corners to change the size, or drag the entire element around the canvas." -msgstr "" - -# 2e5e0f1a0e944572b6eb635beefd65b4 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:103 -msgid "" -"Once you are happy set the scale of your map by going to the :guilabel:`Item " -"Properties` tab on the right panel." -msgstr "" - -# 9ed8bd026d1e48b393dac68491c03de1 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:108 -msgid "" -"Edit the Scale and press :kbd:`Enter`. You’ll see that the scale (zoom " -"level) of the map element changes. A scale of about 200000 should be good " -"for this project." -msgstr "" - -# be185f4e1e5243e19d5bcacbe7c32a0c -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:110 -msgid "" -"Add a frame clicking the box next to :guilabel:`Frame`. Configure the frame " -"color and border thickness." -msgstr "" - -# 522e5e2121a24c879381a10a086a2eef -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:116 -msgid "" -"When you change the scale some parts of your map may become invisible. Click " -"on the :guilabel:`Move item content` button and drag the map so that it is " -"all visible." -msgstr "" - -# f0aeb75a849447e992309b48d1c5f753 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:123 -msgid "7.3 Adding a Title" -msgstr "" - -# 18870da7954543129e01163e64f335ab -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:125 -msgid "" -"Now we’ve got the most important thing added to our map layout - the map! " -"But let’s add some additional elements to make it more informative." -msgstr "" - -# 7c697b55c15146d59ceb864a832793a8 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:127 -msgid "" -"Let’s add a title to our map. Click on the :guilabel:`Add new label` button." -msgstr "" - -# 29a67bbd800241ce9e07c2432bfb5785 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:132 -msgid "" -"Adjust the size of the element. We will edit the text and the text " -"properties in the panel on the right." -msgstr "" - -# 9392827f204a4020bca0c8868e1b927a -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:134 -msgid "" -"Click the :guilabel:`Font` button and change the text size to 18 and make it " -"bold. Change the aligment to :guilabel:`Center`. Lastly, add the following " -"text, or create your own:" -msgstr "" - -# 3cfa7751004e42be8fc03d47bd67a2e4 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:143 -msgid "Your map layout should now look similar to this:" -msgstr "" - -# 963226199c074165b6e8a12f7c0abecc -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:150 -msgid "7.4 Adding a Scale Bar" -msgstr "" - -# b4dfcf261ad54a3e8829c8bee4fefcb3 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:152 -msgid "" -"Let’s add a scale bar, so that anyone who looks at our map will have an idea " -"what size area this map shows." -msgstr "" - -# 12542969f5e94d4b8946be9e9358942b -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:154 -msgid "Click on the :guilabel:`Add scale bar` button." -msgstr "" - -# 7e936c63168f44d6b5f0c035b254869e -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:159 -msgid "" -"Draw the new scalebar element on your map. A good location for it is in the " -"lower left corner of your map layout." -msgstr "" - -# 9170e42e527f4f4d9d2f1340f970f7cc -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:161 -msgid "" -"Next we need adjust the scalebar options. Since our project is in a PCS " -"(Projected Coordinate System), our measurements are in meters. Enter the " -"following values in the scalebar options:" -msgstr "" - -# b2465c49b46347ad9793c3b591d31be9 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:166 -msgid "This should result in a scalebar that looks like this:" -msgstr "" - -# 50f2e5a8a64a4512a84ef614763d43fc -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:173 -msgid "7.5 Creating a Grid" -msgstr "" - -# e954515a915c4aaea0f629eee9ab019f -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:175 -msgid "Now let’s create a grid for our map." -msgstr "" - -# 7704b451c40e426085e64b8ffca14769 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:177 -msgid "Choose the :guilabel:`Select` tool and click on the map." -msgstr "" - -# 6e6e3571419548e1a00775237fe1cbb6 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:182 -msgid "" -"In the panel on the right you should see the word :guilabel:`Grid`. Click on " -"it." -msgstr "" - -# d906c7ebafc1417bbce481936b518821 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:184 -msgid "Click on the box + and enter the following values:" -msgstr "" - -# 2322a75ac71640aa80c7305bf6feb124 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:189 -msgid "" -"We used coordinate reference systems with UTM (metre) on the project QGIS " -"and all map layers." -msgstr "" - -# 098a60496c1f47bbba0311c20303f5be -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:191 -msgid "" -"Scrool down :guilabel:`Item Properties` dialog and Check the box next to :" -"guilabel:`Draw Coordinates` and enter the following values:" -msgstr "" - -# dfa297be7cb242529997a4c26aeaaa9f -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:196 -msgid "" -"Your map should now have a grid appear over it, which will look something " -"like this:" -msgstr "" - -# aa9c380ad69a483fbd160683d0b066ae -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:203 -msgid "Tips:" -msgstr "" - -# aeee591616bf401da37d1774b17510ee -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:205 -msgid "" -"Play around a little bit with coordinate format. You can change decimal " -"degree as the coordinate fromat or change it into Degree Minute format (DD " -"MM) or Degree Minute Second (DD MM SS)." -msgstr "" - -# 275577fa86db43c085e34399cb7e8f45 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:207 -msgid "" -"You can also adjust the coordinate placement. You can place the text inside " -"or outside the frame, and make the orientation either vertical or horizontal." -msgstr "" - -# 4b4c0578ed0f4fbb9b517397ea715ba4 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:209 -msgid "" -"Change the font type and font size by clicking :guilabel:`Font` in the panel." -msgstr "" - -# c555647988354764a68b08e013e6244f -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:213 -msgid "7.6 Overview Inset" -msgstr "" - -# bcef0757700c4cb8a40646ed035d8995 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:215 -msgid "" -"Next, let’s add an inset that gives viewers of our map a little more " -"information about what they are looking at." -msgstr "" - -# 77cbb28d209243428a0100649a15f404 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:217 -msgid "Click on the Map and go to :guilabel:`Item` tab." -msgstr "" - -# 4358bd4392fb495fb3e5887177d4bec2 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:219 -msgid "Check the box next to Map 0 item to lock the item." -msgstr "" - -# 64cede4e44a642338dc2fd4d49493d5e -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:224 -msgid "Minimize the Print Composer and go back into QGIS." -msgstr "" - -# 5f880af35b524ecd9bc11b8ae9f0c01a -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:226 -msgid "" -"Add the layer :guilabel:`Indonesia.shp`, which is located in **qgis/" -"peta\\_dunia**. Cllick :guilabel:`Zoom Full`." -msgstr "" - -# 98cc4368121e4b3eadfffba22fdf7efa -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:231 -msgid "The new layer will load." -msgstr "" - -# 95562374f4d44b5d8a8bb1a279e08908 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:236 -msgid "" -"Return to the Map Composer and create a new map with the :guilabel:`Add new " -"map` button." -msgstr "" - -# 9eb82305815a445c9b82e27dea29d66d -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:241 -msgid "Draw a small box on the right side of your map layout." -msgstr "" - -# 5e5c3db0c0bc4979876ff5c097f10132 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:243 -msgid "" -"7. The current view of your QGIS project will appear in the new map element " -"(but notice that the old map element doesn’t change. It’s because we locked " -"the Map 0 in :guilabel:`Item` tab). Add a frame for the inset, so it will " -"look like this:" -msgstr "" - -# 6f41904df71b46c59e0fa485b593f68b -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:251 -msgid "7.7 Adding a Legend" -msgstr "" - -# 434f33a39a13462b87b6fb18c916d784 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:253 -msgid "" -"Now let’s add a legend so that viewers of our map will know what our " -"symbology represents." -msgstr "" - -# cc73008255b741efa1972a2d04c037c8 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:255 -msgid "Click on the :guilabel:`Add legend` button." -msgstr "" - -# 94560aebf59343838daab691ce93712e -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:260 -msgid "" -"Draw a box in the remaining empty space on your map layout. You will see a " -"legend with symbologies shown in a list." -msgstr "" - -# 56573e23eaca4aafa326bde9ca8b7ea5 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:262 -msgid "" -"3. In the panel on the right, click on :guilabel:`Legend items`. Uncheck :" -"guilabel:`Auto update` and use the edit button to change the names on the " -"legend. Use the :kbd:`+` and :kbd:`-` buttons to add or remove items from " -"the legend. Choose which elements are important to include." -msgstr "" - -# 027f901e0e44452eaba6674e8baf998d -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:268 -msgid "Our legend look like this:" -msgstr "" - -# e3e48782ff564808a087df741a6a7a8f -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:273 -msgid "When you are finished, your map layout should look similiar to this:" -msgstr "" - -# fa957116383b4978bb89a772540f156f -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:279 -msgid "" -"For save your map composer that you created, you can click on the :" -"menuselection:`Composer > Save Project`.So if you open the project QGIS and " -"you want use map composer that you saved, click on :menuselection:`Project > " -"Print Composer > My Layout 1`" -msgstr "" - -# 870fcd7f27ff4a9798dd63193d2c8dad -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:283 -msgid "7.8 Printing the Map" -msgstr "" - -# e08f87ec51954d939961891d54b48563 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:285 -msgid "" -"Lastly, you can print your map. Simply click the :guilabel:`Print` button " -"and follow the dialog." -msgstr "" - -# 600663e8aca74a8cb992fa38c9a7f97a -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:290 -msgid "You may also save the map as PNG image." -msgstr "" - -# ced815bf2d66424e89d9d4fee6408013 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:295 -msgid "" -"Additionally you can save the map as a PDF, which you can easily send over " -"email or print later when you have a chance." -msgstr "" - -# abcdf141290a4237831e54b01b32151e -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:300 -msgid ":ref:`Go to next chapter --> `" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-08-Using_InaSAFE.po b/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-08-Using_InaSAFE.po deleted file mode 100644 index c37dc146..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/qgis/Chapter-08-Using_InaSAFE.po +++ /dev/null @@ -1,1028 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:03+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:6 -msgid "Chapter 8: Using InaSAFE" -msgstr "" - -# 6a43e49e7f844da0a3b31d0ba4167cb4 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:8 -msgid "**Learning Objectives**" -msgstr "**Objectifs d'apprentissage**" - -# 863bfa89e4634227af8d76b6b8f522c3 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:10 -msgid "Understand Hazard, Exposure and Impact" -msgstr "" - -# 8b68d36545a945c7a15e2c8c259b935f -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:11 -msgid "Learn InaSAFE interface" -msgstr "" - -# a0da77c6e77d4dd6b809f78889705fb3 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:12 -msgid "Run InaSAFE for Infrastructure" -msgstr "" - -# 6ed76ded86cf4fdb88d6c6c776b41215 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:13 -msgid "Use InaSAFE OpenStreetMap downloader" -msgstr "" - -# b12d99d86b1d4c0c99f3acec6df9336a -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:14 -msgid "Add keyword metadata" -msgstr "" - -# 59fcb9234237423ea0ab2d58b4801cb0 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:15 -msgid "Set outline impact analysis" -msgstr "" - -# af6a8eca81b440359814af047f063611 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:16 -msgid "Run InaSAFE for Population" -msgstr "" - -# c4cc23d7d2d24f38bc60296b03a7d73b -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:17 -msgid "Use aggregation layer" -msgstr "" - -# d74f973bf8c04d52b261893640d72d41 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:18 -msgid "Customize minimum needs" -msgstr "" - -# e8864d6adde74d9c8632e94fb767bf24 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:19 -msgid "Print InaSAFE Result" -msgstr "" - -# f1a6997a0bc748a49ae6e11c805d831b -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:20 -msgid "Save Impact Result data into new layer" -msgstr "" - -# ce3972d82a7c439fbac0060b8658da01 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:22 -msgid "" -"InaSAFE provides overviews of potential disaster scenarios, of their " -"outcomes, as well as map which can aid decision makers when disaster " -"strikes. In this chapter we will learn about how to use InaSAFE along with " -"other usefull features in InaSAFE for flood hazard scenario. If you interest " -"to learn more about InaSAFE with other hazard beside flood, you go and learn " -"in `InaSAFE website `_." -msgstr "" - -# e762677092844199a1e05fdc695adcca -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:29 -msgid "8.1 Hazards, Exposure and Impact" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:31 -msgid "" -"Let’s begin by reviewing the inputs and outputs of InaSAFE – **hazard**; " -"**exposure**; and **impact**. These terms are important for you to remember " -"because the analysis process depend on these three things." -msgstr "" - -# 6bf6484971344761b4149388734c55a3 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:35 -msgid "" -"**Hazards** (also called disasters) are what we call the data layers that " -"describe the extent and magnitude of natural events (such as earthquakes, " -"tsunamis, volcanic eruptions) that could potentially cause an event or " -"series of events that threaten and disrupt the lives and livelihoods of " -"people." -msgstr "" - -# 5788f342046649a8a89fcebe7173c848 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:40 -msgid "" -"In general, the hazards data we use in InaSAFE represents a single hazard " -"scenario. A scenario means that the hazard:" -msgstr "" - -# ee970ca1500344e48a235059163729bc -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:43 -msgid "is at a particular location" -msgstr "" - -# 6a27f76b8ba4474f9f8623e494c323ad -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:44 -msgid "has a measured intensity" -msgstr "" - -# d9ce220965de46ac819c74b6e85762ec -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:45 -msgid "has a measured duration" -msgstr "" - -# 892e876531d746a19da3feba0d1059e1 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:46 -msgid "has a certain time frame" -msgstr "" - -# 8617209e7a4540969347140537850b70 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:48 -msgid "" -"**Exposure** data represents things that are at risk when faced with a " -"potential hazard. This can be man-made features such as public buildings, " -"houses, roads and bridges, or it can be so-called natural features, such as " -"population, rice paddies and lakes. These exposed elements can be divided " -"into various categories, including physical elements (houses, power lines), " -"economic elements (agricultural land, access to employment), social elements " -"(vulnerable groups, population count), and environmental elements (air, " -"water, plants and animals)." -msgstr "" - -# 66c515711b53433c9bfe132de2028dbb -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:56 -msgid "" -"**Impact** is the result we get after InaSAFE processes the effect of the " -"hazard data upon the exposure data. For example, if there is an earthquake " -"model in Lembang, and we process it against building data in Bandung, our " -"impact layer may show those houses that would be severely damaged, those " -"somewhat damaged, and those mildly damaged. In other words, what goes in to " -"InaSAFE are hazards and exposure. What comes out is impact." -msgstr "" - -# 7ca918d31348404693ba657b2ea41def -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:63 -msgid "8.2 The InaSAFE Interface" -msgstr "" - -# 029a15cfdf5c4ad8bb218985c6dc950c -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:65 -msgid "" -"Before we run any scenarios, let’s take a closer look at the InaSAFE " -"interface." -msgstr "" - -# 942fe841940d45b9bba082344fde3a24 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:67 -msgid "" -"First, make sure you’ve installed the InaSAFE plugins. Follow the plugin " -"instructions in :ref:`chapter 3 `. Find and install the " -"plugin called InaSAFE." -msgstr "" - -# 41a498a020014dd9a5bb5e7190fd0335 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:70 -msgid "Open a new project in QGIS." -msgstr "" - -# 67b5e2d2968d4dde9840de5dbf46dd32 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:72 -msgid "" -"If the InaSAFE toolbar is not visible, right-click on the toolbars and make " -"sure that :guilabel:`InaSAFE` plugin is checked. The toolbar looks like this:" -msgstr "" - -# 3de4eb85f17b4f55b53431d30d2bdc1d -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:78 -msgid "" -"To show the InaSAFE panel, click on the :guilabel:`Toggle InaSAFE dock` " -"button." -msgstr "" - -# 2f0f82b3ac414a9fb8c43071072ce5b5 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:83 -msgid "" -"Just like QGIS toolbars, you can drag and drop the InaSAFE dock panel to " -"change its position on the QGIS interface. You can pull it away as a " -"separate window, or place it below the Layers panel. It’s convenient in its " -"location on the right side of QGIS, so we will leave it there." -msgstr "" - -# c1e343b43e5448d19bfc16d5ef1d7894 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:91 -msgid "" -"The InaSAFE panel consists of three parts: Questions, Results and Buttons. " -"The questions are mixed in with dropdown boxes - this is where we establish " -"our input data and define the scenario that we want InaSAFE to process. The " -"purpose of InaSAFE is to make your impact analysis very simple and easy to " -"do. The Questions section provides a simple way for you to formulate what " -"you want to know. All questions are created in the following format:" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:97 -msgid "In the event of [**hazard**] how many [**exposure**] will be affected?" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:99 -msgid "" -"For example: \"In the event of an earthquake how many buildings will be " -"affected?\"" -msgstr "" - -# 66c7096964ea4be89ed6ed6ded78e4c9 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:101 -msgid "" -"The Results section is filled in with information after InaSAFE is run, as " -"we shall see. The buttons at the bottom allow us to run a scenario, print " -"and access help." -msgstr "" - -# cc0ffdd6c967404f8b5a9236801f782a -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:105 -msgid "8.3 Run InaSAFE for Infrastructure" -msgstr "" - -# 7bf4196fb9cc420e84e900b52b30664c -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:108 -msgid "8.3.1 Adding Hazard Data" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:110 -msgid "" -"We will learn about how to use InaSAFE to run impact scenario based on " -"Infrastructure data. Before we start, let's find out how to add hazard data " -"first. Hazards can be represented by vector layers or by raster layers. " -"Remember that raster layers are like images with many pixels, and each pixel " -"represents some data about an area on the ground. A raster that shows " -"elevation, for example, will contain pixels with different values based on " -"the altitude of the location. Similarly, a raster that represents a flood " -"will contain the depth of the flood in every pixel in the raster." -msgstr "" - -# aa364b7ac05e49f9acf233755fd09768 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:118 -msgid "" -"Let’s begin by adding our hazard layer to QGIS. It’s a raster model of flood " -"in Jakarta." -msgstr "" - -# f7020fa33c8a4bddadb3ae93a548e998 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:120 -msgid "Click the :guilabel:`Add Raster Layer` button." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:125 -msgid "" -"Open :file:`Jakarta_Flood_HKV_WGS84.tif`. This data is raster data (in .tif " -"format) which represents the flood prone area. The layer will look like this:" -msgstr "" - -# de785c5b329241fcae9d648fa81c51d2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:131 -msgid "" -"You will notice that the hazard drop-down box has been automatically filled " -"in the InaSAFE panel. This is because the data file has already been " -"prepared for us with keyword metadata (fancy words for settings) that tells " -"InaSAFE whether it’s a hazard or exposure layer. When we add the exposure " -"data, we will learn how to add these InaSAFE keywords ourselves." -msgstr "" - -# 6610c406133347948bd5cf54faf3bcbc -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:137 -msgid "8.3.2 Adding Exposure Data" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:139 -msgid "" -"We can get the data from OpenStreetMap using OpenStreetMap Downloader. We " -"will get any OpenStreetMap data based on the current map extent in QGIS. If " -"your map extent displaying Indonesia, that will take a while to download it " -"since there will be a whole lot of OpenStreetMap data. It would be better to " -"zoom in in specific location to minimize the bandwidth. Let’s learn how to " -"use OpenStreetMap Downloader in QGIS to get OpenStreetMap data." -msgstr "" - -# d96dfc29f9754c65ad86ff7746d10d21 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:145 -msgid "Click on :guilabel:`OpenStreetMap Downloader` button." -msgstr "" - -# fad061036e9449b698b720c6dcc3adcc -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:150 -msgid "" -"In the *Feature Types* you can choose all the OpenStreetMap data or specific " -"data that you want download such as :guilabel:`building polygons` and :" -"guilabel:`Roads`. Also you can download :guilabel:`political boundaries` and " -"select level administration in your area such as RW Jakarta is level 8." -msgstr "" - -# dfdbf074c8ca40a7bd9c1e9cd3879c22 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:155 -msgid "" -"Set you *output directory* to the destination you want by clicking “…” " -"button on the right side." -msgstr "" - -# 49e36c56d3114227b464e3d13aef470e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:160 -msgid "" -"If you want to use some prefix, for example :kbd:`jakarta` you can type in :" -"guilabel:`File name prefix` area." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:163 -msgid "" -"We can download all the map canvas extent but it would take a long time. " -"Otherwise if you want to download specific area, click on :guilabel:`Drag on " -"Map` button and create a bounding box by dragging it to set download area." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:167 -msgid "Click on :guilabel:`OK` and wait until the download is finished." -msgstr "" - -# 854ad4e553d640dfb339e5605aafa1bc -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:172 -msgid "" -"You can hide the **Roads** by clicking the box next to :guilabel:`Roads` " -"layer list." -msgstr "" - -# 94276b31ae7441589dd60a241932008b -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:175 -msgid "8.3.3 Adding Keyword Metadata" -msgstr "" - -# b6366d960af24ee19fe2e8edde87beaf -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:177 -msgid "" -"In order for InaSAFE to know that our layers are hazard or exposure " -"datasets, we need to assign keywords to the layers using the InaSAFE keyword " -"tool. Let’s take a look at the keywords that have already been created on " -"the hazard layer." -msgstr "" - -# d636901fc1d249c3aebd3d955f7fc825 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:181 -msgid "" -"Select the :guilabel:`buildings` layer in the Layers panel, and click on " -"the :guilabel:`Keywords Creation Wizard` button." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:187 -msgid "" -"In the *InaSAFE Keywords Creation Wizard* window, firstly, choose :guilabel:" -"`Exposure` since building is one of the exposure affected by hazard. Then, " -"click :guilabel:`Next`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:193 -msgid "" -"In the next step, we have to choose what kind of exposure the building layer " -"represents. Choose :guilabel:`Structures` and then click :guilabel:`Next`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:196 -msgid "" -"Choose what kind of data the building layer represents. Since the building " -"layer data has been classified, choose :guilabel:`Classified` and then " -"click :guilabel:`Next`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:199 -msgid "" -"In the next step, we have to select the attribute in the building layer that " -"represents the classes. Then click :guilabel:`Next`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:202 -msgid "" -"Select the type of classification we want to use and then click :guilabel:" -"`Next`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:204 -msgid "" -"Drag unique values from the list on the left into the panel on the right and " -"place them in the appropriate categories and then click :guilabel:`Next`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:207 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:323 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:360 -msgid "" -"The next step is optional. We can write a short comment about the source of " -"the data. Then click :guilabel:`Next`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:209 -msgid "Give title to the building layer and then click :guilabel:`Next`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:211 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:327 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:364 -msgid "Click :guilabel:`Finish`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:213 -msgid "" -"Select the :guilabel:`Roads` layer. Open the keyword editor and do the steps " -"above all over again." -msgstr "" - -# 54c6130be3b74db69c8dd2026c0d5d3b -# 17f9858ec40a4da7a0da46be1fbea8c6 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:215 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:329 -msgid "Notice that the layer now appears in the InaSAFE panel." -msgstr "" - -# 33c9f7596a244968a1e0d915ad5d4ac1 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:221 -msgid "8.3.4 Set Outline Impact Analysis" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:223 -msgid "" -"If you have a laptop with small RAM, run InaSAFE for large area with so many " -"data will take a long time to finish. To solve the problem, we can set the " -"analysis area to a smaller area to make the analysis quicker." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:227 -msgid "" -"Select :guilabel:`Toggle Scenario Outlines` to show analysis outline area." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:232 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:379 -msgid "Green box will appear around the map canvas." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:237 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:384 -msgid "" -"This green box is the analysis area. InaSAFE will calculate all the data " -"inside the green box." -msgstr "" - -# 18c5e5f70143468288cad7f249eff409 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:239 -msgid "" -"To change the analysis area, click :guilabel:`Set analysis area` button." -msgstr "" - -# 52f9e47ced3b4258800e6343d818a565 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:244 -msgid "" -"Click :guilabel:`Use intersections of hazard, exposure and this bounding " -"box` and click on :guilabel:`Drag on map` button and create a box to set " -"analysis area. This will create blue box around map canvas." -msgstr "" - -# 87c33159809d4a45ae4cb971670f782f -# 06e7e81e68984edb8cff2de5b3520b0e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:251 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:397 -msgid "After that click :guilabel:`OK`." -msgstr "" - -# 3d113f2856f644729f4d942d2fd546b1 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:254 -msgid "8.3.5 Impact Analysis" -msgstr "" - -# 904e9dbe8ed2441b88c0fe520f3a91c2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:256 -msgid "" -"Now our hazard and exposure data are set in the InaSAFE panel, because the " -"appropriate keywords have been added to our layers. Note that if we were to " -"add a second exposure layer to our project, we would be able to choose which " -"exposure layer we wanted from the InaSAFE drop-down menu. The same applies " -"to hazard layers." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:262 -msgid "" -"The third drop-down box is the impact function. This concludes our question, " -"and defines the function that InaSAFE will run behind the scenes. InaSAFE " -"developers have written many of these functions to analyse all sorts of " -"hazard and exposure layers. The function that is selected for us here will " -"process the hazard and exposure layers spatially to determine how the " -"exposure layer will “be flooded.”" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:268 -msgid "" -"Click the :guilabel:`Run` button at the bottom to start the impact analysis. " -"At the end of the process, the statistics will be displayed in the Results " -"section, and a new layer will be added to the Layers panel that describes " -"the result of the analysis. The map will show which buildings that are " -"affected and which are not." -msgstr "" - -# 21ab84b1e89f4bf6bc7aef270802b341 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:277 -msgid "8.4 Run InaSAFE for Population" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:279 -msgid "" -"In this section we will learn how to run impact analysis for population data " -"with InaSAFE. We are going to use the same raster hazard data for flood in " -"Jakarta and we will add another exposure data: population from AsiaPop." -msgstr "" - -# c41b1f3822f441c2b5aaee415cbaa569 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:284 -msgid "8.4.1 Adding Exposure Data" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:286 -msgid "" -"We have already learned about how to change the symbol for this data in " -"previous chapter (chapter 6), so if the appearance of this AsiaPop’s data is " -"different than yours, you may need to change it." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:290 -msgid "" -"Click :guilabel:`Add Raster Layer` button and add :file:" -"`Java_Population_WGS84.tif`." -msgstr "" - -# f8a32a99d6604768871410a94220c775 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:292 -msgid "Change the layer order like this:" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:297 -msgid "" -"You can hide the vector data such as roads and buildings to create clearer " -"view in map canvas." -msgstr "" - -# a6b9d8131af94bdd86e87b901eec5845 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:300 -msgid "8.4.2 Adding Keyword Data for Population" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:302 -msgid "" -"Select the **Java_Population_WGS84** layer in the Layers panel, and click on " -"the :guilabel:`Keywords Creation Wizard` button." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:308 -msgid "" -"In the *Keywords Creation Wizard* window choose :guilabel:`Exposure` as " -"category layer, then click :guilabel:`Next`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:313 -msgid "" -"In the next step, we have to choose what kind of exposure the population " -"layer represents. Choose :guilabel:`Population` and then click :guilabel:" -"`Next`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:316 -msgid "" -"Choose what kind of data the building layer represents. Choose :guilabel:" -"`Continuous` and then click :guilabel:`Next`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:318 -msgid "" -"We have to choose what units the continuous data are in. Then, click :" -"guilabel:`Next`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:320 -msgid "" -"In the next step, we can select the checkbox if we want InaSAFE to resample " -"the layer to the hazard layer resolution during analyses. Then, click :" -"guilabel:`Next`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:325 -msgid "" -"We can fill the :guilabel:`Title` with :kbd:`People` and then click :" -"guilabel:`Next`." -msgstr "" - -# 021d9d8ee163436b8d6ad6d28ae08ded -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:335 -msgid "8.4.3 Using boundary as aggregation layer" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:337 -msgid "" -"We can use InaSAFE to give impact result according to the whole area or " -"divide it by administrative boundary. InaSAFE will provide impact analyst " -"result for each administration area that we provide. This method will help " -"us to know the result specifically for each area, so we are able to know how " -"many people that might be affected and how many logistic we should prepare " -"for each administration area. To do this, we need to define aggregation " -"layer first using :guilabel:`Keyword Creation Wizard`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:344 -msgid "" -"Click :guilabel:`Add Vector Layer` button and add :file:" -"`Jakarta_District_Boundary_WGS84.shp`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:346 -msgid "" -"Select the :file:`Jakarta District.shp` layer in the Layers panel, and click " -"on the :guilabel:`Keywords Creation Wizard` button." -msgstr "" - -# 9923c26a84154a1f8afc2f344fb8e770 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:349 -msgid "" -"In the *Keywords Creation Wizard* window choose aggregation as category " -"layer." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:354 -msgid "" -"Select the attribute in the layer that has the name of the aggregation " -"areas. Then click :guilabel:`Next`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:357 -msgid "" -"Choose the field in the layer that represents specified concept of field or/" -"and set default value if there is no value and then click :guilabel:`Next`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:362 -msgid "" -"We can fill the :guilabel:`Title` with :kbd:`District Jakarta` and then " -"click :guilabel:`Next`." -msgstr "" - -# 89367be13d034901adb24897d0f8858d -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:367 -msgid "8.4.4 Set Outline Analysis" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:369 -msgid "" -"We have already set the analysis area for imapct calculation for the " -"building. This time we will set the analysis area for population data." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:372 -msgid "" -"Right click on :guilabel:`A flood similar to the 2007 Jakarta event` layer " -"and click :guilabel:`Zoom to Layer`" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:374 -msgid "" -"Select :guilabel:`Toggle Scenario Outlines` to show the analysis outline " -"area." -msgstr "" - -# 1b9839425de346bfae40d247a5fcecfe -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:386 -msgid "To change the analysis area, click *Set analysis area* button." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:391 -msgid "" -"Click :guilabel:`Drag on map` button and create a box to set around the **A " -"flood similar to the 2007 Jakarta event** area. This will create a blue box " -"around map canvas." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:399 -msgid "" -"We will run InaSAFE with Jakarta boundary as aggregation layer. To do this, " -"simply change :guilabel:`Summarise the result by` in the InaSAFE panel into " -"district boundary." -msgstr "" - -# 9dcd26bf6b424010bcdf64b8cf2c0b65 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:405 -msgid "" -"Now click, :guilabel:`Run` to calculate impact analysis and wait for a " -"moment." -msgstr "" - -# 5e65788dae974792933a0d6676348631 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:410 -msgid "" -"You will get impact result in the InaSAFE panel in the right side divided by " -"5 municipal in Jakarta." -msgstr "" - -# c96beac937394d7cad3f28d1b9df3897 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:417 -msgid "8.4.5 Configure Minimum Needs" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:419 -msgid "" -"When you scroll impact result from running InaSAFE scenario, you will notice " -"that there are some statistic that show how many rice, drinking water, clean " -"water, family kits and toilet for each municipals in Jakarta. It's called " -"minimum needs per week for each people evacuated. The purpose of this " -"minimum needs is to provide quick method calculating support requirements " -"(in terms of food, water, etc) for displaced persons." -msgstr "" - -# c4dd3dd4dcdc4fa1bc7174fcaf1476af -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:425 -msgid "" -"The minimum needs (by default) are based on ‘Perka 7/2008’ BNPB according to " -"the following default formulas:" -msgstr "" - -# 8c731cc666734e0c87feaefa4dc30d84 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:428 -msgid "400g rice per person per day (2.8 kg per week)" -msgstr "" - -# 4a711bc4029a4308aec3cb2abe9c34df -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:429 -msgid "2.5l drinking water per person per day (17.51 L per week)" -msgstr "" - -# 8f5ed1565c354288b5d640a1615cd0cf -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:430 -msgid "15l clean water per person per day (105 L per week)" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:431 -msgid "" -"One family kits per family per week (assumes five people per families which " -"is not specified in perka)" -msgstr "" - -# 278ce869883f44caa193ab465644762e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:433 -msgid "20 people per toilet" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:435 -msgid "" -"If you are not satisfied with these configuration, you can define your " -"custom minimum needs for your own area using *Minimum Needs Configuration*" -msgstr "" - -# 874e2996217a4e72990359c9b83041d2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:438 -msgid "" -"Click in :menuselection:`Plugin → InaSAFE → Minimum Needs Configuration`" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:443 -msgid "" -"*Minimum Needs Manager* Window will appear. You can see in the :guilabel:" -"`Profile` selection there are 4 profile defined, **BNPB_en**, **Philippine " -"Minimum Needs_en**, **BNPB_id**, **SPHERE**, and **Tanzania**." -msgstr "" - -# 2c543278d8254af3b43c17849557a2fd -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:450 -msgid "" -"If you want to change the default minimum needs for each item in each " -"profile, simply select an item that you want to change and click" -msgstr "" - -# 8ce0dada049b49f38e49f88767ae6d56 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:456 -msgid "button in the right upper side of the window." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:458 -msgid "" -"You will enter *Resource editor* and from these editor, you can add or " -"modify resource by filling each field that you think is important." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:461 -msgid "" -"Click :guilabel:`Save Resource` if you have already changed the value from " -"an item or click :guilabel:`Discard Changes` if you didn’t change anything." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:464 -msgid "" -"If you want to create your own custom minimum needs, click :guilabel:`New` " -"in the bottom side of the window and you can start adding new item by " -"clicking the :guilabel:`+` button in the right upper side of the window to " -"open *Resource editor.*" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:468 -msgid "" -"Click :guilabel:`Save` after adding several items to your custom minimum " -"needs." -msgstr "" - -# afbf2dfb31734cb5949e60da9ad389fb -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:471 -msgid "8.4.6 Run Impact Analyst with Modified Minimum Needs" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:473 -msgid "" -"After creating your custom minimum needs you can run InaSAFE with your own " -"minimum needs:" -msgstr "" - -# 59c1f7f896534007b5d97d11ba5d63e8 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:475 -msgid "Go to :menuselection:`Plugins ‣ InaSAFE ‣ Minimum Needs Configuration`" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:477 -msgid "" -"In *Minimum Needs Manager* Window, select your custom profile in Profile " -"selector. After that, close the *Minimum Needs Manager* Window." -msgstr "" - -# 1fae5c91c3c749f08bb8c7ab1154e59d -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:480 -msgid "" -"Click :guilabel:`Run` to see the InaSAFE result with your custom minimum " -"needs." -msgstr "" - -# 77b8bd62a3004ea98aafcc3a4ba5a06e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:483 -msgid "8.5 Print InaSAFE Result" -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:485 -msgid "" -"The data displayed on the screen can be saved to a PDF file by clicking :" -"guilabel:`Print` at the bottom of the InaSAFE panel." -msgstr "" - -# ef610b6fdd3b45ad976f4df5226dd682 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:488 -msgid "Click on the InaSAFE result layer and click :guilabel:`Print`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:490 -msgid "" -"The analysis results will automatically open in pdf format. If you want to " -"print it, click File -- Print or if you want to save it click File -- Save " -"As." -msgstr "" - -# fc7c4ff4a198497695e9b89665f91a5e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:494 -msgid "8.6 Save Your Results" -msgstr "" - -# d1cd2e09b1ca4134acfb8ba07a2407ab -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:496 -msgid "" -"You can save the impact layer that InaSAFE created, and you can save the " -"QGIS project to come back to it later, but note that the InaSAFE’s symbology " -"style cannot be saved. It will show you only black and white layer and you " -"need to symbolise again." -msgstr "" - -# 4c9b222d908447b0a7a785572fa12aea -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:501 -msgid "8.6.1 Save your InaSAFE result style" -msgstr "" - -# 850c4125c60f4d189d687b283187d88f -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:503 -msgid "" -"To get the style from your InaSAFE result, you need to save the InaSAFE " -"result’s style first." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:505 -msgid "" -"Right click on :guilabel:`Number of People`, and go to :guilabel:" -"`Properties`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:508 -msgid "" -"Go to :guilabel:`Style` button on the bottom side the properties window, " -"click :guilabel:`Save Style` and choose :guilabel:`QGIS Layer Style File …`." -msgstr "" - -# bf2f6b1456ba4dc0b4009950be6134c2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:514 -msgid "" -"Save your symbology style as :kbd:`population_result_style` and click :" -"guilabel:`Save button`." -msgstr "" - -# bfb1672fcc9b4a7fa75daf9eca085804 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:519 -msgid "" -"To save the newly generated layer, right-click on it in the Layers panel. " -"Click :guilabel:`Save As …`" -msgstr "" - -# 0944f84bc6ba4bd4a3452c1108dd9fc4 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:523 -msgid "8.6.2 Save InaSAFE Result layer" -msgstr "" - -# 65f60ecaaa1c454483558d9c3e82a082 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:525 -msgid "" -"After you saved your InaSAFE result style now you can save your InaSAFE " -"result layer and get the same style like the InaSAFE Result." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:528 -msgid "" -"Right click on :guilabel:`Number of People`, and go to :guilabel:`Save As…`" -msgstr "" - -# 727deb48e7154782a67b621432068ac2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:531 -msgid "" -"Click on :guilabel:`Browse` button and select a name and location for the " -"file. Click :guilabel:`OK`." -msgstr "" - -# 7cbbd4006ab7491ca8db00297e113ee7 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:534 -msgid "Load your saved layer using :guilabel:`Add Raster Layer` button." -msgstr "" - -# ba149d49c5ca4dcdaef48f0ccbcdf2e9 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:536 -msgid "" -"You will see black and white layer in map extent. Open the properties of " -"your saved layer to resolve this." -msgstr "" - -# c1a2324977024427b3a153e82606634d -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:539 -msgid "" -"Go to :guilabel:`Style` button on the bottom side the properties window and " -"click :guilabel:`Load Style…`" -msgstr "" - -# ee7393311f0f4d5db1b70a5369cc4eb2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:545 -msgid "" -"Select your :file:`population_result_style` and click :guilabel:`Open` " -"button." -msgstr "" - -# e363b7cd4ee7430b8744b3718d866e19 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:547 -msgid "" -"Now your saved layer will have the same style with your temporary InaSAFE " -"result layer." -msgstr "" - -# ebb6bff1ad454c5a9b607052b29e1d00 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:549 -msgid "" -"To use this style as default style you can click :guilabel:`Save as Default` " -"under :guilabel:`Style` button." -msgstr "" - -# f31cddc41395430fba19da6dc2874fc4 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:556 -msgid "8.6.3 Save Project" -msgstr "" - -# ca24adc8eb5e46138028f0dfbee254c0 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:558 -msgid "Click :guilabel:`Save As` button in toolbar." -msgstr "" - -# 2bb3e793786b493a8a2d61ad988fbfcf -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:563 -msgid "" -"Give a name to the project and put it in the directory where you want to " -"save your work. Then click :guilabel:`Save`." -msgstr "" - -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:569 -msgid "" -"Now you have learned about how to use InaSAFE from using InaSAFE Keyword " -"Wizard to define keyword attribute, how to run InaSAFE with InaSAFE dock and " -"Impact Function Wizard, how to modify minimum needs, and how to use OSM " -"Downloader to download OpenStreetMap data directly. InaSAFE is really " -"helpful for us to know the impact of disaster and how we can create some " -"plans if the disaster were to happen in real life." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/socialisation/datasets.po b/docs/i18n/fr/LC_MESSAGES/training/socialisation/datasets.po deleted file mode 100644 index ecbf3014..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/socialisation/datasets.po +++ /dev/null @@ -1,1037 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:04+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 36010ba007eb41a4990cf90a641782b0 -#: ../../source/training/socialisation/datasets.rst:4 -msgid "Datasets" -msgstr "" - -# e983d89a332544f79a70ee6f30adfa99 -#: ../../source/training/socialisation/datasets.rst:5 -msgid "" -"The data used in this course is available for download at `data.inasafe.org " -"`_. Ask your trainer what data you will need to " -"download for the course, if it is not provided." -msgstr "" - -# ed67dfe299154f77a038f9c2bf6c2b55 -#: ../../source/training/socialisation/datasets.rst:9 -msgid "" -"If you are working through the training independently, use the following " -"data packages:" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:12 -msgid "" -"`Introduction to QGIS.zip `_" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:13 -msgid "" -"`Run Basic InaSAFE.zip `_" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:14 -msgid "" -"`Run Intermediate InaSAFE.zip `_" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:15 -msgid "" -"`Other Hazards.zip `_" -msgstr "" - -# 3b74b71ab3b14971aaaa77f6af53bcd2 -#: ../../source/training/socialisation/datasets.rst:18 -msgid "Hazard data" -msgstr "" - -# 2dfc4e49849d489da14b1d6a287e3936 -#: ../../source/training/socialisation/datasets.rst:20 -msgid "Flood Model" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "File name" -msgstr "" - -# 3482c3edd3de4024a9b9813d9bbc5cc2 -#: ../../source/training/socialisation/datasets.rst:22 -msgid "Jakarta_Flood_HKV_WGS84.tif" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Training data" -msgstr "" - -# 83a1c82904364457b1bea91669f681a5 -#: ../../source/training/socialisation/datasets.rst:23 -msgid "A flood similar to the 2007 Jakarta event" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Geometry" -msgstr "" - -# 8f31b6f225884fd98ef3206f9adfef5d -# c3af48e8b9c14fd6a5fe1cc82828d45e -# f56b67e74a6341b599f306fa09298778 -# 71c115fcfe474a86a05fd25ec7b43227 -#: ../../source/training/socialisation/datasets.rst:24 -#: ../../source/training/socialisation/datasets.rst:72 -#: ../../source/training/socialisation/datasets.rst:100 -#: ../../source/training/socialisation/datasets.rst:237 -msgid "Raster" -msgstr "Raster" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Data Type" -msgstr "" - -# d354d5f099854c5b9da8e6b9795b87fb -# 1bd5dbb079214d6b9f8e0b6d77d3c131 -# 8b471e7ae400467e99360e3356da7d12 -# d2a1e8d3d6524b4cb0b7485afc1d6066 -#: ../../source/training/socialisation/datasets.rst:25 -#: ../../source/training/socialisation/datasets.rst:73 -#: ../../source/training/socialisation/datasets.rst:101 -#: ../../source/training/socialisation/datasets.rst:238 -msgid "Continuous" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Scenario" -msgstr "" - -# 21f6496f550f4e128547716930f216b2 -# aaeac556086648ed86c7b58b5807655a -# b86269697fe7452292fbe8c8bb29b7b8 -# 73cca060c9ad4372a08d829594b0081e -# 97c93d46df094e77a53923e10d3e33a6 -# 0a96e906f9d643acba1bc35dac49c375 -#: ../../source/training/socialisation/datasets.rst:26 -#: ../../source/training/socialisation/datasets.rst:50 -#: ../../source/training/socialisation/datasets.rst:74 -#: ../../source/training/socialisation/datasets.rst:102 -#: ../../source/training/socialisation/datasets.rst:178 -#: ../../source/training/socialisation/datasets.rst:201 -msgid "Single event" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Unit" -msgstr "" - -# 149e8ffb6e764840b1edccba96b2666a -#: ../../source/training/socialisation/datasets.rst:27 -msgid "metres" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Source" -msgstr "" - -# 71423240e7dd4da4b533e82e993b5964 -#: ../../source/training/socialisation/datasets.rst:28 -msgid "HKV" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "URL" -msgstr "" - -# 54be83fd656a41809f13f485a241669c -#: ../../source/training/socialisation/datasets.rst:29 -msgid "http://deltares.nl" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Date" -msgstr "" - -# 8db6ca876b79414a949513b606b91945 -# bb435b5eeb594694b3d76b619040bdfe -# e3dfc78fa1ad4741b1d57b968510fac6 -#: ../../source/training/socialisation/datasets.rst:30 -#: ../../source/training/socialisation/datasets.rst:77 -#: ../../source/training/socialisation/datasets.rst:104 -msgid "2012" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Licence" -msgstr "" - -# 6e92a0b0135b4b618efee53552d7d935 -# c86d51d8f3ff403fa6db1633d14d3314 -# 57c4f2d9a4934c4cb7d29c2cd73baf04 -# 9047e418091a4132a6b1bbcefcc20aec -# 5cc543869f6e437da56fba93737f69a1 -#: ../../source/training/socialisation/datasets.rst:31 -#: ../../source/training/socialisation/datasets.rst:55 -#: ../../source/training/socialisation/datasets.rst:78 -#: ../../source/training/socialisation/datasets.rst:105 -#: ../../source/training/socialisation/datasets.rst:243 -msgid "" -"`Creative Commons by Attribution (CCbyA) `_" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Coverage" -msgstr "" - -# 8b3f3a12cda1444e804612f75f88284d -# f854b2b4571b454aadda00b02aa011bd -# 4ecc58d623c24a0a8a3642b9b81e8b91 -# 34a8d76958b64b8eaa3af2f166425b5b -# a99b2152cf1f4bdd9b69a62cbc18df65 -# afd4f76343504231bb1046a762f0aa45 -# cebe3920a6e74ef1a70ccd9d5832e4f3 -# 18f6bdd888194fa196dc1c8396615b0b -#: ../../source/training/socialisation/datasets.rst:0 -#: ../../source/training/socialisation/datasets.rst:32 -#: ../../source/training/socialisation/datasets.rst:56 -#: ../../source/training/socialisation/datasets.rst:265 -#: ../../source/training/socialisation/datasets.rst:266 -#: ../../source/training/socialisation/datasets.rst:309 -#: ../../source/training/socialisation/datasets.rst:375 -#: ../../source/training/socialisation/datasets.rst:402 -#: ../../source/training/socialisation/datasets.rst:403 -msgid "Jakarta" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Description" -msgstr "" - -# d70ec1b1dfd4424f85019618f1c9ea30 -#: ../../source/training/socialisation/datasets.rst:33 -msgid "" -"The flood model was created by scientists/engineers in coordination with DKI " -"Jakarta Public Works based on the 2007 flood conditions. The water depth is " -"the maximum depth occurring across the entire flooding period." -msgstr "" - -# 4c064772e98445329faed23ded14aee8 -#: ../../source/training/socialisation/datasets.rst:44 -msgid "Flood Footprint" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:46 -msgid "Jakarta_Flood_18113_WGS84.shp" -msgstr "" - -# 0647ac50a2ec4cefb1503b753af32704 -#: ../../source/training/socialisation/datasets.rst:47 -msgid "A flood in Jakarta like 2013" -msgstr "" - -# cbdf09ed623b446f92d63407ee0b4b50 -# da97b471f1294e10bf082fa20df91193 -# a4a45d45937c4924acf9e476e0170395 -# 0bf12b1fb06d4cc7bdce602c88d25348 -# f9be5d2b9dc94edab737b56fec44ea96 -#: ../../source/training/socialisation/datasets.rst:48 -#: ../../source/training/socialisation/datasets.rst:128 -#: ../../source/training/socialisation/datasets.rst:176 -#: ../../source/training/socialisation/datasets.rst:199 -#: ../../source/training/socialisation/datasets.rst:386 -msgid "Polygon" -msgstr "" - -# d4d800075769493b8fc528a57af28cb6 -# 12b87bf9b81843cd905def804ebf9aab -# b562f43657eb4d0ea9b25edb827269b3 -# 4a77bd00a27b460d992c3fd45205abee -# e3d0f1af688e487a9ac7de1c7726d117 -# 308befd0204142d7a112cd6b0342feb6 -# 93b45815f08941b9ab3197dba46551f3 -# ed83577125e041689c3438abffc29055 -#: ../../source/training/socialisation/datasets.rst:49 -#: ../../source/training/socialisation/datasets.rst:129 -#: ../../source/training/socialisation/datasets.rst:153 -#: ../../source/training/socialisation/datasets.rst:177 -#: ../../source/training/socialisation/datasets.rst:200 -#: ../../source/training/socialisation/datasets.rst:277 -#: ../../source/training/socialisation/datasets.rst:350 -#: ../../source/training/socialisation/datasets.rst:387 -msgid "Classified" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Attribute field" -msgstr "" - -# bca5770b8fdc4bdaaadfed12767505b5 -#: ../../source/training/socialisation/datasets.rst:51 -msgid "FLOODPRONE" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Attribute value map" -msgstr "" - -# 424e841f79ac4d3da1ddfe544f15ec9e -#: ../../source/training/socialisation/datasets.rst:52 -msgid "Wet (Yes), Dry (No)" -msgstr "" - -# 7046bbd47503481383981b566daecc3c -#: ../../source/training/socialisation/datasets.rst:53 -msgid "|OSM| and BPBD DKI Jakarta" -msgstr "" - -# 524ec28bc5e841f4ab7c5ed923a975fa -#: ../../source/training/socialisation/datasets.rst:54 -msgid "18 January 2013" -msgstr "" - -# 38012497a7204439baead6e0ce799f72 -#: ../../source/training/socialisation/datasets.rst:57 -msgid "" -"Along with sub-village boundaries that were mapped during the DKI mapping " -"project, this dataset was used to identify flood areas based on information " -"provided by the villages." -msgstr "" - -# d216a69e89644cceb05ea524ec2da149 -#: ../../source/training/socialisation/datasets.rst:68 -msgid "Earthquake" -msgstr "" - -# cea1c54c57c84170995439ef2260ab9b -#: ../../source/training/socialisation/datasets.rst:70 -msgid "Padang_EQ_2009_WGS84.tif" -msgstr "" - -# e77643b6c6744f6a8485fe193346d140 -#: ../../source/training/socialisation/datasets.rst:71 -msgid "Earthquake in Padang 2009" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Data type" -msgstr "" - -# 3cabb942c1b2471da6d03c3bba736ff1 -#: ../../source/training/socialisation/datasets.rst:75 -msgid "MMI" -msgstr "" - -# 1a71cca2cfb3418185e392363a270048 -#: ../../source/training/socialisation/datasets.rst:76 -msgid "Badan Geologi and |GoA|" -msgstr "" - -# ba33bef128f2438489e58f0e2d1978aa -# 047274b9d43549b0bab303d8ccf6f6a6 -# c01b7b7ff62947298c61a0a053cf8fe0 -# 5c96d632622040d89986538d3a7b7080 -#: ../../source/training/socialisation/datasets.rst:0 -#: ../../source/training/socialisation/datasets.rst:79 -#: ../../source/training/socialisation/datasets.rst:267 -#: ../../source/training/socialisation/datasets.rst:310 -#: ../../source/training/socialisation/datasets.rst:406 -msgid "Padang" -msgstr "" - -# 4cad55996668433ca5ef2181abacf171 -#: ../../source/training/socialisation/datasets.rst:80 -msgid "" -"A shakemap is a representation of ground shaking produced by an earthquake. " -"This particular scenario was modelled on the 30th September 2009 Mw 7.9 " -"earthquake in Padang. ShakeMaps are generated automatically following " -"moderate and large earthquakes by USGS. For more information go to " -"http://earthquake.usgs.gov/earthquakes/map/. Pre-event / scenario based " -"shakemaps must be modelled by earthquake specialists." -msgstr "" - -# 463862cbc6784e04a6fbf0ef5950693b -#: ../../source/training/socialisation/datasets.rst:96 -msgid "Tsunami" -msgstr "" - -# 7d8dd7658f48433494797d30c79661c0 -#: ../../source/training/socialisation/datasets.rst:98 -msgid "Maumere_Tsunami_WGS84.tif" -msgstr "" - -# 8d1e2dcf155044c29f07ad553578cbfa -#: ../../source/training/socialisation/datasets.rst:99 -msgid "Tsunami in Maumere (Mw 8.1)" -msgstr "" - -# 88ddc799e260421089e61f00e26a4d86 -#: ../../source/training/socialisation/datasets.rst:103 -msgid "|GoA| and Badan Geologi" -msgstr "" - -# 4cf325caf78f4567b8c4bed275227bf9 -#: ../../source/training/socialisation/datasets.rst:106 -msgid "Maumere, Flores" -msgstr "" - -# fe83097656694d648615797f9d35f4ad -#: ../../source/training/socialisation/datasets.rst:107 -msgid "" -"In September 2011, the Indonesian government held a national exercise in " -"Maumere, Flores. |AIFDR| and |GoA| assisted Badan Geology to develop a " -"tsunami model for Maumere based on an Mw 8.1 earthquake. The Tsunami was " -"modelled using open source software called ANUGA and elevation data from " -"NEXTMap. The water depth is the maximum depth occurring across the entire " -"tsunami event. For more information visit http://anuga.anu.edu.au/ and " -"http://intermap.com/" -msgstr "" - -# e6b8ebedcce144f6aac26e844f3c9289 -#: ../../source/training/socialisation/datasets.rst:124 -msgid "Volcano" -msgstr "" - -# a6157c7cf4834ea4ab270e4f39adfa5b -#: ../../source/training/socialisation/datasets.rst:126 -msgid "Sinabung_Hazard_Map_2015_WGS84.shp" -msgstr "" - -# c74fc3f28a7f4938a11ebaf4b6f3d51f -#: ../../source/training/socialisation/datasets.rst:127 -msgid "Sinabung Hazard Map" -msgstr "" - -# 42fb111d16664c9ab0900865333e6562 -# 733887d791934a61bb772422069fc8e6 -#: ../../source/training/socialisation/datasets.rst:130 -#: ../../source/training/socialisation/datasets.rst:154 -msgid "Multiple event" -msgstr "" - -# e9158d53abb148caa3b97a918695a21a -# 1bd89371dda44c459cc7bbcf6637bf4a -# bd9b70959ad34fc1bc93627459cce0b8 -#: ../../source/training/socialisation/datasets.rst:131 -#: ../../source/training/socialisation/datasets.rst:179 -#: ../../source/training/socialisation/datasets.rst:202 -msgid "KRB" -msgstr "" - -# e4085ef697ef4694a8fcba7b7973ab7f -#: ../../source/training/socialisation/datasets.rst:132 -msgid "" -"Kawasan rawan bencana III - High; Kawasan rawan bencana II - Medium; Kawasan " -"rawan bencana I - Low" -msgstr "" - -# 37ec4fa85c3e471cbd5aa3c7b8b515f6 -#: ../../source/training/socialisation/datasets.rst:133 -#: ../../source/training/socialisation/datasets.rst:157 -#: ../../source/training/socialisation/datasets.rst:206 -msgid "PVMBG" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:134 -msgid "" -"http://vsi.esdm.go.id/gallery/picture.php?/63/category/7 (published map)" -msgstr "" - -# 20b411c92d484f1b9771f94c19f1b9b4 -# 52208957f6314225a2f3fe299d4ed9eb -#: ../../source/training/socialisation/datasets.rst:135 -#: ../../source/training/socialisation/datasets.rst:159 -msgid "2015" -msgstr "" - -# f82ff5a114e349c49e8d3b3d645b48c7 -# b90cc276fc8843fb823004897fd7c066 -# f37cc19633f54f708595ec73e9342937 -# cb6a70f9ec614de88151f86c82a4d4bb -# 31545b432b024195878011a74807c1e8 -#: ../../source/training/socialisation/datasets.rst:137 -#: ../../source/training/socialisation/datasets.rst:156 -#: ../../source/training/socialisation/datasets.rst:161 -#: ../../source/training/socialisation/datasets.rst:313 -#: ../../source/training/socialisation/datasets.rst:314 -msgid "Sinabung" -msgstr "" - -# c53f02cfa1f045a281779db2cce22897 -#: ../../source/training/socialisation/datasets.rst:138 -msgid "" -"This map contains information about the hazard level for each zone. It can " -"be used to identify the potential impact." -msgstr "" - -# ca520c588cbe44a1808aa8bf747fb0cd -#: ../../source/training/socialisation/datasets.rst:148 -msgid "Volcano Point" -msgstr "" - -# 3d3911dcea8c4d0088083563b77513df -#: ../../source/training/socialisation/datasets.rst:150 -msgid "Sinabung_Mount_WGS84.shp" -msgstr "" - -# f416931eec684a558b0ba069ddd6f3c4 -#: ../../source/training/socialisation/datasets.rst:151 -msgid "Sinabung Mt" -msgstr "" - -# cda49e6ea5e648e695a67b3cfc4a62a5 -#: ../../source/training/socialisation/datasets.rst:152 -msgid "Point" -msgstr "" - -# d19eb7494fc7473eb7189771d5579873 -#: ../../source/training/socialisation/datasets.rst:0 -#: ../../source/training/socialisation/datasets.rst:155 -msgid "Name" -msgstr "Nom" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Attribute value" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:158 -msgid "http://vsi.esdm.go.id/gallery/picture.php?/63/category/7 (publish map)" -msgstr "" - -# 7fc03f8e52644c36abcc5b60c963bc90 -#: ../../source/training/socialisation/datasets.rst:162 -msgid "The data shows the location of Mount Sinabung peak." -msgstr "" - -# 46284776b91b41b1b3a6892a65e5cd5d -#: ../../source/training/socialisation/datasets.rst:172 -msgid "Volcanic Ash" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:174 -msgid "Sinabung_Volcanic_Ash_1Feb14_WGS84.shp" -msgstr "" - -# 15f966f49a5d445ba5acb92e436b3a44 -#: ../../source/training/socialisation/datasets.rst:175 -msgid "Sinabung Volcanic Ash" -msgstr "" - -# 29c79b0bcef045cb9f59ccb7922ce764 -#: ../../source/training/socialisation/datasets.rst:180 -msgid "High; Medium; Low" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:181 -msgid "PVMBG - BNPB" -msgstr "" - -# a18053d244e1474a9172c84cfeedab86 -#: ../../source/training/socialisation/datasets.rst:183 -msgid "2014" -msgstr "" - -# 914c1ccaadbf42768ff20faeb56098ac -#: ../../source/training/socialisation/datasets.rst:185 -msgid "Sinabung region" -msgstr "" - -# 2001a5416834425aac1a22630e56b3af -#: ../../source/training/socialisation/datasets.rst:186 -msgid "" -"The data show the spread of volcanic ash from Mount Sinabung during the 2014 " -"eruption." -msgstr "" - -# df566daa16ee4c7bb6e6aa47f697ae6a -#: ../../source/training/socialisation/datasets.rst:195 -msgid "Landslide" -msgstr "" - -# c1dd084ca02f4fcabed64052a4ac94d0 -#: ../../source/training/socialisation/datasets.rst:197 -msgid "NGK_Landslide_Vulnerability_WGS84.shp" -msgstr "" - -# 2470a9cc7cc44d9587149754989f8ada -#: ../../source/training/socialisation/datasets.rst:198 -msgid "Landslide Hazard Zone" -msgstr "" - -# 56396c730fdf42f5b00eb97c5c26d7ff -#: ../../source/training/socialisation/datasets.rst:203 -msgid "" -"High Landslide Vulnerability Zone - High; Moderate Landslide Vulnerability " -"Zone - Medium; Low Landslide Vulnerability Zone - Low" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:207 -msgid "" -"http://vsi.esdm.go.id/gallery/picture.php?/230/category/14 (published map)" -msgstr "" - -# 0ae48b22aa894ffdb45225e62752ac6a -#: ../../source/training/socialisation/datasets.rst:208 -msgid "2009" -msgstr "" - -# b4e0b661230243eb9bc3c7ee43dbd563 -#: ../../source/training/socialisation/datasets.rst:211 -msgid "" -"Landslide vulnerability maps show the regions where landslides may occur. " -"Topographic and landuse changes after mapping can change the landslide zone " -"in the map. The high vulnerability zone is to be avoided for settlement " -"areas or strategic infrastructure. If it can't be avoided, build on the " -"moderate zone, but detailed research is needed to avoid landslide happen. In " -"moderate zone, detailed research is also needed when planning to cut the " -"slope." -msgstr "" - -# 9123112aa20349eeb444fbcb32d7df80 -#: ../../source/training/socialisation/datasets.rst:229 -msgid "Exposure data" -msgstr "" - -# 97f5f3d6a2fd4accbafa81f7b8a233c0 -#: ../../source/training/socialisation/datasets.rst:232 -msgid "Population" -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:235 -msgid "World_Population" -msgstr "" - -# f038a5fc3ab24f8f8859028ce74c816a -# c775a35d8c0740e5b4ad878d9385a9a6 -#: ../../source/training/socialisation/datasets.rst:236 -#: ../../source/training/socialisation/datasets.rst:275 -#: ../../source/training/socialisation/datasets.rst:348 -#: ../../source/training/socialisation/datasets.rst:385 -msgid "see table below" -msgstr "" - -# d35d4c1c6aff447d9c9f0b1789230926 -#: ../../source/training/socialisation/datasets.rst:239 -msgid "Count" -msgstr "" - -# 645f6d0c78244ac994fb44619df1c59d -#: ../../source/training/socialisation/datasets.rst:240 -msgid "World Pop" -msgstr "" - -# 3c7b070c97ce47b1afabe806ca13fc8f -#: ../../source/training/socialisation/datasets.rst:241 -msgid "http://worldpop.org.uk" -msgstr "" - -# 54d4289c9fd349409ba116754d27ecf8 -# 05c1665f419941efb7932623f2500536 -#: ../../source/training/socialisation/datasets.rst:242 -#: ../../source/training/socialisation/datasets.rst:392 -msgid "2010" -msgstr "" - -# 1f38f636a8af4a9ea35a114b11f8f48b -#: ../../source/training/socialisation/datasets.rst:244 -msgid "ASEAN +" -msgstr "" - -# 0629f88d31c94b0689987e12818ce8ed -#: ../../source/training/socialisation/datasets.rst:245 -msgid "" -"High resolution (1 pixel represents 100m x 100m, contemporary data on human " -"population distributions are a prerequisite for the accurate measurement of " -"the impacts of population growth, for monitoring changes and for planning " -"interventions. The AsiaPop project was initiated in July 2011 with the aim " -"of producing detailed and freely-available population distribution maps for " -"the whole of Asia. This project has expanded as the World Pop project to " -"include other continents." -msgstr "" - -# e5293de04c804f88aa51deaee6cf6be0 -# e080ae26a51f46ff91acae2f2949b60e -# 0aa97473835d4ce58c10b9a10218b9b8 -# d14057d0983d48f5a3c6bbeeeaee402b -#: ../../source/training/socialisation/datasets.rst:261 -#: ../../source/training/socialisation/datasets.rst:305 -#: ../../source/training/socialisation/datasets.rst:371 -#: ../../source/training/socialisation/datasets.rst:398 -msgid "Training data provided:" -msgstr "" - -# a63dfff360b64d3fbbd6951324fd1b6d -# 3d602a05639a40d28111a4356ad31692 -# 824d2293a32f4fbeb261cbd559b880bb -# ce947515492e473a87c67eef36e76738 -#: ../../source/training/socialisation/datasets.rst:264 -#: ../../source/training/socialisation/datasets.rst:308 -#: ../../source/training/socialisation/datasets.rst:374 -#: ../../source/training/socialisation/datasets.rst:401 -msgid "**Training Package**" -msgstr "" - -# ddfae41ff14a43fd81862c5320dae490 -# af043a409a7d49129bfe1284c67e2b91 -# 82544a88203d4642a79d4a54cadbc6c2 -# 55577286200c47b881f002e54f4d84ee -#: ../../source/training/socialisation/datasets.rst:264 -#: ../../source/training/socialisation/datasets.rst:308 -#: ../../source/training/socialisation/datasets.rst:374 -#: ../../source/training/socialisation/datasets.rst:401 -msgid "**Name**" -msgstr "**nom**" - -# 51f76a52bddb4f0c84103d4f2e6b0cbc -# 63464ee5eb9942e5a88709e6101faa82 -# 05f12c5de5594cc0ae4b9d5f90d33c8b -# 2c1c502ea3a841d480505f401c5c3456 -#: ../../source/training/socialisation/datasets.rst:264 -#: ../../source/training/socialisation/datasets.rst:308 -#: ../../source/training/socialisation/datasets.rst:374 -#: ../../source/training/socialisation/datasets.rst:401 -msgid "**Coverage**" -msgstr "" - -# c52adc38f16a4eb39dedf3bb93d2ce30 -# 1727da6a65924756a40b90131c9ff179 -#: ../../source/training/socialisation/datasets.rst:265 -#: ../../source/training/socialisation/datasets.rst:309 -msgid "Basic InaSAFE" -msgstr "" - -# d79dcb510c1a44db8f6e0820183cc41f -# 20e5afedfc5942bba6a57b18660ba59c -#: ../../source/training/socialisation/datasets.rst:265 -#: ../../source/training/socialisation/datasets.rst:266 -msgid "Jakarta_Population_WGS84" -msgstr "" - -# 10b564ce4d6c4681ab0ceb253ec2abd6 -#: ../../source/training/socialisation/datasets.rst:266 -msgid "Intermediate InaSAFE" -msgstr "" - -# ca8348cca5e54c8fbe2410d69e22fd6f -# acc68363f30f4ac388585b6237fa5953 -# 226ce3cc8e3a426796bf00478826573a -# 0deb06e45b6648f196e74805953dd329 -# 5afd5e96603f4c42bf3ccfe639b72c66 -# 830e338043bf45a5abf8bae78b97e5a4 -# 2ca4ea56875b475986c6737dc6ea5494 -# a5d0288f5a96437fa862ceeedd1854f7 -# ba26faa3f6394ec19ed258a8cb5e07db -# 05b1f148e5a143039a90baec48fc84bf -#: ../../source/training/socialisation/datasets.rst:267 -#: ../../source/training/socialisation/datasets.rst:268 -#: ../../source/training/socialisation/datasets.rst:310 -#: ../../source/training/socialisation/datasets.rst:311 -#: ../../source/training/socialisation/datasets.rst:312 -#: ../../source/training/socialisation/datasets.rst:313 -#: ../../source/training/socialisation/datasets.rst:314 -#: ../../source/training/socialisation/datasets.rst:404 -#: ../../source/training/socialisation/datasets.rst:405 -#: ../../source/training/socialisation/datasets.rst:406 -msgid "Other Hazards" -msgstr "" - -# 0b4491c58d364371ac69c00589e80426 -#: ../../source/training/socialisation/datasets.rst:267 -msgid "West_Sumatera_Population_WGS84" -msgstr "" - -# e4be0bacd64a45ed98927c4d5cd1fd4f -#: ../../source/training/socialisation/datasets.rst:268 -msgid "NGK_Population_WGS84" -msgstr "" - -# 24d463f49ccf431c9c1360c6135e0813 -# dc7849fa89e44d309bd3de6aeb3d6db8 -#: ../../source/training/socialisation/datasets.rst:268 -#: ../../source/training/socialisation/datasets.rst:312 -msgid "Nagekeo" -msgstr "" - -# 9de9f62a15244824b39ed77e7761d449 -#: ../../source/training/socialisation/datasets.rst:272 -msgid "Buildings" -msgstr "" - -# f01ff0ae510a420f90bc300271296a99 -#: ../../source/training/socialisation/datasets.rst:274 -msgid "OSM Buildings" -msgstr "" - -# e5012f1df09c418c80a75d7fcc3e6ff3 -#: ../../source/training/socialisation/datasets.rst:276 -msgid "Polygon or point" -msgstr "" - -# 959321e1b0b546f49800c6ff9cef347e -# 2fcdde3a432b4d89bf0ea5535a8eedb9 -#: ../../source/training/socialisation/datasets.rst:278 -#: ../../source/training/socialisation/datasets.rst:351 -msgid "Type" -msgstr "" - -# d5ee4d29c94f4867a09568de8590aaa5 -#: ../../source/training/socialisation/datasets.rst:279 -msgid "hospital, school, clinic, etc" -msgstr "" - -# 6f1ef79fbdc04b9c9ec91a6a7a23ce58 -# 2fa710505f09415889c8a75658deb5ca -#: ../../source/training/socialisation/datasets.rst:282 -#: ../../source/training/socialisation/datasets.rst:353 -msgid "OpenStreetMap" -msgstr "OpenStreetMap" - -# 58a34119da79454eba3e7718819c09b2 -# 35ec34d831234a5098de376a29866854 -#: ../../source/training/socialisation/datasets.rst:283 -#: ../../source/training/socialisation/datasets.rst:354 -msgid "http://openstreetmap.org" -msgstr "" - -# 6cbdf43903b4484f9db1adc44678ef5d -# 0d16e5989759407dad64d2d2cf310ed2 -#: ../../source/training/socialisation/datasets.rst:284 -#: ../../source/training/socialisation/datasets.rst:355 -msgid "July 2015" -msgstr "" - -# e9487f8da3624017a4e25e507c82fce3 -# b5a1af07513d44bdbbc4bb722b621a63 -#: ../../source/training/socialisation/datasets.rst:285 -#: ../../source/training/socialisation/datasets.rst:356 -msgid "" -"`Open Data Commons Open Database License (ODbL) `_" -msgstr "" - -# faeda11d8b804e0dabf132f4337a45e0 -# 70c8be89efb747459a19b0d71e3de4a2 -#: ../../source/training/socialisation/datasets.rst:286 -#: ../../source/training/socialisation/datasets.rst:357 -msgid "World - incomplete" -msgstr "" - -# 43d101cf381d46a49fc1242bb195a175 -#: ../../source/training/socialisation/datasets.rst:287 -msgid "" -"OpenStreetMap is a collaborative project to create a free editable map of " -"the world. Two major driving forces behind the establishment and growth of " -"OSM have been restrictions on the use or availability of map information " -"across much of the world and the advent of inexpensive portable satellite " -"navigation devices." -msgstr "" - -#: ../../source/training/socialisation/datasets.rst:299 -msgid "" -"|GoA| has been working with the Humanitarian OpenStreetMap Team (HOT) since " -"2011 to pilot and train OpenStreetMap data capture in Indonesia. So far over " -"12 million buildings have been mapped. Some of the scenarios we use in the " -"training materials are situated in Jakarta, Yogyakarta (Merapi), Sumatra " -"(Padang) and Flores (Maumere)." -msgstr "" - -# 234cd2fac1aa4e588fcdf53cf8631d10 -#: ../../source/training/socialisation/datasets.rst:309 -msgid "Jakarta_Buildings_WGS84" -msgstr "" - -# bfed202a8a064e638a0b6c3a6f5cf7e5 -#: ../../source/training/socialisation/datasets.rst:310 -msgid "Padang_Buildings_WGS84" -msgstr "" - -# 0c8af832f5064510a3fe872da7cf90f0 -#: ../../source/training/socialisation/datasets.rst:311 -msgid "Maumere_Buildings_WGS84" -msgstr "" - -# 39b8c7774ac5466d983e2f53aa02f4c6 -# 8a5f33a86e78439694726aaef100352a -#: ../../source/training/socialisation/datasets.rst:311 -#: ../../source/training/socialisation/datasets.rst:404 -msgid "Maumere" -msgstr "" - -# 92d84694fb5a4f9fb6ccfe0e7c127384 -#: ../../source/training/socialisation/datasets.rst:312 -msgid "NGK_Buildings_WGS84" -msgstr "" - -# 76e52862e0e04e4da4c0a9b8334048df -#: ../../source/training/socialisation/datasets.rst:313 -msgid "Sinabung_Buildings_WGS84" -msgstr "" - -# 267e94aa89fb4aa8bc08f9683f2aa3c5 -#: ../../source/training/socialisation/datasets.rst:314 -msgid "Sinabung_Building-points_WGS84" -msgstr "" - -# 8466ffed68c24835bc05e6edf9278531 -#: ../../source/training/socialisation/datasets.rst:318 -msgid "" -"Each one of these areas has a different OpenStreetMap data collection " -"methodology. Below the data collection methodologies used in Jakarta and " -"Padang are explained:" -msgstr "" - -# 1179b6aee2c240618d9e077738c63199 -#: ../../source/training/socialisation/datasets.rst:322 -msgid "" -"BPBD DKI Jakarta (Regional Disaster Managers) and |BNPB| (National Disaster " -"Managers) with assistance from |GoA|, the World Bank, UNOCHA, HOT and " -"University of Indonesia, held workshops in each of Jakarta's six districts " -"in order to help village heads map their community boundaries and major " -"infrastructure. Over 500 representatives from Jakarta's 267 villages " -"participated in these workshops and have mapped an impressive 6,000 " -"buildings and all 2,668 sub-village boundaries (Rukun Warga-RW). For more " -"information go to `AIFDR Website `_" -msgstr "" - -# d655885f935d43d089e486b34458080a -#: ../../source/training/socialisation/datasets.rst:332 -msgid "" -"After the Haiti earthquake in 2010, there was a large effort to map Haiti " -"through OSM. Coordinating this effort was difficult, and so |GoA| funded the " -"creation of the OSM Tasking Manager. The OSM Tasking Manager is a web-based " -"tool in which a designated area is easily divided into a grid, and " -"individual users can select one piece at a time to quickly work together and " -"digitally map the target area. The tool was first piloted in Padang, where " -"contributors from around the world helped digitise over 95,000 buildings. " -"However, the buildings are only footprints - an on the ground mapping effort " -"is needed to record attributes about each building. The tool is now being " -"used across the world to coordinate OSM mapping efforts. It is available at " -"`tasks.hotosm.org `_" -msgstr "" - -# 5764b09adff2484d92aae3259c50c8f7 -# 9113dfc86e9642c5a07295c2f4bdd4b6 -#: ../../source/training/socialisation/datasets.rst:345 -msgid "Roads" -msgstr "" - -# 1d5badf44f00444fa0d6888ff027347e -#: ../../source/training/socialisation/datasets.rst:347 -msgid "OSM Roads" -msgstr "" - -# 0b500f97b96f462488c5d8002d0dac6d -#: ../../source/training/socialisation/datasets.rst:349 -msgid "Line" -msgstr "" - -# 48ceb85836504bd98acb6b1b3af06646 -#: ../../source/training/socialisation/datasets.rst:352 -msgid "types of roads" -msgstr "" - -# 23f1198a3d8b4277b746575e70204c6f -#: ../../source/training/socialisation/datasets.rst:358 -msgid "" -"OpenStreetMap is a collaborative project to create a free editable map of " -"the world. Two major driving forces behind the establishment and growth of " -"OSM have been restrictions on use or availability of map information across " -"much of the world and the advent of inexpensive portable satellite " -"navigation devices." -msgstr "" - -# 6bffe1233b3a4d7d94d9a0d3e7277911 -#: ../../source/training/socialisation/datasets.rst:375 -msgid "QGIS Introduction" -msgstr "" - -# 1e5d7d12e3014f938f31edd15f0ffb22 -#: ../../source/training/socialisation/datasets.rst:375 -msgid "Jakarta_Roads_WGS84" -msgstr "" - -# 3f9acfb868e04532b2482c9474cc88a6 -#: ../../source/training/socialisation/datasets.rst:379 -msgid "Aggregation Data" -msgstr "" - -# a11850b69c1248b4ad106551824e0fda -# 334e14ab17844aa38099da17b45596f6 -#: ../../source/training/socialisation/datasets.rst:382 -#: ../../source/training/socialisation/datasets.rst:384 -msgid "Administrative Boundary" -msgstr "" - -# 7fc1b96da57041f6b4d14cad21a3ad58 -#: ../../source/training/socialisation/datasets.rst:388 -msgid "Kabupaten / Kecamatan / Desa" -msgstr "" - -# c0f48d3d36704f089b1fa36a58b5d8a2 -#: ../../source/training/socialisation/datasets.rst:389 -msgid "toponymy of the area" -msgstr "" - -# 29d5b476894b40659edee1ae251c1d86 -#: ../../source/training/socialisation/datasets.rst:390 -msgid "BPS" -msgstr "" - -# 2c4ebe29b5cb48d7920cfc26ab7eb1cd -#: ../../source/training/socialisation/datasets.rst:395 -msgid "Administrative boundaries in Indonesia" -msgstr "" - -# eadaac501937467390f1736030625e2f -# ce246f0f52f14b17ac50ebc026fb48d3 -#: ../../source/training/socialisation/datasets.rst:402 -#: ../../source/training/socialisation/datasets.rst:403 -msgid "Run Intermediate InaSAFE" -msgstr "" - -# c26add1d6a4b41709b740ed82a81e84f -#: ../../source/training/socialisation/datasets.rst:402 -msgid "Jakarta_District_Boundary_WGS84" -msgstr "" - -# 5f16b5c5890d4c38a3bf5dcbeab39153 -#: ../../source/training/socialisation/datasets.rst:403 -msgid "Jakarta_Subdistrict_Boundary_WGS84" -msgstr "" - -# b05546b311cf44a48d95ef72c7727d1b -#: ../../source/training/socialisation/datasets.rst:404 -msgid "Sikka_Village_Boundary_WGS84" -msgstr "" - -# f9cf124bece547ab99db06bcdc8c2449 -#: ../../source/training/socialisation/datasets.rst:405 -msgid "NGK_Villages_BPS_WGS84" -msgstr "" - -# f3ba70b11bf44ca89b34c1db17043aa4 -#: ../../source/training/socialisation/datasets.rst:405 -msgid "Nagakeo" -msgstr "" - -# 9d58d97fd76143d8beb5a438417854f0 -#: ../../source/training/socialisation/datasets.rst:406 -msgid "Padang_Village_Boundary_WGS84" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/socialisation/faq.po b/docs/i18n/fr/LC_MESSAGES/training/socialisation/faq.po deleted file mode 100644 index d98ec052..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/socialisation/faq.po +++ /dev/null @@ -1,247 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:04+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 955217cd8b0a41b3a43492ee8e3c4725 -#: ../../source/training/socialisation/faq.rst:4 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../../source/training/socialisation/faq.rst:5 -msgid "" -"A short list of questions to assist course participants with the common " -"questions asked by new users when performing a natural disaster scenario " -"analysis with QGIS and InaSAFE." -msgstr "" - -#: ../../source/training/socialisation/faq.rst:11 -msgid "" -"*What are the important things that need to be prepared before running " -"InaSAFE?*" -msgstr "" - -#: ../../source/training/socialisation/faq.rst:13 -msgid "To run InaSAFE you need one hazard dataset and one exposure dataset." -msgstr "" - -# bf77b1ecfa5c4a47b894ea6af7511d6f -#: ../../source/training/socialisation/faq.rst:14 -msgid "" -"The data must have keywords defined (current version) and it must be turned " -"on." -msgstr "" - -# 6076903db7df41b6b638137d5cc5b18a -#: ../../source/training/socialisation/faq.rst:15 -msgid "There must be an overlap between the hazard and exposure layers." -msgstr "" - -#: ../../source/training/socialisation/faq.rst:18 -msgid "*Why are there is no active layers available in the InaSAFE dock?*" -msgstr "" - -# 74d6ae82f89946adb04344ee7672ccaf -#: ../../source/training/socialisation/faq.rst:20 -msgid "Check that your data layers are turned on" -msgstr "" - -# 7b2f0ed0dc854a90a80ae71481f0a0e2 -#: ../../source/training/socialisation/faq.rst:21 -msgid "Check that the layers have keywords defined." -msgstr "" - -# 4ff0323a0d7e40e9b8419cd22cb40675 -#: ../../source/training/socialisation/faq.rst:22 -msgid "" -"If keywords are not defined or are not current, use the keywords wizard." -msgstr "" - -#: ../../source/training/socialisation/faq.rst:25 -msgid "" -"*The data has keywords defined, but it is not showing up in the dock as an " -"option for InaSAFE analysis?*" -msgstr "" - -#: ../../source/training/socialisation/faq.rst:27 -msgid "Check the keyword version is the same with the InaSAFE version." -msgstr "" - -#: ../../source/training/socialisation/faq.rst:28 -msgid "Use the keywords wizard tools and update your keywords if necessary." -msgstr "" - -# 4a6b64ecf5494c9b8a1150ff23d195c2 -#: ../../source/training/socialisation/faq.rst:29 -msgid "Check that the layer appears in the map and is turned on." -msgstr "" - -# 96b9304b74364e4db046a710be44ba77 -#: ../../source/training/socialisation/faq.rst:32 -msgid "" -"*The data has keywords and is showing up in the dock, but there is no option " -"in the \"might\" list?*" -msgstr "" - -# 74d84c6c4b3a49088e11ad467ea5156c -#: ../../source/training/socialisation/faq.rst:34 -msgid "The impact function for that data might not be available yet." -msgstr "" - -#: ../../source/training/socialisation/faq.rst:35 -msgid "" -"`See the list of available impact functions in InaSAFE concepts .. `__" -msgstr "" - -# 181ee2e2db7a4b09936c26aa0aeacfe4 -#: ../../source/training/socialisation/faq.rst:38 -msgid "*Can InaSAFE summarise the impact summary results for different areas?*" -msgstr "" - -#: ../../source/training/socialisation/faq.rst:40 -msgid "" -"Yes, you can use the aggregation feature in InaSAFE to summarise the impact " -"summary results for smaller areas such as administration districts." -msgstr "" - -# 1cf9b9c856c14689bd2abb5c383fe4e5 -#: ../../source/training/socialisation/faq.rst:44 -msgid "" -"*Why are there no options for population in the keyword for my vector " -"population data?*" -msgstr "" - -#: ../../source/training/socialisation/faq.rst:46 -msgid "Make sure that your population data in raster format" -msgstr "" - -#: ../../source/training/socialisation/faq.rst:47 -msgid "The current version of InaSAFE only supports raster population data." -msgstr "" - -#: ../../source/training/socialisation/faq.rst:48 -msgid "" -"`See more in InaSAFE concepts .. `__" -msgstr "" - -#: ../../source/training/socialisation/faq.rst:51 -msgid "" -"*Can InaSAFE be used to analyse hazard data besides flood, tsunami, " -"earthquake and volcanic hazard?*" -msgstr "" - -#: ../../source/training/socialisation/faq.rst:53 -msgid "" -"Yes it can. InaSAFE has a Generic Hazard Impact Function that can be used to " -"analyse other hazards as long as the data are classified." -msgstr "" - -# 241bcf0ca3234cfba4edb2368f88ce0b -#: ../../source/training/socialisation/faq.rst:55 -msgid "Classified data will have values such as Low, Medium and High." -msgstr "" - -# c159269c57d44b7a8bafaff9f072f1cc -#: ../../source/training/socialisation/faq.rst:58 -msgid "" -"*Why is there some data that is not relevant showing on my pdf map when I " -"print?*" -msgstr "" - -# 9c886b503dc54db39ec406084e6982c7 -#: ../../source/training/socialisation/faq.rst:60 -msgid "" -"Before you click the \"Print\" button, please turn off any layers you do not " -"want to see on the map." -msgstr "" - -# 42f4c19a897549389586ee86b42ba949 -#: ../../source/training/socialisation/faq.rst:62 -msgid "" -"Rearrange the order of layers to make sure the important things are on top." -msgstr "" - -# 270ee931c0be4f61af9a04683c4f09f7 -#: ../../source/training/socialisation/faq.rst:65 -msgid "" -"*Why are the impact results different in different parts of the impact " -"report?*" -msgstr "" - -# 451f069a69a344a28df5c9f247ff6c7c -#: ../../source/training/socialisation/faq.rst:67 -msgid "In the general report the results are rounded." -msgstr "" - -# 97c8d58e9a3245cfbcb380a1f4eb2565 -#: ../../source/training/socialisation/faq.rst:68 -msgid "In the detailed report the results may not be rounded as much." -msgstr "" - -#: ../../source/training/socialisation/faq.rst:69 -msgid "" -"InaSAFE provides an estimate of the impact. Rounded numbers are good " -"estimates." -msgstr "" - -#: ../../source/training/socialisation/faq.rst:72 -msgid "" -"*My hazard and exposure data have different projections, can I still run an " -"InaSAFE analysis on these data?*" -msgstr "" - -# 2dd645c560de4887899733c7001f2901 -#: ../../source/training/socialisation/faq.rst:74 -msgid "Yes you can, but you need to enable on the fly projection." -msgstr "" - -# 3e9201632f604efe897281b56c6f29d8 -#: ../../source/training/socialisation/faq.rst:78 -msgid "In QGIS, activate OTF CRS Transformation" -msgstr "" - -# b256776306d146f4ad9d8a3576cedeed -#: ../../source/training/socialisation/faq.rst:76 -msgid ":menuselection:`Project > Project Properties > CRS`" -msgstr "" - -# c71254f4e48749c5b08cb0c1b100e031 -#: ../../source/training/socialisation/faq.rst:77 -msgid "checkbox in the :guilabel:`Enable 'on the fly' CRS transformation`." -msgstr "" - -#: ../../source/training/socialisation/faq.rst:80 -msgid "" -"*My flood polygon hazard data includes a flood depth. Why can't I run an " -"analysis in InaSAFE and set the threshold with these data?*" -msgstr "" - -# 5679af072a804c41936ab083f6c9c24a -#: ../../source/training/socialisation/faq.rst:82 -msgid "" -"At this moment, users can only set a flood depth threshold for raster data." -msgstr "" - -# feb9efaa3c974987b0944bb431e4c41f -#: ../../source/training/socialisation/faq.rst:83 -msgid "" -"If you would like to build a new impact function to work with different " -"types of hazard data, please contact the developer team." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/socialisation/inasafe_concepts.po b/docs/i18n/fr/LC_MESSAGES/training/socialisation/inasafe_concepts.po deleted file mode 100644 index cf711921..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/socialisation/inasafe_concepts.po +++ /dev/null @@ -1,1089 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:03+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# d1dafb1c8da6476a8c995c880c4fb0f1 -#: ../../source/training/socialisation/inasafe_concepts.rst:4 -msgid "|project_name| concepts" -msgstr "" - -# 108cc514e7924feda4a1d329cb44c6f4 -#: ../../source/training/socialisation/inasafe_concepts.rst:6 -msgid "" -"In this section we explain the key concepts of |project_name| and explore " -"the merits of disaster management planning." -msgstr "" - -# 2ec8dfb5188f480bba3591ec5248d5b0 -#: ../../source/training/socialisation/inasafe_concepts.rst:10 -msgid "How does |project_name| work?" -msgstr "" - -# a40d2389d61c4bd9b98d29b9e3a1eb68 -#: ../../source/training/socialisation/inasafe_concepts.rst:11 -msgid "" -"|project_name| combines one exposure data layer (e.g. location of buildings) " -"with one hazard scenario (e.g. the footprint of a flood) and returns a " -"spatial impact layer along with a statistical summary and action questions. |" -"project_name| is framed around answering questions such as: *'In the event " -"of a flood similar to the 2013 Jakarta event how many people might need " -"evacuating.'*" -msgstr "" - -# 755fca0784b9478b8e40749f7bb3b1f6 -#: ../../source/training/socialisation/inasafe_concepts.rst:22 -msgid "" -"|project_name| is also able to divide the impact results by administrative " -"boundary and provide a breakdown of information about the gender and age of " -"affected people." -msgstr "" - -# 4a2abc403fa843979dc2c5c471e200b0 -#: ../../source/training/socialisation/inasafe_concepts.rst:27 -msgid "Definitions:" -msgstr "" - -# 613786e61ffc4b95aa186dab3d61a6b2 -#: ../../source/training/socialisation/inasafe_concepts.rst:28 -msgid "Before we start, here are some definitions you may find useful." -msgstr "" - -# 626efeeea7094b9d844db2e707676f93 -#: ../../source/training/socialisation/inasafe_concepts.rst:31 -msgid "**Risk assessment:**" -msgstr "" - -# 3d7c3cfc3ff04a3da3772e315f3070bc -#: ../../source/training/socialisation/inasafe_concepts.rst:31 -msgid "" -"*\"A methodology to determine the nature and extent of risk by analysing " -"potential hazards and evaluating existing conditions of vulnerability that " -"together could potentially harm exposed people, property, services, " -"livelihoods and the environment on which they depend. \"*" -msgstr "" - -# 691f409d0cdf456093525109bdb252dc -#: ../../source/training/socialisation/inasafe_concepts.rst:38 -msgid "**Contingency planning:**" -msgstr "" - -# 676a96e4420746eda0adc4582b024415 -#: ../../source/training/socialisation/inasafe_concepts.rst:38 -msgid "" -"*\"A management process that analyses specific potential events or emerging " -"situations that might threaten society or the environment and establishes " -"arrangements in advance to enable timely, effective and appropriate " -"responses to such events and situations.\"*" -msgstr "" - -# a83f0fd5bdc64499b9dcee62e39dd3cb -#: ../../source/training/socialisation/inasafe_concepts.rst:45 -msgid "**Response:**" -msgstr "" - -# 0f039cd954ab48eebc80b55318f7eb7c -#: ../../source/training/socialisation/inasafe_concepts.rst:45 -msgid "" -"*\"The provision of emergency services and public assistance during or " -"immediately after a disaster in order to save lives, reduce health impacts, " -"ensure public safety and meet the basic subsistence needs of the people " -"affected.\"*" -msgstr "" - -# f5c0f1b172c74dffabec5b7630aec2da -#: ../../source/training/socialisation/inasafe_concepts.rst:52 -msgid "Source: ``_" -msgstr "" - -# 02ac0d40e06c40d39b07021a7cc70abd -#: ../../source/training/socialisation/inasafe_concepts.rst:55 -msgid "What is disaster management?" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:56 -msgid "" -"In the context of disaster management, the expected 'normal' situation is " -"that there is no disaster in progress, and people are going about their " -"normal daily lives. Disaster managers need to plan for the occasions when " -"the 'normal' situation has been replaced by a disaster and people can no " -"longer go about their normal daily lives. In order to prepare for such " -"situations, disaster managers need to have a basic understanding of " -"questions like:" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:63 -msgid "how many people might be in the affected area?" -msgstr "" - -# 3ba46cbc47c145d3a85e82e22c9a07b2 -#: ../../source/training/socialisation/inasafe_concepts.rst:65 -msgid "how might those people be impacted?" -msgstr "" - -# 769a8c3796d24ff4af758e4e87fc47e2 -#: ../../source/training/socialisation/inasafe_concepts.rst:67 -msgid "" -"For example are they likely to be injured, stranded, deceased, or unable to " -"continue with their normal economic activities; have they lost access to " -"food and water?" -msgstr "" - -# c098c22d49e34ea6beffdcd16a378a4e -#: ../../source/training/socialisation/inasafe_concepts.rst:71 -msgid "how will roads in the affected area be impacted?" -msgstr "" - -# 8bc8579c835d40e593ffecf71b71d7c1 -#: ../../source/training/socialisation/inasafe_concepts.rst:73 -msgid "" -"how many dwellings in the affected will be affected? And to what degree?" -msgstr "" - -# 0a8e5870dafb44e7a5a8c05f94370744 -#: ../../source/training/socialisation/inasafe_concepts.rst:75 -msgid "" -"For example in a flood are buildings dry, wet (but still possibly habitable) " -"or flooded (with occupants evacuated)?" -msgstr "" - -# ca77973155bd4634b779d1c4b57f58f5 -#: ../../source/training/socialisation/inasafe_concepts.rst:78 -msgid "" -"if people are affected, how many of them are likely to be women, children, " -"pregnant, elderly etc.?" -msgstr "" - -# 22ab6457404b40d9b1482ba2e63099f7 -#: ../../source/training/socialisation/inasafe_concepts.rst:81 -msgid "" -"Knowing the likely answers to these questions can be helpful to disaster " -"managers. For example if you are aware of how many people live in flood " -"prone areas you can estimate how many temporary shelters might be needed in " -"the event of a disaster, how many provisions should be stockpiled in order " -"to provide for the daily needs of affected people and so on. Having " -"demographic breakdowns for the people likely to be affected, can help " -"disaster managers include things like special dietary requirements for " -"lactating women in their disaster management planning." -msgstr "" - -# 87bf32059a9145628ea68ebc5180bb8f -#: ../../source/training/socialisation/inasafe_concepts.rst:90 -msgid "" -"This planning might also take into account expected impacts on " -"infrastructure - for example by planning to have sufficient rescue boats " -"should all the local roads be flooded." -msgstr "" - -# 28f1ccd3d1a340529d3d9b94b78713d4 -#: ../../source/training/socialisation/inasafe_concepts.rst:95 -msgid "What is a hazard?" -msgstr "" - -# 9b4acd91dff24e808136ec930c82713f -#: ../../source/training/socialisation/inasafe_concepts.rst:100 -msgid "" -"In the context of |project_name| a hazard is any natural or human caused " -"event or series of events that may negatively impact the population, " -"infrastructure or resources in an area." -msgstr "" - -# fc191e71b2754747ab4893d12fee9b1a -#: ../../source/training/socialisation/inasafe_concepts.rst:104 -msgid "Some examples of natural hazards:" -msgstr "" - -# bc3d0cf2b28b47eea5cdf579f9eb447f -#: ../../source/training/socialisation/inasafe_concepts.rst:106 -msgid "" -"a flood (caused by overflowing rivers, storm surge, localised precipitation " -"that cannot drain effectively, or by engineering failure such as a dam or " -"levee breach)" -msgstr "" - -# d9ca050efa0f4f189f80b7fa186df6ef -#: ../../source/training/socialisation/inasafe_concepts.rst:108 -msgid "an earthquake and the resulting ground shaking that is produced by it" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:110 -msgid "" -"a volcano eruption and its associated hazards (lava flow, ash fall, lahar, " -"pyroclastic flow)" -msgstr "" - -# 0d4a644b2f4e40588c443e595a06354e -#: ../../source/training/socialisation/inasafe_concepts.rst:112 -msgid "a tsunami" -msgstr "" - -# 5989fe7fb3704f249fdd7d8a6c8bfd6b -#: ../../source/training/socialisation/inasafe_concepts.rst:114 -msgid "Some examples of non-natural hazards:" -msgstr "" - -# d508c84fbcc54651bcbc36dfb6393808 -#: ../../source/training/socialisation/inasafe_concepts.rst:116 -msgid "a chemical spill" -msgstr "" - -# 37a9574f95a34788b2378d0bcca0a78a -#: ../../source/training/socialisation/inasafe_concepts.rst:118 -msgid "a nuclear plant failure" -msgstr "" - -# b012ebd662d24354afd5e67aba8de53c -#: ../../source/training/socialisation/inasafe_concepts.rst:120 -msgid "an industrial fire / explosion" -msgstr "" - -# 61196fad57dc49a0a011a2baf6712aa2 -#: ../../source/training/socialisation/inasafe_concepts.rst:122 -msgid "" -"It is important to note that |project_name| is not a hazard modelling tool. " -"That means that you need to obtain your hazard data from elsewhere and bring " -"it along ready to use in |project_name|. In this training course we will " -"focus on natural hazards, so we will take a moment here to explain how " -"hazard datasets might be made." -msgstr "" - -# 17c2f9039bfb4407a4169065a41608c8 -#: ../../source/training/socialisation/inasafe_concepts.rst:132 -msgid "There are three main ways that can be used to generate hazard datasets:" -msgstr "" - -# 99a84474e66348529043b00cad513a0a -#: ../../source/training/socialisation/inasafe_concepts.rst:134 -#: ../../source/training/socialisation/inasafe_concepts.rst:141 -msgid "Local knowledge" -msgstr "" - -# 0454ec9feb5d4771bdff47478b535408 -# 501e5b0ed46841c68cfdf5bf7001c213 -#: ../../source/training/socialisation/inasafe_concepts.rst:136 -#: ../../source/training/socialisation/inasafe_concepts.rst:164 -msgid "Modelling" -msgstr "" - -# e1556fcfd23c4c309ea2503e95f307a7 -#: ../../source/training/socialisation/inasafe_concepts.rst:138 -msgid "Mapping" -msgstr "" - -# fa56ea042fe94a44afd4d4eb512f4102 -#: ../../source/training/socialisation/inasafe_concepts.rst:143 -msgid "" -"This is probably the most practical way to gather hazard data quickly. One " -"approach that has been effective in Indonesia is to hold mapping workshops " -"where village chiefs and local officials are invited. The officials are " -"asked to indicate which villages and sub-villages within their area of " -"responsibility flood regularly." -msgstr "" - -# 95b0de9184864ba08d5d51ddcb95043a -#: ../../source/training/socialisation/inasafe_concepts.rst:149 -msgid "" -"Instead of simply mapping which areas are flooded, it is also possible to " -"take another approach and map each flood event, using the same boundaries " -"(village / sub-village). During the event community officials can use online " -"systems to update the status of the flood waters in their area." -msgstr "" - -# 3a5c796dc5ce43bd84b974c909ff63d0 -#: ../../source/training/socialisation/inasafe_concepts.rst:154 -msgid "" -"A key requirement for any local knowledge based process is that there are " -"suitable mapping units available to use for deciding if an area is flood " -"prone or not. In some cases participants may need to capture these, in other " -"cases village or sub-village boundaries can be used. Using administrative " -"boundaries may not always be ideal since the flood extents are unlikely to " -"align well with the boundaries, but it may be sufficient for broad planning " -"purposes; especially when response activities are managed at the same " -"administrative level." -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:166 -msgid "" -"Modelling floods is an entire discipline in its own right. Flood modelling " -"can be carried out by combining factors such as precipitation, geology and " -"runoff characteristics, terrain etc. to derive a model of impending or " -"current flood. Modelling can use data interpolation techniques - e.g. by " -"taking flood depth readings manually or using telemetry from various sites " -"around the flood prone area, flood depths can be interpolated to estimate " -"the depth at places that were not sampled." -msgstr "" - -# e6234e9e978b4e3ab0ef8cfbf00dac91 -#: ../../source/training/socialisation/inasafe_concepts.rst:174 -msgid "" -"Another modelling approach used by engineers is to install depth sensors " -"upstream of the catchment and then try to model how much water is coming " -"into the catchment area based on depth and flow rates. This has the " -"potential advantage of giving early warning before floods enter the flood " -"prone area, although it also has the disadvantage that localised rainfall " -"may not be accurately considered in the model." -msgstr "" - -# 99ccda1eb5ff4769b1f6f895ac898dff -#: ../../source/training/socialisation/inasafe_concepts.rst:181 -msgid "" -"Using a digital elevation model (DEM) and a stream network, it is also " -"possible to generate a simple model of which areas might be inundated by a " -"water rise in the river network of a certain amount. DEM cells adjacent to " -"the stream network which are below the flood-rise threshold will be " -"considered flooded and then those cell neighbours can in turn be considered " -"so as to ensure that only contiguous areas in the DEM are flagged as " -"inundated. There are various other approaches that can be used to model " -"flood potential that involve using a DEM." -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:190 -msgid "" -"One advantage of using a modelling approach is that it allows us to forecast " -"less frequent events. For example, there may not be localised knowledge " -"about 1 in 50 or 100 year flood events and their impacts, but these can be " -"estimated using modelling techniques." -msgstr "" - -# d288204d84df4f6bbf45b5c48af6be27 -#: ../../source/training/socialisation/inasafe_concepts.rst:196 -msgid "Single-event versus multiple-event hazards" -msgstr "" - -# 64f7314bc3554ea889d5dc7619095c31 -#: ../../source/training/socialisation/inasafe_concepts.rst:197 -msgid "" -"Hazard data used in |project_name| can represent either single-event or " -"multiple-event. Single event hazards are useful when you want to estimate " -"scenarios like *'how many people would be affected if we had another flood " -"like in 2013'.* A single event hazard covers a short span of time - like a " -"single flood or earthquake event. Single event data is also the most " -"suitable to use for events which are stochastic e.g. earthquakes which " -"seldom occur at the same place and with the same intensity more than once." -msgstr "" - -# 22e853f935cf431f87622a475bfcd348 -#: ../../source/training/socialisation/inasafe_concepts.rst:205 -msgid "" -"Multiple-event data are useful when you would like to plan for disasters " -"that repeatedly affect the same area. For example over the course of 10 " -"years, the same districts or sub-districts may get flooded, though not on " -"every event. Flood and volcano eruptions may be good candidates for using " -"multiple-event data in your disaster management planning." -msgstr "" - -# 89bd84b98a194e7a80e9ea25ae7c6a4d -#: ../../source/training/socialisation/inasafe_concepts.rst:212 -msgid "Requirements for using flood data in |project_name|" -msgstr "" - -# 2459e9e41eac4b2f97c50f146eb6eb69 -#: ../../source/training/socialisation/inasafe_concepts.rst:216 -msgid "**Key notes for floods**" -msgstr "" - -# d8dd1c7abb3c4329aad9806a40a4b5fc -# 3af9d90bdec047e89dfc265b138fdf54 -# f4486d9b45344046bdf146c7e0afcddc -# b3944cfe3918423ba3b752d918049991 -#: ../../source/training/socialisation/inasafe_concepts.rst:218 -#: ../../source/training/socialisation/inasafe_concepts.rst:271 -#: ../../source/training/socialisation/inasafe_concepts.rst:299 -#: ../../source/training/socialisation/inasafe_concepts.rst:328 -#: ../../source/training/socialisation/inasafe_concepts.rst:350 -#: ../../source/training/socialisation/inasafe_concepts.rst:372 -msgid "Format" -msgstr "" - -# 780e5d4a761d493b8f98a55f9fd2bdb4 -#: ../../source/training/socialisation/inasafe_concepts.rst:218 -msgid "Vector polygon data or raster data" -msgstr "" - -# 0653e1e92d594e42b1bb4240c970ac69 -#: ../../source/training/socialisation/inasafe_concepts.rst:220 -msgid "Vector" -msgstr "Vecteur" - -# 5449794bd1fd4c85aec790a6a4e0df12 -#: ../../source/training/socialisation/inasafe_concepts.rst:220 -msgid "A field representing whether the polygon is flood prone or not." -msgstr "" - -# fc1c776435a942539c1b4a4df3981473 -#: ../../source/training/socialisation/inasafe_concepts.rst:222 -msgid "Raster" -msgstr "Raster" - -# e7d1078e2a9c45178ea67acc898edd83 -#: ../../source/training/socialisation/inasafe_concepts.rst:222 -msgid "A simple grid with cell values that represent water depth" -msgstr "" - -# c8d1d6c117db4303bc187b79b34f3105 -# 108cfd6301284eea97d6b10944a3e221 -# a3191f3b4717439aa7c71e71c2573d5c -# d5af0bd8f71e4debaa945a810ff4b3f8 -#: ../../source/training/socialisation/inasafe_concepts.rst:224 -#: ../../source/training/socialisation/inasafe_concepts.rst:277 -#: ../../source/training/socialisation/inasafe_concepts.rst:305 -#: ../../source/training/socialisation/inasafe_concepts.rst:334 -#: ../../source/training/socialisation/inasafe_concepts.rst:356 -#: ../../source/training/socialisation/inasafe_concepts.rst:378 -msgid "Source" -msgstr "" - -# a7fb8c205a80465dac3a13cc61a0959c -# 9335520208ed424fa3593fbe858f2fa4 -# eb59ed9b1c074840a5def4fd29d33733 -#: ../../source/training/socialisation/inasafe_concepts.rst:224 -#: ../../source/training/socialisation/inasafe_concepts.rst:277 -#: ../../source/training/socialisation/inasafe_concepts.rst:305 -msgid "Can be obtained from community mapping or a national mapping agency" -msgstr "" - -# ccd35e3eca444602b098e07718f980f3 -#: ../../source/training/socialisation/inasafe_concepts.rst:229 -msgid "What is exposure?" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:234 -msgid "" -"In the context of |project_name|, exposure refers to people, infrastructure " -"or land areas that may be affected by a disaster. Currently |project_name| " -"supports four kinds of exposure data:" -msgstr "" - -# 10c3052303614bf6bdbe305e28d45377 -#: ../../source/training/socialisation/inasafe_concepts.rst:238 -msgid "roads" -msgstr "" - -# ce36a3cf1dd640c987b466e86f1e5e3f -#: ../../source/training/socialisation/inasafe_concepts.rst:240 -msgid "buildings" -msgstr "" - -# 6a09fc9cab96414c972e5e9194a60be0 -#: ../../source/training/socialisation/inasafe_concepts.rst:242 -msgid "population / people" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:244 -msgid "landcover" -msgstr "" - -# bcbfb6223f5c4156944c2fcbe1ecdab4 -#: ../../source/training/socialisation/inasafe_concepts.rst:248 -msgid "Roads data" -msgstr "" - -# a8f858d1062c48c1b91adae94695838f -#: ../../source/training/socialisation/inasafe_concepts.rst:254 -msgid "" -"Road datasets are a useful data source when you want to understand the " -"impact of a flood on roads infrastructure. With the |project_name| flood on " -"roads impact functions; you can calculate which roads of which type might be " -"impacted by a flood." -msgstr "" - -# 4e406ec22d2e49f4bb8a998ca3291c5d -#: ../../source/training/socialisation/inasafe_concepts.rst:259 -msgid "" -"Very often there will be national datasets available for roads. In this " -"case you should contact your national mapping agency for up-to-date " -"datasets. The OpenStreetMap project is an excellent source of exposure data. " -"The data is freely available, generally well maintained and a vital resource " -"for disaster management planners. There are numerous ways to download " -"OpenStreetMap roads data, but our recommended way is to download the data " -"using the OSM download tool provided with |project_name|." -msgstr "" - -# b0ae74ddfb6d444492bd135419bfdda6 -#: ../../source/training/socialisation/inasafe_concepts.rst:269 -msgid "**Key notes for road data**" -msgstr "" - -# 400cb595f4aa4933952a32761d3ba14e -#: ../../source/training/socialisation/inasafe_concepts.rst:271 -msgid "Vector line data" -msgstr "" - -# 70a8ce9a29ca41ce8d7fed4574d38a63 -# 94163c7d5844444094a3a03a4bd5f513 -#: ../../source/training/socialisation/inasafe_concepts.rst:273 -#: ../../source/training/socialisation/inasafe_concepts.rst:301 -#: ../../source/training/socialisation/inasafe_concepts.rst:352 -#: ../../source/training/socialisation/inasafe_concepts.rst:374 -msgid "Field" -msgstr "" - -# 02ef8d80eb9049969764143667412144 -#: ../../source/training/socialisation/inasafe_concepts.rst:273 -msgid "A field representing road type" -msgstr "" - -# 6a26353c859346dfa4f84920cc485f5e -# e86c14bad7d64c8b9f62d9509e0b85a5 -# 3a11587e5f40495a91419a3181799461 -#: ../../source/training/socialisation/inasafe_concepts.rst:275 -#: ../../source/training/socialisation/inasafe_concepts.rst:303 -#: ../../source/training/socialisation/inasafe_concepts.rst:332 -#: ../../source/training/socialisation/inasafe_concepts.rst:354 -#: ../../source/training/socialisation/inasafe_concepts.rst:376 -msgid "Notes" -msgstr "" - -# 5371265949dd400eaf6d08eff2c5dc62 -#: ../../source/training/socialisation/inasafe_concepts.rst:275 -#: ../../source/training/socialisation/inasafe_concepts.rst:354 -msgid "Topologically correct data are best but not essential" -msgstr "" - -# 39e4252162af4bdca6b8097c9cc9976d -#: ../../source/training/socialisation/inasafe_concepts.rst:282 -msgid "Buildings (structure) data" -msgstr "" - -# e5f0819601ef4b71a759d0b81add59ba -#: ../../source/training/socialisation/inasafe_concepts.rst:288 -msgid "" -"Like roads, building footprints can be a useful dataset to have for " -"understanding the impacts of a flood. For example you may wish to know 'how " -"many buildings might be flooded, and what types of buildings are they?'. In |" -"project_name| you do not need to use engineering quality data. We are more " -"concerned with the numbers and types of structures affected by a disaster " -"and do not work at engineering tolerances needed when, for example, planning " -"a new water mains system." -msgstr "" - -# f1638209e8fa458e832087119bc7f65c -#: ../../source/training/socialisation/inasafe_concepts.rst:297 -msgid "**Key notes for buildings data**" -msgstr "" - -# 34b981b5474b45c4878269b9646408ae -#: ../../source/training/socialisation/inasafe_concepts.rst:299 -#: ../../source/training/socialisation/inasafe_concepts.rst:350 -msgid "Vector polygon data" -msgstr "" - -# 5ea12410182a4c7b82c82293fbf68f92 -#: ../../source/training/socialisation/inasafe_concepts.rst:301 -msgid "A field representing building type" -msgstr "" - -# 40b6b608022b419e9976d087d7dd3b8c -#: ../../source/training/socialisation/inasafe_concepts.rst:303 -msgid "|project_name| does not need 'engineering quality' data" -msgstr "" - -# 2b069bab51a445db901f3491eb805e93 -#: ../../source/training/socialisation/inasafe_concepts.rst:309 -msgid "Population data" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:314 -msgid "" -"Population data can often be obtained from your census bureau or through " -"various online data sources. One problem with population data is that it is " -"often quite coarse (represented using a raster with a large pixel size) and " -"so analysis at large scales (e.g. a small neighbourhood) using population " -"data may not always be the best idea. Currently |project_name| only " -"supports raster based census data, but in the near future we will be " -"releasing a version that supports assigning population estimates to " -"buildings using census data. One of the best online resources for population " -"data is 'WorldPop' - a project that aims to provide population data for " -"anywhere in the globe produced in a standardised and rigorous way." -msgstr "" - -# 296aad71fa964703b7564e17da31bb82 -#: ../../source/training/socialisation/inasafe_concepts.rst:326 -msgid "**Key notes for population data**" -msgstr "" - -# 56e44ab3655d487f88cf44d902b4ebff -#: ../../source/training/socialisation/inasafe_concepts.rst:328 -msgid "Raster 'cell' data" -msgstr "" - -# ee7ba2ee3cac42d784fed88cacae9035 -#: ../../source/training/socialisation/inasafe_concepts.rst:330 -msgid "Requirements" -msgstr "" - -# f9b25a835ba4429db684a5ac76358a00 -#: ../../source/training/socialisation/inasafe_concepts.rst:330 -msgid "Currently the data should be in EPSG:4326 CRS" -msgstr "" - -# f9ecd4546c4247b0ad7793ab09e725a6 -#: ../../source/training/socialisation/inasafe_concepts.rst:332 -msgid "Make sure you know if your data represent density or count" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:334 -msgid "Can be obtained from a national mapping agency" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:338 -msgid "Landcover data" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:343 -msgid "" -"Landcover data can often be obtained from national mapping agencies or " -"through various online data sources. Landcover data are useful if you want " -"to assess the impact of a hazard event such as a volcanic eruption on crops." -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:348 -msgid "**Key notes for landcover data**" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:352 -msgid "A field representing landcover type" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:356 -#: ../../source/training/socialisation/inasafe_concepts.rst:378 -msgid "National mapping agency" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:360 -msgid "Places data" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:365 -msgid "" -"Places data can often be obtained from national mapping agencies or through " -"various online data sources. Places data are useful if you want to assess " -"the impact of a hazard event such as a volcanic ash event on place." -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:370 -msgid "**Key notes for places data**" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:372 -msgid "Vector point data" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:374 -msgid "A field representing place name" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:376 -msgid "There must be a field representing place name" -msgstr "" - -# fdd4ea0b12674703ba8cd23c0ec89245 -#: ../../source/training/socialisation/inasafe_concepts.rst:383 -msgid "What is aggregation?" -msgstr "" - -# 3fad5c7b981048f3949f4bdd2eacf555 -#: ../../source/training/socialisation/inasafe_concepts.rst:384 -msgid "" -"Aggregation is the process whereby we group the results of the analysis by " -"district so that you can see how many people, roads or buildings were " -"affected in each area. This will help you to understand where the most " -"critical needs are, and to generate reports as shown in the image below. " -"Aggregation is optional in |project_name| - if you do not use aggregation, " -"the entire analysis area will be used for the data summaries. Typically " -"aggregation layers in |project_name| have as attributes the name of the " -"district or reporting area. It is also possible to use extended attributes " -"to indicate the ratio of men and women; youth, adults and elderly living in " -"each area. Where these are provided and the exposure layer is population, |" -"project_name| will provide a demographic breakdown per aggregation area " -"indicating how many men, women etc were probably affected in that area." -msgstr "" - -# b1e71095e59f44fb87ce9e4a2a271ea5 -#: ../../source/training/socialisation/inasafe_concepts.rst:403 -msgid "What is contextual data?" -msgstr "" - -# 0676e2cc54e5446981377e8b79a2e804 -#: ../../source/training/socialisation/inasafe_concepts.rst:405 -msgid "" -"Contextual data are data that provide a sense of place and scale when " -"preparing or viewing the results of analysis, while not actually being used " -"for the analysis. For example you may include online maps to show the " -"underlying relief of the study area, or an aerial image to show what " -"buildings and infrastructure exist in the area." -msgstr "" - -# 5e8354c698324e14b3053d34d37b654c -#: ../../source/training/socialisation/inasafe_concepts.rst:415 -msgid "Bing Aerial imagery for Jakarta, courtesy Bing Maps Open Layers" -msgstr "" - -# 25a64b21d344475c87e423db5c281d16 -#: ../../source/training/socialisation/inasafe_concepts.rst:418 -msgid "What is the difference between raster and vector data?" -msgstr "" - -# 388055728db74492a1ce9ad3f9747323 -#: ../../source/training/socialisation/inasafe_concepts.rst:419 -msgid "" -"Vector data is arguably the most common kind of data you will find in the " -"daily use of GIS. It describes geographic data in terms of points that may " -"be connected into lines and polygons. Every object in a vector dataset is " -"called a feature, and is associated with data that describes that feature. " -"The basic shape of objects stored in the vector data is defined with a two-" -"dimensional coordinate system / Cartesian (x, y)." -msgstr "" - -# c141f826e23341e5801faee9961a88b0 -#: ../../source/training/socialisation/inasafe_concepts.rst:430 -msgid "" -"Raster data is different from vector data. While vector data has discrete " -"features constructed out of vertices, and perhaps connected with lines and/" -"or areas; raster data, is like an image. Although it may portray various " -"properties of objects in the real world, these objects don't exist as " -"separate objects; rather, they are represented using pixels or cells of " -"various different numerical values. These values can be real and represent " -"different characteristics of the geography, such as water depth or amount of " -"volcanic ash; or they can be a code than is related to the type of land use " -"or the hazard class." -msgstr "" - -# 42719c8f136b448f97311d2bcebf3ecf -#: ../../source/training/socialisation/inasafe_concepts.rst:444 -msgid "" -"Creating vector data is like using a pen, where you can draw a point, a line " -"or a polygon, Raster data is like taking a picture with a camera, where each " -"square has one value, and all the squares (pixels) combine to make a picture." -msgstr "" - -# 5da005ef4f404a71bc7c6afe2476f3c3 -#: ../../source/training/socialisation/inasafe_concepts.rst:449 -msgid "" -"Both vector and raster data can be used in |project_name|. For example, we " -"use vector data for the extent of a flood hazard and as well as roads and " -"building footprint; but we use raster data for modelled hazards such as " -"flood depth, tsunami inundation and for population exposure." -msgstr "" - -# 585faf152ce64d6bae4a7fbf9d2351d0 -#: ../../source/training/socialisation/inasafe_concepts.rst:455 -msgid "What is the difference between continuous and classified data?" -msgstr "" - -# 68604645efaa48b9bd1d5b92ba9fe4a4 -#: ../../source/training/socialisation/inasafe_concepts.rst:457 -msgid "" -"In |project_name| we differentiate between data which is continuous and data " -"which is classified. The terms can be applied equally to both hazard and " -"exposure data. **Continuous** data represent a **continuously varying " -"phenomenon** such as depth in meters, population counts and so on." -msgstr "" - -# cd8fa642724a4a28b749c0e9cf184afa -#: ../../source/training/socialisation/inasafe_concepts.rst:466 -msgid "Continuous population data - courtesy WorldPop" -msgstr "" - -# 487612500eda44c5aad6eb691333a344 -#: ../../source/training/socialisation/inasafe_concepts.rst:468 -msgid "" -"**Classified** data represent **named groups of values**, for example, high, " -"medium and low hazard. Grouping values works well when you wish to reduce " -"data preparation complexity or deal with local variances in the " -"interpretation of data. For example, a flood depth of 50cm may represent a " -"high hazard zone in an area where people commonly have basements in their " -"houses, and a low hazard zone in areas where people commonly build their " -"houses on raised platforms." -msgstr "" - -# e291d9f56a1c4af8bcef789f7a233f20 -#: ../../source/training/socialisation/inasafe_concepts.rst:480 -msgid "Classified raster flood data - courtesy BNPB/Australian Government" -msgstr "" - -# d16b1b81f6a4452ab80095f4b94b9de6 -#: ../../source/training/socialisation/inasafe_concepts.rst:483 -msgid "What is the analysis extent?" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:485 -msgid "" -"In |project_name| you need to explicitly state what the intended analysis " -"extent should be. In other words, you need to tell InaSAFE where the " -"analysis should be carried out. There is a tool in InaSAFE that will allow " -"you to drag a box around the intended analysis area - you should always " -"check that you have done this before starting your analysis." -msgstr "" - -# e17e7341a32d43279413a7d1e1da2c62 -#: ../../source/training/socialisation/inasafe_concepts.rst:-1 -msgid "Analysis extent in |project_name|" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:496 -msgid "" -"|project_name| will show you what your current desired analysis extent is " -"(blue line in green box), what the extent of your last analysis was (red box " -"in the image above) and what your effective extent is (green box in the " -"image above). The effective extent may not correspond exactly to your " -"desired analysis extent because |project_name| always aligns the extent to " -"the edge of raster pixels." -msgstr "" - -# 8173c776961d4a9d84f78009b5be6749 -#: ../../source/training/socialisation/inasafe_concepts.rst:504 -msgid "What is an Impact Function?" -msgstr "" - -# 789128e4b0bf4600b3119ced2de76dd4 -#: ../../source/training/socialisation/inasafe_concepts.rst:510 -msgid "" -"An Impact Function (often abbreviated to IF) is software code in |" -"project_name| that implements a particular algorithm to determine the impact " -"of a hazard on the selected exposure. Running an impact function is done " -"when you have prepared all your input data, defined your analysis extent and " -"wish to now see the impact outputs." -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:516 -msgid "" -"Again, we should emphasise here that Impact Functions **do not model " -"hazards** - they **model the effects** of one or more hazard events on an " -"exposure layer. |project_name| groups its impact functions according to the " -"kind of hazard they work on:" -msgstr "" - -# ade655d0150547829ab6950bdc59a15d -#: ../../source/training/socialisation/inasafe_concepts.rst:522 -msgid "Supported data types for each hazard type in |project_name|" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:527 -msgid "Name Impact Functions" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:527 -msgid "Detail" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:530 -msgid "**Earthquake Impact Functions**" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:533 -msgid "" -"**Earthquake hazard**: continuous raster, classified raster, and classified " -"polygon" -msgstr "" - -# fbf23b53aa494063897cdd01f7fd7285 -# a3050f23b54e4934bc42873c73dbce07 -# 32cd0ab1800f491d904d8cf4e467805e -# 80e1d16d676745c6b2954c717bff6d4d -#: ../../source/training/socialisation/inasafe_concepts.rst:535 -#: ../../source/training/socialisation/inasafe_concepts.rst:548 -#: ../../source/training/socialisation/inasafe_concepts.rst:561 -#: ../../source/training/socialisation/inasafe_concepts.rst:574 -#: ../../source/training/socialisation/inasafe_concepts.rst:586 -#: ../../source/training/socialisation/inasafe_concepts.rst:608 -msgid "**Population exposure**: continuous raster with counts" -msgstr "" - -# fdf568af480443fabde7bf4d93914534 -# f2e03758b4734ce291b1a51c4174c30a -#: ../../source/training/socialisation/inasafe_concepts.rst:537 -#: ../../source/training/socialisation/inasafe_concepts.rst:550 -msgid "" -"**Building exposure**: classified polygon or point with a type attribute" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:543 -msgid "**Flood Impact Functions**" -msgstr "" - -# f51dbd36282140e6abb2f8a012281986 -#: ../../source/training/socialisation/inasafe_concepts.rst:546 -msgid "**Flood hazard**: continuous raster or classified polygon" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:552 -#: ../../source/training/socialisation/inasafe_concepts.rst:565 -msgid "**Road exposure**: classified line with a type attribute" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:556 -msgid "**Tsunami Impact Functions**" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:559 -msgid "**Tsunami hazard**: continuous raster or classified polygon" -msgstr "" - -# c58192c5369b430dad97f6fe801ae887 -# 3542555330bf4e7984d5f77b397e379d -#: ../../source/training/socialisation/inasafe_concepts.rst:563 -#: ../../source/training/socialisation/inasafe_concepts.rst:576 -#: ../../source/training/socialisation/inasafe_concepts.rst:588 -#: ../../source/training/socialisation/inasafe_concepts.rst:598 -#: ../../source/training/socialisation/inasafe_concepts.rst:610 -msgid "**Building exposure**: classified polygon with a type attribute" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:569 -msgid "**Volcano Impact Functions**" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:572 -msgid "**Volcano hazard**: continuous polygon, classified polygon, and point" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:581 -msgid "**Volcanic Ash Impact Functions**" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:584 -msgid "**Volcano hazard**: clasified polygon or continuous raster" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:593 -msgid "**Cyclone Impact Functions**" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:596 -msgid "**Cyclone hazard**: clasified polygon or continuous raster" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:603 -msgid "**Generic Impact Functions**" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:606 -msgid "" -"**Generic hazard**: classified polygon, classified raster or continuous " -"raster" -msgstr "" - -#: ../../source/training/socialisation/inasafe_concepts.rst:612 -msgid "**Landcover exposure**: classified polygon with a type" -msgstr "" - -# 0ec3ac42c4f7440e86ead959bb634d05 -#: ../../source/training/socialisation/inasafe_concepts.rst:614 -msgid "" -"A note about generic impact functions: Generic IF's are useful when your " -"data does not conform to the a priori expectations of |project_name|. For " -"example, you may wish to produce a report on buildings that might be " -"affected by a landslide, drought, smoke haze or any other hazard that does " -"not have an explicit Impact Function in |project_name|." -msgstr "" - -# df4adc870bc94848b85d5184be5750d2 -#: ../../source/training/socialisation/inasafe_concepts.rst:623 -msgid "" -"Each Impact Function will generate outputs that may include: - an impact map " -"layer - an impact summary - minimum needs - action checklists" -msgstr "" - -# eec5fbad8f594f27b592d3341e0af4ee -#: ../../source/training/socialisation/inasafe_concepts.rst:635 -msgid "What is an impact layer?" -msgstr "" - -# 841bb12bd0d444fd814b94cadcff0af7 -#: ../../source/training/socialisation/inasafe_concepts.rst:636 -msgid "" -"An impact layer is a new GIS dataset that is produced as the result of " -"running an impact function. It will usually represent the exposure layer. " -"For example, if you do a flood analysis on buildings, the impact layer " -"produced will be a buildings layer but each building will be classified " -"according to whether it is dry, wet or flooded. |project_name| will " -"typically apply its own symbology to the output impact layer to make it " -"clear which are the impacted buildings. This is illustrated in the image " -"below." -msgstr "" - -# 9df4b6dbe422459683b9f254bb5ecbfc -#: ../../source/training/socialisation/inasafe_concepts.rst:644 -msgid "" -"It should also be noted that the impact layer will only include features / " -"cells that occur within the analysis extent. All others will be 'clipped " -"away'. It is very important to remember this when interpreting the map " -"legend and the impact summary (see section below) because they are only " -"relevant to the analysis area. The impact layer is not saved by default. If " -"you want to save this spatial data you need to do this yourself." -msgstr "" - -# 1757d956e4754e139008d15af8cc8612 -#: ../../source/training/socialisation/inasafe_concepts.rst:656 -msgid "What is the impact summary?" -msgstr "" - -# 521200b445c94b8c9bd0040d77cb0915 -#: ../../source/training/socialisation/inasafe_concepts.rst:657 -msgid "" -"Whereas the impact layer represents spatial data, the impact summary is " -"tabular and textual data. The impact summary provides a table (or series of " -"tables) and other textual information with the numbers of buildings, roads " -"or people affected, and includes other useful information such as minimum " -"needs breakdowns, action checklists and summaries. The impact summary " -"presents the results of the impact function in an easy to digest form. Our " -"expectation that the numbers show here would form part of the input to your " -"emergency management planning process - typically as a launch point for " -"discussion and planning on how to have sufficient resources in order to " -"cater for the impacted people, buildings or roads should a similar event to " -"the one on which the scenario is based occur. An example of an impact " -"summary is shown below." -msgstr "" - -# 5e5f85ff2ed947fb8d2a15b007eb6002 -#: ../../source/training/socialisation/inasafe_concepts.rst:674 -msgid "Example impact summary table showing breakdown of buildings flooded." -msgstr "" - -# 0dc7f90447864d1a94929ecd57d4c2fc -#: ../../source/training/socialisation/inasafe_concepts.rst:677 -msgid "What are minimum needs?" -msgstr "" - -# b09f346618a5441b96fe79cabbb73321 -#: ../../source/training/socialisation/inasafe_concepts.rst:678 -msgid "" -"Minimum needs are a population specific reporting component for the impact " -"summary. They are based on generic or regional preferences and define the " -"daily food and well-being requirements for each individual who may be " -"displaced during a disaster. For example you could specify that each person " -"should receive 20l of fresh drinking water per day, 50l of bathing water and " -"so on. |project_name| will calculate these numbers to provide an estimate of " -"the total needs for the displaced population." -msgstr "" - -# a3626409c20241f5a089e6807ecc9ad8 -#: ../../source/training/socialisation/inasafe_concepts.rst:691 -msgid "What are action checklists?" -msgstr "" - -# 19a42241efd44bd7a4d14c8c4f28fa14 -#: ../../source/training/socialisation/inasafe_concepts.rst:692 -msgid "" -"Action checklists are generated lists of things disaster managers should " -"consider when implementing their disaster management plan. Currently the " -"action checklists are fairly simplistic - they are intended to prompt " -"discussion and stimulate disaster managers to think about the important " -"contingencies they should have in place." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/socialisation/introduction.po b/docs/i18n/fr/LC_MESSAGES/training/socialisation/introduction.po deleted file mode 100644 index 392d0d32..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/socialisation/introduction.po +++ /dev/null @@ -1,134 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:03+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 01712ba7283e433985ef115667735d37 -#: ../../source/training/socialisation/introduction.rst:4 -msgid "Introducing |project_name|" -msgstr "" - -# 27eab81ed83d4418a2880d6073844126 -#: ../../source/training/socialisation/introduction.rst:6 -msgid "" -"In this section we will introduce |project_name| and provide some background " -"on the |project_name| project." -msgstr "" - -# f866840a68bc424ca41afe58d528501a -#: ../../source/training/socialisation/introduction.rst:10 -msgid "About the |project_name| project" -msgstr "" - -# b80d3b1c1f434992a7ec1629528912f0 -#: ../../source/training/socialisation/introduction.rst:12 -msgid "" -"The |project_name| project (http://inasafe.org) was started in order to " -"provide a tool for disaster managers who want to understand what the " -"potential impacts of a disaster will be. Initially the focus of activity was " -"in Indonesia - a country that is highly vulnerable to different disasters " -"including flood, tsunami, volcano, earthquakes, as well as other localised " -"disasters such as landslides, wildfire and so on. InaSAFE has since been " -"adopted for use in many other countries - it is not 'Indonesia specific'." -msgstr "" - -# 680a31d639134a55801d52a1d782ff89 -#: ../../source/training/socialisation/introduction.rst:20 -msgid "" -"The underlying goal of InaSAFE is to encourage and facilitate better " -"planning for disasters - our slogan is **\"better planning saves lives\"**." -msgstr "" - -#: ../../source/training/socialisation/introduction.rst:27 -msgid "" -"Each country in the world faces its own unique challenges. According to the " -"\"Global Assessment Report for Disaster Risk Reduction (GAR)\" for Indonesia " -"the chief concerns are volcanoes and floods - other countries will face " -"different challenges." -msgstr "" - -# bc1383219a5b4bb09f6924a034309552 -#: ../../source/training/socialisation/introduction.rst:36 -msgid "" -"Key disaster risks for Indonesia - Image courtesy ``_" -msgstr "" - -# 357a48f067f6491997c1a58ac2f620b5 -#: ../../source/training/socialisation/introduction.rst:43 -msgid "" -"Losses resulting from disasters in Indonesia - Image courtesy ``_" -msgstr "" - -# 3e45ab636ec34300977b176331414ece -#: ../../source/training/socialisation/introduction.rst:46 -msgid "" -"In the |project_name| project we strive to provide a tool that will enhance " -"the abilities of disaster managers to prepare for disasters and to reduce " -"the impact of those disasters on the local population and infrastructure." -msgstr "" - -# 707c4854ee304f13a5ecde4b9d838722 -#: ../../source/training/socialisation/introduction.rst:51 -msgid "Open source" -msgstr "" - -#: ../../source/training/socialisation/introduction.rst:52 -msgid "" -"From the beginning, |project_name| has been an open source project (GPL " -"license). This means there are no licensing fees, the software can be freely " -"copied and shared with anyone, and the source codes used to create the " -"software are freely available which means that anyone with a little " -"technical knowledge can contribute to the project. Being an Open Source " -"project is important for us because we want as many people as possible to be " -"able to use and improve the software. If 'better planning saves lives', " -"having a tool that can be used by everyone to do better planning makes " -"sense, right?" -msgstr "" - -# cab0b2730c2447469a18e1f46ff4932b -#: ../../source/training/socialisation/introduction.rst:62 -msgid "Open data" -msgstr "" - -# 6f2fb9de1ced4016a673a239289e4ce1 -#: ../../source/training/socialisation/introduction.rst:63 -msgid "" -"A key driving force in the ability to use tools such as |project_name| is " -"open access to relevant, up-to-date and well maintained geospatial data. " -"Without roads, buildings, administrative areas, flood and population data " -"etc., a tool like |project_name| would be impossible to use. OpenStreetMap." -"org, WorldPop and many government and non-government agencies around the " -"world have been leading the effort to make such datasets available. We " -"cannot emphasise enough the importance of government in taking a lead role " -"in making their data freely available so that it can be used for the benefit " -"of their citizens." -msgstr "" - -# 1be224a72e0e41a783f06ed963a8cb01 -#: ../../source/training/socialisation/introduction.rst:74 -msgid "Watch the |project_name| promotional movie" -msgstr "" - -# 38ccee89df39451ea95f7c0f4a138883 -#: ../../source/training/socialisation/introduction.rst:75 -msgid "" -"If you want to know more you can watch the promotional movie. ``_" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/socialisation/introduction_to_qgis.po b/docs/i18n/fr/LC_MESSAGES/training/socialisation/introduction_to_qgis.po deleted file mode 100644 index 84667655..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/socialisation/introduction_to_qgis.po +++ /dev/null @@ -1,817 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:03+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 4d72ee773a0b4975ae579cff6c1f27ed -#: ../../source/training/socialisation/introduction_to_qgis.rst:6 -msgid "Introduction to QGIS" -msgstr "Une introduction à QGIS" - -# 5f679ab8acc94203a84322e50c6a501d -#: ../../source/training/socialisation/introduction_to_qgis.rst:9 -msgid "Introduction" -msgstr "Introduction" - -# 13da5079ee32470781bd66dbed5d5016 -#: ../../source/training/socialisation/introduction_to_qgis.rst:11 -msgid "" -"QGIS is a user-friendly open source Geographic Information System (GIS). It " -"runs on Linux, OS X, Windows and Android. QGIS supports numerous vector, " -"raster, database formats and provide extendable functionality. Learn more " -"about the project at: `http://www.qgis.org `__" -msgstr "" - -# a86eef5c1f124ca3941b9b4bbc2dc379 -#: ../../source/training/socialisation/introduction_to_qgis.rst:16 -msgid "QGIS is great because:" -msgstr "" - -# 82ac135d5ccb4113b85360c7ddba63f3 -#: ../../source/training/socialisation/introduction_to_qgis.rst:18 -msgid "It is completely free. It doesn’t cost anything." -msgstr "" - -# b58b6e1d12334b249347692f8e074606 -#: ../../source/training/socialisation/introduction_to_qgis.rst:20 -msgid "" -"It’s free, as in liberty. If you think a feature is missing, you can sponsor " -"the development of a feature, or add it yourself if you are familiar with " -"programming." -msgstr "" - -# 4ac9f317999d483fbc768749a321168b -#: ../../source/training/socialisation/introduction_to_qgis.rst:24 -msgid "" -"It’s constantly developing and improving. Because many people continue " -"adding features, it keeps getting better." -msgstr "" - -# 97bdd9fd16034c5db6b714f4d5d1312b -#: ../../source/training/socialisation/introduction_to_qgis.rst:27 -msgid "" -"Extensive help and documentation is available. If you have problems you can " -"always turn to the software documentation, other QGIS users, or even the " -"developers." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:31 -msgid "" -"QGIS provides a continuously growing number of capabilities provided by core " -"functions and plugins. You can visualise, manage, edit, analyse data and " -"compose printable maps. QGIS is also the platform which InaSAFE is built on, " -"and so this document focuses on building foundational skills using QGIS." -msgstr "" - -# 95423db552b6400f9e6d3c88060059d5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:37 -msgid "Learning objectives:" -msgstr "" - -# 74b3dc03f5094f3ebe2821e7c8dd4604 -#: ../../source/training/socialisation/introduction_to_qgis.rst:39 -msgid "Understand how to get QGIS" -msgstr "" - -# 468543ba819a442186a0046d41fb64d5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:41 -msgid "Understand how to install QGIS" -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:43 -msgid "Understand QGIS and its layout" -msgstr "" - -# 00d1be537f7543b78b7012073c685515 -#: ../../source/training/socialisation/introduction_to_qgis.rst:45 -msgid "Understand QGIS toolbars and how to manage them" -msgstr "" - -# e510ef581e63424aa70688d07ffe069a -#: ../../source/training/socialisation/introduction_to_qgis.rst:47 -msgid "Learn basic operation in QGIS" -msgstr "" - -# e7dc852d20ff459e821f78c35505289b -#: ../../source/training/socialisation/introduction_to_qgis.rst:49 -msgid "How to install InaSAFE from QGIS" -msgstr "" - -# dee9aadaccba4a6c8f7fffcee04634f5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:51 -msgid "Introduction to the InaSAFE toolbar and functionality" -msgstr "" - -# c4f8ec96b79b496a8b9773a7c6c98462 -#: ../../source/training/socialisation/introduction_to_qgis.rst:54 -msgid "Data for this exercise:" -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:56 -msgid "" -"The data for this exercise is available in Introduction to QGIS.zip which " -"can be downloaded in `InaSAFE Training Data Packages `__. To download QGIS, go to the `QGIS Website " -"`__ (we will explain how to download and install " -"QGIS later in this exercise). We will use the following QGIS project and " -"data:" -msgstr "" - -# 55112100dc96495685b545a974c9664a -#: ../../source/training/socialisation/introduction_to_qgis.rst:62 -msgid "DKI_Jakarta_Introduction.qgs" -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:64 -msgid "Jakarta_roads_WGS84.shp" -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:66 -msgid "Jakarta_Flood_18113_WGS84.shp" -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:68 -msgid "Jakarta_Flood_HKV_WGS84.tif" -msgstr "" - -# 39c6f470f0424d4f81aa91d2db0d9cd3 -#: ../../source/training/socialisation/introduction_to_qgis.rst:71 -msgid "Exercises" -msgstr "" - -# ea7c04a01b7340a99af1445b512dfe82 -#: ../../source/training/socialisation/introduction_to_qgis.rst:74 -msgid "1. Getting QGIS" -msgstr "" - -# cafff7d3e6874fd1b98234bf579eb004 -#: ../../source/training/socialisation/introduction_to_qgis.rst:76 -msgid "You can download QGIS software by accessing the main QGIS website:" -msgstr "" - -# 37b3fadcfd694bb7afe759d6c4ce5021 -#: ../../source/training/socialisation/introduction_to_qgis.rst:78 -msgid "" -"Open your web browser and in the address bar at the top of the window type :" -"kbd:`qgis.org`. Press :kbd:`Enter`." -msgstr "" - -# 46ea03b3498b4b7e854c17c920966804 -#: ../../source/training/socialisation/introduction_to_qgis.rst:81 -msgid "The QGIS website will look something like this:" -msgstr "Le sit de QGIS doit ressembler à ça:" - -# 0c91440c543c4402bc2b5836af25f609 -#: ../../source/training/socialisation/introduction_to_qgis.rst:86 -msgid "Click :guilabel:`Download Now`." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:88 -msgid "" -"If you are using Windows, there are 2 versions of QGIS (version 2.18 and " -"version 3.0). Choose :kbd:`Long term release repository (most stable)` and " -"click :guilabel:`QGIS Standalone Installer Version 2.18 (32 bit or 64 bit " -"depend your computer operating system)`. Your exact version number may be " -"different." -msgstr "" - -# c3184d5bc11a4f2aa8968e13d83b6f7f -#: ../../source/training/socialisation/introduction_to_qgis.rst:96 -msgid "" -"If you are not using Windows, select your operating system from the menu. " -"Follow the installation instructions." -msgstr "" - -# 8790737b60d746c58cc19a3309a21a46 -#: ../../source/training/socialisation/introduction_to_qgis.rst:100 -msgid "2. Installing QGIS" -msgstr "" - -# b0209c9fd88a489abcee9c7342e10686 -#: ../../source/training/socialisation/introduction_to_qgis.rst:102 -msgid "" -"After you download the QGIS software installer, the next step is to install " -"QGIS to your computer." -msgstr "" - -# a33c514bdc4044079f37ac947b08b99d -#: ../../source/training/socialisation/introduction_to_qgis.rst:104 -msgid "Open the folder where you have the QGIS installation file." -msgstr "" -"Ouvrez le répertoire dans lequel vous avez téléchargé le fichier " -"d'installation QGIS." - -# d2392a46929f45f9807bbe3367c85f2b -#: ../../source/training/socialisation/introduction_to_qgis.rst:109 -msgid "" -"Run the installation file. If you are installing QGIS version 2.x, it should " -"look something like this:" -msgstr "" - -# 438ad65a43f24e908d457f78012246d0 -#: ../../source/training/socialisation/introduction_to_qgis.rst:114 -msgid "Click :guilabel:`Next` and follow the instructions." -msgstr "" - -# b67e7acca7ea4ca3bea86fddeaa7609d -#: ../../source/training/socialisation/introduction_to_qgis.rst:116 -msgid "" -"Once the installation is finished, you can open your QGIS in Start Menu." -msgstr "" - -# d068092ff28546e59f803232eafa21aa -#: ../../source/training/socialisation/introduction_to_qgis.rst:121 -msgid "QGIS will look something like this:" -msgstr "QGIS doit ressembler à ceci:" - -# d101d071fb3d45eb9ccc6a32406088f9 -#: ../../source/training/socialisation/introduction_to_qgis.rst:127 -msgid "3. Understanding QGIS interface" -msgstr "" - -# bd48569f2e814c34be3b501942d0b87a -#: ../../source/training/socialisation/introduction_to_qgis.rst:129 -msgid "" -"Next, we will introduce the main QGIS interface. In general, there are four " -"elements in QGIS:" -msgstr "" - -# 547d9332b6554e9bbb3a2f1d7713cd21 -#: ../../source/training/socialisation/introduction_to_qgis.rst:135 -msgid "" -"**Layers Panel**: On the left side of QGIS is the layers panel. This panel " -"lists the layers, or files, that are loaded into our QGIS project. The " -"Layers Panel not only shows all the files that are currently open, it also " -"determines the order that they will be drawn on the map canvas. A layer that " -"is at the bottom of the list will be drawn first, and any layers above it " -"will be drawn on top." -msgstr "" - -# 314a89e674c547c6954ca1540a54ebb5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:142 -msgid "" -"**Toolbar**: At the top of QGIS are a large number of tools, which are " -"contained within various *toolbars*. For example, the :guilabel:`File` " -"toolbar allows you to save, load, print and start a new project. We already " -"used one of these tools when we opened this project." -msgstr "" - -# d791e1d923a249b8abecd7868cc898d1 -#: ../../source/training/socialisation/introduction_to_qgis.rst:151 -msgid "" -"By hovering your mouse over an icon, the name of the tool will appear to " -"help you identify each tool. The number of tools (buttons) can seem a bit " -"overwhelming at first, but you will gradually get to know them. The tools " -"are grouped into related functions on toolbars. If you look closely you can " -"see a vertical array of ten dots to the left of each toolbar. By grabbing " -"these with your mouse, you can move the toolbar to a more convenient " -"location, or separate it so that it sits on its own." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:163 -msgid "" -"**Map Canvas**: All of the map data that we load into QGIS will be displayed " -"here, both vector data and raster data." -msgstr "" - -# bc2c84373bbd45fc91c1854daf45566d -#: ../../source/training/socialisation/introduction_to_qgis.rst:166 -msgid "" -"**Status bar**: The status bar shows information about the current map. It " -"allows you to adjust the map scale and see the mouse cursor’s coordinates on " -"the map." -msgstr "" - -# da2d9fc184114c1f91164f66195904c2 -#: ../../source/training/socialisation/introduction_to_qgis.rst:173 -msgid "" -"The coordinates of this map are the same type of coordinates that are " -"recorded by GPS devices. The status bar shows the longitude and latitude of " -"your mouse cursor." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:177 -msgid "4. Manage toolbars" -msgstr "" - -# 2ca782127a734ddd95cda24b3306bb49 -#: ../../source/training/socialisation/introduction_to_qgis.rst:179 -msgid "" -"At the top of QGIS are a large number of tools, which are contained within " -"various 'toolbars.' For example, the File toolbar allows you to save, load, " -"print, and start a new project. We already used one of these tools when we " -"opened this project." -msgstr "" - -# 36adf3f26e70497cb9021601c268b575 -#: ../../source/training/socialisation/introduction_to_qgis.rst:186 -msgid "" -"By hovering your mouse over an icon, the name of the tool will appear to " -"help you identify each tool." -msgstr "" -"En passant le curseur sur une icone. le nom de l'outil s'affiche pour vous " -"aider à identifier chaque outil." - -#: ../../source/training/socialisation/introduction_to_qgis.rst:189 -msgid "" -"The number of tools (buttons) can seem a bit overwhelming at first, but you " -"will gradually get to know them. The tools are grouped into related " -"functions on toolbars. If you look closly you can see a vertical array of " -"ten dots to the left of each toolbar. By grabbing these with your mouse, you " -"can move the toolbar to a more convenient location, or separate it so that " -"it sits on its own." -msgstr "" - -# 243d3c88b46d4e409d7c987352192f06 -#: ../../source/training/socialisation/introduction_to_qgis.rst:199 -msgid "" -"If you feel overwhelmed by the number of toolbars, you can customize the " -"interface to see only the tools you use most often, adding or removing " -"toolbars as necessary." -msgstr "" - -# 193d97ba40cb43b8a95f1f4c681f2fd8 -#: ../../source/training/socialisation/introduction_to_qgis.rst:203 -msgid "" -"To add or remove a toolbar, **right-click** on empty space in toolbars, or " -"go to :menuselection:`View ‣ Toolbars`." -msgstr "" - -# 3baab396780047f59d3b2e2dfeba9597 -#: ../../source/training/socialisation/introduction_to_qgis.rst:206 -msgid "" -"Rearrange the toolbar so that it’s on one line. Left-click and hold the " -"vertical dots on the left hand side of the tool. Drag to the first line of " -"the toolbar." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:214 -msgid "5. QGIS basic tools" -msgstr "" - -# 82715a277d5b4049be420adaf5d93a4a -#: ../../source/training/socialisation/introduction_to_qgis.rst:216 -msgid "" -"We’ve already taken a look at the QGIS toolbar and have seen the tools for " -"opening QGIS. Here’s a list of some of the most commonly used tools. Feel " -"free to play around with them if you like. The important thing for now is to " -"start getting familiar with QGIS." -msgstr "" - -# c79350e27cc24ad792cf9685b0e4b854 -#: ../../source/training/socialisation/introduction_to_qgis.rst:222 -msgid "Add Vector Layer" -msgstr "" - -# cc041297ce5244ce821d516845d9c519 -#: ../../source/training/socialisation/introduction_to_qgis.rst:222 -msgid "Add vector data to Layer List" -msgstr "" - -# 1996f0e9497341cab95768cf0e8e82c5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:224 -msgid "Add Raster Layer" -msgstr "" - -# 8ba2808a6b314d238d7445e705a19948 -#: ../../source/training/socialisation/introduction_to_qgis.rst:224 -msgid "Add raster data to Layer List" -msgstr "" - -# 931e688baac747efa74915e9c15981f0 -#: ../../source/training/socialisation/introduction_to_qgis.rst:226 -msgid "New" -msgstr "" - -# d455fa03761a4c0898277921d6029ae3 -#: ../../source/training/socialisation/introduction_to_qgis.rst:226 -msgid "Create new QGIS project" -msgstr "" - -# b156d064104a41bebb9152b0b01b92c0 -#: ../../source/training/socialisation/introduction_to_qgis.rst:228 -msgid "Open" -msgstr "" - -# 217eb08b3a3b488990e3c41543ea2ca6 -#: ../../source/training/socialisation/introduction_to_qgis.rst:228 -msgid "Open QGIS project" -msgstr "" - -# ab42e7e791354881acdbe3bc91c7fb5c -#: ../../source/training/socialisation/introduction_to_qgis.rst:230 -msgid "Toggle Editing" -msgstr "Bascule en mode édition" - -# 8a12fc00b481472f93095e84cbf62d3c -#: ../../source/training/socialisation/introduction_to_qgis.rst:230 -msgid "Edit features in a layer" -msgstr "Éditer un objet dans une couche" - -# a1ee368c561249278f579e81105c09ff -#: ../../source/training/socialisation/introduction_to_qgis.rst:232 -msgid "Pan Map" -msgstr "faire glisser la carte" - -# f1ec663ea89a4f6991c8b7c52ee11d00 -#: ../../source/training/socialisation/introduction_to_qgis.rst:232 -msgid "Drag the map to a new location" -msgstr "" - -# a6d012ab4afd4767ab76ab639561eb81 -#: ../../source/training/socialisation/introduction_to_qgis.rst:234 -msgid "Zoom In" -msgstr "Zoomer" - -# 09dd3ce4b25f46e78bdd8e0eace053d0 -#: ../../source/training/socialisation/introduction_to_qgis.rst:234 -msgid "Zoom in on the map" -msgstr "" - -# d33b926aa74946abb47bf4f22349efe1 -#: ../../source/training/socialisation/introduction_to_qgis.rst:236 -msgid "Zoom Out" -msgstr "Dézoomer" - -# 9d35736b4dcd4ddc90a3ad614e3828b4 -#: ../../source/training/socialisation/introduction_to_qgis.rst:236 -msgid "Zoom out on the map" -msgstr "" - -# 7b4dfa96e20b4bd1a8c0f318c5af6965 -#: ../../source/training/socialisation/introduction_to_qgis.rst:238 -msgid "Zoom Full" -msgstr "zoomer sur l'ensemble des couches" - -# 17b645d1deb5452383dfa19c4fddc53f -#: ../../source/training/socialisation/introduction_to_qgis.rst:238 -msgid "Zoom so that all layers fit in the map window" -msgstr "" - -# 6d20dce2643c413ba26cbb28eaeb561b -#: ../../source/training/socialisation/introduction_to_qgis.rst:240 -msgid "Identify features" -msgstr "" - -# 67045701a071423fa3ec8765c3a8af31 -#: ../../source/training/socialisation/introduction_to_qgis.rst:240 -msgid "Identify the attribute of an active layer in the map canvas" -msgstr "" - -# b272efaf29224772bedec635eba6c65a -#: ../../source/training/socialisation/introduction_to_qgis.rst:242 -msgid "Open Attribute Table" -msgstr "Ouvrir la table d'attributs" - -# f7d1e9fff12248a484ee471da180e169 -#: ../../source/training/socialisation/introduction_to_qgis.rst:242 -msgid "Open a layer’s attribute table" -msgstr "" - -# 6558d0a6d1af4237be49771f9a34d0d5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:244 -msgid "Select Single Feature" -msgstr "" - -# 092fb0ee267c42c8a38e5b104cc85ffa -#: ../../source/training/socialisation/introduction_to_qgis.rst:244 -msgid "Select a feature in the selected layer" -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:248 -msgid "6. Navigating the map" -msgstr "" - -# eef16a11f34e475c9d5beedef56d0759 -#: ../../source/training/socialisation/introduction_to_qgis.rst:250 -msgid "" -"Before we examine the attributes of individual features, let’s take a quick " -"look at how to navigate the map. The main controls for moving the map around " -"and zooming in-and-out are on the panels at the top of QGIS by default." -msgstr "" - -# 93bd08d1aa04493795b3b30e323b9905 -#: ../../source/training/socialisation/introduction_to_qgis.rst:256 -msgid "" -"When you click on one of these buttons, it changes the action of your mouse " -"in the main map window." -msgstr "" - -# fef468595cc24b90915431e626822410 -#: ../../source/training/socialisation/introduction_to_qgis.rst:258 -msgid "" -"Select the first button that looks like a hand. Now hold the left mouse " -"button down and drag the mouse in the map window. This allows you to **pan** " -"the map, or move it around." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:262 -msgid "" -"Select the button that has a plus :guilabel:`(+)` sign inside a magnifying " -"glass allows you to **zoom in** on the map. Using your mouse, draw a box " -"around your area of interest and release your mouse." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:266 -msgid "" -"The button that has a minus :guilabel:`(-)` sign inside a magnifying glass " -"allows you to **zoom out** on the map. Select this button and click on the " -"map." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:270 -msgid "" -"The button that looks like a magnifying glass with blue arrows pointing away " -"from it lets you **zoom to the full extent** of your map. Click this button " -"to see all the data that is loaded in the project fit into the map canvas." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:274 -msgid "" -"We can always change the QGIS projection based on the projection of the " -"data. It makes it easier to edit our data in further steps if QGIS has the " -"same projection as the data." -msgstr "" - -# 3a308c81bfc749f98c0e1d88ef645f86 -#: ../../source/training/socialisation/introduction_to_qgis.rst:279 -msgid "7. Hide and move layers" -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:281 -msgid "" -"Sometimes if you handle many layers, you need to hide/unhide layers to make " -"the map canvas more organized. For example, open the pre-saved QGIS " -"project, :file:`DKI_Jakarta_Introduction.qgs`. Once all the data are " -"displayed on your map canvas, try toggling the layer, **Flood continous " -"raster (2007)** by clicking on the checkbox in the Layers Panel on the left " -"side of your screen." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:291 -msgid "" -"After you uncheck the check box, the layer will disappear from the map " -"canvas. This operation won’t remove your layer from the layers list but only " -"hide it temporarily until you recheck again the check box. Try to turn ON " -"the layer again to unhide the layer." -msgstr "" - -# 843bdbb032664e09922c82576a4afccb -#: ../../source/training/socialisation/introduction_to_qgis.rst:296 -msgid "" -"What if your layer does not appear in the map canvas even though you already " -"turned ON your layers? In this example, the **Jakarta_roads_WGS84** layer " -"didn’t appear in Map Canvas even though it’s already turned ON. In this " -"case, it’s related to layer order. The layers in your Layers List are drawn " -"on the map in a certain order. The layer at the bottom of the list is drawn " -"first, and the layer at the top is drawn last. By changing the order of the " -"layers in the list, you can change the order they are drawn in." -msgstr "" - -# ca407eecfeb146b482f058b8346caf49 -#: ../../source/training/socialisation/introduction_to_qgis.rst:306 -msgid "For example in this layer order..." -msgstr "" - -# 8658f64f06974380854ddef6f1d423d0 -#: ../../source/training/socialisation/introduction_to_qgis.rst:311 -msgid "" -"… would result in **Jakarta_roads_WGS84** being hidden as they position " -"*underneath* **A Flood in Jakarta like 2013**. To solve this problem, simply " -"click the **Jakarta_roads_WGS84** layer and drag to the top of the Layer " -"List or reorder them to the correct order." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:319 -msgid "What do you see after you move the **Jakarta_roads_WGS84** layer?" -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:321 -msgid "" -"You can see the road network now because the **Jakarta_roads_WGS84** layer " -"is shown above the other layers." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:325 -msgid "8. Symbolise layer" -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:327 -msgid "" -"The symbology of a layer is its visual appearance on the map. One of the " -"basic strengths of GIS is that you have a dynamic visual representation of " -"the data you’re working with. Therefore, the visual appearance of the map " -"(which depends on the symbology of the individual layers) is very important. " -"For example in the project that you currently have open, :file:" -"`DKI_Jakarta_Introduction.qgs`, you will see the **A Flood in Jakarta like " -"2013** layer covering the area of DKI Jakarta. Did the flood really cover " -"the whole of DKI Jakarta?" -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:335 -msgid "" -"To answer this, let’s turn OFF the **Jakarta_roads_WGS84** and **Flood " -"continous raster (2007)** layers and open the attribute table of **A Flood " -"in Jakarta like 2013** by right clicking the layer and selecting :guilabel:" -"`Open Attribute Table`. You will see there are 6 columns in this table and " -"one of the columns has the name ‘FLOODPRONE’ with values of Yes and No. A " -"value of Yes represents an area that is flooded, while a value of No " -"represents an area that has not been flooded. Let’s select a feature in this " -"layer and see the highlighted feature in the attribute table." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:346 -msgid "What is the value of the selected feature in the attribute table?" -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:348 -msgid "" -"Not all of the features in this dataset have a value of Yes (or flooded). " -"You need to see which features have a value of Yes to make it easier to " -"interpret the hazard area. To solve this problem, we will symbolise the data " -"so it will only shows the flooded area." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:352 -msgid "" -"Right click on the **A flood in Jakarta like 2013** layer and select :" -"guilabel:`Properties`." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:354 -msgid "" -"Go to the :guilabel:`Style` tab and and change :guilabel:`Single Symbol` " -"into :guilabel:`Categorized`." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:356 -msgid "" -"Select :guilabel:`affected` in Column as the column that we will use to " -"categorize the data." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:358 -msgid "" -"Click :guilabel:`classify` and turn off the values that have a value of No " -"or no value." -msgstr "" - -# 14596550532b42c1a29afd035ca5d4f9 -#: ../../source/training/socialisation/introduction_to_qgis.rst:360 -msgid "Click OK" -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:364 -msgid "" -"After you click :guilabel:`OK`, only features that have a value of Yes " -"(flooded) will be displayed on the map canvas, the other values won’t be " -"shown on the map canvas because you turned OFF the symbol that represents a " -"value of No. Symbology helps us better understand the data that we will work " -"on." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:370 -msgid "9. InaSAFE installation and set up" -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:372 -msgid "" -"As we know, the InaSAFE plugin has been built for QGIS. It is one of the " -"plugins which are available in the QGIS Repository. Make sure that you have " -"a working internet connection before you follow the steps below. To get " -"InaSAFE please follow these steps:" -msgstr "" - -# c07468db01844cb2bb63540fb822797f -#: ../../source/training/socialisation/introduction_to_qgis.rst:377 -msgid "Go to :menuselection:`Plugins -> Manage and install plugins` menu." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:381 -msgid "Go to the search box and type :kbd:`InaSAFE`." -msgstr "" - -# 1f8cc07302bc40ccafc01626b842ac1c -#: ../../source/training/socialisation/introduction_to_qgis.rst:387 -msgid "Select InaSAFE and click :guilabel:`Install plugin` and" -msgstr "" - -# c9f241deeedb443cbabf5eac44f66830 -#: ../../source/training/socialisation/introduction_to_qgis.rst:386 -msgid "" -"wait for a moment until the InaSAFE dock appears in the right side of QGIS " -"main window." -msgstr "" - -# 0b40e9a568b149b39e08be0f5343b6a8 -#: ../../source/training/socialisation/introduction_to_qgis.rst:389 -msgid "Close the plugin manager window." -msgstr "" - -# 6b343c73afd045e08ab7e3e124141d57 -#: ../../source/training/socialisation/introduction_to_qgis.rst:391 -msgid "Congratulations! Now you have InaSAFE installed in QGIS." -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:394 -msgid "10. InaSAFE toolbars" -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:396 -msgid "" -"After successfully installing InaSAFE, you should now have an **InaSAFE " -"dock** on the right hand side of your screen. It should look like this:" -msgstr "" - -# 5b33780bcc5b4fbdbaad1e7fdf94f1d5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:402 -msgid "" -"InaSAFE also comes with a toolbar of its own! To retrieve the InaSAFE " -"toolbar, you can right-click on the top toolbar and check InaSAFE." -msgstr "" - -# 87cdda9057d644acadec070d18bf5ea2 -#: ../../source/training/socialisation/introduction_to_qgis.rst:409 -msgid "InaSAFE Dock" -msgstr "" - -# d2551e03fd26441585e6576d3f5d8f90 -#: ../../source/training/socialisation/introduction_to_qgis.rst:411 -msgid "Set Analysis Area" -msgstr "" - -# c80b1ec430964469b66c9e0bf2b98e2a -#: ../../source/training/socialisation/introduction_to_qgis.rst:413 -msgid "Toggle Scenario Outline" -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:415 -msgid "Keyword Creation Wizard" -msgstr "" - -# 70f04aff836a49e18b859bbfa0604b7c -#: ../../source/training/socialisation/introduction_to_qgis.rst:417 -msgid "Impact Function Centric Wizard" -msgstr "" - -# f07b3e66ae5e4f419ea5dfa7f8637679 -#: ../../source/training/socialisation/introduction_to_qgis.rst:419 -msgid "OpenStreetMap Downloader" -msgstr "télécharger des données OpenStreetMap" - -# ce29f49edd63453ead54315d92c7e5e2 -#: ../../source/training/socialisation/introduction_to_qgis.rst:421 -msgid "Add OpenStreetMap Tile Layer" -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:423 -msgid "InaSAFE Help" -msgstr "" - -# 03febbea8db74f3f962fe9ed23608924 -#: ../../source/training/socialisation/introduction_to_qgis.rst:426 -msgid "" -"Later we will explore and use these tools in **Run Basic InaSAFE** and " -"**Intermediate Modules**." -msgstr "" - -# ffc9e01eb3cf4b6e86a9446298b53e69 -#: ../../source/training/socialisation/introduction_to_qgis.rst:429 -msgid "Summary" -msgstr "" - -#: ../../source/training/socialisation/introduction_to_qgis.rst:431 -msgid "" -"In this exercise you have learned about QGIS, the free and open source " -"software for processing spatial data. You have learned where to get QGIS, " -"how to install QGIS, understood the QGIS layout and looked at some useful " -"toolbars, learning how to turn ON/OFF QGIS layers, and learned how to " -"symbolise the data layers." -msgstr "" - -# 10e4d8ed5d9545d5b56e8bc6a346fd53 -#: ../../source/training/socialisation/introduction_to_qgis.rst:438 -msgid "" -"We also learned how to install InaSAFE through the QGIS plugin manager. " -"Later on we will learn how to operate InaSAFE with DKI Jakarta flood " -"scenario." -msgstr "" - -# 2a69e38bf2d0455db4651d419a1fd0a5 -#~ msgid "Keyword Editor" -#~ msgstr "Editeur de mots-clés" diff --git a/docs/i18n/fr/LC_MESSAGES/training/socialisation/objective.po b/docs/i18n/fr/LC_MESSAGES/training/socialisation/objective.po deleted file mode 100644 index ff3c7c48..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/socialisation/objective.po +++ /dev/null @@ -1,386 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:04+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# e3e9c4d37bde4d2b9b07ba064dfd4a85 -#: ../../source/training/socialisation/objective.rst:4 -msgid "Course objectives" -msgstr "" - -# 46621f93c0ed4c64bc8ee1a08e1fcc83 -#: ../../source/training/socialisation/objective.rst:6 -msgid "" -"We will introduce you to |project_name| (http://inasafe.org) - an extension " -"for QGIS that allows disaster managers to do better planning for disasters. " -"In this course we explain the conceptual domain - what |project_name| does " -"(and does not do), why it is important to use a tool such as |project_name|, " -"what kinds of hazards |project_name| can be used with and so on. We then " -"delve into the practical side of using |project_name|." -msgstr "" - -# 45870115ad244a7882b86450ad233148 -#: ../../source/training/socialisation/objective.rst:13 -msgid "" -"On completion of the course participants should have acquired the following " -"skills related to using |project_name|:" -msgstr "" - -# 4141f75ecd784651bc8184a89bada7a9 -#: ../../source/training/socialisation/objective.rst:23 -msgid "General" -msgstr "" - -# 21f6c7acbf0544958cc45feae54fc28b -#: ../../source/training/socialisation/objective.rst:17 -msgid "Understand the conceptual space in which |project_name| can be used" -msgstr "" - -# 35f351e1d3bd4711973b7c8e1b5b132e -#: ../../source/training/socialisation/objective.rst:18 -msgid "Understand the concept of hazard data" -msgstr "" - -# 39f65dda50ed45ba97e0d1d7d0f63405 -#: ../../source/training/socialisation/objective.rst:19 -msgid "Understand the concept of exposure data" -msgstr "" - -# d5144887eb674acab5a4224567e0a734 -#: ../../source/training/socialisation/objective.rst:20 -msgid "Understand the concept of aggregation data" -msgstr "" - -# 467cfa131def4508ac0d0996e9fd545f -#: ../../source/training/socialisation/objective.rst:21 -msgid "Understand the concept of an impact layer" -msgstr "" - -# e9e74cce4bf34103b87dbeebe73095c9 -#: ../../source/training/socialisation/objective.rst:22 -msgid "Understand the concept of an impact summary" -msgstr "" - -# 2df796b431904e008fef5037b2582be9 -#: ../../source/training/socialisation/objective.rst:28 -msgid "Data preparation" -msgstr "" - -# 91254e8a412c47dd8bbdd037d7ceb426 -#: ../../source/training/socialisation/objective.rst:26 -msgid "Be able to import a hazard layer and assign it appropriate keywords" -msgstr "" - -# 5e0bc89be3e84d20b2698cff462ce4c7 -#: ../../source/training/socialisation/objective.rst:27 -msgid "Be able to import an exposure layer and assign it appropriate keywords" -msgstr "" - -# 665e31cacbe94e219caac240c8ba1dd1 -#: ../../source/training/socialisation/objective.rst:28 -msgid "" -"Be able to import an aggregation layer and assign it appropriate keywords" -msgstr "" - -# 27b22563a2ae4819855dc09f987de3ac -#: ../../source/training/socialisation/objective.rst:33 -msgid "Analysis – Run Basic InaSAFE" -msgstr "" - -# 25c6135eafc94537ab439f6ae5c10e80 -#: ../../source/training/socialisation/objective.rst:31 -msgid "Be able to run a flood analysis using |project_name| - on buildings" -msgstr "" - -# 4c93410bc31543d5a50ed874a3fa60ff -#: ../../source/training/socialisation/objective.rst:32 -msgid "Be able to run a flood analysis using |project_name| - on population" -msgstr "" - -# 9d2b78989446475794d4f8cecaf5170c -#: ../../source/training/socialisation/objective.rst:33 -msgid "Be able to generate a PDF map from the results of an analysis" -msgstr "" - -# acf9e1e62d1f43bbadcf608efd5d00fb -#: ../../source/training/socialisation/objective.rst:39 -msgid "Analysis – Run Intermediate InaSAFE" -msgstr "" - -# a29bfdb28ba3478e92fefc6760632571 -#: ../../source/training/socialisation/objective.rst:36 -msgid "Be able to define keywords using the |project_name| keywords wizard" -msgstr "" - -# c1ed09583492497b95046be2c366e4d4 -#: ../../source/training/socialisation/objective.rst:37 -msgid "Be able to run |project_name| with aggregation data" -msgstr "" - -# 380d8b1dce0243e6b676bfdb18133bb2 -#: ../../source/training/socialisation/objective.rst:38 -msgid "Be able to use the |OSM| downloader" -msgstr "" - -# f454612109ba4a53996c43ad2e33673a -#: ../../source/training/socialisation/objective.rst:39 -msgid "" -"Be able to set the analysis area using the |project_name| analysis area tool" -msgstr "" - -# 74b2ec699e474f9e9d1072f805929dac -#: ../../source/training/socialisation/objective.rst:46 -msgid "Analysis – Run Other Hazards" -msgstr "" - -# bec3251178594af1a06887536eaf4a40 -#: ../../source/training/socialisation/objective.rst:42 -msgid "" -"Be able to run InaSAFE with other hazards, such as Earthquake, Tsunami and " -"Volcano" -msgstr "" - -#: ../../source/training/socialisation/objective.rst:43 -msgid "Be able to read metadata and assign keywords to hazard data" -msgstr "" - -#: ../../source/training/socialisation/objective.rst:44 -msgid "" -"Be able to use the |project_name| dock and the |project_name| Impact " -"Function Centric Wizard" -msgstr "" - -#: ../../source/training/socialisation/objective.rst:45 -msgid "" -"Be able to use the Generic Impact Function and understand how to use it to " -"work with their own data" -msgstr "" - -# ee982541e6bc460c8f5a75a394e187a9 -#: ../../source/training/socialisation/objective.rst:50 -msgid "Practical application" -msgstr "" - -# b9884ffed1b94c2c80884c6bc6715037 -#: ../../source/training/socialisation/objective.rst:49 -msgid "Be able to explain the purpose of |project_name|" -msgstr "" - -#: ../../source/training/socialisation/objective.rst:50 -msgid "" -"Be able to interpret |project_name| analysis results and use them in " -"disaster management" -msgstr "" - -# d8bbfbc0239b4449bee69d3d0cd5616c -#: ../../source/training/socialisation/objective.rst:53 -msgid "Target audience" -msgstr "" - -# 7bc3d9a23282487eaa04a77504e7d1f7 -#: ../../source/training/socialisation/objective.rst:55 -msgid "Persons responsible for developing disaster management plans" -msgstr "" - -# c91db47ddf084c9bb870d4fbd9caa537 -#: ../../source/training/socialisation/objective.rst:56 -msgid "" -"Lecturers and students from relevant departments such as Geography, Geodesy, " -"Geomatics, Information Technology and other earth-related sciences" -msgstr "" - -# d7163b944768415782364d674873f400 -#: ../../source/training/socialisation/objective.rst:58 -msgid "Representatives from NGOs working in disaster risk reduction" -msgstr "" - -# e93b2bbfc73e47899807c93cfff90a19 -#: ../../source/training/socialisation/objective.rst:59 -msgid "Other relevant organisations and agencies" -msgstr "" - -# e320c0490ee741d4a93cd0d1b59d7b15 -#: ../../source/training/socialisation/objective.rst:62 -msgid "Prerequisites" -msgstr "" - -# d82574ac1fc7476bb2ea019dd1941d41 -#: ../../source/training/socialisation/objective.rst:64 -msgid "" -"Able to operate a computer (word processors, presentations, internet, " -"spreadsheets)." -msgstr "" - -# bfead2bee0e140278124e9069c726842 -#: ../../source/training/socialisation/objective.rst:66 -msgid "Basic skills in Geographic Information Systems (GIS) is an advantage." -msgstr "" - -# 5272629c0a0e42c8b0decf4de59196c9 -#: ../../source/training/socialisation/objective.rst:67 -msgid "Laptop with:" -msgstr "" - -# d14a1fa14df646eb9ed15091625a4553 -#: ../../source/training/socialisation/objective.rst:69 -msgid "Minimum RAM of 2 GB (recommended 4 GB)" -msgstr "" - -# d15bf8de07514b888c8ff311d7ae0c29 -#: ../../source/training/socialisation/objective.rst:70 -msgid "WIFI - connected to the internet" -msgstr "" - -#: ../../source/training/socialisation/objective.rst:71 -msgid "" -"Windows (XP, 7, 8, 10), Linux (Training Ubuntu later than 12.04) or similar " -"(e.g. Mint or Debian), Mac OS X Mavericks (10.9), Mountain Lion (10.8) and " -"Lion (10.7)." -msgstr "" - -#: ../../source/training/socialisation/objective.rst:73 -msgid "" -"|QGIS| long term release installed http://www.qgis.org or the ability to " -"install software on computer (i.e. have administration password)" -msgstr "" - -# 98715828d6b2407490957a74dbc34c7d -#: ../../source/training/socialisation/objective.rst:76 -msgid "Credits" -msgstr "" - -#: ../../source/training/socialisation/objective.rst:78 -msgid "" -"|project_name| was originally developed by the |GoA| in partnership with The " -"National Disaster Management Authority (|BNPB|) Indonesia, and the World " -"Bank-(|GFDRR|)." -msgstr "" - -#: ../../source/training/socialisation/objective.rst:82 -msgid "" -"This |project_name| Socialisation Training Manual was developed by `Kartoza " -"`_ in collaboration with the |GoA| and the Humanitarian " -"OpenStreetMap Team (|hot|)." -msgstr "" - -# e5ce289d5d554050b573822cdb441fb8 -#: ../../source/training/socialisation/objective.rst:87 -msgid "Manual based on:" -msgstr "" - -#: ../../source/training/socialisation/objective.rst:89 -msgid "Version 4.3.x of |project_name|" -msgstr "" - -#: ../../source/training/socialisation/objective.rst:90 -msgid "Version 2.18.x of |QGIS|" -msgstr "" - -# 66ea8c4b9d28441dbf0dfa132f638169 -#: ../../source/training/socialisation/objective.rst:93 -msgid "Produced:" -msgstr "" - -#: ../../source/training/socialisation/objective.rst:95 -msgid "" -"August 2013 (original) September 2014 (update) September 2015 (major " -"revision) June 2016 (update) August 2016 (update) April 2017 (update) Maret " -"2018 (update)" -msgstr "" - -# e96b8e9dcd174c39b38a048c9bf2e59c -#: ../../source/training/socialisation/objective.rst:104 -msgid "More information:" -msgstr "" - -# 6a597cdeb5a54e89a0722410fd301999 -#: ../../source/training/socialisation/objective.rst:106 -msgid "" -"General information on |project_name| appears online at the |project_name| " -"website: http://www.inasafe.org" -msgstr "" - -# c72100a1aee043c286c515530f01eae3 -#: ../../source/training/socialisation/objective.rst:109 -msgid "Contact: info@inasafe.org" -msgstr "" - -# 96a207dca74a49b8be8ad0cf4e787d75 -#: ../../source/training/socialisation/objective.rst:111 -msgid "**OR**" -msgstr "" - -# c1bacca36d2b436483e8c47a41017f22 -#: ../../source/training/socialisation/objective.rst:113 -msgid "DMInnovation," -msgstr "" - -#: ../../source/training/socialisation/objective.rst:115 -msgid "" -"Cyber 2 Tower 17th floor, suite M57-58 Jl. HR. Rasuna Said, Blok X-5, Kav. " -"13 Jakarta 12950 Indonesia" -msgstr "" - -#: ../../source/training/socialisation/objective.rst:120 -msgid "Phone. 021- 5799 8239 Ext.439" -msgstr "" - -# 32813064b16d4d8dbc9f94873df62d46 -#: ../../source/training/socialisation/objective.rst:126 -msgid "Resources obtained by:" -msgstr "" - -# 290dbfab60804c6da80679d8f78e000d -#: ../../source/training/socialisation/objective.rst:128 -msgid "Linfiniti Sphinx Theme" -msgstr "" - -# 28d3001e1dca4666b49e8eb3ab6545fc -#: ../../source/training/socialisation/objective.rst:131 -msgid "Manual licensed under:" -msgstr "" - -# 54529af5a7cd4836bd6808707f577348 -#: ../../source/training/socialisation/objective.rst:133 -msgid "" -"Creative Commons by Attribution by Kartoza/|BNPB|/|GoA|/World Bank-|GFDRR|." -msgstr "" - -# 4c636046416249018b90a9e016dc45ee -#: ../../source/training/socialisation/objective.rst:136 -msgid "Authors:" -msgstr "" - -# ad4d24175a064bf6944b162c59a17831 -#: ../../source/training/socialisation/objective.rst:138 -msgid "`Tim Sutton `_, Lead Developer - Kartoza" -msgstr "" - -# e789d271b10b4ebb94ca1beb2ddbaf4d -#: ../../source/training/socialisation/objective.rst:140 -msgid "" -"`Charlotte Morgan `_, Spatial Data Analyst - " -"Geoscience Australia" -msgstr "" - -#: ../../source/training/socialisation/objective.rst:143 -msgid "" -"Adityo Dwijananto, Harry Mahardika, Wulansari Khairunisa, Tri Selasa, " -"Adhitya Dido, Sheila Amalia, Fatisya Ilani - Humanitarian OpenStreetmap Team " -"Indonesia" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/socialisation/run_basic_inasafe.po b/docs/i18n/fr/LC_MESSAGES/training/socialisation/run_basic_inasafe.po deleted file mode 100644 index 3f8e8051..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/socialisation/run_basic_inasafe.po +++ /dev/null @@ -1,845 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:03+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 487ff2ec640a47e380a22aaca3389bf4 -#: ../../source/training/socialisation/run_basic_inasafe.rst:6 -msgid "Run Basic |project_name|" -msgstr "" - -# 65db813ce2804a64b1afeb4572acf0df -#: ../../source/training/socialisation/run_basic_inasafe.rst:9 -msgid "Introduction" -msgstr "Introduction" - -# 2c186bd081a94743bd3aaaeee2ce9b04 -#: ../../source/training/socialisation/run_basic_inasafe.rst:11 -msgid "" -"In this exercise we will work through an example scenario where we show how " -"the different data elements used by |project_name| are combined in order to " -"analyse the potential impact of a flood in Jakarta on both the buildings and " -"the population." -msgstr "" - -# 01395e61e7fc412d870c4d349e6d577f -#: ../../source/training/socialisation/run_basic_inasafe.rst:16 -msgid "" -"After we have run the |project_name| analysis we will print the map and " -"analysis report as pdf and review the results. We will also learn how to " -"change the flood threshold and take a look at the default settings for " -"minimum needs. We will also learn how to save our work." -msgstr "" - -# 38154e80883542b4bbbe47435367f260 -#: ../../source/training/socialisation/run_basic_inasafe.rst:22 -msgid "Learning objective" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:24 -msgid "" -"To develop the participant’s basic understanding of the |project_name| " -"workflow and application of |project_name| in the Disaster Management " -"sector. By the end of this exercise, participants will:" -msgstr "" - -# d46a1790716b4eb09cc1675425fe47f3 -#: ../../source/training/socialisation/run_basic_inasafe.rst:28 -msgid "Be able to run a flood analysis using |project_name| - on buildings;" -msgstr "" - -# aed0224b426a424f8838d83b52006a2a -#: ../../source/training/socialisation/run_basic_inasafe.rst:30 -msgid "Be able to run a flood analysis using |project_name| - on population;" -msgstr "" - -# 9255ef0fef7e4aaa8c327fa62c8de015 -#: ../../source/training/socialisation/run_basic_inasafe.rst:32 -msgid "Understand the flood impact default settings;" -msgstr "" - -# b78233029e084a2fb045eb96cc0ca390 -#: ../../source/training/socialisation/run_basic_inasafe.rst:34 -msgid "Understand the impact summary report;" -msgstr "" - -# dd9e71d967c64d3d87f351e0a30ceb38 -#: ../../source/training/socialisation/run_basic_inasafe.rst:36 -msgid "Be able to change the analysis threshold and run a new scenario;" -msgstr "" - -# fcf6188492eb4e2193276bcefa7c4e65 -#: ../../source/training/socialisation/run_basic_inasafe.rst:38 -msgid "Be able to generate a PDF map from the results of an analysis; and" -msgstr "" - -# b3b68c367af3457183454ad2853c7877 -#: ../../source/training/socialisation/run_basic_inasafe.rst:40 -msgid "Be able to save their work to share results with others." -msgstr "" - -# f2a211bd388f48abac25693d2016aa94 -#: ../../source/training/socialisation/run_basic_inasafe.rst:43 -msgid "Data for this exercise" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:45 -msgid "" -"The data for this exercise are available in **Run Basic InaSAFE zip** which " -"can be downloaded from `InaSAFE Training Data `__ " -"Packages . We will use the following QGIS project file and spatial data:" -msgstr "" - -# 80fb880b620d4e2a91c886c34612b7f7 -#: ../../source/training/socialisation/run_basic_inasafe.rst:50 -msgid "DKI_Jakarta_Basic.qgs" -msgstr "" - -# 22917b7b6598456fa2c107bfefb65ad2 -#: ../../source/training/socialisation/run_basic_inasafe.rst:52 -msgid "Jakarta_Flood_HKV_WGS84" -msgstr "" - -# b56de527448c40559bb43f9134dd9f71 -#: ../../source/training/socialisation/run_basic_inasafe.rst:54 -msgid "Jakarta_Buildings_WGS84" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:56 -msgid "Jakarta_Population_WGS84" -msgstr "" - -# a1889140efc84f639d860e190595c19a -#: ../../source/training/socialisation/run_basic_inasafe.rst:59 -msgid "Exercise" -msgstr "" - -# 65b6b8a7df724a5aa6aeb2b79f1ddddb -#: ../../source/training/socialisation/run_basic_inasafe.rst:62 -msgid "1. Open QGIS Project" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:64 -msgid "" -"Before we can run an |project_name| analysis, we must open a QGIS project. " -"Please open the QGIS project file :file:`DKI_Jakarta_Basic.qgs` from the :" -"file:`InaSAFE Training Data > DKI Jakarta` folder. The project looks " -"something like this:" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:74 -msgid "" -"As you can see from the picture above, you will be presented with several " -"data sets for Jakarta such as buildings, population, and raster hazard." -msgstr "" - -# 7bd44c55f9ee445aa0feb617c5c0ff5d -#: ../../source/training/socialisation/run_basic_inasafe.rst:77 -msgid "You will see that the project has three layers loaded:" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:79 -msgid "" -"Buildings: this is exposure data. We will use these to assess the flood " -"impact on buildings." -msgstr "" - -# fde76aa589f94aefbca60e1e1dfb73f5 -#: ../../source/training/socialisation/run_basic_inasafe.rst:82 -msgid "" -"Flood: this is the hazard model. We will use this to determine the depth of " -"water." -msgstr "" - -# e897e2a48bbb4f8898a8ce1977f03860 -#: ../../source/training/socialisation/run_basic_inasafe.rst:85 -msgid "" -"Population: this is a population raster. We will use it to determine the " -"number of people exposed to the flood." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:88 -msgid "" -"More detailed information about the data used in this exercise can be found " -"in :ref:`dataset section `. The table below provides a brief " -"summary about the source of the data." -msgstr "" - -# 7f95f6e2bdd145e08ecc87facb1a85aa -#: ../../source/training/socialisation/run_basic_inasafe.rst:93 -msgid "**Data**" -msgstr "" - -# 016550ec6b3c4f8a84061cdc7df4641e -#: ../../source/training/socialisation/run_basic_inasafe.rst:93 -msgid "**Source**" -msgstr "" - -# 8eeb7232f4014d329cab0fc98c88a81d -#: ../../source/training/socialisation/run_basic_inasafe.rst:93 -msgid "**Description**" -msgstr "" - -# c19c8cee25904e9cbcf3cad6e422b629 -#: ../../source/training/socialisation/run_basic_inasafe.rst:95 -msgid "Buildings" -msgstr "" - -# 45ca60b7715c439483f3aee0a358fd8d -#: ../../source/training/socialisation/run_basic_inasafe.rst:95 -msgid "OpenStreetMap" -msgstr "OpenStreetMap" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:95 -msgid "" -"Most of the important buildings in Jakarta have been mapped through the " -"collaboration of BPBD DKI Jakarta, OpenStreetMap and the Australian " -"Government. :ref:`See more at.. `" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:101 -msgid "Jakarta_population_WGS84" -msgstr "" - -# 91cb8a4247dd4b92b031063e560d9703 -#: ../../source/training/socialisation/run_basic_inasafe.rst:101 -msgid "WorldPop" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:101 -msgid "" -"High resolution, modelled data for human population distributions. :ref:`See " -"more at.. `" -msgstr "" - -# 079ff5d69cca49cc9990f9fd40d9dfe2 -#: ../../source/training/socialisation/run_basic_inasafe.rst:105 -msgid "a Flood similiar to 2007" -msgstr "" - -# 6132839d36634770a47ce34b4077d014 -#: ../../source/training/socialisation/run_basic_inasafe.rst:105 -msgid "Jakarta Event" -msgstr "" - -# c30678fa660342c89a65ab0dd6a0dd2d -#: ../../source/training/socialisation/run_basic_inasafe.rst:104 -msgid "HKV" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:104 -msgid "" -"The flood model was created by scientists/engineers in coordination with DKI " -"Jakarta Public Works based on the 2007 flood conditions. :ref:`See more at.. " -"`" -msgstr "" - -# 2925397a09734e8cb3709497e8ccda64 -#: ../../source/training/socialisation/run_basic_inasafe.rst:109 -msgid "" -"Let's move into the next section where we will run our first |project_name| " -"analysis using these data. We will be working with the flood hazard model to " -"look at the number of affected buildings. These data already have keywords " -"assigned so we are ready to run the analysis." -msgstr "" - -# 2253377a1064429ba57758dfe90a3cf0 -#: ../../source/training/socialisation/run_basic_inasafe.rst:115 -msgid "2. Run |project_name| Analysis for Building" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:117 -msgid "" -"Take a look at the |project_name| dock on the right side of QGIS. The |" -"project_name| dock should show that you are ready to run a flood analysis on " -"buildings. It poses the question “In the event of **a flood similar to the " -"2007 Jakarta event**, how many **buildings** will **be affected**?” In this " -"analysis we will use the default flood depth threshold in \"Flood Classes\" " -"which have 4 classes (High, Medium, Low, Use Caution). Later on we will " -"learn how to change the threshold." -msgstr "" - -# a9f5602cfbc04f6caafcc0fc6eb88c6e -# 0cd8065898de41da9e57603fcd69018e -#: ../../source/training/socialisation/run_basic_inasafe.rst:123 -#: ../../source/training/socialisation/run_basic_inasafe.rst:278 -msgid "a. Run |project_name| Analysis" -msgstr "" - -# 35601b34b2014ad8983ef4574876515f -#: ../../source/training/socialisation/run_basic_inasafe.rst:129 -msgid "" -"Click :guilabel:`Run` in the lower right corner of the |project_name| panel " -"to start the analysis process. If everything was set up correctly, you " -"should get a result in the dock area after a few seconds, and a new map " -"layer should be added to the map." -msgstr "" - -# 148fcd081eb14925996d630dfeb97995 -#: ../../source/training/socialisation/run_basic_inasafe.rst:139 -#: ../../source/training/socialisation/run_basic_inasafe.rst:291 -msgid "b. Interpret the results" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:141 -msgid "" -"The new impact layer will be generated and called **Number of structures**. " -"Let’s take a look at the new impact layer generated by |project_name|." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:144 -msgid "Zoom in to some area on the map canvas" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:146 -msgid "" -"Here we have zoomed in to a location showing two rivers going through the " -"middle of Jakarta. There will be five new different colours generated from |" -"project_name| (red, orange, light yellow, green, and grey)." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:154 -msgid "" -"If you don't see these colours, you might need to turn off the data layer " -"above the *Number of structures* layer." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:156 -msgid "" -"The red buildings are situated in High Hazard with inundation water greater " -"than 1,5 metre. The orange buildings are situated in a Medium Hazard with " -"inundation water between 0,7 - 1,5 metre. The light-yellow buildings are " -"situated in Low Hazard with inundation water between 0,1 - 0,7 metre. The " -"green buildings show you that these buildings are currently not classified " -"as an affected building, but, we can identify these buildings with Use " -"Caution. It is like some kind of warning system, so we can identify which " -"buildings needs more attention when the flood happen. The grey buildings " -"considered as unaffected with the flood hazard model." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:162 -msgid "" -"Click :guilabel:`Number of structures` in the layer list to select it and " -"click :guilabel:`Identify Feature` tool and then click on a building to view " -"the attributes of that building." -msgstr "" - -# a2c5bc5be443447481047e26ec801dbd -# 0d3dea67018a476f8e9661a8594e0d28 -#: ../../source/training/socialisation/run_basic_inasafe.rst:170 -msgid "" -"In the |project_name| panel we now see the impact summary. The details of " -"are explained below." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:177 -msgid "" -"**Analysis Question**: describe what kind of analysis happens in this " -"scenario" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:179 -msgid "" -"**General report**: InaSAFE divides the result into several categories based " -"on the threshold set in the hazard analysis. In this impact summary, InaSAFE " -"divides the estimated number of structures based on two categories, Hazard " -"Zone (buildings affected based on High, Medium, Low, and Use Caution class) " -"and Structures (buildings affected based on Affected by flood, Not Affected " -"by flood, and Not Exposed by flood)" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:184 -msgid "" -"**Analysis detail:** describe more detail about estimated number of " -"structures by structure type. In this impact summary, InaSAFE breaks down " -"the results into a more detailed report by looking at each type of the " -"structure, for example, the number of residential affected by flood is " -"4.300, meanwhile, the number of education structures affected by flood is " -"210. We can see more detail about the type of structuress affected by the " -"hazard in this section." -msgstr "" - -# 6b25e4b4d6a2456dbfe928c7c4b74c30 -# e69c943a063344738ac1f795792c20ca -#: ../../source/training/socialisation/run_basic_inasafe.rst:190 -#: ../../source/training/socialisation/run_basic_inasafe.rst:329 -msgid "" -"**Action checklist:** designed to make disaster managers think about what " -"they need to do/discuss when planning for a similar event in the future." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:193 -msgid "" -"**Notes & assumptions:** provides details about the input data and any " -"limitations or assumptions in the analysis or report summary. In this " -"example, it explains why buildings are said to be inundated, wet and dry." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:198 -msgid "" -"**Analysis detail:** gives the information about data source, and details " -"about analysis that we have" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:200 -msgid "" -"The results show the buildings that will be affected by flood water 1m deep. " -"But what if the disaster manager decides that buildings in 80cm of water are " -"also flooded? In order to assess this new scenario, we need to change the " -"water depth threshold at which buildings are considered to be inundated. " -"With |project_name| it is easy to run a new scenario, all you need to do is " -"change the **Thresholds [m]** in the **InaSAFE Keyword Creation Wizard** and " -"run the scenario again. We will do this next." -msgstr "" - -# ef088502639944ee8f30a998682352ce -#: ../../source/training/socialisation/run_basic_inasafe.rst:209 -msgid "c. Changing threshold" -msgstr "" - -# 3b242cbcb08b4c319d9d28c6418b5ff3 -#: ../../source/training/socialisation/run_basic_inasafe.rst:211 -msgid "" -"In the Jakarta flood scenario we are running; the threshold refers to the " -"depth of water that a disaster manager decides is the boundary between " -"buildings being flooded (affected) and buildings not being affected." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:216 -msgid "" -"You can only change the threshold for raster hazard data. The default " -"threshold for this hazard is 1m or 100cm." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:218 -msgid "" -"If you want to change the thresholds for the flood in this scenario, you can " -"do it from InaSAFE toolbar menu and select :guilabel:`Keyword Creation " -"Wizard`. But, before you select on :guilabel:`Keyword Creation Wizard` menu, " -"make sure that you already selected the flood layer in the layer panel " -"window." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:220 -msgid "" -"If you want to open the |project_name| question panel again, click on :" -"guilabel:`Show question form` at the top of the |project_name| panel. You " -"will see the |project_name| question panel again and you can click the :" -"guilabel:`Options` button next to :guilabel:`be flooded`." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:229 -msgid "" -"InaSAFE :guilabel:`Keyword Creation Wizard` will automatically show on your " -"screen. We must define the flood as a Hazard layer, therefore, please select " -"Hazard and then click Next." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:235 -msgid "" -"Follow all the step and click Next until you found changing thresholds menu " -"like this:" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:241 -msgid "" -"Choose **Flood classes** to define the thresholds. Look at the right bottom " -"of your screen. You can see the configuration of the thresholds and now you " -"can make change to the thresholds." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:243 -msgid "" -"In this case, we define that the flood impact has 4 classes; **High**, " -"**Medium**, **Low**, and **Use Caution**. In each class, we can define the " -"minimum and maximum value for each thresholds. The threshold is " -"automatically set that **High** classes is the area greater than 1.5 metre " -"of inundation, **Medium** class is the area with 0.7 - 1.5 metre of " -"inundation, **Low** class is the area with 0.1 - 0.7 metre of inundation, " -"and last, **Use Caution** class 0 - 0.1 metre. We can define each threshold " -"based on our needs. If we want to change the value, you can change it " -"manually. The analysis result will be different if we see different value " -"for each classes." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:245 -msgid "" -"After finish changing the thresholds, don't forget to click Save and finish " -"all steps needed. Close the dialog window and then run the analysis again to " -"see the change in the result." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:247 -msgid "" -"When the function completes, take a look at the impact summary in the |" -"project_name| panel. How do the results compare to the first analysis " -"results? The result should be different to the first analysis because we " -"have changed the thresholds for each classes." -msgstr "" - -# 6b22d83573bb4d3eb5d7854ffb7c6c3f -#: ../../source/training/socialisation/run_basic_inasafe.rst:251 -msgid "ask your tutor to explain if you do not understand this." -msgstr "" - -# c1eedc11172c46b1bc29aca6abe66675 -#: ../../source/training/socialisation/run_basic_inasafe.rst:253 -msgid "" -"This completes our first |project_name| analysis using the flood hazard " -"model to look at the number of affected buildings." -msgstr "" - -# c44a8f9cf7b049eea01a8d61b49282ca -#: ../../source/training/socialisation/run_basic_inasafe.rst:256 -msgid "3. Run |project_name| for population" -msgstr "" - -# 1939e99cae6d4d2eb5949e6d2617ad90 -#: ../../source/training/socialisation/run_basic_inasafe.rst:258 -msgid "" -"We are now ready to run our second |project_name| analysis using the flood " -"hazard data for Jakarta. We will be working with the flood hazard model " -"again, but this time to look at the number of impacted people. These data " -"already have keywords assigned so we will be ready to run the analysis as " -"soon as we have turned on the relevant data layers." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:264 -msgid "" -"In the QGIS, turn OFF the **Buildings** and **Number of structures** (the " -"layers generated from |project_name| analysis and turn ON " -"**Jakarta_Population_WGS84** layer." -msgstr "" - -# dceacf5e123d46338a6622092fa94609 -#: ../../source/training/socialisation/run_basic_inasafe.rst:267 -msgid "" -"Confirm that the |project_name| panel on the right side is set to query how " -"many people might need evacuation:" -msgstr "" - -# d761beb0f1f741be90edd50eb384c7a8 -# 0c508ae508264f76958629231cd5aa66 -# 943ebd0bdca64741a14d35b114880945 -# f2bb00acd8234557a1b8b9061e804bb6 -#: ../../source/training/socialisation/run_basic_inasafe.rst:269 -msgid "A flood similar to the 2007 Jakarta event" -msgstr "" - -# ef22c5f8ab674241aded7037061e71a8 -#: ../../source/training/socialisation/run_basic_inasafe.rst:271 -msgid "People" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:280 -msgid "" -"If everything is setup correctly, the |project_name| dock should show that " -"you are ready to run a flood analysis on population. It poses the question " -"“In the event of **a flood similar to the 2007 Jakarta event**, how many " -"**people** **will be affected**?” In this analysis we will use the default " -"flood depth threshold by Flood classes. After everything is setup " -"accordingly click :guilabel:`Run` to process the new scenario." -msgstr "" - -# 881c3418cd8240169cbbc4d3b2331692 -#: ../../source/training/socialisation/run_basic_inasafe.rst:286 -msgid "" -"Notice that if you click on the drop-down list on \"How Many **People**, the " -"**building** option is not available. This is because **building** is not " -"checked in the Layers panel." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:293 -msgid "" -"If everything was set up correctly, you should get a result in the dock area " -"after a few seconds, and a new map layer should be added to the map. The new " -"impact layer will be called **Number of people**. Let’s explore the result " -"again to make you understand more about the |project_name| result." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:298 -msgid "" -"Turn off **Number of structures** layer and drag the **Number of people** " -"above **a flood similar to 2007 Jakarta event**" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:301 -msgid "Zoom in to an the area you choose" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:303 -msgid "" -"Select **Number of people** in the layer list and use :guilabel:`Identify " -"Feature` tool again to select a pixel (square) in the map canvas." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:307 -msgid "" -"Here we clicked on one of the red pixels and find that there is a population " -"exposure count with value of 78, which means there are approximately 78 " -"people in this one pixel (square) who need to evacuate because of the flood." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:316 -msgid "" -"In the |project_name| panel we now see the impact summary. The details of " -"this summary are explained below." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:323 -msgid "" -"**Analysis question:** describe what kind of analysis happens in this " -"scenario" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:325 -msgid "" -"**General report:** InaSAFE divides the results into several categories " -"based on the thresholds set in the hazard analysis. in this impact summary, " -"InaSAFE divides the estimated number of people based on two categories, " -"Hazard Zone (Hgh, Medium, Low, and Use caution) classes based on the " -"thresholds that we defined before and Population (population affected based " -"on Affected, Not affected, and Not exposed by flood)" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:327 -msgid "" -"**Minimum needs:** these are the calculated amounts of food, water, and " -"other products that are needed by evacuated people. These needs should be " -"provided weekly." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:332 -msgid "" -"**Notes and assumptions:** provides details about the input data and any " -"limitations or assumptions in the analysis or report summary. In this " -"example, it shows the total number of population in the analysis area and " -"the source of minimum needs." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:337 -msgid "" -"**Detailed demographic breakdown:** this part of analysis give more " -"information about the demographic of people affected by flood. We can see " -"the breakdown based on age or gender." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:339 -msgid "" -"**Analysis detail:** gives the information about data source, and details " -"about analysis that we have." -msgstr "" - -# 186d526cc7a44c22a8a1de573916dedb -#: ../../source/training/socialisation/run_basic_inasafe.rst:342 -msgid "c. Understand defaults minimum needs" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:344 -msgid "" -"The |project_name| impact summary for flood impact on people includes " -"details for the amount of drinking water, rice, clean water, and family kits " -"and for the number of toilets that should be provided for displaced persons " -"each week. The minimum needs in the Jakarta flood impact assessment are " -"based on the **Head of Indonesia National Disaster Management Authority, " -"BNPB, regulation, PERKA No 7/2008 guideline procedure for fulfillment of " -"basic needs in Disaster Response.** The default minimum needs formula is:" -msgstr "" - -# 3e21c4cfed30448d94cddc1a1805a984 -#: ../../source/training/socialisation/run_basic_inasafe.rst:352 -msgid "400g rice per person per day (2.8kg per week)" -msgstr "" - -# 066dd79d497b450d81a109cce405d764 -#: ../../source/training/socialisation/run_basic_inasafe.rst:354 -msgid "2.5l drinking water per person per day (17.5l per week)" -msgstr "" - -# 8a3f76feb4a84472b0fac8db757114bb -#: ../../source/training/socialisation/run_basic_inasafe.rst:356 -msgid "15l clean water per person per day (105l per week)" -msgstr "" - -# 16810b1a7dcb43de8c0000f026469b5a -#: ../../source/training/socialisation/run_basic_inasafe.rst:358 -msgid "" -"one family kit per family per week (assumes five people per family which is " -"not specified in perka)" -msgstr "" - -# e4da029a6c8544ab94d07ead40732fed -#: ../../source/training/socialisation/run_basic_inasafe.rst:360 -msgid "20 people per toilet" -msgstr "" - -# b571b90f258c4495babea46e51e9148c -#: ../../source/training/socialisation/run_basic_inasafe.rst:362 -msgid "" -"As described above, the impact summary and minimum needs calculation is " -"based on the default world population demographics (which assumes a ratio of " -"26.3% youth, 65.9% adult and 7.9% elderly)." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:366 -msgid "" -"You may like to refer to local population statics (for example - `Population " -"of DKI Jakarta `__) to change these defaults for your analysis area, " -"similarly if you have other regulation for minimum needs, you can change in " -"the menu Plugins - InaSAFE - Minimum Needs Configuration." -msgstr "" - -# a506ca282123442198e89b8e388d1e9e -#: ../../source/training/socialisation/run_basic_inasafe.rst:377 -msgid "4. Print and Save your |project_name| Results" -msgstr "" - -# fae4d7e1b98b4dc89499c75c5a52cbe5 -#: ../../source/training/socialisation/run_basic_inasafe.rst:379 -msgid "" -"We can also print the analysis results; the impact map and the impact " -"summary, as two separate pdf files. To print |project_name| result:" -msgstr "" - -# 06ee6321cb174e95bc58496a50a429d9 -#: ../../source/training/socialisation/run_basic_inasafe.rst:382 -msgid "Click :guilabel:`Print` at the bottom of the |project_name| panel." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:384 -msgid "" -"InaSAFE will show you Impact report window. In InaSAFE reports section, you " -"can choose what kind of report that you want to print. In Map reports, you " -"can choose the template of your map reports." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:390 -msgid "" -"InaSAFE will automatically make map and analysis result based on the " -"scenario you created before. You will be directed to new page that contain " -"maps and analysis result." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:392 -msgid "" -"You can access your reult based on the directory path show in the result " -"box. You can change the directory of your result in Menu Plugin – InaSAFE – " -"Options - GIS Environment - Location for result. In **Location for " -"results**, change the directory as you want to. It will make you easier to " -"find the result of your analysis." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:398 -msgid "" -"By default, all the InaSAFE reports will be stored in C:\\\\users\\" -"\\\\\\appdata\\\\local\\\\temp\\\\inasafe for Windows or /tmp/" -"InaSAFE for Linux. You must enable \"Show Hidden Folder\" option in Windows " -"if you want to see appdata folder." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:400 -msgid "" -"InaSAFE will be generate several PDFs (usually 4-6 PDFs), one shows a map " -"with the impact layer in potrait orientation, one shows a map wih the impact " -"layer in landscape orientation, one shows an analysis provenance details " -"report, one shows a list of action checklist output, and one has tables from " -"the impact summary or impact report. But, if we generate the result of " -"population analysis, one additional PDF will shows up which give the " -"information about the infographic of impact summary." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:406 -msgid "" -"InaSAFE will generate infographic result if we make analysis of population " -"only." -msgstr "" - -# f26270a3d27a41939969c3fa1887cd89 -#: ../../source/training/socialisation/run_basic_inasafe.rst:408 -msgid "" -"We are now already have the impact result in pdf files, but what if we want " -"to keep the impact result in shapefile? Is the impact result shapefile " -"automatically stored?" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:412 -msgid "" -"The |project_name| impact result layer is saved in a temporary folder, this " -"means that it will be automatically deleted if you restart your computer, " -"unless you save your QGIS project. If you want to keep your |project_name| " -"results (so you can refer to them again or share them with others), you need " -"to manually save the |project_name| impact layer |project_name| as new layer " -"in same directory as your project." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:419 -msgid "" -"Right click on your |project_name| analysis result, for example **Number of " -"structures** or **Number of people** and click :guilabel:`Save As...`" -msgstr "" - -# d43a8414201b43bfb64be195432681d9 -#: ../../source/training/socialisation/run_basic_inasafe.rst:422 -msgid "" -"A new window will appear. Click :guilabel:`Browse…` and name your new layer " -"and click :guilabel:`Save` and then click :guilabel:`OK`." -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:425 -msgid "" -"If you want to save your current project you can save it by clicking on :" -"menuselection:`Project > Save As...` to save your current project. It’s " -"better to not overwrite the training project so you can do the exercise " -"again later." -msgstr "" - -# 6428972ccccc4e1fb31bb214e352f8b3 -#: ../../source/training/socialisation/run_basic_inasafe.rst:430 -msgid "Summary" -msgstr "" - -#: ../../source/training/socialisation/run_basic_inasafe.rst:432 -msgid "" -"In this exercise you have learned how to run a basic |project_name| analysis " -"using an existing QGIS project file and what the minimums component that " -"must be there to run |project_name| properly are. Those components are " -"hazard and exposure data. In this exercise, you have run an |project_name| " -"impact assessment for a flood scenario in Jakarta using two types of " -"exposure data. The hazard data you used was a modelled flood raster and the " -"exposure data were buildings and population. These analyses produced impact " -"layers and impact summaries for affected buildings and impacted people." -msgstr "" - -# 7db94557739a448ca399d27765d87861 -#: ../../source/training/socialisation/run_basic_inasafe.rst:442 -msgid "" -"You have also learned how to modify the analysis options through the Impact " -"Function configuration, how to print |project_name| results in PDF format, " -"understand what minimum needs is and how to save both your impact layers and " -"your QGIS project file." -msgstr "" - -# 71daeacf7c0e4f26b21297fcc6d65580 -#: ../../source/training/socialisation/run_basic_inasafe.rst:447 -msgid "" -"In the next section you will learn more about how to run |project_name| in " -"more detail. In that module you will learn how to use more |project_name| " -"tools such as Agreggation options, OSM Downloader, Minimum Needs " -"Configuration, etc." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/socialisation/run_intermediate_inasafe.po b/docs/i18n/fr/LC_MESSAGES/training/socialisation/run_intermediate_inasafe.po deleted file mode 100644 index d7b38e6e..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/socialisation/run_intermediate_inasafe.po +++ /dev/null @@ -1,605 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:03+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# d6a23771ef144ecc9cc7015b01bfe1c9 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:6 -msgid "Run Intermediate |project_name|" -msgstr "" - -# 9f1a19d606904fe3836d73e179ab9c29 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:9 -msgid "Introduction" -msgstr "Introduction" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:11 -msgid "" -"In `Run Basic InaSAFE `__ we learned how to run a flood analysis on " -"population and buildings, adjust the flood impact default settings and " -"analyse impact summary report, and change analysis threshold. We also " -"learned how to save our work and generate a pdf of the analysis results. In " -"this exercise we will learn more techniques such as how to run |" -"project_name| with aggregation data to produce reports broken down by " -"districts or regions. We will also learn how to download data using the " -"OpenStreetMap downloader and how to run |project_name| analysis on the " -"downloaded building polygons and roads. Last but not least, we will learn " -"how to define the analysis area." -msgstr "" - -# 2602e24c7bf549c688b4fe1c662a0d1a -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:22 -msgid "Learning Objective" -msgstr "" - -# 97a8c0243c6e4529862f7840d787431f -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:24 -msgid "" -"To improve the participant’s understanding of additional |project_name| " -"function and features. By the end of this exercise, participants will be " -"able to:" -msgstr "" - -# a3d2b2b4320a49a1be6ff9e6d6221401 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:27 -msgid "Define keywords using the |project_name| keyword wizard" -msgstr "" - -# 98a2bd08e93840ef895310bd2e848a70 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:29 -msgid "Run |project_name| with aggregation data" -msgstr "" - -# e1d6f110907349eabb9b583e45e3a49d -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:31 -msgid "Use the OpenStreetMap Downloader to download data for |project_name|" -msgstr "" - -# d424259698db45cc9682bb0f8f5bec27 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:33 -msgid "" -"Set the |project_name| analysis area using the |project_name| analysis area " -"tool." -msgstr "" - -# 5ee6067bcd39494db0595c83145f72fb -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:36 -msgid "Data for this exercise" -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:38 -msgid "" -"The data for this exercise are available in Run Intermediate InaSAFE.zip " -"which can be downloaded from `InaSAFE Training Data `__. We will use the following data:" -msgstr "" - -# ee14bf84260e422baf45af2c8cccb584 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:41 -msgid "Jakarta Flood 18113 WGS84" -msgstr "" - -# b0657f08c2354133936b82f23ebdbd74 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:43 -msgid "Jakarta District Boundary WGS84" -msgstr "" - -# b63ac58fbd8746898da22087c0b89e79 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:45 -msgid "Jakarta Subdistrict Boundary WGS84" -msgstr "" - -# c9877cdc81c940b48c0a0d4c38ea874e -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:47 -msgid "Jakarta Population WGS84" -msgstr "" - -# e7a878fa782b433abb59998560b27c64 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:50 -msgid "Exercise" -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:53 -msgid "1. Running |project_name| for Population Data" -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:56 -msgid "A. Add and symbolise vector data" -msgstr "" - -# c2cdbcf4131c47078c86ff7248249af8 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:58 -msgid "" -"Click :guilabel:`Open` and select :file:`DKI Jakarta Intermediate.qgs`. " -"There is a notification to save the current project, choose whether to save " -"your current work or discard your current work. Once :file:" -"`DKI_Jakarta_Intermediate` is opened, you will see the following:" -msgstr "" - -# 4784a3dd2b5f42e2b560b14c81633690 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:66 -msgid "" -"Next, add :file:`Jakarta Flood 18113 WGS84` data from :file:`Run " -"Intermediate InaSAFE > DKI Jakarta > 01 Hazard Data`. This is the flood " -"hazard data for Jakarta from an actual flood event. During Jakarta floods in " -"January 2013, the provincial disaster manager collected information about " -"the flood, including the location of flooded areas by sub-village boundary " -"(see more about this data at :ref:`datasets`.)" -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:72 -msgid "" -"Let us symbolise this layer so that it shows only affected areas (if you " -"forget how to symbolise, you can go to :ref:`introduction_to_qgis`.) The " -"layer should look like this:" -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:80 -msgid "" -"Using this layer, we will be able to see which area in Jakarta are " -"categorized as flooded/affected area by analysing the data using |" -"project_name|. On the InaSAFE Dock, you will notice that the hazard is not " -"there and only exposure data (population) is visible, even though you " -"already turned ON the data layer." -msgstr "" - -# 98832aa5fe8f48f39e257327ee72a601 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:90 -msgid "" -"Do you know why |project_name| did not display the Jakarta Flood Vector " -"Hazard data on the dock? The answer will be provided in the next section." -msgstr "" - -# 72c82e1a02334ed6ad1626b3243217cc -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:94 -msgid "B. Define keyword for hazard data" -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:96 -msgid "" -"|project_name| need a keyword to determine what type of data the user " -"provide for analysis (hazard data, exposure data or aggregation data). If " -"the data provided does not have a keyword, it will show a warning message " -"“Layer Keyword Missing” in the |project_name| Dock. Try selecting :guilabel:" -"`Jakarta_Flood_18113_WGS84` layer and look at the |project_name| dock, You " -"will see the following:" -msgstr "" - -# 312f8352df264c78bc26d34f26aa79a6 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:106 -msgid "" -"As you can see from the picture above, this layer keywords are missing and " -"we need to open the keyword wizard to solve this problem. The keywords " -"wizard will take you through a step-by-step process of assigning keywords to " -"your data." -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:111 -msgid "" -"Select **Jakarta_Flood_18113_WGS84** layer and click :guilabel:`Keyword " -"Creation Wizard`. A window will appear and follow the steps provided by the :" -"guilabel:`Keyword Creation Wizard.` If you get stuck, you can follow the " -"diagram below to understand the steps and the choices you will be offered." -msgstr "" - -# 0cbb669bb7c6498fb219ac784854fb68 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:118 -msgid "Steps in the Keyword Creation Wizard" -msgstr "" - -# 0a5e9c8f92ad41579fbef6ef53087152 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:120 -msgid "" -"Starting at the top of the diagram and working down; in the first step you " -"will choose if your data are hazard, exposure or aggregation data. Your " -"choice will determine the next options offered. You can always go back and " -"change things later." -msgstr "" - -# a0236c7cef2e48b6a6c31611ec340a8e -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:125 -msgid "" -"If you choose Hazard or Exposure, you will need to select the type of hazard " -"or exposure. Next, you will choose whether the layer mode is continuous or " -"classified (if you forget what Continuous or Classified means, you can " -"reference the `Key Concept of Disaster Management section `__). Both " -"Hazard and Exposure types have the same step after you define the layer " -"mode: defining which unit or attribute represents the hazard." -msgstr "" - -# 62033b6258d1407e97bf8429d40e7d1a -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:134 -msgid "" -"The steps will be different for aggregation data. After you define the data " -"as aggregation data, you will select the attribute to represent the names of " -"aggregation areas. After you select it, you will be asked to define the " -"population ratio. Finally, you will need to enter the source of data and the " -"name of your layer to be displayed in the |project_name| dock." -msgstr "" - -# 1dad774e1392433db48ec7a439c69c0a -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:149 -msgid "" -"After you set the keyword using the Keyword Wizard, you can see in the |" -"project_name| panel on the right side that the layer keyword has been set. " -"Verify that it looks like the image below? If it does not, you should go " -"back and try to define the keyword again." -msgstr "" - -# e2d635fe31f047afb6efcab5635d87c6 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:158 -msgid "" -"After you set the keyword to match the image above, the hazard data will " -"appear in the hazard panel of the |project_name| Dock." -msgstr "" - -# f90055d4c425401db36752f68dfeef76 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:165 -msgid "" -"Now all the keyword data has been set and we can move into the next section " -"to run |project_name| with population data." -msgstr "" - -# 5adb8206371c411189fbb52dee14d7ec -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:169 -msgid "C. Run |project_name| for population with aggregation" -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:171 -msgid "" -"We have seen the result of |project_name| on buildings and populations with " -"raster hazard data. Now we will run |project_name| analysis using flood " -"vector hazard data and raster population as exposure data. This time, " -"however, we will use aggregated data. Using |project_name| with aggregated " -"data will help you to get detailed result since the aggregated data can " -"provide detailed information on specific administrative (or other) area. |" -"project_name| allows us to add administrative data with specific boundaries " -"that we can use to aggregate results." -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:177 -msgid "" -"To do this, look at the Layer List and make sure to turn ON the **Jakarta " -"District** layer. Next, take a look at the |project_name| dock under the " -"heading *Summarise the results by*." -msgstr "" - -# 3ac088bbb4424886b2e2b656e7956fd4 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:184 -msgid "" -"Why are we not able to see the **Jakarta District** layer that we just " -"turned ON before? Check the layer by selecting it on the Layer List. Did you " -"see the keyword? The reason why this layer did not appear in the |" -"project_name| Dock is because it did not have keyword data defube. Go ahead " -"and add a keyword for **Jakarta District** using the :guilabel:`Keyword " -"Creation Wizard`. For your reference, refer to the keyword diagram as " -"explained above." -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:191 -msgid "" -"Now you will able to select **Jakarta District** under 'Summarise the " -"results by' in the |project_name| Dock. The |project_name| Dock should look " -"like this:" -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:198 -msgid "" -"Click :guilabel:`Run` and wait until |project_name| finishes analysing the " -"data. A new impact layer will be added to the Layer List. When you look at " -"the result, it looks the same as |project_name| analysis result without " -"aggregation, but if you scroll down to the bottom you will see the detailed " -"result. As explained before, using aggregation will let you get detailed " -"information for a specific area or administration region." -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:209 -msgid "" -"In the screenshot above, we see detailed impact results for each district in " -"Jakarta for the detailed minimum needs report. You can also use *jakarta " -"subdistrict* rather than using *jakarta_district* for aggregation if you " -"want to get more detailed results. Try running the analysis again using " -"*jakarta subdistrict*. The aggregation option in |project_name| can also be " -"applied for buildings and roads (in addition to population). In the next " -"exercise, we will learn to run |project_name| for roads and buildings." -msgstr "" - -# 82d9c6b993204a8290361f73129e4d05 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:217 -msgid "2. Running |project_name| for roads and buildings" -msgstr "" - -# 064c42e0de7944a69a5fbc2b15c46322 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:220 -msgid "A. Download building polygons and roads with OpenStreetMap Downloader" -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:222 -msgid "" -"We have completed running |project_name| with population and vector hazard " -"data. Now, we will run |project_name| with different type of vector exposure " -"data: roads and buildings polygons. We will obtain these dataset using one " -"of |project_name| features, :guilabel:`OpenStreetMap Downloader`. :guilabel:" -"`OpenStreetMap Downloader` is a feature that enables downloading " -"OpenStreetMap data and directly loading it into QGIS. This feature requires " -"an internet connection as it fetches the data via a web service. Once " -"downloaded, the data will be available as shapefiles and symbolised neatly " -"(more information at `OpenStreetMap Downloader page `__)." -msgstr "" - -# fdfa33873c104ac4a52f0685e1a5919d -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:233 -msgid "To use this feature for our next exercise, follow these steps:" -msgstr "" - -# 22cec9a2783245a8b91fa2e685b733f6 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:235 -msgid ":guilabel:`Zoom in` to any flooded area that you prefer." -msgstr "" - -# 33b1f5c2bf0b48cb8cd17c972f6e1c46 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:237 -msgid "Click the :guilabel:`OpenStreetMap Downloader` icon." -msgstr "" - -# 6d242b25686344139a0c02236eec5779 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:239 -msgid "" -"Select :guilabel:`Building Polygons` and :guilabel:`Roads` as the feature " -"types to download." -msgstr "" - -# 4d5c4aa1549d4bb5af57954b346dfad3 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:241 -msgid "" -"Click :guilabel:`Drag on Map` to select the boundary box from which data " -"will be downloaded." -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:243 -msgid "" -"Choose your output directory, where OSM data will be stored. Adding a file " -"name prefix makes it easier to identify the data downloaded." -msgstr "" - -# bb16eb1aefff4e368e989ef932637949 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:249 -msgid "Click :guilabel:`OK`." -msgstr "" - -# a8a35c60aa5c477a8072609c554513e5 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:251 -msgid "" -"It may take a while to download all the data in the given area based on how " -"big the area is (generally dataset at city level and below should work " -"well). After you download the data, a new layer will appear in the Layer " -"List. The amount of data available depends on the OpenStreetMap data " -"available in the downloaded region. If you want to get more data in your " -"area, you can participate in OpenStreetMap and start map the area." -msgstr "" - -# 63a0dd3f1af1437e9f2aee8aa18c662d -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:258 -msgid "" -"Since the data already downloaded, we are ready to run |project_name| " -"analysis. But can |project_name| run the data for only the small part of the " -"whole hazard data? We will find the answer in the next section." -msgstr "" - -# ab25ea201a6d4a278a5ae5564c54a136 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:263 -msgid "B. Define your custom analysis area" -msgstr "" - -# 82a6ca3c14534a1f94744e874a7f61b9 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:265 -msgid "" -"|project_name| has a feature that allows you specify exactly which area " -"should be used for your analysis. If you have exposure data that is not the " -"same size, you can use this feature to define your own analysis area." -msgstr "" - -# 95b0bb0c8f854358bfccb1dd58c4b3fd -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:270 -msgid "" -"Click :guilabel:`Set Analysis Area` to show set analysis extent feature." -msgstr "" - -# 9eea1fdf59a74c43af4fceb8ab126c15 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:272 -msgid "" -"Select :guilabel:`Use intersection of hazard, exposure and this bounding " -"box`." -msgstr "" - -# 4b3a49fba4264f3787550a86a0e07bc6 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:274 -msgid "" -"Click :guilabel:`Drag on Map` to draw the bounding box around building " -"polygons and roads." -msgstr "" - -# 04905f30dafa4104b5a329d1038a894a -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:277 -msgid "Click :guilabel:`OK`" -msgstr "" - -# e7902e4d709b488fa37549ff054619ba -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:279 -msgid "" -"if you click Draw on Map, the window will be temporarily hidden so that you " -"can drag a rectangle on the map. After you have finished dragging the " -"rectangle, the window will reappear." -msgstr "" - -# 414c5842f7e34e37b82504089f634a41 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:287 -msgid "" -"To verify that your analysis area has been successfully defined, click :" -"guilabel:`Toggle Scenario Outlines`. A green box will appear around your " -"data." -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:294 -msgid "" -"Using Toggle Scenario Outlines help you understand which area that |" -"project_name| will analyse. It is also an important step before running |" -"project_name| analysis because not all of the data you put in the Layer List " -"will be automatically defined by |project_name|." -msgstr "" - -# bfdaf167aaef4d0db3763e8acf01d299 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:299 -msgid "" -"Take a look at the |project_name| panel dock to make sure building polygons " -"and roads have a keyword defined. If they do not you can define one using :" -"guilabel:`InaSAFE Keyword Wizard`. After the keyword has been already set, " -"we are ready to run |project_name| for building polygons and roads." -msgstr "" - -# d654e7a746034396b67d3f7f567b8e81 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:304 -msgid "C. Run |project_name| analysis for building polygons" -msgstr "" - -# fd06fb1bafa34bc0b303a423ba5d6b12 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:306 -msgid "" -"Let us run analysis for building polygons first. Make sure you set the |" -"project_name| dock as pictured below:" -msgstr "" - -# 8e80c787d34f421dbc09a6ba63ebd34e -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:313 -msgid "" -"We will run |project_name| for flood vector hazard and building polygons " -"with data aggregated by Jakarta district Click :guilabel:`Run` to begin |" -"project_name| analysis. After running, you will find the impact result layer " -"in Layer List." -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:321 -msgid "" -"Look at the **Detailed building type report** (picture above) it shows that " -"five districts in Jakarta are affected by flood. Your results may vary since " -"it depend on the analysis area selected and also the aggregation layer that " -"you used for analysis." -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:326 -msgid "" -"|project_name| did not separate the impact result into three categories as " -"in the :ref:`Run Basic InaSAFE ` because in the previous " -"exercise we used raster data containing information of flood depth in each " -"pixel yet in this exercise, the hazard data that we use only depicts " -"affected areas. Therefore, |project_name| will calculate how many buildings " -"are inside the affected area but not level of impact on each building." -msgstr "" - -# 6643bd063dce47678848f45c94e61415 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:333 -msgid "" -"We just succeeded running |project_name| on flood vector hazard with " -"building polygon. Next, we will run |project_name| for roads. What are the " -"results that you expect to get when you run |project_name| for roads?" -msgstr "" - -# 0f5e6062b0aa4d81866dfbd09c68bd69 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:338 -msgid "D. Run |project_name| for roads" -msgstr "" - -# d08d16c049fc4adeab2ebd982295324c -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:340 -msgid "" -"In this last exercise, we will run |project_name| on roads data that we " -"previously downloaded from OpenStreetMap. Make sure that you select roads as " -"exposure data in the |project_name| dock, as shown in the screenshot below:" -msgstr "" - -# 30b44e10dbaf4090821a02f44ebb6db6 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:348 -msgid "" -"Click :guilabel:`Run` to start |project_name| analysis. A new impact layer " -"will be added to your Layer List and in the map canvas you will see green " -"roads as not flooded and red as flooded. Select the **Flooded roads** layer " -"to see statistics from the |project_name| analysis." -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:357 -msgid "" -"In this analysis, |project_name| will generate statistics on how many roads " -"are temporarily closed in the affected area and also a breakdown of the " -"result by road type. If you are using aggregation, there will be detailed " -"results for each aggregation. In the action checklist, you will see several " -"questions that can be used for points of discussion related to road impact, " -"and disaster logistics planning, for example: *Which roads can be used to " -"evacuate people or to distribute logistics?*" -msgstr "" - -# 4cc815bf245b4320bd8d10004dd8c0d9 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:365 -msgid "Summary" -msgstr "" - -# de3c4479250b4623a7f66ecc4071cd3f -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:367 -msgid "" -"In this exercise, you have learned how to run |project_name| analysis with " -"different hazard data formats and with new type of exposure data. You have " -"also learned two fundamental steps to remember before you run |project_name|:" -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:371 -msgid "" -"First, you learned how to define a keyword for your data so it can be " -"analysed with |project_name|. Without a keyword, |project_name| will not " -"recognize your data, so you need to define it whether the data is hazard, " -"exposure or aggregation data. You can set the keyword using the :guilabel:" -"`Keyword Creation Wizard` feature." -msgstr "" - -# 6b3244e12e2f49ddb37987a0d892c1db -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:377 -msgid "" -"Second, it is important to review the analysis area using *Toggle Scenario " -"Outline* before you run |project_name| analysis. This is because, |" -"project_name| sometimes does not automatically set the analysis area " -"according to the intersection of hazard and exposure data. If |project_name| " -"did not set the analysis area, you need to define it manually using the :" -"guilabel:`Set Analysis Area` feature." -msgstr "" - -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:383 -msgid "" -"In this exercise, you have learned how to download buildings and roads data " -"from OpenStreetMap using :guilabel:`OpenStreetMap Downloader`. With this " -"feature you can define the size of the area and what type of data you want " -"to download. The availability of the data depends on how complete the data " -"are in OpenStreetMap." -msgstr "" - -# 81399a44ded04930a1cf58a374df4620 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:389 -msgid "" -"In the next section, you will learn how to run |project_name| with other " -"type of hazard data such as tsunami, earthquake, volcano and generic data." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/socialisation/run_other_hazards.po b/docs/i18n/fr/LC_MESSAGES/training/socialisation/run_other_hazards.po deleted file mode 100644 index 9a7ede03..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/socialisation/run_other_hazards.po +++ /dev/null @@ -1,1125 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:03+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 0a4040804ad14f25ab0557b70a0c87a5 -#: ../../source/training/socialisation/run_other_hazards.rst:6 -msgid "Other Hazards" -msgstr "" - -# c501cbb6c8184fff97ee9145ea42716e -#: ../../source/training/socialisation/run_other_hazards.rst:9 -msgid "Introduction" -msgstr "Introduction" - -# a530cfc49b5f415a88ad20651407ad00 -#: ../../source/training/socialisation/run_other_hazards.rst:11 -msgid "" -"|project_name| was designed to predict the result of a disaster by giving us " -"the potential impact on buildings, populations and roads based on specific " -"scenarios. From previous exercises, we have learned how to use Basic and " -"Intermediate |project_name| functionality. We also learned about using tools " -"in |project_name| such as define keywords, configure minimum needs and area " -"analysis, using aggregation as well as many others." -msgstr "" - -# d6d4a0219fed48238377cf4af268ca1a -#: ../../source/training/socialisation/run_other_hazards.rst:16 -msgid "" -"In previous exercises, we used the \"flooding in Jakarta\" scenario and " -"related data to learn |project_name| functionality. In addition to floods, |" -"project_name| impact analyses can be run for many hazard types including " -"earthquakes, tsunamis and volcanos. In this exercise, we will explore and " -"learn to run other hazard scenarios in |project_name| using |project_name| " -"dock and |project_name| Function Centric Wizard. Last but not least, we will " -"also use the Generic Impact Function." -msgstr "" - -# abb82c8a36714e7da527eb5cf01d1488 -#: ../../source/training/socialisation/run_other_hazards.rst:22 -msgid "Learning objectives:" -msgstr "" - -# 88b7206596d54b8f903e5b25607d20e6 -#: ../../source/training/socialisation/run_other_hazards.rst:24 -msgid "" -"To improve the participant’s understanding of how to use |project_name| to " -"run impact analyses for hazards other than floods. By the end of this " -"exercise, participants will be able to:" -msgstr "" - -# 5fc672495f3245c2956bd8503a57adf7 -#: ../../source/training/socialisation/run_other_hazards.rst:27 -msgid "" -"Run |project_name| with other hazards such as Earthquakes, Tsunamis and " -"Volcanos;" -msgstr "" - -# 8bf6bb24eee443b4a42847249ea94c1f -#: ../../source/training/socialisation/run_other_hazards.rst:29 -msgid "Be able to read metadata and assign keywords to hazard data;" -msgstr "" - -# 4ef2c4aec7534b02afd5adb17c0b5a14 -#: ../../source/training/socialisation/run_other_hazards.rst:31 -msgid "" -"Be able to use the |project_name| dock and the |project_name| Function " -"Centric Wizard; and" -msgstr "" - -# 9ee71e057bb944b7a2e214d414cb6d36 -#: ../../source/training/socialisation/run_other_hazards.rst:33 -msgid "" -"Be able to use the Generic Impact Function and understand how to use it to " -"work with their own data." -msgstr "" - -# 30ca66abac0f4c98bb0ca280dc499189 -#: ../../source/training/socialisation/run_other_hazards.rst:36 -msgid "Data for This Exercise:" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:38 -msgid "" -"The data used for this exercise is the same as that used in previous " -"exercises. The data can be downloaded from |project_name| `Training Data " -"Packages `__ Once the " -"data has been downloaded, we will use the following QGIS project file and " -"spatial data:" -msgstr "" - -# 3575416692604daabd0639c853c7ddcd -#: ../../source/training/socialisation/run_other_hazards.rst:41 -msgid "Padang.qgs" -msgstr "" - -# 39c15b7beaa34636bb74a425b1ddf3fc -#: ../../source/training/socialisation/run_other_hazards.rst:43 -msgid "Maumere.qgs" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:45 -msgid "Nagekeo.qgs" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:47 -msgid "Padang_village_boundary_WGS84.shp" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:49 -msgid "West_Sumatera_Population_WGS84.shp" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:51 -msgid "Padang_EQ_2009_WGS84.tif" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:53 -msgid "Maumere_Tsunami_WGS84.tif" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:55 -msgid "Maumere_Buildings_WGS84.shp" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:57 -msgid "Sikka_Village_Boundary_WGS84.shp" -msgstr "" - -# abce09416a7f4d5095e5b6828acdff96 -#: ../../source/training/socialisation/run_other_hazards.rst:59 -msgid "Sinabung_Hazard_Map_2015_WGS84.shp" -msgstr "" - -# 909a8392312d4066a928f8497d933577 -#: ../../source/training/socialisation/run_other_hazards.rst:61 -msgid "Sinabung_buildings_WGS84.shp" -msgstr "" - -# d6cdbd75f045428f8a011528b0357f43 -#: ../../source/training/socialisation/run_other_hazards.rst:63 -msgid "NGK_Landslide_Vulnerability_WGS84.shp" -msgstr "" - -# 950c963178de42ffaad6158f248f6094 -#: ../../source/training/socialisation/run_other_hazards.rst:65 -msgid "NGK_Buildings_WGS84.shp" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:67 -msgid "NGK_Population_WGS84.tif" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:69 -msgid "NGK_Villages_BPS_WGS84.shp" -msgstr "" - -# 055545fbd15240a1948d3e0d8895206c -#: ../../source/training/socialisation/run_other_hazards.rst:72 -msgid "1. Run |project_name| for Earthquake" -msgstr "" - -# 51b956959dda47f5b218a5644fdad845 -#: ../../source/training/socialisation/run_other_hazards.rst:75 -msgid "1.1 Run |project_name| for Building" -msgstr "" - -# 89b1d80f9ebd44179f7e5b4a984924a6 -#: ../../source/training/socialisation/run_other_hazards.rst:78 -msgid "a. Open Project" -msgstr "" - -# 262cfa09f4b441b59e4b56f7e7fb70ad -#: ../../source/training/socialisation/run_other_hazards.rst:80 -msgid "" -"Indonesia’s location on the edges of the Pacific, Eurasian, and Australian " -"tectonic plates makes it not only a site of numerous volcanoes but also " -"frequent earthquakes. The hazard layer we are going to use for this example " -"has been provided by Badan Geologi and AIFDR, Australian Government and " -"describes the shaking or Modified Mercalli Intensity (MMI) Scale." -msgstr "" - -# ea84f93d059e4895b11096ca8a5cca08 -#: ../../source/training/socialisation/run_other_hazards.rst:83 -msgid "" -"This particular scenario is a modelled version of the 2009 Padang " -"earthquake. Please open QGIS project file :file:`Padang.qgs` from the :file:" -"`InSAFE Training Data > West Sumatera` folder. Once opened, you will see the " -"below :" -msgstr "" - -# 945f50a22569450d96a57d445a039729 -#: ../../source/training/socialisation/run_other_hazards.rst:88 -msgid "" -"In the |project_name| dock, note that the |project_name| form is still " -"empty. It means that your hazard and exposure data does not yet have " -"keywords assigned. Therefore, you must first define keywords for each " -"dataset in the project." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:91 -msgid "" -"To define keywords, please click on the :guilabel:`Keywords Creation Wizard` " -"icon and follow the instructions provided. You can refer back to the :ref:" -"`Run Intermediate InaSAFE ` module for step-by-" -"step instructions." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:94 -msgid "" -"While you define the hazard layer, please select hazard classifications for " -"each exposure type. In this example, you must choose ‘Earthquake MMI " -"Classes’ on Population and 'Generic Classes' on Structures Classifications " -"to edit the threshold. Do not forget to save the thresholds before you " -"continue to the next step." -msgstr "" - -# a12c115b543a402dbf9c42667f757b2e -#: ../../source/training/socialisation/run_other_hazards.rst:99 -#: ../../source/training/socialisation/run_other_hazards.rst:250 -msgid "" -"Once you have finished defining keywords for each layer, your |project_name| " -"form should look like this :" -msgstr "" - -# b1749939d0024d149d7a4b0cc6b73f08 -#: ../../source/training/socialisation/run_other_hazards.rst:105 -msgid "b. Run |project_name|" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:107 -msgid "" -"Once your |project_name| dock appears the same as the above image, you are " -"ready to run an earthquake analysis on buildings. It poses the question “In " -"the event of an **Earthquake in Padang 2009**\", how many **buildings** will " -"**be affected?**. Click :guilabel:`Run` on the bottom right corner in your |" -"project_name| Dock. If everything was set up correctly, you should get a " -"result in the dock area after a few seconds, and a new map layer should be " -"added to the map. The new layer is named **Number of Buildings**." -msgstr "" - -# 8c97d3f1b18949da82785f786d51162d -#: ../../source/training/socialisation/run_other_hazards.rst:117 -msgid "c. Interpret the Results" -msgstr "" - -# e8850575914b40e99ded85ff43f5f9d4 -#: ../../source/training/socialisation/run_other_hazards.rst:119 -msgid "Let’s take a look at the new data layer generated from |project_name|." -msgstr "" - -# 7a60da0a7dde455d843e5a45a27f2dd3 -#: ../../source/training/socialisation/run_other_hazards.rst:121 -msgid "Zoom in to any area in the Map Canvas" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:123 -msgid "" -"There will be three new different colours generated from |project_name| " -"(light yellow, orange, and red)." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:125 -msgid "" -"The red buildings are located in highly affected areas which have MMI Values " -"greater than 8 MMI. The orange buildings are located in medium affected " -"areas which have MMI between 6 to 8 MMI while the light yellow buildings are " -"considered located in areas with low impact which have MMI Values of less " -"than 6 MMI." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:127 -msgid "" -"Click :guilabel:`Number of Buildings` in the layer list to select it, click " -"the :guilabel:`Identify Feature` tool, and then click on building to view " -"attributes of the building." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:129 -msgid "" -"Default Threshold for Earthquake are 0-6 MMI for Low Threshold, 6.1-8 MMI " -"for Medium and more than 8 MMI for high threshold. You can change the " -"threshold of MMI Value for each affected area before running |project_name|. " -"Please run keyword wizard again and click Edit on Earthquake on Building. " -"Don't forget to click Save. This configuration will make your result " -"different with Run |project_name| using default threshold." -msgstr "" - -# 868ac4daabe64742868b81992238a728 -# 514e64abb76a4000a222eca48dd90e47 -#: ../../source/training/socialisation/run_other_hazards.rst:134 -#: ../../source/training/socialisation/run_other_hazards.rst:281 -#: ../../source/training/socialisation/run_other_hazards.rst:470 -msgid "" -"In the |project_name| panel we now see the impact summary. Details are " -"explained below." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:139 -msgid "" -"**General report:** shows estimated number of buildings based on hazard zone " -"and structures. **Hazard zone** divides the results into several categories " -"based on the threshold set in the hazard analysis. In this impact summary, " -"InaSAFE divides the impact buildings into three categories based on MMI. " -"**Structures** divides the results that shows the count of affected, not " -"affected and not exposed buildings." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:141 -msgid "" -"**Analysis detail:** divides the exposed buildings into several categories " -"based on the building type attribute for each building. In this impact " -"summary, InaSAFE breaks down the results into a more detailed report by " -"looking at each type of the building." -msgstr "" - -# cc5be8a533c84f83a1a1543de7e6aee5 -# 1610c22e32d246459da6f53eb59a815b -#: ../../source/training/socialisation/run_other_hazards.rst:143 -#: ../../source/training/socialisation/run_other_hazards.rst:216 -#: ../../source/training/socialisation/run_other_hazards.rst:534 -msgid "" -"**Action checklist:** designed to make disaster managers think about what " -"they need to do/discuss when planning for a similar event in the future." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:145 -msgid "" -"**Notes and assumptions:** provides details about the input data and any " -"limitations or assumptions in the analysis or report summary. In this " -"example, it explains why buildings are said to be inundated, wet and dry." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:147 -msgid "" -"**Aggregation result:** statistical breakdown of the number of results. This " -"example shows the count of important infrastructure. When you choose to use " -"an aggregation layer with your analysis (we will do this later) this table " -"will show the number of buildings by aggregation boundary." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:149 -msgid "" -"**Analysis details (source):** explanation of where the hazard data, " -"exposure data, aggregation come from." -msgstr "" - -# 227abfe7ec5f4f129f94f49024895048 -#: ../../source/training/socialisation/run_other_hazards.rst:152 -msgid "1.2 Run |project_name| for Population" -msgstr "" - -# 0a2286c3a2dc46d2b7404b15688788a1 -#: ../../source/training/socialisation/run_other_hazards.rst:154 -msgid "" -"We are now ready to run our second |project_name| analysis using earthquake " -"data in Padang. We will be working with the same earthquake data again, but " -"this time looking at the number of impacted people in a specific area. If " -"you finished defining keywords, these data should have keywords assigned so " -"you will be ready to run |project_name|." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:157 -msgid "" -"In QGIS, turn off the **Buildings** and **estimated buildings affected** " -"(the layers generated from |project_name| analysis and turn ON the " -"population layer). Because we want to look at the number people who might be " -"killed or displaced in a specific area, we also need to turn ON **the " -"Village** layer in QGIS. This layer will be used as an aggregation layer " -"that can show us the result for each administrative area. If you forget the " -"steps needed to define a layer as an aggregation, please refer to the :ref:" -"`Run Intermediate InaSAFE. `" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:162 -msgid "" -"Confirm that the |project_name| panel on the right side is set to query how " -"many people will be affected :" -msgstr "" - -# 254d6363872242f7b9da2c19133a3a8c -#: ../../source/training/socialisation/run_other_hazards.rst:164 -msgid "Earthquake in Padang 2009" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:166 -msgid "People" -msgstr "" - -# a0f9600905cf4d10a745b9850381575a -#: ../../source/training/socialisation/run_other_hazards.rst:168 -msgid "Village" -msgstr "" - -# 182d7b00a1404b7e82e2e6c9aff1c8af -#: ../../source/training/socialisation/run_other_hazards.rst:172 -msgid "Your |project_name| form should appear like the below screenshoot:" -msgstr "" - -# ad43fcae4e22417dabef659afb5a6058 -# 07a8867d55d5417daa849cac97f18ae9 -# 80532b577bed4ceca375ebf98dd71c27 -#: ../../source/training/socialisation/run_other_hazards.rst:178 -#: ../../source/training/socialisation/run_other_hazards.rst:442 -#: ../../source/training/socialisation/run_other_hazards.rst:491 -msgid "a. Run |project_name|" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:180 -msgid "" -"If everything is setup correctly, the |project_name| dock should show that " -"you are ready to run a flood analysis on population. It poses the question " -"“In the event of an **Earthquake in Padang (2009)**, how many **people** " -"will be **affected**?” In this analysis we still use Shakemap data which has " -"values from 6 – 8 MMI. If you want to see the minimum relief needs that " -"should be provided based on the result, you can click :guilabel:`Options` " -"and select :guilabel:`Minimum Needs`." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:184 -msgid "" -"You can refer to the :ref:`Run Basic InaSAFE ` to learn " -"more about the basis of default minimum needs in |project_name| or if you " -"want edit an item or add new minimum needs, you can refer to the `Minimum " -"Needs Configuration manuals `__. After everything is " -"setup accordingly, click :guilabel:`Run` to process the new scenario." -msgstr "" - -# 349eb441a85049e1be0e074e8cf81744 -# beefdd3ed2bc4c4b813607c1966f1859 -#: ../../source/training/socialisation/run_other_hazards.rst:189 -#: ../../source/training/socialisation/run_other_hazards.rst:455 -msgid "b. Interpret The Result" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:191 -msgid "" -"If everything was set up correctly, you should get a result in the dock area " -"after a few  seconds, and a new map layer should be added to the map. The " -"new impact layer will be called **People Displaced**. Let’s explore the " -"result again to help you better understand its meaning :" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:194 -msgid "" -"Turn off the **Number of Buildings** layer and drag the **People Displaced** " -"above Earthquake in Padang 2009." -msgstr "" - -# b2abc08da77145a4b01792a818180126 -#: ../../source/training/socialisation/run_other_hazards.rst:196 -msgid "Zoom in to the area you choose." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:198 -msgid "" -"Select **People Displaced** in the layer list and use the :guilabel:" -"`Identify Feature` tool again to select a pixel (square) in the map canvas." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:200 -msgid "" -"In the screenshot below, clicking on one of the brown pixels displays a " -"value of 98.94569, which means there are approximately 98 people in this one " -"pixel (square) whom might be displaced." -msgstr "" - -# 4484907d7beb483897bfeff336a71adc -# 56c42500f0d446d2ae64f73be2065d4e -#: ../../source/training/socialisation/run_other_hazards.rst:205 -#: ../../source/training/socialisation/run_other_hazards.rst:525 -msgid "" -"In the |project_name| panel we now see the impact summary. The details are " -"explained below." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:212 -msgid "" -"**General report:** shows estimated number of affected people based on " -"hazard zone and population. It is assumed that all of these people will need " -"to be evacuated. **Hazard zone** divides the results into several categories " -"based on the threshold set in the hazard analysis. In this impact summary,|" -"project_name| divides the affected people into several categories based on " -"MMI classes. **Population** divides the results that shows the count of " -"displaced and fatalities." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:214 -#: ../../source/training/socialisation/run_other_hazards.rst:532 -msgid "" -"**Minimum needs:** are calculated numbers of food, water and other products " -"needed by evacuated people on a weekly basis." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:218 -#: ../../source/training/socialisation/run_other_hazards.rst:536 -msgid "" -"**Notes and assumptions:** provides details about the input data and any " -"limitations or assumptions in the analysis or report summary. In this " -"example, it explains the total number of people in the analysis area and the " -"source of minimum needs." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:220 -#: ../../source/training/socialisation/run_other_hazards.rst:538 -msgid "" -"**Detailed minimum needs report:** statistical breakdown of the number of " -"total displaced population and minimum needs based on administrative area." -msgstr "" - -# dfeebf4b25e644b084244c4166b808d4 -#: ../../source/training/socialisation/run_other_hazards.rst:222 -#: ../../source/training/socialisation/run_other_hazards.rst:540 -msgid "" -"**Detailed gender and age report:** provides a breakdown of the number of " -"affected people by age (youth, adults and elderly) and gender based on the " -"default world population demographics and calculates the minimum needs for " -"women’s hygiene and pregnant women. If you using aggregation layer, the " -"result will be broken down based on administrative area." -msgstr "" - -# 67928a73b8c342d9b7b39cb309560042 -#: ../../source/training/socialisation/run_other_hazards.rst:228 -msgid "2. Run |project_name| for Tsunami" -msgstr "" - -# 53903ce83d5f4943bc80a60da9b44d42 -#: ../../source/training/socialisation/run_other_hazards.rst:230 -msgid "" -"The 1992 Flores earthquake occurred on December 12, 1992 on the island of " -"Flores in Indonesia. With a magnitude of 7.8, it was the largest and also " -"the deadliest earthquake in 1992. This earthquake triggered another hazard " -"in that area a tsunami in Maumere, Flores." -msgstr "" - -# aee6bcfdf536483498c0757360adde08 -#: ../../source/training/socialisation/run_other_hazards.rst:233 -msgid "" -"Next, we will run another scenario in |project_name| using Tsunami Hazard " -"Model. It is a modelled version of a Magnitude 8.1 earthquake generating a " -"tsunami which impacts Maumere." -msgstr "" - -# d4621e446cf04a8091ed5cc99896c2c8 -#: ../../source/training/socialisation/run_other_hazards.rst:237 -msgid "2.1 Open Project" -msgstr "" - -# 1674ef3713a2404d8a0bfb6d53b8d634 -#: ../../source/training/socialisation/run_other_hazards.rst:239 -msgid "" -"Please open the QGIS project file :file:`Maumere.qgs` from the :file:" -"`InaSAFE Training Data > Maumere` folder. Once opened, the project should " -"appear similar to the screenshot below:" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:245 -msgid "" -"You will see in the |project_name| dock that keywords for each layer have " -"not yet been defined. As before, we use the :guilabel:`Keyword Creation " -"Wizard` icon to define keyword. For detailed steps, please reference the :" -"ref:`Run Intermediate InaSAFE. ` module" -msgstr "" - -# 24ee1458021e4fc8bd8ff90edc4ef2dc -#: ../../source/training/socialisation/run_other_hazards.rst:248 -msgid "2.2 Run |project_name|" -msgstr "" - -# b95913c0278145669ed4fc071a887c5f -#: ../../source/training/socialisation/run_other_hazards.rst:255 -msgid "" -"In this scenario we will use Buildings as an exposure and Village Boundary " -"as an aggregation layer. Once your |project_name| form appears the same as " -"the above screenshoot, click :guilabel:`Run` at the bottom right corner in " -"your |project_name| dock." -msgstr "" - -# f201412e722e4219aba6a01d68e8c530 -#: ../../source/training/socialisation/run_other_hazards.rst:259 -msgid "2.3 Interpret the Result" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:261 -msgid "" -"If everything was set up correctly, you should get a result in the dock area " -"after a few  seconds, and a new map layer should be added to the map. The " -"new impact layer will be called Number of buildings. Let’s explore the " -"result again to help you understand more." -msgstr "" - -# 2ae5467066d3482ba30d4059bc0a478a -#: ../../source/training/socialisation/run_other_hazards.rst:265 -msgid "Zoom in to any area you choose" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:267 -msgid "" -"Here we have zoomed in to a location in Maumere. There will be five new " -"different colours generated from |project_name| (light yellow, orange, red, " -"green, and grey)." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:269 -msgid "" -"The red buildings are situated in area where the depth of tsunami inundation " -"is more than 3 metres; the orange buildings are situated in area where the " -"depth of tsunami inundation is between 1.0 and 3 metres; the light yellow " -"are situated in area where the depth of tsunami inundation is 0.1 and 1.0 " -"metres; the green buildings considered dry as they are situated in water " -"less than the threshold of 0.1 metre; and the grey buildings considered not " -"exposed by the hazard." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:274 -msgid "" -"Click **Number of buildings** in the layer list to select it and click :" -"guilabel:`Identify Feature` tool and then click on building to know what " -"attribute of the building." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:279 -msgid "" -"Here we clicked on one of the red building and find that there is a value of " -"hazard class 'high'. This means that the building is located in an affected " -"area which is predicted to be flooded more than 3 metres." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:286 -msgid "" -"**General report**: shows estimated number of buildings based on hazard zone " -"and structures. **Hazard zone** divides the results into several categories " -"based on the threshold set in the hazard analysis. In this impact summary, |" -"project_name| divides the impact buildings into four categories: number of " -"building in low hazard zone, number of building in medium hazard zone, " -"number of building in high hazard zone and number of dry buildings (not " -"affected by any tsunami impact). **Structures** divides the results that " -"shows the count of affected, not affected and not exposed buildings." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:288 -msgid "" -"**Analysis detail**: divides the exposed buildings into several categories " -"based on the building type attribute for each building. In this impact " -"summary, |project_name| breaks down the results into a more detailed report " -"by looking at each type of the building." -msgstr "" - -# b0918c68e8eb47f1b5d5dc934ea58e52 -# 04b0aa6d96fa4c48b18670ad5cb87679 -#: ../../source/training/socialisation/run_other_hazards.rst:290 -#: ../../source/training/socialisation/run_other_hazards.rst:397 -#: ../../source/training/socialisation/run_other_hazards.rst:479 -msgid "" -"**Action checklist**: designed to make disaster managers think about what " -"they need to do/discuss when planning for a similar event in the future." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:292 -msgid "" -"**Notes and assumptions**: provides details about the input data and any " -"limitations or assumptions in the analysis or report summary. In this " -"example, it explains why building are predicted to be inundated, wet and dry." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:294 -#: ../../source/training/socialisation/run_other_hazards.rst:401 -#: ../../source/training/socialisation/run_other_hazards.rst:483 -msgid "" -"**Aggregation result**: statistical breakdown of the number of impacted " -"building based on administrative area." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:299 -msgid "" -"**Analysis details (source)**:explanation of where the hazard data, exposure " -"data, aggregation come from." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:302 -msgid "" -"The results show the buildings that will be affected by tsunami starting " -"from 1 metre. What if the disaster manager decides that buildings in 80 cm " -"of water are also considered inundated? You can change the water depth " -"threshold to see the result, refer to the :ref:`Run Basic InaSAFE. " -"` module." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:304 -msgid "" -"InaSAFE Tsunami Impact Function is very similar with Flood, but due to the " -"force of tsunami waves, the maximum depth of water that would affect people " -"and infrastructure is shallower." -msgstr "" - -# e946c7e21c7945b59265930c89437a0a -#: ../../source/training/socialisation/run_other_hazards.rst:307 -msgid "3. Run |project_name| for Volcano" -msgstr "" - -# f305e52f9aab4a2f9fbfc278adc6b15b -#: ../../source/training/socialisation/run_other_hazards.rst:309 -msgid "" -"Indonesia has many volcanoes, and most of them are still active today. In " -"fact, one of the most frequent disasters in Indonesia is volcano eruptions. " -"There are 129 active volcanoes across the country, and it is valuable to " -"know how many people and how much infrastructure is within a certain " -"perimeter of the vent." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:312 -msgid "" -"|project_name| also has an impact function for volcano eruption scenarios. " -"This function can run some type of hazard data. For detail information about " -"the |project_name| volcano hazard function, please look at the :ref:`Hazard " -"Data Section. `" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:315 -msgid "" -"In this section we will be using the Sinabung volcano hazard from the " -"National Disaster Management Agency (BNPB) as hazard data and building from " -"OpenStreetMap as exposure data. For this run, we will using Impact Function " -"Centric Wizard (IFCW). For more information about IFCW you can refer to :ref:" -"`Key concepts in disaster management planning with InaSAFE. " -"`" -msgstr "" - -# aca0f332e9d146c2b736b20270047dbf -#: ../../source/training/socialisation/run_other_hazards.rst:321 -msgid "3.1 Open Project" -msgstr "" - -# 9d4c9445366f4b20b2b79d687a2ce745 -#: ../../source/training/socialisation/run_other_hazards.rst:323 -msgid "" -"Please open a new QGIS project in order to use IFCW to run this project. You " -"new QGIS project should look like this:" -msgstr "" - -# e10213f419cc4b76ae5e9cb0598ad97b -#: ../../source/training/socialisation/run_other_hazards.rst:330 -msgid "3.2 Run |project_name|" -msgstr "" - -# a338b2ad63f543feb453f179f49c36a5 -#: ../../source/training/socialisation/run_other_hazards.rst:332 -msgid "" -"To use the **Impact Function Centric Wizard**, please click :guilabel:" -"`Impact Fuction Centric Wizard` icon." -msgstr "" - -# b27cbe8af97d4acc8508e1aae1dd863b -#: ../../source/training/socialisation/run_other_hazards.rst:337 -msgid "" -"After clicking that icon, you will see the following dialogue box appear:" -msgstr "" - -# fc633ecc0f9a466e9ae2471328db2a8c -#: ../../source/training/socialisation/run_other_hazards.rst:342 -msgid "" -"In the box above, there are some fields that help us select the scenario to " -"use. Green fields mean those scenarios are available and ready to run in |" -"project_name|. Grey fields means those scenarios are not available in |" -"project_name| at the moment." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:345 -msgid "" -"Because we want to run Volcano with building in this session, please click :" -"guilabel:`Field Volcano' and :guilabel: 'Structure`. The resulting dialogue " -"box appears like this:" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:350 -msgid "" -"You can click :guilabel:`Next` and select the geometry types for the hazard " -"and exposure layers, click :guilabel:`Polygon`." -msgstr "" - -# 97d524f1f13e4bd69311aeafa831013c -#: ../../source/training/socialisation/run_other_hazards.rst:355 -msgid "" -"You can click :guilabel:`Next` and follow the instructions in the IFCW box." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:357 -msgid "" -"Hazard Data that we want to use for this scenario can be found in :file:" -"`InaSAFE Training Data > Sinabung > Hazard Data` folder and please select :" -"file:`Sinabung_Hazard_Map_2015_WGS84.shp`." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:359 -msgid "" -"Building Exposure data can be found in :file:`InSAFE Training Data > " -"Sinabung > Exposure Data` folder and please select :file:" -"`Sinabung_buildings_WGS84.shp` ." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:361 -msgid "" -"There is optional to use aggregation for your analysis, either you load " -"aggregation layer from your own local file or you just aggregate results for " -"the entire analysis windows." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:363 -msgid "" -"The differences between Volcano and Volcanic Ash can be seen in :ref:`Hazard " -"Data Section `, and for detail explanation about type of data you " -"can be found in :ref:`Key concepts in disaster management planning with " -"InaSAFE. `." -msgstr "" - -# 5c3e5db3e9e14713915a70d81012e85b -#: ../../source/training/socialisation/run_other_hazards.rst:365 -msgid "" -"If you have followed the instruction in IFCW box, before running |" -"project_name| you should see the final form below:" -msgstr "" - -# e740470fc5a3420690599414d29aa441 -#: ../../source/training/socialisation/run_other_hazards.rst:370 -msgid "" -"If your IFCW box looks like the screenshot above, click :guilabel:`Run` and " -"wait for analysis processing until a result box appears." -msgstr "" - -# 1b83a5f595c64b12a0b6411b9eb3f41a -#: ../../source/training/socialisation/run_other_hazards.rst:376 -msgid "3.3 Interpret the Result" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:378 -msgid "" -"Once you have finished running the analysis, you will see the result has new " -"layer named “Number of buildings” . This layer will show you which buildings " -"are affected for each hazard zone. There will be four new colours of " -"building generated from |project_name| (light yellow, orange, red, and grey)." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:382 -msgid "" -"The light yellow buildings mean these buildings are located in a Low Risk " -"Zone (Risk Zone 1), the orange buildings mean these buildings are located in " -"an Intermediate Risk Zone (Risk Zone 2), red buildings are considered " -"situated in a High Risk Zone (Risk Zone 3) of Sinabung Volcano, and grey " -"buildings considered not exposed by the hazard." -msgstr "" - -# f55f799aea004f5f8c087fd4e9f9aa51 -#: ../../source/training/socialisation/run_other_hazards.rst:387 -msgid "" -"In the |project_name| result box, we now see the impact summary. It is very " -"similar to the |project_name| Dock. Details are explained below." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:393 -msgid "" -"**General report**: shows estimated number of buildings based on hazard zone " -"and structures. **Hazard zone** divides the results into several categories " -"based on the threshold set in the hazard analysis. In this impact summary, |" -"project_name| divides the impacted buildings into three categories for each " -"hazard zone of Sinabung Volcano. **Structures** divides the results that " -"shows the count of affected, not affected and not exposed buildings." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:395 -#: ../../source/training/socialisation/run_other_hazards.rst:477 -msgid "" -"**Analysis detail**: divides the exposed buildings into several categories " -"based on the building type attribute for each building." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:399 -#: ../../source/training/socialisation/run_other_hazards.rst:481 -msgid "" -"**Notes and assumptions**: provides details about the input data and any " -"limitations or assumptions in the analysis or report summary." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:403 -#: ../../source/training/socialisation/run_other_hazards.rst:485 -msgid "" -"**Analysis details (source)**: explanation of where the hazard data, " -"exposure data, aggregation come from." -msgstr "" - -# f69590d621b44c91a3263e2092040c8a -#: ../../source/training/socialisation/run_other_hazards.rst:405 -msgid "" -"You have now run |project_name| for a volcano scenario using the Impact " -"Function Centric Wizard (IFCW). Quite different than the |project_name| " -"Dock, this tool is designed to help a user run |project_name| more easily " -"without needing to open all the required data one by one in QGIS. IFCW " -"provides precise guidance and detail about what actions should be taken step " -"by step until the scenario is ready to run. This tool is very useful, " -"especially for |project_name| user who are less familiar with QGIS and " -"Spatial Data." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:410 -msgid "4. Generic Hazard Impact Function in |project_name|" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:412 -msgid "" -"|project_name| can run analyses for multiple hazards, using scenarios that " -"we set up based on data availability. These scenarios include seven types of " -"hazards : floods, earthquakes, volcanos, volcanic ash, tsunamis, dam break, " -"and, cyclone. What if our hazard scenario is not included in this list (for " -"example, a land slide or drought). To solve this problem, |project_name| " -"provides a tool called the **Generic Hazard Impact Function** that can run " -"analyses for any hazard not available via a specific Scenario Impact " -"Function." -msgstr "" - -# b6f0ec4ede71456dbd13bb9211e70f38 -#: ../../source/training/socialisation/run_other_hazards.rst:415 -msgid "4.1 Open Project" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:417 -msgid "" -"Next, we will explore this tool using a landslide hazard in Nagekeo, East " -"Nusa Tenggara with building and population data for each scenario. Please " -"open the QGIS project file :file:`Nagekeo.qgs` from the :file:`InaSAFE " -"Training Data > Nagekeo` folder. Once opened, the project should look like " -"the screenshot below:" -msgstr "" - -# 4b4ca9d18e9a488b8dc06ca7352e3e8d -#: ../../source/training/socialisation/run_other_hazards.rst:424 -msgid "" -"In the |project_name| dock, the |project_name| form still appears empty. " -"This means that your hazard and exposure data lacks keywords. Before " -"proceeding, you should define keywords for each dataset in this project." -msgstr "" - -# 275370c6e9d842a4a8c9b1ccb6bc26b8 -#: ../../source/training/socialisation/run_other_hazards.rst:427 -msgid "" -"To define a keyword, please click on the :guilabel:`Keywords Creation " -"Wizard` icon" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:432 -msgid "" -"and follow the instructions. You can refer to the :ref:`Run Intermediate " -"InaSAFE. ` if you need additional assistance. Once " -"you finish defining keyword for each layer, your |project_name| form should " -"appear like the below screenshot:" -msgstr "" - -# 62d733b837f14165a25a95dc99683f89 -#: ../../source/training/socialisation/run_other_hazards.rst:439 -msgid "4.2 Run |project_name| for Building" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:444 -msgid "" -"Your |project_name| Dock now poses the question “In the event of **Landslide " -"Hazard Zone**, how many **buildings** will **be affected**?\" Click :" -"guilabel:`Run` on the bottom right corner in your |project_name| Dock. If " -"everything was set up correctly, you should get a result in the dock area " -"after a few seconds, and a new map layer should be added to the map. The new " -"layer will be named “Number of buildings”." -msgstr "" - -# a1665e38b86b42299feeb3cd46ba47ad -#: ../../source/training/socialisation/run_other_hazards.rst:457 -msgid "Let’s take a look at the new data layer generated from |project_name|:" -msgstr "" - -# 28d3c686dc02453f81f8282f14e3ca0f -#: ../../source/training/socialisation/run_other_hazards.rst:459 -msgid "Zoom in to an area in the Map Canvas" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:461 -msgid "" -"There will be three new colours generated from |project_name| (red, orange, " -"light yellow and grey)." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:463 -msgid "" -"The red buildings are located in a high vulnerability zone, the orange " -"buildings are located in moderate vulnerability zone, light yellow buildings " -"are located in a Low Landslide Vulnerability Zone and the grey buildings are " -"not exposed by the landslide." -msgstr "" - -# d4438b8bc83f4ab98bbfb33fe48f8a28 -#: ../../source/training/socialisation/run_other_hazards.rst:465 -msgid "" -"Click building affected in the layer list to select it. Next, click the :" -"guilabel:`Identify Feature` tool and then click on a building to view " -"attributes of the building." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:475 -msgid "" -"**General report**: shows estimated number of buildings based on hazard zone " -"and structures. **Hazard zone** divides the results into several categories " -"based on the threshold set in the hazard analysis. In this impact summary, |" -"project_name| divides the impacted buildings into three categories for each " -"hazard zone of Landslide. **Structures** divides the results that shows the " -"count of affected, not affected and not exposed buildings." -msgstr "" - -# 545eb3494eb846f1aa82574b8c73413a -#: ../../source/training/socialisation/run_other_hazards.rst:488 -msgid "4.3 Run |project_name| for Population" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:493 -msgid "" -"Turn off the Buildings Affected by each hazard zone (the layers generated " -"from |project_name| analysis and turn ON the **People** layer. Since we want " -"to look at the number of people who might die or be displaced in a specific " -"area, we also need to turn ON the **Village** layer in QGIS. This layer will " -"be used as an aggregation layer that can show us results grouped by " -"administrative boundary." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:498 -msgid "" -"If you forget the steps to define an aggregation layer, refer to the :ref:" -"`Run Intermediate InaSAFE. ` section. Edit the " -"question form in the |project_name| Dock so that it appears similar to the " -"below screenshot:" -msgstr "" - -# a48206b2360c4d5b9f2fa3fed02102cc -#: ../../source/training/socialisation/run_other_hazards.rst:504 -msgid "Next, click :guilabel:`Run` to start the analysis." -msgstr "" - -# 1cbc05e0418641af9f8f880a39c8dddf -#: ../../source/training/socialisation/run_other_hazards.rst:507 -msgid "b. Interpret the Result" -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:509 -msgid "" -"If everything was set up correctly, you should get a result in the dock area " -"after a few  seconds, and a new map layer should be added to the map. The " -"new impact layer will be called **Number of People**. Let’s explore the " -"result again to help you understand more." -msgstr "" - -# ba61c6e7836d4a33a1925eaf19035788 -#: ../../source/training/socialisation/run_other_hazards.rst:513 -msgid "Zoom in to any area." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:515 -msgid "" -"Select Number of people in the layer list and use the :guilabel:`Identify " -"Feature` tool again to select a pixel (square) in the map canvas." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:517 -msgid "" -"Here we clicked on the red zone and find that there is a value of hazard " -"class ‘high’. This means that the people is located in affected area which " -"is predicted as high hazard zone." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:530 -msgid "" -"**General report:** shows estimated number of affected people based on " -"hazard zone and population. It is assumed that all of these people will need " -"to be evacuated. **Hazard zone** divides the results into several categories " -"based on the threshold set in the hazard analysis. **Population** divides " -"the results that shows the count of displaced and fatalities." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:542 -msgid "" -"In the result of |project_name|, Action Checklist and Notes might be " -"unrelated with hazard that we run. For instance, if we run drought hazard " -"the action checklist might have some topics such as how many building " -"closed, or people die or displaced. Those topics are not really related with " -"drought." -msgstr "" - -# 2f02da2d5ea5483a868ed4a4a7596e8c -#: ../../source/training/socialisation/run_other_hazards.rst:546 -msgid "Summary" -msgstr "" - -# cd3cd588e34f4e029aef8b0b289cbcab -#: ../../source/training/socialisation/run_other_hazards.rst:548 -msgid "" -"Congratulation! You have now learned to use most of |project_name|'s " -"functionality. You can run analyses for specific hazard using tools such as " -"the Impact Function Centric Wizard (IFCW) and the Generic Impact Function " -"which will make using |project_name| easier." -msgstr "" - -#: ../../source/training/socialisation/run_other_hazards.rst:551 -msgid "" -"Now, to become an expert user of |project_name|, try utilising all those " -"tools that you explored in this module using your own scenarios and data, " -"and practice interpreting the results." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/test_data.po b/docs/i18n/fr/LC_MESSAGES/training/test_data.po deleted file mode 100644 index 8c495786..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/test_data.po +++ /dev/null @@ -1,150 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-09-30 07:33+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 5038adbb257644d2bb9e36e95b46bac8 -#: ../../source/training/test_data.rst:4 -msgid "Training Data" -msgstr "" - -# f0c97e942c5a4a68bcb93a845414b14c -#: ../../source/training/test_data.rst:6 -msgid "" -"Example data for use with |project_name| trainings is available for download " -"via :ref:`direct download `, :ref:`Bittorrent Sync " -"`, or :ref:`Docker `." -msgstr "" - -# 1e4e1b5d8bfd49c48aa317a89620429e -#: ../../source/training/test_data.rst:11 -msgid "Direct Download" -msgstr "" - -# 93acc62974794f78ab62cf7a040f2b4d -#: ../../source/training/test_data.rst:13 -msgid "" -"To obtain a specific training dataset go to http://data.inasafe.org and " -"download the package you need." -msgstr "" - -# 04ffef9f0ec14f3ea62d2fe7df831c04 -#: ../../source/training/test_data.rst:19 -msgid "BitTorrent Sync" -msgstr "" - -# a4ffba775c3444eda0ccf3749e72177a -#: ../../source/training/test_data.rst:21 -msgid "" -"The training data can be quite large in size, so if you have a bad internet " -"connection (or want to download everything at once), all of the materials " -"are also available with BitTorrent Sync." -msgstr "" - -# 61733bba5cf34d44aefadb2cb57db6b0 -#: ../../source/training/test_data.rst:23 -msgid "" -"To obtain the training data using BitTorrent Sync, first visit http://www." -"bittorrent.com/sync and download and install the software. Note that it is " -"not necessary to provide your email address." -msgstr "" - -# b46918dd1aad4f1a9b3a9fdf4a776cc4 -#: ../../source/training/test_data.rst:25 -msgid "" -"When installation is complete, open BitTorrent Sync. To download the " -"training data to your computer, click on the :guilabel:`Options` button and " -"then click :guilabel:`Enter a key...`" -msgstr "" - -# f99aa94f70254f2cb8aafddc95643bcf -#: ../../source/training/test_data.rst:30 -msgid "Enter the following key: BSU2UCAVRV7P4CHRYOZGIRQ2VN6CH4JP3" -msgstr "" - -# a792573c36854d80abdfee73616ffd8a -#: ../../source/training/test_data.rst:32 -msgid "" -"After you enter the key you must choose a folder on your computer where you " -"would like to synchronize the files. Create a new folder and select it." -msgstr "" - -# d9875922413c4a2a8edda5884f853679 -#: ../../source/training/test_data.rst:34 -msgid "" -"The files will begin to synchronize with the folder on your computer. It may " -"take awhile to download, depending on the speed of your connection." -msgstr "" - -# 2396ee15e8884c639cc63fc8fa5ebf2b -#: ../../source/training/test_data.rst:36 -msgid "" -"If you are using Linux the BitTorrent Sync interface will be available in " -"your web browser at http://localhost:8888 after you start the application." -msgstr "" - -# b5c75e6be7e947ba8ba6b0adbba29d83 -#: ../../source/training/test_data.rst:41 -msgid "Using Docker" -msgstr "" - -# 66c9661818dc4abe885bbab836504607 -#: ../../source/training/test_data.rst:42 -msgid "" -"If you are comfortable using `docker `_, you may clone " -"the training data by using the btsync Dockerfile." -msgstr "" - -# 783e1cedfe6440618e6c71fbea37abf0 -#: ../../source/training/test_data.rst:44 -msgid "" -"Copy the `inasafe-infrastructure `_ git repository." -msgstr "" - -# b82763753de640efa2bf02b8199669bd -#: ../../source/training/test_data.rst:48 -msgid "To clone the data files, run ::" -msgstr "" - -# 8848fa5e9dcd46a7b292c6ea3954dcf6 -#: ../../source/training/test_data.rst:53 -msgid "in a shell." -msgstr "" - -# a2e7c3b779154f348fff74ac34a27370 -#: ../../source/training/test_data.rst:55 -msgid "" -"This will automatically start a docker container, download and run " -"Bittorrent Sync with the correct key and synchronize all data to the :file:`/" -"var/docker/volumes/btsync` directory." -msgstr "" - -# 4d762ad3cddc436ebc7aab92b2da5c92 -#: ../../source/training/test_data.rst:59 -msgid "" -"The directory that docker will synchronize with is configurable by adjusting " -"the DATADIR variable in the :file:`rundocker.sh` script." -msgstr "" - -# 91540718de544cbabc6bef1ceae0961b -#: ../../source/training/test_data.rst:61 -msgid "" -"To start a sync container with any other secret run :command:`rundocker.sh` " -"with a KEY added as argument: ::" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/tot/501_adult_learning.po b/docs/i18n/fr/LC_MESSAGES/training/tot/501_adult_learning.po deleted file mode 100644 index 3da84185..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/tot/501_adult_learning.po +++ /dev/null @@ -1,1435 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-02-26 15:22+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# c0d37e22b68047a5b8a145223531d576 -#: ../../source/training/tot/501_adult_learning.rst:2 -msgid "Module 1: Adult Learning" -msgstr "" - -# b246d90016bf4e12b57c11be9f91f879 -#: ../../source/training/tot/501_adult_learning.rst:5 -msgid "Overview" -msgstr "Présentation" - -# a67516eabfa44ee3910c10d9b730e3a2 -#: ../../source/training/tot/501_adult_learning.rst:8 -msgid "Basic Competency" -msgstr "" - -# 29e2cb2004ea4591aa3549472c27602d -#: ../../source/training/tot/501_adult_learning.rst:9 -msgid "Master how to implement adult learning" -msgstr "" - -# 7d5883f35f834b6d8bd36e5f082ed45e -#: ../../source/training/tot/501_adult_learning.rst:12 -msgid "Indicators" -msgstr "" - -# afba6f82f1634ddbbad0b6a9c7b80067 -#: ../../source/training/tot/501_adult_learning.rst:13 -msgid "Understand the principles of adult learning" -msgstr "" - -# 4b73f414ecc641c5ba54d213d6cc82e3 -#: ../../source/training/tot/501_adult_learning.rst:14 -msgid "Analyzing the characteristics of adult learning" -msgstr "" - -# c20c05f8933841e5acfa8151669dbf5a -#: ../../source/training/tot/501_adult_learning.rst:15 -msgid "" -"Determining strategies, teaching methods or techniques that apply adult " -"learning" -msgstr "" - -# 2a2014c4b2024a2bba3b2567898f02c5 -#: ../../source/training/tot/501_adult_learning.rst:17 -msgid "Evaluating adult learning" -msgstr "" - -# 5e1dcef926cd4898b962389710723fc9 -#: ../../source/training/tot/501_adult_learning.rst:20 -msgid "Materials" -msgstr "" - -# 0a30260c702d42a19e85ba3acc5a650e -#: ../../source/training/tot/501_adult_learning.rst:21 -msgid "**Adult Learning**" -msgstr "" - -# 2123022bf24c4452a4df4dca5e3435d7 -#: ../../source/training/tot/501_adult_learning.rst:23 -msgid "Principles of adult learning" -msgstr "" - -# abe0d455b34442c8b49a152203c8520c -#: ../../source/training/tot/501_adult_learning.rst:24 -msgid "Characteristics of adult learning" -msgstr "" - -# 057b4dc9be334404ba55761ed1ad6ff6 -#: ../../source/training/tot/501_adult_learning.rst:25 -msgid "Strategies, teaching methods or techniques that apply in adult learning" -msgstr "" - -# a07b777f58ef4fd2a2e0b10bb7ff3027 -#: ../../source/training/tot/501_adult_learning.rst:26 -msgid "Adult learning evaluation" -msgstr "" - -# f0acae09172f48fc9323bd0cfbfcbaf7 -#: ../../source/training/tot/501_adult_learning.rst:29 -msgid "Learning Activities" -msgstr "" - -# e0d23ad1e6ca42a4bb64d18a9196aca8 -#: ../../source/training/tot/501_adult_learning.rst:31 -msgid "**1. Opening and workshop information**" -msgstr "" - -# c619c91282934e059aebdae89b49b47e -#: ../../source/training/tot/501_adult_learning.rst:33 -msgid "Time: 10 minutes Material: Slide PPT Activity:" -msgstr "" - -# a5e8df8706af43bc9f29a21e8c27d8ca -#: ../../source/training/tot/501_adult_learning.rst:37 -msgid "Facilitator welcomes participants to the training; opening invocation" -msgstr "" - -# 556db0245dc74cbebd41e0d41dc6191a -#: ../../source/training/tot/501_adult_learning.rst:38 -msgid "Information on code of conduct during training" -msgstr "" - -# fc6dc14b820946d19f21b997cadc1a74 -#: ../../source/training/tot/501_adult_learning.rst:39 -msgid "Facilitator explains the topics and goals of session one" -msgstr "" - -# 99c5b7832b834f93ba92365c2aebb16b -#: ../../source/training/tot/501_adult_learning.rst:41 -msgid "**2. QA Session about Adult Learning Characteristic**" -msgstr "" - -# d00e7d192bf94941a9c8b3251af81945 -#: ../../source/training/tot/501_adult_learning.rst:43 -msgid "Time: 25 minutes Material: Slide PPT Activity:" -msgstr "" - -# ae09c5abba444d4383740536f8e39b05 -#: ../../source/training/tot/501_adult_learning.rst:47 -msgid "" -"Facilitator puts a question about the definition and characteristics of an " -"adult" -msgstr "" - -# 361b650427814e1d8c3b92e1da4aa9ba -#: ../../source/training/tot/501_adult_learning.rst:49 -msgid "Facilitator explains the definition of adult learning" -msgstr "" - -# 4cfd383e5d1b4f79adc5924ffa935778 -#: ../../source/training/tot/501_adult_learning.rst:50 -msgid "" -"Facilitator puts a question about adult learning characteristics and " -"principles." -msgstr "" - -# ed0f91a8171244d68fb33b6153f171c2 -#: ../../source/training/tot/501_adult_learning.rst:53 -msgid "**3. Group Discussion: Adult Learning Strategy**" -msgstr "" - -# fa2ff73579c142a2bde81a7aa16dd7ab -#: ../../source/training/tot/501_adult_learning.rst:55 -msgid "Time: 25 minutes Material: Plano Paper Activity:" -msgstr "" - -# 8c9625582eee4868a9ccf6695c8f4e1a -#: ../../source/training/tot/501_adult_learning.rst:59 -msgid "" -"Facilitator asks participants to each count 1 to 4 one after another and " -"divides them into 4 groups. Those mentioning same number form one group." -msgstr "" - -# 67af0101697b4a2d8a35581405f8d3cd -#: ../../source/training/tot/501_adult_learning.rst:62 -msgid "Each group elects its chief and secretary" -msgstr "" - -# 9296a109b6f74fc596b97dc7ba132cb3 -#: ../../source/training/tot/501_adult_learning.rst:63 -msgid "" -"The chief presides at discussion on adult learning strategies, the outcome " -"of which is written down on flipchart paper by the secretary." -msgstr "" - -# c09c6264a89d455b808d18db982f652f -#: ../../source/training/tot/501_adult_learning.rst:66 -msgid "**4. Group Presentation**" -msgstr "" - -# ddb3994674734b2c88e7aef048178b63 -#: ../../source/training/tot/501_adult_learning.rst:68 -msgid "Time: 20 minutes Material: Slide PPT/Plano Paper Activity:" -msgstr "" - -# 63e2ebc58f9f491da31c9e4a52b86325 -#: ../../source/training/tot/501_adult_learning.rst:72 -msgid "" -"Facilitator asks the chief of each group to move forward and take part in a " -"draw to decide which group is responsible as presenter." -msgstr "" - -# 4fc839425d8f479e8bac4ade7c328279 -#: ../../source/training/tot/501_adult_learning.rst:74 -msgid "" -"Facilitator asks other groups to put questions or give comments to the " -"presenter group; Facilitator leads the Q&A session" -msgstr "" - -# 169b80eb4fc74bbd99c4164465e2cfca -#: ../../source/training/tot/501_adult_learning.rst:76 -msgid "Facilitator mentions adult learning strategies not yet mentioned." -msgstr "" - -# 7ea543b7d14a4747936dacca751bbcd3 -#: ../../source/training/tot/501_adult_learning.rst:78 -msgid "**5. Pair Discussion**" -msgstr "" - -# c65a02661758474aa0a6e9b96c233219 -#: ../../source/training/tot/501_adult_learning.rst:80 -msgid "Time: 20 minutes Material: HVS Paper Activity:" -msgstr "" - -# 9e390fe272ac402da484b5d47043ab3c -#: ../../source/training/tot/501_adult_learning.rst:84 -msgid "Facilitator asks participants to find a partner" -msgstr "" - -# 4bcbf14eb89c4c01980ed2388bc043b8 -#: ../../source/training/tot/501_adult_learning.rst:85 -msgid "" -"Each group of two is asked to discuss how to evaluate adults (adult earning " -"evaluation)" -msgstr "" - -# b4ae61959ed44feabdb22347a7d126fd -#: ../../source/training/tot/501_adult_learning.rst:87 -msgid "Result of discussion is displayed before the class" -msgstr "" - -# 94b3e3d2bde0446fad5d46de8a578f1c -#: ../../source/training/tot/501_adult_learning.rst:88 -msgid "" -"With the sound of music as the background, facilitator randomly throws a " -"small ball at a participant who will then throw it to another group. The " -"group who is in possession of the ball when the music stops will become " -"presenter." -msgstr "" - -# 40aeef56d04a425fac3c6e403b9988bc -#: ../../source/training/tot/501_adult_learning.rst:92 -msgid "" -"Facilitator asks other groups to put questions or give comments to the " -"presenter. Facilitator leads the Q&A session." -msgstr "" - -# 936a0041eb654785b112fbbe8965df20 -#: ../../source/training/tot/501_adult_learning.rst:95 -msgid "Facilitator further explains adult learning evaluation" -msgstr "" - -# 306a3a41cc1c4806a9895241dde9f9aa -#: ../../source/training/tot/501_adult_learning.rst:97 -msgid "**6. Reflection and Closing**" -msgstr "" - -# 4980ff6e0f304aedba1665305ebcf12b -#: ../../source/training/tot/501_adult_learning.rst:99 -msgid "Time: 5 minutes Material: - Activity:" -msgstr "" - -# 7bc7848f858b4353886d7a0fc01c2efc -#: ../../source/training/tot/501_adult_learning.rst:103 -msgid "" -"Facilitator asks one of the participants to reflect on the proceeding of the " -"first session." -msgstr "" - -# 88b7ee73e4a640f9b4a02ce13b90ae0a -#: ../../source/training/tot/501_adult_learning.rst:107 -msgid "Reading Material" -msgstr "" - -# f7918881872f4f6cacd19929eb241360 -#: ../../source/training/tot/501_adult_learning.rst:110 -msgid "Introduction" -msgstr "Introduction" - -# afa35ececde9415481782eda7190e1fe -#: ../../source/training/tot/501_adult_learning.rst:112 -msgid "" -"The participants of the training in Scenario Development for Contingency " -"Planning using OpenStreetMap (OSM) and QGIS/ |project_name| software are " -"adults. Their learning characteristics are unique and different from those " -"of children. As such, it is crucial that trainers learn about adult learning " -"characteristics. The understanding of adult learning characteristics is " -"needed to determine compatible and effective training strategies for " -"training participants." -msgstr "" - -# 44fc779f34b74c8db237b9384542b31c -#: ../../source/training/tot/501_adult_learning.rst:120 -msgid "" -"Adult Learning or Education is known as Andragogy, the antonym of Pedagogy " -"(children education). The term andragogy is derived from latin words Andro " -"(Adult) and agogos which means to lead or guide, hence the term andragogy " -"can be defined as the science of how to lead or guide adults, in other " -"words: the science of teaching adults." -msgstr "" - -# 98dd2837c05948179edacdd008f022f2 -#: ../../source/training/tot/501_adult_learning.rst:127 -msgid "" -"Basically education is a process of facilitating a person to search and find " -"the knowledge needed in life through learning, rendering all human " -"activities potential to be used as part of learning process. Andragogy " -"strategy stimulates adults to engage in the process of searching and finding " -"the knowledge they need in life. Adults learn in a continuous way from their " -"experience." -msgstr "" - -# 9ea1c9017be042f6bd0f717f45bbeb85 -#: ../../source/training/tot/501_adult_learning.rst:135 -msgid "1. Adult Learning Characteristics" -msgstr "" - -# a756d240d02d49ed8945c4216fb62493 -#: ../../source/training/tot/501_adult_learning.rst:137 -msgid "" -"Adult education is an endeavor aimed at self development made by individuals " -"without legal forces, without making this endeavor their main activity " -"(Reeves, Fansler, and Houle in Supriyanto, 2007). According to UNESCO " -"(Townsend Coles 1977 in Lanundi (1982), adult education is defined as the " -"entire body of organized educational processes, whatever the content, level " -"and method, whether formal or otherwise, whether they prolong or replace " -"initial education in schools, colleges and universities as well as in " -"apprenticeship, whereby persons regarded as adult by the society to which " -"they belong develop their abilities, enrich their knowledge, improve their " -"technical or professional qualifications and bring about changes in their " -"attitudes or behavior in the twofold perspective of full personal " -"development and participation in balanced and independent social, economic " -"and cultural development. Meanwhile, according to Bryson in Supriyanto " -"(2007) Adult education comprises all educational activities in which adults " -"engage in their daily life using only a part of their time and energy in " -"order to gain additional intellectual knowledge." -msgstr "" - -# 1ef12c80f6854caf84c59b00bf9a3686 -#: ../../source/training/tot/501_adult_learning.rst:162 -msgid "The definition above shows that:" -msgstr "" - -# d3c59a1da8c44d9ebafd3dd7fa4a989f -#: ../../source/training/tot/501_adult_learning.rst:157 -msgid "Adults are normally capable of self-directing," -msgstr "" - -# 72222f21f393402bb5417186d0932d91 -#: ../../source/training/tot/501_adult_learning.rst:158 -msgid "Adults have varied experiences," -msgstr "" - -# 3a4e42c1259d4110b9e7d0f060dbe27b -#: ../../source/training/tot/501_adult_learning.rst:159 -msgid "" -"Adults are prepared to learn as a consequence of their position in " -"transition of development," -msgstr "" - -# e2976da0b81d4cb9b7b3e96f48f5f1b6 -#: ../../source/training/tot/501_adult_learning.rst:161 -msgid "Adults prefer problem-centerd or performance-centered learning." -msgstr "" - -# a95635e2f7d640d8b95319cb042b4ead -#: ../../source/training/tot/501_adult_learning.rst:162 -msgid "The following are complete characteristics of adults:" -msgstr "" - -# c2641e0b7f3d434792d769e9a202a748 -#: ../../source/training/tot/501_adult_learning.rst:164 -msgid "Adults have the ability to self-direct." -msgstr "" - -# 6f3f7c0c5f454b0687d5bd9ee2a5563b -#: ../../source/training/tot/501_adult_learning.rst:165 -msgid "" -"Adults have a lot of experience which functions as learning process for them." -msgstr "" - -# 37f417b66f154efbbe818654c3c186eb -#: ../../source/training/tot/501_adult_learning.rst:166 -msgid "" -"Adults are prepared to learn everything they need to learn; their " -"experience is built from problem solving or finding solutions to daily tasks." -msgstr "" - -# 299e0f7064104a24a4b811f2c1778c21 -#: ../../source/training/tot/501_adult_learning.rst:168 -msgid "" -"Orientation of learning: Education is a development process of self ability; " -"knowledge and skills are applied for a better life. Learning orientation is " -"focused on activities." -msgstr "" - -# 1be6a4f7235b48918f06510d42f05adc -#: ../../source/training/tot/501_adult_learning.rst:172 -msgid "" -"The characteristics of adult learning according to Soedomo (1989) in " -"Supriyadi (2007):" -msgstr "" - -# a8c2376e6c704c48b0c6854e054b8bcb -#: ../../source/training/tot/501_adult_learning.rst:175 -msgid "Adult learning facilitates exchanges of opinions, demands and values" -msgstr "" - -# c74ec377100345e9b36634ccf6cb5062 -#: ../../source/training/tot/501_adult_learning.rst:176 -msgid "It facilitates a two-way communication" -msgstr "" - -# 476093a727704a5dbdfef1fdadec2e81 -#: ../../source/training/tot/501_adult_learning.rst:177 -msgid "Learning atmosphere expected is one that is fun and challenging" -msgstr "" - -# 08e405b52e114671a84c8a8631f68e7f -#: ../../source/training/tot/501_adult_learning.rst:178 -msgid "It prioritizes the roles of learning participants" -msgstr "" - -# 1673f17e616f4a0fb8ccf25e37da6620 -#: ../../source/training/tot/501_adult_learning.rst:179 -msgid "Adults learn when their opinion is respected" -msgstr "" - -# cc7a9a7668aa4709b01b2c58dc8b7ee5 -#: ../../source/training/tot/501_adult_learning.rst:180 -msgid "Adults learn in a unique way" -msgstr "" - -# 3f60691b46a64d2285c839bba2da9825 -#: ../../source/training/tot/501_adult_learning.rst:181 -msgid "There needs to be a trust between mentor and learners" -msgstr "" - -# 227c75bf1d7840ecb7f79bdba9daed36 -#: ../../source/training/tot/501_adult_learning.rst:182 -msgid "Opinions are generally varied among adults" -msgstr "" - -# 8077f92100a74d568d18addee63a2b2a -#: ../../source/training/tot/501_adult_learning.rst:183 -msgid "Adults have varied intelligence" -msgstr "" - -# a3bbc044cf674c8088f26eec4d9592c2 -#: ../../source/training/tot/501_adult_learning.rst:184 -msgid "Various learning methods may emerge" -msgstr "" - -# 433223f294d64297b764262459801194 -#: ../../source/training/tot/501_adult_learning.rst:185 -msgid "Adults learn to know their strong points and shortcomings" -msgstr "" - -# 79de4abfeeda4c4689703b02eb895bd9 -#: ../../source/training/tot/501_adult_learning.rst:186 -msgid "Learning orientation for adults is focused on real life" -msgstr "" - -# 61128e98ac1c46e98211e15ad53b2369 -#: ../../source/training/tot/501_adult_learning.rst:187 -msgid "Adults self--motivate" -msgstr "" - -# 6e641f9ae62b42f899f85f8f7ef7394b -#: ../../source/training/tot/501_adult_learning.rst:189 -msgid "The characteristics of adult learning can be elaborated as follows:" -msgstr "" - -# a4fa1935ba6a428baa769d1f42ca8ab7 -#: ../../source/training/tot/501_adult_learning.rst:191 -msgid "" -"Adults learn because of demands in their work, for self-development or the " -"desire to enhance their role. In contrast with children who tend to receive " -"learning material conveyed by their teacher, adults learn something when it " -"meets their work demands, is crucial for self-development and their role " -"enhancement. To this end, in adult learning, it is important to explain to " -"adults taking part in learning process the relations between material " -"presented and the demands in their work, roles and their needs of self " -"development." -msgstr "" - -# d924e23ce2a544729ffe90e300981a94 -#: ../../source/training/tot/501_adult_learning.rst:199 -msgid "" -"Adults prefer to learn things that are practical, can immediately be applied " -"and bring benefits in their life. Adults generally have rich theoretical " -"knowledge, hence the needs to have learning materials for adults that are " -"practical and applicable." -msgstr "" - -# 7ffd3229407940aaa82517a3bce2e1a0 -#: ../../source/training/tot/501_adult_learning.rst:203 -msgid "" -"In the process of learning, adults want to be treated as a mature person/ to " -"be respected." -msgstr "" - -# e62e038e50904950a7311c4a0de33afe -#: ../../source/training/tot/501_adult_learning.rst:205 -msgid "" -"Adults have rich experience and insight and learn new things based on their " -"experience. Every adult person generally has a lot of experience especially " -"in the field s/he has been focusing on. When engaging adults in learning new " -"things, it is better to build on their experience." -msgstr "" - -# 0bd61ce94b244c1d86496ba6033421ce -#: ../../source/training/tot/501_adult_learning.rst:211 -msgid "" -"Adults learn by sharing their opinion with others. As they are rich in " -"experience, sharing opinion is one of effective ways for them to learn." -msgstr "" - -# e72cf56841ca4ad28559c0a0e2b980a9 -#: ../../source/training/tot/501_adult_learning.rst:214 -msgid "" -"Adults question why they have to learn something before they start to learn " -"it. If children tend to receive certain topics without questioning, adults " -"need to know whether something they are about to learn will bring them " -"direct benefits." -msgstr "" - -# 30a639e7e9fe41548fd21fffdeb6eaae -#: ../../source/training/tot/501_adult_learning.rst:219 -msgid "" -"Adults focus on problem solving when learning; their orientation is not in " -"the learning material. When they find what they learn suitable for solving " -"problems they face, they learn well." -msgstr "" - -# 86e7d54ee0174c0db174ea34564688d8 -#: ../../source/training/tot/501_adult_learning.rst:223 -msgid "" -"Adults like an atmosphere of learning that promotes self-confidence. This is " -"related to their desire to be respected. Start with simple things to " -"increase their confidence." -msgstr "" - -# 42f9109a3692466cbf41ba21cd3a0b97 -#: ../../source/training/tot/501_adult_learning.rst:226 -msgid "" -"Adults need longer time to learn as they need to validate new information. " -"When they receive information, they will validate it based on their " -"experience." -msgstr "" - -# 3e13abf665944207aadcfc2d62a6569d -#: ../../source/training/tot/501_adult_learning.rst:229 -msgid "" -"Adults will continue learning process when their learning experience is " -"satisfactory." -msgstr "" - -# d66072689cb74a0694065d0576771713 -#: ../../source/training/tot/501_adult_learning.rst:232 -msgid "*The difference between Pedagogy and Andragogy*" -msgstr "" - -# fa69ba7a156f4aefb78c3ee9bb0ddba5 -#: ../../source/training/tot/501_adult_learning.rst:235 -msgid "Aspect" -msgstr "" - -# 90548771740140eeaf3448afe13168fa -#: ../../source/training/tot/501_adult_learning.rst:235 -msgid "Pedagogy" -msgstr "" - -# f6da6e89b98043b4ad5a805b14a258c7 -#: ../../source/training/tot/501_adult_learning.rst:235 -msgid "Andragogy" -msgstr "" - -# f5bb2c4f6d1c450488faf5029109394d -#: ../../source/training/tot/501_adult_learning.rst:237 -msgid "Trainee’s self concept" -msgstr "" - -# f11c6d1b023541beb7f3dadeec3f1fa0 -#: ../../source/training/tot/501_adult_learning.rst:237 -msgid "Dependent" -msgstr "" - -# 736d20fa5352460b851c83724b893847 -#: ../../source/training/tot/501_adult_learning.rst:237 -msgid "Ability in self-directing" -msgstr "" - -# 97e3af8f763341e99baaba035fcd2b26 -#: ../../source/training/tot/501_adult_learning.rst:240 -msgid "Function of trainee's experience" -msgstr "" - -# 4a56d09965374d8f9ee107e9bb36c6b3 -#: ../../source/training/tot/501_adult_learning.rst:240 -msgid "Little experience" -msgstr "" - -# f932d3408da04231945313d651a82952 -#: ../../source/training/tot/501_adult_learning.rst:241 -msgid "Experience as point of departure in building experience" -msgstr "" - -# 89518209517b48bf8fb665784d2860bb -#: ../../source/training/tot/501_adult_learning.rst:240 -msgid "A lot of experience" -msgstr "" - -# 9d67ba27a41d49f08481459ed2c0e7fc -#: ../../source/training/tot/501_adult_learning.rst:241 -msgid "Experience as learning source" -msgstr "" - -# f091212cbb084848a5b7559c8278efe3 -#: ../../source/training/tot/501_adult_learning.rst:245 -msgid "Learning preparedness" -msgstr "" - -# fe5b841bb32041ecb4ff4494247133f8 -#: ../../source/training/tot/501_adult_learning.rst:245 -msgid "Uniformity based on age" -msgstr "" - -# 5e4cd69fdb684ccb96313e82d1dddf41 -#: ../../source/training/tot/501_adult_learning.rst:246 -msgid "Organized in a curriculum" -msgstr "" - -# 0d72d1beca4847449cfa25d35ae74ff1 -#: ../../source/training/tot/501_adult_learning.rst:245 -msgid "Prepared to learn what is needed" -msgstr "" - -# 703bbce9114948188dc7f5f2e02a3dea -#: ../../source/training/tot/501_adult_learning.rst:247 -msgid "Based on problem solving or finding solution to daily task" -msgstr "" - -# 163d4b91a0814918b8863bce6c0d37d7 -#: ../../source/training/tot/501_adult_learning.rst:251 -msgid "Learning orientation" -msgstr "" - -# 2759a37b276e4b179ffaac1af25034cb -#: ../../source/training/tot/501_adult_learning.rst:251 -msgid "Education as a process of conveying knowledge" -msgstr "" - -# 88b55f652a8a4531a11b5b50bcb832d1 -#: ../../source/training/tot/501_adult_learning.rst:253 -msgid "The knowledge will bring benefit in the future" -msgstr "" - -# a5b21b0e3a274945996b46c510789eeb -#: ../../source/training/tot/501_adult_learning.rst:255 -msgid "Orientation to learning subjects" -msgstr "" - -# 2ef6df7472a24492bc8a7c4d765775b0 -#: ../../source/training/tot/501_adult_learning.rst:251 -msgid "Education as a process to develop selfability" -msgstr "" - -# 47bcff1c2e544d879bbaa26734804305 -#: ../../source/training/tot/501_adult_learning.rst:253 -msgid "Knowledge and skills are applied for a better life" -msgstr "" - -# 832c98bab22b40699c47e371ac0680ee -#: ../../source/training/tot/501_adult_learning.rst:256 -msgid "Orientation is focused on activities" -msgstr "" - -# 946649f36de14754a87669c7f9b6a80f -#: ../../source/training/tot/501_adult_learning.rst:261 -msgid "2. Principle of Adult Learning" -msgstr "" - -# 5558fbbdf58249e3a5a48eb9986e0c53 -#: ../../source/training/tot/501_adult_learning.rst:263 -msgid "" -"In adult learning, there are principles that differentiate it from other " -"types of education. These principles can create an effective and efficient " -"learning atmosphere. The principles can be explained as follows:" -msgstr "" - -# 31938481a3574a59bf0ea9c8bed1cdc6 -#: ../../source/training/tot/501_adult_learning.rst:268 -msgid "" -"Principle of partnership: The principle of partnership guarantees a forged " -"partnership between facilitator and participants. The participants are not " -"treated as students but as learning partners. The relationship created is " -"not one of giving orders but of assistance in that trainers will put their " -"best effort to assist training participants." -msgstr "" - -# 3dc8804067bf432c80d717fdfbd8dc8b -#: ../../source/training/tot/501_adult_learning.rst:274 -msgid "" -"Principle of real experience: This principle guarantees that adult learning " -"and education is conducted in real life situation. Adult learning and " -"education activities are not conducted in a class or simulated situation, " -"but in a real situation." -msgstr "" - -# 80ea38bcecd44f65b7afee5e19685ad8 -#: ../../source/training/tot/501_adult_learning.rst:279 -msgid "" -"Principle of togetherness: This principle requires the use of group " -"activities in adult learning and education to guarantee maximum interaction " -"between participants facilitated by the facilitator." -msgstr "" - -# 3cb8dbdd917c48c883ae65eec519701d -#: ../../source/training/tot/501_adult_learning.rst:283 -msgid "" -"Principle of participation: This principle seeks to encourage maximum " -"participants’ involvement in learning process, facilitated by the " -"participants themselves. In adult learning and education activities all " -"participants are to take active part in the whole process of learning from " -"planning, implementation and evaluation of learning activities." -msgstr "" - -# 824e734032c349d38b6724560552f782 -#: ../../source/training/tot/501_adult_learning.rst:289 -msgid "" -"Principle of self-reliance: This principle encourages participants " -"independence in seeking learning goals. Adult learning seeks to produce " -"independent human being able to play the role of subject or actor, hence the " -"need for self-reliance principle." -msgstr "" - -# 1fea9bffdd544146a1de291118ffdc00 -#: ../../source/training/tot/501_adult_learning.rst:294 -msgid "" -"Principle of sustainability: This principle guarantees continuity between " -"the material that is being learned at present, that has been learned and " -"that will be learned in the future. With this principle, the concept of life " -"long education in adult learning will materialize." -msgstr "" - -# 7fcd478524b448358d7f005ebb0bad27 -#: ../../source/training/tot/501_adult_learning.rst:300 -msgid "" -"Principle of benefit: This principle guarantees that what is learned in " -"adult education is compatible with the needs felt by participants. Adults " -"are prepared to learn when they realize there are needs to be addressed. " -"This awareness will stimulate the emergence of motivation to learn among " -"adults and a sense of preparedness will emerge as they feel they are " -"responsible for this as an adult." -msgstr "" - -# a204c91f49ce49a8ba61761198c0a43e -#: ../../source/training/tot/501_adult_learning.rst:308 -msgid "" -"Principle of preparedness: This principle guarantees participants’ mental " -"and physical preparedness to be able to take part in learning activities. " -"Adults will never be able to participate in learning process if they are not " -"yet prepared (either physically and metally) to do it." -msgstr "" - -# 4a7a6956ee2b407986adc38e0fdb3db6 -#: ../../source/training/tot/501_adult_learning.rst:313 -msgid "" -"Principle of locality: This principle guarantees the learned material is " -"locally specific. Generalisation of learning outcome in adult learning will " -"be dificult to do. The outcome in adult learning generally comprises " -"specific abilities to solve participants’ current problem in their " -"respective locality. Such skill can not be generalized as a theory or " -"principle that can be applied anywhere, anytime. The present learning " -"outcome might not be useful to solve similar problems in two or three years’ " -"time. This outcome will also not be applicable anywhere and is only suitable " -"for participants respective locality as it is processed from participants " -"experience." -msgstr "" - -# b38f4150586649f181042a6686ea9a25 -#: ../../source/training/tot/501_adult_learning.rst:326 -msgid "" -"Principle of integration: This principle guarantees integration of adult " -"learning material. Learning plan in adult education must cover materials " -"that are non-partial and integrated in nature, forming a unity." -msgstr "" - -# 498a4573f1d3469687ffcfd3ace2ed6d -#: ../../source/training/tot/501_adult_learning.rst:332 -msgid "3. Adult Learning Strategy" -msgstr "" - -# 783b6431f15c443b8c2d3706f4d9ffe2 -#: ../../source/training/tot/501_adult_learning.rst:334 -msgid "" -"Identification of learning strategies is based on the objective to achieve. " -"Based on this, there are two types of learning strategies i.e. : (a) the " -"strategy that is designed to assist people in addressing their past " -"experience in a new way, and (b) the strategy that is designed to bring " -"about new knowledge and skills (enrichment of experience)." -msgstr "" - -# 011d0a04073041989b3e06febbd02656 -#: ../../source/training/tot/501_adult_learning.rst:341 -msgid "" -"The process of addressing past experience: This strategy is employed for " -"training participants who already possess the knowledge and skills relating " -"to training material to be conveyed. The role of facilitators here is to " -"assist participants in making generalization by exploring participants " -"experience and giving feedbacks. Participants are expected to have a big " -"role in terms of expressing their experience and opinion, analyzing their " -"experience, exploring alternatives and benefits. The goals will be reached " -"when the atmosphere is free of threats and when participants feel the need " -"to find new approaches in addressing their past problems." -msgstr "" - -# 8e548ad883fb48a499db9ce06f46cef4 -#: ../../source/training/tot/501_adult_learning.rst:352 -msgid "" -"The process of enriching experience: This strategy is employed for " -"participants who have yet the knowledge and skills that are presented in the " -"training. Here, facilitators role is to provide new data and concept for the " -"participants to absorb and practice. In this case, it is necessary to have " -"clarity in terms of how to best present the training and motivate " -"participants to identify the relevance of the new material in their life." -msgstr "" - -# 456f3046afd54b05be7c398c33d57500 -#: ../../source/training/tot/501_adult_learning.rst:361 -msgid "" -"Based on the aims elaborated above, we now know that there are two types of " -"adults in adult learning i.e. adults with prior knowledge and adults without " -"prior knowledge. But it is necessary to remember that adults already possess " -"several characteristics that play a role in determining the best strategies " -"for them. In general, adult learning is expected to involve participatory " -"method i.e. active participation of training participants as well as other " -"arrangements such as training material, date and time of training, etc. " -"Principally, in participatory method facilitators don’t act as teacher and " -"lecture all the time, and involve participants in every activity. This " -"strategy can be further explained as follows:" -msgstr "" - -# 9f218933324b41cfa344267c3b4d0c3d -#: ../../source/training/tot/501_adult_learning.rst:373 -msgid "**a. Practical, problem-centered learning**" -msgstr "" - -# cc14303e5b974f1c844a19fd86c82851 -#: ../../source/training/tot/501_adult_learning.rst:375 -msgid "" -"One of the characteristics of adults is that they learn through problem " -"solving and are not lesson-oriented. They learn well when they find what " -"they learn during a training can be used to solve their problems. To this " -"end, strategies to be used are as follows: before the start of the learning " -"process, facilitators must identify trainees’ needs and problems. It is " -"better to start with identifying authentic problems of training participants " -"in their daily life. Should the facilitators feel the need to introduce new " -"theories or information, they need to ensure that these theories and " -"information are related to problems faced by trainees and real life " -"examples. In problem solving oriented training, methods that can be employed " -"are e.g. Q&A session and discussion. The latter can be divided into several " -"steps:" -msgstr "" - -# 5451a684a59049e8885c1f8c2f3af840 -#: ../../source/training/tot/501_adult_learning.rst:390 -msgid "Group members are aware of the existence of problems" -msgstr "" - -# b6929e1ff8144d87b1f9344f2a9eedef -#: ../../source/training/tot/501_adult_learning.rst:391 -msgid "Individually, members find ideas on how best to solve the problems" -msgstr "" - -# 8942b8b70be74cef905068d5a4fcd191 -#: ../../source/training/tot/501_adult_learning.rst:392 -msgid "" -"Group members search for facts or reflect on their experience to support " -"their ideas." -msgstr "" - -# 16335eb969a44f3eadb2ba581e93d82f -#: ../../source/training/tot/501_adult_learning.rst:394 -msgid "Discussion among group members on how to solve the problems" -msgstr "" - -# a8cf5aeea11a4a30b70b414bff361f41 -#: ../../source/training/tot/501_adult_learning.rst:395 -msgid "Group members conclude their discussion." -msgstr "" - -# c147ba0c46d94a14beca045bb2a1db58 -#: ../../source/training/tot/501_adult_learning.rst:397 -msgid "" -"With regards to practical learning, adults also need practical activities. " -"Material presented must be practiced to be instilled properly, the " -"appropriate methods being inter alia demonstration, simulation and " -"practicing. For example, to reach competency in how to use GPS and input " -"additional data in OSM, it would render a training meaningless when " -"participants only know and understand how to use GPS and add OSM data " -"without demonstration by facilitators, simulation by some of participants " -"and practical session involving all participants. What is necessary with " -"regards to this competency is how to turn on GPS and the initial GPS " -"setting." -msgstr "" - -# 387553c397ae44358d0fa4138cae81f7 -#: ../../source/training/tot/501_adult_learning.rst:408 -msgid "" -"**b. Adults prefer a learning process that integrates new information into** " -"**their experience**" -msgstr "" - -# f9616bcf09c44bb6b142ee94444626db -#: ../../source/training/tot/501_adult_learning.rst:411 -msgid "" -"There are two aspects of adult learning i.e. the process of addressing " -"their past experience and the process of enriching experience. Therefore, " -"learning process for adults must assist them in exploring their experience " -"in order to learn new things. A cooperative group learning can also help " -"them to share opinion with others. Furthermore, we need to help them " -"understand new information, the proper methods of which would be inter alia " -"Q&A session and discussion. For example, in presenting the lesson on “How to " -"Operate OSM”, it is better for the facilitators to not lecture on:" -msgstr "" - -# 308260923a7240bbac95835c3c555b4d -#: ../../source/training/tot/501_adult_learning.rst:421 -msgid "How to visit OpenStreetMap site," -msgstr "" - -# 6ba0118715544c38bfc37c14195718d6 -#: ../../source/training/tot/501_adult_learning.rst:422 -msgid "How to navigate maps," -msgstr "" - -# b21a4bc967374814b7041f8b6f0a363b -#: ../../source/training/tot/501_adult_learning.rst:423 -msgid "How to save Images from OSMan map," -msgstr "" - -# b57b11c128b64d418fb4f354c89b373b -#: ../../source/training/tot/501_adult_learning.rst:424 -msgid "How to create OpenStreetMap account," -msgstr "" - -# 81216860bfc54a519022913825580c89 -#: ../../source/training/tot/501_adult_learning.rst:425 -msgid "OSM Map Editing." -msgstr "" - -# 2d2f7cc8e535463982f2e40416142e07 -#: ../../source/training/tot/501_adult_learning.rst:427 -msgid "" -"Rather, the facilitators need to explore the degree of participants " -"experience or knowledge on the subject through Q&A session, after which a " -"discussion follows focusing on difficulties encountered on the subject. The " -"facilitators then can provide additional material that they feel needed by " -"the participants taking into account their prior experience and knowledge." -msgstr "" - -# 7b62428de57c480c83fd1249719dc86b -#: ../../source/training/tot/501_adult_learning.rst:434 -msgid "**c. Adults prefer a learning process that enhances their self-esteem**" -msgstr "" - -# 247ced540cc34be5ad146f1d8ee8c2a4 -#: ../../source/training/tot/501_adult_learning.rst:436 -msgid "" -"In order to make adults confident, we can start with simple things with low " -"possibility of failure. The degree of difficulty of material presented may " -"escalate as their confidence rises. For example, when conducting training on " -"how to operate JOSM, in the event some participants are not yet familiar " -"with internet, facilitators can start with light skills such as how to " -"download JOSM. The method employed for this task may be in dividing " -"participants in groups of two. Participants who are already capable of doing " -"the task show their partner how to do it, after which the faciliators may " -"proceed to individual task. This method is meant to not encumber " -"participants at the beginning of training. Other aspects on how to operate " -"JOSM may follow the same template. The point is that participants must not " -"be humiliated for their lack of internet skills." -msgstr "" - -# 5109bef42b534ddeb3ff5251b3ff067f -#: ../../source/training/tot/501_adult_learning.rst:452 -msgid "**d. Adults prefer individual attention when learning**" -msgstr "" - -# 4778f27dd7704c198484116045115302 -#: ../../source/training/tot/501_adult_learning.rst:454 -msgid "" -"Know their needs, fulfill their individual needs such as break, food, drink " -"etc. Engage them in discussion about planning targets, and assist them in " -"achieving them. Never hesitate to ask for their opinion in writing, during " -"sessions or informally outside training sessions. They appreciate having " -"their personal interests listened to." -msgstr "" - -# f255ad1100074038a1ca4b8999f24e4e -#: ../../source/training/tot/501_adult_learning.rst:461 -msgid "" -"The success of adult learning strategies also hinges on an agreeable " -"learning atmosphere conducive to learning. A conducive atmosphere to " -"learning according to Suprijanto (2007) constitutes the following:" -msgstr "" - -# 3f36d1ecbd6544a18ac54de1d8963c5e -#: ../../source/training/tot/501_adult_learning.rst:466 -msgid "" -"An atmosphere that encourages participants to be active and develop their " -"skills" -msgstr "" - -# cc303e0e219048a4a71efa595cbf9998 -#: ../../source/training/tot/501_adult_learning.rst:468 -msgid "An atmosphere of mutual respect and appreciation" -msgstr "" - -# fa6ee15db69f40aca2948a16c1e65943 -#: ../../source/training/tot/501_adult_learning.rst:469 -msgid "An atmosphere of mutual trust and openness" -msgstr "" - -# 44e25b1ce5f74f028d70cd0f13f4be07 -#: ../../source/training/tot/501_adult_learning.rst:470 -msgid "An atmosphere of self-discovery" -msgstr "" - -# 73731604403548b7ae9331f626746b20 -#: ../../source/training/tot/501_adult_learning.rst:471 -msgid "An atmosphere that is non-threatening" -msgstr "" - -# c4ebbfcc8d4d4dc7a95135af88f50a9c -#: ../../source/training/tot/501_adult_learning.rst:472 -msgid "An atmosphere of acknowledging self-distinctness" -msgstr "" - -# acd952983d19476095ecb39801147eea -#: ../../source/training/tot/501_adult_learning.rst:473 -msgid "An atmosphere that allows room for difference, mistakes and doubts" -msgstr "" - -# e0f41f651b4443c4bf1d31c4467b7479 -#: ../../source/training/tot/501_adult_learning.rst:474 -msgid "" -"An atmosphere that enables participants to learn according to their " -"interest, attention, and resources in their locality" -msgstr "" - -# 56da711516d9444b8215fc91bf2c1fda -#: ../../source/training/tot/501_adult_learning.rst:476 -msgid "" -"An atmosphere that enables participants to acknowledge and explore " -"weaknesses and strengths of themselves as individuals, their groups and " -"society" -msgstr "" - -# 1fb229556d95427eb4d20527d3a609f5 -#: ../../source/training/tot/501_adult_learning.rst:478 -msgid "" -"An atmosphere that enables participants to grow with values and norms in " -"their community" -msgstr "" - -# d58761eaa55b4f3d93c243434a78c10c -#: ../../source/training/tot/501_adult_learning.rst:483 -msgid "4. Adult Learning Evaluation" -msgstr "" - -# 18b1821f782e436ea6673dafa898073e -#: ../../source/training/tot/501_adult_learning.rst:485 -msgid "" -"Evaluation is an activity to determine how far a learning program is " -"implemented according to expectations. Therefore, evaluation is focused on " -"activities to determine how far a program is successful (micro: facilitator, " -"macro: institution). According to Fajar, A., (2002), evaluation can be " -"defined as an effort to gain various kinds of information periodically, " -"continuously and comprehensively about learning process and outcome, as well " -"as the growth and development of participants’ attitudes and behaviors. The " -"above definition shows that evaluation is also carried out during training " -"program and not only at the end of training. Evaluation constitutes a " -"process to paint a picture of changes among participants after training. The " -"word process means that evaluation is a continuous endeavor, using certain " -"methods to reach expected outcome. This process also sees that evaluation is " -"conducted by gathering facts in a systematic way. This definition shows that " -"an evaluation requires data gathering or measurement." -msgstr "" - -# 1d5657fac6194517bf6f542de34aefc2 -#: ../../source/training/tot/501_adult_learning.rst:505 -msgid "" -"The techniques, methods or tools of evaluation comprise all methods or " -"procedures taken to gather information or data needed as material to " -"evaluate. The techniques used in evaluation play an important role in the " -"outcome. Basically, evaluation techniques or methods can be divided into two " -"types i.e . test technique or method and non-test technique or method. In " -"cognitive aspects, a test in the form of questions (both in writing or " -"verbally) can be used. It is expected that this aspect can enhance the " -"affective aspect of training participants. Affective aspect can be " -"identified through observation and questionnaire, while psycho-motor aspect " -"can be evaluated through activities conducted and results achieved." -msgstr "" - -# d6bc32da52ff41ee8c49063e17925d90 -#: ../../source/training/tot/501_adult_learning.rst:519 -msgid "" -"The theory of evaluation above is actually similar in both pedagogy and " -"andragogy, with the difference being only in ways of evaluating. In adult " -"learning, the evaluation method must reflect freedom in that the evaluation " -"must come from the person learning, not forced from outside. This implies " -"that adults must be able to evaluate themselves. Therefore, the term ‘test’ " -"for adults should be referred to more appropriately as self-examination. An " -"example of evaluation method suitable for adults is as follows:" -msgstr "" - -# 13cbfb6cf663488eaff00e754e6b9ef2 -#: ../../source/training/tot/501_adult_learning.rst:528 -msgid "" -"Feedback: each participant is given an opportunity to express their thoughts " -"and feeling regarding the lesson presented." -msgstr "" - -# 1701383c7305432283ba23fff3cee079 -#: ../../source/training/tot/501_adult_learning.rst:531 -msgid "" -"Reflection: participants are given the opportunity to reflect. Reflection is " -"subjective and personal so facilitators need not to respond." -msgstr "" - -# 11bdec6899de401e92addc4dbd2647a2 -#: ../../source/training/tot/501_adult_learning.rst:534 -msgid "" -"Group discussion: participants are given the opportunity to discuss their " -"respective evaluation result and put it in a report." -msgstr "" - -# eaefb1eac8964e4db14e24fd02ca617f -#: ../../source/training/tot/501_adult_learning.rst:537 -msgid "" -"Questionnaire: a form with list of questions prepared for participants to " -"answer." -msgstr "" - -# 0bdc7f19f0dc49a0bbd4c2628c01a14c -#: ../../source/training/tot/501_adult_learning.rst:539 -msgid "" -"Management team: a team is formed consisting a number of participants as " -"moderator, note taker and evaluator. This team is in charge of writing a " -"brief and concise report and writing evaluation for the day’s activities." -msgstr "" - -# c1ed300337914551b0c0924144112d4f -#: ../../source/training/tot/501_adult_learning.rst:545 -msgid "" -"The above methods can be completed with Performance Evaluation, an " -"assessment which constitutes a non-test evaluation conducted by observing " -"participants’ activities. This evaluation is suitable to evaluate how far " -"participants achieve certain competencies in carrying out certain tasks: " -"practice and simulation. In performance evaluation, the following points " -"need consideration:" -msgstr "" - -# 547ad7074b604e6290cf3dacf781151f -#: ../../source/training/tot/501_adult_learning.rst:552 -msgid "" -"Performance steps expected from participants to be carried out to show their " -"level of competency." -msgstr "" - -# f55796d643d54f6ca62d902a5992bd29 -#: ../../source/training/tot/501_adult_learning.rst:554 -msgid "" -"The completeness and precision of aspects to be evaluated in the performance." -msgstr "" - -# 42a30f061be340b1a0d079441e77c64d -#: ../../source/training/tot/501_adult_learning.rst:555 -msgid "Specific abilities needed to carry out tasks." -msgstr "" - -# bd5a9f3ef78546f7ba2da00ea9ffd665 -#: ../../source/training/tot/501_adult_learning.rst:556 -msgid "" -"When possible, skills to be evaluated are not too many to provide enough " -"time for a thorough observation." -msgstr "" - -# c22ac6947de14914ba478ef4226ff008 -#: ../../source/training/tot/501_adult_learning.rst:558 -msgid "" -"Skills to be evaluated is listed based on the first to the last aspects " -"observed." -msgstr "" - -# 36d042a45c6a40389b648abe1a3c5598 -#: ../../source/training/tot/501_adult_learning.rst:561 -msgid "*Performance Evaluation Techniques*" -msgstr "" - -# e1c4a762aa004100a724727cde98b4c4 -#: ../../source/training/tot/501_adult_learning.rst:563 -msgid "" -"Performance observation needs to be carried out in various contexts to " -"determine the level of competence of certain skills. The following tools or " -"instruments may be used to observe participants performance:" -msgstr "" - -# 8a3332a19927440494d484254646bc88 -#: ../../source/training/tot/501_adult_learning.rst:568 -msgid "Check list" -msgstr "" - -# 1d07769bdb1e4835afec50aedde40b7d -#: ../../source/training/tot/501_adult_learning.rst:570 -msgid "" -"Performance evaluation can be conducted using a check list (yes-no " -"questions). With this check list, participants will get points when certain " -"criteria of mastering certain competency are observed by evaluators. In the " -"event no competency is observed, participants will not get any point. The " -"weakness of this method is that evaluators only have two absolute options, " -"right or wrong; observed and not observed. There is no middle ground. " -"Nevertheless, check list is more practical to be used to observe subjects in " -"great number. The following is an example of a check list." -msgstr "" - -# 9c3af009593d4dee9059254d616c3cf0 -#: ../../source/training/tot/501_adult_learning.rst:581 -msgid "**Example of checklist**" -msgstr "" - -# dc484e71ab2e433c9f5e7cc7ce7302df -# f5d184a1b1314ccab0a9d29409cb7e38 -#: ../../source/training/tot/501_adult_learning.rst:584 -#: ../../source/training/tot/501_adult_learning.rst:611 -msgid "No." -msgstr "" - -# b9b0cf645f5e436fb898a2a02cefc524 -# 6da7e1bf32d44cb186ae9dc01fcb963a -#: ../../source/training/tot/501_adult_learning.rst:584 -#: ../../source/training/tot/501_adult_learning.rst:611 -msgid "Scoring Aspect" -msgstr "" - -# c3b171dad25d4aaba866a716fc21fd8f -#: ../../source/training/tot/501_adult_learning.rst:584 -msgid "Good" -msgstr "" - -# 95686486246c43c0912664a5914735ce -#: ../../source/training/tot/501_adult_learning.rst:584 -msgid "Not Good" -msgstr "" - -# 3e0fbf21afaf4eb4ad5a428845d4d98e -# b137edefbf2a4f1d84ec92eed2e9bf87 -#: ../../source/training/tot/501_adult_learning.rst:592 -#: ../../source/training/tot/501_adult_learning.rst:621 -msgid "Total Score" -msgstr "" - -# b3d9ca481b1e4173a8bb64a1eef4de98 -# 696736fe0d724ea989e353169d37a248 -#: ../../source/training/tot/501_adult_learning.rst:594 -#: ../../source/training/tot/501_adult_learning.rst:623 -msgid "Maximum Score" -msgstr "" - -# e3721b1e85c740bd917d398324236b81 -#: ../../source/training/tot/501_adult_learning.rst:598 -msgid "Rating scale" -msgstr "" - -# aed18b8c707740d1a73075654b7e6417 -#: ../../source/training/tot/501_adult_learning.rst:600 -msgid "" -"Performance evaluation using rating scale enables evaluators to give median " -"scores for mastery of certain competencies, as scores are given in a " -"continuum where there are more than two options of scoring category. " -"Evaluation scale is spread from not perfect to very perfect. For example, 1 " -"= not competent, 2 = sufficiently competent, 3 = competent and 4 = very " -"competent. The following is an example of rating scale." -msgstr "" - -# c90a89342df94d91a4a949386303aab0 -#: ../../source/training/tot/501_adult_learning.rst:608 -msgid "**Example of rating scale**" -msgstr "" - -# 832b974755b344cdbcf171f6dcfaf1b4 -#: ../../source/training/tot/501_adult_learning.rst:611 -msgid "Score" -msgstr "" - -# acb46f2ca0db4380ad0e26ea5a75fea2 -#: ../../source/training/tot/501_adult_learning.rst:613 -msgid "1" -msgstr "" - -# 54a77db2ba044f72aaf286cd33be81fe -#: ../../source/training/tot/501_adult_learning.rst:613 -msgid "2" -msgstr "" - -# a014713484d843c0880d9a732959507a -#: ../../source/training/tot/501_adult_learning.rst:613 -msgid "3" -msgstr "" - -# f4b1732096404c96aa2a983b2b9f1e8e -#: ../../source/training/tot/501_adult_learning.rst:613 -msgid "4" -msgstr "" - -# 1e54ac8ddcd5439785c55d04a7b40f91 -#: ../../source/training/tot/501_adult_learning.rst:623 -msgid "9" -msgstr "" - -# 837ee98703a64a3e9a0be3a21cd89672 -#: ../../source/training/tot/501_adult_learning.rst:626 -msgid "Remarks:" -msgstr "" - -# 2e59279306f049f19ae4b38643f49665 -#: ../../source/training/tot/501_adult_learning.rst:628 -msgid "" -"1 = Not competent 2 = Sufficiently Competent 3 = Competent 4 = Very competent" -msgstr "" - -# 3b0e7b9e18894e4e8c134cb30d966a93 -#: ../../source/training/tot/501_adult_learning.rst:630 -msgid "" -"In the event a participant gains a score of 16, s/he can be qualified as " -"\"very competent\". Other qualification is also determined according to " -"scores obtained. In school settings, this performance evaluation can be " -"carried out by teachers. For adults, it is the responsibility of " -"facilitators together with training participants. The forms that have been " -"filled out can serve as a matter of discussion or records for management " -"team." -msgstr "" - -# 2bc61838323f49e2ab8e4649e68bb12e -#: ../../source/training/tot/501_adult_learning.rst:639 -msgid "**Bibliography**" -msgstr "" - -# ef4ffb63db9a420dad5eeaa1d750c52b -#: ../../source/training/tot/501_adult_learning.rst:642 -msgid "Budimansyah, D. 2002. Model Pembelajaran dan Penilaian Portofolio." -msgstr "" - -# 86ec81a6fb924716adc90a193840b04a -#: ../../source/training/tot/501_adult_learning.rst:642 -msgid "Bandung: Genesindo." -msgstr "" - -# dd494acce5da42bca7ce70da531c030d -#: ../../source/training/tot/501_adult_learning.rst:645 -msgid "" -"Degeng, N.S. 2003. Evaluasi Pembelajaran. Makalah disampaikan dalam acara TOT" -msgstr "" - -# d32f1e59d54d4bd18908bd7cd5d8416a -#: ../../source/training/tot/501_adult_learning.rst:645 -msgid "AA dan Pekerti dosen Kopertis Wilayah VII tanggal 15-21 Juni 2003." -msgstr "" - -# 3f5b363d52354d45b76d6f469cef18ea -#: ../../source/training/tot/501_adult_learning.rst:647 -msgid "Lanandi, A.G. 1982. Pendidikan Orang Dewasa. Jakarta: PT Gramedia." -msgstr "" - -# cb5604b70d904c488f20f7c28773196c -#: ../../source/training/tot/501_adult_learning.rst:650 -msgid "Mc. Tighe, JU and Ferrara (1995). Assessing learning in the classroom." -msgstr "" - -# 3aec9fabde26433c9573b596ec21c3fa -#: ../../source/training/tot/501_adult_learning.rst:650 -msgid "Website: ttp://www.msd. net/Assessment/authenticassessment. html." -msgstr "" - -# 490b81f814fd4c6d8f783b2e5c0f5ca1 -#: ../../source/training/tot/501_adult_learning.rst:653 -msgid "" -"Phopham, W. James, 1995. Classroom Assessment: What Teachers Need to Know," -msgstr "" - -# 9a2b821857804ddc875f7c12e151f487 -#: ../../source/training/tot/501_adult_learning.rst:653 -msgid "United States of America, Allyn & Bacon – Simon & Scuster Company." -msgstr "" - -# 3fa9a3db4a1e4d55ac96f586ee8f5084 -#: ../../source/training/tot/501_adult_learning.rst:656 -msgid "Supriyanto. 2007. Pendidikan Orang Dewasa (Dari Teori Hingga Aplikasi)," -msgstr "" - -# 83fa94f117324c9d85ce3c070bc4567c -#: ../../source/training/tot/501_adult_learning.rst:656 -msgid "Banjarbaru: Bumi Aksara" -msgstr "" - -# b50da1a556984d6f88c0d4796a423ac2 -#: ../../source/training/tot/501_adult_learning.rst:658 -msgid "Zainudin. 1986. Andragogi. Bandung: Penerbit Angkasa" -msgstr "" - -# ad5bc2a6d9f24e08972aec2844ecdfc3 -#: ../../source/training/tot/501_adult_learning.rst:660 -msgid "" -"Padmowihardjo, S. (2006). Pendidikan Orang Dewasa. Jakarta: Universitas " -"Terbuka." -msgstr "" - -# f3efde3c3d91434eb1e5dac36c23617b -#: ../../source/training/tot/501_adult_learning.rst:662 -msgid "" -"http://ippamaradhi.multiply.com/journal/item/102/10-Prinsip-Pendidikan-Orang-" -"Dewasa" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/training/tot/502_communication_skills.po b/docs/i18n/fr/LC_MESSAGES/training/tot/502_communication_skills.po deleted file mode 100644 index c003cdd3..00000000 --- a/docs/i18n/fr/LC_MESSAGES/training/tot/502_communication_skills.po +++ /dev/null @@ -1,2495 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-02-26 15:22+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 45cd697930ed44478d1fae3996d290f9 -#: ../../source/training/tot/502_communication_skills.rst:2 -msgid "Module 2: Communication Skills" -msgstr "" - -# a941d990cba14803b15f46774cef5abd -#: ../../source/training/tot/502_communication_skills.rst:5 -msgid "Overview" -msgstr "Présentation" - -# 7f3375dc88354e2288951121ea645247 -#: ../../source/training/tot/502_communication_skills.rst:8 -msgid "Basic Competency" -msgstr "" - -# f41be223b730495ba1f65d27fd47db8f -#: ../../source/training/tot/502_communication_skills.rst:9 -msgid "Demonstrate communication skills in training" -msgstr "" - -# 3e37905d166d4ca6ae4aa8f0f82b54cb -#: ../../source/training/tot/502_communication_skills.rst:12 -msgid "Indicators" -msgstr "" - -# e4056b44ddb846fb9036db0e5102ac77 -#: ../../source/training/tot/502_communication_skills.rst:13 -msgid "Describe the principles of effective communication" -msgstr "" - -# 810bd614b8414985845e5fafd90bf417 -#: ../../source/training/tot/502_communication_skills.rst:14 -msgid "Describe the communication models in training" -msgstr "" - -# b2ea51c505b744f98af275d66b4e348e -#: ../../source/training/tot/502_communication_skills.rst:15 -msgid "Demonstrate nine basic skills components in teaching/ training" -msgstr "" - -# 4943923109184e418f0327907f7bd58e -#: ../../source/training/tot/502_communication_skills.rst:18 -msgid "Materials" -msgstr "" - -# eed478d977fa49d3b86660cad8fcbe4e -#: ../../source/training/tot/502_communication_skills.rst:19 -msgid "**Communication Skills**" -msgstr "" - -# daac9ef68ea549da94f482c73879e19b -#: ../../source/training/tot/502_communication_skills.rst:21 -msgid "The principles of effective communication" -msgstr "" - -# fb50d2ac82f04cc19658ee3815cfeeba -#: ../../source/training/tot/502_communication_skills.rst:22 -msgid "Communication models in training" -msgstr "" - -# b1bd41cca59e49b196b6a4e5885e6a57 -#: ../../source/training/tot/502_communication_skills.rst:23 -msgid "Components of teaching / training basic skills" -msgstr "" - -# 4f83ec6074e74c0dbee617fe7f1d8048 -#: ../../source/training/tot/502_communication_skills.rst:26 -msgid "Activities" -msgstr "" - -# 0ab09aebb9bf4951be9e50e30f3c6bbf -#: ../../source/training/tot/502_communication_skills.rst:28 -msgid "**TIME**" -msgstr "" - -# 09d79e42010b4d94bc609c7ab7f7d955 -#: ../../source/training/tot/502_communication_skills.rst:28 -msgid "**ACTIVITY**" -msgstr "" - -# cfa745a616e64d50a48c52ac5835d58c -#: ../../source/training/tot/502_communication_skills.rst:28 -msgid "**SUMMARY**" -msgstr "" - -# 51ddf12c7c6742c386cc8c85e4bbe632 -#: ../../source/training/tot/502_communication_skills.rst:28 -msgid "**MATERIAL**" -msgstr "" - -# f22b348d581b427eabda3b09b948c1bc -# 80358e4da56e4e3d964f5a0ffc1a9e0f -#: ../../source/training/tot/502_communication_skills.rst:30 -#: ../../source/training/tot/502_communication_skills.rst:71 -msgid "5 mins" -msgstr "" - -# 70dd96f4ee874f06bf9e2bb9fde688e6 -#: ../../source/training/tot/502_communication_skills.rst:30 -msgid "" -"The facilitator welcomes the participants and opens the training with prayer" -msgstr "" - -# 4a1c92ae9a4f43d5a729b3793f58c3b6 -#: ../../source/training/tot/502_communication_skills.rst:32 -msgid "Informs the rules of training" -msgstr "" - -# 9650345c1a0d43a58a77ece91e7b8b58 -#: ../../source/training/tot/502_communication_skills.rst:33 -msgid "The facilitator explains the topic and the purpose of the first session" -msgstr "" - -# 489b3b5b7c384050a3646b010e9909b4 -#: ../../source/training/tot/502_communication_skills.rst:30 -msgid "Opening Information" -msgstr "" - -# 4cb092bbf2dc4443a148a02ecbb50ade -# c74f3598cd234527b5fb57fdd723d7af -# 38cd350841a94bceb9dd2a9dcabf6d22 -# 90c3fb0e949744bfaed500d1ed9f92b2 -#: ../../source/training/tot/502_communication_skills.rst:30 -#: ../../source/training/tot/502_communication_skills.rst:36 -#: ../../source/training/tot/502_communication_skills.rst:47 -#: ../../source/training/tot/502_communication_skills.rst:59 -msgid "PPT" -msgstr "" - -# 97478070ae12418c88c3ea52c575fe0d -#: ../../source/training/tot/502_communication_skills.rst:36 -msgid "20 mins" -msgstr "" - -# c7612db2512d46439d4e4d9229920d2a -#: ../../source/training/tot/502_communication_skills.rst:36 -msgid "" -"The facilitator asks two participants to come forward to communicate without " -"being given any topic" -msgstr "" - -# f535976dcb324241a61abba53128344a -#: ../../source/training/tot/502_communication_skills.rst:38 -msgid "" -"Afterwards, ask 2 other participants to communicate with a topic and give " -"them time to have a small talk first" -msgstr "" - -# 09136a2ad14a4099af41da8d54fd6f6f -#: ../../source/training/tot/502_communication_skills.rst:41 -msgid "" -"Participants are asked to analyze the difference of the two communications " -"demonstrated, to look for the the answer of what makes effective " -"communication" -msgstr "" - -# 2e79578110c247c1952bf8578ca0c68e -#: ../../source/training/tot/502_communication_skills.rst:44 -msgid "Trainer reinforces with the principles of effective communication" -msgstr "" - -# 8f1fcda506814bb1b52f9016e1933a16 -#: ../../source/training/tot/502_communication_skills.rst:36 -msgid "Demonstration Question & Answers" -msgstr "" - -# f4af4338073f44d3b503f77261e3f91a -# 2ecf8cdfcc594de2860c79bbca945fda -#: ../../source/training/tot/502_communication_skills.rst:47 -#: ../../source/training/tot/502_communication_skills.rst:59 -msgid "30 mins" -msgstr "" - -# f3d80c9de92f4fee8596dc38c19db8d6 -#: ../../source/training/tot/502_communication_skills.rst:47 -msgid "" -"Facilitator raises an issue of communication model in training to the " -"participants" -msgstr "" - -# 4155bfce8a0a4b2cbda3b50e845dfce6 -#: ../../source/training/tot/502_communication_skills.rst:49 -msgid "Give participants 2-5 minutes the chance to **think** independently" -msgstr "" - -# 4b53732e46d04a848ff93a0082934276 -#: ../../source/training/tot/502_communication_skills.rst:51 -msgid "" -"When finished, ask them to discuss the same issue with the person next to " -"them for 3-5 minutes (**pair**)" -msgstr "" - -# 837df37c3c6f424eabb0cc83222bdae0 -#: ../../source/training/tot/502_communication_skills.rst:54 -msgid "" -"Finally, select a pair to express their opinions in front of the class " -"(**share**)" -msgstr "" - -# 9e3273715f704098a3e88f9ab00b2d55 -#: ../../source/training/tot/502_communication_skills.rst:56 -msgid "Facilitator reinforces with communication models in training" -msgstr "" - -# ff59aa58c80a481b9116b8c7564a9ca9 -#: ../../source/training/tot/502_communication_skills.rst:47 -msgid "Think, pair and share" -msgstr "" - -# 714c0fb34cd747cc88d8013743813261 -#: ../../source/training/tot/502_communication_skills.rst:59 -msgid "Trainer delivers the materials of 9 basic skills in teaching" -msgstr "" - -# 9155c50f1c964c1497257b86950b5fe4 -#: ../../source/training/tot/502_communication_skills.rst:61 -msgid "" -"Participants are asked to create training materials as a group to practice " -"the 9 basic skills in teaching" -msgstr "" - -# 39ade21c2ec44232a72769dd7daf2a3b -#: ../../source/training/tot/502_communication_skills.rst:64 -msgid "2 groups are selected to simulate the basic skills in teaching" -msgstr "" - -# 7e2c933baf494b738cff6ce416779825 -#: ../../source/training/tot/502_communication_skills.rst:66 -msgid "Other participants will act as observers" -msgstr "" - -# 63fe81f906024e93a93580ce876d90c2 -#: ../../source/training/tot/502_communication_skills.rst:67 -msgid "Discuss the result of the observations" -msgstr "" - -# c74db8bbd4074f77b7f16b8388905d46 -#: ../../source/training/tot/502_communication_skills.rst:68 -msgid "Facilitator reinforces with the 9 basic skill in teaching" -msgstr "" - -# 113c2804a8994f5aadefa8da23d44c1a -#: ../../source/training/tot/502_communication_skills.rst:59 -msgid "Simulation" -msgstr "" - -# a1ca012445e943518d38f5603ac52528 -#: ../../source/training/tot/502_communication_skills.rst:71 -msgid "" -"The facilitator asks one of the participants to reflect the implementation " -"of the first session" -msgstr "" - -# 31512f6783fb436186c36fbe8d4e93f3 -#: ../../source/training/tot/502_communication_skills.rst:71 -msgid "First session reflection and closing" -msgstr "" - -# 00fbd192b0d3419bb88469b14dc38618 -#: ../../source/training/tot/502_communication_skills.rst:76 -msgid "Reading Material" -msgstr "" - -# 4179556cee7f4277ab1539a3bc21bcb3 -#: ../../source/training/tot/502_communication_skills.rst:78 -msgid "Foreword" -msgstr "" - -# f4473baff9c3441bab1a9f0b4daa0a5e -#: ../../source/training/tot/502_communication_skills.rst:79 -msgid "" -"Communication is the main skill for someone to become a trainer. There are " -"several things that need to be understood including the meaning and purpose " -"of communication and Principles of Proper or Effective Communication. So is " -"the case for the trainer of Contingency Plan Development Scenarios using " -"OpenStreetMap (OSM) and QGIS / InaSAFE." -msgstr "" - -# d3fbf093125147a498aa416f2d1cd36a -#: ../../source/training/tot/502_communication_skills.rst:85 -msgid "" -"Communication in everyday life plays a very important part, this is because " -"communication has the function to connect a person’s wishes to others. " -"Specifically, communication runs four functions, i.e. the function of " -"control, motivation, emotional expression and information." -msgstr "" - -# 968f2fecb25c4736a8473a289e275efd -#: ../../source/training/tot/502_communication_skills.rst:90 -msgid "" -"Communication is generally defined as the process of creating the meaning of " -"ideas or ideas presented. The trainer’s interests in training will naturally " -"require effective communication, used as a mean to convey ideas and motivate " -"someone to do something in accordance with the purpose of the training. The " -"ideas will be presented in this training are all about disaster, in " -"particular the Contingency Plan Development Scenarios using OpenStreetMap " -"(OSM) and QGIS / InaSAFE. Related to this, the trainer has to have the basic " -"skills in teaching or training because training is basically teaching the " -"participants to be able to do something." -msgstr "" - -# 8951f647d110490487fc4e83c65dc177 -#: ../../source/training/tot/502_communication_skills.rst:101 -msgid "1. The principles of effective communication" -msgstr "" - -# c4fcd395ab914c8c944af9553243389c -#: ../../source/training/tot/502_communication_skills.rst:102 -msgid "" -"Communication is generally defined as the process of creating the meaning of " -"ideas or ideas presented. In this case communication requires at least 4 " -"components or elements, i.e. (1) The sender or messenger/ communicator, (2) " -"the message, (3) the recipient of the message/ communicant, (4) Media/ " -"channel. In effective communication process, communicator and communicant " -"not only performed linear communication, but also expected to performed " -"circular communication." -msgstr "" - -# dee3cb0048ac44eb837c1e746d852776 -#: ../../source/training/tot/502_communication_skills.rst:110 -msgid "" -"Linear communication model is a process that consists of two straight lines, " -"where the communication process starts from the communicator and ends at the " -"communicant. The circular model of communication, on the other hand, is a " -"communication process that not only starts from the communicator and ends at " -"the communicant, but also pays attention to the feedback from the " -"communicant, making the model a full circle process. This means that the " -"trainer can be the source of information at one time and the recipient at " -"another time, vice versa. Participants can be the recipient of information " -"but also the source of information. So communication is a simultaneous " -"notice or exchange." -msgstr "" - -# ff700ce28289468c8e79f9693e0523e8 -#: ../../source/training/tot/502_communication_skills.rst:120 -msgid "" -"The communication process indicates that the trainee can act both as the " -"recipient of information/ message and the source of information/ message. " -"But the trainer as the actor in the process of communication still has to " -"control the training process. Therefore the trainer remains as the " -"communicator, as communicator plays a very important part especially in " -"controlling the course of communication, so that the message is well " -"received by the recipient (communicant) or the participants. This is in " -"accordance with the function of communication." -msgstr "" - -# c1af829c7f254d9496b9b7dd86362e9a -#: ../../source/training/tot/502_communication_skills.rst:129 -msgid "" -"The function of communication according to Gordon I Zinmmerman in Thomas M. " -"Scheidel (1976) is a function of the content, which involves the exchange of " -"information we need to complete our task, and the function of relationship, " -"which involves the exchange of information about how our relationship is " -"with others. While the function of communication according to Thomas M. " -"Scheidel (1976) is: \"We communicate primarily to represent and support self-" -"identity, to establish social contact, to influence others to feel, think " -"and act as we want." -msgstr "" - -# 286f2ca409a74599be619f2170b58650 -#: ../../source/training/tot/502_communication_skills.rst:138 -msgid "" -"The two opinions above indicate that the purpose of communication is for the " -"recipient to understand and comprehend the message conveyed by the " -"messenger. Trainers are expected to explain the wish or the idea according " -"to the purpose of the training to the participants with a simple but precise " -"or accurate way. Here communication process is expected to pay attention to " -"the feedback from the participants." -msgstr "" - -# 5a1ddc873d8d474581207051f24b8bf0 -#: ../../source/training/tot/502_communication_skills.rst:145 -msgid "" -"Communication is the message conveyed to the communicant (recipient) by the " -"communicator (source) through certain channels either directly/ indirectly " -"for the purpose of giving impact/ effect to the communicant as desired by " -"the communicator. It goes through 5 stages, i.e. (1) Interpretation, (2) " -"Encryption, (3) Delivery, (4) Acceptance, and (5) Feedback. To achieve the " -"objective of communication, the principles of effective communication are " -"also required. To have a smooth communication, it is necessary to use the " -"principle of effective communication. Principles include Respect, Empathy, " -"Audible, Clarity, and Humble." -msgstr "" - -# 4d4b8b084e57466884ac82c0175dcac9 -#: ../../source/training/tot/502_communication_skills.rst:155 -msgid "**Respect**." -msgstr "" - -# 4d98af39fba9466bb5eff213242aa4df -#: ../../source/training/tot/502_communication_skills.rst:157 -msgid "" -"Respect is the positive feeling or respect for the listener. Everyone wants " -"to be appreciated and respected and it has become the need of each " -"individual. For that reason, the trainer is expected to respect the other " -"person, or in this case the trainees." -msgstr "" - -# baee2f16e08746b7abcd6048b9afe26a -#: ../../source/training/tot/502_communication_skills.rst:162 -msgid "**Empathy**." -msgstr "" - -# c932b9cf22954127b52b73bbd420c66f -#: ../../source/training/tot/502_communication_skills.rst:164 -msgid "" -"Empathy is the ability to put yourself in situations or conditions faced by " -"others. Communication will be well established in accordance with good " -"psychological condition of our counterpart. To empathize means that the " -"trainer has to put himself as a good listener, even before anyone else " -"listens to him. And he must be able to feel what is perceived by the " -"trainees." -msgstr "" - -# cddc5f17d8364f4999c5192971967ea7 -#: ../../source/training/tot/502_communication_skills.rst:171 -msgid "**Audible**." -msgstr "" - -# 1371cf0e0a294183b12935c926813ff7 -#: ../../source/training/tot/502_communication_skills.rst:173 -msgid "" -"Audible implies that the message must be able to be heard and understood. In " -"this matter what has to be done by the trainer are" -msgstr "" - -# 338df5e3cf6d4546b455eb32dfb99554 -#: ../../source/training/tot/502_communication_skills.rst:175 -msgid "" -"The message must be easily understood, using proper and correct grammar. " -"Avoid languages unfamiliar to others." -msgstr "" - -# 60a9ed9eadb04308b3d308bec0890ff2 -#: ../../source/training/tot/502_communication_skills.rst:177 -msgid "" -"Convey the important part of the message by simplifying the message, " -"straight to the point because most people don’t like listening to long-" -"winded things." -msgstr "" - -# 230d4e7bc3114a30935279aa53f3e273 -#: ../../source/training/tot/502_communication_skills.rst:180 -msgid "" -"Use body language. Facial expressions, eye contact, hand gestures and body " -"positions can be easily read by the interlocutor." -msgstr "" - -# 96053ca984a44f628213b66389e6528e -#: ../../source/training/tot/502_communication_skills.rst:182 -msgid "" -"Use illustrations or examples. Analogy really helps in conveying the " -"message. You could use real life examples and illustrations." -msgstr "" - -# 7fcb879f22344fe99136c21b2353956c -#: ../../source/training/tot/502_communication_skills.rst:185 -msgid "**Clarity**." -msgstr "" - -# 2ab5c6fac8234000ba782384f5d8855a -#: ../../source/training/tot/502_communication_skills.rst:187 -msgid "" -"Clarity is the clarity of the messages we convey. On this principle the " -"trainer has set clear objectives before the training and uses a good tone of " -"voice." -msgstr "" - -# b09d45b2866d40c28057dc84540e2436 -#: ../../source/training/tot/502_communication_skills.rst:191 -msgid "**Humble**." -msgstr "" - -# ac91203c535d466a933860484901d091 -#: ../../source/training/tot/502_communication_skills.rst:193 -msgid "" -"Humility gives positive prestige for the communicator. In this case, humble " -"is done by giving participants a chance to speak first and the trainer being " -"a good listener. This attitude builds respect and eventually develops " -"respect for the participants." -msgstr "" - -# 1fb9211d8e3f4c84b7891a7a0ba09a18 -#: ../../source/training/tot/502_communication_skills.rst:200 -msgid "2. Communication models in training" -msgstr "" - -# effc742c553941d7a391216b6a570ce2 -#: ../../source/training/tot/502_communication_skills.rst:201 -msgid "" -"Communication in training is a process of delivering communication " -"conditioned for training purposes. The training process is essentially a " -"communication process delivering messages containing training materials. In " -"this regard the training is expected to use a circular model of " -"communication, which is a process that not only starts from the communicator " -"and ends at communicant, but also pays attention to the feedbacks from the " -"communicant, to make the communication effective." -msgstr "" - -# 3edb06acad364f3d834be0249e1cc75c -#: ../../source/training/tot/502_communication_skills.rst:209 -msgid "" -"Effective communication in training is expected to use verbal and non-verbal " -"communication. Verbal communication is communication using verbal symbols/ " -"words verbally. Non-verbal communication is the kind of communication not " -"using verbal words, but gestures, body language, facial expressions, and eye " -"contact. It could also be done with the use of objects such as clothes, " -"haircuts and so forth." -msgstr "" - -# 46284ae2b7414a5ba0a4183982ec990d -#: ../../source/training/tot/502_communication_skills.rst:216 -msgid "" -"Non-verbal communication will help the trainer to become an interesting " -"speaker. Verbal communication has to be supported by means of talking such " -"as intonation, giving emphasis, sound quality, style of speech and emotion. " -"It also uses gestures, body language, facial expressions, eye contact, and " -"supported by the use of objects such as clothes, haircuts, and so forth." -msgstr "" - -# c3a1acf773384ef79e016622f3d4b2b8 -#: ../../source/training/tot/502_communication_skills.rst:223 -msgid "Training methods" -msgstr "" - -# 21e22405e54b458691f3c545873659fc -#: ../../source/training/tot/502_communication_skills.rst:224 -msgid "" -"Training is essentially a learning process that contains three elements, i." -"e. inputs (raw materials to be processed), process (activity to process " -"inputs) and outputs (results that have been processed). Input of the " -"training is the participants before starting the training, the training " -"process is the interaction between the components of teaching and learning " -"which are the objectives, materials, methods, participants, facilities and " -"assessment. The output of the training is the participants after finishing " -"the training." -msgstr "" - -# 6b53eada519b47c5a6ae0f0a3f60ec8a -#: ../../source/training/tot/502_communication_skills.rst:232 -msgid "" -"A process is considered good if the output quality is better than the input. " -"The learning process or training is a behavioral change, which occurs as the " -"result of experience. This means it can only be called as a learning process " -"if a person is showing different behavior. He needs to prove the new " -"knowledge of facts, or do something which he couldn’t previously. Thus, the " -"learning process puts someone from one capability or competence status to " -"the other." -msgstr "" - -# f1c5ca27fb01476da81f34d63e69dae8 -#: ../../source/training/tot/502_communication_skills.rst:239 -msgid "" -"Communication model training is one component in the training process " -"because it is actually a method implementation in training. To maximize " -"output in the training, a trainer has to select a training method in " -"accordance with the other components, such as the objectives, materials, " -"trainees, facilities and assessment. So to be able to achieve the objectives " -"set in the training, methods of training and communication should receive " -"special attention in any training process." -msgstr "" - -# 9535d5cedfd8493590c1f1e35b16a233 -#: ../../source/training/tot/502_communication_skills.rst:247 -msgid "" -"A good trainer should understand the characteristics of participants in " -"order for him to succeed in carrying out his teaching role. A trainer is " -"expected to plan the learning process according to the circumstances and the " -"personality of the trainees. A method is a way to achieve the objectives " -"well. The methods can be classified into 5, i.e. direct learning, indirect " -"learning, interactive learning, experiential learning, and independent " -"learning." -msgstr "" - -# 761eb1358f39473c846e08bc9658a5fa -#: ../../source/training/tot/502_communication_skills.rst:254 -msgid "" -"**Direct learning**: Direct learning is the kind of learning that is " -"directed by the trainer. This strategy is effective to determine the " -"information or skills to build incrementally. Direct learning is usually " -"deductive. Examples of the direct learning methods are: lecture, discussion, " -"demonstration and drill exercises." -msgstr "" - -# ac6cd7da2c1c4a0f987e8ba92666d6a8 -#: ../../source/training/tot/502_communication_skills.rst:259 -msgid "" -"**Indirect learning**: Generally centered on the trainees. The role of the " -"trainer shifted from a lecturer to a facilitator. The trainer manages the " -"learning environment and gives the trainees the opportunity to get involved. " -"Examples of indirect methods of learning are inquiry, case studies, problem " -"solving, concept mapping." -msgstr "" - -# a2635cdc87ef48b9897b9419e9056786 -#: ../../source/training/tot/502_communication_skills.rst:264 -msgid "" -"**Interactive learning**: Interactive learning emphasizes on discussion and " -"sharing among participants. Discussion and sharing give trainees the " -"opportunity to react to ideas, the trainer’s or his partner’s experience and " -"approach and to build an alternative way to think and feel. Examples of this " -"method are class discussions, small group discussions or projects, work in " -"pairs." -msgstr "" - -# 2566d5e6e7624fafb98b36555ea93d09 -#: ../../source/training/tot/502_communication_skills.rst:270 -msgid "" -"**Experiential learning**: Empirical learning is oriented on inductive " -"activities, centered on the trainees, and is activity based. Personal " -"reflection on the experience and planning formulation towards implementation " -"in other contexts is a critical factor in an effective empirical learning. " -"Examples of empirical learning method are role playing, observation / " -"survey, and simulation." -msgstr "" - -# f51bb180f04a4850930f804a628a36a9 -#: ../../source/training/tot/502_communication_skills.rst:276 -msgid "" -"**Independent learning**: Independent learning is a teaching strategy that " -"aims to develop individual initiative, self-reliance, and self improvement. " -"The focus is on the trainees’ planning with the help from the trainer. Self-" -"learning can also be done with a friend or in a small group. Examples of " -"Independent learning methods are research projects and computer-based " -"learning." -msgstr "" - -# 967cd958d87a469887f38bd63295f0c5 -#: ../../source/training/tot/502_communication_skills.rst:283 -msgid "**a. Methods in direct learning**" -msgstr "" - -# a0a9b51344dd4aeda21793218f464eb6 -#: ../../source/training/tot/502_communication_skills.rst:285 -msgid "" -"Direct learning is usually identified with the lecture method, where " -"learning is presumably making the participants less active. However, direct " -"learning can still be used together with question and answer, " -"demonstrations, and exercises. Furthermore, a few ways can be used to make " -"more this method more effective, for example:" -msgstr "" - -# fc35e5fc77154938aa6686a4e2748830 -#: ../../source/training/tot/502_communication_skills.rst:291 -msgid "" -"Participants review the training materials that have been studied and the " -"new materials recently presented:" -msgstr "" - -# 139ebc26fa3a4ba5a04477382f2dd213 -#: ../../source/training/tot/502_communication_skills.rst:294 -msgid "materials well managed part by part" -msgstr "" - -# 4d607d6935a24f7da97a5d33275e39ac -#: ../../source/training/tot/502_communication_skills.rst:295 -msgid "use visual media (important to read)" -msgstr "" - -# 6a122fdf0c4f43aa98f5beedad14466c -#: ../../source/training/tot/502_communication_skills.rst:297 -msgid "Participants exercise with the trainer’s guidance." -msgstr "" - -# 629f70222f044de28d35de3988363bd2 -#: ../../source/training/tot/502_communication_skills.rst:298 -msgid "Participants exercise independently" -msgstr "" - -# bc616af00303481bad84fcc639be5faa -#: ../../source/training/tot/502_communication_skills.rst:299 -msgid "" -"Participants’ improvement of skills/ knowledge are monitored periodically" -msgstr "" - -# 6d5d6ae29c00444f9bf7ce8da1cc8df5 -#: ../../source/training/tot/502_communication_skills.rst:301 -msgid "" -"**Various methods can be developed when students receive an explanation from " -"the teacher, among others:**" -msgstr "" - -# b504b13c94e44ed3848dd2c5a294bc98 -#: ../../source/training/tot/502_communication_skills.rst:304 -msgid "" -"**Example and analogy**: A trainer provides examples and illustrations " -"associated with the materials. He can also make comparisons between " -"participants' experiences with the training materials." -msgstr "" - -# 242bbb387b9a42c79403b33a7ff09d3f -#: ../../source/training/tot/502_communication_skills.rst:307 -msgid "" -"**Games**: A trainer uses games in learning. The games are expected to be in " -"accordance with the training topic. Examples of them would be guessing " -"pictures, mystery in a box, or various types of quizzes from TV can be " -"implemented in a training class with some modifications (e.g. who wants to " -"millionaires, GameZone, word games, etc.)." -msgstr "" - -# 057d240c12af4e8a8020f6b63c731db0 -#: ../../source/training/tot/502_communication_skills.rst:312 -msgid "" -"**Response card**: Trainer asks participants to answer questions on a card " -"or piece of paper anonymously. Question cards or answer cards can be " -"developed. On the cards participants get different questions and they would " -"be asked to answer by raising hands; use open-ended, productive or " -"imaginative questions. On the answer cards the participants get answer " -"cards, he would rasie his hand when the card matches the trainer’s " -"questions; use open-ended, productive or imaginative questions." -msgstr "" - -# 272ee5f136464deba786333a0a6c17e6 -#: ../../source/training/tot/502_communication_skills.rst:319 -msgid "" -"**Polls**: A trainer can conduct a short survey to obtain data quickly. This " -"can be done with a verbal survey, for example by asking participants to " -"raise their hands or lift the answer cards" -msgstr "" - -# af35f43e74774b09bde8c10d9e9a2362 -#: ../../source/training/tot/502_communication_skills.rst:322 -msgid "**Problems**: Trainer asks problems related with training topic." -msgstr "" - -# ff4ecb7733a34e94b2b85a4707c23076 -#: ../../source/training/tot/502_communication_skills.rst:323 -msgid "" -"**Demonstrations**: Trainer or participants can demonstrate something " -"according to the topic by using gestures or properties." -msgstr "" - -# 20c261d1be7d4df59a5de4197d3fb1c2 -#: ../../source/training/tot/502_communication_skills.rst:325 -msgid "" -"**Review newspaper or news**: Participants are asked to review newspaper or " -"news from other readings." -msgstr "" - -# e1ca0953e80f48f880eb467356573158 -#: ../../source/training/tot/502_communication_skills.rst:327 -msgid "" -"**Brainstorm**: Participants are asked to argue about something related with " -"the training topics. Opinions will be accommodated for with conclusions " -"drawn on the subject matter discussed." -msgstr "" - -# 4d812cd1422d4a45849a2be1c9dd695f -#: ../../source/training/tot/502_communication_skills.rst:331 -msgid "" -"**The method can be developed after the participants received proper " -"explanation from the trainer, among others:**" -msgstr "" - -# b29ead379eae426ba64fa7e99a95fb38 -#: ../../source/training/tot/502_communication_skills.rst:334 -msgid "" -"**Sharing notes**: after a series of events trainee compare their notes with " -"other colleagues’" -msgstr "" - -# cc44393ab05d4620b372ef14c06a5329 -#: ../../source/training/tot/502_communication_skills.rst:336 -msgid "" -"**Q&A**: participants are given the opportunity to ask questions related to " -"the concept and its application. If there are no questions from the " -"participants, the trainer can ask them first." -msgstr "" - -# 070041a4410141aa94afd3387b1da999 -#: ../../source/training/tot/502_communication_skills.rst:339 -msgid "" -"**Headline**: trainer summarizes lessons with key words to be easily " -"remembered." -msgstr "" - -# 268b2a375f01491f98ff5b1cadc11657 -#: ../../source/training/tot/502_communication_skills.rst:342 -msgid "" -"**Methods to determine participants’ mastery of the concepts that have been " -"studied**" -msgstr "" - -# b1f23ca344dc47f6b5bc241fd3cd2dba -#: ../../source/training/tot/502_communication_skills.rst:345 -msgid "" -"**One minute paper**: This activity can be done at the end of training. Ask " -"the participants to take out a piece of paper. Ask an open-ended or closed " -"question related with the concepts that have been studied. Give one or two " -"minutes for participants to answer." -msgstr "" - -# 865a439441044539b209c37fb79090c9 -#: ../../source/training/tot/502_communication_skills.rst:349 -msgid "" -"**Reflection**: ask one or two participants to come forward and express " -"their impressions towards the learning. Reflection can also provoke feelings " -"and difficulty in following the study." -msgstr "" - -# 7adc0425c0dd4cdebc2b9c91d21ca59a -#: ../../source/training/tot/502_communication_skills.rst:352 -msgid "" -"**Quiz**: participants raise several issues or questions related with the " -"concept and ask other participants to answer. Quiz can be done by including " -"the name of the participants or anonymously. Quiz can also be used with " -"competition, puzzles, or the like. Quiz can be done verbally; using open-" -"ended, productive, or imaginative questions." -msgstr "" - -# 503555d34d4843c78825937a63e0601f -#: ../../source/training/tot/502_communication_skills.rst:357 -msgid "" -"**Tournament**: participants compete in groups to solve problems related to " -"the concepts that have been studied. The winning group will get a certain " -"reward." -msgstr "" - -# 0695bc5608f644088937203dfa2a3f13 -#: ../../source/training/tot/502_communication_skills.rst:360 -msgid "" -"**Review**: Ask participants to review the lessons with others or give them " -"a review test scores." -msgstr "" - -# 6bc2cf2a861c4bc59b78909fae25c628 -#: ../../source/training/tot/502_communication_skills.rst:363 -msgid "**b. Indirect learning method**" -msgstr "" - -# 408cb554750544ad9cf28950d0d84849 -#: ../../source/training/tot/502_communication_skills.rst:365 -msgid "" -"**Inquiry**: participants conduct observation. Based on the result, they may " -"ask questions. Furthermore, participants formulate allegations, and collect " -"data. Based on the data, participants are asked to conclude." -msgstr "" - -# 85e327be90aa4a118efa17e39aff346c -#: ../../source/training/tot/502_communication_skills.rst:368 -msgid "" -"**Problem solving**: Each participant is asked to formulate a problem " -"clearly and concisely, identifying factors that cause the problem, collect " -"required information (facts and knowledge), determine various solutions and " -"choose the most appropriate one, test the chosen solution, and review the " -"result." -msgstr "" - -# 6d0ee9e9ab4b41f092a2ccdb67eb8879 -#: ../../source/training/tot/502_communication_skills.rst:372 -msgid "" -"**Trading**: Each participant writes down one thing (e.g. experience, " -"creative ideas, questions, opinion, etc.) on a piece of paper, then stick it " -"up on his shirt. Walk around to sell and buy (read) the results of others. " -"Set a rule that every work has to be sold and bought. Classically, present " -"the result in turn. Trainer will provide reinforcement." -msgstr "" - -# 2accd3f3fb8c4d01ba444a5dbde91838 -#: ../../source/training/tot/502_communication_skills.rst:377 -msgid "" -"**Case study analysis**: participants are given a case to be solved either " -"individually or in groups based on data, facts or concepts they have learned " -"in class." -msgstr "" - -# 0c1aa17a5bc6440589a6efe78cef104b -#: ../../source/training/tot/502_communication_skills.rst:380 -msgid "" -"**Evaluating a friend’s work**: it can be done after developing a product. " -"Participants generally use a rubric to evaluate the results of his friend’s " -"work" -msgstr "" - -# 09cfc73adcb44f839bc4459de72f276d -#: ../../source/training/tot/502_communication_skills.rst:384 -msgid "**c. Interactive learning method**" -msgstr "" - -# 3c30d16029944c8fb1c429c63922ba30 -#: ../../source/training/tot/502_communication_skills.rst:386 -msgid "" -"**Group discussion**: Trainer asks participants to form groups of three or " -"more to share information." -msgstr "" - -# 3f08c0d71f7347ac94ea038b28918d02 -#: ../../source/training/tot/502_communication_skills.rst:388 -msgid "" -"**Think, pair and share**: propose a problem to the participants. Give " -"participants 2-5 minutes chance to think. When finished, ask them to discuss " -"the same issue with the person next to them for 3-5 minutes (pair). Finally, " -"select a pair to express their opinions in front of the class (share)." -msgstr "" - -# aebe38f29ac94cdc9f706a980d998285 -#: ../../source/training/tot/502_communication_skills.rst:392 -msgid "" -"**Group investigation**: Participants form groups. Trainer calls the leader " -"of the groups and gives different materials/ task. Each group will discuss " -"the task cooperatively and will perform investigations. Upon completion, a " -"representative will present the results of the discussion. Trainer will " -"provide reinforcement." -msgstr "" - -# 0a926588d2124451abb609c969f6ef45 -#: ../../source/training/tot/502_communication_skills.rst:397 -msgid "" -"**TGT (Team Game Tournament) method**: Trainer presents new material. " -"Participants form study groups heterogeneously. Each group will participate " -"in academic tournament. Each will represent the group in the tournament. " -"Give reward to the winning team." -msgstr "" - -# 6459de10048d463b948fe6f5ef01a31b -#: ../../source/training/tot/502_communication_skills.rst:401 -msgid "" -"**Jigsaw**: Trainer prepares a number of tasks matching the number of " -"groups. Participants will form groups with the number of members equal to " -"the number of groups (participants have to memorize the group members). Each " -"group member will be given different part of the materials. Participants " -"from different groups will form new groups and discuss their parts. Upon " -"completion of discussions with a group of experts, each group member will go " -"back to the original group and, in turn, teach/ report the discussion result " -"to other group members. Participants randomly present all the tasks given by " -"the trainer. Reinforcement." -msgstr "" - -# 2933d0154d6d4ee7ba197acc4ad22bcb -#: ../../source/training/tot/502_communication_skills.rst:410 -msgid "" -"**Debate**: The trainer divides the participants into two debate groups of " -"pros and cons. Each group will read the materials that will be debated. " -"Appoint one member of the pros group to speak and rebutted by a member of " -"the cons, and so on. Trainer writes down ideas from the debate on a board " -"the number of ideas the trainer expected has been met. The trainer adds more " -"unrevealed ideas. From the ideas on the board, the trainer asks participants " -"to draw conclusion/ summary by referring to the competency desired." -msgstr "" - -# ee7a806e0fda4089af0c71d67701df2d -#: ../../source/training/tot/502_communication_skills.rst:417 -msgid "" -"**STAD (Student Team Achievement Division)**: Learning from trainer. " -"Participants form groups. Each group discusses issues given (each " -"participant should understand the group’s answer). One person from each " -"group will work on the questions (quiz). Scores of each member will " -"determine the score of the group. Reinforcement." -msgstr "" - -# 29a1e8b2c4f04a0087729cfef221af4e -#: ../../source/training/tot/502_communication_skills.rst:422 -msgid "" -"**Collaborative learning group**: participants form heterogeneous groups of " -"3-6 people. Ask one of the participants to become the leader and another to " -"take note. Give participants the opportunity to learn collaboratively. The " -"result will be submitted in the form of a written report." -msgstr "" - -# 7d2aa27422c34be5ba2dd4bd912f21d8 -#: ../../source/training/tot/502_communication_skills.rst:426 -msgid "" -"**Learn in pairs**: Trainer asks participants to perform tasks or " -"discussions with friends nearby in pairs. Pairs are suitable for learning " -"complicated tasks." -msgstr "" - -# e46da3a0057b47cda205d6aeab7214d9 -#: ../../source/training/tot/502_communication_skills.rst:430 -msgid "**d. Experiential learning method**" -msgstr "" - -# 419fb2e75ee54dd29e52fd2daf98bb44 -#: ../../source/training/tot/502_communication_skills.rst:432 -msgid "" -"**Role play**: each group is asked to design a role play based on the " -"concept being studied. Groups will respond to other groups’ role play result." -msgstr "" - -# 105a06ff47e74a61933d989158067f34 -#: ../../source/training/tot/502_communication_skills.rst:434 -msgid "" -"**Simulation/ exercise**: after participants learnt about certain motoric " -"skills, they will randomly be asked to exercise the skills they have learnt " -"in class." -msgstr "" - -# 647a4a3580cf448ca372e439661329ff -#: ../../source/training/tot/502_communication_skills.rst:438 -msgid "**e. Independent learning**" -msgstr "" - -# 99e6ff1852974639a9245aed41ed802f -#: ../../source/training/tot/502_communication_skills.rst:440 -msgid "" -"**Project:** Project method is a way of presenting the lessons, starting " -"from a problem where the solution requires a review of various point of " -"views. The rationale for the use of this method is that the problem can only " -"be solved by different school of thoughts or knowledge. Only problems that " -"need unit problem solving can be solved with project method." -msgstr "" - -# f500592ddf1c4c97a25f6894182ae107 -#: ../../source/training/tot/502_communication_skills.rst:447 -msgid "3. Components of basic skills in teaching / training" -msgstr "" - -# fc588a1552694ac0b8d557142afa003f -#: ../../source/training/tot/502_communication_skills.rst:448 -msgid "" -"In interaction or face-to-face meeting with the trainees, trainer requires " -"some basic teaching skills. It is absolutely necessary to help the trainer " -"in playing the role in educational interaction. The trainer’s teaching basic " -"skills are not different than the teachers who teach in the classroom. Those " -"basic skills are:" -msgstr "" - -# 222f486818d947d4b4a469b8d21ec595 -#: ../../source/training/tot/502_communication_skills.rst:453 -msgid "Skill to open and close the session" -msgstr "" - -# 04c40e6ddb9d49208a8d2df1495bf021 -#: ../../source/training/tot/502_communication_skills.rst:454 -msgid "Explanation skill" -msgstr "" - -# c0c6406ca335461ab5256e47cda9cdf3 -#: ../../source/training/tot/502_communication_skills.rst:455 -msgid "Inquiry basic skill" -msgstr "" - -# 0c340956e541435aab2ed94291c40514 -#: ../../source/training/tot/502_communication_skills.rst:456 -msgid "Skill to make variations" -msgstr "" - -# 888ca109646f4c04a4e92fa00b543680 -#: ../../source/training/tot/502_communication_skills.rst:457 -msgid "Skills to provide reinforcement" -msgstr "" - -# 06ff088639294f62ae6c4f16ea0e8141 -#: ../../source/training/tot/502_communication_skills.rst:458 -msgid "Skills to manage the class" -msgstr "" - -# 4cdb30bc85144c0ba17e27b4a1dae9ec -#: ../../source/training/tot/502_communication_skills.rst:459 -msgid "Skills to guide a small group discussion" -msgstr "" - -# 20f4c3a2f7264955997a21bb555b40f1 -#: ../../source/training/tot/502_communication_skills.rst:460 -msgid "Individual teaching skill" -msgstr "" - -# 8d9485c1d7a04f98923aa6c35a465942 -#: ../../source/training/tot/502_communication_skills.rst:461 -msgid "Skill of small groups" -msgstr "" - -# d186543442624a3293ff0086fdc83e79 -#: ../../source/training/tot/502_communication_skills.rst:463 -msgid "**a. Skill to open and close the session**" -msgstr "" - -# 61b0038bcb184d1fabbc214a9b3ec79d -# b2ebbfce74be4ca5a3c49ff5435ded95 -# 11a0ae98f0f146dda95d7e645679d7d7 -# 3a4d626347ce4371b7e59eecb34f4bbc -#: ../../source/training/tot/502_communication_skills.rst:465 -#: ../../source/training/tot/502_communication_skills.rst:642 -#: ../../source/training/tot/502_communication_skills.rst:712 -#: ../../source/training/tot/502_communication_skills.rst:808 -msgid "**Definition and Purpose**" -msgstr "" - -# 1e069e444d90468e99442fbbfca83ecf -#: ../../source/training/tot/502_communication_skills.rst:467 -msgid "" -"Opening a session is associated with the trainer creating conducive mental " -"atmosphere and attracting participants’ attention to focus on what will be " -"studied. While closing the session is when the trainer ending the core of " -"the activities, which is giving an overall picture of what has been studied, " -"knowing the participants, and the trainer’s rate of success in the training " -"process. Opening and closing of the session have are meant to:" -msgstr "" - -# cc3c2ffb808f4d61b03c9fad1bdde3c7 -#: ../../source/training/tot/502_communication_skills.rst:474 -msgid "attract interests and motivate participants on the task at hand" -msgstr "" - -# 8e3723fff72647b29c6d620e9d9845e5 -#: ../../source/training/tot/502_communication_skills.rst:475 -msgid "enable participants to know the limits of the task at hand" -msgstr "" - -# f1dffaf9efe6488c8aa825da01bd07c4 -#: ../../source/training/tot/502_communication_skills.rst:476 -msgid "enable participants to find out the approach that is going to be used" -msgstr "" - -# 5f2b568e92ca42199dc32a04e3d7dae2 -#: ../../source/training/tot/502_communication_skills.rst:477 -msgid "" -"enable participants to determine the relationship between mastered " -"experiences with new things to be learned" -msgstr "" - -# 22ca398791104b5ea43c9d0bcb18a2cb -#: ../../source/training/tot/502_communication_skills.rst:479 -msgid "" -"give the participants the possibility to combine facts, skills, and concepts " -"covered in an event" -msgstr "" - -# 3d5df3688dfa437db34d214a5b6892ad -#: ../../source/training/tot/502_communication_skills.rst:481 -msgid "enable participants to determine the level of success" -msgstr "" - -# 325eafaa59f749859c8c6842485370c2 -#: ../../source/training/tot/502_communication_skills.rst:483 -msgid "**Components of Opening the Session Skill**" -msgstr "" - -# 11d0dd6b41194b60bdf9aa0e48c02f42 -#: ../../source/training/tot/502_communication_skills.rst:485 -msgid "Opening a session can be done by:" -msgstr "" - -# ce20536caaac4043baea98310a556864 -#: ../../source/training/tot/502_communication_skills.rst:487 -msgid "Attracting participants’ interest" -msgstr "" - -# 4a2bfcbb8f9844e1890368bfecdf6fab -#: ../../source/training/tot/502_communication_skills.rst:489 -msgid "" -"A few ways can be done by the trainer to attract the participants’ interest, " -"among others:" -msgstr "" - -# d610ad1610234e1ba8d1ffbabc6ab205 -#: ../../source/training/tot/502_communication_skills.rst:492 -msgid "Variation of training style and patterns of interaction" -msgstr "" - -# eeb125cbda344dae91e9cbc94989cf82 -#: ../../source/training/tot/502_communication_skills.rst:493 -msgid "The use of training aids" -msgstr "" - -# 1c551ea9cca6414caae064977ba3bdc6 -#: ../../source/training/tot/502_communication_skills.rst:495 -msgid "Motivating" -msgstr "" - -# cb4301693a2d4234bcaf16d84511e52a -#: ../../source/training/tot/502_communication_skills.rst:497 -msgid "Creating motivation can be done by:" -msgstr "" - -# a64883cff5604d1c839aaee60d2c0ca8 -#: ../../source/training/tot/502_communication_skills.rst:499 -msgid "Showing warmth and enthusiasm" -msgstr "" - -# e14efb27125a481e9d5497302a319760 -#: ../../source/training/tot/502_communication_skills.rst:500 -msgid "Creating curiosity" -msgstr "" - -# 8277395f8c9e4b5a84177d0be43152ce -#: ../../source/training/tot/502_communication_skills.rst:501 -msgid "Expressing opposite ideas" -msgstr "" - -# 54c6fa653c0347ca8f9cf0504b4d6fcf -#: ../../source/training/tot/502_communication_skills.rst:502 -msgid "Paying attention to the participants’ interests" -msgstr "" - -# 6b36a4e964bb4776b0fd3f95f0070a6b -#: ../../source/training/tot/502_communication_skills.rst:504 -msgid "Giving references" -msgstr "" - -# c37c3e93a8864a9c866dfe6b142be4ee -#: ../../source/training/tot/502_communication_skills.rst:506 -msgid "" -"Giving references is an effort to give clear picture of the things that will " -"be studied by means of inserting a short series of specific and relevant " -"alternatives, by:" -msgstr "" - -# 7088fd611f9841bbb411863b9c04dc65 -#: ../../source/training/tot/502_communication_skills.rst:510 -msgid "Expressing the objectives and limitation of task" -msgstr "" - -# a1a5c80aa80e4b6b98a79f8f87e7c229 -#: ../../source/training/tot/502_communication_skills.rst:511 -msgid "" -"Advising steps to be taken, reminding the subject matter to be discussed" -msgstr "" - -# 2bdfe0013f0f4f7aa0dbf12835ca5554 -#: ../../source/training/tot/502_communication_skills.rst:512 -msgid "Asking questions" -msgstr "" - -# 7224583f04194480a0d11f9b33aa422a -#: ../../source/training/tot/502_communication_skills.rst:514 -msgid "Making connections" -msgstr "" - -# 2b482a619d904d06acee50551b700d0a -#: ../../source/training/tot/502_communication_skills.rst:516 -msgid "Some of the trainer’s efforts in making connections:" -msgstr "" - -# 7f62b6f4d4794fb5b7166a35abf917fa -#: ../../source/training/tot/502_communication_skills.rst:518 -msgid "" -"Making links between relevant aspects of training with the materials known " -"to participants" -msgstr "" - -# cbf9ba29e9864259aca72b5c05a34028 -#: ../../source/training/tot/502_communication_skills.rst:520 -msgid "Comparing or contrasting the new knowledge and the ones known to them" -msgstr "" - -# c7ad48aaee5e49f1806a480dd12c6677 -#: ../../source/training/tot/502_communication_skills.rst:521 -msgid "Explaining the concept first and then the detailed description" -msgstr "" - -# 901bf9a5513949f389926ef45bc0952c -#: ../../source/training/tot/502_communication_skills.rst:523 -msgid "**Basic Skills Components of Closing the Session**" -msgstr "" - -# ca29fd313a6142fabe95eea2fbbf7861 -#: ../../source/training/tot/502_communication_skills.rst:525 -msgid "" -"Closing the session is intended to obtain a complete picture at the end of " -"the activity, and to determine the participants’ level of achievement or the " -"participants' success rate. There are a few ways to that can be done in " -"closing the session, among others:" -msgstr "" - -# cae8c8796a144bea8bb5c6094915ac2f -#: ../../source/training/tot/502_communication_skills.rst:530 -msgid "Review the core content of the session and making a summary" -msgstr "" - -# cfb64646daa2400392013e6dfbfb0301 -#: ../../source/training/tot/502_communication_skills.rst:531 -msgid "Evaluate the various forms of evaluation, for example:" -msgstr "" - -# 60634440fcff430ebe3307529979d5fd -#: ../../source/training/tot/502_communication_skills.rst:533 -msgid "Demonstrate skills" -msgstr "" - -# b2f83f7f1e7248d5ae5ffa58ed01abd9 -#: ../../source/training/tot/502_communication_skills.rst:534 -msgid "Ask participants to apply new ideas in other situations" -msgstr "" - -# 630f734adf874eb881b3f54ad3df04f6 -#: ../../source/training/tot/502_communication_skills.rst:535 -msgid "Explore the participants’ opinions" -msgstr "" - -# a5b5d79d30474253b118ae1dc7db3770 -#: ../../source/training/tot/502_communication_skills.rst:536 -msgid "Provide written questions" -msgstr "" - -# 705989e190af4c33bd8cb7c385535d8b -#: ../../source/training/tot/502_communication_skills.rst:538 -msgid "**Use Principles**" -msgstr "" - -# 371d692b73b045359868ae8f4574a86b -#: ../../source/training/tot/502_communication_skills.rst:540 -msgid "" -"A few principles that need to be considered by a trainer when opening and " -"closing the session are:" -msgstr "" - -# 23d757d19f2b4649967bde99516269b6 -#: ../../source/training/tot/502_communication_skills.rst:543 -msgid "Significance" -msgstr "" - -# 243197bb662045d4bdfc0be4b8f2f7ee -#: ../../source/training/tot/502_communication_skills.rst:544 -msgid "" -"To draw participants’ attention or motivation, a trainer has to select a way " -"relevant with the content and the objective of the teaching" -msgstr "" - -# 5012b619d30d4c61884276ef5a2bf6ce -#: ../../source/training/tot/502_communication_skills.rst:546 -msgid "Sequential and continuous" -msgstr "" - -# 3c5a92f892e84c76833b454e84659e34 -#: ../../source/training/tot/502_communication_skills.rst:547 -msgid "" -"Activities taken by trainer in introducing and summarizing the main points " -"of the lessons should be an integral part, the link between one part and " -"another or with the participants’ experience should be clear" -msgstr "" - -# 856d2a91c7074ab0bf7778d588dabb8f -#: ../../source/training/tot/502_communication_skills.rst:551 -msgid "**b. Explanation skill**" -msgstr "" - -# 903ae285a37f43a08daa1160572852e5 -# 3866edf1b0ba4fc898a957593997f4ea -#: ../../source/training/tot/502_communication_skills.rst:553 -#: ../../source/training/tot/502_communication_skills.rst:876 -msgid "**Definition**" -msgstr "" - -# bc440aca8762495797e2293832396c59 -#: ../../source/training/tot/502_communication_skills.rst:555 -msgid "" -"Explaining/ describing something is presenting verbal information that is " -"organized systematically to show an association with one another. The " -"emphasis of explaining is the participants’ reasoning process and not " -"indoctrination. Examples: providing an overview of a situation, revealing " -"causes of an event, etc. The success of explaining is marked by the " -"participants’ understanding of something. The structure of teaching " -"materials in explaining is usually planned in a way that can be controlled. " -"Logical description, the skill to reveal the materials and the strategy to " -"organize the materials are the main procedure to explain." -msgstr "" - -# c8cc95fe041241c9a634ea9ad3c7e638 -#: ../../source/training/tot/502_communication_skills.rst:565 -msgid "" -"Explaining is linked with the effort to create linkages between the known " -"and the unknown. A full explanation is always accompanied by evidence and " -"the cause and effect is based on the logical relationships between " -"generalization, provisions, and realities according to the participants’ " -"perception system." -msgstr "" - -# fd1934c6eb74475db63d19d4ad61f288 -#: ../../source/training/tot/502_communication_skills.rst:570 -msgid "The objective of explanation skills are to:" -msgstr "" - -# fcf2014b4688444391d4618be5ccfbbe -#: ../../source/training/tot/502_communication_skills.rst:572 -msgid "Provide understanding to others" -msgstr "" - -# fa4b4aa5b1d345b78f3c7954f509762c -#: ../../source/training/tot/502_communication_skills.rst:573 -msgid "Make participants think logically and systematically" -msgstr "" - -# ec0ce23c52384366b98aa9eea1c0ba11 -#: ../../source/training/tot/502_communication_skills.rst:574 -msgid "Train participants to think based on the causes and reasons" -msgstr "" - -# f75b99ab43384b0591fbe6ad8f009839 -#: ../../source/training/tot/502_communication_skills.rst:575 -msgid "Train participants in making decisions independently" -msgstr "" - -# 4dde98eec1eb4a46b7a27ece8d9029dc -#: ../../source/training/tot/502_communication_skills.rst:576 -msgid "Instill the right way of thinking attitude" -msgstr "" - -# 24f7c8c919754e92818153d2842e579c -#: ../../source/training/tot/502_communication_skills.rst:577 -msgid "" -"Guide participants to a clear understanding in solving the question: What, " -"Why and How" -msgstr "" - -# 377891dba76148c6972e34fec4866d20 -#: ../../source/training/tot/502_communication_skills.rst:579 -msgid "Engage participants in thinking to solve problems" -msgstr "" - -# 16fd82e4dc3249ef9b58c0e6d7cdb828 -#: ../../source/training/tot/502_communication_skills.rst:580 -msgid "Obtain feedback from participants based on levels of understanding" -msgstr "" - -# eb0e3008fc874a07a4c24560108dbaf3 -#: ../../source/training/tot/502_communication_skills.rst:581 -msgid "" -"Assist participants to use the process of transmission and evidences in " -"solving problems" -msgstr "" - -# 641252939e0649c69e75eef40974ab47 -#: ../../source/training/tot/502_communication_skills.rst:584 -msgid "**Components of Explanation Skills**" -msgstr "" - -# 453c792b918b4655b06ba65bdb71ef13 -#: ../../source/training/tot/502_communication_skills.rst:586 -msgid "In the planning process, the components of explanation skills include:" -msgstr "" - -# 35db9947554e49548254889b139e67bb -#: ../../source/training/tot/502_communication_skills.rst:588 -msgid "Planning explanation" -msgstr "" - -# 580d9e1f941f42ed8ecf3be3149faa3e -#: ../../source/training/tot/502_communication_skills.rst:590 -msgid "" -"In planning explanation, we need to pay attention to the contents of the " -"message that will be conveyed and the readiness of the recipient. Things " -"related to the content of the message (the material) including:" -msgstr "" - -# b4f8c7fa87e244e982c51d3b6acab0e4 -#: ../../source/training/tot/502_communication_skills.rst:594 -msgid "Analyzing problems holistically" -msgstr "" - -# ff86308c3e834983acc053e3bba522b6 -#: ../../source/training/tot/502_communication_skills.rst:595 -msgid "" -"Determining the type of existing relationship between the linked elements" -msgstr "" - -# 39f978020ae44d3a8ca662408dc13f55 -#: ../../source/training/tot/502_communication_skills.rst:596 -msgid "" -"Using the law, formulation, or generalization that is suitable with the " -"determined relationship" -msgstr "" - -# 470f6fd4df01402f8fb662f2d44f8f86 -#: ../../source/training/tot/502_communication_skills.rst:599 -msgid "" -"What we need to pay attention when associated with the message recipient " -"(participant) is to whom the explanation will be presented to, such as age, " -"gender, ability, social background, and participants’ learning environment. " -"Thus what needs to be considered in connection with the recipient of this " -"message is:" -msgstr "" - -# 158d8d1a0d02460189a5e07310e0728a -#: ../../source/training/tot/502_communication_skills.rst:605 -msgid "The explanation must be relevant to the participants’ problems" -msgstr "" - -# 06793bc9fac0407cb8776a6dad84b063 -#: ../../source/training/tot/502_communication_skills.rst:606 -msgid "The explanation has to be easily accepted by the participants" -msgstr "" - -# 309e79f44d7b47deb7f4ac96a64c4f32 -#: ../../source/training/tot/502_communication_skills.rst:607 -msgid "" -"The explanation has to match the participants’ wealth of knowledge at the " -"time" -msgstr "" - -# f1e59a9496b840b9805d22530a795549 -#: ../../source/training/tot/502_communication_skills.rst:610 -msgid "Presenting explanation" -msgstr "" - -# 8cc978c8b4154b9a9fe8bd58d62707a5 -#: ../../source/training/tot/502_communication_skills.rst:612 -msgid "A few things to notice in presenting an explanation are:" -msgstr "" - -# f8acf90478394f328adc165efb103a69 -#: ../../source/training/tot/502_communication_skills.rst:614 -msgid "Clarity, can be achieved by:" -msgstr "" - -# bc32e71aa99c486d98447d4229c28b73 -#: ../../source/training/tot/502_communication_skills.rst:616 -msgid "The articulation has to be clear, the words, the idioms and the voice" -msgstr "" - -# 6e627137ea2d4f0e8ba4b90aacf86eb6 -#: ../../source/training/tot/502_communication_skills.rst:617 -msgid "" -"Conversation has to go smooth by avoiding unnecessary words, e.g. ee, aa, " -"etc." -msgstr "" - -# 6878010e4360453c855fccd13544ad5e -#: ../../source/training/tot/502_communication_skills.rst:619 -msgid "" -"Sentences have to be arranged with good grammar by avoiding incomplete " -"sentences" -msgstr "" - -# 5c4b5f03c3e84b589990c10cde2714bb -#: ../../source/training/tot/502_communication_skills.rst:621 -msgid "Technical or new terms should be defined clearly" -msgstr "" - -# 5a0e0496bc5e41838cadbb9b4bcb7f87 -#: ../../source/training/tot/502_communication_skills.rst:622 -msgid "" -"Using pause time (silent) to see whether the explanation has been understood " -"by the participants" -msgstr "" - -# ab54b46f07514970a2b1b2280c4f95d5 -#: ../../source/training/tot/502_communication_skills.rst:625 -msgid "Usage of examples and illustrations, including" -msgstr "" - -# 98cf00e3bd3844c99439750de99d49ae -#: ../../source/training/tot/502_communication_skills.rst:627 -msgid "Inductive: Example/ illustration concept/ generalization" -msgstr "" - -# 92f5a495020e423484c775c2c26feb75 -#: ../../source/training/tot/502_communication_skills.rst:628 -msgid "Deductive: Concept/ generalization examples/ illustrations" -msgstr "" - -# 35eedfa58b084a9181f21369ffbb8fa7 -#: ../../source/training/tot/502_communication_skills.rst:630 -msgid "" -"Provision of emphasis, including the use of voice variation, mimic, " -"gestures, summary, repetition, giving symbols, etc." -msgstr "" - -# 2087e17b3ddf469e917f18a1425a57f2 -#: ../../source/training/tot/502_communication_skills.rst:632 -msgid "It is important to show important parts that need attention from others" -msgstr "" - -# 0b73096e2d1543818c861108a79495e8 -#: ../../source/training/tot/502_communication_skills.rst:633 -msgid "" -"Organization, including creating relationship between examples, clear " -"generalization and summarizing during or at the end of the presentation" -msgstr "" - -# 2c6fece841dd4df4af992e657aefe96c -#: ../../source/training/tot/502_communication_skills.rst:635 -msgid "" -"Feedback, including a behavioral change from the participants and providing " -"the opportunity for participants to answer questions as well as expressing " -"opinions on whether the explanation given by the trainer is useful" -msgstr "" - -# 4694d9cd86834a62a2310534765bea8a -#: ../../source/training/tot/502_communication_skills.rst:640 -msgid "**c. Inquiry basic skill**" -msgstr "" - -# 8572294e5e3f4a3a84d592d735157cdc -#: ../../source/training/tot/502_communication_skills.rst:644 -msgid "" -"Asking a question can be interpreted as a greeting delivered with the " -"intention of requesting a response from others. In the teaching process, the " -"given response reflects the extent to which level of knowledge the " -"participants have. So asking questions in the session is important because " -"the trainer’s skill in asking effective questions will be the stimulus that " -"will stimulate thinking skills and will encourage participants." -msgstr "" - -# eb5a897317b0421fa47e8d0a439cac60 -#: ../../source/training/tot/502_communication_skills.rst:651 -msgid "The purpose of asking includes:" -msgstr "" - -# 2d465564bfd44be49c07312332b8a31c -#: ../../source/training/tot/502_communication_skills.rst:653 -msgid "Stimulate participants’ thinking skills" -msgstr "" - -# fee49c38a96d419c8735445040632ab8 -#: ../../source/training/tot/502_communication_skills.rst:654 -msgid "Assist participants in learning" -msgstr "" - -# 937b42660c7c4937a572ef3890065c36 -#: ../../source/training/tot/502_communication_skills.rst:655 -msgid "" -"Direct the participants independent interaction level on level of self-" -"learning interaction." -msgstr "" - -# 52e96fab4b704e969f2096e983cd9a3b -#: ../../source/training/tot/502_communication_skills.rst:657 -msgid "" -"Increase participants’ thinking component of low-level components to a " -"higher level" -msgstr "" - -# f50f63858c004173a8e7b280a7132dde -#: ../../source/training/tot/502_communication_skills.rst:659 -msgid "Assist participants in achieving the learning objectives" -msgstr "" - -# 190330f89af24a7ca144c2d25fe64158 -#: ../../source/training/tot/502_communication_skills.rst:661 -msgid "**Components of Inquiry Basic Skill**" -msgstr "" - -# 5a6d72b54cc441ed9f05cd3351b93bac -#: ../../source/training/tot/502_communication_skills.rst:663 -msgid "Basic skills" -msgstr "" - -# a603b9a2acd34d6abf8222a441485c41 -#: ../../source/training/tot/502_communication_skills.rst:665 -msgid "Components included in the inquiry basic skill are:" -msgstr "" - -# 546e0b07df684d679b97aa7066f9a8d2 -#: ../../source/training/tot/502_communication_skills.rst:667 -msgid "Disclosure of questions clearly and concisely" -msgstr "" - -# b6f7a699dfe7483d9e4e11be4abce57b -#: ../../source/training/tot/502_communication_skills.rst:668 -msgid "" -"Details in asking questions so that participants can answer correctly, the " -"trainer needs to provide information that will help make examples of the " -"question" -msgstr "" - -# cb7627c55c6845bf8bd6edb6bf1f8f17 -#: ../../source/training/tot/502_communication_skills.rst:671 -msgid "Convergence towards the accepted answer" -msgstr "" - -# 2bd21f5f61c245679aca58cd07e506b1 -#: ../../source/training/tot/502_communication_skills.rst:672 -msgid "" -"Convergence can be done by means of: providing a broad question (open-ended) " -"which will convert into a narrow question" -msgstr "" - -# f358eddaae394bb8b48b6ec50eec6fa5 -#: ../../source/training/tot/502_communication_skills.rst:674 -msgid "Transfer of turns to answer" -msgstr "" - -# e300405db51a43528d81222bbcbb844b -#: ../../source/training/tot/502_communication_skills.rst:675 -msgid "" -"Transfer of turns can be done by asking different participants to answer the " -"same question" -msgstr "" - -# 7721062a79bb4964903afb64c886e4f0 -#: ../../source/training/tot/502_communication_skills.rst:677 -msgid "The spread of questions" -msgstr "" - -# ba388b0f31f94126bab7f10ee9ddd932 -#: ../../source/training/tot/502_communication_skills.rst:679 -msgid "" -"For certain purposes the coach can throw the question to the whole class, to " -"a participant or spread from one participant to the others." -msgstr "" - -# aae46ce6e9934c449ce36065ac3ca822 -#: ../../source/training/tot/502_communication_skills.rst:682 -msgid "Provision of time to think" -msgstr "" - -# 878fddb367d3463d8b2f7d9926a24dca -#: ../../source/training/tot/502_communication_skills.rst:684 -msgid "" -"In asking question, a trainer has to stay silent a moment before appointing " -"a participant to answer the questions" -msgstr "" - -# ef65781bf77945c3bd7dc8d8ed52d55a -#: ../../source/training/tot/502_communication_skills.rst:687 -msgid "Provision of guidance" -msgstr "" - -# 41de9ff5fdc749c2975d07892abd4115 -#: ../../source/training/tot/502_communication_skills.rst:689 -msgid "" -"For participants having difficulty in answering the question, a strategy to " -"provide guidance needs to be given. The strategy includes the disclosure of " -"the question with other form or manner, asking other simpler questions, and " -"repeats the previous explanations." -msgstr "" - -# a51102126b724c14867833f1b396ac08 -#: ../../source/training/tot/502_communication_skills.rst:695 -msgid "Advance level skills, components added:" -msgstr "" - -# eaa7dca4b2534bf2ab233bb26234b5ca -#: ../../source/training/tot/502_communication_skills.rst:697 -msgid "The conversion of rate of cognitive guidance in answering the question" -msgstr "" - -# e092ec24f791450c8f1e0b965b0d1bd5 -#: ../../source/training/tot/502_communication_skills.rst:698 -msgid "" -"To develop the participants’ way of think we need cognitive level of " -"guidance questions (recall, comprehension, application, systematic analysis, " -"and evaluation)" -msgstr "" - -# e43a513188d8467b99649f903af19a7c -#: ../../source/training/tot/502_communication_skills.rst:701 -msgid "Setting the order of questions" -msgstr "" - -# 9f6dd4efa41b47cda91fca570b405832 -#: ../../source/training/tot/502_communication_skills.rst:702 -msgid "The questions asked have to have a logical sequence" -msgstr "" - -# 3dad2316c9a441a0a9cd613ced7ebd0d -#: ../../source/training/tot/502_communication_skills.rst:703 -msgid "The use of tracing questions" -msgstr "" - -# 5c00b6310d644aec9b85045af0b60509 -#: ../../source/training/tot/502_communication_skills.rst:704 -msgid "" -"To find out to which extent the participants’ skill in regards to the " -"answer, the tracing skill that needs to be mastered by the trainer. Tracing " -"can be done by asking participants to give explanation on the answer, giving " -"a reason, providing relevant examples, etc." -msgstr "" - -# f73a6e55db234a2990cc66f09734015a -#: ../../source/training/tot/502_communication_skills.rst:708 -msgid "The skill to encourage interaction between participants" -msgstr "" - -# 1225906e82c04dd58f0de9ab9ef6a549 -#: ../../source/training/tot/502_communication_skills.rst:710 -msgid "**d. Skills to provide reinforcement**" -msgstr "" - -# 3a1e7fbfab8647088c9c795b50da5286 -#: ../../source/training/tot/502_communication_skills.rst:714 -msgid "" -"There are two kinds of reinforcements, positive and negative reinforcement. " -"Positive reinforcement is the trainer’s behavior in responding positively to " -"a particular behavior of participants that allows such behavior to reoccur. " -"While negative reinforcement is the removal or a reduction of unpleasant " -"stimuli to encourage the reoccurrence of the behavior that arises as the " -"result of the reduction or removal." -msgstr "" - -# bbc15ebaeb5a4b49892941624e468bd3 -#: ../../source/training/tot/502_communication_skills.rst:721 -msgid "The purpose of reinforcement is to:" -msgstr "" - -# 5fdd31bb39d74bf684121fa3c86c6280 -#: ../../source/training/tot/502_communication_skills.rst:723 -msgid "increase the participants’ attention" -msgstr "" - -# 938b4f3e26b741b2b7de4988def21356 -#: ../../source/training/tot/502_communication_skills.rst:724 -msgid "Smoothen/ facilitate the learning process" -msgstr "" - -# bbe5be906c7948ee99b348d71fcbda4a -#: ../../source/training/tot/502_communication_skills.rst:725 -msgid "Generating and maintaining motivation" -msgstr "" - -# 7e9758dae1824fc58270f4e23b8fa5a3 -#: ../../source/training/tot/502_communication_skills.rst:726 -msgid "Controlling or changing disturbing attitudes and behavior" -msgstr "" - -# 3970bfb9b34845cc970c757fbe45ce5c -#: ../../source/training/tot/502_communication_skills.rst:727 -msgid "Developing and organizing themselves in learning" -msgstr "" - -# 248b90e789c54d96a4280042b6bca50a -#: ../../source/training/tot/502_communication_skills.rst:728 -msgid "" -"Driving the way of thinking that is good / divergent and personal initiative" -msgstr "" - -# 5d8fb9366ba5467eacd32e7444ffca47 -#: ../../source/training/tot/502_communication_skills.rst:730 -msgid "Reinforcement is given during:" -msgstr "" - -# 622c4579fe1c443c8bf9f8552e19ac66 -#: ../../source/training/tot/502_communication_skills.rst:732 -msgid "Attention to the coach, friend, or the object of discussion" -msgstr "" - -# 507c0307530e4c9cb86e7dc550501689 -#: ../../source/training/tot/502_communication_skills.rst:733 -msgid "The study, reading, working on the board behavior" -msgstr "" - -# dd89dec5f55d46a78c9d53c0573909c0 -#: ../../source/training/tot/502_communication_skills.rst:734 -msgid "The completion of work" -msgstr "" - -# 19520dc926d9491bb74574e4af2d7419 -#: ../../source/training/tot/502_communication_skills.rst:735 -msgid "The quality of work/ tasks (grooming, beauty)" -msgstr "" - -# 3cd1da51661e4d3484ff5e43120fb802 -#: ../../source/training/tot/502_communication_skills.rst:736 -msgid "Repair/ improvement tasks" -msgstr "" - -# 968d547f2a854ea79f70a4df40fd1a08 -#: ../../source/training/tot/502_communication_skills.rst:737 -msgid "Independent tasks" -msgstr "" - -# 1883ecdceeae427a8e3bb8165df387dc -#: ../../source/training/tot/502_communication_skills.rst:739 -msgid "**Components of Reinforcement Basic Skills**" -msgstr "" - -# aa07ad7322ea47988b9ec0cd49e43efb -#: ../../source/training/tot/502_communication_skills.rst:741 -msgid "" -"The use of in-class skill components should be carefully selected, tailored " -"to the participants' ages, capability level, needs and background, the " -"purpose and nature of the task. Reinforcement must be meaningful from the " -"participants." -msgstr "" - -# 70fad9b6994a4e0b8b3024bf5256bfbd -#: ../../source/training/tot/502_communication_skills.rst:745 -msgid "Some components of providing reinforcement are:" -msgstr "" - -# 14e66dbf658e49f8b4e60c7872aeeaf1 -#: ../../source/training/tot/502_communication_skills.rst:747 -msgid "Positive reinforcement" -msgstr "" - -# 6d1d7e84f68f433f987cece7a78a2b3d -#: ../../source/training/tot/502_communication_skills.rst:749 -msgid "Verbal reinforcement" -msgstr "" - -# af03d5b5aacf4e3cb9c6363c50e62229 -#: ../../source/training/tot/502_communication_skills.rst:751 -msgid "" -"Reinforcement can be verbal words that are spoken by the teacher. Examples " -"of it are good, well, precise, I appreciate the income, very intelligent " -"mind, etc." -msgstr "" - -# 53d3d867c64a440182558a2c9487d1d2 -#: ../../source/training/tot/502_communication_skills.rst:755 -msgid "Gestural reinforcement" -msgstr "" - -# 4b60cbeb87ae4e818600c2d1848aa01b -#: ../../source/training/tot/502_communication_skills.rst:757 -msgid "" -"This reinforcement is given in the form of gestures, facial or limb " -"movements that can give the impression to the students. For example: Lifting " -"an eyebrow, smiling, leering eyes, applause, nodding in agreement, raising " -"the thumb sign, etc." -msgstr "" - -# dfb211bd2cea40a9b776cb5ad507e25b -#: ../../source/training/tot/502_communication_skills.rst:762 -msgid "Approaching reinforcement" -msgstr "" - -# 3ad56634fe704226b84aca3ca93e8f92 -#: ../../source/training/tot/502_communication_skills.rst:764 -msgid "" -"This reinforcement is done by approaching students to express the trainer’s " -"concern for the work, behavior or appearance of the participants. For " -"example: the trainer sits in a group, stands next to a participant. Often " -"the trainer approaches participants to give them verbal reinforcement." -msgstr "" - -# 07cb62aab5a7433b8717d945dc5aeaf2 -#: ../../source/training/tot/502_communication_skills.rst:770 -msgid "Reinforcement through touches" -msgstr "" - -# 3bc48a7c6f754aae9354ee4a592f56fd -#: ../../source/training/tot/502_communication_skills.rst:772 -msgid "" -"A trainer can express appreciation to the participants by patting them, " -"shaking their hands or raising their hands." -msgstr "" - -# c6d239e715764e90a788983fdc128ee8 -#: ../../source/training/tot/502_communication_skills.rst:775 -msgid "Reinforcement by providing fun activities" -msgstr "" - -# 3a58cddc9f334b1595f73bfa5bd74469 -#: ../../source/training/tot/502_communication_skills.rst:777 -msgid "" -"This reinforcement may be in the form of asking participants to help his " -"friends when he has finished his work properly, participants are asked to " -"lead activities, etc." -msgstr "" - -# 480dd40c2d404cb4a970bff6ff58a9ce -#: ../../source/training/tot/502_communication_skills.rst:781 -msgid "Symbolic reinforcement or with objects" -msgstr "" - -# 5da8064f8e7d4bb9b03080a89dc9239e -#: ../../source/training/tot/502_communication_skills.rst:783 -msgid "" -"This form of reinforcement is the trainer’s effort in using a variety of " -"symbols to support the reinforcement of positive behavior of participants. " -"This form of reinforcement include commentary written in the work book, " -"giving stamps, money data collection, star, percentage and so on." -msgstr "" - -# 4efb8d79d4b646a59e72e3fa6c344d9d -#: ../../source/training/tot/502_communication_skills.rst:788 -msgid "Negative reinforcement" -msgstr "" - -# 3d9ef67682e244fbbd3cf5d517b096ac -#: ../../source/training/tot/502_communication_skills.rst:790 -msgid "" -"The way this is done is the same with positive reinforcement, except that it " -"is not pleasant for the participants in order to reduce or remove their " -"actions." -msgstr "" - -# 6fc3f0eb603d4679b2c67c47b671cced -#: ../../source/training/tot/502_communication_skills.rst:794 -msgid "How to use the components:" -msgstr "" - -# 2289ecbfa0e2472aa372e62e882b4322 -#: ../../source/training/tot/502_communication_skills.rst:796 -msgid "Varies" -msgstr "" - -# ea29aa040fbd4d75880088c3daddf164 -#: ../../source/training/tot/502_communication_skills.rst:797 -msgid "Provide better reinforcement directly and immediately" -msgstr "" - -# 21f4c52d3e484a639d3422292fe2bc4e -#: ../../source/training/tot/502_communication_skills.rst:798 -msgid "" -"For certain purposes the use of reinforcement can never be given. For " -"example, for participants who answered incorrectly, reinforcement is given " -"to participants in the effort of answering but not on the quality of the " -"answer. The trainer acts should be followed by asking the first participant " -"to imitate the answer or giving consideration to his answer" -msgstr "" - -# 1e21d76056ee4bd58314980a4fa9a1fc -#: ../../source/training/tot/502_communication_skills.rst:803 -msgid "" -"Providing reinforcement is a behavior that is easier said than done. " -"Therefore intensive exercises are done by the trainer candidates." -msgstr "" - -# 0f83cbbd571e4cd6b15542cf9f36bd77 -#: ../../source/training/tot/502_communication_skills.rst:806 -msgid "**e. Basic skills in Using Variations**" -msgstr "" - -# ba22cb7bdf66492fafdcfa0400669780 -#: ../../source/training/tot/502_communication_skills.rst:810 -msgid "" -"Using variations is defined as the trainer’s effort in in the context of the " -"training process that aims to overcome the participants’ boredom in " -"following the training, so that participants always show perseverance, as " -"well as enthusiasm and active participation." -msgstr "" - -# 2d05b2fbfb9d4819a6d17d47a58da78d -#: ../../source/training/tot/502_communication_skills.rst:815 -msgid "Use in class is for:" -msgstr "" - -# fc86123f1834403d84876ce07bb778e4 -#: ../../source/training/tot/502_communication_skills.rst:817 -msgid "" -"Maintaining and improving the participants in issues related to the learning " -"aspects" -msgstr "" - -# 805f0f9e6ee44d13b0f8389a80954e5b -#: ../../source/training/tot/502_communication_skills.rst:819 -msgid "" -"Improving the possibility of motivation and curiosity through investigation " -"and exploration" -msgstr "" - -# 72c42ebf51fc4de2bb6b6b6c3b767bf6 -#: ../../source/training/tot/502_communication_skills.rst:821 -msgid "Establishing a positive attitude towards the trainer" -msgstr "" - -# cd35720008a843a0a315f60865c4369f -#: ../../source/training/tot/502_communication_skills.rst:822 -msgid "" -"The possibility of individual participants to be served so that it gives the " -"ease in learning" -msgstr "" - -# 56978df78a92460b967e5d6052456671 -#: ../../source/training/tot/502_communication_skills.rst:824 -msgid "" -"Encouraging learning activities that engage participants in a variety of " -"activities. Learning, interesting and useful in a variety of cognitive levels" -msgstr "" - -# 825a51a71d13456493e191fe28ad735a -#: ../../source/training/tot/502_communication_skills.rst:827 -msgid "**Components of Making Variations Skill**" -msgstr "" - -# 8120c7fb458d41618e1848efc54149d7 -#: ../../source/training/tot/502_communication_skills.rst:829 -msgid "Variation in training style" -msgstr "" - -# 64210443d612438a891de64a6bb749d9 -#: ../../source/training/tot/502_communication_skills.rst:831 -msgid "Variety of trainer’s teaching styles include these components:" -msgstr "" - -# 68f86e3519144d95a05abdc8812ddb1c -#: ../../source/training/tot/502_communication_skills.rst:833 -msgid "Voice variation: loud weak, fast slow, high low, great and small" -msgstr "" - -# e392438c5fcd47449f3b629ac9efaf08 -#: ../../source/training/tot/502_communication_skills.rst:834 -msgid "" -"Concentration of attention. Focusing attention can be done verbally, or by " -"using capital symbols" -msgstr "" - -# 3fa72f24c7224294a782070703199fe7 -#: ../../source/training/tot/502_communication_skills.rst:836 -msgid "" -"Silence. By the time the trainer has finished explaining, activities are " -"often observed to pause abruptly in a short moment" -msgstr "" - -# 6f393e0747e847a9af61dd8b136ccb56 -#: ../../source/training/tot/502_communication_skills.rst:838 -msgid "" -"There is a time of silence when the trainer is moving from one teaching " -"segment to the other" -msgstr "" - -# a664a9b38a734ba59f7f1075b3199845 -#: ../../source/training/tot/502_communication_skills.rst:840 -msgid "" -"Eye contact. To improve the relationship with the students and avoid " -"impersonal things, then eye contact is required during teaching process" -msgstr "" - -# 16e509094d344fcd9ab0cfd43f2c91a5 -#: ../../source/training/tot/502_communication_skills.rst:842 -msgid "" -"Gestures and lyrics: the change in face expression, head movement, body " -"movement is very important in communication process" -msgstr "" - -# f19f2023bee547bb821854b4853e8bef -#: ../../source/training/tot/502_communication_skills.rst:844 -msgid "" -"The change in trainer’s position. The participants’ attention can be " -"improved by the change in trainer’s position in the communication " -"interaction process" -msgstr "" - -# 06ee169a799d48558fdbd815812ba125 -#: ../../source/training/tot/502_communication_skills.rst:848 -msgid "Variations in the use of media and teaching materials" -msgstr "" - -# 66bc292d7c7d42ab9eb0eea21bfdc6f8 -#: ../../source/training/tot/502_communication_skills.rst:850 -msgid "" -"Variations in any type of media or variations between media type need to be " -"considered in the learning process" -msgstr "" - -# 24045d2ade3646868a1c67f9fe92349f -#: ../../source/training/tot/502_communication_skills.rst:853 -msgid "Variations of interaction pattern and participant’s activity" -msgstr "" - -# 84882a92a0094e8bb6206b5ff5fde1e6 -#: ../../source/training/tot/502_communication_skills.rst:855 -msgid "" -"The range of interaction can move between the two extreme poles, the trainer " -"as the center of activities and participants as the center of activities. " -"Changes in the interaction between the two poles will result in an activity " -"pattern that is experienced by the participants. From the description above, " -"it is clear that the skills in using variations are wider compared with the " -"skill of providing reinforcement and inquiry skills." -msgstr "" - -# 726530bead434a3da1ef5d959ac978ce -#: ../../source/training/tot/502_communication_skills.rst:863 -msgid "**The principles that need to be understood**" -msgstr "" - -# 3024bbaacf0f415a9d57b22947118e41 -#: ../../source/training/tot/502_communication_skills.rst:865 -msgid "" -"The principles which will need the use of natural variation among others are:" -msgstr "" - -# 1d4894a7fd7244a1900f8bd5130a8289 -#: ../../source/training/tot/502_communication_skills.rst:867 -msgid "Changes have to be smooth and accurate" -msgstr "" - -# 73da6b01a3fe40a69169f79485a9281e -#: ../../source/training/tot/502_communication_skills.rst:868 -msgid "The use of variation technique should be smooth and accurate" -msgstr "" - -# 7a4c8ac0cabc49e3b2567c9442f25dd0 -#: ../../source/training/tot/502_communication_skills.rst:869 -msgid "" -"The use of the variation components must be completely structured and " -"planned in advance" -msgstr "" - -# df10a677d58745f5a7e9ce52f7501350 -#: ../../source/training/tot/502_communication_skills.rst:871 -msgid "" -"The use of variation components to be flexible and spontaneous based on " -"participant feedback" -msgstr "" - -# aea3d8c8180d41159cb1003495398c2e -#: ../../source/training/tot/502_communication_skills.rst:874 -msgid "**f. Classroom Management Skills**" -msgstr "" - -# 002ea49b55414623b4997c8423c7dcfe -#: ../../source/training/tot/502_communication_skills.rst:878 -msgid "" -"Classroom management is the creation of conditions that enable the training " -"management to take place optimally. This is in contrast to the management of " -"learning, i.e. the teaching itself involving the material components, " -"methods, and training aids in achieving the learning objectives." -msgstr "" - -# a3156ce1e57f48ebaaf6a1af690404e6 -#: ../../source/training/tot/502_communication_skills.rst:883 -msgid "" -"Examples of learning management problems are unclear learning objectives, " -"the subject matter is too easy or too hard, medium or inappropriate learning " -"methods, the materials are not in systematic order, etc. While examples of " -"classroom management problems are sleepy participants, crowded classroom, " -"participants not doing the tasks, participants teasing others, broken seats, " -"dirty classroom, etc." -msgstr "" - -# bb4efb8f360b4426b076a6e0b5ee7978 -#: ../../source/training/tot/502_communication_skills.rst:890 -msgid "" -"Managing a class is a function of the trainer as a manager. Management means " -"the organization or management in order for things to run smoothly, " -"effectively, and efficiently. So in this case the function of a trainer is " -"as a manager or an organizer. While the purpose of managing the class is: " -"(1) to create and maintain an optimal learning condition, (2) to restore in " -"the event of disruption to the learning process" -msgstr "" - -# 1520495a5c1c40a39ef2f827429251f5 -#: ../../source/training/tot/502_communication_skills.rst:897 -msgid "**Classroom Management Approaches**" -msgstr "" - -# f7244a5f40e34daa9d38a2c304e56402 -#: ../../source/training/tot/502_communication_skills.rst:899 -msgid "Various classroom management approaches are:" -msgstr "" - -# 66a7595b418e4fae990b9a6fc760004b -#: ../../source/training/tot/502_communication_skills.rst:901 -msgid "Behavior Modification approach" -msgstr "" - -# 1735df6712f04cb8b94063be0162b894 -#: ../../source/training/tot/502_communication_skills.rst:902 -msgid "Social climate approach" -msgstr "" - -# d4b0d54e6410484598cbc04f94877af8 -#: ../../source/training/tot/502_communication_skills.rst:903 -msgid "Group process approach" -msgstr "" - -# 9a8113641f7a4c31a9ab1708544ae7b6 -#: ../../source/training/tot/502_communication_skills.rst:905 -msgid "**Behavior Modification Approach**" -msgstr "" - -# e8bd3293ed6d48a1a993f15f453160ee -#: ../../source/training/tot/502_communication_skills.rst:907 -msgid "" -"Behavior modification approach departs from behavior psychology with the " -"basic assumption that human behavior either good or bad, to a certain " -"extent, is the result of learning process. Thus, human behavior can be " -"modified." -msgstr "" - -# 7db0c59bd1ab4ba88a82d396462036f7 -#: ../../source/training/tot/502_communication_skills.rst:911 -msgid "" -"Modifications include using positive reinforcement techniques, negative " -"reinforcement, deletion, and punishment. Positive reinforcement is a " -"response to a behavior, which can increase the likelihood of reoccurrence of " -"such behavior. Negative reinforcement is a reduction to the removal of an " -"unpleasant stimulus to encourage the recurrence of a behavior that arises as " -"a result of the reduction or removal." -msgstr "" - -# 5e272a473ea1485491c59c9a51167dbe -#: ../../source/training/tot/502_communication_skills.rst:918 -msgid "Principle of use:" -msgstr "" - -# 2e809f1a024448a7b956b3527317d0d0 -#: ../../source/training/tot/502_communication_skills.rst:920 -msgid "Avoidance of painful stimulus" -msgstr "" - -# 7d1b581c0d504c8abc8e4f8241a20267 -#: ../../source/training/tot/502_communication_skills.rst:921 -msgid "Clear target" -msgstr "" - -# b194a84b158c4a3c82c1a868c97c4fc5 -#: ../../source/training/tot/502_communication_skills.rst:922 -msgid "Provision of immediate reinforcement" -msgstr "" - -# 16c53a4253eb45bfa1b79dcbc649067b -#: ../../source/training/tot/502_communication_skills.rst:923 -msgid "Presenting various stimulus" -msgstr "" - -# e3386592ab7e49c692a612702d09269a -#: ../../source/training/tot/502_communication_skills.rst:924 -msgid "Enthusiasm" -msgstr "" - -# cb10595696d64c459b93d356a4560346 -#: ../../source/training/tot/502_communication_skills.rst:925 -msgid "Combined with other techniques" -msgstr "" - -# 5815644560e34d61837f919502ea79fa -#: ../../source/training/tot/502_communication_skills.rst:927 -msgid "**Social Climate Approach (Social-Emotional Climate)**" -msgstr "" - -# 2458747b0c6147649862ca12ec258357 -#: ../../source/training/tot/502_communication_skills.rst:929 -msgid "" -"Social-emotional climate approach departs from clinical psychology and " -"counseling, with the basic assumption that the teaching and learning " -"activities are effective and efficient when there are social-emotional " -"relationships between participants and trainers and between participants. " -"This can be pursued by means of:" -msgstr "" - -# dba6cd1b2f34488b9cabb909612e374e -#: ../../source/training/tot/502_communication_skills.rst:935 -msgid "Open attitude" -msgstr "" - -# c3181d79095d42f7b053b17ce101901b -#: ../../source/training/tot/502_communication_skills.rst:936 -msgid "Acceptance and respect of participants" -msgstr "" - -# bda1b5e44b4444c8a31810d6ddfaae4c -#: ../../source/training/tot/502_communication_skills.rst:937 -msgid "Empathy" -msgstr "" - -# 3cbe368acf0c496aa399f1c926e5b64e -#: ../../source/training/tot/502_communication_skills.rst:938 -msgid "Attitude to discuss the situation violations and violators" -msgstr "" - -# 265bf13630fc4ff5a11007f98bb81130 -#: ../../source/training/tot/502_communication_skills.rst:939 -msgid "Democratic attitudes" -msgstr "" - -# 92798ee239f14e6c9324645957942e1f -#: ../../source/training/tot/502_communication_skills.rst:941 -msgid "**Group Process Approach**" -msgstr "" - -# 6969646dc237497e883cd63e1953b6a9 -#: ../../source/training/tot/502_communication_skills.rst:943 -msgid "" -"Group process approach departs from social psychology and group dynamics, " -"with the basic assumption that the effective and efficient teaching and " -"learning activities take place in the context of a group, i.e. the class. " -"For that task the trainer has to create a class that has strong ties and can " -"work effectively and efficiently." -msgstr "" - -# ab989d87fa8d4fe1866407e9dc758880 -#: ../../source/training/tot/502_communication_skills.rst:949 -msgid "" -"To create a good group bonding atmosphere we need the establishment of " -"common goals in the group, clear rules to bind the participants into groups, " -"and leadership within the group. And to maintain a healthy working " -"environment, the trainer needs to do for example:" -msgstr "" - -# 56a1638109d345689bf33ea48ef97d1a -#: ../../source/training/tot/502_communication_skills.rst:954 -msgid "Encourage and equalize participation" -msgstr "" - -# e55551cb247f47b28cd394a854ed864a -#: ../../source/training/tot/502_communication_skills.rst:955 -msgid "Work out a compromise" -msgstr "" - -# 4e1150ad9bb949528d3eb516de7dedf2 -#: ../../source/training/tot/502_communication_skills.rst:956 -msgid "Reduce tension" -msgstr "" - -# 8c44a76243744dcdb3c4ab42204685c1 -#: ../../source/training/tot/502_communication_skills.rst:957 -msgid "Clarify communications" -msgstr "" - -# 00ff6709766b47d3a2364c5faaa8329a -#: ../../source/training/tot/502_communication_skills.rst:958 -msgid "Addressing conflicts between individuals or groups" -msgstr "" - -# 1743748f61c44d5d937b4b875bfab0f0 -#: ../../source/training/tot/502_communication_skills.rst:959 -msgid "" -"Showed that the presence of the participants are physically and " -"psychologically" -msgstr "" - -# e6bfe0db162740fea63adff510581454 -#: ../../source/training/tot/502_communication_skills.rst:961 -msgid "Describe sanctions" -msgstr "" - -# 48efc85603b745daa325647d0d8f715c -#: ../../source/training/tot/502_communication_skills.rst:964 -msgid "Bibliography" -msgstr "" - -# 488f2e5bc18d4a3f9b4017a949d92ea9 -#: ../../source/training/tot/502_communication_skills.rst:966 -msgid "" -"**Arend, Ricard.** 1997. Classroom Instructional Management. New York: The Mc" -msgstr "" - -# 634f3aa783ad4c38836f16ec79a2df56 -#: ../../source/training/tot/502_communication_skills.rst:966 -msgid "Graw-Hill Company." -msgstr "" - -# a1efc8ba45854aa1a23575397e8ca80d -#: ../../source/training/tot/502_communication_skills.rst:969 -msgid "" -"**Brent D. Ruben dan Lea P. Stewart.** 2013. *Komunikasi dan Perilaku " -"Manusia*" -msgstr "" - -# 2837ed233e5541199593853c749efebe -#: ../../source/training/tot/502_communication_skills.rst:969 -msgid "" -"*(Edisi Kelima), terjemahan Ibnu Hamad*. Jakarta: PT RajaGrafindo Persada." -msgstr "" - -# d3b6793bd9f541a68383ac198c402b4c -#: ../../source/training/tot/502_communication_skills.rst:972 -msgid "" -"**Bahri Syaeful dan Aswan Zain.** 2006. *Strategi Belajar Mengajar*. " -"Jakarta :" -msgstr "" - -# 0a9eb2313f764594bdc8be0e37871e63 -#: ../../source/training/tot/502_communication_skills.rst:972 -msgid "Rineka Cipta." -msgstr "" - -# 89737a8d654f4581ad62b0835b7d8f3d -#: ../../source/training/tot/502_communication_skills.rst:975 -msgid "" -"**Budimansyah, D.** 2002. *Model Pembelajaran dan Penilaian Portofolio*." -msgstr "" - -# a1d1b48795c5427e8e67d3eb5506d7f9 -#: ../../source/training/tot/502_communication_skills.rst:975 -msgid "Bandung: Genesindo." -msgstr "" - -# 428f3b7b0fcd47008943b5dd7f09393a -#: ../../source/training/tot/502_communication_skills.rst:978 -msgid "" -"**Joyce, B. and Weil, M.** (1980) Models of Teaching. Englewood Cliffs, New" -msgstr "" - -# deb45c421710462bb362dc91a7a5c91c -#: ../../source/training/tot/502_communication_skills.rst:978 -msgid "Jersey: Prentice-Hall Inc." -msgstr "" - -# 71ef564dd30948a29463e05c2767dd11 -#: ../../source/training/tot/502_communication_skills.rst:981 -msgid "" -"**Sanjaya Wina.** 2007. *Strategi Pembelajaran: Berorientasi Standar Proses*" -msgstr "" - -# da6663cb6f4a40159be6f08b7120c448 -#: ../../source/training/tot/502_communication_skills.rst:981 -msgid "*Pendidikan*. Jakarta: Kencana Prenada Media Group." -msgstr "" - -# 421500150c684a6a80177d71efbc4795 -#: ../../source/training/tot/502_communication_skills.rst:985 -msgid "" -"**Thomas M. Sheidel.** 1976. Speech Communication and Human Interaction. 2nd" -msgstr "" - -# 973ae41f06754701acdd81678755af77 -#: ../../source/training/tot/502_communication_skills.rst:984 -msgid "Edition. Glenville, III. Scott, Foresman & Co." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/batch_runner.po b/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/batch_runner.po deleted file mode 100644 index 22dab89f..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/batch_runner.po +++ /dev/null @@ -1,135 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-03-24 18:25+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 9155c06e4a9942629a057ecd282d114e -# ca640a8b67a148498436fe4f07774d69 -#: ../../source/user-docs/application-help/batch_runner.rst:4 -#: ../../source/user-docs/application-help/batch_runner.rst:11 -msgid "Batch Runner" -msgstr "Exécution par lots" - -# 7500d4b6463b4a65b055f4fb3a3afaa8 -#: ../../source/user-docs/application-help/batch_runner.rst:11 -msgid "*Batch Runner*" -msgstr "" - -# 7f94fe15baa8448e8d7be5566b489255 -#: ../../source/user-docs/application-help/batch_runner.rst:13 -msgid "" -"With this tool you can set up numerous scenarios and run them all in one go. " -"For example, in a typical use case you might define a number of flood impact " -"scenarios all using a standard dataset, such as :file:`flood.shp`. As new " -"flood data becomes available you replace :file:`flood.shp` and rerun the " -"scenarios using the batch runner. Using this approach you can quickly " -"produce regional contingency plans as your understanding of hazards changes. " -"When you run the batch of scenarios, PDF reports are generated automatically " -"and all placed in a single common directory making it easy for you to browse " -"and disseminate the reports produced." -msgstr "" - -# 569a2d6bc6784b8cb7453eab1c5cfcef -#: ../../source/user-docs/application-help/batch_runner.rst:25 -msgid "Steps for using the Batch Runner" -msgstr "" - -# 57f40193d9754eb5a28b549c0d92b237 -#: ../../source/user-docs/application-help/batch_runner.rst:27 -msgid "Create a normal scenario. Run the scenario to make sure it is valid." -msgstr "" - -# 5d6a7e7fcff64cd3ae535b9411f4516b -#: ../../source/user-docs/application-help/batch_runner.rst:28 -msgid "" -"Save the scenario :ref:`tb_save_scenario` use an easily accessible folder." -msgstr "" - -# e1c30cf1304d46e2879785506a5dc49a -#: ../../source/user-docs/application-help/batch_runner.rst:29 -msgid "Repeat the previous step until a few scenarios have been saved." -msgstr "" - -# 8878ac20d3d2450d9b4b8b7593370e06 -#: ../../source/user-docs/application-help/batch_runner.rst:30 -msgid "" -"Go to the Window menu --> Plugins --> InaSAFE --> Batch Runner you should " -"see a dialog box like below" -msgstr "" - -# 9155c06e4a9942629a057ecd282d114e -# ca640a8b67a148498436fe4f07774d69 -#: ../../source/user-docs/application-help/batch_runner.rst:37 -#, fuzzy -msgid "Batch Runner Dir" -msgstr "Exécution par lots" - -# 8bbae10d1564426491b48d4657963001 -#: ../../source/user-docs/application-help/batch_runner.rst:37 -msgid "*Batch Runner Directory*" -msgstr "" - -# 8fbfa8382df6420e85077f5e34c898bb -#: ../../source/user-docs/application-help/batch_runner.rst:39 -msgid "" -"Set the scenario directory to the one used in step 2. If this is done " -"correctly the results table will list your saved scenarios." -msgstr "" - -# ee642acea8ed4eb984e220f69e7a6c80 -#: ../../source/user-docs/application-help/batch_runner.rst:40 -msgid "" -"Set output destination to an easily accessible directory, this is where all " -"your reports will go." -msgstr "" - -# 1705d7f644b144a3af24813a4572981b -#: ../../source/user-docs/application-help/batch_runner.rst:41 -msgid "Run all your scenarios it should look like below" -msgstr "" - -# 9155c06e4a9942629a057ecd282d114e -# ca640a8b67a148498436fe4f07774d69 -#: ../../source/user-docs/application-help/batch_runner.rst:0 -#, fuzzy -msgid "Batch Runner Busy" -msgstr "Exécution par lots" - -# 558bf7dab1de499f8464491de4189296 -#: ../../source/user-docs/application-help/batch_runner.rst:48 -msgid "*Batch Runner Busy*" -msgstr "" - -# 24f20c06aa144df7821665df850b5812 -#: ../../source/user-docs/application-help/batch_runner.rst:50 -msgid "" -"look in the output destination. You should see all the reports and a batch " -"report confirmation." -msgstr "" - -# 9155c06e4a9942629a057ecd282d114e -# ca640a8b67a148498436fe4f07774d69 -#: ../../source/user-docs/application-help/batch_runner.rst:58 -#, fuzzy -msgid "Batch Runner Results" -msgstr "Exécution par lots" - -# 431cf363dc3f49f5a9dbea4eeb8fe764 -#: ../../source/user-docs/application-help/batch_runner.rst:58 -msgid "*Batch Runner Results*" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/converter.po b/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/converter.po deleted file mode 100644 index d571a1e6..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/converter.po +++ /dev/null @@ -1,114 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:36+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 7b12560027a74c15b89f7610755e8435 -#: ../../source/user-docs/application-help/converter.rst:4 -msgid "Shakemap Converter" -msgstr "" - -# fe9d947922b84cb0bbea74baf92602a8 -#: ../../source/user-docs/application-help/converter.rst:6 -msgid "" -"Shakemaps are useful for carrying out contingency planning for an earthquake " -"event. Normally these are distributed as grid.xml files which are not usable " -"in |project_name| or QGIS. The Shakemap Converter tool imports a grid.xml " -"file as a GEOTIFF file so that it can be used within |project_name|." -msgstr "" - -# 66012ebfae8c43299e86b6e74b0ff71e -#: ../../source/user-docs/application-help/converter.rst:11 -msgid "" -"Two different interpolation algorithms can be used during the import process " -"- **Nearest Neighbour** and **Inverse Distance**. After the conversion, the " -"tool automatically creates |project_name| keyword metadata for the layer so " -"that it can be used immediately for analysis." -msgstr "" - -#: ../../source/user-docs/application-help/converter.rst:21 -msgid "Converter" -msgstr "" - -# 87d809ed3a5d40359dd48f11ebfc62f8 -#: ../../source/user-docs/application-help/converter.rst:21 -msgid "*Converter*" -msgstr "" - -# 0181301c1a2b42549d48f140b4bb9cde -#: ../../source/user-docs/application-help/converter.rst:23 -msgid "To use this tool effectively:" -msgstr "Pout utiliser cet outil efficacement :" - -# 98de207c682a461e80a9bcb07b7708e6 -#: ../../source/user-docs/application-help/converter.rst:25 -msgid "Select a :file:`grid.xml` file for the input layer." -msgstr "" - -# a37e5bfd1f414a169a7988c1e9733ae3 -#: ../../source/user-docs/application-help/converter.rst:26 -msgid "Add the title of the shakemap that will be used for the keywords." -msgstr "" - -# 44427227fa3a412397caafd06a22bdc9 -#: ../../source/user-docs/application-help/converter.rst:27 -msgid "Add the source of the shakemap that will also be used for the keywords." -msgstr "" - -# 330aa238e2ef4e7b87f3ba3248fdc994 -#: ../../source/user-docs/application-help/converter.rst:28 -msgid "Choose where to write the output layer to." -msgstr "" - -# a87f810d2a954d478881ee64d51e0109 -#: ../../source/user-docs/application-help/converter.rst:29 -msgid "" -"Choose the interpolation algorithm that should be used when converting the " -"xml grid to a raster. If unsure keep the default." -msgstr "" - -# 6a7cc8ed8ccf446280eaaa7e6e8086ba -#: ../../source/user-docs/application-help/converter.rst:32 -msgid "" -"You can obtain shake data for free from the `USGS shakemap site `_." -msgstr "" - -# 8132a3d8949943a7a77366ea3cd35798 -#: ../../source/user-docs/application-help/converter.rst:35 -msgid "" -"When you download the grid file, you should right-click on it and choose :" -"menuselection:`Save as` in order to ensure that it is saved properly. OSX " -"and Linux users may also consider using command line tools to fetch the grid " -"file:" -msgstr "" - -# 3eab9a3a46dc4ebc964b57fd8d4a0d98 -#: ../../source/user-docs/application-help/converter.rst:39 -msgid "OSX::" -msgstr "" - -# 4ea7c9012bed475fb91f7ec8b80eb82a -#: ../../source/user-docs/application-help/converter.rst:43 -msgid "Linux::" -msgstr "" - -# 62351b5d56aa4edd8747d5a29bc69f12 -#: ../../source/user-docs/application-help/converter.rst:47 -msgid "Replace the in the commands above with the actual shake id." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/data_driven_age.po b/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/data_driven_age.po deleted file mode 100644 index 36503e2c..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/data_driven_age.po +++ /dev/null @@ -1,209 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:37+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 63eedc6dd6694b9581c3fc735504d31c -#: ../../source/user-docs/application-help/data_driven_age.rst:4 -msgid "Data Driven Age Post-processor" -msgstr "" - -# fb27b22fcfab4508bd5c2aa03dfdabfa -#: ../../source/user-docs/application-help/data_driven_age.rst:7 -msgid "Purpose" -msgstr "" - -# 237d9062eaea473da4aee5f815eb5391 -#: ../../source/user-docs/application-help/data_driven_age.rst:8 -msgid "" -"Data driven age processing is carried out during aggregation to determine " -"how many people are affected by a hazard according to their age distribution " -"(youth, adult, elderly). This feature is similar to the gender post-" -"processor. With data driven age, a custom age distribution ratio is used. " -"This is specified either in the data attributes of the aggregation polygons, " -"or by setting a global ratio for the whole aggregator vector layer using the " -"keywords editor or keywords wizard." -msgstr "" - -# e2510608b38d45c3827156b90eabec07 -#: ../../source/user-docs/application-help/data_driven_age.rst:16 -msgid "" -"This feature is used to give more specific information by giving the number " -"of affected youth, adult and elderly in an area such as within the " -"boundaries of a village. This can help better identify what areas should be " -"priorities during rescue operations and to give more attention to the " -"vulnerable population (e.g. elderly) and their needs." -msgstr "" - -# a64d80344e9744eca3ef035e82994eac -#: ../../source/user-docs/application-help/data_driven_age.rst:23 -msgid "Guidelines" -msgstr "" - -# 66a7aff31a644ecb89224e6f0ca9110a -#: ../../source/user-docs/application-help/data_driven_age.rst:26 -msgid "Data needed" -msgstr "" - -# 77fe3110226f47fba9b45bee984637e1 -#: ../../source/user-docs/application-help/data_driven_age.rst:28 -msgid "" -"The aggregator vector layer should contain percentage of age distribution in " -"the attribute table." -msgstr "" - -# 615adb8207b243faa707a43e67d09929 -#: ../../source/user-docs/application-help/data_driven_age.rst:32 -msgid "YOUTH" -msgstr "" - -# 71b20913ec074706b7bfc3cd8aaeff46 -#: ../../source/user-docs/application-help/data_driven_age.rst:32 -msgid "ADULT" -msgstr "" - -# e26b2c846dc246089358b6ca5a2582f4 -#: ../../source/user-docs/application-help/data_driven_age.rst:32 -msgid "ELDERLY" -msgstr "" - -# 0fb2c8a4c60642dda14591e8f0330fc9 -# 20169671e47e42f6b7b628833dd8f17f -#: ../../source/user-docs/application-help/data_driven_age.rst:34 -msgid "0.30" -msgstr "" - -# 54142f82856549b6aa726dab08a5bcbd -#: ../../source/user-docs/application-help/data_driven_age.rst:34 -msgid "0.40" -msgstr "" - -# 227ee67044b7499aacf4227401a0b012 -#: ../../source/user-docs/application-help/data_driven_age.rst:36 -msgid "0.25" -msgstr "" - -# 7206fd2e1d0f475b943c6e6a8676d8f4 -#: ../../source/user-docs/application-help/data_driven_age.rst:36 -msgid "0.65" -msgstr "" - -# 69541e37c5bd4c8eb0a8ee132ea94803 -#: ../../source/user-docs/application-help/data_driven_age.rst:36 -msgid "0.10" -msgstr "" - -# 5db66218e03d4ef896f6bd2a295d9086 -#: ../../source/user-docs/application-help/data_driven_age.rst:40 -msgid "Category" -msgstr "" - -# 1d5700614f70493596f7e9c768bbefef -#: ../../source/user-docs/application-help/data_driven_age.rst:42 -msgid "Ratio attributes or Ratio defaults should be populated up." -msgstr "" - -# a2fc00a05fe44aada8a8dcb85bf53f81 -#: ../../source/user-docs/application-help/data_driven_age.rst:45 -msgid "Key" -msgstr "" - -# 90e6b30b479b4cc7a645c42dbae88cf9 -#: ../../source/user-docs/application-help/data_driven_age.rst:45 -msgid "Allowed Values" -msgstr "" - -# 27df81ea9fcc42318c1436e7f6e8058f -#: ../../source/user-docs/application-help/data_driven_age.rst:47 -msgid "youth ratio attribute / youth ratio default" -msgstr "" - -# 1a0d571624c54d44ace6e81e427be25a -#: ../../source/user-docs/application-help/data_driven_age.rst:47 -msgid "youth" -msgstr "" - -# ad2a21f80d5946899b1e7d51ea7da157 -#: ../../source/user-docs/application-help/data_driven_age.rst:49 -msgid "adult ratio attribute / adult ratio default" -msgstr "" - -# 6fc69ceb8c7d49699cc9f2f5164afc59 -#: ../../source/user-docs/application-help/data_driven_age.rst:49 -msgid "adult" -msgstr "" - -# 9d145271135e4082a0a84462fd336c43 -#: ../../source/user-docs/application-help/data_driven_age.rst:51 -msgid "elderly ratio attribute / elderly ratio default" -msgstr "" - -# 1d0dcf70f97b4a34b91ad498027e2698 -#: ../../source/user-docs/application-help/data_driven_age.rst:51 -msgid "elderly/elder" -msgstr "" - -# 2191334430684b9baa438955c0b9c73f -#: ../../source/user-docs/application-help/data_driven_age.rst:56 -msgid "" -"Age postprocessing options can be specified either using ratio attributes or " -"ratio defaults." -msgstr "" - -# 43739be3f4694eaf89441a9db8e8b135 -#: ../../source/user-docs/application-help/data_driven_age.rst:59 -msgid "" -"1. **Ratio Attributes:** In this mode, data used for postprocessing is from " -"the attributes of the aggregation layer itself. Consider the example below " -"where each aggregation area has an attribute indicating the ratios of age or " -"gender." -msgstr "" - -#: ../../source/user-docs/application-help/data_driven_age.rst:-1 -msgid "Example age ration map for Jakarta" -msgstr "" - -# 88ff3d12434e4730a0e43e5c0c42ed63 -#: ../../source/user-docs/application-help/data_driven_age.rst:68 -msgid "" -"In the keywords editor you can refer to these attributes and the age and " -"gender ratios will be extrapolated based on the defined values." -msgstr "" - -#: ../../source/user-docs/application-help/data_driven_age.rst:-1 -msgid "Age Post-processor configuration from layer attributes" -msgstr "" - -# 5989e3cf71564c8094dc91d793857ee9 -#: ../../source/user-docs/application-help/data_driven_age.rst:76 -msgid "" -"2. **Ratio Defaults:** In this mode, the default values will be used. In " -"this case you may not know per-area what the age and gender breakdowns are " -"but rather apply the ratios globally (to all aggregation areas)." -msgstr "" - -#: ../../source/user-docs/application-help/data_driven_age.rst:-1 -msgid "Age Post-processor configuration using default values" -msgstr "" - -# 07a63df1f23b418e88a0716f4fb122d5 -#: ../../source/user-docs/application-help/data_driven_age.rst:86 -msgid "" -"A similar user interface is provided in the :ref:`keywords wizard " -"` user interface." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/dock.po b/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/dock.po deleted file mode 100644 index f3cb3d92..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/dock.po +++ /dev/null @@ -1,621 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Werner Macho , 2014 -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-09-16 20:01+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# c04dffd74fd2457a89cd0f4d1ee98407 -#: ../../source/user-docs/application-help/dock.rst:4 -msgid "|project_name| Panel" -msgstr "|project_name| Panneau" - -# 8c62821d8be84e64bc9323be27c755c1 -#: ../../source/user-docs/application-help/dock.rst:6 -msgid "" -"This document describes the usage of the |project_name| 'dock panel' - the " -"primary interface for running risk scenarios within the QGIS environment." -msgstr "" -"Ce document décrit l'utilisation du panneau |project_name|, qui est " -"l'interface principale pour simuler des scénarios de risque dans QGIS." - -# e9b75e64deea419296cf59b25df2c8dc -#: ../../source/user-docs/application-help/dock.rst:9 -msgid "" -"In order to use |project_name| effectively, you should also read the :doc:" -"`keywords` and :doc:`impact_functions` documentation before getting started." -msgstr "" -"Afin d'utiliser |project_name| de manière efficace, vous devriez consulter " -"également la documentation sur :doc:`keywords` et :doc:`impact_functions` " -"avant de commencer." - -# ab2ee68a68d34c6d9e6db26e985bdb52 -#: ../../source/user-docs/application-help/dock.rst:13 -msgid "" -"The |project_name| dock panel is the main way to interact with the tools " -"that are provided in |project_name|. After you have installed the |" -"project_name| plugin, the dock panel will automatically load in QGIS and " -"appear somewhere on your screen. It looks like this:" -msgstr "" -"Le panneau |project_name| est le principal moyen d´interagir avec les outils " -"fournis dans |project_name|. Après avoir installé l'extension |" -"project_name|, le panneau se charge automatiquement dans QGIS. Il ressemble " -"à ça:" - -# ed7b9faec5644bcdbf2e3d247fcd9e78 -#: ../../source/user-docs/application-help/dock.rst:23 -#, fuzzy -msgid "Docking Panel" -msgstr "Panneau" - -# ed7b9faec5644bcdbf2e3d247fcd9e78 -#: ../../source/user-docs/application-help/dock.rst:23 -msgid "*Docking Panel*" -msgstr "Panneau" - -# f56eece0029b4d359d69c3528ebfd3fa -#: ../../source/user-docs/application-help/dock.rst:26 -msgid "" -"Drag and drop the dock panel to reposition it in the user interface. For " -"example, dragging the panel towards the right margin of the QGIS application " -"will dock it to the right side of the screen." -msgstr "" -"Vous pouvez glisser-déplacer le panneau pour le repositionner dans " -"l’interface du logiciel. Par exemple, déplacer le panneau vers la marge " -"droite de QGIS permet de l'ancrer dans la partie droite de l'écran." - -#: ../../source/user-docs/application-help/dock.rst:35 -#: ../../source/user-docs/application-help/dock.rst:147 -msgid "Dock on the right" -msgstr "" - -# 9db9f8779c4a48bd86489f193882b97b -#: ../../source/user-docs/application-help/dock.rst:35 -msgid "*Dock positioned on the right with a project loaded*" -msgstr "Attacher à droite avec le projet en cours" - -# 8f442e5b8f1549719f9546162c1978ec -#: ../../source/user-docs/application-help/dock.rst:37 -msgid "There are three components within the panel:" -msgstr "Il y a 3 zones principales dans le panneau : " - -# 8ea7ab068a2349f2bf673bece64479ed -#: ../../source/user-docs/application-help/dock.rst:39 -msgid "the :guilabel:`Questions` area" -msgstr "la zone :guilabel:`Questions`" - -# 6946e464c90744809a337c0c92bad0d8 -#: ../../source/user-docs/application-help/dock.rst:40 -msgid "the :guilabel:`Results` area" -msgstr "la zone :guilabel:`Results`" - -# ef49c9f901864bc686b326968cbfc414 -#: ../../source/user-docs/application-help/dock.rst:41 -msgid "the :guilabel:`Buttons` area" -msgstr "l'espace the :guilabel:`Boutons`" - -# 77ceb14f2fbb440e8a004e92169fd557 -#: ../../source/user-docs/application-help/dock.rst:43 -msgid "" -"At any time you can obtain help in |project_name| by clicking on the :" -"guilabel:`Help` buttons provided on each dock and dialog." -msgstr "" -"À tout moment vous pouvez accéder à l'aide dans |project_name| en cliquant " -"sur les boutons :guilabel:`help` situés sur chaque fenêtre." - -# 2690cd022ac540caaf0da972c389c266 -#: ../../source/user-docs/application-help/dock.rst:47 -msgid "The questions area" -msgstr "La zone des Questions" - -# 2782b966aab7448dba28797737e87e52 -#: ../../source/user-docs/application-help/dock.rst:49 -msgid "" -"The objective of |project_name| is to make it easy to perform an impact " -"analysis. The questions area provides a simple way to formulate the scenario " -"question. All questions are formulated in the form:" -msgstr "" - -# 76a6b96d958f455ca98d979669981f2f -#: ../../source/user-docs/application-help/dock.rst:54 -msgid "If [**hazard**] how many [**exposure**] might [**impact**]." -msgstr "Si [**catastrophe**] combien [**vulnerabilité**] peuvent [**impact**]." - -# 9a551e3dc72b44cba8e3b4ff919eb985 -#: ../../source/user-docs/application-help/dock.rst:56 -msgid "For example:" -msgstr "Par exemple :" - -# edaecbc808fe41729e848243e16f790b -#: ../../source/user-docs/application-help/dock.rst:58 -msgid "If **there is a flood** how many **schools** might **be closed**." -msgstr "" -"Si **il y a une inondation** combien de **écoles** peuvent **être fermées**" - -# 11476a9c6f614906a334a6eeac08bd2d -#: ../../source/user-docs/application-help/dock.rst:60 -msgid "" -"In order to answer such questions, the |project_name| developers have built " -"a number of **impact functions** that cover scenarios such as flood, " -"tsunami, volcanic ash fall, earthquake and more. Visit :ref:" -"`impact_functions` for detailed information on each impact function." -msgstr "" -"Afin de répondre à ces questions, les développeurs d'|project_name| ont " -"construit plusieurs **fonctions d´impact** couvrant des scénarios de crue/" -"inondation, tsunami, chute de cendres volcaniques, séisme, etc. Vous pouvez " -"vous référer à la documentation relative aux différentes :ref:" -"`impact_functions` pour en savoir plus." - -# b6eab0aaeaca4d20aa8ebccb26348dcf -#: ../../source/user-docs/application-help/dock.rst:65 -msgid "" -"To formulate these questions, various layers must be loaded into QGIS that " -"represent either **hazard** or **exposure** information." -msgstr "" -"La formulation de ces questions est effectuée en chargeant les couches dans " -"QGIS représentant les scénarios de **catastrophe** ou **vulnérabilité**." - -# 119c8d48155542d39ef5309449973280 -#: ../../source/user-docs/application-help/dock.rst:68 -msgid "" -"A **hazard** (:guilabel:`In the event of`) may be represented as, for " -"example, a raster layer in QGIS where each pixel in the raster represents " -"the current flood depth following an inundation event." -msgstr "" -"Une **catastrophe** (:guilabel:`dans l'éventualité de`) peut être " -"représentée par exemple comme une coouche raster dans QGIS dont chaque pixel " -"représente la hauteur d'eau actuelle suite à un épisode de crue/inondation" - -# 8333f3d06f944de58180df7bae5a8405 -#: ../../source/user-docs/application-help/dock.rst:71 -msgid "" -"An **exposure** (:guilabel:`How many`) layer could be represented, for " -"example, as vector polygon data representing building outlines, or a raster " -"outline where each pixel represents the number of people resident in that " -"cell." -msgstr "" -"Une couche **vulnérabilité** (:guilabel:`combien de`) peut être une couche " -"vecteur polygonale représentant les contours des bâtiments, ou des contours " -"raster où chaque pixel représente le nombre de résidents sur cette cellule." - -# 5aa5c2ff7f69462eb7c9819b2c443da2 -#: ../../source/user-docs/application-help/dock.rst:76 -msgid "" -"The **impact function** (:guilabel:`Might`) will combine these two input " -"layers in a mathematical model in order to postulate what the impacts of the " -"hazard will be on the exposure infrastructure or people." -msgstr "" -"La **fonction d'impact** (:guilabel:`peut`) combinera ces deux coouches en " -"entrée dans un modẽle mathématique pour estomer ce que l'impact de la " -"catastrophe sera sur les infrastructures ou la population vulnérables." - -# bbecf57301eb48f79afb4df41ce1e7a3 -#: ../../source/user-docs/application-help/dock.rst:80 -msgid "" -"By selecting a combination from the :guilabel:`In the event of` and :" -"guilabel:`How many` combo boxes, an appropriate set of impact functions will " -"be listed in the :guilabel:`Might` combo box." -msgstr "" -"en sélectionnant une combinaison de valeurs dans les boîtes :guilabel:`dans " -"l'éventualité de` et :guilabel:`combien de` , un ensemble de fonctions " -"d'impact sera listé dans la boîte :guilabel:`peut`" - -# e2d8bf9be4f54c00a800f40978d83c3c -#: ../../source/user-docs/application-help/dock.rst:84 -msgid "" -"How does the |project_name| plugin determine whether a layer should be " -"listed in the :guilabel:`In the event of` or :guilabel:`How many` combo " -"boxes? The plugin relies on simple keyword metadata associated with each " -"layer." -msgstr "" -"Vous vous demandez comment l'extension |project_name| détermine si une " -"couche doit apparaître comme :guilabel:`dans le cas où` ou :guilabel:" -"`Combien de` ? L'extension s'appuie sur des mot-clés de la métadonnée " -"associée à chacune des couches" - -# ebb9f940dad244e38f138f9b5cc15ce8 -#: ../../source/user-docs/application-help/dock.rst:89 -msgid "" -"The keyword system is described in detail in :doc:`keywords`. Each layer " -"that has a keyword defining its **category** as **hazard** will be listed in " -"the :guilabel:`In the event of` combo box. Similarly, a **category** of " -"**exposure** in the keywords will result in a layer being listed under the :" -"guilabel:`How many` combo box." -msgstr "" - -# 24905d4449134b7db728ae65068df2a9 -#: ../../source/user-docs/application-help/dock.rst:95 -msgid "" -"|project_name| uses the combination of **category**, **subcategory**, " -"**units** and **datatype** keywords to determine which **impact functions** " -"will be listed in the :guilabel:`Might` combo box." -msgstr "" - -# e33e7c703dc94346a898161ad44dd238 -#: ../../source/user-docs/application-help/dock.rst:99 -msgid "" -"The impact function can be configured (if applicable) by pressing the :" -"guilabel:`...` button next to the chosen impact function." -msgstr "" - -# 0db68d3522374745898c87692c3b7e7a -#: ../../source/user-docs/application-help/dock.rst:102 -msgid "" -"This is explained in more detail below under :ref:`analysis_parameters`." -msgstr "" - -# c45ad098cec44f7aa95dec15d7ef291e -#: ../../source/user-docs/application-help/dock.rst:104 -msgid "" -"As of InaSAFE 1.2, you can also choose an aggregation layer for both raster " -"and vector layers." -msgstr "" - -# e724cafc68394df89ac482357047abff -#: ../../source/user-docs/application-help/dock.rst:107 -msgid "" -"Aggregation allows you to specify an additional layer when defining the " -"analysis criteria. This layer is used to provide a by-area breakdown of the " -"results of the analysis. For example, if you are carrying out an analysis " -"for a city, you can use district areas within the city to provide per-area " -"results. In the absence of an aggregation layer, the analysis extent is used " -"as the aggregation unit. To use this option you must load a polygon layer " -"into QGIS that represents the areas you wish to summarise by." -msgstr "" - -# 2a842ac5df1c46e58fbb21ce11f00214 -#: ../../source/user-docs/application-help/dock.rst:115 -msgid "" -"After running an analysis, the questions area is hidden to maximise the " -"amount of space allocated to the results area (see below). You can re-open " -"the question area at any time by pressing the :guilabel:`Show question form` " -"button." -msgstr "" - -# 3285d28d54f340279555e5a6e15a71b5 -#: ../../source/user-docs/application-help/dock.rst:121 -msgid "The results area" -msgstr "" - -# 7323e00f797944feaf82347b8e01b1ea -#: ../../source/user-docs/application-help/dock.rst:123 -msgid "" -"The results area is used to display feedback to the user. Once an impact " -"scenario has been run (see next section), a summary table will be shown." -msgstr "" - -#: ../../source/user-docs/application-help/dock.rst:132 -msgid "Scenario results" -msgstr "" - -# c14ef4d5baa24660ae9e46899fb05780 -#: ../../source/user-docs/application-help/dock.rst:132 -msgid "*Results shown after processing of scenario*" -msgstr "" - -# 083cbaa56e4344a096611e9ddd1dd44b -#: ../../source/user-docs/application-help/dock.rst:134 -msgid "" -"If you select an **impact layer** (i.e. a layer that was produced using an |" -"project_name| impact function), in the QGIS Layers panel, this summary will " -"also be displayed in the results area." -msgstr "" - -# 9ad4d74764c34a5b8db2227a671ea8cf -#: ../../source/user-docs/application-help/dock.rst:138 -msgid "" -"When you select a **hazard** or **exposure** layer in the QGIS Layers panel, " -"the keywords for that layer will be shown in the :guilabel:`Results` area, " -"making it easy to understand what metadata exists for that layer." -msgstr "" - -# d9f632bfe21c465d8b0855c5e3f00ab5 -#: ../../source/user-docs/application-help/dock.rst:147 -msgid "*Showing keywords for active layer*" -msgstr "" - -# 8c3fe1a8582a4fab9a7db0b245b3434f -#: ../../source/user-docs/application-help/dock.rst:149 -msgid "" -"The :guilabel:`Results` area is also used to display status information. For " -"example, when a suitable combination of **hazard** (:guilabel:`In the event " -"of`), **exposure** (:guilabel:`How many`) and **impact function** (:guilabel:" -"`In the event of`) are selected, the results area will be updated to " -"indicate that you can proceed to run the impact scenario calculation. The :" -"guilabel:`Run` button will be activated." -msgstr "" - -#: ../../source/user-docs/application-help/dock.rst:161 -msgid "Ready to run" -msgstr "" - -# 61398f4673e04e13b5f49fb1284f77cf -#: ../../source/user-docs/application-help/dock.rst:161 -msgid "*Run button activated*" -msgstr "" - -# 4e779efe9608485d98c94b40c4761917 -#: ../../source/user-docs/application-help/dock.rst:163 -msgid "" -"Finally, the results area is also used to display error messages so that the " -"user is informed as to what went wrong and why. You may need to scroll down " -"a bit in the window." -msgstr "" - -#: ../../source/user-docs/application-help/dock.rst:172 -msgid "Displaying Problems" -msgstr "" - -# 70a11a0da7f241dea01b9eb6ff23f9c8 -#: ../../source/user-docs/application-help/dock.rst:172 -msgid "*Showing error messages*" -msgstr "" - -# 2b2c5665e05e4911b3037c630a8e26b4 -#: ../../source/user-docs/application-help/dock.rst:174 -msgid "" -"To allow more space for the results your question is automatically hidden to " -"make the results area as large as possible for displaying the results. If " -"you want to have a look again what the question was that you formulated " -"click on the :guilabel:`Show question form` button at the top of the results " -"area." -msgstr "" - -# 2690cd022ac540caaf0da972c389c266 -#: ../../source/user-docs/application-help/dock.rst:185 -#, fuzzy -msgid "Show question form" -msgstr "La zone des Questions" - -# c357acedd7084cf1bf718f5898ee8346 -#: ../../source/user-docs/application-help/dock.rst:185 -msgid "*Show question form*" -msgstr "" - -# 8f609c4db5ac45dbbc822784846a9c97 -#: ../../source/user-docs/application-help/dock.rst:187 -msgid "" -"To hide the question again to have more space for the results, simply make " -"active the layer which |project_name| created during the calculation in the " -"Layers panel." -msgstr "" - -# e2a9a762c3114b1db35ac8dc9251f9a7 -#: ../../source/user-docs/application-help/dock.rst:191 -msgid "" -"At the bottom of the error display you may see a button like the following. " -"Click on this button to display a box which contains diagnostic information " -"that can be submitted as part of a bug report if you think the error was " -"incorrect." -msgstr "" - -# 26039dd0772547afa738e3e387e6d36b -#: ../../source/user-docs/application-help/dock.rst:200 -msgid "The buttons area" -msgstr "" - -# b4db349d90044872bf13aab52216eb80 -#: ../../source/user-docs/application-help/dock.rst:202 -msgid "The buttons area contains four buttons:" -msgstr "" - -# 2690cd022ac540caaf0da972c389c266 -#: ../../source/user-docs/application-help/dock.rst:209 -#, fuzzy -msgid "Buttons area" -msgstr "La zone des Questions" - -# 041955547b0842e8b676672c3013fd4a -#: ../../source/user-docs/application-help/dock.rst:209 -msgid "*Buttons Area*" -msgstr "" - -# 835ff369a5f54900879f6f351f95105f -#: ../../source/user-docs/application-help/dock.rst:211 -msgid "" -":guilabel:`Help` - click on this if you need context help, such as the " -"document you are reading right now!" -msgstr "" -":guilabel:`Aide` - pour l'aide contextuelle, comme le document que vous êtes " -"actuellement en train de lire." - -# 2530b4c75f304cff8ca54e1b7a8084c4 -#: ../../source/user-docs/application-help/dock.rst:213 -msgid "" -":guilabel:`About` - click on this to get information about |project_name|." -msgstr "" - -# 497a779f073246a9a9e574fbfe69a900 -#: ../../source/user-docs/application-help/dock.rst:214 -msgid "" -":guilabel:`Print...` - click on this if you wish to create a PDF of your " -"impact scenario project or to generate a report and open it in composer for " -"further tuning. An **impact layer** must be active before this button will " -"be enabled." -msgstr "" - -# d4a6a1bbdcaa4bb0b505d2396e3001d7 -#: ../../source/user-docs/application-help/dock.rst:218 -msgid "" -":guilabel:`Run` - when the combination of options in the questions area is " -"suitable to be run, this button is enabled." -msgstr "" - -# a0192127e426438fbc1de810180a49c4 -#: ../../source/user-docs/application-help/dock.rst:222 -msgid "Data conversions when running a scenario" -msgstr "Conversion de données lors de l'exécution d; un scénario" - -# 4db6e39820a548e0aee49f6e940f6b12 -#: ../../source/user-docs/application-help/dock.rst:224 -msgid "" -"When running a scenario, the data being used needs to be processed into a " -"state where it is acceptable for use by the impact function. In particular " -"it should be noted that:" -msgstr "" -"Lors de l'exécution d'un scénario, les données utilisées doivent être " -"prétraitées jusqu'à obtenir un état acceptable par la fonction d'impact. " -"Notez en particulier que :" - -# 25c83c3130524166970e697ba4dd7972 -#: ../../source/user-docs/application-help/dock.rst:228 -msgid "Remote datasets will be copied locally before processing" -msgstr "" - -# cf79e0a2422d496da9ee4937159c8943 -#: ../../source/user-docs/application-help/dock.rst:229 -msgid "" -"All datasets will be clipped to the intersection of the **hazard** layer, " -"the **exposure** layer and the current view extents" -msgstr "" - -# 70b4f1fdc98c42529f97725f955d564b -#: ../../source/user-docs/application-help/dock.rst:231 -msgid "" -"All clipped datasets will be converted (reprojected) to Geographic " -"(EPSG:4326) coordinate reference system before analysis" -msgstr "" - -# 96a09ef2446b470ba9a173638a7edf95 -#: ../../source/user-docs/application-help/dock.rst:237 -msgid "Setting analysis parameters" -msgstr "" - -# 7ee12cb27c96495c9efba0f31fa90067 -#: ../../source/user-docs/application-help/dock.rst:239 -msgid "" -"Depending on the impact function you choose there will be different options " -"to adjust the parameters of the the question you are asking. Some impact " -"functions have more configurable options and some have less. This depends on " -"the impact function itself and the question you are asking." -msgstr "" - -# 7f966eb41115473a9bd1c28819eed79e -#: ../../source/user-docs/application-help/dock.rst:244 -msgid "" -"To open the impact function configuration dialog click on the :guilabel:`..." -"` Button next to the :guilabel:`Might` combo box." -msgstr "" - -#: ../../source/user-docs/application-help/dock.rst:-1 -#: ../../source/user-docs/application-help/dock.rst:252 -msgid "Impact Function Configurator" -msgstr "" - -# ec08975488884c60877f3293de4f7e13 -#: ../../source/user-docs/application-help/dock.rst:252 -msgid "*Open the impact function configurator*" -msgstr "" - -# 7286541c283c4b8fb797eff29cb8899a -#: ../../source/user-docs/application-help/dock.rst:254 -msgid "There will be up to three tabs available:" -msgstr "" - -# 0039d4aa87554515ba2f61892f89db93 -#: ../../source/user-docs/application-help/dock.rst:256 -msgid "" -":guilabel:`Options`: Depending in the impact function you select, you can " -"influence the result of your question here (the impact function) by setting " -"different initial values which are presented depending on the function you " -"choose (not all impact functions may be customised)." -msgstr "" - -# f50c2dde6ef8410ca5985dc2e03ed2a9 -#: ../../source/user-docs/application-help/dock.rst:260 -msgid "" -":guilabel:`Postprocessors`: This takes the results from the impact function " -"and calculates derivative indicators. For example, if you have an affected " -"population total, the gender postprocessor will calculate gender specific " -"indicators such as additional nutritional requirements for pregnant women." -msgstr "" - -# 99b905b409d84cc49b690c0a28a6f932 -#: ../../source/user-docs/application-help/dock.rst:264 -msgid "" -":guilabel:`Minimum Needs`: If the impact function calculates effects on " -"people, this calculates the minimum needs of the people affected by the " -"impact scenario. To use this you should have the necessary data available " -"and calculate this by using the :ref:`minimum_needs`." -msgstr "" - -# e35ae668bd7148a3b99da89b9625886c -#: ../../source/user-docs/application-help/dock.rst:278 -msgid "Generating impact report" -msgstr "" - -# c6feeb7acb654228915193c46d7bfcf4 -#: ../../source/user-docs/application-help/dock.rst:280 -msgid "" -"When scenario analysis is complete you may want to generate a report. " -"Usually the :guilabel:`Print...` button will be enabled immediately after " -"analysis. If it is still inactive, select the impact layer in the Layers " -"panel." -msgstr "" - -# eabc21359f754c91933596866fef3d78 -#: ../../source/user-docs/application-help/dock.rst:284 -msgid "" -"To generate a report click on the :guilabel:`Print...` button in the buttons " -"area. This will open an :guilabel:`Impact report` dialog." -msgstr "" - -#: ../../source/user-docs/application-help/dock.rst:292 -msgid "Impact Report configuration" -msgstr "" - -# d8846dec8883463388c8aae327a5759f -#: ../../source/user-docs/application-help/dock.rst:292 -msgid "*Impact report configuration*" -msgstr "" - -# 665ef6a98b3142b3b8fa00b29382da78 -#: ../../source/user-docs/application-help/dock.rst:294 -msgid "The dialog has three components:" -msgstr "" - -# c74587c84ec849a590d6b2ba1c81dae2 -#: ../../source/user-docs/application-help/dock.rst:296 -msgid "" -":guilabel:`Area to print` allows you to customise the extent of the report " -"map. There are two options available. Choose :guilabel:`Current extent` if " -"the current canvas extent represents the necessary area. Choose :guilabel:" -"`Analysis extent` to set the extent of the report map to the impact layer " -"extent." -msgstr "" - -# f3b1742499ba42a394fdc12186f5406b -#: ../../source/user-docs/application-help/dock.rst:302 -msgid "" -":guilabel:`Template to use` allows you to select a template for the report. " -"The combo box lists all templates bundled with the plugin as well as " -"templates from the user-defined template directory (see :ref:" -"`toolbar_options` for information on how to set the templates directory). It " -"is also possible to select a custom template from any location - activate " -"the radio button under the combo box and provide a path to the template " -"using the :guilabel:`...` button." -msgstr "" - -# 29d4ddb6076f4010800f3ab92c3e778a -#: ../../source/user-docs/application-help/dock.rst:309 -msgid "" -"At the bottom are four buttons: :guilabel:`Open PDF` will generate the " -"report and export it in PDF format. The resulting file(s) will be opened in " -"your default PDF viewer. :guilabel:`Open composer` is used when you need to " -"adjust the generated report before printing. Click this button and the " -"report will be opened in the QGIS composer, where you can edit it as needed." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/impact_functions.po b/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/impact_functions.po deleted file mode 100644 index ac45c791..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/impact_functions.po +++ /dev/null @@ -1,150 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-03-01 21:05+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 4fd1705e66cf47eeb70b711581e06153 -#: ../../source/user-docs/application-help/impact_functions.rst:4 -msgid "Understand Impact Functions" -msgstr "" - -# e0c4221a299a4d8b9fdd3c88faf48021 -#: ../../source/user-docs/application-help/impact_functions.rst:6 -msgid "" -"This document explains the purpose of impact functions and lists the " -"different available impact function and the requirements each has to be used " -"effectively." -msgstr "" - -# b76f25e952c84f359fcb93b69144981e -#: ../../source/user-docs/application-help/impact_functions.rst:11 -msgid "What is an impact function?" -msgstr "" - -# c593910df53c489c8731b9cd2e2b8f7e -#: ../../source/user-docs/application-help/impact_functions.rst:13 -msgid "" -"An impact function is a software program that computes an impact assessment " -"given a number of inputs. The impact assessment will typically have a " -"*spatial* component (e.g. a GIS layer which can be incorporated into a map) " -"and a *non-spatial* component (e.g. a list of actions you may want to " -"consider carrying out, or a list of estimates of disaster risk reduction " -"elements such as how many bags of rice to make available)." -msgstr "" - -# fd7ea4ba93564badbe3b54274af4c88d -#: ../../source/user-docs/application-help/impact_functions.rst:22 -msgid "Selecting an impact function" -msgstr "" - -# 35a44408369846b5b3ec914427e601b1 -#: ../../source/user-docs/application-help/impact_functions.rst:24 -msgid "" -"Impact functions are bundled with the |project_name| software. The graphical " -"user interface (provided as a plugin for QGIS) will offer a list of impact " -"functions that can be used based on the layers you have loaded and their :" -"doc:`keywords `." -msgstr "" - -# d06d96c7311c4f05a7e10ca33e1f252f -#: ../../source/user-docs/application-help/impact_functions.rst:30 -msgid "Exploring impact functions" -msgstr "" - -# 0928baee3b234e8a974af0ebd1d31090 -#: ../../source/user-docs/application-help/impact_functions.rst:32 -msgid "" -"You can use the impact function table to explore all of the possible impact " -"functions that can be used. They are listed in a table with a series of pick-" -"lists (combo boxes) above which can be used to filter the functions based on " -"different criteria as illustrated below." -msgstr "" - -#: ../../source/user-docs/application-help/impact_functions.rst:43 -msgid "unfiltered impact function table" -msgstr "" - -# d620297297864ed9a8aa74d6a6187fce -#: ../../source/user-docs/application-help/impact_functions.rst:43 -msgid "*Unfiltered impact function table*" -msgstr "" - -# a0e1774096cb4d518d0bcf005cce6333 -#: ../../source/user-docs/application-help/impact_functions.rst:45 -msgid "" -"When applying a filter set, the list of available functions that meet those " -"criteria is updated as shown below." -msgstr "" - -#: ../../source/user-docs/application-help/impact_functions.rst:53 -msgid "filtered impact function table" -msgstr "" - -# e78c0ac799624ca0851bcf0c7a03cea6 -#: ../../source/user-docs/application-help/impact_functions.rst:53 -msgid "*Filtered impact function table*" -msgstr "" - -# fafd1bda38ed467b984ea3d3f5d56ade -#: ../../source/user-docs/application-help/impact_functions.rst:55 -msgid "" -"The impact function table is simply a browser to help you to familiarise " -"yourself with the functions available. For the actual usage of the functions " -"you need to have layers available (i.e. loaded in QGIS) with the appropriate " -"keywords for your target function." -msgstr "" - -# 7ff308d63f7242a8b8104645367205e7 -#: ../../source/user-docs/application-help/impact_functions.rst:61 -msgid "Configurable impact functions" -msgstr "" - -# d7811963e88e4630ba6903f324265e33 -#: ../../source/user-docs/application-help/impact_functions.rst:63 -msgid "" -"Some impact functions can be configured before use. For example if you have " -"a raster flood hazard layer where each pixel represents flood depth, you can " -"set depth thresholds (low / medium / high)." -msgstr "" - -# 648f2a2619f84d93a80c917b5955dbde -#: ../../source/user-docs/application-help/impact_functions.rst:68 -msgid "Creating impact functions" -msgstr "" - -# 5c85f4b5546c47aebd115e3e0d4135bf -#: ../../source/user-docs/application-help/impact_functions.rst:70 -msgid "" -"If you feel there is an important impact function which is missing, there " -"are two avenues you can follow:" -msgstr "" - -# ec979050a11647f7be31fd20e43a681c -#: ../../source/user-docs/application-help/impact_functions.rst:73 -msgid "" -"If you have basic python programming skills, you could implement a new " -"impact function yourself." -msgstr "" - -# 68b8784132c4428da85efa2ddb8ac1c4 -#: ../../source/user-docs/application-help/impact_functions.rst:75 -msgid "" -"You can file a ticket on our `issue tracking system `_, and if time and resources allow we will implement " -"it for you." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/impact_layer_merge_tool.po b/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/impact_layer_merge_tool.po deleted file mode 100644 index 70bdbbf2..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/impact_layer_merge_tool.po +++ /dev/null @@ -1,349 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:36+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 039dd008a7414484a0e8777af393661d -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:4 -msgid "The Impact Layer Merge Tool" -msgstr "" - -# c3c24556df6b4b1b8a844577b40f26fc -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:6 -msgid "" -"In some cases you may wish to create a report containing the combined output " -"of two impact functions for the same area for the **same hazard** but " -"**different exposures**. For example, you may carry out an assessment of the " -"impact of a flood on population and on buildings and combine the results " -"into a single report. The Impact Layer Merge tool allows you to do this." -msgstr "" - -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:18 -msgid "Opened impact merge dialog" -msgstr "" - -# 6c2c3aedcf7e4ccaa4b0d1481dba4415 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:18 -msgid "*Opened impact merge dialog*" -msgstr "" - -# a30f97b33fb24f9a91773e5fe0c34b14 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:21 -msgid "Prerequisites" -msgstr "" - -# 10939c7dc1e045129389e181b03329cf -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:23 -msgid "" -"In order to use this tool, please bear in mind the following requirements:" -msgstr "" - -# 7268222e7ffd44bc971a53b0a9137049 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:25 -msgid "Both impact layers should be loaded in your current project" -msgstr "" - -# b1ca8f24d04443348c12c52be90685ab -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:26 -msgid "" -"Both impact layers should have been created for the same geographic region" -msgstr "" - -# cf6bfe32144843a290bc078b18d09a38 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:27 -msgid "The same aggregation area should be used for both assessments" -msgstr "" - -# 29dd67f2aa8e4901b9ee93724bde9314 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:30 -msgid "Procedure" -msgstr "" - -# dabb8db67e8d40e7be0a88a4ed9edf8b -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:32 -msgid "To use this tool, follow this procedure:" -msgstr "" - -# 4b0d8472933e43d8bc1f985ddfc5e356 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:34 -msgid "" -"Run an impact assessment for an area using aggregation. such as flood impact " -"on buildings aggregated by municipal boundaries." -msgstr "" - -# f06c1d956acb4e8fb65c534c9cfaab2b -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:36 -msgid "" -"Run a second impact assessment for the same area using the same aggregation. " -"e.g. flood impact on people aggregated by municipal boundaries." -msgstr "" - -# 64a924a0493240b48bcdc3d3de0aca12 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:38 -msgid "" -"Open the Impact Merge tool and select each impact layer from the pick lists " -"provided." -msgstr "" - -# 7922256af6724dd98f41a7cf5c33075f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:40 -msgid "" -"Select the aggregation layer that was used to generate the first and second " -"impact layer." -msgstr "" - -# 8ccc9a08787840f29c04b2b7ec8f5e2f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:42 -msgid "Select an output directory." -msgstr "" - -# 34890d7014dc48e4b2205c48042bff85 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:43 -msgid "" -"Check the box next to :guilabel:`Use customized report template` and select " -"the report template file if you want to use your own template. Note that all " -"the map composer components that are needed must be completed." -msgstr "" - -# fe4afb2258784cad9413ec26319f7dd4 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:46 -msgid "" -"Click :guilabel:`OK` to generate the per aggregation area combined summaries." -msgstr "" - -# c888b0dfde8c4b12bfd521919843e80f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:49 -msgid "Generated outputs" -msgstr "" - -# 481b824f6026482b8c68d5aab24ed45e -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:51 -msgid "" -"The tool will generate a PDF per aggregation area. The PDFs will be placed " -"in the designated output directory after completion of the merge process. " -"The output will consist of a map page and a table page. These are " -"illustrated below:" -msgstr "" - -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:61 -msgid "Impact merge report - map page" -msgstr "" - -# b4ce03768f4e408b85fe205e738525a7 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:61 -msgid "*Map page generated by the impact merge tool*" -msgstr "" - -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:69 -msgid "Impact merge report - table page" -msgstr "" - -# 0cbf80374f5a4e9dbce92b0599c41772 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:69 -msgid "*Table page generated by the impact merge tool*" -msgstr "" - -# f2969273dc74433a9079929067f19096 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:71 -msgid "" -"In the case of impact assessments where no aggregation has been used, only a " -"single PDF report is generated. In the case of impact assessments where " -"aggregation has been used, one PDF is generated per aggregation area." -msgstr "" - -# ae0d654165d347baaba53a20c8532a42 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:75 -msgid "" -"After report generation completes, the output directory will be opened " -"automatically." -msgstr "" - -# 75857b1427e44c2083f1f6df4f587dfc -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:79 -msgid "Using customised templates" -msgstr "" - -# a4a709f109ff4577be746fa928864f5e -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:80 -msgid "" -"The default template report is located in :file:`/resources/qgis-composer-" -"templates/merged-report.qpt`. If that template does not satisfy your needs, " -"you can use your own report template. Before using your own report template, " -"make sure that your template contains all of these elements with id:" -msgstr "" - -# d80f52afc7dc421da904800b581f2c2f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:86 -msgid "**impact-map**, a QgsComposerMap" -msgstr "" - -# 56206dd11776491aae49f9f070508280 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:87 -msgid "**safe-logo**, a QgsComposerPicture" -msgstr "" - -# 586e70f101724ae0a30ff7fb886986ec -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:88 -msgid "**summary-report**, a QgsComposerLabel" -msgstr "" - -# 876e736fc8c14070bb6453e3ab50d74b -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:89 -msgid "**aggregation-area**, a QgsComposerLabel" -msgstr "" - -# b501bd72637f4e45b7250088c11e7a3f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:90 -msgid "**map-scale**, a QgsComposerScaleBar" -msgstr "" - -# f31edd65855741a685cff99f99a3259c -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:91 -msgid "**map-legend**, a QgsComposerLegend" -msgstr "" - -# 19dbd3c019f2460e895c748f2a56eec4 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:92 -msgid "**organisation-logo**, a QgsComposerPicture" -msgstr "" - -# 6d70996d54f9417caec98a987c8e0315 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:93 -msgid "**merged-report-table**, a QgsComposerHTML" -msgstr "" - -# 298d875c5f0441dbb9fd094ce7f81db3 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:95 -msgid "" -"If any of those elements does not exist on the report template, the tools " -"will tell you what element is missing on the template." -msgstr "" - -# 2232728964524ab799dd8b045b53f06b -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:98 -msgid "You can arrange those elements in any position you want." -msgstr "" - -# 89d53b5331d148c8ad167a8c0311e44f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:101 -msgid "Map template elements" -msgstr "" - -# 3ab56b8713d94619909be5a587ae2a20 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:102 -msgid "" -"In terms of value replacement, there are three groups of elements on the " -"template:" -msgstr "" - -# 07121ad53ddf41cbaf093bd1af85f965 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:104 -msgid "" -"1. Elements that can be changed with the |project_name| Options tool. To " -"change the value of these elements, please go to **InaSAFE Options** and " -"change the value of the related field. Those elements are:" -msgstr "" - -# 40b5c1baefa44d82ad47dd5d2b0cf9ee -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:109 -msgid "" -"**organisation-logo**. It corresponds to the :guilabel:`Organisation logo` " -"field in InaSAFE Options. If you do not fill this field, then the default " -"one, :file:`supporters.png`, will be used." -msgstr "" - -# 7f0e399bfb4743cc989c323e1e339705 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:113 -msgid "" -"**disclaimer**. This corresponds to the :guilabel:`Disclaimer text` field in " -"InaSAFE Options. If you do not fill in this field the default text will be " -"used: \"InaSAFE has been jointly developed by Indonesian Government-BPNB, " -"Australian Govenment-AIFDR and the World Bank-GFDRR. These agencies and the " -"individual software developers of InaSAFE take no responsibility for the " -"correctness of outputs from InaSAFE or decisions derived as a consequence.\"" -msgstr "" - -# 15318aad487b4def8ea90b7dda838d18 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:120 -msgid "" -"2. Elements containing tokens. The id of these elements is not significant, " -"only the token it contains. At render time, these tokens will be replaced. " -"If you want to have a label containing the value of these elements, enclose " -"these elements with [] on a label i.e **[impact-title]** or **[hazard-" -"title]**. The elements are listed below:" -msgstr "" - -# 6fa62273a623439080cd2333a1d542d9 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:125 -msgid "" -"**impact-title** - indicates the title of two impacts. The value will be " -"\"*first_impact_title* and *second_impact_title*\"" -msgstr "" - -# 1ddcdf546c0044fea2ade3ba6f6d0983 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:126 -msgid "" -"**hazard-title** - indicates the hazard title used to generate the impact " -"layer." -msgstr "" - -# 2e9eddd655fa4c3392e783819a42f3f0 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:128 -msgid "" -"3. Elements that are direcly updated by the renderer. All of these elements " -"below are generated automatically by the tools." -msgstr "" - -# dd25d8b273414bff99755133a4ef4b42 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:131 -msgid "**impact-map**. This contains the map of two impact layers." -msgstr "" - -# 9f3f061f71c444a18ca25399c682224f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:132 -msgid "" -"**summary-report**. This contains the summary of the impact from two impact " -"layers." -msgstr "" - -# 177bdbfa00c64aff86359916e7760d63 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:133 -msgid "**aggregation-area**. This contains the name of the aggregation area." -msgstr "" - -# e91fad77fd924e89b3fdf7780e28ec5d -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:134 -msgid "" -"**map-scale**. This indicates the scale of the map. To work with any layer " -"projection preferences, we encourage you to use a numeric scale bar." -msgstr "" - -# 7bb4a52dbfdc4c2f91ab8dd9a2e1c9ae -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:135 -msgid "" -"**map-legend**. This shows the legend of merged impact layers. The map " -"legend on default template is set to have 2 columns showing each impact " -"layer legend." -msgstr "" - -# 0a9ae0e4b0914755bdd091d922cf082d -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:136 -msgid "" -"**merged-report-table**. This contains the detailed information of each " -"impact." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/index.po b/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/index.po deleted file mode 100644 index f6b4b261..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/index.po +++ /dev/null @@ -1,30 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Language-Team: French (https://www.transifex.com/inasafe/teams/57762/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# bf003be9ff54483db0ba4dc6473c3e01 -#: ../../source/user-docs/application-help/index.rst:4 -msgid "Application Help" -msgstr "" - -# d5f0ca390b4944d5b3ea6ef45f923210 -#: ../../source/user-docs/application-help/index.rst:6 -msgid "" -"This section explains in detail the different functions available in |" -"project_name|, where to find them and how to use them." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/keywords.po b/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/keywords.po deleted file mode 100644 index 78123368..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/keywords.po +++ /dev/null @@ -1,735 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-04-02 17:21+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# e71a75dd0b1040e3b3eb032a66715f1c -#: ../../source/user-docs/application-help/keywords.rst:4 -msgid "Keywords System" -msgstr "" - -# 058e5595c46b4594a99ffc622904b4cf -#: ../../source/user-docs/application-help/keywords.rst:6 -msgid "" -"This document describes the purpose and usage of the |project_name| keywords " -"system." -msgstr "" - -# 34f09385ea3743cf8df98d4378b1a28b -#: ../../source/user-docs/application-help/keywords.rst:9 -msgid "" -"Please also refer to the documentation on the :ref:`keywords wizard " -"` and the :ref:`keywords editor `, tools " -"which help in the creation of keywords files." -msgstr "" - -# b37d6c313e9c44dcae8106508e2b327e -#: ../../source/user-docs/application-help/keywords.rst:15 -msgid "Purpose" -msgstr "" - -# e9d4e2d7b8894ce58358613a619bdece -#: ../../source/user-docs/application-help/keywords.rst:17 -msgid "" -"The keywords system is used by :ref:`impact functions ` to " -"determine the nature of the input layers that have been passed to them." -msgstr "" - -# a257ec94579f454ebd6244f4261b61e7 -#: ../../source/user-docs/application-help/keywords.rst:20 -msgid "" -"Each input dataset used by |project_name| needs to have an accompanying " -"keywords file. The purpose of the keywords file is to provide additional " -"metadata needed by the impact functions. For example, the keywords file will " -"indicate whether a given dataset should be treated as a *hazard* or an " -"*impact* layer. It is also used to indicate the context of the layer (e.g. " -"\"it's a *flood* layer\", \"it's an *earthquake* layer\")." -msgstr "" - -# 98b113d3d6d44eda8fcff9365d8f15e2 -#: ../../source/user-docs/application-help/keywords.rst:29 -msgid "" -"By convention and expectation, the keywords file should be named with the " -"same base name of the GIS datasource it accompanies. For example a flood " -"dataset saved as" -msgstr "" - -# 3016180079e442fb941883d4a99dfbc3 -#: ../../source/user-docs/application-help/keywords.rst:33 -msgid ":file:`C:\\\\gisdata\\\\flood.tif`" -msgstr "" - -# d9e3e9c1c54448e0a21becb1d203648d -#: ../../source/user-docs/application-help/keywords.rst:35 -msgid "would need to have an accompanying keywords file saved as:" -msgstr "" - -# dec30b06385746e4827fdf39d935ea97 -#: ../../source/user-docs/application-help/keywords.rst:37 -msgid ":file:`C:\\\\gisdata\\\\flood.keywords`" -msgstr "" - -# a217441e6778482bbe7920b35d763e24 -#: ../../source/user-docs/application-help/keywords.rst:39 -msgid "" -"We recommend that you **avoid using spaces** in your file names and file " -"paths!" -msgstr "" - -# b83b569429544207a2de997802f239f1 -#: ../../source/user-docs/application-help/keywords.rst:42 -msgid "" -"The |project_name| plugin provides an editor for these keywords. The purpose " -"of this document is to describe the keywords editor and to provide " -"guidelines as to the use of keywords." -msgstr "" - -# b1dd0b192f2b41e79000fc4885ef352d -#: ../../source/user-docs/application-help/keywords.rst:46 -msgid "" -"Currently keywords are not validated by the library. This means that if you " -"misspell a keyword, use the wrong letter case (e.g. upper case instead of " -"lower case) or provide the wrong keyword for the context (e.g. provide a " -"subcategory of flood to an exposure category), the system will not be able " -"to determine what to do with the file. For that reason you should follow the " -"guidelines below carefully to ensure you have entered your keywords " -"correctly." -msgstr "" - -# 82a14cca424b4bc09bff6989212d8eb3 -#: ../../source/user-docs/application-help/keywords.rst:56 -msgid "Guidelines" -msgstr "" - -# 6d3d84ac88f1414f9fc7ba745c516bdf -#: ../../source/user-docs/application-help/keywords.rst:58 -msgid "In this section we lay out the guidelines for keyword usage." -msgstr "" - -# 44a4f92dcc5443889dac9f5b46ef69c9 -#: ../../source/user-docs/application-help/keywords.rst:61 -msgid "Category" -msgstr "" - -# 01aa74b7ab2b4f72a4f40b33c35c76c9 -#: ../../source/user-docs/application-help/keywords.rst:63 -msgid "" -"Every dataset should have a category assigned to it. The category should be " -"written in lower case." -msgstr "" - -# dfe74bd774ad40509418a94ec3b521c8 -# fb5480b4fc294108a1e33205f93b8011 -# 3e3d8d7219404bca8cdc527a0e7d54d2 -# 9420e95446754afcb520d4453adb176d -# 56c097c8bc194defa743ab1056b97177 -# 066fd08f72cc4ebdb694a81ecdbd205b -# 15027b2284c447099d08c05946f3fd55 -# cff59ee2d95b4d2fb748d72695ed480b -# e7642a4a7d6044b8b6c2b7403d8242d7 -#: ../../source/user-docs/application-help/keywords.rst:69 -#: ../../source/user-docs/application-help/keywords.rst:91 -#: ../../source/user-docs/application-help/keywords.rst:108 -#: ../../source/user-docs/application-help/keywords.rst:138 -#: ../../source/user-docs/application-help/keywords.rst:167 -#: ../../source/user-docs/application-help/keywords.rst:186 -#: ../../source/user-docs/application-help/keywords.rst:209 -#: ../../source/user-docs/application-help/keywords.rst:226 -#: ../../source/user-docs/application-help/keywords.rst:246 -msgid "Key" -msgstr "" - -# 858f5cda51c44bb3bf459f66e3abc276 -# 673f7646250d4a71bebf106157c475ad -# f6bec53f023945cba5c0588c10025f00 -# 568041f8fd5d40ba8f8d9909c95b7f98 -# 2986d9ccf6564251920a58e2ac148ee7 -# bdc96922c60641ac9ff83cac36503ec3 -# a45ae09d43cb454e8b36e2d3b93d2065 -# 4709260d511442f38db9ecda623fd9b7 -# 1e1d2a81157249488f3bfbbf7204b94c -#: ../../source/user-docs/application-help/keywords.rst:69 -#: ../../source/user-docs/application-help/keywords.rst:91 -#: ../../source/user-docs/application-help/keywords.rst:108 -#: ../../source/user-docs/application-help/keywords.rst:138 -#: ../../source/user-docs/application-help/keywords.rst:167 -#: ../../source/user-docs/application-help/keywords.rst:186 -#: ../../source/user-docs/application-help/keywords.rst:209 -#: ../../source/user-docs/application-help/keywords.rst:226 -#: ../../source/user-docs/application-help/keywords.rst:246 -msgid "Allowed Values" -msgstr "" - -# c07abbabb5ce41c699c7dc04cc1ab3fc -# 03cd41f38c2c40829273484a73414467 -#: ../../source/user-docs/application-help/keywords.rst:71 -#: ../../source/user-docs/application-help/keywords.rst:72 -msgid "category" -msgstr "" - -# 1c790cd80aeb4758b95dc7cd5e1daf8f -#: ../../source/user-docs/application-help/keywords.rst:71 -msgid "exposure" -msgstr "" - -# 748400762cbe4aca973a409467c6f4a3 -#: ../../source/user-docs/application-help/keywords.rst:72 -msgid "hazard" -msgstr "danger" - -# 5bdae38305674938b48bc05bb6f6ea57 -# 001753b4d07f46e69a5e78eb9a3ec7ee -#: ../../source/user-docs/application-help/keywords.rst:76 -#: ../../source/user-docs/application-help/keywords.rst:116 -msgid "Example keywords file entry: ::" -msgstr "" - -# d44a93817bd043809c39c94b6a9350e3 -#: ../../source/user-docs/application-help/keywords.rst:82 -msgid "Subcategory" -msgstr "" - -# c17c67251e8f48aeb3955f1cb1a32ae0 -#: ../../source/user-docs/application-help/keywords.rst:84 -msgid "The selection of a subcategory value is dependent on the category:" -msgstr "" - -# 2fd2aaaca1df472098dce49ec7a38139 -#: ../../source/user-docs/application-help/keywords.rst:86 -msgid "Valid subcategories for category 'hazard':" -msgstr "" - -# a66e636433dd443b86b9912401cb7032 -# 8a49c56a164c45e9a9a58f786161c6cc -# cf13d829715947c882971614f1f6b492 -# 75c7aff5956e426b94c4bc22ded4aed3 -# 91930404c4db40f8a017819f9a3786e3 -# 1a5a6095f5784962a2b605e2dc4cec6e -# 4c81e844ab144416a17d98e067432c31 -# f756e508ee8a461dae83c1ac93fdad71 -# 4fd1d43096ca48768821cce2c3e02168 -#: ../../source/user-docs/application-help/keywords.rst:93 -#: ../../source/user-docs/application-help/keywords.rst:94 -#: ../../source/user-docs/application-help/keywords.rst:95 -#: ../../source/user-docs/application-help/keywords.rst:96 -#: ../../source/user-docs/application-help/keywords.rst:97 -#: ../../source/user-docs/application-help/keywords.rst:98 -#: ../../source/user-docs/application-help/keywords.rst:110 -#: ../../source/user-docs/application-help/keywords.rst:111 -#: ../../source/user-docs/application-help/keywords.rst:112 -msgid "subcategory" -msgstr "" - -# 3a6636cab86c43baa6c35b35c80a2d70 -#: ../../source/user-docs/application-help/keywords.rst:93 -msgid "earthquake" -msgstr "" - -# 3dd1d120f19944e3874f3da6a7cfe06a -#: ../../source/user-docs/application-help/keywords.rst:94 -msgid "flood" -msgstr "" - -# f194ac5245694e5990da4204da9677e2 -#: ../../source/user-docs/application-help/keywords.rst:95 -msgid "generic" -msgstr "" - -# 8d78a957cb17436ab75e0cf998db9e9b -#: ../../source/user-docs/application-help/keywords.rst:96 -msgid "tephra*" -msgstr "" - -# 3674c34ede2542fe91e68b2e772b99c1 -#: ../../source/user-docs/application-help/keywords.rst:97 -msgid "tsunami" -msgstr "" - -# ad55ee1c2783441d9dd2687ff466cd2c -#: ../../source/user-docs/application-help/keywords.rst:98 -msgid "volcano" -msgstr "" - -# c854797937ab48fcbfc2314e45b79da3 -#: ../../source/user-docs/application-help/keywords.rst:101 -msgid "*tephra is volcanic ashfall*" -msgstr "" - -# 126b297447c94def98128dc507b668c5 -#: ../../source/user-docs/application-help/keywords.rst:103 -msgid "Valid subcategories for category 'exposure':" -msgstr "" - -# 42d72caab8ab4c9d84ac74d3e113aa47 -#: ../../source/user-docs/application-help/keywords.rst:110 -msgid "population" -msgstr "" - -# 2abd1dcbb60b4a68af14c7a37f432832 -#: ../../source/user-docs/application-help/keywords.rst:111 -msgid "road" -msgstr "" - -# cffae577051a4c59a57c5a67111ba0a6 -#: ../../source/user-docs/application-help/keywords.rst:112 -msgid "structure" -msgstr "" - -# 8ea609ca03cd4742962fe75fc91c80d0 -#: ../../source/user-docs/application-help/keywords.rst:123 -msgid "Units" -msgstr "" - -# 7529cc43ebbe44c08fae6e359ff8fcc2 -#: ../../source/user-docs/application-help/keywords.rst:125 -msgid "" -"The units keyword is used to indicate the metric or imperial units " -"represented by each data entity (a grid cell or a vector feature) in a layer." -msgstr "" - -# 5d038d787755465a82f04e1a1f587d1c -#: ../../source/user-docs/application-help/keywords.rst:130 -msgid "Valid units for hazard subcategories" -msgstr "" - -# 1d0375e42140472b91db6f9e075694e5 -#: ../../source/user-docs/application-help/keywords.rst:133 -msgid "Valid units for subcategory 'flood' or subcategory 'tsunami':" -msgstr "" - -# 6f522318ca764d40aeecc35f4d0a1ad2 -# 4aca045ece6742009cb3fd1dd371c4d3 -# 96e01b7feb824a04b87a5f6311b237c0 -# 02c54d6e95024538944a71a04c6c8155 -# aafe12cf074d40e0a4b58dcf817becf5 -# 9c0dfd8837d148d880590febf5d86238 -# 351de67ec01b4c5e92cd105b2c157552 -# d554d0e2b4d948239097b5faf3e6a4be -# 9acb89fb19d642628ad8ec0a26cdc686 -# f595d9a1416840a5a7e6137ae488b498 -# 2c93cf0aa63d4c9db0cfe289bff42a1c -# 8a4e93705b354e2bad01c1d28ed35b68 -#: ../../source/user-docs/application-help/keywords.rst:140 -#: ../../source/user-docs/application-help/keywords.rst:141 -#: ../../source/user-docs/application-help/keywords.rst:142 -#: ../../source/user-docs/application-help/keywords.rst:143 -#: ../../source/user-docs/application-help/keywords.rst:169 -#: ../../source/user-docs/application-help/keywords.rst:170 -#: ../../source/user-docs/application-help/keywords.rst:188 -#: ../../source/user-docs/application-help/keywords.rst:189 -#: ../../source/user-docs/application-help/keywords.rst:211 -#: ../../source/user-docs/application-help/keywords.rst:228 -#: ../../source/user-docs/application-help/keywords.rst:229 -#: ../../source/user-docs/application-help/keywords.rst:248 -msgid "units" -msgstr "" - -# a426491ebd584d2dbbe84ea15a68c027 -#: ../../source/user-docs/application-help/keywords.rst:140 -msgid "metres" -msgstr "" - -# dde7ad4a86664480b68b647f740cd97a -#: ../../source/user-docs/application-help/keywords.rst:141 -msgid "feet" -msgstr "" - -# 8f4a1f6a1e0749f1b1ff5e74ed776282 -#: ../../source/user-docs/application-help/keywords.rst:142 -msgid "wet / dry" -msgstr "" - -# aebaadf387df4c4289d87f55462147f0 -# 4c135dd3e15b4824b18574c3da649504 -# fa11fce451bc4f9d8fdd7d5ed16e1f16 -#: ../../source/user-docs/application-help/keywords.rst:143 -#: ../../source/user-docs/application-help/keywords.rst:169 -#: ../../source/user-docs/application-help/keywords.rst:189 -msgid "normalised" -msgstr "" - -# fcc8e2603bfd42b2a91f042b87370fed -#: ../../source/user-docs/application-help/keywords.rst:146 -msgid "" -"**metres**: Metres are a metric unit of measure. There are 100 centimetres " -"in one metre. In this case **metres** are used to describe the water depth." -msgstr "" - -# 1b53ed601ecc4f9692af0e98014daa35 -#: ../../source/user-docs/application-help/keywords.rst:149 -msgid "" -"**feet**: Feet are an imperial unit of measure. There are 12 inches in one " -"foot and three feet in one yard. In this case **feet** are used to describe " -"the water depth." -msgstr "" - -# 49e822c7dffa446fb909579035a0fe9e -#: ../../source/user-docs/application-help/keywords.rst:153 -msgid "" -"**wet / dry**: This is a binary description for an area. The area is either " -"**wet** (affected by flood water) or **dry** (not affected by flood water). " -"This unit does not describe how **wet** or **dry** an area is." -msgstr "" - -# beac64010b02439c8e89d3fd055bab44 -# f74231f1aeba4d8991c7ce1b063d8f67 -# fdcb7b8b184c4d99b49a7faf48d45fab -#: ../../source/user-docs/application-help/keywords.rst:157 -#: ../../source/user-docs/application-help/keywords.rst:173 -#: ../../source/user-docs/application-help/keywords.rst:196 -msgid "" -"**normalised**: Normalised data can be hazard or exposure data where the " -"values have been classified or coded." -msgstr "" - -# 05e3420bb55f4dd5895e30dd83251312 -#: ../../source/user-docs/application-help/keywords.rst:162 -msgid "Valid units for subcategory 'volcano' or subcategory 'tephra':" -msgstr "" - -# 6f1259ad8e454853b901375915161aaa -#: ../../source/user-docs/application-help/keywords.rst:170 -msgid "volcano categorical" -msgstr "" - -# 8f5d52da5db54da28d32d967d8f018a9 -#: ../../source/user-docs/application-help/keywords.rst:176 -msgid "" -"**volcano categorical**: This is a ternary description for an area. The area " -"is either has **low**, **medium**, or **high** impact from the volcano." -msgstr "" - -# 6d0f98b399bd4157ba45292534de2507 -#: ../../source/user-docs/application-help/keywords.rst:181 -msgid "Valid units for subcategory 'earthquake':" -msgstr "" - -# 641faaca4dc648079bb977c280f40b30 -#: ../../source/user-docs/application-help/keywords.rst:188 -msgid "MMI" -msgstr "" - -# 98484af722fd45c29efd29fb921d7255 -#: ../../source/user-docs/application-help/keywords.rst:192 -msgid "" -"**MMI**: The Modified Mercalli Intensity (MMI) scale describes the intensity " -"of ground shaking from a earthquake based on the effects observed by people " -"at the surface." -msgstr "" - -# 4d4e89a15fe7468d9a321106128c68c5 -#: ../../source/user-docs/application-help/keywords.rst:201 -msgid "Valid units for exposure subcategories" -msgstr "" - -# c1ba92b64bb44f25badb452b7dedc323 -#: ../../source/user-docs/application-help/keywords.rst:204 -msgid "Valid units for subcategory 'population':" -msgstr "" - -# c227d8a2fdda4cc2b54e55c56a9bdc70 -#: ../../source/user-docs/application-help/keywords.rst:211 -msgid "people per pixel" -msgstr "" - -# d2e2d5298e774d4e9ecc90695b88c5ef -#: ../../source/user-docs/application-help/keywords.rst:214 -msgid "" -"**people per pixel**: Count is the number of people in each cell. For " -"example **population count** might be measured as the number of people per " -"pixel in a raster data set. This unit is relevant for population rasters in " -"geographic coordinates." -msgstr "" - -# 5e019562412a49ff9dccf3b12964ae94 -#: ../../source/user-docs/application-help/keywords.rst:221 -msgid "Valid units for subcategory 'structure':" -msgstr "" - -# f47f466d131f454485dd4d9ccde95f55 -#: ../../source/user-docs/application-help/keywords.rst:228 -msgid "building type" -msgstr "" - -# 60cab12a9d874b4da53326b27f9f47e8 -#: ../../source/user-docs/application-help/keywords.rst:229 -msgid "building generic" -msgstr "" - -# 2c26ed66e6904c5bbebc3a45ea07c4f3 -#: ../../source/user-docs/application-help/keywords.rst:232 -msgid "" -"**building type**: Building type is a unit that represents the type of the " -"building. In this case, building type will be used to group the results of " -"the impact function." -msgstr "" - -# 1ade93ed619747568d8dae49c0e88770 -#: ../../source/user-docs/application-help/keywords.rst:236 -msgid "" -"**building generic**: Building generic means that there is no building type " -"attribute in the exposure data." -msgstr "" - -# c64196093abc44c3b4c55648d373362a -#: ../../source/user-docs/application-help/keywords.rst:241 -msgid "Valid units for subcategory 'road':" -msgstr "" - -# 84e298da035d4fbe8a6ea313b6a5d808 -#: ../../source/user-docs/application-help/keywords.rst:248 -msgid "Road Type" -msgstr "" - -# e36f7fd9fe16441e95529b0bf03b5e36 -#: ../../source/user-docs/application-help/keywords.rst:251 -msgid "" -"**Road Type**: Road type is a unit that represent the type of the road. In " -"this case, road type will be used to group the result of impact function." -msgstr "" - -# dffdd6411d3d4121a66fa871ebc51408 -#: ../../source/user-docs/application-help/keywords.rst:256 -msgid "Datatype" -msgstr "" - -# b1e5c7a7d7a04c5c897d204537f78bc8 -#: ../../source/user-docs/application-help/keywords.rst:258 -msgid "" -"The datatype keyword indicates what kind of geospatial data is represented " -"(Numeric, Polygon, Line, Point)." -msgstr "" - -# c1ad77adb23447b4b7ac2d71ea445c50 -#: ../../source/user-docs/application-help/keywords.rst:263 -msgid "Assumptions" -msgstr "" - -# 48ea1f098a6e458abd6439db1576ab2d -#: ../../source/user-docs/application-help/keywords.rst:265 -msgid "" -"The following assumptions are made about keywords, which may or may not be " -"programmatically enforced by the |project_name| library and GUI:" -msgstr "" - -# 95ebcdd3d06c4428a591cd080c92dfa8 -#: ../../source/user-docs/application-help/keywords.rst:268 -msgid "" -"There should only be **one keyword for a given key** in the keywords file." -msgstr "" - -# fa9aee7b1e974e938fc4b7cdb05000ff -#: ../../source/user-docs/application-help/keywords.rst:269 -msgid "" -"Keywords for **category** are **enforced** to be one of 'hazard' or " -"'exposure' by the GUI." -msgstr "" - -# e4550841eb954ace957d5abe530884f5 -#: ../../source/user-docs/application-help/keywords.rst:271 -msgid "" -"All keywords should be in **lower case**, **without spaces** with the " -"exception of 'Title' whose value may contain both spaces and mixed case " -"letters." -msgstr "" - -# 6e084f71bfec4d06a3a2664be2a44e93 -#: ../../source/user-docs/application-help/keywords.rst:274 -msgid "" -"Values for keywords should generally be lower case, with the exception of " -"**datatype values, which may be in upper case** (e.g. MMI)" -msgstr "" - -# 07d7b06bea824eb1a08e3a9bf595ec6a -#: ../../source/user-docs/application-help/keywords.rst:276 -msgid "" -"Keys and values should **not contain colons**. In the keyword editor, any " -"colons will be replaced with a full stop character." -msgstr "" - -# 5aa5ca0d1cce40d99bd38b61804a4e4f -#: ../../source/user-docs/application-help/keywords.rst:279 -msgid "" -"All other keywords and values that do not fit the above domain lists may be " -"used but they may produce undesired results." -msgstr "" - -# d04abc0e448247fe88d32ee4d10b62c1 -#: ../../source/user-docs/application-help/keywords.rst:283 -msgid "Translations" -msgstr "" - -# 0f067b98e830476b8413a0d0b6feb39b -#: ../../source/user-docs/application-help/keywords.rst:285 -msgid "" -"Although |project_name| is available in different languages, the 'key' in " -"the keywords files should always be written in English." -msgstr "" - -# ba6b2ff22e6e42e08ac879ff1b091059 -#: ../../source/user-docs/application-help/keywords.rst:289 -msgid "Keywords for remote and non-file based layers" -msgstr "" - -# a6c8e7e0eb0a45ebadc15dc10bfe0c3c -#: ../../source/user-docs/application-help/keywords.rst:291 -msgid "" -"If you are using a PostgreSQL, WFS, Spatialite or other non-file based " -"resource, you can still create keywords. In these circumstances the keywords " -"will be written to a sqlite database - by default this database is stored " -"as :file:`keywords.db` within the |project_name| root directory." -msgstr "" - -# 5b4409beea3c4a7aa9e4e7315644444d -#: ../../source/user-docs/application-help/keywords.rst:297 -msgid "" -"You may wish to use a different location for the :file:`keywords.db` " -"keywords database - you can configure this by using the |project_name| " -"options dialog. The options dialog can be launched by clicking on the |" -"project_name| plugin toolbar's options icon (as shown below) or by going to :" -"menuselection:`Plugins ‣ InaSAFE ‣ InaSAFE Options`." -msgstr "" - -#: ../../source/user-docs/application-help/keywords.rst:308 -msgid "Options Icon" -msgstr "" - -# 6c170d31ede645a5830d3c99c80d5b19 -#: ../../source/user-docs/application-help/keywords.rst:308 -msgid "*The options button*" -msgstr "" - -# 00b24c77ef8f45e7a24c3f2a11f58f6f -#: ../../source/user-docs/application-help/keywords.rst:310 -msgid "" -"When the options dialog is opened, the keywords database path can be " -"specified under the :guilabel:`Advanced` tab under :guilabel:`Keyword cache " -"for remote datasources` as shown below." -msgstr "" - -#: ../../source/user-docs/application-help/keywords.rst:319 -msgid "Path to options database" -msgstr "" - -# 81ced1aa24304b90a0ed3359300c1373 -#: ../../source/user-docs/application-help/keywords.rst:319 -msgid "*Path to options database*" -msgstr "" - -# e0e9b1a671d5489db42b818a3b42ea7d -#: ../../source/user-docs/application-help/keywords.rst:323 -msgid "" -"Support for remote and non-file based layers was added in |project_name| " -"version 0.3." -msgstr "" - -# cfcd780b55704cc1b8efb445ba431f16 -#: ../../source/user-docs/application-help/keywords.rst:325 -msgid "" -"The database can be opened using a sqlite editor such as sqliteman, but the " -"data in the keywords table is not intended to be human readable or edited. " -"The table columns consist of an MD5 hash based on the URI for the datasource " -"(typically the database connection details) and a blob which contains the " -"keywords as a pickled python dictionary." -msgstr "" - -# f39046f3b87c486ba4f1959c256c8482 -#: ../../source/user-docs/application-help/keywords.rst:332 -msgid "" -"See :doc:`./options` for more information about the |project_name| options " -"dialog." -msgstr "" - -# 9604f09173704081818159f3dd15ad04 -#: ../../source/user-docs/application-help/keywords.rst:336 -msgid "Sharing your keywords cache" -msgstr "" - -# d3fbd97a3d0b44db92e605f774f271d4 -#: ../../source/user-docs/application-help/keywords.rst:338 -msgid "" -"In theory you can place the keywords file on a network share and create a " -"shared keyword repository in a multi-user environment, but you should note " -"that the layer URI hashes need to be identical in order for a layer's " -"keyword to be found. This means that, for (contrived) example: ::" -msgstr "" - -# 3842b7bc9e214b44b9395dc3128fd75f -#: ../../source/user-docs/application-help/keywords.rst:347 -msgid "would not be considered the same as ::" -msgstr "" - -# d1b622bcb94a44508785a72de9646376 -#: ../../source/user-docs/application-help/keywords.rst:352 -msgid "" -"since the user credentials differ, resulting in a different URI. To work " -"around this you could create a common account so that every user will " -"effectively use the same URI to load that layer e.g. ::" -msgstr "" - -# 550db95e8bbc4c9da7d62b613260c011 -#: ../../source/user-docs/application-help/keywords.rst:359 -msgid "" -"For certain resources (e.g. ArcInfo coverages, Spatialite databases) where " -"the keywords cache is also used, you should take care to use a common mount " -"point or network share to access the data if you wish to successfully hit " -"the cache with the layer's URI. For example you could have all users mount " -"your data to the same place. Under Unix-like operating systems this could " -"look something like this:" -msgstr "" - -# 956bd80f1f954f58a05f6da936a1b5d2 -#: ../../source/user-docs/application-help/keywords.rst:366 -msgid ":file:`/mnt/gisdata/jk.sqlite`" -msgstr "" - -# 44b267791aa441be8dd608086d0b9c3e -#: ../../source/user-docs/application-help/keywords.rst:368 -msgid "" -"Under Windows you could always use the same drive letter and path to the " -"share, e.g.:" -msgstr "" - -# c0cdf278dd5e46abbc3f335b825589e4 -#: ../../source/user-docs/application-help/keywords.rst:371 -msgid ":file:`Z:\\\\gisdata\\\\jk.sqlite`" -msgstr "" - -# 668144e49482438681ff8c96f8f596f7 -#: ../../source/user-docs/application-help/keywords.rst:374 -msgid "Getting help" -msgstr "" - -# b00da58ef8f74f1ca16c8c8503cf6888 -#: ../../source/user-docs/application-help/keywords.rst:376 -msgid "" -"If you need help using the keywords editor, click on the :guilabel:`Help` " -"button at the bottom of the dialog and this page will be displayed." -msgstr "" - -# 7e6598dc1fcd4ec19d37197858f14190 -#: ../../source/user-docs/application-help/keywords.rst:380 -msgid "" -"This document is automatically generated. It can be regenerated by running " -"the python script /inasafe-doc/scripts/generate_keywords.py." -msgstr "" - -# 4c8c00b24d1f460db01099eb9f08e1a0 -#: ../../source/user-docs/application-help/keywords.rst:383 -msgid "This document was generated based on |project_name| 2.1.0b0." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/keywords_editor.po b/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/keywords_editor.po deleted file mode 100644 index e676bf24..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/keywords_editor.po +++ /dev/null @@ -1,209 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:36+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# f6590829120f41abb859a1ba200262f8 -#: ../../source/user-docs/application-help/keywords_editor.rst:4 -msgid "Keywords Editor" -msgstr "" - -# 22f2ac418076470290e3fbab6b362747 -#: ../../source/user-docs/application-help/keywords_editor.rst:6 -msgid "" -"The keywords editor provides an interface for creating |project_name| " -"keywords. If you are a new user, you should probably use the :ref:`Keywords " -"Wizard ` rather than the keywords editor as it makes it " -"easy to specify correct keywords if you are not familiar with the system." -msgstr "" - -# b5c6588a9b3049809bb9f087b4feea8a -#: ../../source/user-docs/application-help/keywords_editor.rst:12 -msgid "" -"For more general discussion on the keywords system used by |project_name|, " -"see the :ref:`keywords system ` documentation." -msgstr "" - -# 9a95edee58d04736895191cd28bf0dbd -#: ../../source/user-docs/application-help/keywords_editor.rst:16 -msgid "The keywords editor graphical user interface" -msgstr "" - -# c3883756cc8642dd91ee0138543cd437 -#: ../../source/user-docs/application-help/keywords_editor.rst:18 -msgid "" -"The graphical user interface for keywords may appear in one of two modes:" -msgstr "" - -# 7ba23ae2f3ca499aac0888eb7365df3c -#: ../../source/user-docs/application-help/keywords_editor.rst:20 -msgid "" -"**Minimal mode**: In this mode, only the following options are provided:" -msgstr "" - -# 9dd1a2c3cc8446278b1ebed69c421bd9 -#: ../../source/user-docs/application-help/keywords_editor.rst:22 -msgid "" -"**Title** - a friendly name for the dataset which will be displayed in " -"reports, the user interface and so on." -msgstr "" - -# c56fa70c936948c382f647ea706f6db1 -#: ../../source/user-docs/application-help/keywords_editor.rst:24 -msgid "**Source** - a field to inform from whom/where the dataset is obtained." -msgstr "" - -# 2af770d18404481c80f0466c23a6fbc0 -#: ../../source/user-docs/application-help/keywords_editor.rst:25 -msgid "**Category** - A mandatory choice between 'hazard' and 'exposure'." -msgstr "" - -# e744c22082104cf08ef3c3ff4e165cb6 -#: ../../source/user-docs/application-help/keywords_editor.rst:26 -msgid "" -"**Subcategory** - An amalgamated subcategory/units picklist (in the case of " -"hazard) or amalgamated subcategory/datatype (in the case of exposure). In " -"this case, the secondary characteristic (units or datatype) are shown in " -"square brackets after the subcategory name e.g. :samp:`flood [m]` is used " -"for subcategory 'flood', units 'm'." -msgstr "" - -# 530ee1b434584e779f4e3fd2f60e7f52 -#: ../../source/user-docs/application-help/keywords_editor.rst:33 -msgid "This is an example of the keywords editor in minimal mode:" -msgstr "" - -#: ../../source/user-docs/application-help/keywords_editor.rst:40 -msgid "Opened keyword editor window" -msgstr "" - -# b235835d862f4267818d806701360523 -#: ../../source/user-docs/application-help/keywords_editor.rst:40 -msgid "*Opened keyword editor window*" -msgstr "" - -# 88778e392a8e4820a67f48c7fd33409d -#: ../../source/user-docs/application-help/keywords_editor.rst:42 -msgid "" -"**Advanced mode**: In this mode several extra options are provided in " -"addition to the minimal mode options. Unlike minimal mode, in advanced mode " -"only basic validation is performed and the user is given more flexibility to " -"manually define and remove key/value pairs. Three additional sections are " -"available:" -msgstr "" - -# 60f1d21bfc0c44a995d22b460c5d7be6 -#: ../../source/user-docs/application-help/keywords_editor.rst:49 -msgid "" -"**Predefined** - In this section, the user selects from a constrained list " -"of keywords, enters any value and then adds the key/value pair to the " -"keywords list (see below)." -msgstr "" - -# 4355a5a55f5e4ac9bb787a6d6df72648 -#: ../../source/user-docs/application-help/keywords_editor.rst:52 -msgid "" -"**User defined** - In this section, there is no constraint on the keywords " -"entered - any single lower case word will be accepted for both the key and " -"the value components." -msgstr "" - -# 69f4a7f36c1a4106804260b98b4c3f97 -#: ../../source/user-docs/application-help/keywords_editor.rst:55 -msgid "" -"**Current keywords** - In this area a complete list of all the keywords for " -"the dataset is displayed. The keywords list here is updated when any changes " -"are made in both the simple and advanced mode editors. It is also possible " -"in this area to manually remove unwanted keywords using the :guilabel:" -"`Remove selected` button. Multiple keywords can be removed in a single " -"operation by holding :kbd:`CTRL` and clicking on multiple keyword entries in " -"the current keywords list and then clicking :guilabel:`Remove selected`." -msgstr "" - -#: ../../source/user-docs/application-help/keywords_editor.rst:70 -msgid "Advanced mode of keyword editor" -msgstr "" - -# 39d6fbdd5d5a4a8c937e08ebf8814db1 -#: ../../source/user-docs/application-help/keywords_editor.rst:70 -msgid "*Advanced mode of keyword editor*" -msgstr "" - -# 16d9c37416364e20b1dd7a3db5476e8b -#: ../../source/user-docs/application-help/keywords_editor.rst:73 -msgid "" -"Switching from hazard to exposure will clear parts of the GUI since most " -"keywords are category dependent. In particular, selecting **'hazard'** will " -"remove the **'datatype'** key/value pair, and selecting **'exposure'** will " -"remove the **'units'** key value pair." -msgstr "" - -# 57adec2ed9c24d7cb6fef4361398bc44 -#: ../../source/user-docs/application-help/keywords_editor.rst:80 -msgid "Invoking the keywords editor" -msgstr "" - -# 5eb23cb535bc4c2c8e66353131725ad9 -#: ../../source/user-docs/application-help/keywords_editor.rst:81 -msgid "" -"The keywords editor can be invoked by selecting any layer in the QGIS Layers " -"panel and then going to :menuselection:`Plugins ‣ InaSAFE ‣ Keyword Editor`. " -"Alternatively, you may click the :guilabel:`Keywords Editor` button on the " -"toolbar:" -msgstr "" - -#: ../../source/user-docs/application-help/keywords_editor.rst:92 -msgid "Keyword editor icon" -msgstr "" - -# b40017db2496412a858f686744211f41 -#: ../../source/user-docs/application-help/keywords_editor.rst:92 -msgid "*InaSAFE toolbar*" -msgstr "" - -# 5729904aa73f4864bb0ecc2ef4b3aaa0 -#: ../../source/user-docs/application-help/keywords_editor.rst:94 -msgid "" -"If you have not selected a layer, the keyword editor icon in the toolbar and " -"menus will be disabled and appear greyed out." -msgstr "" - -# 057ea1b290174290a54970cfe45dec5c -#: ../../source/user-docs/application-help/keywords_editor.rst:99 -msgid "Saving your edits" -msgstr "" - -# 7d51fcc44ff64a42bc797a618e2f078f -#: ../../source/user-docs/application-help/keywords_editor.rst:101 -msgid "" -"To save your keyword edits, click the :guilabel:`OK` button and the :file:`*." -"keywords` file will be written to disk." -msgstr "" - -# 76556714c8bc43d18d857ed8dc5f77a9 -#: ../../source/user-docs/application-help/keywords_editor.rst:105 -msgid "Cancelling your edits" -msgstr "" - -# 7202fb13de72467085687d5d65bbeb97 -#: ../../source/user-docs/application-help/keywords_editor.rst:107 -msgid "" -"Cancel your changes at any time by clicking the :guilabel:`Cancel` button. " -"No changes will be written to disk and the :file:`*.keywords` file will " -"remain in its original state." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/keywords_wizard.po b/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/keywords_wizard.po deleted file mode 100644 index 3d6a18d1..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/keywords_wizard.po +++ /dev/null @@ -1,181 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:36+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# ecd59a8b9742477ea9231ad9481370f5 -#: ../../source/user-docs/application-help/keywords_wizard.rst:4 -msgid "Keywords Wizard" -msgstr "" - -# 4fec90d86a9b4f04957076317452d4d8 -#: ../../source/user-docs/application-help/keywords_wizard.rst:6 -msgid "" -"This wizard will lead you through the process of defining keywords for an " -"exposure, hazard or aggregation layer. Unlike the :ref:`keywords editor " -"`, the keywords wizard understands the constraints and " -"rules that determine which keywords can be applied to any given layer. For " -"example, if you have a raster layer, the keywords wizard will use impact " -"function metadata to prevent you from declaring that the layer contains road " -"exposure data since by definition, such data must be vector line data." -msgstr "" - -# 5829bd8233e440ce805e386f704fd5e1 -#: ../../source/user-docs/application-help/keywords_wizard.rst:14 -msgid "" -"Each impact function includes metadata that defines what rules should apply " -"to data that will be used with that impact function. At startup, the wizard " -"scans this metadata and uses it to define its rules." -msgstr "" - -# 2f813425e9404f86999f521100d105b2 -#: ../../source/user-docs/application-help/keywords_wizard.rst:18 -msgid "" -"For more general discussion on the keywords system used by |project_name|, " -"see the :ref:`keywords system ` documentation." -msgstr "" - -# 41aedac78d45401d99a30c4ee6c6aa89 -#: ../../source/user-docs/application-help/keywords_wizard.rst:22 -msgid "Invoking the wizard" -msgstr "" - -# 56ec97571ac64b0ea29bb5e74077b28d -#: ../../source/user-docs/application-help/keywords_wizard.rst:24 -msgid "" -"You can run the wizard by clicking on the icon in the InaSAFE toolbar that " -"looks like this:" -msgstr "" - -#: ../../source/user-docs/application-help/keywords_wizard.rst:-1 -msgid "InaSAFE Keywords Wizard Icon" -msgstr "" - -# 4fe8918b247e4374b3db71bcfb026a9e -#: ../../source/user-docs/application-help/keywords_wizard.rst:32 -msgid "" -"You should have at least one layer loaded and active in QGIS before " -"attempting to launch the keywords wizard." -msgstr "" - -# b1d571df3b7145069d7748688b3f3d27 -#: ../../source/user-docs/application-help/keywords_wizard.rst:35 -msgid "Once loaded the wizard will appear:" -msgstr "" - -# 7c20ab8735ea47d0ba1a1e7bc7f5a77e -#: ../../source/user-docs/application-help/keywords_wizard.rst:42 -msgid "" -"If the layer already has keywords assigned to it, the wizard will default to " -"existing keywords on each step (where applicable)." -msgstr "" - -# 5326953c26e745748a5cd3c42dbdb629 -#: ../../source/user-docs/application-help/keywords_wizard.rst:46 -msgid "Cancelling the wizard" -msgstr "" - -# 9bfce1724e064e78a3c3d7b7bf36f8df -#: ../../source/user-docs/application-help/keywords_wizard.rst:48 -msgid "" -"The wizard can be cancelled at any time by clicking the :guilabel:`Cancel` " -"button at the bottom of the wizard. No changes will be written to the " -"keywords file if the wizard is cancelled." -msgstr "" - -# 4a59b606a94c4bfa971b8faf3ccf31bf -#: ../../source/user-docs/application-help/keywords_wizard.rst:54 -msgid "Using the wizard" -msgstr "" - -# ad8f09b71e5745d6bd2f941731b57d8a -#: ../../source/user-docs/application-help/keywords_wizard.rst:56 -msgid "" -"To use the wizard, simply follow the prompts presented on each page of the " -"wizard. There are three standard forms of user input expected:" -msgstr "" - -# 5ff7c18328704514b29376d95dd7e2d9 -#: ../../source/user-docs/application-help/keywords_wizard.rst:59 -msgid "" -"1.) **List selection** - In this case options are provided in a list. " -"Clicking on an item will usually display additional helpful text in the " -"information area of the dialog." -msgstr "" - -#: ../../source/user-docs/application-help/keywords_wizard.rst:-1 -msgid "InaSAFE Keywords Wizard List Selection" -msgstr "" - -# 61f87638da13457b86938934caeba96b -#: ../../source/user-docs/application-help/keywords_wizard.rst:69 -msgid "" -"2) **Field selection** - Whilst it appears to look like the list selection " -"above, in this case the list is automatically generated from the available " -"attributes of the layer." -msgstr "" - -#: ../../source/user-docs/application-help/keywords_wizard.rst:-1 -msgid "InaSAFE Keywords Wizard Attribute List Selection" -msgstr "" - -# 54d39d4d8cf047578fa00a5055ff672e -#: ../../source/user-docs/application-help/keywords_wizard.rst:78 -msgid "" -"3) **Free form text** - In some cases you may be prompted to enter free form " -"text in order to define some additional metadata." -msgstr "" - -#: ../../source/user-docs/application-help/keywords_wizard.rst:-1 -msgid "InaSAFE Keywords Wizard Free Form Text" -msgstr "" - -# 8168214f5e8448828b2bf6a7aa9cf64a -#: ../../source/user-docs/application-help/keywords_wizard.rst:86 -msgid "" -"4) **Drag and drop list** - In this context the user should make concept " -"mappings by dragging items from the left list (represented by unique field " -"values from the attributes table) onto concepts in the right hand tree. For " -"example, below we see the user mapping all polygons that have their " -"'floodprone' field value as 'YES' or 'yes' onto the 'wet' concept in the " -"tree view on the right." -msgstr "" - -# 9865d0f1b3a64c2aa30db1256459913c -#: ../../source/user-docs/application-help/keywords_wizard.rst:99 -msgid "Completing the wizard" -msgstr "" - -# a29504ca45124877acf975d0b437c265 -#: ../../source/user-docs/application-help/keywords_wizard.rst:101 -msgid "" -"On completion of the keywords wizard, a :file:`.keywords` file will be " -"written to disk and the keywords for the layer will be displayed in the dock " -"area when that layer is active in QGIS." -msgstr "" - -#: ../../source/user-docs/application-help/keywords_wizard.rst:-1 -msgid "InaSAFE Keywords Listing" -msgstr "" - -# 4c7cf9148531496fa608d1f862da437d -#: ../../source/user-docs/application-help/keywords_wizard.rst:111 -msgid "" -"The keywords wizard generates keywords that are not compatible with versions " -"of |project_name| older than 2.1." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/minimum_needs.po b/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/minimum_needs.po deleted file mode 100644 index daab8f94..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/minimum_needs.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:36+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# a00ddaa0ea9348f9a95164b6fdd82ffa -# 7b9c46b711da47b89fc53e4ff6f5fef0 -#: ../../source/user-docs/application-help/minimum_needs.rst:4 -#: ../../source/user-docs/application-help/minimum_needs.rst:35 -msgid "Minimum Needs Tool" -msgstr "Outil besoins minimaux" - -# 94b568165fac4bd5b5d6502d67e0d45e -#: ../../source/user-docs/application-help/minimum_needs.rst:6 -msgid "" -"The purpose of the minimum needs tool is to provide a quick method of " -"calculating support requirements (in terms of food, water, etc.) for " -"displaced persons." -msgstr "" - -# e5796e4602ea497c82ef965e8059cd2f -#: ../../source/user-docs/application-help/minimum_needs.rst:10 -msgid "" -"The minimum needs are based on 'Perka 7/2008' according to the following " -"default formulas:" -msgstr "" - -# 54321812a59645f69cb016d4b1f80e09 -#: ../../source/user-docs/application-help/minimum_needs.rst:13 -msgid "400g rice per person per day (2.8kg per week)" -msgstr "" - -# 4013047e8e9941d2972ee5a07743232d -#: ../../source/user-docs/application-help/minimum_needs.rst:14 -msgid "2.5l drinking water per person per day (17.5l per week)" -msgstr "" - -# 1560750705bd4b4eaf881b899b1aeec7 -#: ../../source/user-docs/application-help/minimum_needs.rst:15 -msgid "15l clean water per person per day (105l per week)" -msgstr "" - -# 827c7aea7fb24eafb207370186407676 -#: ../../source/user-docs/application-help/minimum_needs.rst:16 -msgid "" -"one family kit per family per week (assumes five people per family which is " -"not specified in perka)" -msgstr "" - -# 24c223dc951542569f1b1ef35811ce8a -#: ../../source/user-docs/application-help/minimum_needs.rst:18 -msgid "20 people per toilet" -msgstr "" - -# a29996563c034cb5a6a11db13a13666c -#: ../../source/user-docs/application-help/minimum_needs.rst:20 -msgid "" -"In the current version of |project_name|, these guidelines cannot be " -"adjusted by the user. In a future version we will provide this facility." -msgstr "" - -# 9ff0850015654b74bc7b5ce4c983d06c -#: ../../source/user-docs/application-help/minimum_needs.rst:23 -msgid "" -"In order to use this tool, you must first load a polygon layer in QGIS that " -"contains areas (e.g. administrative areas) with an attribute that represents " -"the number of displaced people in each area." -msgstr "" - -# 524d9a0c88b540e396a9d446e40abe62 -#: ../../source/user-docs/application-help/minimum_needs.rst:27 -msgid "" -"When the layer is loaded, click on the :guilabel:`Minimum Needs` tool in the " -"toolbar:" -msgstr "" - -# 89712312486a45908b40ce991de22c6b -#: ../../source/user-docs/application-help/minimum_needs.rst:35 -msgid "*Minimum Needs Tool*" -msgstr "" - -# 24ca239e05b54ceab7511481d2510a83 -#: ../../source/user-docs/application-help/minimum_needs.rst:37 -msgid "" -"In the dialog that appears, choose the QGIS layer that contains the " -"administrative boundaries and then select the attribute in that layer that " -"represents the number of displaced people." -msgstr "" - -# 5af13494b28e45e595f191b6802b8392 -#: ../../source/user-docs/application-help/minimum_needs.rst:41 -msgid "When you are ready, click the :guilabel:`OK` button in the dialog." -msgstr "" - -# 8169c494ebb54fa093fde84a0db26feb -#: ../../source/user-docs/application-help/minimum_needs.rst:43 -msgid "" -"After the analysis is completed, new keywords will be associated with the " -"layer that indicate the needs according to the formulas defined above." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/needs_manager.po b/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/needs_manager.po deleted file mode 100644 index 0b0c5935..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/needs_manager.po +++ /dev/null @@ -1,303 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-03-24 18:56+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# f932bb74212f447484674f378ca246bc -# 430009fc2d174df487ce0371b5bec5f5 -#: ../../source/user-docs/application-help/needs_manager.rst:4 -#: ../../source/user-docs/application-help/needs_manager.rst:15 -msgid "Minimum Needs Manager" -msgstr "" - -# 7dee6df492224f2eaa64ae7321ec9158 -#: ../../source/user-docs/application-help/needs_manager.rst:6 -msgid "" -"As of version 2.2, the minimum needs system have received a major overhaul. " -"The minimum needs manager is a new tool that allows you to define 'profiles' " -"of minimum needs to make them relevant to your country or region." -msgstr "" - -# 20ad7496209146d1aa37e53015f7dae1 -#: ../../source/user-docs/application-help/needs_manager.rst:17 -msgid "We ship |project_name| with standard profiles for:" -msgstr "" - -# d926d1f37aa8486faa46d63cc5dea604 -#: ../../source/user-docs/application-help/needs_manager.rst:19 -msgid "Indonesia - based on 'Perka 7/2008'" -msgstr "" - -# dfbc9870708a4d1faace9d10a01ac629 -#: ../../source/user-docs/application-help/needs_manager.rst:20 -msgid "" -"Philippines (based on 'Guidelines on Evacuation Center Coordination and " -"Management Joint Memorandom Circular No. Series of 2013')" -msgstr "" - -# dc30d2a762b34b9dbabd18a4674e9412 -#: ../../source/user-docs/application-help/needs_manager.rst:23 -msgid "There are two key concepts to be aware of in the minimum needs manager:" -msgstr "" - -# 19d3c68b4d3c419dadfd1b6f380b51f3 -#: ../../source/user-docs/application-help/needs_manager.rst:25 -msgid "profiles" -msgstr "" - -# dd81280ca2f14324b9cee4e0d3b43533 -#: ../../source/user-docs/application-help/needs_manager.rst:26 -msgid "resources" -msgstr "" - -# b01d6d2b402242fbb43144cae723c1f1 -#: ../../source/user-docs/application-help/needs_manager.rst:29 -msgid "Minimum needs profiles" -msgstr "" - -# 3b5d2d75966b4f1c84d8b6255beb0897 -#: ../../source/user-docs/application-help/needs_manager.rst:31 -msgid "" -"A profile is a collection of resources that define the minimum needs for a " -"particular country or region. Typically a profile should be based on a " -"regional, national or international standard. The actual definition of which " -"resources are needed in a given profile is dependent on the local conditions " -"and customs for the area where the contingency plan is being devised." -msgstr "" - -# 2406db4ce0124972a867fdb88bc95a83 -#: ../../source/user-docs/application-help/needs_manager.rst:38 -msgid "" -"For example in the middle east, rice is a staple food whereas in South " -"Africa, maize meal is a staple food and thus the contingency planning should " -"take these localised needs into account." -msgstr "" - -# 0fbb637040644db290065ceb6df64b21 -#: ../../source/user-docs/application-help/needs_manager.rst:43 -msgid "Minimum needs resources" -msgstr "" - -# 5cb8b065d5224fbd9869893ddeed194b -#: ../../source/user-docs/application-help/needs_manager.rst:45 -msgid "" -"Each item in a minimum needs **profile** is a resource. Each resource is " -"described as a simple natural language sentance e.g.:" -msgstr "" - -# 84c01721c089468bac36617ac2afc9c4 -#: ../../source/user-docs/application-help/needs_manager.rst:48 -msgid "\"Each person should be provided with 2.8 kilograms of Rice weekly.\"" -msgstr "" - -# 8814471ed7514b4cadd75ef7fd09223e -#: ../../source/user-docs/application-help/needs_manager.rst:50 -msgid "" -"By clicking on a resource entry in the profile window, and then clicking " -"the :guilabel:`black pencil` icon you will be able to edit the resource " -"using the resource editor. Alternatively you can create a new resource for a " -"profile by clicking on the black :guilabel:`+` icon in the profile manager. " -"You can also remove any resource from a profile using the :guilabel:`-` icon " -"in the profile manager." -msgstr "" - -#: ../../source/user-docs/application-help/needs_manager.rst:61 -msgid "Resource Editor" -msgstr "" - -# 53fc0dccf11c4a1781638c48afbd831c -#: ../../source/user-docs/application-help/needs_manager.rst:61 -msgid "Resource editor" -msgstr "" - -# a3bdd164dc294d9d8473760e69615527 -#: ../../source/user-docs/application-help/needs_manager.rst:63 -msgid "" -"When switching to edit or add resource mode, the minimum needs manager will " -"be updated to look like the screenshot above. Each resource is described in " -"terms of:" -msgstr "" - -# b08789276c894e3dbb35a8b33f448061 -#: ../../source/user-docs/application-help/needs_manager.rst:67 -msgid "resource name e.g. Rice" -msgstr "" - -# 2bc8ab99d26c4660a91165eb3f1c848b -#: ../../source/user-docs/application-help/needs_manager.rst:68 -msgid "a description of the resource e.g. Basic food" -msgstr "" - -# 55ab9e87ac07422cb3404393fa489c0e -#: ../../source/user-docs/application-help/needs_manager.rst:69 -msgid "unit in which the resource is provided e.g. kilogram" -msgstr "" - -# 2a9c3cdcdd9644d8a3b6e62738f9d324 -#: ../../source/user-docs/application-help/needs_manager.rst:70 -msgid "pluralised form of the units e.g. kilograms" -msgstr "" - -# c0a533543bf14051a211952be2b074c9 -#: ../../source/user-docs/application-help/needs_manager.rst:71 -msgid "abbreviation for the unit e.g. kg" -msgstr "" - -# 87c31264bdce4b5ab89e4fa1ea56f8e6 -#: ../../source/user-docs/application-help/needs_manager.rst:72 -msgid "" -"the default allocation for the resource e.g. 2.8. This number can be " -"overridden on a per-analysis basis." -msgstr "" - -# fe4d50d8149d4011ab8002fbeb90c520 -#: ../../source/user-docs/application-help/needs_manager.rst:74 -msgid "" -"minimum allowed which is used to prevent allocating e.g. no drinking water " -"to displaced persons" -msgstr "" - -# c44efd5593864e59961a26a209a3f6da -#: ../../source/user-docs/application-help/needs_manager.rst:76 -msgid "" -"maximum allowed which is used to set a sensible upper limit for the resource" -msgstr "" - -# 9ef705edead54149b86df74f423db12f -#: ../../source/user-docs/application-help/needs_manager.rst:77 -msgid "" -"a readable sentence which is used to compile the sentence describing the " -"resource in reports." -msgstr "" - -# 8f79244176984da3976a454a67bedbad -#: ../../source/user-docs/application-help/needs_manager.rst:80 -msgid "" -"These parameters are probably all fairly self explanatory, but the readable " -"sentence probably needs further detail. The sentence is compiled using a " -"simple keyword token replacement system. The following tokens can be used:" -msgstr "" - -# b3f82f3650614b259ec369c53f2d01a1 -#: ../../source/user-docs/application-help/needs_manager.rst:84 -msgid "``{{ Default }}``" -msgstr "" - -# ce346bd04ac94d429d30bf24a6e8f003 -#: ../../source/user-docs/application-help/needs_manager.rst:85 -msgid "``{{ Unit }}``" -msgstr "" - -# 93966076ccbd4cbc85c7deb2f8f0814b -#: ../../source/user-docs/application-help/needs_manager.rst:86 -msgid "``{{ Units }}``" -msgstr "" - -# 526c238f2c274d99b091e9efef0f026e -#: ../../source/user-docs/application-help/needs_manager.rst:87 -msgid "``{{ Unit abbreviation }}``" -msgstr "" - -# 1031afc4ea3048cea96994dcfcc51041 -#: ../../source/user-docs/application-help/needs_manager.rst:88 -msgid "``{{ Resource name }}``" -msgstr "" - -# abea995d893b4debb70ec3230f85f26e -#: ../../source/user-docs/application-help/needs_manager.rst:89 -msgid "``{{ Frequency }}``" -msgstr "" - -# 24d976575cba4933b20919cba1aed4a5 -#: ../../source/user-docs/application-help/needs_manager.rst:90 -msgid "``{{ Minimum allowed }}``" -msgstr "" - -# 33e811ea39b54d5f8bdc8e80c613ef4e -#: ../../source/user-docs/application-help/needs_manager.rst:91 -msgid "``{{ Maximum allowed }}``" -msgstr "" - -# de3081d7fa3d4f83acd576a13107ef5e -#: ../../source/user-docs/application-help/needs_manager.rst:93 -msgid "" -"When the token is placed in the sentence it will be replaced with the actual " -"value at report generation time. This contrived example shows a tokenised " -"sentence that includes all possible keywords::" -msgstr "" - -# 984a4331a01c44cf9d2d67beb65cc293 -#: ../../source/user-docs/application-help/needs_manager.rst:102 -msgid "Would generate a human readable sentence like this::" -msgstr "" - -# d82ae2ce8ba2429998b46915fc16a16f -#: ../../source/user-docs/application-help/needs_manager.rst:109 -msgid "" -"Once you have populated the resource elements, click the :guilabel:`Save " -"resource` button to return to the profile view. You will see the new " -"resource added in the profile's resource list." -msgstr "" - -# 6f5dbdb6fbd149069026d1ebc14dac5e -#: ../../source/user-docs/application-help/needs_manager.rst:115 -msgid "Managing profiles" -msgstr "" - -# e88116239d64498eb29d0a170150a904 -#: ../../source/user-docs/application-help/needs_manager.rst:117 -msgid "" -"In addition to the profiles that come as standard with |project_name|, you " -"can create new ones, either from scratch, or based on an existing one (which " -"you can then modify)." -msgstr "" - -# 0eb3fe3652904eaeaae9a52ddc67451e -#: ../../source/user-docs/application-help/needs_manager.rst:121 -msgid "" -"Use the :guilabel:`New` button to create new profile. When prompted, give " -"your profile a name e.g. :kbd:`JakartaProfile`." -msgstr "" - -# b3e7e96020504feaa01e479e569bf0a4 -#: ../../source/user-docs/application-help/needs_manager.rst:124 -msgid "" -"**Note:** The profile must be saved in your home directory under :file:`." -"qgis2/minimum_needs` in order for |project_name| to successfully detect it." -msgstr "" - -# 044d6a6b7c0a457c80732dbb1e2d0178 -#: ../../source/user-docs/application-help/needs_manager.rst:127 -msgid "" -"An alternative way to create a new profile is to use the :guilabel:`Save as` " -"to clone an existing profile. The clone profile can then be edited according " -"to your specific needs." -msgstr "" - -# 44adc07ef71949cab1edbc4eee3e55c7 -#: ../../source/user-docs/application-help/needs_manager.rst:131 -msgid "Active profile" -msgstr "" - -# 8ba954dd2d994be5a71e17e9508f7d63 -#: ../../source/user-docs/application-help/needs_manager.rst:133 -msgid "" -"It is important to note, that which ever profile you select in the :guilabel:" -"`Profile` pick list, will be considered **active** and will be used as the " -"basis for all minimum needs analysis." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/openstreetmap_downloader.po b/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/openstreetmap_downloader.po deleted file mode 100644 index f74e93de..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/openstreetmap_downloader.po +++ /dev/null @@ -1,323 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:36+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 7ec6e0bc73124e7da232a06942b83f4c -# fa39b4f3c41d4d0b8f811323f26df839 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:4 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:14 -msgid "OpenStreetMap Downloader" -msgstr "télécharger des données OpenStreetMap" - -# 355e7ec4fe4442a5921e8ebd0e8e4255 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:6 -msgid "" -"This tool fetches building ('structure') and highway ('road') data from the " -"OpenStreetMap project for you." -msgstr "" - -# 05865e840b2142eea5aafa222e3b2a6c -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:14 -msgid "*OpenStreetMap Downloader*" -msgstr "" - -# 63cae60ffee444da8955239e5fb9500a -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:16 -msgid "" -"The tool requires an internet connection as it fetches the data via a web " -"service running on `Linfiniti's OSM Reporter `_ " -"website." -msgstr "" - -# fd9a4cef33b3464b804a7919596e9bab -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:19 -msgid "" -"The data, once downloaded, becomes available as a shapefile. A style file is " -"automatically created so that it symbolises nicely in QGIS. In addition, the " -"correct keyword metadata is created for the downloaded dataset so that it " -"can be used directly in |project_name| impact scenario analyses." -msgstr "" - -# 739758e4830a4b1fa1994814b8d0218a -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:24 -msgid "" -"The downloader service has limitations as to the size of datasets that can " -"be retrieved. As such you may experience issues trying to fetch large " -"amounts of data, such as country-wide building footprint data. Generally " -"datasets at a city level and below should work well." -msgstr "" - -# 7901f858ddf345d09e48bf16460353c0 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:30 -msgid "To use this tool effectively:" -msgstr "Pout utiliser cet outil efficacement :" - -# d11e4d586e074d888e14b00802a66e66 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:32 -msgid "" -"Use QGIS to zoom in to the area for which you want building data to be " -"retrieved. For fine-grained control, you can set the bounding box manually " -"in the area provided at the bottom of the dialog." -msgstr "" - -# e479ef4b6ab0434e8eda137d90c43998 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:36 -msgid "" -"Check that the output directory is correct. Note that the saved datasets " -"will be called :file:`buildings.shp` and :file:`roads.shp` (and their " -"associated files)." -msgstr "" - -# c6795785a9d047bf9ce852181e333ed7 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:39 -msgid "" -"By default simple file names will be used (e.g. :file:`roads.shp`, :file:" -"`buildings.shp`). If you wish you can specify a prefix to add in front of " -"this default name. For example using a prefix of 'padang-' will cause the " -"downloaded files to be saved as :file:`padang-roads.shp` and :file:`padang-" -"buildings.shp`. Note that the only allowed prefix characters are A-Z, a-z, " -"0-9 and the characters '-' and '_'. You can leave this blank if you prefer." -msgstr "" - -# c5f7df5c98644ecbae4552f8dd1dd92a -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:47 -msgid "Click :guilabel:`OK` to retrieve the data." -msgstr "" - -# cf5547a46b0e4584a0d8d2630c2a98f2 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:50 -msgid "" -"If a dataset already exists in the output directory it will be overwritten. " -"This tool requires a working internet connection and fetching buildings will " -"consume your bandwidth." -msgstr "" -"Si un jeu de données existe dans le répertoire de sortie il sera écrasé. Cet " -"outil nécessite une connexion internet et récupérer le bâti consommera de la " -"bande passante." - -# 43d909ac69a34da2b6d22ae626cb1716 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:55 -msgid "" -"Downloaded data is copyright OpenStreetMap contributors (`click for more " -"info `_)." -msgstr "" - -# 0ebec96cf1394eebb9c52e60684798f9 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:59 -msgid "Building data" -msgstr "" - -# fc82f3bdf17c4f1285a0ef2e6fcda9da -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:61 -msgid "" -"|project_name| supports the use of building data in various impact " -"functions. In particular we support building footprints sourced from the " -"`OpenStreetMap `_ project (OSM)." -msgstr "" - -# f0f55a67b95643a687632ebf31d2ca39 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:65 -msgid "" -"The following building types are derived (depending on the various tags " -"assigned to them in OSM):" -msgstr "" - -# 45429822934d43bc8e07b322c6a13d11 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:68 -msgid "School" -msgstr "" - -# fe253b46a2204cb18fb9026e5185c602 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:69 -msgid "University/College" -msgstr "" - -# bf59ac75a21043608482ccffbcf8a899 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:70 -msgid "Government" -msgstr "" - -# 30ad3b0bff7a43b6a34e0b4331a00e9a -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:71 -msgid "Clinic/Doctor" -msgstr "" - -# 704d087bba674ed4889873a16c4a63e8 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:72 -msgid "Hospital" -msgstr "" - -# 0c940990df494af59b15bf0db82d0f86 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:73 -msgid "Fire Station" -msgstr "" - -# 01480ed567e94eb08782d77b0674166e -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:74 -msgid "Police Station" -msgstr "" - -# 937cd10b020b41aca824906f4fb6e0f2 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:75 -msgid "Public Building" -msgstr "" - -# 6e045e3082c7463081f999a8b8f0804a -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:76 -msgid "Place of Worship - Islam" -msgstr "" - -# d4459fe527e649c9a603bd695e521572 -# 7e4ab86ad96a48658d2953399e0524e2 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:77 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:79 -msgid "Place of Worship - Unitarian" -msgstr "" - -# c4a6ef2fcde54eaf8e51fb297f958c2d -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:78 -msgid "Place of Worship - Buddhist" -msgstr "" - -# 7f695168d2184e03a5ff0993a2ac72b7 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:80 -msgid "Supermarket" -msgstr "" - -# 8e33d04239144c37a13bec4c8654ce6a -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:81 -msgid "Residential" -msgstr "" - -# c668f389596649b2a548ef4971fab7c1 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:82 -msgid "Sports Facility" -msgstr "" - -# 2e5f5adf8e71474b935c2432a8f5fcec -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:83 -msgid "Place of Worship" -msgstr "" - -# 32257d0883574e53a1fe776910d04821 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:84 -msgid "Commercial" -msgstr "" - -# 83452678424e47118ae2304aec3aae8b -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:85 -msgid "Industrial" -msgstr "" - -# e1d4df514b9046b6a680aa5a83f00a2f -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:87 -msgid "" -"These derived types will be present in a field called 'type' when " -"downloading the building data. Note that depending on the area for which you " -"have downloaded, only some of these categories may be present in your " -"buildings dataset." -msgstr "" - -# fa29a4de464a41f7ad9c02b77914fe7b -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:93 -msgid "Roads data" -msgstr "" - -# 5b27d798c0ab4cc1adbfe6a850d5e93b -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:95 -msgid "" -"|project_name| supports the use of road data in various impact functions. In " -"particular we support roads sourced from the `OpenStreetMap `_ project (OSM)." -msgstr "" - -# 96788c928f9e483b80fd239ac908c160 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:99 -msgid "" -"The following road types are derived (depending on the various tags assigned " -"to them in OSM):" -msgstr "" - -# 5b38b0f4806847fbbe8cb9ff96dbdf0b -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:102 -msgid "Motorway / highway (includes 'trunk' from OSM)" -msgstr "" - -# 114e06abd2c148ed9019ff4c5abbb357 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:103 -msgid "Motorway link" -msgstr "" - -# 4e31dfd1a0ce4e1fa6e27eb7b137f347 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:104 -msgid "Primary road" -msgstr "" - -# b99adb73cd274133b338b11ded2950a2 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:105 -msgid "Primary link" -msgstr "" - -# 090d1ddfa57c4d82aa564025fce71780 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:106 -msgid "Tertiary" -msgstr "" - -# b2d8717c314b4638b69c18b0ec70b268 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:107 -msgid "Tertiary link" -msgstr "" - -# 4d6eadf835af4b9a80671b5e8beb0979 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:108 -msgid "Secondary" -msgstr "" - -# 88349a50b83445f2b07f968cbfca1271 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:109 -msgid "Secondary link" -msgstr "" - -# 82cb84ade0fd4636ab1cca9565ea2b7c -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:110 -msgid "" -"Road, residential, living street, etc. (includes all highways tagged with " -"'living_street', 'residential', 'yes', 'road', 'unclassified', 'service', '' " -"and NULL highways)" -msgstr "" - -# 87f279a3554e4486895429bdf7b9e959 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:113 -msgid "Track" -msgstr "" - -# 97702d3a730047268800c5d36ddbb9f8 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:114 -msgid "" -"Cycleway, footpath, etc. (includes 'cycleway', 'footpath', 'pedestrian', " -"'footway' and 'path' highway tags)." -msgstr "" - -# f76e28e551e840a7b4b3d1f416f75db5 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:117 -msgid "" -"The roads data is symbolised using a rule based renderer in QGIS. As you " -"zoom out the roads will be rendered using different styles to avoid an " -"overly cluttered map at small scales." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/options.po b/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/options.po deleted file mode 100644 index ee35ea08..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/options.po +++ /dev/null @@ -1,294 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:36+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 846e09479abf4cb68badae06952a735d -#: ../../source/user-docs/application-help/options.rst:4 -msgid "Options" -msgstr "Options" - -# cd2b828e8a2b487c84d6bbd916056aa3 -#: ../../source/user-docs/application-help/options.rst:6 -msgid "" -"The |project_name| plugin provides an options dialog which allows you to " -"define various options relating to how |project_name| will behave. The " -"options dialog can be launched by clicking on the |project_name| plugin " -"toolbar's :guilabel:`Options` button (as shown below) or by going to :" -"menuselection:`Plugins ‣ InaSAFE ‣ InaSAFE Options`." -msgstr "" - -# 846e09479abf4cb68badae06952a735d -#: ../../source/user-docs/application-help/options.rst:17 -#, fuzzy -msgid "Options icon" -msgstr "Options" - -# 58e7d51a2b774ddf9bfb353030d74634 -#: ../../source/user-docs/application-help/options.rst:17 -msgid "*Options button*" -msgstr "" - -# e898bed77bc74d7fb2a6bafbdd63d78a -#: ../../source/user-docs/application-help/options.rst:19 -msgid "This following dialog will appear, which is divided into three tabs:" -msgstr "" - -# cc11790a299543c68da5a00ae932a733 -#: ../../source/user-docs/application-help/options.rst:21 -msgid ":ref:`basic_options`" -msgstr "" - -# 2774b9be0f994555aa23a3c2e3758054 -#: ../../source/user-docs/application-help/options.rst:22 -msgid ":ref:`template_options`" -msgstr "" - -# 67d3cf5ec47a411487d4987f82b2d10d -#: ../../source/user-docs/application-help/options.rst:23 -msgid ":ref:`advanced`" -msgstr "" - -# 846e09479abf4cb68badae06952a735d -#: ../../source/user-docs/application-help/options.rst:29 -#, fuzzy -msgid "Options dialog" -msgstr "Options" - -# 38d4f503ae83433a8fadf15cc2b532ef -#: ../../source/user-docs/application-help/options.rst:29 -msgid "*Options dialog*" -msgstr "" - -# 997a597643e04dc0b377a2f7921be062 -#: ../../source/user-docs/application-help/options.rst:31 -msgid "The following options are available on the :guilabel:`Options Dialog`:" -msgstr "" - -# 0edfccf037f24f6ab95a32017f5de277 -#: ../../source/user-docs/application-help/options.rst:36 -msgid "Basic Options" -msgstr "" - -# cd8e843ea75343a99ecf8e0354c308f7 -#: ../../source/user-docs/application-help/options.rst:37 -msgid "" -":guilabel:`Only show visible layers in the InaSAFE dock`: This option will " -"determine whether **all** hazard and impact layers should be listed in the |" -"project_name| dock's combo boxes or (when checked) only visible layers." -msgstr "" - -# 90f96b39276c48cabf0fecd70e990337 -#: ../../source/user-docs/application-help/options.rst:40 -msgid "" -":guilabel:`Set QGIS layer name from 'title' in keywords`: This option will " -"cause QGIS to name layers in the :guilabel:`Layers tree` using the `title` " -"keyword in the layer's keywords file. If the layer has no 'title' in its " -"keywords, or it has no keywords at all, the normal QGIS behaviour for naming " -"layers will apply." -msgstr "" - -# 657e78bf1adb4ac1ac204ba70dcc2cdf -#: ../../source/user-docs/application-help/options.rst:45 -msgid "" -":guilabel:`Zoom to impact layer on scenario estimate completion`: This " -"option will cause the map view to zoom in/out in order to completely contain " -"the |project_name| impact scenario map output when an analysis completes." -msgstr "" - -# b7838e8ebbbf464480e19b362c00ee19 -#: ../../source/user-docs/application-help/options.rst:48 -msgid "" -":guilabel:`Hide exposure layer on scenario estimate completion` : This " -"option will cause QGIS to turn off the exposure layer used when |" -"project_name| completes the current analysis. You can re-enable the layer " -"visibility again by checking its checkbox in the legend." -msgstr "" - -# ea4d725ef8cb4bd188585bc608b7f0b1 -#: ../../source/user-docs/application-help/options.rst:53 -msgid "" -":guilabel:`Clip datasets to visible extent before analysis`: This option " -"will cause QGIS to clip hazard and exposure layers to the currently visible " -"extent on the map canvas." -msgstr "" - -# d777f78e76134d8cb86dfc18f25c6a66 -#: ../../source/user-docs/application-help/options.rst:56 -msgid "" -":guilabel:`When clipping, also clip features (e.g. will clip polygon " -"smaller)`: This option will clip any polygons that extend beyond the " -"analysis extents so that they are contained by the analysis extent. For " -"example if you have a flood hazard polygon layer that extends far beyond " -"your area of interest, the flood polygons will be reduced so that only the " -"part inside of your area of interested is retained. This can speed up " -"processing time." -msgstr "" - -# 98309130d77b4b79a812aa1b9350bd98 -#: ../../source/user-docs/application-help/options.rst:63 -msgid "" -":guilabel:`Show intermediate layers generated by postprocessing`: This " -"option will cause QGIS to show the intermediate files generated by the " -"postprocessing steps in the map canvas." -msgstr "" - -# e98c9d0b9f8b468e80767b3be841dcca -#: ../../source/user-docs/application-help/options.rst:66 -msgid "" -":guilabel:`Female ratio default value`: This is the default female to total " -"population ratio used for generating gender breakdowns." -msgstr "" - -# d5754ee34e324833bc01ddb93a17fb72 -#: ../../source/user-docs/application-help/options.rst:72 -msgid "Template Options" -msgstr "" - -# c344ace32d0e4ab7823d7e6c7e8ca9bc -#: ../../source/user-docs/application-help/options.rst:73 -msgid "" -":guilabel:`Prompt me in cases when a template has missing elements`: When " -"enabled, this option will cause |project_name| to prompt the user when a " -"template has a missing element if the user tries to print the report or open " -"it in the composer." -msgstr "" - -# 4d7e040d2fc64daaaad2763d600076e2 -#: ../../source/user-docs/application-help/options.rst:77 -msgid "" -":guilabel:`Use custom organisation logo`: This option is used to determine " -"the custom logo that will be used as an organisational logo in the PDF of " -"your impact scenario project. If this option is disabled, |project_name| " -"will use the default organisation logo. See :ref:`toolbar_reports` in the |" -"project_name| User's Manual for more information on the reports." -msgstr "" - -# 6ff6c8688a1f4b8fa08a4d7b620b067d -#: ../../source/user-docs/application-help/options.rst:83 -msgid "" -":guilabel:`Show organisation logo in the main panel too`: If this is enabled " -"then the selected organisation logo (if any) will be displayed in the bottom " -"of the |project_name| dock panel." -msgstr "" - -# b5858cecc7514115aceb4655310fcbc8 -#: ../../source/user-docs/application-help/options.rst:86 -msgid "" -":guilabel:`Use custom north arrow image`: This option is used to determine a " -"custom north arrow that will be used as the north arrow image in the PDF of " -"your impact scenario project. If this option is disabled, InaSAFE will use " -"the default north arrow image." -msgstr "" - -# 0233cf9f05ce4f0ea56e110a42849d42 -#: ../../source/user-docs/application-help/options.rst:90 -msgid "" -":guilabel:`Additional report templates directory`: This option is used to " -"determine a directory with custom templates. Templates from this directory " -"will be available for use when generating reports in your impact scenario " -"project." -msgstr "" - -# 92c09cc4d0234b8984eff8de9d50e2eb -#: ../../source/user-docs/application-help/options.rst:94 -msgid "" -":guilabel:`Use custom organisation disclaimer text`: This option is used to " -"change the default disclaimer text printed in reports. If this is enabled, " -"enter your own text and it will be used instead of the default one. See :ref:" -"`toolbar_reports` in the |project_name| User's Manual for more information " -"on the reports." -msgstr "" - -# 0642902ba8444192a20fa13d606ef483 -#: ../../source/user-docs/application-help/options.rst:103 -msgid "Advanced" -msgstr "" - -# 4fe99052592d4dada890de154903a8f7 -#: ../../source/user-docs/application-help/options.rst:105 -msgid "" -":guilabel:`Keyword cache for remote datasources`: This option is used to " -"determine where keywords are stored for datasets when it is not possible to " -"write them into a :file:`.keywords` file. See :ref:`keywords_system` in the |" -"project_name| User's Manual for more information on the keywords system." -msgstr "" - -# b29fba494e1341208a2e9a60cd7b8e16 -#: ../../source/user-docs/application-help/options.rst:110 -msgid "" -":guilabel:`Help to improve InaSAFE by submitting errors to a remote server`: " -"This option, when enabled, will submit diagnostic information back to an |" -"project_name| project server in the event of any error taking place that we " -"are able to trap. The information provided is useful to the |project_name| " -"team to improve the robustness of the software and to spot trends in issues " -"people encounter. Please note the warning text below this option which is " -"included here in full:" -msgstr "" - -# ed9794f54137448bb9f01d47928e55a1 -#: ../../source/user-docs/application-help/options.rst:121 -msgid "" -"The above setting requires a QGIS restart to disable/enable. Error messages " -"and diagnostic information will be posted to http://sentry.linfiniti.com/" -"inasafe-desktop/ . Some institutions may not allow you to enable this " -"feature - check with your network administrator if unsure. Although the data " -"is submitted anonymously, the information contained in tracebacks may " -"contain file system paths which reveal your identity or other information " -"from your system." -msgstr "" - -# 245d6e1949a342519f2aff206a5efddd -#: ../../source/user-docs/application-help/options.rst:130 -msgid "" -":guilabel:`Enable developer mode for dock webkit (needs restart)`: With " -"this option enabled, you can right-click on the report area and use the " -"webkit debug tools to debug the output. **This option is intended for " -"advanced users only.**" -msgstr "" - -# 3c636225a6fe4c549c5e1aeed3044d03 -#: ../../source/user-docs/application-help/options.rst:134 -msgid "" -":guilabel:`Use QGIS zonal statistics`: With this button you can toggle " -"between using QGIS internal zonal statistics or the one that comes with |" -"project_name|." -msgstr "" - -# 43e3863327ae4069b9501ca58aa54726 -#: ../../source/user-docs/application-help/options.rst:139 -msgid "" -"You can click on the :guilabel:`Help` button at any time and it will open " -"the help documentation browser to this page." -msgstr "" - -# e23295f3e37b423fbc0ac861b472997c -#: ../../source/user-docs/application-help/options.rst:143 -msgid "" -"Pressing :guilabel:`Cancel` at any time will close the options dialog and " -"any changes made will **not** be applied. Pressing :guilabel:`OK` at any " -"time will close the options dialog and any changes made **will** be applied " -"immediately." -msgstr "" - -# 5d9f1ec5f58845aabf5207c033dd15e2 -#: ../../source/user-docs/application-help/options.rst:148 -msgid "" -"The exact button order shown on this dialog may differ depending on your " -"operating system or desktop environment." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/reports.po b/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/reports.po deleted file mode 100644 index 2c25d4ed..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/reports.po +++ /dev/null @@ -1,276 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:36+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# ed161969a72943df8209deb7758036cf -#: ../../source/user-docs/application-help/reports.rst:4 -msgid "Reports" -msgstr "" - -# c2ad21f230464e58af46d3e7effbd892 -#: ../../source/user-docs/application-help/reports.rst:6 -msgid "" -"Reports about the impact scenario project are generated using QGIS composer " -"templates. The default template is shipped with the plugin, but you can " -"easily create your own templates in QGIS and use them as a basis for your " -"reports." -msgstr "" - -# 865bb219900943329ccdeb6289d3f972 -#: ../../source/user-docs/application-help/reports.rst:12 -msgid "Localised templates are supported via the following simple schema:" -msgstr "" - -# 6c9ea3921bf8457880e22cf2114573ab -#: ../../source/user-docs/application-help/reports.rst:14 -msgid "" -"If there is a specified template called :file:`/path/to/template/foo.qpt` " -"then the plugin looks in the template directory :file:`/path/to/template/` " -"for a file called file :file:`foo-LANG.qpt`, where \"LANG\" is the language " -"code of the system locale." -msgstr "" - -# 9adb19f896f2459aba25be2444c09c2a -#: ../../source/user-docs/application-help/reports.rst:19 -msgid "" -"If such a file exists it will be used for report creation, otherwise the " -"original template :file:`/path/to/template/foo.qpt` will be used." -msgstr "" - -# 7ff3be05c1e44fcf9112a0f1445aa271 -#: ../../source/user-docs/application-help/reports.rst:24 -msgid "Report template elements" -msgstr "" - -# 76eb40f5e27f44a28800bb3297e51876 -#: ../../source/user-docs/application-help/reports.rst:26 -msgid "A template contains the following types of elements:" -msgstr "" - -# 8633d56a10664c1ebc0e9000516c8469 -#: ../../source/user-docs/application-help/reports.rst:28 -msgid "Static elements" -msgstr "" - -# 91bd6a93b86f4ed692d41aa57b085cc5 -#: ../../source/user-docs/application-help/reports.rst:29 -#: ../../source/user-docs/application-help/reports.rst:40 -msgid "Elements containing tokens for replacement" -msgstr "" - -# 66fa48c5d7ce43e3a7099dec0cd59329 -#: ../../source/user-docs/application-help/reports.rst:30 -#: ../../source/user-docs/application-help/reports.rst:49 -msgid "Elements that are directly updated by the renderer" -msgstr "" - -# 7b07fe59eec74ec28ede1ec37792a45a -#: ../../source/user-docs/application-help/reports.rst:33 -msgid "Static Elements" -msgstr "" - -# 6e4a54ed53f945bb983c6fa56c7f6eaf -#: ../../source/user-docs/application-help/reports.rst:35 -msgid "" -"These are elements which are not changed during report generation, e.g. some " -"logos/images, additional texts, etc. You can safely remove such elements or " -"replace them with your own as needed." -msgstr "" - -# 988008dc359e47a481e821005dd9866c -#: ../../source/user-docs/application-help/reports.rst:42 -msgid "" -"In this case the element name is not significant, only the token(s) it " -"contains. At render time any of the tokens in these elements will be " -"replaced with translated content (if an alternative locale is in effect) " -"from the plugin according to the keywords listed below in this document." -msgstr "" - -# 57d58e6d037141128413f25ffa302ed4 -#: ../../source/user-docs/application-help/reports.rst:51 -msgid "" -"In this case any content that may be present in the element is completely " -"replaced by the realtime map renderer, although certain styling options (e." -"g. graticule settings on the map) will remain in effect." -msgstr "" - -# 16c30b0ebf5a43d39a5971447a225f07 -#: ../../source/user-docs/application-help/reports.rst:55 -msgid "" -"These elements are recognised by their IDs and currently the plugin supports " -"the following elements:" -msgstr "" - -# 464b0575e9064a48a98f6d66a54f20b8 -#: ../../source/user-docs/application-help/reports.rst:58 -msgid "" -"**safe-logo** --- QGIS composer image, which is used for displaying the |" -"project_name| logo with website url" -msgstr "" - -# dcf90082af9b4de0b222b488a83f6331 -#: ../../source/user-docs/application-help/reports.rst:60 -msgid "" -"**organisation-logo** --- QGIS composer image, which is used for displaying " -"an organisational logo; By default a combined supporters logo is used; To " -"use a custom logo image, set the path to your PNG file in the Options dialog " -"(see :ref:`toolbar_options` for details)." -msgstr "" - -# 5f2dee19dc9848108e0d7c9185472511 -#: ../../source/user-docs/application-help/reports.rst:65 -msgid "" -"**impact-map** --- QGIS composer map, which is used for displaying the " -"impact scenario" -msgstr "" - -# 58391e7e87764e979dff751954e9119a -#: ../../source/user-docs/application-help/reports.rst:67 -msgid "" -"**impact-legend** --- QGIS composer legend, which is used for displaying the " -"legend of the impact scenario" -msgstr "" - -# be5272472ce7499585d65d6a0e1c8c3d -#: ../../source/user-docs/application-help/reports.rst:69 -msgid "" -"**impact-report** --- QGIS composer label, which is used for displaying the " -"impact report table" -msgstr "" - -# 162c77b90edc46a389ed2c179e9f2f8f -#: ../../source/user-docs/application-help/reports.rst:72 -msgid "" -"As QGIS composer doesn't support automatic resizing of elements based on " -"their contents, make sure that labels have dimensions large enough to show " -"the full table." -msgstr "" - -# fd8eca09f870433baf45ecbe1bcfa53e -#: ../../source/user-docs/application-help/reports.rst:77 -msgid "Replaceable keywords" -msgstr "" - -# bc4176399a6b41f9b6cb8835dc0fe5a1 -#: ../../source/user-docs/application-help/reports.rst:79 -msgid "" -"This section describes tokenised keywords that are passed to the map " -"template. To insert any of these keywords into the map template, simply " -"enclose the key in [] (e.g. [place-name]) and it will be replaced by the " -"text value (e.g. Tondano). The list includes static phrases which have been " -"internationalised (and so they will be displayed in the language of the " -"selected map local, defaulting to English where no translation is available)." -msgstr "" - -# 849976b6bf9d4c9897b9f34532ee842b -#: ../../source/user-docs/application-help/reports.rst:87 -msgid "The following tokenised keywords are supported:" -msgstr "" - -# c9a9b2029d3e4459944517bceba72dd0 -#: ../../source/user-docs/application-help/reports.rst:89 -msgid "**impact-title** --- title of the impact scenario map" -msgstr "" - -# 206df42863e7436e935c19815cf7eca0 -#: ../../source/user-docs/application-help/reports.rst:90 -msgid "**date** --- date of the assessment" -msgstr "" - -# 0a5c1e8b314946f5b23e02dd73f77ebc -#: ../../source/user-docs/application-help/reports.rst:91 -msgid "**time** --- time of the assessment" -msgstr "" - -# 8d2fdb19a5ac4654bed441c90b95140c -#: ../../source/user-docs/application-help/reports.rst:92 -msgid "**safe-version** --- version of the plugin used" -msgstr "" - -# a4e36bd1fd0144dab0d30a623bd1a817 -#: ../../source/user-docs/application-help/reports.rst:93 -msgid "" -"**disclaimer** --- disclaimer text; By default this text is used: \"InaSAFE " -"has been jointly developed by Indonesian Government-BPNB, Australian " -"Govenment-AIFDR and the World Bank-GFDRR. These agencies and the individual " -"software developers of InaSAFE take no responsibility for the correctness of " -"outputs from InaSAFE or decisions derived as a consequence.\" To use custom " -"disclaimer text, enter desired text in the Options dialog (see :ref:" -"`toolbar_options` for details)." -msgstr "" - -# 9f361b660dfd4136a292bddd62e50164 -#: ../../source/user-docs/application-help/reports.rst:103 -msgid "Custom templates" -msgstr "" - -# b47e1ff234374faeb710ff9df3e144c9 -#: ../../source/user-docs/application-help/reports.rst:105 -msgid "" -"You have a few options to customise the template **without doing any " -"programming**. There are three primary ways you can achieve this:" -msgstr "" - -# f89e79e07fd240e5b8677663faec91ba -#: ../../source/user-docs/application-help/reports.rst:109 -msgid "" -"Moving replaceable keywords into different elements, or removing them " -"completely" -msgstr "" - -# 2a1d285a27234f148932a6853ae5ca72 -#: ../../source/user-docs/application-help/reports.rst:111 -msgid "" -"Changing template elements look and feel (e.g. setting up fonts, colors, " -"borders, etc.), moving the template elements themselves around or adding / " -"removing them completely" -msgstr "" - -# aff84c0da9964368bfc7814d9eabbe1f -#: ../../source/user-docs/application-help/reports.rst:114 -msgid "" -"Creating your own template from scratch and using it instead of default one" -msgstr "" - -# f31abab7594c49cbae8df9c95ac3d8c9 -#: ../../source/user-docs/application-help/reports.rst:116 -msgid "" -"The default template is provided as :file:`inasafe/safe_qgis/resources/qgis-" -"composer-templates/inasafe.qpt` and can be modified by opening the template " -"using the QGIS map composer, making your changes and then overwriting the " -"template or saving it in any directory." -msgstr "" - -# b19b92142fe643a4b5d3f6e7ca2bd75d -#: ../../source/user-docs/application-help/reports.rst:122 -msgid "" -"You should take care to test your template changes before using it in a " -"production environment." -msgstr "" - -# 8df2ba0f5e2d4f4dbb5f4c030e8c5f14 -#: ../../source/user-docs/application-help/reports.rst:125 -msgid "" -"In addition to the default template you can have as many custom templates as " -"you want. Just create templates, put them in a folder and go to :" -"menuselection:`Plugins ‣ InaSAFE ‣ InaSAFE Options` or click on the |" -"project_name| plugin toolbar's :guilabel:`Options` button. In the Options " -"dialog specify the :guilabel:`Report template` setting. It should contain " -"the full path to the folder with your custom templates." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/save_scenario.po b/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/save_scenario.po deleted file mode 100644 index 1e272ce9..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/save_scenario.po +++ /dev/null @@ -1,70 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:36+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 69419d0fe7e949c2bc5e1b0c5f33c0f0 -#: ../../source/user-docs/application-help/save_scenario.rst:4 -msgid "Save Scenario" -msgstr "Sauvegarder le scénario" - -# cf4f45960e364723803f7db3d5f78d4d -#: ../../source/user-docs/application-help/save_scenario.rst:6 -msgid "" -"The Save Current Scenario tool allows you to save scenarios (:ref:" -"`tb_save_scenario`) and batch run them again in the batch runner tool (:ref:" -"`batch_runner`) in one go:" -msgstr "" - -# 69419d0fe7e949c2bc5e1b0c5f33c0f0 -#: ../../source/user-docs/application-help/save_scenario.rst:15 -#, fuzzy -msgid "Save current scenario" -msgstr "Sauvegarder le scénario" - -# 42fb28c1b1f6492587f5042f3f34e622 -#: ../../source/user-docs/application-help/save_scenario.rst:15 -msgid "*Save current scenario*" -msgstr "" - -# 4f84cadfe4244c9495fb906974e67322 -#: ../../source/user-docs/application-help/save_scenario.rst:17 -msgid "" -"This is the tool you need to prepare/save scenarios for the :ref:" -"`tb_batch_runner`. It lets you save the current visible scenario in QGIS to " -"a :file:`.txt` file. Once saved you can reopen this file as a scenario again " -"in Batch runner and recalculate it." -msgstr "" - -# a9addeb6fb65494eaa26b503cdc3da73 -#: ../../source/user-docs/application-help/save_scenario.rst:22 -msgid "" -"A more detailed description of the batch runner is available in :ref:" -"`batch_runner`." -msgstr "" - -# 40e8826584454677abe66eb9dc9e1e47 -#: ../../source/user-docs/application-help/save_scenario.rst:25 -msgid "" -"This tool currently does not store the impact function parameters you may " -"have set. Consequently all impact functions will run using their default " -"options." -msgstr "" -"Pour le moment, cet outil n'enregistre par les paramètres des types " -"d'impacts que vous avez peut-être modifiés. Par conséquent, tous les types " -"d'impact vont fonctionner en utilisant les options par défaut. " diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/user_extents.po b/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/user_extents.po deleted file mode 100644 index 4fcdf454..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/application-help/user_extents.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-03-24 18:57+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# b3a7db31339843358da3700f7f742773 -#: ../../source/user-docs/application-help/user_extents.rst:4 -msgid "User Extents" -msgstr "" - -# a15711bd9eff4b0e9ac4ec1e0a900705 -#: ../../source/user-docs/application-help/user_extents.rst:6 -msgid "" -"As of version 2.2, it is possible to explicitly define the extents that " -"should be used for the analysis. You can use the new :menuselection:" -"`Plugins-->InaSAFE-->Set the analysis area for InaSAFE` to invoke the " -"extents selection dialog." -msgstr "" - -# 4329a822ca174332acc796b66e93c83d -#: ../../source/user-docs/application-help/user_extents.rst:16 -msgid "User extents dialog" -msgstr "" - -# eed6acfb973f43f5b93b299feaff94f0 -#: ../../source/user-docs/application-help/user_extents.rst:18 -msgid "" -"It is important do understand the logical workflow for your custom defined " -"extents and their relation to the layer and viewport extents. There are " -"three possible permutations for the basic extents clipping behaviour:" -msgstr "" - -# fa2794c60e494645b535e84e4fe77500 -#: ../../source/user-docs/application-help/user_extents.rst:25 -msgid "" -"**No clipping**: use full extents of the union of the hazard and exposure" -msgstr "" - -# 8b5505ada4e8451e92d0b968565c12cd -#: ../../source/user-docs/application-help/user_extents.rst:23 -msgid "" -"datasets regardless of your current viewport (where you are zoomed to on the " -"map. You can enable this behaviour in the options dialog by unticking :" -"guilabel:`Clip datasets to visible extents before analysis`." -msgstr "" - -# a7a4906633fc4467b04ab88c50100e7c -#: ../../source/user-docs/application-help/user_extents.rst:30 -msgid "" -"**Clip to visible viewport extents**: use the common overlapping area of" -msgstr "" - -# 03f3138b4f8d4dbe9fd46572ac646f5f -#: ../../source/user-docs/application-help/user_extents.rst:28 -msgid "" -"hazard, exposure and the current extents for the analysis (enable this " -"behaviour by ticking :guilabel:`Clip datasets to visible extents before " -"analysis`)." -msgstr "" - -# 4dca80f0a1ee475e8e300fa2edf60e59 -#: ../../source/user-docs/application-help/user_extents.rst:35 -msgid "" -"**Clip to the user defined extents**: use the common overlapping area of" -msgstr "" - -# aba76d48bfdb454b85990eaf0fac87a5 -#: ../../source/user-docs/application-help/user_extents.rst:33 -msgid "" -"hazard, exposure and the user defined extents for the analysis (enable this " -"behaviour by using :menuselection:`Plugins-->InaSAFE-->Set the analysis area " -"for InaSAFE`)." -msgstr "" - -# 2e50309ebf2d4d708667b5d51e0aed0b -#: ../../source/user-docs/application-help/user_extents.rst:37 -msgid "" -"When you select an area using the user extents dialog (either by pressing " -"the :guilabel:`Select on map` button, or by manually typing the extents " -"coordinates) the user extent will be shown with a blue rectangle on the map " -"if you have rubber band previews enabled. Creating a user defined analysis " -"extent will enable the third behaviour described above, and any analysis " -"done will disregard the current viewport extents and only consider the " -"intersection of the user defined analysis ares and the hazard and exposure " -"layers." -msgstr "" - -# ecc93f27a6224e2183168bde736e6058 -#: ../../source/user-docs/application-help/user_extents.rst:45 -msgid "" -"**Note:** To disable user defined extents, :menuselection:`Plugins--" -">InaSAFE-->Set the analysis area for InaSAFE` then click the :guilabel:" -"`clear` button." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/functionality.po b/docs/i18n/fr/LC_MESSAGES/user-docs/functionality.po deleted file mode 100644 index 7e93b008..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/functionality.po +++ /dev/null @@ -1,297 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-10-03 00:00+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 37d605beb94a4139b66984afec8ccecf -#: ../../source/user-docs/functionality.rst:4 -msgid "Functionality" -msgstr "" - -# 6180f372c0ac49009c5f6421ca58f62f -#: ../../source/user-docs/functionality.rst:6 -msgid "" -"This document describes |project_name|'s functionality in regard to what " -"inputs are needed to carry on an analysis. At the highest level |" -"project_name| will take a hazard layer (such as ground shaking, water depth " -"or ash load) and an exposure layer (such as population density or building " -"footprints) and combine them according to an impact function to produce an " -"impact layer and a report." -msgstr "" - -# d3ebac3bbd5c4604adcd9a19117c17d7 -#: ../../source/user-docs/functionality.rst:14 -msgid "Hazard layers" -msgstr "" - -# 628098aaa35e41d081431b7cdfa2c093 -#: ../../source/user-docs/functionality.rst:16 -msgid "The supported hazard layers are:" -msgstr "" - -# 15bdb34dedde44ec8a36cad924ba0286 -#: ../../source/user-docs/functionality.rst:19 -msgid "Hazard" -msgstr "" - -# 395e69b3e23545ad96c6473e97d9c10d -# 7f24b78fbe0e4623813ac3379af45be2 -#: ../../source/user-docs/functionality.rst:19 -#: ../../source/user-docs/functionality.rst:40 -msgid "Spatial type" -msgstr "" - -# df1aa8c74dea4ab4b3ea5e564700d2b5 -#: ../../source/user-docs/functionality.rst:19 -msgid "Hazard type" -msgstr "" - -# 6910076ea1624e12ac0adb85857cc482 -# d4217bbe26934133955ec267030ef203 -#: ../../source/user-docs/functionality.rst:19 -#: ../../source/user-docs/functionality.rst:40 -msgid "Attribute name" -msgstr "" - -# 0481067f75c645739d75ea49f7d4e7a3 -# 44fda5d8851249d3974035a206ca469c -#: ../../source/user-docs/functionality.rst:19 -#: ../../source/user-docs/functionality.rst:40 -msgid "Hazard units/fields" -msgstr "" - -# d40ff0ca7c6f486386ec98f17d1835df -#: ../../source/user-docs/functionality.rst:19 -msgid "Parameters" -msgstr "" - -# 38c5392c70da440d9693d5fa85d82348 -# 232789bdada44c87912f5490b2c4e4fa -# 8d96ec8f4fb24c30abb3bd43c01379e2 -#: ../../source/user-docs/functionality.rst:21 -#: ../../source/user-docs/functionality.rst:23 -#: ../../source/user-docs/functionality.rst:25 -msgid "Volcano" -msgstr "" - -# ff0c89de45f7428db15246354acdfcf4 -# 70d2bff9fbdb4a2e840b873c3046918f -# bda7d13f56914ecda647442d71f840f1 -# eecc8780545c43faa61e2928fdeb20ff -# c073df031423428f89874f7bc79dc4d3 -#: ../../source/user-docs/functionality.rst:21 -#: ../../source/user-docs/functionality.rst:27 -#: ../../source/user-docs/functionality.rst:29 -#: ../../source/user-docs/functionality.rst:33 -#: ../../source/user-docs/functionality.rst:42 -msgid "Raster" -msgstr "Raster" - -# ab3d0f208afb465fb84602efa8044167 -#: ../../source/user-docs/functionality.rst:21 -msgid "Ash load" -msgstr "" - -# 7dcfed285b8549bb89a6eee2f35e4ce6 -# b04ca6bf587a4728b29e4a38f7c31b60 -# 6fec9a00f5a2413894c524a2486a3025 -# 0bd2c7d5f4974f2bbf147d0210219f9e -# e416bf177b5042459adfa2bd7162c963 -#: ../../source/user-docs/functionality.rst:21 -#: ../../source/user-docs/functionality.rst:27 -#: ../../source/user-docs/functionality.rst:29 -#: ../../source/user-docs/functionality.rst:33 -#: ../../source/user-docs/functionality.rst:42 -msgid "N/A" -msgstr "" - -# 78787007414c47bcb40c2c16a3ce251a -#: ../../source/user-docs/functionality.rst:21 -msgid "kg/m^2" -msgstr "" - -# 5b83508324d949dcb639fcd4d6f5d12c -# 432ba9b77829400f90ecb56b34ca9825 -#: ../../source/user-docs/functionality.rst:23 -#: ../../source/user-docs/functionality.rst:43 -msgid "Point" -msgstr "" - -# c483fba3d3384b3ab67b97bf9c0cd218 -#: ../../source/user-docs/functionality.rst:23 -msgid "Distance from vent" -msgstr "" - -# 35268157739f4b44a130b265a411cd08 -#: ../../source/user-docs/functionality.rst:23 -msgid "Name" -msgstr "Nom" - -# 54b9cdf07b674f949ade61a237df4941 -# b01719ea70fe47018ff3a3c0cfb537a3 -# 2a81a6b249644670afeecf7ebdf51135 -# 1679c50691bd4da8b19f243e5c63f5bc -#: ../../source/user-docs/functionality.rst:23 -#: ../../source/user-docs/functionality.rst:25 -#: ../../source/user-docs/functionality.rst:43 -#: ../../source/user-docs/functionality.rst:44 -msgid "text" -msgstr "" - -# 4c962fa0e4b748eb97d6b8b6b18a6d8d -#: ../../source/user-docs/functionality.rst:23 -msgid "Radius [km]" -msgstr "" - -# e2fb75ac327d487283eaf5534f231770 -# 4a781f8fc6c64e0db9f7b004698ec308 -# d6c77bd3db4d450db1cc28097554d956 -#: ../../source/user-docs/functionality.rst:25 -#: ../../source/user-docs/functionality.rst:31 -#: ../../source/user-docs/functionality.rst:44 -msgid "Polygon" -msgstr "" - -# 57069e57a33f449f820e0cf569eb4479 -#: ../../source/user-docs/functionality.rst:25 -msgid "Category" -msgstr "" - -# 8dfe21d3914d437d982b1e5921c9532e -#: ../../source/user-docs/functionality.rst:25 -msgid "KRB" -msgstr "" - -# 228e8444eb294a9a8fe3846c756794c3 -#: ../../source/user-docs/functionality.rst:27 -msgid "Earthquake" -msgstr "" - -# d5985974a27040f0ad6966800c649fb6 -#: ../../source/user-docs/functionality.rst:27 -msgid "Shakemap" -msgstr "" - -# d1519092cc8b496ca9417b6a4e43b4ae -#: ../../source/user-docs/functionality.rst:27 -msgid "MMI" -msgstr "" - -# 1c93d0e3a0d04896a807d5d0373684c5 -# 8137d608ba43431f878248b2c5a51a9d -#: ../../source/user-docs/functionality.rst:29 -#: ../../source/user-docs/functionality.rst:31 -msgid "Flood" -msgstr "" - -# bee4967d45d54d1f973b2e4dabe8344f -# 7ee909c8b9e842fe81de2427547d0d0c -#: ../../source/user-docs/functionality.rst:29 -#: ../../source/user-docs/functionality.rst:33 -msgid "Depth" -msgstr "" - -# bf78592a92ef4eb1b7a213812215ecf5 -# 662103f71a5143a3bc7744066462c6c3 -#: ../../source/user-docs/functionality.rst:29 -#: ../../source/user-docs/functionality.rst:33 -msgid "m" -msgstr "" - -# 1c25518b89b14057984bcb050146bc7a -# 3b0a97c03050439f87d2ed61f7809b82 -#: ../../source/user-docs/functionality.rst:29 -#: ../../source/user-docs/functionality.rst:33 -msgid "Threshold [m]" -msgstr "" - -# 0fc03e9e0e4648d7a6d044063a1468c1 -#: ../../source/user-docs/functionality.rst:31 -msgid "Wet/Dry" -msgstr "" - -# e5e0d7d90b614b849c95458a940d5252 -#: ../../source/user-docs/functionality.rst:31 -msgid "affected" -msgstr "" - -# 02fb08db8b4248df9ba21f5823684b7c -#: ../../source/user-docs/functionality.rst:31 -msgid "1/0" -msgstr "" - -# 2c5977a3d64e46508321adc7bf855d77 -#: ../../source/user-docs/functionality.rst:31 -msgid "Threshold [%]" -msgstr "" - -# 0b97a9456587493499df619612af74bf -#: ../../source/user-docs/functionality.rst:33 -msgid "Tsunami" -msgstr "" - -# 8fd88558eaa7415a93fcea2af88e72d8 -#: ../../source/user-docs/functionality.rst:37 -msgid "Exposure layers" -msgstr "" - -# 836d793b77384525b168512d16f5dde8 -#: ../../source/user-docs/functionality.rst:40 -msgid "Exposure" -msgstr "" - -# e84db019b6454329936a69d10c4f6a62 -#: ../../source/user-docs/functionality.rst:40 -msgid "Exposure type" -msgstr "" - -# 491aaa6de25b477aa4b5a0987528a2c3 -#: ../../source/user-docs/functionality.rst:42 -msgid "Population" -msgstr "" - -# 86f4ca15a1cb45a581582869390808c7 -#: ../../source/user-docs/functionality.rst:42 -msgid "Density" -msgstr "" - -# 392c934553584999b9ff3fc22da4cf82 -#: ../../source/user-docs/functionality.rst:42 -msgid "People per pixel" -msgstr "" - -# dffc2ef494604f35bedf47b74f89d6fb -# c85ace7dc3374d46be2f135aeab60b1c -#: ../../source/user-docs/functionality.rst:43 -#: ../../source/user-docs/functionality.rst:44 -msgid "Structures" -msgstr "" - -# e86c1f9554f74132bbac6b6dafee880a -# af7cacec4c034d40bba2306b5f025832 -#: ../../source/user-docs/functionality.rst:43 -#: ../../source/user-docs/functionality.rst:44 -msgid "Structure type" -msgstr "" - -# db725312609a477f8afe7b9950b0a198 -# 3417ac0e246e41689e0ce44b06649086 -#: ../../source/user-docs/functionality.rst:43 -#: ../../source/user-docs/functionality.rst:44 -msgid "type" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/getting_help.po b/docs/i18n/fr/LC_MESSAGES/user-docs/getting_help.po deleted file mode 100644 index 60898ae5..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/getting_help.po +++ /dev/null @@ -1,105 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-06-17 21:51+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 80dd6c5c9fe34a9a99c181457d2f7e87 -#: ../../source/user-docs/getting_help.rst:4 -msgid "Getting Help" -msgstr "" - -# a3b948b630e74c75a30f0f1acebf8562 -#: ../../source/user-docs/getting_help.rst:6 -msgid "" -"If you need help using |project_name|, join the |project_name| mailing list " -"or connect with other local users." -msgstr "" - -# 5ec8daee5d354f3a84c769f996ec1709 -#: ../../source/user-docs/getting_help.rst:12 -msgid "|project_name| Google Group mailing list" -msgstr "" - -# a3dcc85b39c3468e9f3035efdeafeb5f -#: ../../source/user-docs/getting_help.rst:14 -msgid "You do not need a google account to use this forum/mailing list!" -msgstr "" - -# 61cecc01c3d443a0b6cb1534e83fd31c -#: ../../source/user-docs/getting_help.rst:16 -msgid "" -"If you experience problems using |project_name|, have suggestions on " -"improving the software or simply would like to get in contact with other |" -"project_name| users, join our google group by sending an email to:" -msgstr "" - -# ac8e3c16378f4485a5cf0b42c9820550 -#: ../../source/user-docs/getting_help.rst:20 -msgid "inasafe-users+subscribe@googlegroups.com" -msgstr "" - -# 0d3789d82dbb4fc79b90ead5a15caf5f -#: ../../source/user-docs/getting_help.rst:22 -msgid "You can unsubscribe from the list at any time by sending an email to:" -msgstr "" - -# b553b8aafe6e449494cfeaf4dee195f3 -#: ../../source/user-docs/getting_help.rst:24 -msgid "inasafe-users+unsubscribe@googlegroups.com" -msgstr "" - -# 6dc2f6eeb3c64a338b784f1f71f42431 -#: ../../source/user-docs/getting_help.rst:26 -msgid "" -"You can view the message archive of this forum on the |project_name| users " -"group page at:" -msgstr "" - -# 5c2202e2e56e4297ba1d071bbd468fbc -#: ../../source/user-docs/getting_help.rst:29 -msgid "https://groups.google.com/forum/?fromgroups#!forum/inasafe-users" -msgstr "" - -# 2d5fc492547546fd8859c209230c9584 -#: ../../source/user-docs/getting_help.rst:33 -msgid "Localised help" -msgstr "" - -# 6998245b74e44c7691bcd17fd5b439d4 -#: ../../source/user-docs/getting_help.rst:35 -msgid "" -"For users in Indonesia, there is a Facebook group where you can request help " -"in Indonesian language." -msgstr "" - -# 117d1cb0791046be965e4aa4ccc793fb -#: ../../source/user-docs/getting_help.rst:38 -msgid "https://www.facebook.com/groups/forumQGISindo/" -msgstr "" - -# 083f394c64464ebcac5fcbc4f69fcae8 -#: ../../source/user-docs/getting_help.rst:42 -msgid "Getting involved" -msgstr "Participer" - -# 89ec464443cb4915b5679e6bc8e72293 -#: ../../source/user-docs/getting_help.rst:44 -msgid "" -"To help in the development of |project_name| or report a bug, visit :ref:" -"`getting_involved`." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/getting_involved.po b/docs/i18n/fr/LC_MESSAGES/user-docs/getting_involved.po deleted file mode 100644 index 90ffabae..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/getting_involved.po +++ /dev/null @@ -1,251 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-07-06 20:49+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 10f3c32b38e545bfa7f2c1c575f4ad9b -#: ../../source/user-docs/getting_involved.rst:4 -msgid "Getting involved" -msgstr "Participer" - -# e22ddfa2410a40e695f95198f3332d7f -#: ../../source/user-docs/getting_involved.rst:6 -msgid "" -"If you like the work we are doing with |project_name| and would like to " -"contribute, we will welcome your involvement. We spend a lot of time and " -"effort trying to make a robust, user-friendly and useful software platform, " -"but there is no substitute for having interested users participating and " -"sharing their needs, problems and successes! Here are a few simple ways you " -"can get involved:" -msgstr "" -"Si vous aimez le travail que nous fournissons pour |project_name| et que " -"vous voudriez participer, nous apprécierons votre contribution. Nous " -"investissons beaucoup de temps et d'efforts pour élaborer une plateforme " -"logicielle robuste, intuitive et pratique, mais rien ne remplace l'aide que " -"peuvent apporter des utilisateurs passionnés en participant et en exprimant " -"leurs besoins, leurs problèmes et leurs réussites. Voici quelques manières " -"simples de vous impliquer : " - -# b104e63d6df647159e6a74d3660de862 -#: ../../source/user-docs/getting_involved.rst:17 -msgid "Visit our web site!" -msgstr "Visitez notre site web !" - -# 02760de8fb6949578e5dc710d4913b54 -#: ../../source/user-docs/getting_involved.rst:19 -msgid "" -"The web site will always contain the latest information on how to use |" -"project_name|. We encourage anyone who wants to get involved with the " -"project to first read the content available on the site to familiarise " -"themselves with the content. The website is available at:" -msgstr "" -"Ce site web est constamment actualisé avec les informations les plus " -"récentes détaillant comment utiliser |project_name|. Nous encourageons tous " -"les utilisateurs souhaitant s'impliquer dans le projet à lire tout d'abord " -"les explications disponibles sur le site pour se familiariser avec son " -"contenu. L'adresse du site est : " - -# ceafbf5b860042b0a836885b04ce2354 -#: ../../source/user-docs/getting_involved.rst:25 -msgid "http://inasafe.org" -msgstr "http://inasafe.org" - -# 7cde5d1c0f0f4fe38093fe6dcfcdde59 -#: ../../source/user-docs/getting_involved.rst:27 -msgid "" -"If you need help in solving problems with |project_name| take a look at :ref:" -"`getting_help`." -msgstr "" -"Si vous avez besoin d'aide pour résoudre des problèmes concernant |" -"project_name|, consultez :ref:`getting_help`." - -# c9b2d3abfffa4d82847ada1cc7d92e44 -#: ../../source/user-docs/getting_involved.rst:33 -msgid "Add yourself to the |project_name| Usermap!" -msgstr "Inscrivez-vous dans la liste des utilisateurs de |project_name| ! " - -# e8ef6579ea514adb8b78f040623050f0 -#: ../../source/user-docs/getting_involved.rst:35 -msgid "" -"As a User/Trainer/Developer of |project_name| you are encouraged to add " -"yourself to the Usermap page available at:" -msgstr "" -"En tant qu'utilisateur/formateur/développeur de |project_name|, vous êtes " -"vivement encouragé à vous inscrire sur le répertoire des utilisateurs sur la " -"page :" - -# 9fc70633292443a6872a0adb6de27ccb -#: ../../source/user-docs/getting_involved.rst:38 -msgid "http://users.inasafe.org/" -msgstr "http://users.inasafe.org/" - -# 10c8f7ae91a344798b541d8ee6ea52b7 -#: ../../source/user-docs/getting_involved.rst:40 -msgid "" -"Use the :guilabel:`Add me to map!` button on the left side and point the " -"cross to the place where you live. Fill in your user data and click on :" -"guilabel:`Done!`. Here you may also download the coordinates of all entered |" -"project_name| users as a CSV file." -msgstr "" -"Utilisez le bouton :guilabel:`M'ajouter à la carte !` à gauche de l'écran et " -"placez la croix sur l'endroit où vous vivez. Remplissez vos données " -"utilisateurs et cliquez sur :guilabel:`Terminé !` Sur cette page, vous " -"pouvez également télécharger sous forme de fichier CSV les coordonnées de " -"tous les utilisateurs inscrits sur le projet |project_name|." - -# 33f2a0b492164b45bcf3ab8878914eef -#: ../../source/user-docs/getting_involved.rst:49 -msgid "Use our issue tracker!" -msgstr "Utilisez notre répertoire de problèmes connus !" - -# e55592dfc27b45da8eba4fba373dbbd7 -#: ../../source/user-docs/getting_involved.rst:51 -msgid "We maintain an issue tracker here:" -msgstr "Nous gardons à jour un répertoire de problèmes connus ici :" - -# d877de984044435484cda3816cd06142 -#: ../../source/user-docs/getting_involved.rst:53 -msgid "http://github.com/AIFDR/inasafe/issues" -msgstr "http://github.com/AIFDR/inasafe/issues" - -# 77dbd0dfe95a474abbad2a9143436e05 -#: ../../source/user-docs/getting_involved.rst:55 -msgid "" -"On this page you can browse and search existing issues and create new " -"issues. The issue tracker is a great place to let us know about specific " -"bugs you encounter or tell us about new features you would like to see in " -"the software. Information about how to correctly file an issue is available " -"in the :ref:`issue_howto` section." -msgstr "" -"Sur cette page, vous pouvez parcourir et rechercher les problèmes connus ou " -"en signaler de nouveaux. Notre répertoire de problèmes connus est l'endroit " -"idéal pour nous informer des bugs spécifiques que vous avez pu rencontrer ou " -"pour solliciter les nouvelles fonctionnalités dont vous souhaiteriez voir le " -"logiciel doté. Plus des informations plus détaillées expliquant comment " -"signaler correctement un problème, référez-vous à la section :ref:" -"`issue_howto`." - -# cb9e95831f7a48c0a6c30869d34c776a -#: ../../source/user-docs/getting_involved.rst:64 -msgid "Chat live to developers on IRC!" -msgstr "Discutez en direct avec les développeurs sur IRC !" - -# 71b015aad47b486080b5d9c10a4496b9 -#: ../../source/user-docs/getting_involved.rst:66 -msgid "" -"Internet Relay Chat (IRC) is a chat room environment where you can talk (by " -"typing messages) to other |project_name| users and developers to discuss " -"ideas and get help. You can use your own IRC client and join #inasafe on the " -"irc.freenode.net network. We also have a direct link on http://www.inasafe." -"org. Click on :guilabel:`Chat live!` at the top of the page and join us in " -"the channel. Alternatively, you can use your web browser to join the chat " -"room using the link below:" -msgstr "" -"Internet Relay Chat (IRC) est un environnement de canaux de discussion où " -"vous pouvez dialoguer (en tapant des messages) avec d'autres utilisateurs et " -"des développeurs de |project_name|, débattre de nouvelles idées et recevoir " -"de l'aide. Vous pouvez utiliser votre propre client IRC et rejoindre " -"#inasafe sur le réseau irc.freenode.net. Un lien direct est également " -"disponible sur http://www.inasafe.org. Cliquez sur :guilabel:`Discutez en " -"direct !` en haut de la page pour entrer dans le canal de discussion. Sinon, " -"vous pouvez le rejoindre via votre navigateur en cliquant sur le lien ci-" -"dessous :" - -# e7ddfa30b6594199bbd947430c9a967f -#: ../../source/user-docs/getting_involved.rst:77 -msgid "http://webchat.freenode.net/" -msgstr "http://webchat.freenode.net/" - -# 872473fd878e44f7b4625ba4087975a5 -#: ../../source/user-docs/getting_involved.rst:79 -msgid "" -"On the form that appears, choose a user name, enter :kbd:`#inasafe` in the :" -"guilabel:`Channels:` box and complete the rest of the details in the form. " -"After logging in wait a few moments and you will be taken to the #inasafe " -"channel." -msgstr "" -"Sur le formulaire qui apparaît, choisissez un nom d'utilisateur, tapez :kbd:" -"`#inasafe` dans le champ :guilabel:`Channels:` et remplissez le reste des " -"informations demandées dans le formulaire. Une fois connecté, attendez " -"quelques instants pour être transféré vers le canal #inasafe." - -# 1a8b2af544bd4c7dbfd1d6d5754de9a6 -#: ../../source/user-docs/getting_involved.rst:84 -msgid "" -"Other people in the room may not be actively watching the channel, so just " -"ask your question, leave the chat window open and check back every now and " -"then until you see other chat room members become active." -msgstr "" -"Comme les autres personnes présentes dans le canal peuvent ne pas être en " -"train de regarder l'interface, vous pouvez simplement poser votre question, " -"laisser la fenêtre de discussion ouverte et y jeter un œil de temps en temps " -"jusqu'à ce que vous voyez d'autres membres du canal devenir actifs." - -# 0757c899b8814ba8b9cb8cbbf5ab13af -#: ../../source/user-docs/getting_involved.rst:91 -msgid "Submit your code!" -msgstr "Envoyez votre code !" - -# 71d545c9a215494da0a449486e32bef8 -#: ../../source/user-docs/getting_involved.rst:93 -msgid "" -"We must emphasise that |project_name| is **free** and **open source**. That " -"means anyone (or any organisation) can freely modify, adapt and improve the " -"software. We welcome any contributions to |project_name|." -msgstr "" -"Nous insistons sur le fait que |project_name| est **gratuit** et **open " -"source**. Cela signifie que que n'importe qui (ou n'importe quelle " -"organisation) peut librement modifier, adapter ou améliorer notre logiciel. " -"Toutes les contributions au projet |project_name| sont les bienvenues." - -# d14e369408f7418cb4c9022be05c8b55 -#: ../../source/user-docs/getting_involved.rst:98 -msgid "" -"The easiest way to do this is to `fork `_ the |project_name| code base on GitHub and then send us a " -"`pull request `_." -msgstr "" -"Pour ce faire, la méthode la plus facile est de `cloner (fork) `_ le code de |project_name| sur GitHub puis " -"de nous `transmettre une requête (pull request) `_." - -# 0efae9923876460290104843594895b4 -#: ../../source/user-docs/getting_involved.rst:103 -msgid "" -"We also welcome small improvements, translations or other fixes via the " -"issue management system mentioned above." -msgstr "" -"Les petites améliorations, traductions ou autres corrections envoyées via le " -"système de gestion des problèmes mentionné plus haut sont également " -"bienvenues." - -# d765d7ec61554a159afd36833351d461 -#: ../../source/user-docs/getting_involved.rst:106 -msgid "" -"We have strict requirements that all code submitted to |project_name| is " -"compliant with high coding_standards and is continually tested by a " -"comprehensive regression testing system. We have this requirement in place " -"to ensure a good experience for our users and to ensure that users can have " -"confidence in the results produced by |project_name|." -msgstr "" -"Nous avons pour stricte exigence que tout code envoyé pour |project_name| " -"soit conforme à des règles de codage optimales et soit constamment testé par " -"un système de test de régression. Notre but en imposant une telle contrainte " -"est d'assurer une bonne expérience à tous nos utilisateurs et que ces " -"derniers puissent se fier aux résultats produits par |project_name|." diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.po b/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.po deleted file mode 100644 index baedb5d5..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.po +++ /dev/null @@ -1,122 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2014-11-10 14:16+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# d531e3f978f54de38aeae9a6bcab1499 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:6 -msgid "Categorical Hazard Building Impact Function" -msgstr "" - -# 079c9d8416a14432a6a4dff6c9164b89 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:9 -msgid "Overview" -msgstr "Présentation" - -# f3fc4d228e194db6a512118729126a16 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:11 -msgid "**Unique Identifier**: Categorical Hazard Building Impact Function" -msgstr "" - -# 593bc107d61b49ca9f4013ff6ecda462 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:14 -msgid "**Author**: ESSC" -msgstr "" - -# 7b98f0c42dc74606adfa1e40af9a28f9 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:17 -msgid "**Rating**: 3" -msgstr "" - -# 2b944c65e911402d9beb6a85169ed875 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:20 -msgid "**Title**: Be impacted by each category" -msgstr "" - -# c67cd409298741788a3fba787817a9e4 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of categorized hazard in raster format " -"on structure/building raster layer." -msgstr "" - -# 6d4e16241b9641f09d107f2a12e4da96 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:26 -msgid "" -"**Actions**: Provide details about how many building would likely need to be" -" affected for each category." -msgstr "" - -# bc8ec2c88cff4875842d3d754e500cd1 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:29 -msgid "" -"**Hazard Input**: A hazard raster layer where each cell represents the " -"category of the hazard. There should be 3 categories: 1, 2, and 3." -msgstr "" - -# 67af5f0511b4423eb8215d27617179f6 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:32 -msgid "" -"**Exposure Input**: Vector polygon layer which can be extracted from OSM " -"where each polygon represents the footprint of a building." -msgstr "" - -# c634b7c48e884727b48fc73553b698fb -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:35 -msgid "" -"**Output**: Map of structure exposed to high category and a table with " -"number of structure in each category" -msgstr "" - -# 9f5cf99f309d47d1a61f911e320eac14 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:39 -msgid "Details" -msgstr "" - -# 283fab652b2d4bbb8ef6d5e566a26f45 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:41 -msgid "" -"This function will calculate how many buildings will be affected per each " -"category for all categories in the hazard layer. Currently there should be 3" -" categories in the hazard layer. After that it will show the result and the " -"total of buildings that will be affected for the hazard given." -msgstr "" - -# e9d390a5fb17455b85877a667ca4f8db -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:44 -msgid "Doc String" -msgstr "" - -# 3cf56bff4754466f8dbb12c8ce8fec13 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:46 -msgid "Impact plugin for categorising hazard impact on building data" -msgstr "" - -# 5b73555cbd714cfc9409dc1d8b0daedd -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:48 -msgid "" -":author ESSC :rating 3 :param requires category=='hazard' and" -" unit=='categorised' and " -"layertype=='raster'" -msgstr "" - -# 56bf0498bcf74994b43731ad931296d4 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:52 -msgid "" -":param requires category=='exposure' and " -"subcategory=='structure' and layertype=='vector'" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.po b/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.po deleted file mode 100644 index 6222b62e..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.po +++ /dev/null @@ -1,127 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: 2015-02-26 15:22+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 0c772de201d7402ab35b9f8f67f28d0a -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:6 -msgid "Categorical Hazard Population Impact Function" -msgstr "" - -# 83ac24fdf3d6477f889e90dec6e55001 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:9 -msgid "Overview" -msgstr "Présentation" - -# 252c180e127f4f6e8aa79d6b69a4550f -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:11 -msgid "**Unique Identifier**: Categorical Hazard Population Impact Function" -msgstr "" - -# 017c8719075b49a9a562a10e07bb2853 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:14 -msgid "**Author**: ESSC" -msgstr "" - -# e7eb9fe7154446628f6caaea24070570 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:17 -msgid "**Rating**: 3" -msgstr "" - -# 5aabcfd392e04748b9ce529827992c72 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:20 -msgid "**Title**: Be affected by each hazard category" -msgstr "" - -# 22ccd4ecc56a49bfada7230eb972fbfa -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of categorized hazards in raster format " -"on population raster layer." -msgstr "" - -# db0d6b1630024622ac535bfcc9dad82f -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:26 -msgid "" -"**Actions**: Provide details about how many people would likely need to be " -"impacted for each category." -msgstr "" - -# 8f9588a8150645069d42dfd61163771d -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:29 -msgid "" -"**Hazard Input**: A hazard raster layer where each cell represents the " -"category of the hazard. There should be 3 categories: 1, 2, and 3." -msgstr "" - -# ba08215b7f7c41b0b4eb4869c12dcec2 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:32 -msgid "" -"**Exposure Input**: An exposure raster layer where each cell represent " -"population count." -msgstr "" - -# 7821f714c9a146b083fc191907dd3fd8 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:35 -msgid "" -"**Output**: Map of population exposed to high category and a table with " -"number of people in each category" -msgstr "" - -# 73679185d5f5415a8f07cba479da3487 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:38 -msgid "**Limitation**: The number of categories is three." -msgstr "" - -# 7f9ff5071cba4a89bed838a72ebca544 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:42 -msgid "Details" -msgstr "" - -# e3db9ccba76545e192c0b27755ddd302 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:44 -msgid "" -"This function will calculate how many people will be impacted per each " -"category for all categories in the hazard layer. Currently there should be 3" -" categories in the hazard layer. After that it will show the result and the " -"total amount of people that will be impacted for the hazard given." -msgstr "" - -# 2c86918517624f3e97326062474a458c -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:47 -msgid "Doc String" -msgstr "" - -# 7fc8ec619a8a466e92be6a80617e568d -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:49 -msgid "Plugin for impact of population as derived by categorised hazard." -msgstr "" - -# 4625dd2d0e934f8ba03d47d037ee2a2a -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:51 -msgid "" -":author ESSC :rating 3 :param requires category=='hazard' and" -" unit=='categorised' and " -"layertype=='raster'" -msgstr "" - -# d854fbe88b52404a84b0c8d5ed8b352e -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:55 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.po b/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.po deleted file mode 100644 index f36359a4..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.po +++ /dev/null @@ -1,127 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2015-02-26 15:22+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 1a506fe9dde34b53ba137c31227484e8 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:6 -msgid "Categorised Hazard Population Impact Function" -msgstr "" - -# 78ba30c66afd4cfcad9e493926d61f7d -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:9 -msgid "Overview" -msgstr "Présentation" - -# d1a20fe1380341ca94504e461b24fb23 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:11 -msgid "**Unique Identifier**: Categorised Hazard Population Impact Function" -msgstr "" - -# bc1dc53d43274052a4b36ac9dcd91680 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:14 -msgid "**Author**: AIFDR" -msgstr "" - -# 189ef9893ecf41cbabfd9dc8f3d60c1c -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:17 -msgid "**Rating**: 2" -msgstr "" - -# bcf151f26d514029aee65fd0b085fdf0 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:20 -msgid "**Title**: Be impacted" -msgstr "" - -# a8f820069ac34896b2d8af29703c07bd -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of categorized hazards in raster format " -"on population raster layer." -msgstr "" - -# 5bacf94f7a9b45af9a0cd14a62237390 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:26 -msgid "" -"**Actions**: Provide details about how many people would likely need to be " -"impacted for each category." -msgstr "" - -# ceb64bee44364db39825fb82e81bfc82 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:29 -msgid "" -"**Hazard Input**: A hazard raster layer where each cell represents the " -"category of the hazard. There should be 3 categories: 1, 2, and 3." -msgstr "" - -# 79a8c2785d554204a7dc65eff47b1e59 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:32 -msgid "" -"**Exposure Input**: An exposure raster layer where each cell represent " -"population count." -msgstr "" - -# 2e61bb7e50574c1396445993008f891c -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:35 -msgid "" -"**Output**: Map of population exposed to high category and a table with " -"number of people in each category" -msgstr "" - -# 10d81f7088a34353a6d447e8e18cc878 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:38 -msgid "**Limitation**: The number of categories is three." -msgstr "" - -# 79bdbe8352644874b0c38a0259e62b36 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:42 -msgid "Details" -msgstr "" - -# 640fa7d446a74e8a9193f20172e77f88 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:44 -msgid "" -"This function will calculate how many people will be impacted per each " -"category for all categories in the hazard layer. Currently there should be 3" -" categories in the hazard layer. After that it will show the result and the " -"total amount of people that will be impacted for the hazard given." -msgstr "" - -# 530d2a5ce61548d98a849d811f4334dc -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:47 -msgid "Doc String" -msgstr "" - -# 83189c167c664fb985f0bd204b2a8a48 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:49 -msgid "Plugin for impact of population as derived by categorised hazard." -msgstr "" - -# 124e4939db24411eace3e9f29f0b97f3 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:51 -msgid "" -":author AIFDR :rating 2 :param requires category=='hazard' and" -" unit=='normalised' and " -"layertype=='raster'" -msgstr "" - -# a384987b02324caf9d757a75a2b1e34c -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:55 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.po b/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.po deleted file mode 100644 index 4c1adb36..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.po +++ /dev/null @@ -1,72 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2015-02-26 15:22+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# ffec091406a6429ea058c5d49677b6dd -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:6 -msgid "Earthquake Building Impact Function" -msgstr "" - -# 5265165e0cc948b3a77751df24513e33 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:9 -msgid "Overview" -msgstr "Présentation" - -# 5d45c0064edd4fefb8a4f4022aa3ba77 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:11 -msgid "**Unique Identifier**: Earthquake Building Impact Function" -msgstr "" - -# 511d6c297c754a5e841a519856309c88 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:14 -msgid "**Title**: Be affected" -msgstr "" - -# a0164d6630d445b9b3fd68e4e588493d -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:18 -msgid "Details" -msgstr "" - -# 9466753de09641eeaab4f5a1ba586cff -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:20 -msgid "No documentation found" -msgstr "" - -# 22cac78fc9e14910b4c8cf45060028b5 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:23 -msgid "Doc String" -msgstr "" - -# 7a96aa7d1005473293a1a7e227a27d59 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:25 -msgid "Earthquake impact on building data." -msgstr "" - -# e6eefd0413c043afa4760f6bfa0303e1 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:27 -msgid "" -":param requires category=='hazard' and " -"subcategory=='earthquake'" -msgstr "" - -# e631b0d16cba485abe8955e039266839 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:29 -msgid "" -":param requires category=='exposure' and " -"subcategory=='structure' and layertype=='vector'" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/FloodBuildingImpactFunction.po b/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/FloodBuildingImpactFunction.po deleted file mode 100644 index 544ed425..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/FloodBuildingImpactFunction.po +++ /dev/null @@ -1,142 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2015-02-26 15:22+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 9ea4ebf55b464665b85b5777cd4b043d -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:6 -msgid "Flood Building Impact Function" -msgstr "" - -# 7c2ec896698145898cdf0cbb4d4ba58b -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:9 -msgid "Overview" -msgstr "Présentation" - -# 5a333aaa6f8b45f0bf3c573a2fd0255e -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:11 -msgid "**Unique Identifier**: Flood Building Impact Function" -msgstr "" - -# 51bee1e209524e3fbacb9de5dfc24da2 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:14 -msgid "**Author**: Ole Nielsen, Kristy van Putten" -msgstr "" - -# 63ce160203bd424a9ca2650e040f49b7 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:17 -msgid "**Rating**: 0" -msgstr "" - -# 781afad2c3594d8db8a8c538277966bb -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:20 -msgid "**Title**: Be flooded" -msgstr "" - -# b5d1ba3d3746423085ab4e1ad0934c43 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of (flood or tsunami) inundation on " -"building footprints originating from OpenStreetMap (OSM)." -msgstr "" - -# 0eb038b8e8f745db93d443f8fad19dda -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:26 -msgid "" -"**Actions**: Provide details about where critical infrastructure might be " -"flooded" -msgstr "" - -# 105117d124fc4e4ba5dccca495dc957e -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:29 -msgid "" -"**Hazard Input**: A hazard raster layer where each cell represents flood " -"depth (in meters), or a vector polygon layer where each polygon represents " -"an inundated area. In the latter case, the following attributes are " -"recognised (in order): \"affected\" (True or False) or \"FLOODPRONE\" (Yes " -"or No). (True may be represented as 1, False as 0" -msgstr "" - -# f8c9c6f7b07e4c50a79c4d0f6b7f037c -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:32 -msgid "" -"**Exposure Input**: Vector polygon or point layer extracted from OSM where " -"each feature represents the footprint of a building." -msgstr "" - -# 13450e065ee840329d4a4cc5e324abbd -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:35 -msgid "" -"**Output**: Vector layer contains building is estimated to be flooded and " -"the breakdown of the building by type." -msgstr "" - -# 9ef28e1c3b5f4b73b4f23b89b78a244a -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:38 -msgid "" -"**Limitation**: This function only flags buildings as impacted or not either" -" based on a fixed threshold in case of raster hazard or the the attributes " -"mentioned under input in case of vector hazard." -msgstr "" - -# 6e4e68ac4d024916859ea4269e40377f -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:42 -msgid "Details" -msgstr "" - -# 4345ac7c69ac4e858592ef5d6b9feede -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:44 -msgid "" -"The inundation status is calculated for each building (using the centroid if" -" it is a polygon) based on the hazard levels provided. if the hazard is " -"given as a raster a threshold of 1 meter is used. This is configurable " -"through the InaSAFE interface. If the hazard is given as a vector polygon " -"layer buildings are considered to be impacted depending on the value of " -"hazard attributes (in order) \"affected\" or \"FLOODPRONE\": If a building " -"is in a region that has attribute \"affected\" set to True (or 1) it is " -"impacted. If attribute \"affected\" does not exist but \"FLOODPRONE\" does, " -"then the building is considered impacted if \"FLOODPRONE\" is \"yes\". If " -"neither \"affected\" nor \"FLOODPRONE\" is available, a building will be " -"impacted if it belongs to any polygon. The latter behaviour is implemented " -"through the attribute \"inapolygon\" which is automatically assigned." -msgstr "" - -# f6f80223af4c4d699eec0dbce3877c17 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:47 -msgid "Doc String" -msgstr "" - -# d9af1e2f55fb465b94a08b7f69166797 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:49 -msgid "Inundation impact on building data." -msgstr "" - -# 513c6183036e4037a4919a65c4986ca4 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:51 -msgid "" -":author Ole Nielsen, Kristy van Putten # this rating below is only for " -"testing a function, not the real one :rating 0 :param requires " -"category=='hazard' and subcategory in ['flood', " -"'tsunami']" -msgstr "" - -# 7816f35b9db348b697f8c5873cc4e761 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:56 -msgid "" -":param requires category=='exposure' and " -"subcategory=='structure' and layertype=='vector'" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunction.po b/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunction.po deleted file mode 100644 index cf54752e..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunction.po +++ /dev/null @@ -1,136 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2015-02-26 15:22+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 2c7d32f0224f4462a77987ad05b22553 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:6 -msgid "Flood Evacuation Function" -msgstr "" - -# 8e74f212433d4e35b7144e2d422da95c -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:9 -msgid "Overview" -msgstr "Présentation" - -# 7b949f1b5b1e4ce79560b865110e7f15 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:11 -msgid "**Unique Identifier**: Flood Evacuation Function" -msgstr "" - -# a3a7311d9f0d486e93b8bd3fdce6d7b1 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:14 -msgid "**Author**: AIFDR" -msgstr "" - -# b7660790d5564d48a9e78a820bbbdacb -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:17 -msgid "**Rating**: 4" -msgstr "" - -# 357dac94f4774ecfbfe0fef666434c0a -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:20 -msgid "**Title**: Need evacuation" -msgstr "" - -# b7ba0cf1b96a47dbb03b33a610957cb6 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of flood inundation in raster format on " -"population." -msgstr "" - -# 9d8a6268b6dc49b08190961486167c65 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:26 -msgid "" -"**Actions**: Provide details about how many people would likely need to be " -"evacuated, where they are located and what resources would be required to " -"support them." -msgstr "" - -# 174909d93c5b4224b785521c983b4d63 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:29 -msgid "" -"**Hazard Input**: A hazard raster layer where each cell represents flood " -"depth (in meters)." -msgstr "" - -# 1f16ba6d0ac24904966afb62e66800e2 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:32 -msgid "" -"**Exposure Input**: An exposure raster layer where each cell represent " -"population count." -msgstr "" - -# 93b51afc3681469d8aaaddef23519ef6 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:35 -msgid "" -"**Output**: Raster layer contains people affected and the minimum needs " -"based on the people affected." -msgstr "" - -# cdcf415de93444e7954d8d39e527c54f -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:38 -msgid "" -"**Limitation**: The default threshold of 1 meter was selected based on " -"consensus, not hard evidence." -msgstr "" - -# 65dd6ed2d9ef47398e31f63291fe9383 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:42 -msgid "Details" -msgstr "" - -# 710a4654b812413cb2cbb6f217d95d78 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:44 -msgid "" -"The population subject to inundation exceeding a threshold (default 1m) is " -"calculated and returned as a raster layer. In addition the total number and " -"the required needs in terms of the BNPB (Perka 7) are reported. The " -"threshold can be changed and even contain multiple numbers in which case " -"evacuation and needs are calculated using the largest number with population" -" breakdowns provided for the smaller numbers. The population raster is " -"resampled to the resolution of the hazard raster and is rescaled so that the" -" resampled population counts reflect estimates of population count per " -"resampled cell. The resulting impact layer has the same resolution and " -"reflects population count per cell which are affected by inundation." -msgstr "" - -# a27537a4621846018082531cb4bc4f11 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:47 -msgid "Doc String" -msgstr "" - -# db97163d9574412fab00c6edfe3ae1dc -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:49 -msgid "Impact function for flood evacuation." -msgstr "" - -# 35782d5e394240afbef684d6c3044cc8 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:51 -msgid "" -":author AIFDR :rating 4 :param requires category=='hazard' and" -" subcategory=='flood' and " -"layertype=='raster' and unit=='m'" -msgstr "" - -# 482e4b5483e745579e699f48bd05a72c -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:55 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.po b/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.po deleted file mode 100644 index df56ae79..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.po +++ /dev/null @@ -1,127 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2015-02-26 15:22+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# a35cd718834345e19649999d8fab548e -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:6 -msgid "Flood Evacuation Function Vector Hazard" -msgstr "" - -# 58920d362167440183f9fcaae797d264 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:9 -msgid "Overview" -msgstr "Présentation" - -# 6996ddab3130453bb5e0a53893451396 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:11 -msgid "**Unique Identifier**: Flood Evacuation Function Vector Hazard" -msgstr "" - -# 919efa1a4c734a1abb0257e71fd795c1 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:14 -msgid "**Author**: AIFDR" -msgstr "" - -# 486b41755eed4045aebcaaa1010c32ad -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:17 -msgid "**Rating**: 4" -msgstr "" - -# 25891d26005f467ea6ead32d8f2e298d -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:20 -msgid "**Title**: Need evacuation" -msgstr "" - -# 7c4c06df55cf4b3c9c04eb4baf26e684 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of flood inundation in vector format on " -"population." -msgstr "" - -# 5f88ad03980b498f880b0bac6569c426 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:26 -msgid "" -"**Actions**: Provide details about how many people would likely need to be " -"evacuated, where they are located and what resources would be required to " -"support them." -msgstr "" - -# 1fe4497513a24bcc841bec14f1d80aa2 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:29 -msgid "" -"**Hazard Input**: A hazard vector layer which has attribute affected the " -"value is either 1 or 0" -msgstr "" - -# 4c61f64b6a6e43a19621400eff791bf4 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:32 -msgid "" -"**Exposure Input**: An exposure raster layer where each cell represent " -"population count." -msgstr "" - -# eb1ebcb76cb74d01a57e91cc40eba306 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:35 -msgid "" -"**Output**: Vector layer contains people affected and the minimum needs " -"based on evacuation percentage." -msgstr "" - -# 6308df4d138042778b3ca9009de116d3 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:39 -msgid "Details" -msgstr "" - -# ed10f0cedfeb4882b7b34aa3009aaa77 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:41 -msgid "" -"The population subject to inundation is determined whether in an area which " -"affected or not. You can also set an evacuation percentage to calculate how " -"many percent of the total population affected to be evacuated. This number " -"will be used to estimate needs based on BNPB Perka 7/2008 minimum bantuan." -msgstr "" - -# 9fa588a6639b44cb810ed1416c33fca8 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:44 -msgid "Doc String" -msgstr "" - -# d26cd565ce9b44f2b0240fe6b4e7ad8c -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:46 -msgid "Impact function for vector flood evacuation." -msgstr "" - -# 326e2b47e6054d5da7835c415906dda1 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:48 -msgid ":author AIFDR :rating 4" -msgstr "" - -# 24100e42e35d476688bdd03d4cde250a -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:51 -msgid "" -":param requires category=='hazard' and " -"subcategory=='flood' and layertype=='vector'" -msgstr "" - -# 8633bab0471248ada215ca057c5117fa -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:53 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/ITBFatalityFunction.po b/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/ITBFatalityFunction.po deleted file mode 100644 index 445d0828..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/ITBFatalityFunction.po +++ /dev/null @@ -1,311 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2015-02-26 15:22+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 2133be90ba0d40cbb36db15852e36de9 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:6 -msgid "I T B Fatality Function" -msgstr "" - -# ffe7ecc0768843fa80016be078a0b5d1 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:9 -msgid "Overview" -msgstr "Présentation" - -# a2c46017e8f449a8b61fc26a4bc6ca59 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:11 -msgid "**Unique Identifier**: I T B Fatality Function" -msgstr "" - -# cc2b327151d54e339ef6742cd1ef4e3e -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:14 -msgid "**Author**: Hadi Ghasemi" -msgstr "" - -# b19f15516c4b4bb68ae8ae7ed64c6b9e -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:17 -msgid "**Rating**: 3" -msgstr "" - -# d943622ab9d84ec8a1089888141e9706 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:20 -msgid "**Title**: Die or be displaced" -msgstr "" - -# 7a48a00bd05f4393a39f63f4eb6869c0 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impact of earthquake on population based on " -"earthquake model developed by ITB" -msgstr "" - -# da763113d9bb4642a90b44cc3bbd8719 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:26 -msgid "" -"**Actions**: Provide details about the population will be die or displaced" -msgstr "" - -# 3d02d0a18e5e4f1fa434adca120fc76e -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:33 -msgid "**Citations**:" -msgstr "" - -# 2393d6a5307a474e9f5255565c406fb2 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:30 -msgid "" -"Indonesian Earthquake Building-Damage and Fatality Models and Post " -"Disaster Survey Guidelines Development Bali, 27-28 February 2012, 54pp." -msgstr "" - -# e5e2a078d81c48249c28439015cd3e8f -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:31 -msgid "" -"Allen, T. I., Wald, D. J., Earle, P. S., Marano, K. D., Hotovec, A. J., " -"Lin, K., and Hearne, M., 2009. An Atlas of ShakeMaps and population " -"exposure catalog for earthquake loss modeling, Bull. Earthq. Eng. 7, " -"701-718." -msgstr "" - -# 1848bc4e250041a29a971036314bc5fe -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:32 -msgid "" -"Jaiswal, K., and Wald, D., 2010. An empirical model for global earthquake" -" fatality estimation, Earthq. Spectra 26, 1017-1037." -msgstr "" - -# b0ef1102896442f5802d6c5753c6c9b4 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:44 -msgid "**Limitation**:" -msgstr "" - -# 82dbd053275f41f2919d1dd6cd378ef7 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:36 -msgid "" -"The model is based on limited number of observed fatality rates during 4 " -"past fatal events." -msgstr "" - -# 5681d39a249849579f833b379fcf7679 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:37 -msgid "" -"The model clearly over-predicts the fatality rates at intensities higher " -"than VIII." -msgstr "" - -# c800dec064d14e6899f1d0e13f631faa -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:38 -msgid "" -"The model only estimates the expected fatality rate for a given intensity" -" level; however the associated uncertainty for the proposed model is not " -"addressed." -msgstr "" - -# 60b08159006a43f884616506e1554bbb -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:39 -msgid "There are few known mistakes in developing the current model:" -msgstr "" - -# fb1ad5195f624281a5328cf63c92982f -# c53fe501a4b3479f87b1af3b3c78efee -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:41 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:106 -msgid "rounding MMI values to the nearest 0.5," -msgstr "" - -# 4511da39edbf43f1aaebd70ea4a3dbcf -# e1b7c27ab68047a4a421ae2a021bcc0a -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:42 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:107 -msgid "Implementing Finite-Fault models of candidate events, and" -msgstr "" - -# 10d0bee0dd844b57b8d5e50eef8dc2e1 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:43 -msgid "consistency between selected GMPEs with those in use by BMKG." -msgstr "" - -# af9d9896840e42f283469b4c6da30e76 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:47 -msgid "Details" -msgstr "" - -# 28fcd5fa26244384ab71c63d642b9f00 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:49 -msgid "" -"This model was developed by Institut Teknologi Bandung (ITB) and implemented" -" by Dr. Hadi Ghasemi, Geoscience Australia Algorithm: In this study, the " -"same functional form as Allen (2009) is adopted o express fatality rate as a" -" function of intensity (see Eq. 10 in the report). The Matlab built-in " -"function (fminsearch) for Nelder-Mead algorithm was used to estimate the " -"model parameters. The objective function (L2G norm) that is minimized during" -" the optimisation is the same as the one used by Jaiswal et al. (2010). The " -"coefficients used in the indonesian model are x=0.62275231, y=8.03314466, " -"zeta=2.15" -msgstr "" - -# 26e54c2ac9954f01be2c7cde25977fa6 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:55 -msgid "Doc String" -msgstr "" - -# 6f45323fd71c4f9ca83001665a579c17 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:57 -msgid "Indonesian Earthquake Fatality Model." -msgstr "" - -# 13da163e07304313ad34ec49e2eb4fd6 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:59 -msgid "" -"This model was developed by Institut Teknologi Bandung (ITB) and implemented" -" by Dr. Hadi Ghasemi, Geoscience Australia." -msgstr "" - -# d693fe79812c4a6499bc88ce28f39fef -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:63 -msgid "Reference:" -msgstr "" - -# 059f39c6035444f7ad0efc230717469e -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:65 -msgid "" -"Indonesian Earthquake Building-Damage and Fatality Models and Post Disaster " -"Survey Guidelines Development, Bali, 27-28 February 2012, 54pp." -msgstr "" - -# 50383e86c55e4229b9953f89eb6e8b7a -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:70 -msgid "Algorithm:" -msgstr "" - -# 073f2e8201af43648b1c7513491a2310 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:72 -msgid "" -"In this study, the same functional form as Allen (2009) is adopted to " -"express fatality rate as a function of intensity (see Eq. 10 in the report)." -" The Matlab built-in function (fminsearch) for Nelder-Mead algorithm was " -"used to estimate the model parameters. The objective function (L2G norm) " -"that is minimised during the optimisation is the same as the one used by " -"Jaiswal et al. (2010)." -msgstr "" - -# ccd87963662d4a92bc404e40dfef5ad3 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:79 -msgid "" -"The coefficients used in the indonesian model are x=0.62275231, " -"y=8.03314466, zeta=2.15" -msgstr "" - -# 1984c19b918c4b50ab1e4a7bc23636d8 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:82 -msgid "" -"Allen, T. I., Wald, D. J., Earle, P. S., Marano, K. D., Hotovec, A. J., Lin," -" K., and Hearne, M., 2009. An Atlas of ShakeMaps and population exposure " -"catalog for earthquake loss modeling, Bull. Earthq. Eng. 7, 701-718." -msgstr "" - -# 751f87f5ebed4ddb919570778ccbe70e -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:87 -msgid "" -"Jaiswal, K., and Wald, D., 2010. An empirical model for global earthquake " -"fatality estimation, Earthq. Spectra 26, 1017-1037." -msgstr "" - -# 7c49492fac094552824dd28361a46596 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:91 -msgid "Caveats and limitations:" -msgstr "" - -# 04233e993cb8490388f44f037cc5ad70 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:93 -msgid "" -"The current model is the result of the above mentioned workshop and reflects" -" the best available information. However, the current model has a number of " -"issues listed below and is expected to evolve further over time." -msgstr "" - -# 12b57792377e4785995c646895982596 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:98 -msgid "1 - The model is based on limited number of observed fatality" -msgstr "" - -# b72e1ce97a6e4e69bf913dc9760647a4 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:99 -msgid "rates during 4 past fatal events." -msgstr "" - -# 25375bdf1f5d423baa649feaa7a2cd15 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:100 -msgid "2 - The model clearly over-predicts the fatality rates at" -msgstr "" - -# d9e1a6ec5d06488a9da3840dc2b7aae9 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:101 -msgid "intensities higher than VIII." -msgstr "" - -# 4b00f16330f3473e873bd1fb928905ff -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:103 -msgid "3 - The model only estimates the expected fatality rate for a given" -msgstr "" - -# 1155ff8103c74e01981a171c4d73a925 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:103 -msgid "" -"intensity level; however the associated uncertainty for the proposed model " -"is not addressed." -msgstr "" - -# 4d660e6b271f4db1bdade2daf477503a -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:109 -msgid "4 - There are few known mistakes in developing the current model:" -msgstr "" - -# 2575d17f30994c4d9298353a33c000b5 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:108 -msgid "" -"consistency between selected GMPEs with those in use by BMKG. These issues " -"will be addressed by ITB team in the final report." -msgstr "" - -# 4d0e2eb340d64addbc8fc39d738448b8 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:111 -msgid "" -"Note: Because of these caveats, decisions should not be made solely on the " -"information presented here and should always be verified by ground truthing " -"and other reliable information sources." -msgstr "" - -# 8395a7586c5443a1be43831e410d69da -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:115 -msgid ":author Hadi Ghasemi :rating 3" -msgstr "" - -# 1c2dbd58e4a04cfebb273fc721198d56 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:118 -msgid "" -":param requires category=='hazard' and " -"subcategory=='earthquake' and layertype=='raster' and" -" unit=='MMI'" -msgstr "" - -# 6f220cc68efa4b17b53033d58614e0c2 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:120 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/PAGFatalityFunction.po b/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/PAGFatalityFunction.po deleted file mode 100644 index b68c49a2..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/PAGFatalityFunction.po +++ /dev/null @@ -1,128 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2015-02-26 15:22+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# b4602ecd04884781b6fd22b2ee40f6af -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:6 -msgid "P A G Fatality Function" -msgstr "" - -# 6a33a2f9f1dc4a55b3ce753a6f873d1f -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:9 -msgid "Overview" -msgstr "Présentation" - -# 01f91da2ac804f319540a2c62de58c6e -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:11 -msgid "**Unique Identifier**: P A G Fatality Function" -msgstr "" - -# 4d28dd413b5b41e89b2fae5cb561de01 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:14 -msgid "**Author**: Helen Crowley" -msgstr "" - -# 202debf3bcc14430b165cc81aec6a7cb -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:17 -msgid "**Rating**: 3" -msgstr "" - -# 560e05f5a78247768515ad24ebaf288e -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:20 -msgid "**Title**: Die or be displaced according Pager model" -msgstr "" - -# 6bb251588192437fbb31720937961493 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impact of earthquake on population based on " -"Population Vulnerability Model Pager" -msgstr "" - -# 1d9765bf12c84b3e94c603b762b61128 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:26 -msgid "" -"**Actions**: Provide details about the population will be die or displaced" -msgstr "" - -# 75e962f86d284a6a99d77d07882ad9e5 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:30 -msgid "**Citations**:" -msgstr "" - -# 2b8b8550a8cf49e5b5c8de8cf005725d -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:30 -msgid "" -"Jaiswal, K. S., Wald, D. J., and Hearne, M. (2009a). Estimating " -"casualties for large worldwide earthquakes using an empirical approach. " -"U.S. Geological Survey Open-File Report 2009-1136." -msgstr "" - -# 05ceb697f34748cf9e1badc300b9b75a -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:32 -msgid "**Limitation**: No documentation found" -msgstr "" - -# 3edadc08ac32499787707f52e4e22b77 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:36 -msgid "Details" -msgstr "" - -# 80aad73cb81e4df09ccf9f5abe36ca34 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:38 -msgid "No documentation found" -msgstr "" - -# 45d98a1f1132408e9bc510f488993f29 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:41 -msgid "Doc String" -msgstr "" - -# 5046145209bf45d5969e4c40883b521f -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:43 -msgid "Population Vulnerability Model Pager." -msgstr "" - -# 893c95adeed1471db7faf847b2a17125 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:45 -msgid "" -"Loss ratio(MMI) = standard normal distrib( 1 / BETA * ln(MMI/THETA)). " -"Reference: Jaiswal, K. S., Wald, D. J., and Hearne, M. (2009a). Estimating " -"casualties for large worldwide earthquakes using an empirical approach. U.S." -" Geological Survey Open-File Report 2009-1136." -msgstr "" - -# da4a36e43c2544168600a698ba3f9b6e -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:51 -msgid ":author Helen Crowley :rating 3" -msgstr "" - -# 2be456c3e5db49c9b6dfc237da010aaa -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:54 -msgid "" -":param requires category=='hazard' and " -"subcategory=='earthquake' and layertype=='raster' and" -" unit=='MMI'" -msgstr "" - -# ca161eb990004dbaa5719fec4dab4a3b -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:56 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/TsunamiEvacuationFunction.po b/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/TsunamiEvacuationFunction.po deleted file mode 100644 index 2798c80a..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/TsunamiEvacuationFunction.po +++ /dev/null @@ -1,136 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2014-10-17 18:13+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# a896775d16d34a66bd217ccd73526ab1 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:6 -msgid "Tsunami Evacuation Function" -msgstr "" - -# 69947245e914428b9cde48208b6afc39 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:9 -msgid "Overview" -msgstr "Présentation" - -# 23aa0319be134560a501ad675bf317b5 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:11 -msgid "**Unique Identifier**: Tsunami Evacuation Function" -msgstr "" - -# 2065a2b854d84cd092ea3e55d61f404e -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:14 -msgid "**Author**: AIFDR" -msgstr "" - -# b5541fbd72aa42e2b547378c48b93baa -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:17 -msgid "**Rating**: 4" -msgstr "" - -# ad57817cb01d4a9d8e497674f1b82c48 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:20 -msgid "**Title**: Need evacuation" -msgstr "" - -# a0dbc6c6c7db4b66bbb4640666583b54 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of tsunami inundation in raster format " -"on population." -msgstr "" - -# ea0ad265a1c946ea8b18a25170e6a532 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:26 -msgid "" -"**Actions**: Provide details about how many people would likely need to be " -"evacuated, where they are located and what resources would be required to " -"support them." -msgstr "" - -# fb04e7288103402c81d2e3d39f226d75 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:29 -msgid "" -"**Hazard Input**: A hazard raster layer where each cell represents tsunami " -"depth (in meters)." -msgstr "" - -# c124e28186a148e98714ea4406566a1a -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:32 -msgid "" -"**Exposure Input**: An exposure raster layer where each cell represent " -"population count." -msgstr "" - -# a4cbccf248c64a9aba0077eb1e36ee38 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:35 -msgid "" -"**Output**: Raster layer contains population affected and the minimum needs " -"based on the population affected." -msgstr "" - -# a7e5b01cd4c54a098e298e3953f24b37 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:38 -msgid "" -"**Limitation**: The default threshold of 0.7 meter was selected based on " -"consensus, not hard evidence." -msgstr "" - -# a83dd4e56a414da5b036e439e77facbd -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:42 -msgid "Details" -msgstr "" - -# d79cb659dca54d5db66f52db2bab0fc4 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:44 -msgid "" -"The population subject to inundation exceeding a threshold (default 0.7m) is" -" calculated and returned as a raster layer. In addition the total number and" -" the required needs in terms of the BNPB (Perka 7) are reported. The " -"threshold can be changed and even contain multiple numbers in which case " -"evacuation and needs are calculated using the largest number with population" -" breakdowns provided for the smaller numbers. The population raster is " -"resampled to the resolution of the hazard raster and is rescaled so that the" -" resampled population counts reflect estimates of population count per " -"resampled cell. The resulting impact layer has the same resolution and " -"reflects population count per cell which are affected by inundation." -msgstr "" - -# d9c0f63039e5453fb94b7d890e570f29 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:47 -msgid "Doc String" -msgstr "" - -# 654d380e2f8f43a0ba6c15344d1ddda6 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:49 -msgid "Impact function for tsunami evacuation." -msgstr "" - -# 1324d07d1d6b4af58ec15bd2bdf75522 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:51 -msgid "" -":author AIFDR :rating 4 :param requires category=='hazard' and" -" subcategory=='tsunami' and " -"layertype=='raster' and unit=='m'" -msgstr "" - -# 0a36ef4e60ec41cdb9281fb9c4e74460 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:55 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/VolcanoBuildingImpact.po b/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/VolcanoBuildingImpact.po deleted file mode 100644 index ae022c26..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/VolcanoBuildingImpact.po +++ /dev/null @@ -1,119 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2015-02-26 15:22+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 6a5caad667e841478c54ebbef19ec542 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:6 -msgid "Volcano Building Impact" -msgstr "" - -# f343df89abf5459eafdb2bffadf66776 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:9 -msgid "Overview" -msgstr "Présentation" - -# 2948c3a6d72b4ad09f1209c335f865f5 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:11 -msgid "**Unique Identifier**: Volcano Building Impact" -msgstr "" - -# c876250e99f24aea9754eb747a5da8f9 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:14 -msgid "**Author**: AIFDR" -msgstr "" - -# 84571c161e2c4cb4b453df39c569f11a -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:17 -msgid "**Rating**: 4" -msgstr "" - -# c59df9bcda904ba6a8497050f9c8d01f -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:20 -msgid "**Title**: Be affected" -msgstr "" - -# c34e1bca95fb4719af7f8724825c284b -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:23 -msgid "**Synopsis**: To assess the impacts of volcano eruption on building." -msgstr "" - -# 5aec0de5d891448981e52dd705aa5a98 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:26 -msgid "" -"**Actions**: Provide details about how many building would likely be " -"affected by each hazard zones." -msgstr "" - -# 3c5f44006b734ac0a924904aab75ee31 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:29 -msgid "" -"**Hazard Input**: A hazard vector layer can be polygon or point. If polygon," -" it must have \"KRB\" attribute and the values for it are \"Kawasan Rawan " -"Bencana I\", \"Kawasan Rawan Bencana II\", or \"Kawasan Rawan Bencana III.\"" -" If you want to see the name of the volcano in the result, you need to add " -"\"NAME\" attribute for point data or \"GUNUNG\" attribute for polygon data." -msgstr "" - -# b5f045b61d074a8bb7da84b16e2e0916 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:32 -msgid "" -"**Exposure Input**: Vector polygon layer extracted from OSM where each " -"polygon represents the footprint of a building." -msgstr "" - -# 19a4044818814ee5a5a30c17b8a02400 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:35 -msgid "" -"**Output**: Vector layer contains Map of building exposed to volcanic hazard" -" zones for each Kawasan Rawan Bencana or radius." -msgstr "" - -# c1f7235625d14d7c8ecd998c831e1908 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:39 -msgid "Details" -msgstr "" - -# 3758fb407d7442c6bcf4932afeca955b -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:41 -msgid "No documentation found" -msgstr "" - -# a93a316fb84642aba3053d80c1d10728 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:44 -msgid "Doc String" -msgstr "" - -# def8eeee2c75415eaa7cfb55e2dd69dc -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:46 -msgid "Risk plugin for volcano building impact." -msgstr "" - -# 466ac74f5d0348ab9ef4a9695cd69812 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:48 -msgid "" -":author AIFDR :rating 4 :param requires category=='hazard' and" -" subcategory in ['volcano'] and " -"layertype=='vector'" -msgstr "" - -# ebb0e768ecb643e7ab77ed8c2e580cd7 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:52 -msgid "" -":param requires category=='exposure' and " -"subcategory=='structure' and layertype=='vector'" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.po b/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.po deleted file mode 100644 index 73e029e3..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.po +++ /dev/null @@ -1,120 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2015-02-26 15:22+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 025a0fe63d524c738081e5427fecc995 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:6 -msgid "Volcano Polygon Hazard Population" -msgstr "" - -# 0c84f1e7e36045859cd0cb4c522bd945 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:9 -msgid "Overview" -msgstr "Présentation" - -# 86c946ed04eb42b6b437bff46feb116e -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:11 -msgid "**Unique Identifier**: Volcano Polygon Hazard Population" -msgstr "" - -# d2b35a1a2c114d1f8be9bc230b6ae04f -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:14 -msgid "**Author**: AIFDR" -msgstr "" - -# cfe4c3b722f747838df55a89ece91409 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:17 -msgid "**Rating**: 4" -msgstr "" - -# 1e2957d713494064b888e34172906924 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:20 -msgid "**Title**: Need evacuation" -msgstr "" - -# 013d03df624742a79214b0ab65f00196 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:23 -msgid "**Synopsis**: To assess the impacts of volcano eruption on population." -msgstr "" - -# 1420d15abcc74ced9d52b0bd12e48466 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:26 -msgid "" -"**Actions**: Provide details about how many population would likely be " -"affected by each hazard zones." -msgstr "" - -# 15b05db5b6ae4233a07910445a37d79f -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:29 -msgid "" -"**Hazard Input**: A hazard vector layer can be polygon or point. If polygon," -" it must have \"KRB\" attribute and the valuefor it are \"Kawasan Rawan " -"Bencana I\", \"Kawasan Rawan Bencana II\", or \"Kawasan Rawan Bencana " -"III.\"If you want to see the name of the volcano in the result, you need to " -"add \"NAME\" attribute for point data or \"GUNUNG\" attribute for polygon " -"data." -msgstr "" - -# e23a553729474fb6a291b3fbc4be2ada -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:32 -msgid "" -"**Exposure Input**: An exposure raster layer where each cell represent " -"population count." -msgstr "" - -# e2ef890c5fbc4bed995201bd4e0be4e2 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:35 -msgid "" -"**Output**: Vector layer contains people affected and the minimum needs " -"based on the number of people affected." -msgstr "" - -# 93e342d0635b4f1f834472ecff8f4305 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:39 -msgid "Details" -msgstr "" - -# 564bef2af8a04e7281ad74b4e9b1b815 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:41 -msgid "No documentation found" -msgstr "" - -# 8ffe670559894e4fbecc7c1e3e31227a -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:44 -msgid "Doc String" -msgstr "" - -# 84e14de892cc44c9845665267c9d2cac -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:46 -msgid "Impact function for volcano hazard zones impact on population." -msgstr "" - -# 4d1ef118bd00446b8a7ce93e308f50e3 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:48 -msgid "" -":author AIFDR :rating 4 :param requires category=='hazard' and" -" subcategory in ['volcano'] and " -"layertype=='vector'" -msgstr "" - -# 465745ca9f0b4182be90907cdd8a9ba2 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:52 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/impact_functions_doc.po b/docs/i18n/fr/LC_MESSAGES/user-docs/impact_functions_doc.po deleted file mode 100644 index 516a1358..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/impact_functions_doc.po +++ /dev/null @@ -1,31 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2014-02-12 02:36+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 7589ec32aebc47d193f5dff0905b2780 -#: ../../source/user-docs/impact_functions_doc.rst:7 -msgid "Impact Functions Documentation" -msgstr "" - -# b6e45fb1646b484aafffeb8c41400ea7 -#: ../../source/user-docs/impact_functions_doc.rst:9 -msgid "" -"This document explains the purpose of impact functions and lists the " -"different available impact function and the requirements each has to be used" -" effectively." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/index.po b/docs/i18n/fr/LC_MESSAGES/user-docs/index.po deleted file mode 100644 index 64886657..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/index.po +++ /dev/null @@ -1,32 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-12-09 03:51+0000\n" -"Last-Translator: Tim Sutton \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 3d90fcbc07434ebfa5673e8b3bc0593f -#: ../../source/user-docs/index.rst:4 -msgid "User documentation" -msgstr "Documentation utilisateur" - -# b8a28bfb2c09482798d144c4d416801b -#: ../../source/user-docs/index.rst:6 -msgid "" -"This section of the documentation describes how to use the |project_name| " -"system." -msgstr "" -"Cette section de la documentation explique comment utiliser |project_name|" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/install.po b/docs/i18n/fr/LC_MESSAGES/user-docs/install.po deleted file mode 100644 index 32daa4b5..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/install.po +++ /dev/null @@ -1,251 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2016-03-01 10:00+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# c88035888a1d4e91a6f87968ac9134db -#: ../../source/user-docs/install.rst:4 -msgid "Installation" -msgstr "Installation" - -# 8173be6dd3f3420fa2b7c3a4c61a1dba -#: ../../source/user-docs/install.rst:6 -msgid "" -"|project_name| is a plugin for |QGIS|, so QGIS must be installed first via " -"the QGIS Python Plugin Repository." -msgstr "" - -# 603e26c093f8483fbf8bdf9b3b7bda66 -#: ../../source/user-docs/install.rst:9 -msgid "To install |project_name|, use the plugin manager in QGIS." -msgstr "" - -#: ../../source/user-docs/install.rst:11 -msgid "Go to :menuselection:`Plugins -> Manage and install plugins` menu." -msgstr "" - -#: ../../source/user-docs/install.rst:15 -msgid "Go to the search box and type :kbd:`InaSAFE`." -msgstr "" - -#: ../../source/user-docs/install.rst:21 -msgid "Select InaSAFE and click :guilabel:`Install plugin` and" -msgstr "" - -#: ../../source/user-docs/install.rst:20 -msgid "" -"wait for a moment until the InaSAFE dock appears in the right side of QGIS " -"main window." -msgstr "" - -#: ../../source/user-docs/install.rst:23 -msgid "Close the plugin manager window." -msgstr "" - -# 9cd0157013da42ea993f351fa7e656a2 -#: ../../source/user-docs/install.rst:25 -msgid "" -"For more information on |QGIS| and |project_name| see :doc:`../training/" -"socialisation/introduction_to_qgis`." -msgstr "" - -# 0d754560aa8d42e6be3368e61800c7c7 -#: ../../source/user-docs/install.rst:31 -msgid "From Zip Archive" -msgstr "" - -# f95aaa353c734c43961f553a07039b57 -#: ../../source/user-docs/install.rst:33 -msgid "" -"This installation method is not recommended unless you have no internet " -"access or wish to use a specific version of |project_name|. If this does not " -"apply to you, use the plugin repository method described above." -msgstr "" - -# 4fb2eb7b43564eb89cad2dd25995b10a -#: ../../source/user-docs/install.rst:38 -msgid "" -"We make regular releases of the |project_name| plugin and they are available " -"at http://plugins.qgis.org/plugins/inasafe/. Simply choose the most recent " -"(i.e. the one with the largest version number) and save it to your hard disk." -msgstr "" - -# 168c770947664b15a6fa274dbbf78b8f -#: ../../source/user-docs/install.rst:43 -msgid "Extract the zip file into the QGIS plugins directory." -msgstr "" - -# 01379b5e78f64285884d3ee01f434d1a -#: ../../source/user-docs/install.rst:46 -msgid "" -"Depending on your version of QGIS the plugin directory is either under a " -"subdirectory of :file:`.qgis` (QGIS versions < 2.0) or :file:`.qgis2` (QGIS " -"version >= 2.0)." -msgstr "" - -# fc2692edfcc14e27bd16e36a39653a0e -#: ../../source/user-docs/install.rst:50 -msgid "" -"Depending on your Operating System (Windows, Linux, OS X) and the version of " -"QGIS, the directory containing the plugins will be in:" -msgstr "" - -# a51ccfbca3db430ea1d6bfa9780d01b9 -#: ../../source/user-docs/install.rst:54 -msgid "" -"Windows: :file:`C:\\\\Users\\\\\\\\.qgis(2)\\\\python\\" -"\\plugins\\\\`" -msgstr "" - -# 2850e4ce4b8a46948c3b03e53dd13491 -#: ../../source/user-docs/install.rst:55 -msgid "" -"Linux: :file:`~/.qgis(2)/python/plugins/` (where \"~\" means :file:`/home/" -"/`" -msgstr "" - -# 8bbd3c2e35c244028ca15ec03a9c2ed6 -#: ../../source/user-docs/install.rst:57 -msgid "" -"OS X: :file:`~/.qgis(2)/python/plugins/` (where \"~\" means :file:`/home/" -"/`" -msgstr "" - -# 816f33e1ccf146ed8520e5f33c1d066e -#: ../../source/user-docs/install.rst:61 -msgid "" -":file:`.qgis(2)` means that the directory is either called :file:`.qgis` or :" -"file:`.qgis2`." -msgstr "" - -#: ../../source/user-docs/install.rst:64 -msgid "If you are running Windows with QGIS 2.8 or above, do the following:" -msgstr "" - -# ccdff046abbb420989ce1cfaf0d3264e -#: ../../source/user-docs/install.rst:66 -msgid "" -"Locate the directory :file:`C:\\\\Users\\\\\\\\.qgis2\\" -"\\python\\\\plugins`." -msgstr "" - -# 345759001e674937a568330fe7115e7b -#: ../../source/user-docs/install.rst:69 -msgid "" -"Extract the plugin which you downloaded in this directory. It should be " -"available as :file:`C:\\\\Users\\\\\\\\.qgis2\\\\python\\" -"\\plugins\\\\inasafe\\\\`." -msgstr "" - -# c9f01bddd9514211a9ffade649c97d1c -#: ../../source/user-docs/install.rst:73 -msgid "" -"OS X and Linux users must follow the same procedure but with the appropriate " -"directory, :file:`~/.qgis2/python/plugins/`." -msgstr "" - -# 36571303cd4c477c86d49ca5c97d4bec -#: ../../source/user-docs/install.rst:76 -msgid "" -"Once the plugin is extracted, start QGIS and enable it from the plugin " -"manager." -msgstr "" - -#: ../../source/user-docs/install.rst:78 -msgid "" -"To do this go to :menuselection:`Plugins ‣ Manage and Install Plugins` and " -"type :kbd:`inasafe` into the search box." -msgstr "" - -# 8ef11fd8f014438c97c28b38a45a54bd -#: ../../source/user-docs/install.rst:81 -msgid "" -"You should see the |project_name| plugin appear in the list. Tick the " -"checkbox next to it to enable the plugin." -msgstr "" - -#: ../../source/user-docs/install.rst:89 -msgid "Plugin Manager" -msgstr "" - -# 458743b004d04593b6743ecdfbe51919 -#: ../../source/user-docs/install.rst:89 -msgid "*Plugin Manager*" -msgstr "" - -# cf784f30b75a47028188e7e0ea194a49 -#: ../../source/user-docs/install.rst:92 -msgid "Downgrade the |project_name| plugin to a selected version" -msgstr "" - -# ecabe8891ef94952bae13bea56e49f86 -#: ../../source/user-docs/install.rst:94 -msgid "" -"If you are using an older version of QGIS or simply want to install a " -"specific version of the |project_name| plugin you must perform the following " -"steps:" -msgstr "" - -# 124e2326e89e4e0bbc7668261215395e -#: ../../source/user-docs/install.rst:98 -msgid "" -"Fetch the plugin manually from http://plugins.qgis.org/plugins/inasafe/. " -"Select your preferred version number and click :guilabel:`Download`." -msgstr "" - -# 455073c30f7d453fa92a82d381abb6d8 -#: ../../source/user-docs/install.rst:101 -msgid "" -"Delete the :file:`inasafe` folder from your plugins directory. The location " -"of this directory will vary depending on your operating system (see the " -"previous section). For Windows users the :file:`inasafe` directory would be " -"in :file:`C:\\\\Users\\\\\\\\.qgis2\\\\python\\\\plugins`." -msgstr "" - -# 44ad26aa92af4039b839bcfa9ae08a43 -#: ../../source/user-docs/install.rst:107 -msgid "" -"Extract the downloaded version into that folder, effectively replacing the " -"previous version with whichever version you downloaded in step 1." -msgstr "" - -# 1b42b0c5837f4d51a77101969fc7c251 -#: ../../source/user-docs/install.rst:110 -msgid "Restart QGIS." -msgstr "" - -# fb5e3a13ec59402fa411a38b3d568a4e -#: ../../source/user-docs/install.rst:113 -msgid "System Requirements" -msgstr "" - -# 174e3e63c96c4ead9a9542dcdb7ae7e3 -#: ../../source/user-docs/install.rst:115 -msgid "The requirements for running |project_name| are:" -msgstr "" - -# 856dd54279f14edf98f9c6628716611f -#: ../../source/user-docs/install.rst:117 -msgid "a standard PC with at least 4GB of RAM running Windows, Linux or OS X" -msgstr "" - -#: ../../source/user-docs/install.rst:118 -msgid "" -"QGIS long term release version (http://www.qgis.org); |project_name| " -"requires QGIS version 2.8 or newer" -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/issue_tracker.po b/docs/i18n/fr/LC_MESSAGES/user-docs/issue_tracker.po deleted file mode 100644 index f334358a..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/issue_tracker.po +++ /dev/null @@ -1,145 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-22 11:30+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# f779dd55e6ca4e3e9962c7e068c89ad0 -#: ../../source/user-docs/issue_tracker.rst:4 -msgid "Submit an Issue" -msgstr "" - -# a3894653788248e88f8d7cc28c29be37 -#: ../../source/user-docs/issue_tracker.rst:6 -msgid "" -"You are more than welcome to let us know when you have found a bug or an " -"issue in |project_name|." -msgstr "" - -# 03485481904f48d597caa07f03aa60fd -#: ../../source/user-docs/issue_tracker.rst:9 -msgid "" -"Issues are documented on |github|. You can report here on any issues, taking " -"advantage of markdown to make your report clear and visible to the " -"developers." -msgstr "" - -# 4dd9e78befbe47d18280dadef76e9e2b -#: ../../source/user-docs/issue_tracker.rst:13 -msgid "" -"To be able to track your issue best we have created the following rules so " -"that the issue will be easily recognised by a developer and hopefully solved " -"as fast as possible:" -msgstr "" - -# e70b4ad9523646369992e1cb9c761f26 -#: ../../source/user-docs/issue_tracker.rst:17 -msgid "Check if the issue is already documented (search existing issues)" -msgstr "" - -# 4f8c4857c8d34e0291e5cfd4bac11658 -#: ../../source/user-docs/issue_tracker.rst:18 -msgid "" -"If it is documented, add a comment to the issue; otherwise create a new issue" -msgstr "" - -# 0ee5c7dc3eb04c3a886c0b503950ba68 -#: ../../source/user-docs/issue_tracker.rst:19 -msgid "When creating a new issue, the format should typically be:" -msgstr "" - -# 87c49a6e68dc4e17b83ae8ace8db47c7 -#: ../../source/user-docs/issue_tracker.rst:21 -msgid "# Problem" -msgstr "" - -# af0bc345e06a436f9854301a3ad2440c -#: ../../source/user-docs/issue_tracker.rst:22 -msgid "# Expected Outcome" -msgstr "" - -# 2336103a23b747ac993272b15bc2c8f4 -#: ../../source/user-docs/issue_tracker.rst:23 -msgid "# Example (with data or images)" -msgstr "" - -# 0749cdfc88a44c89b16ef67da9b9372f -#: ../../source/user-docs/issue_tracker.rst:24 -msgid "# Solution (if possible)" -msgstr "" - -# 8001caa5522045a687bb6888613778eb -#: ../../source/user-docs/issue_tracker.rst:25 -msgid "" -"# Version and OS – (if necessary) InaSAFE/QGIS version and operating system" -msgstr "" - -# 09efb887c07247b1b4fea7114669eb66 -#: ../../source/user-docs/issue_tracker.rst:27 -msgid "Task a developer to it (if you know who might solve it)" -msgstr "" - -# 90488ae3313144b19d9a4e87abb1265a -#: ../../source/user-docs/issue_tracker.rst:28 -msgid "Add tags and milestones (if possible)" -msgstr "" - -# 668a0fe1e5724f0ab388062459f068f0 -#: ../../source/user-docs/issue_tracker.rst:30 -msgid "To track the issue down it would be even more helpful if you:" -msgstr "" - -# 6e17f38468514b8080ff70d97155779c -#: ../../source/user-docs/issue_tracker.rst:32 -msgid "" -"Take screenshots to illustrate the issue; you can drag and drop the " -"screenshot into the ticket (on |github|)." -msgstr "" - -# 1fb6c570cc41466eb75893a141475c8d -#: ../../source/user-docs/issue_tracker.rst:34 -msgid "" -"If you can, cut and paste an error message text or similar textual output, " -"we prefer that over a screenshot." -msgstr "" - -# 495fef4511a946839ed6a7dc69a06ab3 -#: ../../source/user-docs/issue_tracker.rst:36 -msgid "" -"If you are pasting verbatim text, place it inside three backticks like so:" -msgstr "" - -# db30927bf275450ead920b52f29b003d -#: ../../source/user-docs/issue_tracker.rst:44 -msgid "" -"Add a # CC section and include others who may be interested in following the " -"ticket if needed:" -msgstr "" - -# 24db6847223b4c3dbaf17cc4066698ed -#: ../../source/user-docs/issue_tracker.rst:54 -msgid "" -"Add a # See Also section to cross reference to other tickets or commits if " -"needed:" -msgstr "" - -# 4d87da11ffdb40c8b7a42cc0f127d07c -#: ../../source/user-docs/issue_tracker.rst:65 -msgid "" -"If you don't know what to do, have a look at the already existing issues and " -"copy the necessary parts to your issue." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/lookup_table.po b/docs/i18n/fr/LC_MESSAGES/user-docs/lookup_table.po deleted file mode 100644 index 046d33ff..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/lookup_table.po +++ /dev/null @@ -1,716 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-06-02 10:41+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 1fc3247ddc214e5c8f5903ab4972d697 -#: ../../source/user-docs/lookup_table.rst:6 -msgid "Lookup-Table" -msgstr "" - -# 1be94728e44d44ae8e7d4f7323416f05 -#: ../../source/user-docs/lookup_table.rst:8 -msgid "" -"Here you can find a Table of not translate able phrases and words. Take it " -"as a dictionary if you are going to translate with transifex" -msgstr "" - -# 0ff165e142df4826b63ee04c2d5fe347 -#: ../../source/user-docs/lookup_table.rst:12 -msgid "Indonesian Translation Index" -msgstr "" - -# e9c3107b6ba5450eb8636d84c6ea98f0 -#: ../../source/user-docs/lookup_table.rst:14 -msgid "" -"To coordinate translation of InaSAFE into Bahasa Indonesian we have " -"developed a table of commonly used terms and translation." -msgstr "" - -# dab9058f648c4c788739f720a22db0f3 -#: ../../source/user-docs/lookup_table.rst:18 -msgid "English" -msgstr "" - -# e521161f0f9f40049e6b7c069211182d -#: ../../source/user-docs/lookup_table.rst:18 -msgid "Bahasa Indonesia" -msgstr "" - -# 0aa0e9ef4f024f64b7ff27fdf3f7f97d -#: ../../source/user-docs/lookup_table.rst:20 -msgid "hazard" -msgstr "danger" - -# 3878422e7f3f4067a2ccc583492a0598 -#: ../../source/user-docs/lookup_table.rst:20 -msgid "ancaman" -msgstr "" - -# 1e0c06421aba4aca862f23683d79dc68 -#: ../../source/user-docs/lookup_table.rst:21 -msgid "exposure" -msgstr "" - -# 0b936af502294d60b1d383b18e54e19c -#: ../../source/user-docs/lookup_table.rst:21 -msgid "keterpaparan" -msgstr "" - -# c524ddfa09484222bb58f1a2551b686a -#: ../../source/user-docs/lookup_table.rst:22 -msgid "activities" -msgstr "" - -# 910dd35758c74ced98f691f2be65ba1e -#: ../../source/user-docs/lookup_table.rst:22 -msgid "langkah kegiatan" -msgstr "" - -# f2efee3c55184787be0c4aaa2c883e5a -#: ../../source/user-docs/lookup_table.rst:23 -msgid "common problem" -msgstr "" - -# 0e348a1885224fc5b6ea0be270c7a2f9 -#: ../../source/user-docs/lookup_table.rst:23 -msgid "masalah yang sering dijumpai" -msgstr "" - -# 78efcc7695784f628f077e917bc0411d -#: ../../source/user-docs/lookup_table.rst:24 -msgid "workshop" -msgstr "" - -# d00c23b89a594590b520579412ee7239 -#: ../../source/user-docs/lookup_table.rst:24 -msgid "lokakarya" -msgstr "" - -# 2e91c9a17c35406d909eaaeaa27857fa -#: ../../source/user-docs/lookup_table.rst:25 -msgid "jobs" -msgstr "" - -# f5a3a1ce4e2740c987bc7ba30681b952 -#: ../../source/user-docs/lookup_table.rst:25 -msgid "job" -msgstr "" - -# 5e4429690387470f82ef40e6f88272aa -#: ../../source/user-docs/lookup_table.rst:26 -msgid "working with" -msgstr "" - -# 727cb5ce660f4d1c927fe555d298e520 -#: ../../source/user-docs/lookup_table.rst:26 -msgid "pengoperasian/mengoperasikan" -msgstr "" - -# 47bb3188ca26444c9a195de1622efb8e -#: ../../source/user-docs/lookup_table.rst:27 -msgid "demo" -msgstr "" - -# 324b4a6e635544c0843162d84ee34008 -#: ../../source/user-docs/lookup_table.rst:27 -msgid "demonstrasi" -msgstr "" - -# e2c7ffba01d947d689ceb366efd6d35c -#: ../../source/user-docs/lookup_table.rst:28 -msgid "module" -msgstr "" - -# d46983e3c57e46609419c3def45272b6 -#: ../../source/user-docs/lookup_table.rst:28 -msgid "modul" -msgstr "" - -# e7344882faed42ddb5585048462adeaf -#: ../../source/user-docs/lookup_table.rst:29 -msgid "learning activity" -msgstr "" - -# 4c4350736f374c7abbc618278feb004a -#: ../../source/user-docs/lookup_table.rst:29 -msgid "kegiatan pembelajaran" -msgstr "" - -# af2d3b32d87a49ff8a59169b76c241c7 -#: ../../source/user-docs/lookup_table.rst:30 -msgid "population" -msgstr "" - -# e1518250a058443db8162d774a8bb559 -#: ../../source/user-docs/lookup_table.rst:30 -msgid "populasi" -msgstr "" - -# abc3bbfd6d334ff788a5542d75a6ac5d -#: ../../source/user-docs/lookup_table.rst:31 -msgid "keyword" -msgstr "" - -# 57ee2ca9102f464e842175e117e3f909 -#: ../../source/user-docs/lookup_table.rst:31 -msgid "kata kunci" -msgstr "" - -# 8875892946f046d6abcd83da7198510a -#: ../../source/user-docs/lookup_table.rst:32 -msgid "update" -msgstr "" - -# 3e19fd6f31be49269f9b3b12a6956583 -#: ../../source/user-docs/lookup_table.rst:32 -msgid "pembaharuan" -msgstr "" - -# 823ad9ef3d4946dd8f40b99a528dfecf -#: ../../source/user-docs/lookup_table.rst:33 -msgid "option" -msgstr "" - -# 8141c52e7791483786c5bb133886c016 -#: ../../source/user-docs/lookup_table.rst:33 -msgid "pilihan" -msgstr "" - -# 65915f3a501f4f128f0f9cd0a19b0cf1 -#: ../../source/user-docs/lookup_table.rst:34 -msgid "interface" -msgstr "" - -# ff30002f734841f58f1105d04b61cfdc -#: ../../source/user-docs/lookup_table.rst:34 -msgid "antarmuka/tampilan antarmuka (sesuaikan dengan kalimat)" -msgstr "" - -# c72dc75a3e004eeba950b3a94250d705 -#: ../../source/user-docs/lookup_table.rst:35 -msgid "software" -msgstr "" - -# 931924d669d54e5389edc104999e3909 -#: ../../source/user-docs/lookup_table.rst:35 -msgid "perangkat lunak" -msgstr "" - -# a91f9e52ba8d4794b6c724e19bac4bcd -#: ../../source/user-docs/lookup_table.rst:36 -msgid "hardware" -msgstr "" - -# a83f8d06e6ab4ceca44f88b22c20816e -#: ../../source/user-docs/lookup_table.rst:36 -msgid "perangkat keras" -msgstr "" - -# f6966da835f644e1a79ead5ceec1832a -#: ../../source/user-docs/lookup_table.rst:37 -msgid "check" -msgstr "" - -# 53e05b5d796a4867aaeb7483a4aae7a2 -#: ../../source/user-docs/lookup_table.rst:37 -msgid "tanda centang" -msgstr "" - -# 883f930ab17347158512f4b49bff315e -#: ../../source/user-docs/lookup_table.rst:38 -msgid "checklist" -msgstr "" - -# 30a48e5abbf4462480e349c679371457 -#: ../../source/user-docs/lookup_table.rst:38 -msgid "daftar aktivitas/daftar kebutuhan" -msgstr "" - -# 777e9ce2212f4f839c093f635318242e -#: ../../source/user-docs/lookup_table.rst:39 -msgid "GIS" -msgstr "" - -# a9d9d85bf62649d1bf0b3fca3875d62f -#: ../../source/user-docs/lookup_table.rst:39 -msgid "SIG" -msgstr "" - -# eb05c6e978b24188baf3e4a9067b098a -#: ../../source/user-docs/lookup_table.rst:40 -msgid "explore" -msgstr "" - -# 47d1cc8af1864d4b8af6dcdbc1708a24 -#: ../../source/user-docs/lookup_table.rst:40 -msgid "eksplorasi" -msgstr "" - -# c95142eb0abd401482de83c953042fbf -#: ../../source/user-docs/lookup_table.rst:41 -msgid "website" -msgstr "" - -# 942df04ab17a487cb8d5d4e959d5bf6a -#: ../../source/user-docs/lookup_table.rst:41 -msgid "situs" -msgstr "" - -# fc3d54fcbf24465597da7f35e3b9b1b2 -#: ../../source/user-docs/lookup_table.rst:42 -msgid "login" -msgstr "" - -# d76eff4dbb9f4cb18ddd4e409f733bba -#: ../../source/user-docs/lookup_table.rst:42 -msgid "masuk" -msgstr "" - -# eebc5587d16c4ec4901a9128474e5556 -#: ../../source/user-docs/lookup_table.rst:43 -msgid "username" -msgstr "" - -# ae1e2bb4ef71429aacd6abd0243d4b15 -#: ../../source/user-docs/lookup_table.rst:43 -msgid "nama pengguna" -msgstr "" - -# a0f816edacc64745aae71858c5147454 -#: ../../source/user-docs/lookup_table.rst:44 -msgid "attribute" -msgstr "" - -# 558aa629d0bc4936b1f71f885e6dd27b -#: ../../source/user-docs/lookup_table.rst:44 -msgid "atribut" -msgstr "" - -# d8c455097fc04ae398cb1b300f324da1 -#: ../../source/user-docs/lookup_table.rst:45 -msgid "symbology" -msgstr "" - -# 37d9a378e0124e82821d4de03d6ddc1e -#: ../../source/user-docs/lookup_table.rst:45 -msgid "pengaturan simbol" -msgstr "" - -# 7404b4cac9324b33810333ec729fa665 -#: ../../source/user-docs/lookup_table.rst:46 -msgid "footprint hazard" -msgstr "" - -# dc0b5fd181a24509b36f00e32ceedde3 -#: ../../source/user-docs/lookup_table.rst:46 -msgid "batas area bencana" -msgstr "" - -# 9d1ec8d46aaf4f9b8d02f91c14997d07 -#: ../../source/user-docs/lookup_table.rst:47 -msgid "building footprint" -msgstr "" - -# 5374f39c9a6048f09f0cff1119c3f30f -#: ../../source/user-docs/lookup_table.rst:47 -msgid "batas tapak bangunan" -msgstr "" - -# 97822dd9adc3417aa4c8b84a22d66797 -#: ../../source/user-docs/lookup_table.rst:48 -msgid "way" -msgstr "" - -# 9f4e62c289fc4bd8a398be3ca5144066 -#: ../../source/user-docs/lookup_table.rst:48 -msgid "garis" -msgstr "" - -# 6162a83b2643440c92ad4c943900faa3 -#: ../../source/user-docs/lookup_table.rst:49 -msgid "polygon" -msgstr "" - -# c31a593052c44f208f67aff8fce4939a -#: ../../source/user-docs/lookup_table.rst:49 -msgid "poligon" -msgstr "" - -# 130e2eb9eb0c4e4f932e91e2e5939aa2 -#: ../../source/user-docs/lookup_table.rst:50 -msgid "editing" -msgstr "" - -# 3d05fe5753794bb09be95dd6e80efeb8 -#: ../../source/user-docs/lookup_table.rst:50 -msgid "mengedit" -msgstr "" - -# 02db8974e31b496d839829b63bd65681 -#: ../../source/user-docs/lookup_table.rst:51 -msgid "browse" -msgstr "" - -# 3ad7c88e2cfe4435b30c4619cb2f775b -#: ../../source/user-docs/lookup_table.rst:51 -msgid "telusuri" -msgstr "" - -# 7cebb37c11bc483fa48f54d140a0cac6 -#: ../../source/user-docs/lookup_table.rst:52 -msgid "password" -msgstr "" - -# f1798dfa8f584141bfecb972e09d01cd -#: ../../source/user-docs/lookup_table.rst:52 -msgid "kata sandi" -msgstr "" - -# 3b1892c8fdc542db942e87e993427515 -#: ../../source/user-docs/lookup_table.rst:53 -msgid "dropdown" -msgstr "" - -# 411a3a6937e44ccf933dcfb97d58e078 -#: ../../source/user-docs/lookup_table.rst:53 -msgid "daftar pilihan" -msgstr "" - -# 52716efaf2f0443ba29ebd3e906a3279 -#: ../../source/user-docs/lookup_table.rst:54 -msgid "default" -msgstr "" - -# 21aaade1a02548338e73f2f69fc81bf3 -#: ../../source/user-docs/lookup_table.rst:54 -msgid "pengaturan bawaan" -msgstr "" - -# 91f7d0423fdf4918a601a11e62fb7d07 -#: ../../source/user-docs/lookup_table.rst:55 -msgid "contingency" -msgstr "" - -# abf88ab862a24d6abe9c1d8373b799e5 -#: ../../source/user-docs/lookup_table.rst:55 -msgid "kontinjensi" -msgstr "" - -# ee1b530fc02d4eab9d95eb747aecc2e3 -#: ../../source/user-docs/lookup_table.rst:56 -msgid "digitalization" -msgstr "" - -# bf33e1bc862d4aad834a7c72890298c2 -#: ../../source/user-docs/lookup_table.rst:56 -msgid "digitalisasi" -msgstr "" - -# da7d4cd22fdd472a92c612cfd26553d3 -#: ../../source/user-docs/lookup_table.rst:57 -msgid "drag" -msgstr "" - -# 52b84da2eed74758bab37432c5304260 -#: ../../source/user-docs/lookup_table.rst:57 -msgid "geser" -msgstr "" - -# b355852916224789b53aa525256a0c1e -#: ../../source/user-docs/lookup_table.rst:58 -msgid "practicing" -msgstr "" - -# 380030ecba364770aa6cdbc1a0d5c9aa -#: ../../source/user-docs/lookup_table.rst:58 -msgid "mempraktikkan" -msgstr "" - -# 5afebf552eeb4d5fb26b4a925bda6fb4 -#: ../../source/user-docs/lookup_table.rst:59 -msgid "IDP camp" -msgstr "" - -# c21583e17f5743c389f13007b99a147e -#: ../../source/user-docs/lookup_table.rst:59 -msgid "tempat pengungsian" -msgstr "" - -# 17accaad83ba41638e6443333433b14e -#: ../../source/user-docs/lookup_table.rst:60 -msgid "map canvas" -msgstr "" - -# 9221004a4c1a4887bf66159cd7cbcb4d -#: ../../source/user-docs/lookup_table.rst:60 -msgid "kanvas peta" -msgstr "" - -# 86e59eecf6a44f819141f606a6f13e1e -#: ../../source/user-docs/lookup_table.rst:61 -msgid "filter" -msgstr "" - -# 410534a62c214016ae601427ec60a127 -#: ../../source/user-docs/lookup_table.rst:61 -msgid "penyaringan" -msgstr "" - -# c456043244ed465c82101af8b0e684b0 -#: ../../source/user-docs/lookup_table.rst:62 -msgid "directory" -msgstr "" - -# 40f7e45a1c9a4fbaad6ca43370b51761 -#: ../../source/user-docs/lookup_table.rst:62 -msgid "direktori" -msgstr "" - -# 734fdf27a0104839b30929ca460db240 -#: ../../source/user-docs/lookup_table.rst:63 -msgid "log" -msgstr "" - -# 96c8e00e835d48aa9e8e8ffd580331a4 -#: ../../source/user-docs/lookup_table.rst:63 -msgid "catatan" -msgstr "" - -# 6e135f69e5134655a63e0a520fc4bb91 -#: ../../source/user-docs/lookup_table.rst:64 -msgid "web browser" -msgstr "" - -# a3d89b9686144dca8342090f431bdbee -#: ../../source/user-docs/lookup_table.rst:64 -msgid "browser internet" -msgstr "" - -# 4d8daa86241142a6929ce4461109d2be -#: ../../source/user-docs/lookup_table.rst:65 -msgid "feature" -msgstr "" - -# 20487dfed00e4b008926ea75fefee5d5 -#: ../../source/user-docs/lookup_table.rst:65 -msgid "fitur" -msgstr "" - -# 0955efe013d843fcb3a8d5f43bb38141 -#: ../../source/user-docs/lookup_table.rst:66 -msgid "liquefied" -msgstr "" - -# 072eb81128bb4ce494a02f829c172654 -#: ../../source/user-docs/lookup_table.rst:66 -msgid "tergenang" -msgstr "" - -# 7c596ab3cb3247f0a284fc978401c342 -#: ../../source/user-docs/lookup_table.rst:67 -msgid "intersect" -msgstr "" - -# 3892b074892a4035b6e5fa52f8c27f1f -#: ../../source/user-docs/lookup_table.rst:67 -msgid "perpotongan" -msgstr "" - -# 84d5577006434d418ef8f73ac23dee48 -#: ../../source/user-docs/lookup_table.rst:68 -msgid "disclaimer" -msgstr "" - -# eb3224394863440ab8382f1e3ee85ac2 -#: ../../source/user-docs/lookup_table.rst:68 -msgid "peringatan" -msgstr "" - -# 58422176c8b34925a1ca0f1a26d960b7 -#: ../../source/user-docs/lookup_table.rst:69 -msgid "extent" -msgstr "" - -# d7b111a9a23d4397a4948cfb818ed938 -#: ../../source/user-docs/lookup_table.rst:69 -msgid "jangkauan" -msgstr "" - -# eccf76bee1af42a68a02b4fa62e3052e -#: ../../source/user-docs/lookup_table.rst:74 -msgid "" -"The list of abbreviations to use (including the automatic link to the " -"respective homepage) is: ::" -msgstr "" - -# 838fcb83cc25408e99446f9e47c4f8b9 -#: ../../source/user-docs/lookup_table.rst:89 -msgid "" -"We have also made a blanket decision not to translate the following words:" -msgstr "" - -# b38e91fa1859433cb79aa88080b8d776 -#: ../../source/user-docs/lookup_table.rst:91 -msgid "*python*" -msgstr "" - -# 7f469206d9f949a8aee68870dcdf5873 -#: ../../source/user-docs/lookup_table.rst:92 -msgid "*qgis*" -msgstr "" - -# b86f9a224cca4904bdd8136cd70ac012 -#: ../../source/user-docs/lookup_table.rst:93 -msgid "*batch runner*" -msgstr "" - -# 5d8937671ca3442d96ec451e7c467fc2 -#: ../../source/user-docs/lookup_table.rst:94 -msgid "*review*" -msgstr "" - -# 26d2ba4df6f54363a777e3d98db971ab -#: ../../source/user-docs/lookup_table.rst:95 -msgid "*tool*" -msgstr "" - -# 5c26c87e15c94cb881db56eb591c6b03 -#: ../../source/user-docs/lookup_table.rst:96 -msgid "*template*" -msgstr "" - -# 96653e8dc8bb48bc965c81a64e908285 -#: ../../source/user-docs/lookup_table.rst:97 -msgid "*input*" -msgstr "" - -# a3657b7d642049d89bb208f21e06936e -#: ../../source/user-docs/lookup_table.rst:98 -msgid "*output*" -msgstr "" - -# 3ccbc82d476e4afb8031d9ada2f8c485 -#: ../../source/user-docs/lookup_table.rst:99 -msgid "*layer*" -msgstr "" - -# 38f1a5036f034a14974c4804549e93d7 -#: ../../source/user-docs/lookup_table.rst:100 -msgid "*layout*" -msgstr "" - -# 6f23913aaddf4ffe93bbc1653b58d141 -#: ../../source/user-docs/lookup_table.rst:101 -msgid "*upload*" -msgstr "" - -# fa8e876dd0d84b9e8537730ccd401101 -#: ../../source/user-docs/lookup_table.rst:102 -msgid "*download*" -msgstr "" - -# 65e14eab909842848560c9b0efd9bc4b -#: ../../source/user-docs/lookup_table.rst:103 -msgid "*tag*" -msgstr "" - -# 3ceab0d34a4348e581575f576010377a -#: ../../source/user-docs/lookup_table.rst:104 -msgid "*edit*" -msgstr "" - -# 9637e9283e7845658d783d6c7ccc2d39 -#: ../../source/user-docs/lookup_table.rst:105 -msgid "*field papers*" -msgstr "" - -# c46cf352e1be4e89a9559e691dc5aab9 -#: ../../source/user-docs/lookup_table.rst:106 -msgid "*value*" -msgstr "" - -# a15c4f67c1874f87a11e0ff7e9353600 -#: ../../source/user-docs/lookup_table.rst:107 -msgid "*query*" -msgstr "" - -# 04a7e0186fd243b6861efde7391bcd9b -#: ../../source/user-docs/lookup_table.rst:108 -msgid "*buffer*" -msgstr "" - -# 518616e0fe444846a4ce36bbd2242052 -#: ../../source/user-docs/lookup_table.rst:109 -msgid "*field*" -msgstr "" - -# 73af9f87360b4135ab09551ef337f095 -#: ../../source/user-docs/lookup_table.rst:110 -msgid "*field calculator*" -msgstr "" - -# 1422b4dfdcb644ebab78e4baa54a8df6 -#: ../../source/user-docs/lookup_table.rst:111 -msgid "*outcome*" -msgstr "" - -# 20d5402ced68413eb541a4543cb63653 -#: ../../source/user-docs/lookup_table.rst:112 -msgid "*plugin*" -msgstr "" - -# 47f80879c8d34d6f8495540804ab044c -#: ../../source/user-docs/lookup_table.rst:113 -msgid "*overlay*" -msgstr "" - -# 491522e469e24ee29dff5541e6dd5acf -#: ../../source/user-docs/lookup_table.rst:114 -msgid "*file*" -msgstr "" - -# 785e2c2cee0348a1865bafb9a4d08015 -#: ../../source/user-docs/lookup_table.rst:115 -msgid "*node*" -msgstr "" - -# 31bd718d9c144f178e3280a2342ade7c -#: ../../source/user-docs/lookup_table.rst:116 -msgid "*track*" -msgstr "" - -# af7e89ab287346b1803800619e913231 -#: ../../source/user-docs/lookup_table.rst:117 -msgid "*track log*" -msgstr "" - -# 13963c37194d4b2f947850defce3868b -#: ../../source/user-docs/lookup_table.rst:118 -msgid "*waypoint*" -msgstr "" - -# c90170d518ca481798e40d7b9d43842a -#: ../../source/user-docs/lookup_table.rst:119 -msgid "*copy & paste*" -msgstr "" - -# 597b4c192a4745d581a676696bbb3ca5 -#: ../../source/user-docs/lookup_table.rst:121 -msgid "Please add to this list as required." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/postprocessors.po b/docs/i18n/fr/LC_MESSAGES/user-docs/postprocessors.po deleted file mode 100644 index 32b8f65d..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/postprocessors.po +++ /dev/null @@ -1,120 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:36+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# fc954024a96d4fef8531671f0de1c2f7 -#: ../../source/user-docs/postprocessors.rst:4 -msgid "Post-processors" -msgstr "" - -# 2b264c4e894247a6b2b9df78000d2e49 -#: ../../source/user-docs/postprocessors.rst:6 -msgid "" -"This document explains the purpose of post-processors and lists the " -"different available post-processors and the requirements each has to be used " -"effectively." -msgstr "" - -# 56d7283bb3cc4fd6bae34a446eac6c6e -#: ../../source/user-docs/postprocessors.rst:11 -msgid "What is a post-processor?" -msgstr "" - -# 469e9bb96437465a941d1944ffb9f4d4 -#: ../../source/user-docs/postprocessors.rst:13 -msgid "" -"A post-processor is a function that takes the results from the impact " -"function and calculates derivative indicators. For example, if you have an " -"affected population total, the **Gender** post-processor will calculate " -"gender specific indicators such as additional nutritional requirements for " -"pregnant women." -msgstr "" - -# ba455c2f6581464a9c88bf37fd7e164c -#: ../../source/user-docs/postprocessors.rst:19 -msgid "Selecting a post-processor" -msgstr "" - -# 157e1ee340a24785bbec746a7cdb1ee9 -#: ../../source/user-docs/postprocessors.rst:21 -msgid "" -"Post-processors and their settings can be edited in the user configurable " -"function parameters dialog. See :ref:`analysis_parameters` for more " -"information." -msgstr "" - -# 3c23e755fe884eeebf92d5808dc36cb3 -#: ../../source/user-docs/postprocessors.rst:25 -msgid "" -"To disable a post-processor simply go to the :guilabel:`Postprocessors` tab " -"and enable or disable any post-processor you like by clicking on the " -"checkbox next to it. You can even set the post-processing values you like " -"here by entering the values in the fields." -msgstr "" - -# 59f52bdfdb2e41a58e575e9071df3540 -#: ../../source/user-docs/postprocessors.rst:30 -msgid "" -"If you don't see a post-processors field, it means that the impact function " -"you are trying to use does not support any post-processor." -msgstr "" - -#: ../../source/user-docs/postprocessors.rst:38 -msgid "Post-processor configuration" -msgstr "" - -# c5215a8aa0994460a5a4b8a07563f92a -#: ../../source/user-docs/postprocessors.rst:38 -msgid "*Post-processor configuration*" -msgstr "" - -# 0e78094585004ea7a92c0a7676533f6b -#: ../../source/user-docs/postprocessors.rst:40 -msgid "" -"Each activated post-processor will create an additional report in the dock " -"and in the printout. If problems arise while post-processing, the system " -"will inform you and will skip post-processing." -msgstr "" - -# 59a35bb172dc47aea496c9f9f14412e4 -#: ../../source/user-docs/postprocessors.rst:45 -msgid "Creating post-processors" -msgstr "" - -# 7b240a09abdc40d985a01ed93831d0b1 -#: ../../source/user-docs/postprocessors.rst:47 -msgid "" -"If you feel there is an important post-processor which is missing, there are " -"two avenues you can follow:" -msgstr "" - -# 9561d20fa8754f2a93fff6fe284ddd71 -#: ../../source/user-docs/postprocessors.rst:50 -msgid "" -"You can develop it yourself or with the aid of a programmer who has a good " -"understanding of the python programming language." -msgstr "" - -# 0cf4cc857cba4322b87fd904fb1e5042 -#: ../../source/user-docs/postprocessors.rst:52 -msgid "" -"You can file a ticket on our `issue tracking system `_, and if time and resources allow we will implement " -"it for you." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/toolbar.po b/docs/i18n/fr/LC_MESSAGES/user-docs/toolbar.po deleted file mode 100644 index 8e997359..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/toolbar.po +++ /dev/null @@ -1,250 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:37+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# dc6ca43345164bf2b77249eb27ed9f71 -#: ../../source/user-docs/toolbar.rst:4 -msgid "Toolbar" -msgstr "Barre d'outils" - -# 54cd4953a2074769a38bf63f461674fa -#: ../../source/user-docs/toolbar.rst:6 -msgid "" -"Here the different icons (buttons) in the toolbar and the function of each " -"are explained." -msgstr "" - -# 25eaf514243b4fd496ca5a4ff9515c5f -#: ../../source/user-docs/toolbar.rst:12 -msgid "Toggle |project_name| Dock" -msgstr "Afficher/masquer le panneau |project_name|" - -# 25eaf514243b4fd496ca5a4ff9515c5f -#: ../../source/user-docs/toolbar.rst:19 -#, fuzzy -msgid "Toggle the Dock" -msgstr "Afficher/masquer le panneau |project_name|" - -# eaaede7cbee64a10b2619678496261a9 -#: ../../source/user-docs/toolbar.rst:19 -msgid "*Toggle Dock*" -msgstr "" - -# 1686d83785e6462eb792ab2595a2164e -#: ../../source/user-docs/toolbar.rst:21 -msgid "" -"This button shows and hides the |project_name| dock. After enabling the dock " -"you are able to move it around your screen. Dock it as a panel within the " -"QGIS interface, or undock it so that it floats as a separate window." -msgstr "" - -# fc576de799434367908e6d7b4a683a4d -#: ../../source/user-docs/toolbar.rst:26 -msgid "" -"Find more information about the dock in the :ref:`toolbar_dock` section." -msgstr "" - -# 1d7943bad09a4190a7ef55e65debe4c7 -#: ../../source/user-docs/toolbar.rst:32 -msgid "|project_name| Keyword Editor" -msgstr "Editeur de mots-clés |project_name|" - -# 1d7943bad09a4190a7ef55e65debe4c7 -#: ../../source/user-docs/toolbar.rst:39 -#, fuzzy -msgid "Keyword Editor" -msgstr "Editeur de mots-clés |project_name|" - -# a9df621ebd654a36ad01d8f9c3a17cf8 -#: ../../source/user-docs/toolbar.rst:39 -msgid "*Keyword Editor*" -msgstr "" - -# 7d4bcbff3b164dc5aa075ec2586e7193 -#: ../../source/user-docs/toolbar.rst:41 -msgid "" -"The :guilabel:`Keyword Editor` button opens the editor which is is used to " -"edit the keywords needed for |project_name| to create useful output. " -"Keywords are explained in more detail in :ref:`keywords_system`." -msgstr "" - -# 296ddc6736c6422b9aac3428a9e3ea7a -# 8c5ee842edf94f64a9722cfe855c4443 -#: ../../source/user-docs/toolbar.rst:49 -msgid "|project_name| Options" -msgstr "Options |project_name|" - -#: ../../source/user-docs/toolbar.rst:56 -msgid "Options" -msgstr "" - -# b46d6c69545d46aba78a4bad920b5615 -#: ../../source/user-docs/toolbar.rst:56 -msgid "*Options*" -msgstr "" - -# 019fa8208fc34979840a1d3cff836287 -#: ../../source/user-docs/toolbar.rst:58 -msgid "" -"This button opens the |project_name| Options window which is described in " -"detail in :ref:`toolbar_options`." -msgstr "" - -# 4493c3cc22474d809a7bb459e13dcd33 -# 2802a96d9da945dfaf9506ecfe6ce958 -#: ../../source/user-docs/toolbar.rst:64 -msgid "|project_name| Impact Functions Browser" -msgstr "Navigateur des fonctions d'impact |project_name|" - -# 4493c3cc22474d809a7bb459e13dcd33 -# 2802a96d9da945dfaf9506ecfe6ce958 -#: ../../source/user-docs/toolbar.rst:71 -#, fuzzy -msgid "Impact Functions Browser" -msgstr "Navigateur des fonctions d'impact |project_name|" - -# 8c27f48c38ea45208231184040996db2 -#: ../../source/user-docs/toolbar.rst:71 -msgid "*Impact Functions Browser*" -msgstr "" - -# b8a2a5119eb94fc8a175bd083c7c08e5 -#: ../../source/user-docs/toolbar.rst:73 -msgid "" -"This button opens the Impact Function Browser, which allows you to filter " -"and browse impact functions that are available in |project_name|. More " -"information can be found in :ref:`impact_functions`." -msgstr "" - -# 5b8eb2c5786e4149a5c395702150e4a5 -# ff9e618448794d5987b8ac65ac5e0127 -#: ../../source/user-docs/toolbar.rst:80 -msgid "|project_name| Minimum Needs Tool" -msgstr "Outil Besoins minimum |project_name|" - -# 5b8eb2c5786e4149a5c395702150e4a5 -# ff9e618448794d5987b8ac65ac5e0127 -#: ../../source/user-docs/toolbar.rst:87 -#, fuzzy -msgid "Minimum needs tool" -msgstr "Outil Besoins minimum |project_name|" - -# b472eefca82c4381adbbe1e39f0b2453 -#: ../../source/user-docs/toolbar.rst:87 -msgid "*Minimum Needs Tool*" -msgstr "" - -# 0d169b6048dd476f935d1d536e78475c -#: ../../source/user-docs/toolbar.rst:89 -msgid "" -"This tool calculates minimum needs for evacuated people. For guidance on how " -"to use this tool visit :ref:`minimum_needs`." -msgstr "" - -# 11a072fc6f794850b2183fe9a37c4a53 -# 44e3c124ee154660a0f39ec97514c0f8 -#: ../../source/user-docs/toolbar.rst:95 -msgid "|project_name| Converter" -msgstr "Convertisseur |project_name|" - -#: ../../source/user-docs/toolbar.rst:102 -msgid "Converter" -msgstr "" - -# 49cca9123f7e47c88796f5d899ec74df -#: ../../source/user-docs/toolbar.rst:102 -msgid "*Converter*" -msgstr "" - -# 314b91c5c40a4571914e94696037f2e3 -#: ../../source/user-docs/toolbar.rst:104 -msgid "" -"This tool converts an earthquake 'shakemap' that is in grid xml format to a " -"GeoTIFF file. For more detailed information visit :ref:`converter`." -msgstr "" - -# 212c81fef04043db86b0e1f92eaa5d13 -# 30c795c5b51e4bf39cd90897fd3650c2 -#: ../../source/user-docs/toolbar.rst:111 -msgid "|project_name| Batch Runner" -msgstr "Outil d'exécution par lots |project_name|" - -#: ../../source/user-docs/toolbar.rst:118 -msgid "Batch_Runner" -msgstr "" - -# d8bb0eece2f94d91a098548546065444 -#: ../../source/user-docs/toolbar.rst:118 -msgid "*Batch Runner*" -msgstr "" - -# faf922ff6d54462ba4d6f901c76c8fb4 -#: ../../source/user-docs/toolbar.rst:120 -msgid "" -"The Batch Runner is used to load saved scenarios (:ref:`save_scenario`) and " -"batch run them in one go. Find more information about this tool in :ref:" -"`batch_runner`." -msgstr "" - -# 78ceba55f6124cc7bd509b53982939bd -#: ../../source/user-docs/toolbar.rst:127 -msgid "Save current scenario" -msgstr "Sauvegarder le scénario en cours" - -# 78ceba55f6124cc7bd509b53982939bd -#: ../../source/user-docs/toolbar.rst:134 -#, fuzzy -msgid "Save Current Scenario" -msgstr "Sauvegarder le scénario en cours" - -# 1129affe46074d82b97af8a1469c1fe5 -#: ../../source/user-docs/toolbar.rst:134 -msgid "*Save Current Scenario*" -msgstr "" - -# 382ca76228214dba8dd6a71f5f5a7020 -#: ../../source/user-docs/toolbar.rst:136 -msgid "" -"This is the tool to prepare/save scenarios for the :ref:`tb_batch_runner` " -"tool. It lets you save the current visible scenario in QGIS to a :file:`." -"txt` file. Then this file can be opened as a scenario again in Batch runner " -"and recalculated. A more detailed description is available in :ref:" -"`batch_runner`." -msgstr "" - -# 60641545a7464aa9b0140e4ad83cb7c8 -#: ../../source/user-docs/toolbar.rst:146 -msgid "|project_name| OpenStreetMap Downloader" -msgstr "Outil |project_name| de téléchargement de données OpenStreetMap" - -# 60641545a7464aa9b0140e4ad83cb7c8 -#: ../../source/user-docs/toolbar.rst:153 -#, fuzzy -msgid "OpenStreetMap downloader" -msgstr "Outil |project_name| de téléchargement de données OpenStreetMap" - -# 69aa1be82c17405981511486272185d8 -#: ../../source/user-docs/toolbar.rst:153 -msgid "*OpenStreetMap downloader*" -msgstr "" - -# 3875d2191f1641a3a0f0e6f7fc32c680 -#: ../../source/user-docs/toolbar.rst:155 -msgid "This tool fetches building (structure) data from |OSM|." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/troubleshooting.po b/docs/i18n/fr/LC_MESSAGES/user-docs/troubleshooting.po deleted file mode 100644 index 9e52c7af..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/troubleshooting.po +++ /dev/null @@ -1,72 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-03-04 08:26+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# fe0f633de6ac4f1882f093bdf12b6a9d -#: ../../source/user-docs/troubleshooting.rst:6 -msgid "Troubleshooting" -msgstr "" - -# 513e351e1fa04c568dadb3c519da3034 -#: ../../source/user-docs/troubleshooting.rst:9 -msgid "Network Timeout" -msgstr "" - -# 43e0ca92081e4ddc9299715cb33e51da -#: ../../source/user-docs/troubleshooting.rst:11 -msgid "" -"One of the most common problems with installing |project_name| is, due to " -"the large paket size of |project_name| the downloading in slow(er) internet " -"connections. If you frequently receive a timeout of your netwerk connection " -"try to set :menuselection:`Settings > Options > Network > Timeout for " -"network requests` to a higher number." -msgstr "" - -# 4df78f1e8d7d43d79aa8a51bf45624db -#: ../../source/user-docs/troubleshooting.rst:18 -msgid "" -"If you have no permanent network connection or you want to pass |" -"project_name| to friend who do now have an internet connection you can also " -"install |project_name| by manually downloading it from http://planet.qgis." -"org/plugins/inasafe/ by clicking on the latest version and then choose :" -"guilabel:`Download`. This will get you the :file:`inasafe-x.x.x.zip` file " -"which you can afterwards extract in the plugins path of your |QGIS| " -"installation." -msgstr "" - -# 2eca154ea91f4e69bb4c519812b16321 -#: ../../source/user-docs/troubleshooting.rst:26 -msgid "" -"If you have a copy of the plugin code in a zip file, you can install it " -"unzipping it into the QGIS plugins folder. In Windows, it should be " -"something like C:\\\\Users\\\\\\\\.qgis2\\\\python\\\\plugins. In " -"Linux/Mac, it should be in ~/.qgis2/python/plugins. Copy the inasafe folder " -"in your zip file into your plugins folder. You should end up having a ." -"qgis2\\python\\plugins\\inasafe folder with the code of the plugin and the " -"required subfolders." -msgstr "" - -# 4ba55b3e7e1746d39d0cd006c0fae282 -#: ../../source/user-docs/troubleshooting.rst:36 -msgid "" -"If your problems are still not solved you can write an email to info@inasafe." -"org. We also have a |project_name| User Mailinglist where you are very " -"welcome to join and ask your questions there. More information about howto " -"join the list is available on :ref:`getting_help`." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/using_qgis.po b/docs/i18n/fr/LC_MESSAGES/user-docs/using_qgis.po deleted file mode 100644 index 5e40637c..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/using_qgis.po +++ /dev/null @@ -1,64 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2014-12-28 17:37+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 4d168ccd1a224bd88c3a37a1676a6e31 -#: ../../source/user-docs/using_qgis.rst:4 -msgid "Using QGIS" -msgstr "" - -# df45ee8802364121b299247d0ac5a869 -#: ../../source/user-docs/using_qgis.rst:6 -msgid "" -"|project_name| uses |QGIS| as the platform on which to provide its " -"functionality. |QGIS| itself has good documentation and a very helpful user " -"community. In this section we focus on those aspects of |QGIS| functionality " -"that will be helpful to someone wanting to carry out impact scenario " -"assessments using |project_name|." -msgstr "" - -# f322ade2fbb84659b1a6b208d8bb9f0e -#: ../../source/user-docs/using_qgis.rst:13 -msgid "" -"There are three good resources to get you up to speed with using GIS in " -"general and |QGIS| in particular:" -msgstr "" - -# 82de34cd1c72428ea7bf8b4188624a9f -#: ../../source/user-docs/using_qgis.rst:16 -msgid "" -"The `Gentle Introduction to GIS `_ by Linfiniti " -"Consulting - it is a free electronic book that introduces the concepts of " -"GIS in a very easy to read manner." -msgstr "" - -# a7e3c36597344ea1a10e5168c3ad084a -#: ../../source/user-docs/using_qgis.rst:19 -msgid "" -"The `QGIS User Manual `_ - " -"also an electronic book that serves as a reference guide to the |QGIS| " -"Desktop Application." -msgstr "" - -# bd1d9b87958a4deb96359f0debd74d42 -#: ../../source/user-docs/using_qgis.rst:22 -msgid "" -"The `QGIS Training Manual `_ by Linfiniti " -"Consulting that provides a detailed training guide on |QGIS| and PostGIS." -msgstr "" diff --git a/docs/i18n/fr/LC_MESSAGES/user-docs/writing_documentation.po b/docs/i18n/fr/LC_MESSAGES/user-docs/writing_documentation.po deleted file mode 100644 index 538affa2..00000000 --- a/docs/i18n/fr/LC_MESSAGES/user-docs/writing_documentation.po +++ /dev/null @@ -1,241 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: staging.docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-03-01 21:05+0000\n" -"Last-Translator: Werner Macho \n" -"Language-Team: French (http://www.transifex.com/inasafe/inasafe-develop/" -"language/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -# 593d17b341d84ff3b59fcad9933b274f -#: ../../source/user-docs/writing_documentation.rst:4 -msgid "Writing Documentation" -msgstr "" - -# b368edfbc7a648f4afeaaabbf0e59f6e -#: ../../source/user-docs/writing_documentation.rst:6 -msgid "" -"The documentation for |project_name| is written using ReSTructured text (." -"rst) and the Sphinx documentation builder." -msgstr "" - -# fc075d7b628e4b5981bf091de4843f44 -#: ../../source/user-docs/writing_documentation.rst:9 -msgid "" -"The best way to learn how to write .rst is to look at the source of existing " -"documentation - the markup syntax is very simple. There are a number of " -"useful tags that you can use to make your documentation clear and visually " -"interesting, the more commonly used in this document are listed below. For a " -"more detailed list, please visit the `Sphinx Inline Markup page `_" -msgstr "" - -# ec7e4e24bc624ab9baf3453d5dd62e99 -#: ../../source/user-docs/writing_documentation.rst:17 -msgid "" -"A complete list of supported .rst markup is also available `here `_." -msgstr "" - -# 93b397b117ee48f1a142681f0d810365 -#: ../../source/user-docs/writing_documentation.rst:20 -msgid "Following are a few tips for documentation writers:" -msgstr "" - -# ed63e9bf7b5442a68a35ca74079c3de0 -#: ../../source/user-docs/writing_documentation.rst:22 -msgid "" -"Take a look in the `lookup table <./lookup_table.html>`_ to see which terms " -"and phrases are used and which you should definitely **not** translate." -msgstr "" - -# 857ff31fa3154201ad497800d3c1eacc -#: ../../source/user-docs/writing_documentation.rst:24 -msgid "" -"There is a \"Community Edition\" of `PyCharm `_ available. Consider using this for writing documentation." -msgstr "" - -# 3121ceada1a04b42b6c0dcaa5cf20ae6 -#: ../../source/user-docs/writing_documentation.rst:27 -msgid "" -"Try to not write more than **80 Characters in one line**. That makes the " -"documentation much easier to maintain." -msgstr "" - -# 1c0c3291605548ec89628956eee157b0 -#: ../../source/user-docs/writing_documentation.rst:29 -msgid "" -"Try to create a reference anchor for at least every new heading (page). If " -"it is useful and important you might also want to put anchors on subheadings." -msgstr "" - -# fced505236af4a9a87ef31f010166946 -#: ../../source/user-docs/writing_documentation.rst:32 -msgid "" -"Try to avoid duplicate target names (anchors). Always use unique " -"identifiers. If you are not sure - the longer the name the more unlikely it " -"is already used." -msgstr "" - -# 285b0ecda96844e89602eb3f962f3f11 -#: ../../source/user-docs/writing_documentation.rst:35 -msgid "" -"Try to use underscores (_) in filenames and links (anchors) as a separator." -msgstr "" - -# 3df30d4532d94db6a70e1f5c16218da1 -#: ../../source/user-docs/writing_documentation.rst:36 -msgid "Try to use dashes (-) in directory names as a separator." -msgstr "" - -# 2d697fd163de40c2af53987e16bb234a -#: ../../source/user-docs/writing_documentation.rst:37 -msgid "" -"Try to avoid using tables wherever possible. Only use tables if there is " -"really no other way to display the documentation." -msgstr "" - -# ff348d11397f4ed790b04e1f96fc8190 -#: ../../source/user-docs/writing_documentation.rst:40 -msgid "" -"If you have to use tables try to avoid using TABS in favour of SPACES. TABS " -"only confuse the computer while building documentation and leads to " -"unnecessary errors." -msgstr "" - -# b2b8b7eb6c854e63a5a207dbe178e45d -#: ../../source/user-docs/writing_documentation.rst:47 -msgid "Common tags used in the Documentation:" -msgstr "" - -# f36843fd50b44eae8f6dcff4137e3709 -#: ../../source/user-docs/writing_documentation.rst:49 -msgid "Here are some common useful tags ::" -msgstr "" - -# b9546a5059d64755b2f52b1feabb7b60 -#: ../../source/user-docs/writing_documentation.rst:168 -msgid "" -"remark: use pt instead of px because of latex output A4 = height ~ 1000pt A4 " -"= width ~ 700pt" -msgstr "" - -# cf21c710c6d54b0aa3a2342cc30f758f -#: ../../source/user-docs/writing_documentation.rst:173 -msgid "Help writing/fixing documentation" -msgstr "" - -# 5444ccab9f45491f8a8e17ffd4430220 -#: ../../source/user-docs/writing_documentation.rst:175 -msgid "" -"Helping writing the documentation is an easy task. The only thing you need " -"to have is a local copy of the |project_name| documentation branch." -msgstr "" - -# 35ccb278710e4786b38317c895c8c7e7 -#: ../../source/user-docs/writing_documentation.rst:180 -msgid "Clone |project_name| documentation" -msgstr "" - -# ad2b9366f52e4a1e8cac715c9a7d84dc -#: ../../source/user-docs/writing_documentation.rst:182 -msgid "" -"In order to clone the documentation of |project_name| you only have to " -"follow this procedure:" -msgstr "" - -# 2c6d0fa0a5874b879bf7ea300aa64737 -#: ../../source/user-docs/writing_documentation.rst:185 -msgid "" -"This is a one-time process. You do not need to repeat it - it is here for " -"reference purposes only." -msgstr "" - -# 900948bb9e4e4334abf50414ae242c0b -#: ../../source/user-docs/writing_documentation.rst:188 -msgid "Things you have to have to be able to help with documentation:" -msgstr "" - -# 350776b056014caf83d283abffccec06 -#: ../../source/user-docs/writing_documentation.rst:190 -msgid "A GitHub account" -msgstr "" - -# a0d64d23aad24996bacc27815d0c2148 -#: ../../source/user-docs/writing_documentation.rst:191 -msgid "" -"A fork of the inasafe-doc branch (only if you do not have commit access to " -"the main repository)" -msgstr "" - -# 18d4c66dfc5141c98c91f9a803935479 -#: ../../source/user-docs/writing_documentation.rst:194 -msgid "" -"Creating a GitHub account is done by clicking on the :guilabel:`Sign up for " -"free` button on https://github.com/ and filling out the necessary fields." -msgstr "" - -# 2d14b1e3058642d783cd1c96876703dc -#: ../../source/user-docs/writing_documentation.rst:197 -msgid "" -"This documentation assumes that you have the whole |project_name| source " -"available under :file:`$HOME/dev/python/...`" -msgstr "" - -# b5127bcd2f874a6caf091baabf9c7428 -#: ../../source/user-docs/writing_documentation.rst:200 -msgid "" -"Clone your forked github |project_name| documentation by entering following " -"command:" -msgstr "" - -# 943ad092865c4ecfaacf05459c5ede67 -#: ../../source/user-docs/writing_documentation.rst:203 -msgid ":command:`git clone https://github.com//inasafe-doc.git`" -msgstr "" - -# 15fe6ba0160e419fa6c33d71e6e16130 -#: ../../source/user-docs/writing_documentation.rst:205 -msgid "Search for the .rst file you'd like to extend/fix and work on it." -msgstr "" - -# f85d1faa2d7549d8b5dc177f0bfb6e50 -#: ../../source/user-docs/writing_documentation.rst:207 -msgid "" -"Afterwards commit your local changes to your local clone with the command:" -msgstr "" - -# 1ccd7259eb9d4ed2a9ad7ebca821e58f -#: ../../source/user-docs/writing_documentation.rst:209 -msgid ":command:`git commit -a -m\"fixed a typo\"`" -msgstr "" - -# 7134f32560be46d8a791ae2b981303b2 -#: ../../source/user-docs/writing_documentation.rst:211 -msgid "" -"After that you have to push your local changes to your github fork with:" -msgstr "" - -# 3ee1fb876b514d5a9f839f0e1ed9a85d -#: ../../source/user-docs/writing_documentation.rst:213 -msgid ":command:`git push`" -msgstr "" - -# 8c0966e3a1df489aa41e43592f0d6a32 -#: ../../source/user-docs/writing_documentation.rst:215 -msgid "" -"You can than do a pull request on github to request your changes to be " -"reviewed and taken into the official documentation." -msgstr "" diff --git a/docs/i18n/id/LC_MESSAGES/training/curriculum/curriculum.po b/docs/i18n/id/LC_MESSAGES/training/curriculum/curriculum.po deleted file mode 100644 index 1754e14e..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/curriculum/curriculum.po +++ /dev/null @@ -1,5978 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Dewi Sulistioningrum , 2013 -# elida nurrohmah , 2013 -# harry mahardhika , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 07:46+0000\n" -"Last-Translator: Fatisya Ilani Yusuf \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# a73161ee5b81451fb825f5b3f26ff294 -#: ../../source/training/curriculum/curriculum.rst:2 -msgid "Contingency Planning with OpenStreetMap (OSM) and QGIS/|project_name|" -msgstr "" -"Perencanaan Kontinjensi dengan OpenStreetMap (OSM) dan |QGIS|/|project_name|" - -# 790c89dfaf48462bb9827cd0118a4741 -#: ../../source/training/curriculum/curriculum.rst:4 -msgid "**BADAN NASIONAL PENANGGULANGAN BENCANA**" -msgstr "**BADAN NASIONAL PENANGGULANGAN BENCANA**" - -# d4f45d2d4fe94fbdae8880183cb9fca2 -#: ../../source/training/curriculum/curriculum.rst:6 -msgid "**2013**" -msgstr "**2013**" - -# eb1f7df45cc64b2083027bf5406e6b78 -#: ../../source/training/curriculum/curriculum.rst:10 -msgid "FOREWORD" -msgstr "KATA PENGANTAR" - -# 458752d709c14b6395ca00da7b6de830 -#: ../../source/training/curriculum/curriculum.rst:12 -msgid "" -"The Contingency Planning with OpenStreetMap (OSM) and |QGIS|/|project_name| " -"workshop program is designed to provide provincial and district disaster " -"management agency officials and staff with the knowledge and skills required " -"to handle emergencies during all stages of a disaster. The knowledge and " -"skills acquired through this workshop program will help them to reduce and " -"manage risks from natural disasters." -msgstr "" -"Program Diklat Perencanaan Kontinjensi dengan OpenStreetMap (OSM) dan |" -"QGIS|/|project_name| dirancang untuk memberikan pengetahuan dan kemampuan " -"Badan Penanggulangan Bencana Daerah dan Provinsi agar dapat menangani " -"keadaan darurat ketika terjadi bencana. Pengetahuan dan kemampuan yang " -"diperoleh dari program diklat ini akan membantu mereka untuk mengurangi dan " -"mengelola risiko dari suatu bencana alam. " - -# 6d522d93ebff40ae91e5f8122d0d0d05 -#: ../../source/training/curriculum/curriculum.rst:19 -msgid "" -"Badan Nasional Penanggulangan Bencana (|BNPB|) has identified as a priority " -"the need to create improved methodology for contingency planning. This " -"methodology is focused on the use of realistic disaster scenarios as a " -"starting point for the new comprehensive process." -msgstr "" -"Badan Nasional Penanggulangan Bencana (|BNPB|) telah mengidentifikasi " -"prioritas kebutuhan untuk memperbaiki metodologi yang dapat digunakan untuk " -"perencanaan kontinjensi. Metodologi ini menekankan pada penggunaan skenario " -"bencana yang realistis sebagai titik awal untuk proses perencanaan " -"kontinjensi yang baru dan komprehensif." - -# b0a90a611dc34daa8022cd93a891ea75 -#: ../../source/training/curriculum/curriculum.rst:24 -msgid "" -"|BNPB| and |GoA| through Australia-Indonesia Facility for Disaster Reduction " -"(|AIFDR|) have worked together to create open source software tools for " -"realistic disaster scenario development as an input for contingency " -"planning. They are designed to help disaster managers improve their own " -"scenario analysis which can be used as an input for their disaster " -"contingency planning." -msgstr "" -"|BNPB| dan |GoA| melalui Australia-Indonesia Facility for Disaster Reduction " -"(|AIFDR|) telah bekerja sama membuat sebuah perangkat lunak terbuka untuk " -"mengembangkan skenario bencana yang realistis sebagai input untuk " -"perencanaan kontinjensi. Perangkat lunak ini dirancang untuk membantu badan " -"penanggulangan bencana memperbaiki analisis skenario, yang dapat digunakan " -"sebagai input untuk menyusun perencanaan kontinjensi bencana mereka." - -# cef26a5256894707b2a2a75c4eb841cf -#: ../../source/training/curriculum/curriculum.rst:31 -msgid "" -"To aid the |BNPB| workshop centre (Pusat Diklat BNPB) in developing " -"systematic workshops which cover all required competencies, this package of " -"training and curriculum materials was created. The workshop curriculum is " -"developed to be used as reference in workshop organisation, both for " -"national or provincial/district level." -msgstr "" -"Untuk membantu Pusat Diklat |BNPB| dalam mengembangkan diklat yang lebih " -"efektif dan sistematis yang mencakup seluruh kompetensi yang dibutuhkan, " -"paket pelatihan dan materi kurikulum ini pun dibuat. Kurikulum diklat ini " -"dikembangkan untuk digunakan sebagai acuan di dalam penyelenggaraan diklat, " -"baik di tingkat nasional maupun di tingkat provinsi/kabupaten/kota." - -# 3f488380d3d741fd8f745143c06952b4 -#: ../../source/training/curriculum/curriculum.rst:37 -msgid "" -"This curriculum will be enhanced through test and input from stakeholders, " -"both from government and non-government agencies." -msgstr "" -"Kurikulum ini akan terus disempurnakan melalui uji coba dan masukan dari " -"para pemangku kepentingan, baik dari lembaga pemerintah maupun non " -"pemerintah." - -# c36a9dd467e04a1b88e2b5f2382f5ed7 -#: ../../source/training/curriculum/curriculum.rst:42 -msgid "INTRODUCTION" -msgstr "PENDAHULUAN" - -# fbde70c7553948ffaeb14b5f4e72ebb6 -#: ../../source/training/curriculum/curriculum.rst:44 -msgid "" -"As one of the most hazard-prone and densely populated countries in the " -"world, Indonesia faces significant risk of loss of life and challenges to " -"development progress as a result of natural disasters. This is why disaster " -"risk reduction has been recognised by the Government of Indonesia as one of " -"their top eleven priorities in the Medium-Term Development Plan (2010-2014). " -"In recognition of the impact of disasters on developing economies, AusAid’s " -"policy on disaster risk reduction highlights the importance of investing in " -"disaster reduction." -msgstr "" -"Sebagai salah satu negara yang paling rawan bencana dan berpenduduk terpadat " -"di dunia, Indonesia menghadapi risiko jumlah korban jiwa serta tantangan " -"kemajuan pembangunan yang signifikan sebagai akibat dari bencana alam. " -"Inilah mengapa pengurangan risiko bencana telah diakui oleh pemerintah " -"Indonesia sebagai salah satu dari 11 prioritas dalam Rencana Pembangunan " -"Jangka Menengah (2010-2014). Dalam pengakuan dari dampak bencana kepada " -"ekonomi berkembang, kebijakan AusAid terhadap pengurangan risiko bencana " -"menggaris bawahi pentingnya berinvestasi pada pengurangan dampak bencana." - -# 02020cc5c4114accbeb265a89ee1731b -#: ../../source/training/curriculum/curriculum.rst:54 -msgid "" -"|BNPB| has a mandate to increase the overall disaster management capacity of " -"Indonesia, including workshops for managers who handle disasters at the sub-" -"national level. To date, BNPB’s Education and Workshop Centre has been " -"developing a range of workshop curriculum and modules with specific focus on" -msgstr "" -"|BNPB| memiliki mandat untuk meningkatkan kapasitas manajemen bencana secara " -"keseluruhan di Indonesia, termasuk pelatihan bagi manajer-manajer bencana " -"pada tingkat sub-nasional. Hingga saat ini, Pusat Pendidikan dan Pelatihan " -"BNPB telah mengembangkan berbagai kurikulum dan modul pelatihan yang " -"memiliki fokus spesifik pada" - -# 86376697523c46cfa6987f214223f0de -#: ../../source/training/curriculum/curriculum.rst:60 -msgid "Basic Disaster Management" -msgstr "Dasar-dasar Penanggulangan Bencana" - -# dc7743571af6415d8c5ae1822dbffd37 -#: ../../source/training/curriculum/curriculum.rst:61 -msgid "Rapid Assessment and Coordination" -msgstr "Penilaian dan Koordinasi Cepat" - -# df10838113dc4cfbb9845676f5fabad9 -#: ../../source/training/curriculum/curriculum.rst:62 -msgid "Contingency Planning" -msgstr "Rencana Kontinjensi" - -# 199776b2118f4f839769f716e8fbe4dc -#: ../../source/training/curriculum/curriculum.rst:64 -msgid "" -"|BNPB| works with various actors and stakeholders on the development of " -"these workshop modules. |BNPB| has identified as a priority the need to " -"improve its methodology for contingency planning with an emphasis on the use " -"of realistic disaster scenarios as the starting point for this new " -"comprehensive process." -msgstr "" -"|BNPB| telah bekerja sama dengan berbagai pelaku dan instansi terkait dalam " -"pengembangan modul pelatihan ini. |BNPB| telah mengidentifikasi kebutuhan " -"prioritas untuk meningkatkan metodologi yang digunakan dalam perencanaan " -"kontinjensi menggunakan penekanan pada penggunaan skenario bencana yang " -"realistis sebagai titik awal untuk proses baru dan komprehensif ini." - -# 85081e84668e4b189891aa4691067257 -#: ../../source/training/curriculum/curriculum.rst:70 -msgid "" -"|BNPB| and |GoA| through the Australia-Indonesia Facility for Disaster " -"Reduction have worked together on a methodology and associated open source " -"software for developing realistic disaster scenarios for contingency " -"planning. This will enable emergency managers to develop their own scenario " -"assessments that can feed into their disaster contingency plans. Over the " -"last year three specific tools have been piloted in Indonesia with huge " -"success:" -msgstr "" -"|BNPB| dan |GoA| melalui Australia-Indonesia Facility for Disaster Reduction " -"telah bekerjasama membuat sebuah metodologi dan perangkat lunak terbuka " -"(*open source software tools*) terkait untuk mengembangkan skenario bencana " -"yang realistis untuk rencana kontinjensi. Hal ini akan memungkinkan manajer " -"bidang emergency untuk mengembangkan penilaian skenario mereka sendiri yang " -"dapat menjadi masukan bagi rencana kontinjensi bencana mereka. Selama satu " -"tahun terakhir, terdapat tiga alat yang telah diujicobakan di Indonesia " -"dengan tingkat keberhasilan yang sangat tinggi:" - -# 16e5171c00c0427ca5c55a901ddd5ec5 -#: ../../source/training/curriculum/curriculum.rst:79 -msgid "" -"**InaSAFE**: a free and open source software that produces realistic natural " -"hazard impact scenarios for better planning, preparedness and response " -"activities. It is being developed by |AIFDR| in close consultation with |" -"BNPB|." -msgstr "" -"**InaSAFE**: adalah perangkat lunak yang gratis dan bersifat terbuka yang " -"menghasilkan skenario dampak bencana alam yang realistis untuk perencanaan, " -"kesiapsiagaan, dan kegiatan tanggap darurat yang lebih baik. Tool ini sedang " -"dikembangkan oleh |AIFDR| dengan konsultasi yang erat dengan BNPB." - -# 82f894341d1444b6af6f1a974eb435fa -#: ../../source/training/curriculum/curriculum.rst:84 -msgid "" -"**OpenStreetMap (OSM) tools**: OSM is a free map of the world that anyone " -"can add to and edit. Community mapping allows for more detailed information " -"to be collected that can be utilised for analysis in |project_name| (e.g. " -"How many houses will be affected by a specific hazard)." -msgstr "" -"**OpenStreetMap (OSM) tools**: OSM merupakan peta dunia gratis yang " -"memperbolehkan siapa pun untuk menambahkan dan mengedit data yang ada di " -"dalamnya. Dengan memberdayakan pemetaan berbasis komunitas, kita bisa " -"mendapatkan informasi yang lebih detail dan akurat yang kemudian dapat " -"digunakan pada |project_name| (contohnya, berapa banyak rumah yang dapat " -"terkena dampak dari jenis bencana tertentu)." - -# cac1209c2b8a47f8b9ab0fc9e7833439 -#: ../../source/training/curriculum/curriculum.rst:90 -msgid "" -"**QGIS**: open source Geographical Information System (GIS) software that " -"allows users to spatially analyse their data. It is also the platform on " -"which |project_name| is built." -msgstr "" -"**QGIS**: merupakan perangkat lunak Sistem Informasi Geografi (SIG) yang " -"terbuka sehingga memperbolehkan pengguna untuk menganalisa datanya secara " -"spasial dan juga merupakan platform dimana |project_name| dibuat." - -# 5bbcfccc9e0b4aff9c4a03e84ae08486 -#: ../../source/training/curriculum/curriculum.rst:94 -msgid "" -"In order to ensure uptake, effectiveness and sustainability of these tools " -"it is necessary to develop and test a comprehensive workshop package for " -"each individual tool as well as create a pool of trainers across Indonesia." -msgstr "" -"Dalam rangka memastikan penyerapan, efektivitas, dan keberlanjutan dari alat-" -"alat tersebut, penting untuk mengembangkan dan menguji paket pelatihan yang " -"komprehensif untuk setiap individu, begitu pula dengan menciptakan pelatih-" -"pelatih lainnya di penjuru Indonesia." - -# 1f98dde6313240dfb49a7c132c567f19 -#: ../../source/training/curriculum/curriculum.rst:98 -msgid "" -"This curriculum outline describes competencies to be achieved, the lists of " -"content required to achieve the competencies in the workshop package and the " -"program structure of the workshop course. The workshop consists of beginner, " -"intermediate and training of trainer levels. The beginner workshop is mainly " -"aimed to introduce participants to the concept of realistic disaster " -"scenario development and help them become socialised to the concepts and " -"explore all three of the open source tools. In contingency planning, having " -"realistic disaster scenarios contributes significantly to the reliability of " -"the created planning results. As complexity and uncertainty are common in " -"developing realistic disaster scenarios, advanced knowledge and skills in " -"mapping and impact calculations using OSM, QGIS and |project_name| are " -"required. For this reason, the intermediate level of the workshop on OSM, " -"QGIS and |project_name| is required to further participants' knowledge and " -"skills to work with the tools in anticipating possible disaster events and " -"impacts." -msgstr "" -"Skema kurikulum ini menjabarkan tentang kompetensi yang akan dicapai, daftar " -"materi yang diperlukan untuk mencapai kompetensi dalam paket lokakarya serta " -"struktur program diklatnya. Pelatihan terdiri dari tingkat dasar, menengah, " -"dan lanjut. Pelatihan tingkat dasar ditujukan untuk memperkenalkan peserta " -"kepada konsep dari pengembangan skenario bencana yang realistis dan membantu " -"mereka tersosialisasikan oleh konsepnya dan mengeksplorasi ketiga *tool* " -"open source tersebut. Dalam perencanaan kontinjensi, skenario bencana yang " -"realistis berkontribusi secara signifikan terhadap keandalan hasil " -"perencanaan yang telah dibuat. Ketika kompleksitas dan ketidakpastian " -"merupakan hal yang umum dalam mengembangkan skenario bencana yang realistis, " -"maka dibutuhkan ilmu pengetahuan dan kemampuan yang maju dalam pemetaan dan " -"kalkulasi dampak menggunakan OSM, QGIS, dan |project_name|. Untuk alasan " -"ini, lokakarya OSM, QGIS, dan |project_name| tingkat menengah diperlukan " -"untuk menambah pengetahuan dan kemampuan peserta untuk bekerja menggunakan " -"*tool* tersebut dalam mengantisipasi kejadian dan dampak bencana yang " -"mungkin terjadi." - -# d06c08886cbf4e1db60fec98eee2e096 -#: ../../source/training/curriculum/curriculum.rst:115 -msgid "" -"The beginner and intermediate workshops are expected to be continued with an " -"advanced level course for training of trainers." -msgstr "" -"Lokakarya tingkat pemula dan lanjut diharapkan dapat berkelanjutan dengan " -"pelatihan tingkat lanjut dan lokakarya bagi para trainer (*Training of " -"Trainers*)" - -# f3801267b17f49e98944722eeae87f5c -#: ../../source/training/curriculum/curriculum.rst:118 -msgid "" -"To gain the required competencies, the workshop course is expected to apply " -"andragogical principles (a learning approach for adults) with an emphasis on " -"real tasks in the field and various methods in engaging active participation " -"from the participants." -msgstr "" -"Untuk mencapai kompetensi yang diharapkan, lokakarya ini diharapkan " -"menggunakan pendekatan pembelajaran andragogy (pembelajaran orang dewasa) " -"yang menekankan pada pelaksanaan tugas di lapangan, serta menerapkan metode " -"variatif yang menekankan pada keterlibatan peserta secara aktif." - -# d3aa1bdb5f3d483b9a23343cef9bd8d1 -#: ../../source/training/curriculum/curriculum.rst:124 -msgid "LEVELS OF WORKSHOP" -msgstr "PENJENJANGAN LOKAKARYA" - -# 9deb10a5d8914a318e176adc9c702d0e -#: ../../source/training/curriculum/curriculum.rst:126 -msgid "The workshop consists of three levels:" -msgstr "Lokakarya ini terdiri dari tiga tingkatan:" - -# 1e1b006437944083882dd6ea555529ce -#: ../../source/training/curriculum/curriculum.rst:128 -msgid "Beginner Workshop" -msgstr "Lokakarya Tingkat Dasar" - -# 0e07460f65254482b4201f6655053319 -# ae8261aabb6341d989fde3624925d016 -#: ../../source/training/curriculum/curriculum.rst:130 -#: ../../source/training/curriculum/curriculum.rst:223 -msgid "Collecting Data Using OSM (Beginner)" -msgstr "Pengumpulan Data Menggunakan OSM (Tingkat Dasar)" - -# ca5100224be24603a20c91451a048aa6 -#: ../../source/training/curriculum/curriculum.rst:131 -msgid "Data Analysis Using QGIS and |project_name| (Beginner)" -msgstr "Analisis Data Menggunakan QGIS dan |project_name| (Tingkat Dasar)" - -# 52b0b2f031f540d9a52b434d04f50081 -#: ../../source/training/curriculum/curriculum.rst:133 -msgid "Intermediate Workshop" -msgstr "Lokakarya Tingkat Menengah" - -# f16e485886f94b26a8aee8231c8b9998 -# 503840b0aa9b415fb79697372c52776d -#: ../../source/training/curriculum/curriculum.rst:135 -#: ../../source/training/curriculum/curriculum.rst:256 -msgid "Collecting Data Using OSM (Intermediate)" -msgstr "Pengumpulan Data Menggunakan OSM ( Tingkat Menengah)" - -# 64af843be9e0407990f5d76adb0c53eb -#: ../../source/training/curriculum/curriculum.rst:136 -msgid "Data Analysis Using QGIS and |project_name| (Intermediate)" -msgstr "Analisis Data Menggunakan QGIS dan |project_name| (Tingkat Menengah)" - -# bbb364bdf094471095f995eb21de8775 -#: ../../source/training/curriculum/curriculum.rst:138 -msgid "Training of Trainer (ToT) Workshop" -msgstr "Lokakarya Training of Trainer (ToT)" - -# 0709ae3ad7e54b14ae8e0d3c9ca7abc6 -#: ../../source/training/curriculum/curriculum.rst:141 -msgid "CURRICULUM" -msgstr "KURIKULUM" - -# 5ae17b194b7741e68f4ae7088d8f8fa8 -#: ../../source/training/curriculum/curriculum.rst:144 -msgid "A. Aims" -msgstr "A. Tujuan" - -# c4f9311cc5ba44589926f19dc13f827c -#: ../../source/training/curriculum/curriculum.rst:146 -msgid "" -"The scheme of the curriculum on Scenario Development for Contingency " -"Planning by using OSM and QGIS/|project_name| is designed to provide a " -"reference to workshop organisers at national, provincial and district levels." -msgstr "" -"Skema kurikulum pada Pengembangan Skenario untuk Rencana Kontinjensi " -"menggunakan OSM dan QGIS/|project_name| disusun untuk memberikan acuan bagi " -"penyelenggara lokakarya di tingkat nasional, provinsi, dan kabupaten." - -# 391a89150ac342ab8e61b038eccb8923 -#: ../../source/training/curriculum/curriculum.rst:150 -msgid "" -"The course consists of three separate workshops which cover four training " -"modules and a training for trainers. The objective of the first workshop is " -"to provide a complete, albeit beginner understanding of all components of " -"the scenario development process. The second workshop is intended to " -"continue on to more advanced topics in OSM and QGIS/|project_name|." -msgstr "" -"Pelatihan ini terdiri dari tiga lokakarya terpisah yang melingkupi empat " -"buah modul pelatihan dan satu pelatihan untuk pelatih (*training for " -"trainers*). Tujuan dari lokakarya pertama adalah untuk memberikan pemahaman " -"yang lengkap mengenai seluruh komponen dari proses pengembangan skenario. " -"Sedangkan lokakarya kedua dimaksudkan untuk melanjutkan ke topik yang lebih " -"maju dalam OSM dan QGIS/|project_name|." - -# af231e8bb10f492bae6910bec28c6d2b -#: ../../source/training/curriculum/curriculum.rst:156 -msgid "" -"The main objective of the ToT workshop is to train people to be leaders and " -"trainers in Scenario Development program for Contingency Planning (SD4CP) in " -"their respective regions." -msgstr "" -"Tujuan utama dari lokakarya ToT adalah untuk melatih peserta menjadi " -"pemimpin dan pelatih dalam program Pengembangan Skenario Rencana Kontinjensi " -"(SD4CP) di daerah mereka masing-masing." - -# caf1ba47c09948af89f86396c983a12c -#: ../../source/training/curriculum/curriculum.rst:160 -msgid "" -"After completing the three workshops, participants will have the skills in " -"OSM / QGIS / |project_name| which are needed as a facilitator, to help train " -"others in developing realistic disaster scenarios that can be used in " -"contingency plans. This will lead to better decision making during the " -"process of making contingency plans. It is also expected that those who " -"reach the training of trainer level can provide technical assistance in " -"their respective regions." -msgstr "" -"Setelah menyelesaikan pelatihan, peserta akan memiliki kemampuan-kemampuan " -"baru terkait OSM/QGIS/|project_name| yang dibutuhkan sebagai fasilitator, " -"untuk membantu dan melatih orang lain dalam mengembangkan sebuah skenario " -"bencana yang realistis yang dapat dimanfaatkan dalam rencana kontinjensi. " -"Hal ini akan menciptakan proses pengambilan keputusan yang lebih baik selama " -"proses pembuatan rencana kontinjensi. Selain itu diharapkan peserta TOT " -"dapat memberikan bantuan teknis di daerah mereka masing-masing." - -# 9fb25652c5c944ab9176ad1303946f38 -#: ../../source/training/curriculum/curriculum.rst:171 -msgid "B. Target Audience and Qualifications" -msgstr "B. Target Peserta dan Kualifikasi" - -# fc2fec111dac4cb0afc426c46598c732 -#: ../../source/training/curriculum/curriculum.rst:173 -msgid "" -"The target participants of the workshop courses, both at beginner and " -"intermediate levels are:" -msgstr "" -"Sasaran peserta lokakarya, baik untuk tingkat dasar dan menengah adalah:" - -# 941f61d3837e4f36b73a88057f5210b6 -#: ../../source/training/curriculum/curriculum.rst:176 -msgid "" -"Persons responsible in developing contingency plans at BPBD at provincial " -"and district levels. Priority is given to those working in the prevention " -"working unit" -msgstr "" -"Orang-orang yang bertanggung jawab dalam pengembangan rencana kontinjensi di " -"BPBD provinsi atau kabupaten. Prioritas diberikan kepada mereka yang bekerja " -"pada bidang pencegahan berncana" - -# 810b41af1c8140ff8c660e801afbb823 -#: ../../source/training/curriculum/curriculum.rst:179 -msgid "" -"Lecturers and students from relevant departments such as Geography, Geodesy, " -"Geomatics, Information Technology and other earth-related sciences" -msgstr "" -"Dosen dan mahasiswa dari departemen yang relevan seerti Geografi, Geodesi, " -"Geomatika, Teknologi Informasi dan sains kebumian lainnya" - -# 7f622b32563d450f934af1e80b488a14 -#: ../../source/training/curriculum/curriculum.rst:181 -msgid "Representatives from NGOs working in disaster risk reduction" -msgstr "" -"Perwakilan dari Lembaga Swadaya Masyarakat (LSM) yang bekerja di bidang " -"pengurangan risiko bencana" - -# 23c35f07adc9405b96b8599b4588b40b -#: ../../source/training/curriculum/curriculum.rst:182 -msgid "Other relevant organisations such as Army, Police, Red Cross and Scouts" -msgstr "" -"Organisasi relevan lainnya seperti Angkatan Darat, Polisi, Palang Merah, dan " -"Pramuka" - -# 492ded1b2d0a4959b0e183b010b82718 -#: ../../source/training/curriculum/curriculum.rst:183 -msgid "Other relevant agencies" -msgstr "Lembaga relevan lainnya" - -# c53cd875307f4a52897ecad83d3fef57 -#: ../../source/training/curriculum/curriculum.rst:185 -msgid "Qualifications for participants at beginner level:" -msgstr "Kualifikasi untuk peserta tingkat pemula:" - -# 8e5fe1129a0648b3807842f63c389b6b -# 647c813617f44cce8780bf26bb5742e5 -#: ../../source/training/curriculum/curriculum.rst:187 -#: ../../source/training/curriculum/curriculum.rst:198 -msgid "" -"Able to operate a computer (word processing, presentations, internet, " -"spreadsheets)" -msgstr "" -"Mampu mengoperasikan komputer (*word processing, presentations, internet, " -"spreadsheets*)" - -# 03b20acf24564bd6a8be7ae0c6554858 -# 4916415b88d2493684227da3e46b4c2a -#: ../../source/training/curriculum/curriculum.rst:189 -#: ../../source/training/curriculum/curriculum.rst:200 -msgid "Have a laptop with minimum RAM of 2 GB (recommended 4 GB)" -msgstr "Membawa laptop dengan spesifikasi RAM minimal 2 GB (disarankan 4 GB)." - -# ba32c48a5cd148fb99b7ef48dcb9dc40 -# 33cbfc5c5dc941d4a860fc806ebdb8ae -#: ../../source/training/curriculum/curriculum.rst:190 -#: ../../source/training/curriculum/curriculum.rst:202 -msgid "Having a GPS unit and understanding of how it works is an advantage" -msgstr "" -"Disarankan membawa GPS dan apabila dapat mengoperasikan GPS akan lebih baik." - -# e5ff99ac58aa498eb2f4519b32a86781 -#: ../../source/training/curriculum/curriculum.rst:191 -msgid "Having basic skills in Geographic Information Systems is an advantage" -msgstr "Diutamakan memiliki pengetahuan tentang Sistem Informasi Geografi." - -# 840658c3b83d40b2a38927762cac4331 -#: ../../source/training/curriculum/curriculum.rst:193 -msgid "Qualifications for participants at intermediate level:" -msgstr "Kualifikasi peserta di tingkat menengah:" - -# 96a615b5aa434e93a00bb57bccc55557 -#: ../../source/training/curriculum/curriculum.rst:195 -msgid "" -"MUST have attended the workshop at beginner level OR equivalent knowledge OR " -"have a background in Geographic Information Systems and have read through " -"the beginner manuals" -msgstr "" -"HARUS telah mengikuti lokakarya tingkat dasar ATAU pengetahuan yang setara " -"ATAU memiliki latar belakang Sistem Informasi Geografi, dan telah menguasai " -"panduan tingkat dasar." - -# fffd4d7e4fe4499c8f843d70e69d3d74 -#: ../../source/training/curriculum/curriculum.rst:201 -msgid "Have an understanding of Geographic Information Systems" -msgstr "Memiliki pengetahuan tentang Sistem Informasi Geografi." - -# 587adab1337f4f28b03e7a5ea2053d63 -#: ../../source/training/curriculum/curriculum.rst:204 -msgid "Qualifications for participants at Training of Trainer (ToT) level:" -msgstr "" -"Kriteria Peserta Diklat dan persyaratan untuk mengikuti diklat *Training of " -"Trainer* (ToT):" - -# c2fbb7c6b4e34332af3286a6dfde129a -#: ../../source/training/curriculum/curriculum.rst:206 -msgid "" -"MUST have attended the workshop at both beginner and intermediate levels." -msgstr "HARUS telah mengikuti pelatihan tingkat pemula dan tingkat menengah." - -# 1e64562817f94bf1a6cddd188157f586 -#: ../../source/training/curriculum/curriculum.rst:208 -msgid "" -"Demonstrate the potential to be a key advocate, trainer and technical " -"resource for Scenario Development Contingency Planning in their region" -msgstr "" -"Menunjukkan potensi untuk menjadi pendorong atau advokat utama serta menjadi " -"pelatih dan sumber daya teknis dalam program pelatihan Pengembangan Skenario " -"untuk Rencana Kontinjensi di daerah mereka masing-masing." - -# fe09d9ee4f764d20a2443fadbdc0f0c1 -#: ../../source/training/curriculum/curriculum.rst:210 -msgid "Satisfactory completion of prerequisite tasks (as assessed by HOT)" -msgstr "" -"Penyelesaian tugas prasyarat yang memuaskan (sebagaimana dinilai oleh HOT)" - -# 8b682d3c566d405284eecb6529aa49aa -#: ../../source/training/curriculum/curriculum.rst:213 -msgid "C. Map of Competencies" -msgstr "C. Pemetaan Kompetensi" - -# 40f1117c06bf4e58a4419d601a697071 -#: ../../source/training/curriculum/curriculum.rst:215 -msgid "" -"Note that the competencies map (and curriculum scheme below) are organised " -"by topic, rather than by workshop level." -msgstr "" -"Perlu diperhatikan bahwa tabel kompetensi (dan skema kurikulum di bawah ini) " -"telah diorganisir berdasarkan topik, bukan tingkatan lokakarya." - -# 06b5cd124be34671bc4c2502971951bb -#: ../../source/training/curriculum/curriculum.rst:218 -msgid "**1. Beginner Workshop**" -msgstr "**1. Lokakarya Tingkat Pemula**" - -# b9ee1f2334634a95b0ccbe87ed1e49ab -# dfbd09552f824f449a72431b96624709 -#: ../../source/training/curriculum/curriculum.rst:221 -#: ../../source/training/curriculum/curriculum.rst:254 -#: ../../source/training/curriculum/curriculum.rst:277 -msgid "No." -msgstr "No." - -# 33f512fb96af40049f820c045c0cfef4 -# 4c56cf448ef743f8b9c15f1670e903d8 -#: ../../source/training/curriculum/curriculum.rst:221 -#: ../../source/training/curriculum/curriculum.rst:254 -#: ../../source/training/curriculum/curriculum.rst:277 -msgid "Level" -msgstr "Tingkatan" - -# abcceb66c40b44c5bdfc830142a9e6ed -# 52fd606a9e8d407bb2c51ac335e0e3a6 -# c10a2a811cae4499b3c5c3fc866c1b52 -#: ../../source/training/curriculum/curriculum.rst:221 -#: ../../source/training/curriculum/curriculum.rst:254 -#: ../../source/training/curriculum/curriculum.rst:277 -msgid "Standard and Basic Competencies" -msgstr "Kompetensi Standar dan Dasar" - -# e3d5edb02cb947109246cad34efd9c3e -#: ../../source/training/curriculum/curriculum.rst:223 -msgid "**Collecting Spatial Data with OSM**" -msgstr "**Mengumpulkan data spasial dengan OSM**" - -# a4414a68c97e4ef2a6222a697d8546aa -# 0a7b0e5d6f4d4f1b8580c953b7707bdf -# 9f793c407e514772850ebe5867e5e556 -#: ../../source/training/curriculum/curriculum.rst:225 -#: ../../source/training/curriculum/curriculum.rst:335 -#: ../../source/training/curriculum/curriculum.rst:903 -msgid "Draw paper maps to gain a basic understanding of OpenStreetMap" -msgstr "Menggambar peta wilayah sebagai dasar pemahaman OpenStreetMap" - -# ba8e089f8e814c7d8ca4784d1137516a -# 56f73696228849cdb82c2ee55294cd17 -# 63c37dc2570b488ab961a981de857176 -#: ../../source/training/curriculum/curriculum.rst:226 -#: ../../source/training/curriculum/curriculum.rst:342 -#: ../../source/training/curriculum/curriculum.rst:912 -msgid "Navigate OpenStreetMap website" -msgstr "Dapat menavigasikan Peta OpenStreetMap " - -# 67ec3ed9a8964728b2c0871292e5032f -# 00c6fcdadac449b9b9773c9fcbd8d21a -# 09b372f9e6604fc291f79dc50fe35caf -#: ../../source/training/curriculum/curriculum.rst:227 -#: ../../source/training/curriculum/curriculum.rst:350 -#: ../../source/training/curriculum/curriculum.rst:922 -msgid "Operate JOSM" -msgstr "Dapat Mengoperasikan JOSM" - -# c49534737c6d43b78d23d111eb37d69b -# ea9d43dea5d84dde86bc5215c9aabf06 -# b8c82035ee3047858a8e73795216ce57 -#: ../../source/training/curriculum/curriculum.rst:228 -#: ../../source/training/curriculum/curriculum.rst:368 -#: ../../source/training/curriculum/curriculum.rst:942 -msgid "Use GPS to add data to OSM" -msgstr "Menggunakan GPS untuk menambah data di OSM" - -# 8093f91064544d14a76849ba750115e4 -# 1fbf2a426c4d41ca8d3013606979f1bd -# bc9b6b54c666495e93fdd86a59e1d86a -#: ../../source/training/curriculum/curriculum.rst:229 -#: ../../source/training/curriculum/curriculum.rst:389 -#: ../../source/training/curriculum/curriculum.rst:965 -msgid "Use Field Papers to add data to OSM" -msgstr "Menggunakan *field papers* untuk menambah data di OSM" - -# 45c1555ecfd64dbcbd6de9c4d5615002 -# bd8dfcdebc9c41a89be5cc86d20eebc0 -# e544ad74378e4826bf45790dd14bcea5 -#: ../../source/training/curriculum/curriculum.rst:230 -#: ../../source/training/curriculum/curriculum.rst:398 -#: ../../source/training/curriculum/curriculum.rst:977 -msgid "Edit a map and add information to OSM using JOSM" -msgstr "Dapat mengedit peta dan menambahkan informasi ke OSM menggunakan JOSM" - -# 12e5bbf878b24283a8c24395cd8d6b02 -#: ../../source/training/curriculum/curriculum.rst:231 -#: ../../source/training/curriculum/curriculum.rst:407 -#: ../../source/training/curriculum/curriculum.rst:992 -msgid "Correct imagery offset" -msgstr "Memperbaiki pergeseran citra satelit" - -# a948bcb631a44aeaacd4856bfd940cc9 -# e0cd95a2ae874a3ca7cf6188291a98ce -# 4cbd688beba240068335ca6b782fcdfc -#: ../../source/training/curriculum/curriculum.rst:232 -#: ../../source/training/curriculum/curriculum.rst:414 -#: ../../source/training/curriculum/curriculum.rst:1001 -msgid "" -"Get OSM data in a specific format to be analysed further in Geographic " -"Information System (GIS) software" -msgstr "" -"Memperoleh data OSM dalam format tertentu untuk melakukan analisa lebih " -"lanjut di perangkat lunak SIG (Sistem Informasi Geografi)" - -# 59c7214b8bc24727917d3e2c435a518b -#: ../../source/training/curriculum/curriculum.rst:234 -msgid "Data Analysis using QGIS and |project_name| (Beginner)" -msgstr "Analisis Data Menggunakan QGIS dan |project_name| (Tingkat Dasar)" - -# 8ed0fb40b801472fbe7c1ba1b53315c5 -#: ../../source/training/curriculum/curriculum.rst:234 -msgid "" -"**Managing Spatial Data using QGIS and Analysing Disaster Impact Scenarios " -"with** |project_name|" -msgstr "" -"**Mengelola data spasial menggunakan QGIS dan menganalisis skenario dampak " -"bencana menggunakan** |project_name|" - -# 8ce3b21e4d5f4e21890655c97cc65af2 -# aa046505d96648508d73f64fecd93125 -# e8570e3183694dab93f583014aa9f5ae -#: ../../source/training/curriculum/curriculum.rst:236 -#: ../../source/training/curriculum/curriculum.rst:430 -#: ../../source/training/curriculum/curriculum.rst:1020 -msgid "Use GIS to develop scenarios for contingency planning" -msgstr "Menggunakan SIG untuk mengembangkan skenario rencana kontijensi" - -# e754f8acbf2f43509be5e5526458f016 -#: ../../source/training/curriculum/curriculum.rst:237 -msgid "" -"Understand the benefit of QGIS and |project_name| for developing realistic " -"scenarios for contingency planning" -msgstr "" -"Memahami manfaat QGIS dan |project_name| dalam pengembangan skenario " -"realistis untuk rencana kontinjensi" - -# 20f1b8bc51d340f6a5072b0804f86516 -# 8de6e0c8d7ca4f51b348401bd2af5b5c -# 0a75b6e4fa7b4c7f826f059d465f3773 -#: ../../source/training/curriculum/curriculum.rst:238 -#: ../../source/training/curriculum/curriculum.rst:442 -#: ../../source/training/curriculum/curriculum.rst:1036 -msgid "Install QGIS and understand QGIS user interface" -msgstr "Instalasi QGIS dan memahami tampilan antarmuka QGIS" - -# e010db310b0a4170834293c1085295d4 -# 5c852685509e4a9a85fb15d409f7eba8 -# e9b1aaa6c3c1427491587ee494ad25ba -#: ../../source/training/curriculum/curriculum.rst:239 -#: ../../source/training/curriculum/curriculum.rst:452 -#: ../../source/training/curriculum/curriculum.rst:1048 -msgid "Use QGIS plugins" -msgstr "Menggunakan *plugin QGIS*" - -# 19fc82e33696470b8146cc8776350657 -# 70496e0b7fd14166a3a62bece5900e34 -# 4dfb16b6ed2e4b089b564bc9d6a9f1f3 -#: ../../source/training/curriculum/curriculum.rst:240 -#: ../../source/training/curriculum/curriculum.rst:459 -#: ../../source/training/curriculum/curriculum.rst:1057 -msgid "Understand projection systems and transformation in QGIS" -msgstr "Memahami sistem proyeksi dan transformasi proyeksi pada QGIS" - -# 583888f49a364f3f8c9d29c4e70ac171 -# 87f396e9217e4b9fad12795f397c147c -# 10186d342f824004b1a23b8c81885d61 -#: ../../source/training/curriculum/curriculum.rst:241 -#: ../../source/training/curriculum/curriculum.rst:466 -#: ../../source/training/curriculum/curriculum.rst:1068 -msgid "Use and understand vector data" -msgstr "Menggunakan dan memahami data vektor" - -# 453e9be71f984c24abebd5916e2fac13 -# b41203a753254e068f7205339f47f1f8 -# a5462ee01f354b54a258df9e2e74431e -#: ../../source/training/curriculum/curriculum.rst:242 -#: ../../source/training/curriculum/curriculum.rst:473 -#: ../../source/training/curriculum/curriculum.rst:1077 -msgid "Categorise and create labels from vector data" -msgstr "Mengkategorisasi dan membuat label dari data vektor" - -# 45ec38c8c0ee4a00b987f3c84f9d406a -# 6e5f0bbbca7042169ad3559a432dfb5c -# bc00c456de244adf9cf2808a1050ba8b -#: ../../source/training/curriculum/curriculum.rst:243 -#: ../../source/training/curriculum/curriculum.rst:480 -#: ../../source/training/curriculum/curriculum.rst:1086 -msgid "Use and understand raster data" -msgstr "Menggunakan dan memahami data raster" - -# 58a09b2213ac4e66926e1ca75c094547 -# d8566a42eab4422fb070122d05a706c8 -# 7774c551cf554183b98152f3d114f44f -#: ../../source/training/curriculum/curriculum.rst:244 -#: ../../source/training/curriculum/curriculum.rst:487 -#: ../../source/training/curriculum/curriculum.rst:1095 -msgid "Create and edit new vector layers" -msgstr "Membuat dan mengedit *layer* vektor baru" - -# e3d66c4e990f4d21bd2fe9688ca96502 -# aaf27fc6b0334c84995a0e7f5c3c93ca -# 57be375d775644b988f2c12e74c99d8a -#: ../../source/training/curriculum/curriculum.rst:245 -#: ../../source/training/curriculum/curriculum.rst:494 -#: ../../source/training/curriculum/curriculum.rst:1104 -msgid "Analyse vector data to solve problems" -msgstr "Analisis data vektor untuk memecahkan masalah" - -# 829e2ebec5e849909301ae8996b00355 -# d17966f25eec4ce3b2b88e0878c649d6 -# 243a126f7a6b4eba93ebbb716a1a0e05 -#: ../../source/training/curriculum/curriculum.rst:246 -#: ../../source/training/curriculum/curriculum.rst:510 -#: ../../source/training/curriculum/curriculum.rst:1122 -msgid "Create maps with the Map Composer" -msgstr "Membuat peta dengan Map Composer" - -# f6674008504048a582e5dd547e32947f -# 6b4acba20a234deea78765c36fd316aa -#: ../../source/training/curriculum/curriculum.rst:247 -#: ../../source/training/curriculum/curriculum.rst:521 -msgid "Use |project_name|" -msgstr "Menggunakan |project_name|" - -# a5be4fa3066a4663851f4b9a506edd22 -# f84fe67bbeb949a585d0dc8c36aeceb6 -# 515856ca16a0443fabcd4666843742a7 -#: ../../source/training/curriculum/curriculum.rst:248 -#: ../../source/training/curriculum/curriculum.rst:533 -#: ../../source/training/curriculum/curriculum.rst:1149 -msgid "Understand how to get support for QGIS and |project_name| in Indonesia" -msgstr "" -"Memahami bagaimana mendapatkan bantuan untuk QGIS dan |project_name| di " -"Indonesia" - -# d38dc07882b04675b18f58f760d0950b -#: ../../source/training/curriculum/curriculum.rst:251 -msgid "**2. Intermediate Workshop**" -msgstr "**2. Lokakarya Tingkat Menengah**" - -# 6be4699a88c14b66b6e0ff2608f3276d -#: ../../source/training/curriculum/curriculum.rst:256 -msgid "**Quality Assurance in OSM mapping**" -msgstr "**Penjaminan Kualitas dalam pemetaan OSM**" - -# ce44e3a2a137402ab557670605c85a34 -#: ../../source/training/curriculum/curriculum.rst:258 -msgid "" -"Apply better digitising techniques for improving quality of collected data" -msgstr "" -"Menerapkan teknik dijitasi yang lebih baik untuk meningkatkan kualitas data " -"yang terkumpul" - -# df04feb0480844fca7ca963f621b2b19 -# eb3a531112854a859309ca7fd60dd650 -# e3a51251a4d44eb0a5711735a7c53ed1 -#: ../../source/training/curriculum/curriculum.rst:259 -#: ../../source/training/curriculum/curriculum.rst:559 -#: ../../source/training/curriculum/curriculum.rst:1179 -msgid "Use JOSM validation tools to ensure the quality of map contributions" -msgstr "" -"Menggunakan alat validasi JOSM untuk memastikan kualitas peta kontributor" - -# 9e9219e60f854d058aab3d65ce05050e -# e9b131f2c11141bd88947d494d0e1449 -# e4c04b1c562744799f8290c6150348ab -#: ../../source/training/curriculum/curriculum.rst:260 -#: ../../source/training/curriculum/curriculum.rst:569 -#: ../../source/training/curriculum/curriculum.rst:1191 -msgid "Resolve conflicts when uploading OSM data" -msgstr "Menyelesaikan konflik ketika melakukan *upload* data OSM" - -# a65985e62fa64832a1df47aa6b847553 -# e5a879f9fae34446b408ed23d0b77bfd -# e22dec55a8a94d278873f36a6415b075 -#: ../../source/training/curriculum/curriculum.rst:261 -#: ../../source/training/curriculum/curriculum.rst:575 -#: ../../source/training/curriculum/curriculum.rst:1200 -msgid "Create presets files in JOSM" -msgstr "Membuat file *presets* di JOSM" - -# 8da63a976bb843db9c48c36b13068dfc -# 60f4c98e7f104d02a44b686bde7ae216 -# 071990ca48934e908de8536558a3531a -#: ../../source/training/curriculum/curriculum.rst:262 -#: ../../source/training/curriculum/curriculum.rst:584 -#: ../../source/training/curriculum/curriculum.rst:1211 -msgid "Use private data store feature to keep private data" -msgstr "Menggunakan fitur *private data store* untuk menyimpan data pribadi" - -# e698d50a666d46ea9d1155eeda7babe5 -#: ../../source/training/curriculum/curriculum.rst:263 -msgid "Create and edit pages in OSM Wiki" -msgstr "Membuat dan mengedit halaman pada Wiki OSM" - -# ffdebfb032a84cf3af9acf80798ebf6c -#: ../../source/training/curriculum/curriculum.rst:265 -msgid "Data Analysis using QGIS and |project_name| (Intermediate)" -msgstr "Analisis Data Menggunakan QGIS dan |project_name| (Tingkat Menengah)" - -# a9ab74cdea3a4984bf0bdc7bd97d8306 -#: ../../source/training/curriculum/curriculum.rst:265 -msgid "" -"**Spatial Data Analysis using QGIS and** |project_name| **for Contingency " -"Planning**" -msgstr "" -"**Analisis Data Spasial menggunakan QGIS dan** |project_name| **untuk " -"Rencana Kontinjensi**" - -# 0004a2ab8fcd40dcaa7065d1ef1ce9f4 -#: ../../source/training/curriculum/curriculum.rst:267 -#: ../../source/training/curriculum/curriculum.rst:613 -#: ../../source/training/curriculum/curriculum.rst:1249 -msgid "Understand QGIS concepts" -msgstr "Memahami konsep QGIS" - -# 23580964352d4f66aa3f30ed321f8585 -# 27886bf7999848e1827ac4e39376de04 -# 793077f3ced24a92a00468d2e263fb66 -#: ../../source/training/curriculum/curriculum.rst:268 -#: ../../source/training/curriculum/curriculum.rst:619 -#: ../../source/training/curriculum/curriculum.rst:1257 -msgid "Prepare data and keywords for |project_name|" -msgstr "Mempersiapkan data dan *keywords* untuk |project_name|" - -# 3267ee6b46ac4420af2739a1e2964579 -# 78ca5399d5874320aaefd697ab6407ba -# 880b518484f549a882e229bad248b2c2 -#: ../../source/training/curriculum/curriculum.rst:269 -#: ../../source/training/curriculum/curriculum.rst:628 -#: ../../source/training/curriculum/curriculum.rst:1269 -msgid "Determine temporary IDP camp or evacuation locations" -msgstr "Menentukan lokasi tempat-tempat evakuasi sementara" - -# 78ace5d39192423ba1f696e0bb4bb607 -# ae35af561d3441f1ad4b0b8a8f5dccf0 -# f70f0a44f5b440698e43d750d0a073f1 -#: ../../source/training/curriculum/curriculum.rst:270 -#: ../../source/training/curriculum/curriculum.rst:640 -#: ../../source/training/curriculum/curriculum.rst:1283 -msgid "Plan evacuation routes based on hazard information" -msgstr "Merencanakan jalur evakuasi berdasarkan informasi ancaman" - -# 05d566da8eb84459bd5589aa0169a467 -#: ../../source/training/curriculum/curriculum.rst:271 -#: ../../source/training/curriculum/curriculum.rst:647 -#: ../../source/training/curriculum/curriculum.rst:1292 -msgid "Calculate damage and losses" -msgstr "Menilai kerusakan dan kerugian" - -# 4bdd65dae745404cad5ed12e474bd1de -#: ../../source/training/curriculum/curriculum.rst:274 -msgid "**3. Training of Trainers**" -msgstr "**3. Training of Trainers**" - -# 1bf896b3f28b447d8234eb6ddcef34f2 -#: ../../source/training/curriculum/curriculum.rst:279 -msgid "Advanced" -msgstr "Lanjutan" - -# 1e72f82b56b04afdb799d16f6f3f6d8c -#: ../../source/training/curriculum/curriculum.rst:279 -msgid "" -"**Teaching data collection and analysis with OSM, QGIS and** |project_name| " -"**in their respective region**" -msgstr "" -"**Mengajarkan pengumpulan dan analisis data menggunakan OSM, QGIS dan** |" -"project_name| **di daerah mereka masing-masing**" - -# 227d78d8c6d347bb8e16d64f164a63f8 -# 8b5bc0ec99bf47ad947aff7d7c1c920d -# 9ef578a5644240ccbabcf957b1ffe26a -#: ../../source/training/curriculum/curriculum.rst:281 -#: ../../source/training/curriculum/curriculum.rst:675 -#: ../../source/training/curriculum/curriculum.rst:1321 -msgid "Master how to implement adult learning" -msgstr "Menguasai cara melaksanakan pembelajaran orang dewasa" - -# 3b8d3eaae64d499c9a7c71acdd007ae7 -# a8a4b0b02a26451aa654658ca85467b9 -# d1597108688e48c6ad93055772c0d4b4 -#: ../../source/training/curriculum/curriculum.rst:282 -#: ../../source/training/curriculum/curriculum.rst:684 -#: ../../source/training/curriculum/curriculum.rst:1332 -msgid "Demonstrate basic teaching skills" -msgstr "Demonstrasi keterampilan dasar mengajar" - -# 1fb5f510125746268eefdba79a9b7ce4 -#: ../../source/training/curriculum/curriculum.rst:283 -msgid "" -"Practise data collection and analysis through OSM, QGIS and |project_name|" -msgstr "" -"Mempraktikkan pengumpulan dan analisis data menggunakan OSM, QGIS, dan |" -"project_name|" - -# 4714c47262da42a282717dc7ec6654ad -#: ../../source/training/curriculum/curriculum.rst:288 -msgid "D. Curriculum Development Process" -msgstr "D. Proses Pengembangan Kurikulum" - -# 59960ee466df4332b4fdad4a7cfa9a38 -#: ../../source/training/curriculum/curriculum.rst:290 -msgid "" -"The curriculum development process is ongoing, and involves the following " -"core components:" -msgstr "" -"Proses pengembangan kurikulum sedang berjalan, dan melibatkan beberapa " -"komponen utama berikut:" - -# 4c5210e180a34907b104eaf7584d0d20 -#: ../../source/training/curriculum/curriculum.rst:293 -msgid "" -"Identify the exact competencies that have to be learned to collect spatial " -"data using OSM and analyse it using QGIS/|project_name|. Competencies are " -"described as standard and basic." -msgstr "" -"Mengidentifikasi kompetensi yang harus dikuasai untuk mengumpulkan data " -"spasial menggunakan OSM dan melakukan analisis data menggunakan QGIS/|" -"project_name|. Kompetensi dijabarkan sebagai standar dan dasar." - -# 978a5df0f36143fc88ad2ef2f9da6490 -#: ../../source/training/curriculum/curriculum.rst:297 -msgid "" -"A standard competency, or workshop material competency, is the minimum " -"requirement of participants which encapsulates their knowledge, attitude, " -"and skill that need to be achieved." -msgstr "" -"Standar kompetensi, atau kompetensi materi lokakarya, merupakan kualifikasi " -"kemampuan minimal peserta pelatihan yang menggambarkan penguasaan " -"pengetahuan, sikap, dan keterampilan yang diharapkan dicapai pada suatu " -"materi lokakarya." - -# ea3394b211a54abd8df7cda3dcd8dea6 -#: ../../source/training/curriculum/curriculum.rst:301 -msgid "" -"A basic competency is an individual skill that needs to be mastered by the " -"participant in the workshop material as a reference for indicators." -msgstr "" -"Kompetensi Dasar adalah sejumlah kemampuan yang harus dikuasai peserta " -"pelatihan dalam materi lokakarya tertentu sebagai rujukan penyusunan " -"indikator dalam suatu materi lokakarya." - -# 2310b815a28f4fa6bd0acf092c5d445f -#: ../../source/training/curriculum/curriculum.rst:304 -msgid "Indicators are:" -msgstr "Indikatornya antara lain:" - -# 3c4020937622466789cbb9632779b08d -#: ../../source/training/curriculum/curriculum.rst:306 -msgid "" -"Behavioral characteristics (measurable evidence) that indicate that workshop " -"participants have achieved basic competency" -msgstr "" -"Karateristik perilaku (bukti terukur) yang dapat memberikan gambaran bahwa " -"peserta lokakarya telah mencapai kompetensi dasar yang diharapkan" - -# e535a11db1524b7aaa8d476ab8d0e367 -#: ../../source/training/curriculum/curriculum.rst:308 -msgid "" -"Basic competency achievement marks derived from measurable behavior such as " -"attitude, knowledge and skills" -msgstr "" -"Penanda pencapaian kompetensi dasar yang berasal dari perilaku yang dapat " -"diukur seperti sikap, pengetahuan, dan keterampilan." - -# 89e051f2f38240efb8a8e69191bfe6b0 -#: ../../source/training/curriculum/curriculum.rst:310 -msgid "" -"Developed in accordance with the characteristics of the workshop " -"participant, conditions and workshop organiser" -msgstr "" -"Dikembangkan sesuai dengan karakteristik peserta lokakarya, kondisi dan " -"pelaksana lokakarya." - -# 6b7ee46cc2b3476ba049e7a49fb9a781 -#: ../../source/training/curriculum/curriculum.rst:312 -msgid "Measurable and/or observable" -msgstr "Terukur dan/atau dapat diobservasi" - -# ff206cfefefb44b2a983293b98348b39 -#: ../../source/training/curriculum/curriculum.rst:313 -msgid "Used as a basis to develop an assessment tool" -msgstr "Digunakan sebagai dasar untuk mengembangkan alat pengukuran" - -# 905def27feaf4e71b6c8b3311fcd37f2 -#: ../../source/training/curriculum/curriculum.rst:315 -msgid "Compile all teaching and workshop materials to be used in the workshop." -msgstr "Menghimpun bahan ajar dan materi yang digunakan di dalam lokakarya." - -# 4c600538166f40fb8f95619ecd69948e -#: ../../source/training/curriculum/curriculum.rst:316 -msgid "Solicit input from participants who have attended previous workshops." -msgstr "" -"Meminta masukan dari peserta yang telah mengikuti lokakarya sebelumnya." - -# 3ec483d7add446efbca5aa491a00a3e9 -#: ../../source/training/curriculum/curriculum.rst:317 -msgid "Discuss with workshop trainers to make sure:" -msgstr "Diskusi dengan pelatih lokakarya untuk memastikan:" - -# e5689755c01e4ee48e8363b45ac4b90f -#: ../../source/training/curriculum/curriculum.rst:319 -msgid "All necessary materials are included." -msgstr "Seluruh materi yang dibutuhkan sudah termasuk." - -# a28cb7c790f141dfa6b390e1e4c9f72b -#: ../../source/training/curriculum/curriculum.rst:320 -msgid "" -"Depth of the material is in accordance with the competencies to be mastered." -msgstr "Kedalaman materi sesuai dengan kompetensi yang harus dikuasai." - -# 7fae5eb84765411f86c535bcde82b713 -#: ../../source/training/curriculum/curriculum.rst:321 -msgid "Materials are organised systematically." -msgstr "Materi disusun secara sistematis." - -# 6d718d4b743246288da5b3b5feba41bd -#: ../../source/training/curriculum/curriculum.rst:325 -msgid "E. Curriculum Scheme" -msgstr "E. Skema Kurikulum" - -# e1a71c8f85414038b425c75ce28ccc8a -#: ../../source/training/curriculum/curriculum.rst:327 -#: ../../source/training/curriculum/curriculum.rst:893 -msgid "**Data Collection Using OSM Beginner Level**" -msgstr "**Pengumpulan Data dengan Menggunakan OSM Tingkat Dasar**" - -# 4f308ed65312423aa9f7dd99f2d58eee -# 1ed6ee00aea6466a8af6b5541b7631e3 -#: ../../source/training/curriculum/curriculum.rst:329 -#: ../../source/training/curriculum/curriculum.rst:895 -msgid "**Standard Competency:** Collecting Spatial Data with OSM" -msgstr "**Kompetensi Dasar:** Mengumpulkan Data Spasial menggunakan OSM" - -# 4d6a2134ba7a4d47ba189fd893096eaa -# 5a0d5122b29747cba3c5f92c6abbe6bb -# 0f2a7e4a775e442f82ea434aa5aed251 -# 155d4ce7299b40d69e06e0427335d519 -# 8c7f53cbac374088b987f39eaa7fefb2 -# 40db65ee83894f8a82d85cdfcbf22bc5 -# 40039cddf06f4f408a374cede37ecf86 -# c703f7d48f424c3b964ab5feb7b4d2a2 -# 81481f6fa1cc4fa5bb2c4754341c0905 -# 82585cb7d9e7402b959d8bf03e7df237 -#: ../../source/training/curriculum/curriculum.rst:333 -#: ../../source/training/curriculum/curriculum.rst:428 -#: ../../source/training/curriculum/curriculum.rst:545 -#: ../../source/training/curriculum/curriculum.rst:611 -#: ../../source/training/curriculum/curriculum.rst:673 -#: ../../source/training/curriculum/curriculum.rst:899 -#: ../../source/training/curriculum/curriculum.rst:1016 -#: ../../source/training/curriculum/curriculum.rst:1161 -#: ../../source/training/curriculum/curriculum.rst:1245 -#: ../../source/training/curriculum/curriculum.rst:1317 -msgid "Basic competency" -msgstr "Kompetensi Dasar" - -# fcac8992a1f241fe83cafc9de09957fa -# 58476340efc446a4bf2af478b6731cb7 -# 1f7531e8e33743a2ba8591ca035c5c99 -# 378d628167e24ffd802743c8706d325d -# 2eebea2e5b6e41e4a7ed0a04948fd71e -# d9e577cf5c264a80b6d2b322f6588a28 -# d79285d5e3b4417e971fb2eb0283280a -# 0a99050d76d8459181e229080c9632ec -# 41144a5a214c455594818489ec4c8197 -# 45ca96593e2f48958bba295a4711f5c7 -#: ../../source/training/curriculum/curriculum.rst:333 -#: ../../source/training/curriculum/curriculum.rst:428 -#: ../../source/training/curriculum/curriculum.rst:545 -#: ../../source/training/curriculum/curriculum.rst:611 -#: ../../source/training/curriculum/curriculum.rst:673 -#: ../../source/training/curriculum/curriculum.rst:899 -#: ../../source/training/curriculum/curriculum.rst:1016 -#: ../../source/training/curriculum/curriculum.rst:1161 -#: ../../source/training/curriculum/curriculum.rst:1245 -#: ../../source/training/curriculum/curriculum.rst:1317 -msgid "Indicator" -msgstr "Indikator" - -# 3145734418b745b0aa686214510438b7 -# 7801ac80e9ab40e68a0ed4ad78c53fbc -# 599b3ac86f0242e18ffdb9c039e87047 -# 97db8358e2694d7cbd148fd1b15e5abf -# 356a04f21f844009ac6032be4b051213 -# 72eb5a3ae34b4a1b989da5f0576bbf44 -# b2e1a8d0054042a58325d1864ae5947b -# 5ce9e84c75c14c8b845a9ea8660a4be1 -# 7b68272c251e48b9ae8174137795315f -# bfdb56b5faeb40c4809a220f421beb59 -#: ../../source/training/curriculum/curriculum.rst:333 -#: ../../source/training/curriculum/curriculum.rst:428 -#: ../../source/training/curriculum/curriculum.rst:545 -#: ../../source/training/curriculum/curriculum.rst:611 -#: ../../source/training/curriculum/curriculum.rst:673 -#: ../../source/training/curriculum/curriculum.rst:899 -#: ../../source/training/curriculum/curriculum.rst:1016 -#: ../../source/training/curriculum/curriculum.rst:1161 -#: ../../source/training/curriculum/curriculum.rst:1245 -#: ../../source/training/curriculum/curriculum.rst:1317 -msgid "Core material" -msgstr "Materi Pokok" - -# 91ddd2a2b7c44b3ea8315d6187eaf617 -# a6914f6e80d64d59b334b2804d3c5cac -#: ../../source/training/curriculum/curriculum.rst:336 -#: ../../source/training/curriculum/curriculum.rst:904 -msgid "Understand the concept of OpenStreetMap" -msgstr "Memahami konsep dan pengertian *OpenStreetMap*" - -# 7b4f739d82cc45beb99156316419775f -# 087692018eab4b65a423f14e7a2e8207 -#: ../../source/training/curriculum/curriculum.rst:337 -#: ../../source/training/curriculum/curriculum.rst:905 -msgid "Understand the definition and objectives of data collection" -msgstr "Memahami definisi dan tujuan pengumpulan data" - -# ee1c87d48df6487284eed4dd8c4c7c00 -# 01cfa43e8b814f0ebaeeafa9c9d74c7c -#: ../../source/training/curriculum/curriculum.rst:338 -#: ../../source/training/curriculum/curriculum.rst:906 -msgid "Understand the composition of a map" -msgstr "Memahami komponen dalam peta" - -# 50a1ad8545474b6189d4bdf6d093f8fa -# 1eeb1ee760984932a14025481ac199c0 -#: ../../source/training/curriculum/curriculum.rst:339 -#: ../../source/training/curriculum/curriculum.rst:907 -msgid "Make a hand-drawn sketch of an area" -msgstr "Membuat sketsa peta wilayah menggunakan tangan" - -# a107ee26bfa14522973e53be4c357a6c -# f813de7b4abb4b1ab253da754eb01214 -#: ../../source/training/curriculum/curriculum.rst:335 -#: ../../source/training/curriculum/curriculum.rst:903 -msgid "**The OpenStreetMap Website**" -msgstr "**Situs OpenStreetMap**" - -# f750095634104b718c8c27e1be5bc66c -# 047cb467840e404eba5c8e3894b0ebeb -#: ../../source/training/curriculum/curriculum.rst:337 -#: ../../source/training/curriculum/curriculum.rst:905 -msgid "Concept of OpenStreetMap" -msgstr "Konsep OpenStreetMap" - -# d42c457fb8e34d1e8ce8d966c29d7c67 -# 0ed0c986aa1a49bb90accad732aa76da -#: ../../source/training/curriculum/curriculum.rst:338 -#: ../../source/training/curriculum/curriculum.rst:906 -msgid "Definition and objectives of data collection" -msgstr "Pengertian dan tujuan pengumpulan data " - -# 021cb7a32e634e69bfa4ee833a3061c2 -# 45403a7d4b784a43b9e2c79522f34add -#: ../../source/training/curriculum/curriculum.rst:339 -#: ../../source/training/curriculum/curriculum.rst:907 -msgid "Components of a map" -msgstr "Komponen dalam sebuah peta" - -# 22815c0892df44f0a943939dc096ef75 -# 1f5c174781d3438ea9e42d5427b6e168 -#: ../../source/training/curriculum/curriculum.rst:340 -#: ../../source/training/curriculum/curriculum.rst:908 -msgid "Hand-drawn sketch of an area" -msgstr "Sketsa dari sebuah wilayah yang digambar tangan" - -# 4583e0a23c204faa9cc994bdcbac946e -# 2197a7b7a52f4b589e20a1dde217ba01 -#: ../../source/training/curriculum/curriculum.rst:343 -#: ../../source/training/curriculum/curriculum.rst:913 -msgid "Visit OSM website" -msgstr "Mengunjungi situs OSM" - -# 71110957675b49c5bf080a5dbfea8584 -#: ../../source/training/curriculum/curriculum.rst:344 -msgid "Navigate map on OSM website" -msgstr "Menavigasi peta di situs OSM" - -# 62225ead60d74a92a227c94320850276 -# 07c71933eb1f4b438c019f1a44c4e2e7 -#: ../../source/training/curriculum/curriculum.rst:345 -#: ../../source/training/curriculum/curriculum.rst:915 -msgid "Save an image from OSM" -msgstr "Menyimpan gambar dari OSM" - -# d012ca09957842af8af7d27877f8a4c3 -# f62293fb2985477a88779c24cba8ed6b -#: ../../source/training/curriculum/curriculum.rst:346 -#: ../../source/training/curriculum/curriculum.rst:916 -msgid "Register an OSM account" -msgstr "Mendaftarkan akun OSM" - -# ed5d22e98bda46798ed54dca82e5dc72 -# 60bbf3849f2b4f4db9427d38bc17f30e -#: ../../source/training/curriculum/curriculum.rst:347 -#: ../../source/training/curriculum/curriculum.rst:917 -msgid "Edit the OSM map" -msgstr "Mengedit peta OSM" - -# 9c55affb43c04f29915331dfccf327bb -# 6dd12a38a73a4eb4aa60c2590241fc6d -#: ../../source/training/curriculum/curriculum.rst:348 -#: ../../source/training/curriculum/curriculum.rst:918 -msgid "Save edits" -msgstr "Menyimpan hasil editing" - -# 50632ea9183c411f93bd3ef1691f4f1b -# 022c2021192f4c21bc8a9cd011017621 -#: ../../source/training/curriculum/curriculum.rst:342 -#: ../../source/training/curriculum/curriculum.rst:912 -msgid "**Working with OSM**" -msgstr "**Pengoperasian OSM**" - -# a3051aa0a5504e0ca77bf54c67120634 -# 23691189c1d540d78d47d6de6e08bc10 -#: ../../source/training/curriculum/curriculum.rst:344 -#: ../../source/training/curriculum/curriculum.rst:914 -msgid "OSM website" -msgstr "Mengunjungi situs OSM" - -# 4687d50e0a344f778c795ce14d7ffa38 -# 2323aa85d7a44ca6b31b9b8e4b94ce9f -#: ../../source/training/curriculum/curriculum.rst:345 -#: ../../source/training/curriculum/curriculum.rst:915 -msgid "Navigating the OSM map" -msgstr "Menavigasikan peta OSM" - -# b960bf6cf38e41618fa2ba0d25971ee1 -# 307b0923ec234333a9073dac01099d99 -#: ../../source/training/curriculum/curriculum.rst:346 -#: ../../source/training/curriculum/curriculum.rst:916 -msgid "Saving images from OSM" -msgstr "Menyimpan gambar dari OSM" - -# ff4682897db3409489061172b32e0557 -# d92eb84cf5f2485ea8a754bf1608cbf7 -#: ../../source/training/curriculum/curriculum.rst:347 -#: ../../source/training/curriculum/curriculum.rst:917 -msgid "Creating an OSM account" -msgstr "Mendaftarkan akun OSM" - -# b14b7b6197434053bbc2309db2f56f33 -# 98d7594dc7e74fcfa983db71ea63195d -#: ../../source/training/curriculum/curriculum.rst:348 -#: ../../source/training/curriculum/curriculum.rst:918 -msgid "Editing the OSM map" -msgstr "Mengedit peta OSM" - -# 61b7e1ff01344cf58899ecc542a63be2 -# 2018c7d0f5304b4cb2ada285ec58bfa1 -# 13fcf9947bc346b781403f72840f2251 -# 32472045eddb4c218c142e9f6b9640a6 -#: ../../source/training/curriculum/curriculum.rst:351 -#: ../../source/training/curriculum/curriculum.rst:923 -msgid "Download JOSM" -msgstr "Melakukan download JOSM" - -# adeb2acee96648f0a3cd2b7f4b47dd2a -# f8cd13bee0c34c11a5aab486a016888e -#: ../../source/training/curriculum/curriculum.rst:352 -#: ../../source/training/curriculum/curriculum.rst:924 -msgid "Install JOSM" -msgstr "Instal JOSM" - -# dba5c23d5c9442bea82b627aa9a0198d -# 87274585ee51431b8601a5cee1c3f64b -#: ../../source/training/curriculum/curriculum.rst:353 -#: ../../source/training/curriculum/curriculum.rst:925 -msgid "Set JOSM preferences" -msgstr "Mengubah pengaturan JOSM" - -# f2f68642e5154c659c923ba264721812 -# 1cbe1b29f5f94e39899c0998b73398fc -#: ../../source/training/curriculum/curriculum.rst:354 -#: ../../source/training/curriculum/curriculum.rst:926 -msgid "Use basic tools" -msgstr "Menggunakan tools dasar" - -# 630d51345f51475ab77479c67651076e -# 820e05f656dd406b925d30bf3f06227f -#: ../../source/training/curriculum/curriculum.rst:355 -#: ../../source/training/curriculum/curriculum.rst:927 -msgid "Draw nodes and ways in JOSM" -msgstr "Menggambar nodes dan garis di JOSM" - -# f6b6235ac8f348c59587e31f1cacc589 -# 03dd00f3138a47129e7e79833fd0ab5d -# cbfbb7be6a6d4dfeba60975e39adcaac -#: ../../source/training/curriculum/curriculum.rst:356 -#: ../../source/training/curriculum/curriculum.rst:928 -msgid "Change objects" -msgstr "Mengubah Objek" - -# a57e912b4fe244afb2d211bf361bcb3c -# e37302b16ef34e16b0a70804657e381f -#: ../../source/training/curriculum/curriculum.rst:357 -#: ../../source/training/curriculum/curriculum.rst:929 -msgid "Add tags to objects using presets menu" -msgstr "Memberikan informasi terhadap objek dengan menggunakan menu presets" - -# 32f535ece9a04de38ef1f56d756c546c -# 6ae1b75035ec41a58c86cebdffdfe76b -#: ../../source/training/curriculum/curriculum.rst:350 -#: ../../source/training/curriculum/curriculum.rst:922 -msgid "**Working with JOSM**" -msgstr "**Pengoperasian JOSM**" - -# d00f98a4c5cb49d682dec67a5a0e8764 -# 96e4d73473a74238b3deff34510b64af -#: ../../source/training/curriculum/curriculum.rst:352 -#: ../../source/training/curriculum/curriculum.rst:924 -msgid "Downloading JOSM" -msgstr "Mendownload JOSM" - -# 22a9ac12271842b4b3ad384b03e36d54 -# 75a7287b94d44377b43b8367231d4aa5 -#: ../../source/training/curriculum/curriculum.rst:353 -#: ../../source/training/curriculum/curriculum.rst:925 -msgid "Installing JOSM" -msgstr "Melakukan instalasi JOSM" - -# 5d86abb8c9d4433489e8e2342160480b -# 8c04cb36ae694f78b92e0a1bb9f7ae8f -#: ../../source/training/curriculum/curriculum.rst:354 -#: ../../source/training/curriculum/curriculum.rst:926 -msgid "Setting preferences in JOSM" -msgstr "Pengaturan preferensi pada JOSM" - -# e3f53a4bbec44ab1b00a7dbd204fbc8f -# 4bc9eff2bac74ff893f913d5affcb199 -#: ../../source/training/curriculum/curriculum.rst:356 -#: ../../source/training/curriculum/curriculum.rst:928 -msgid "Bing imagery" -msgstr "Citra satelit Bing" - -# 8ed5b5ab12d948b6ac6adc8a51a6bd5d -# 6936e8a6e75245bfa55ea0123ff9eda8 -#: ../../source/training/curriculum/curriculum.rst:357 -#: ../../source/training/curriculum/curriculum.rst:929 -msgid "Presets" -msgstr "Preset" - -# 0da4853ec19645c4bf2bc64dd9c67979 -# 7f90dafc48294bf3a746adb3fe58991f -# abcb42ea402542d28d71208112919896 -# 05ea8015c88b47808385c7eedea51d20 -#: ../../source/training/curriculum/curriculum.rst:358 -#: ../../source/training/curriculum/curriculum.rst:552 -#: ../../source/training/curriculum/curriculum.rst:930 -#: ../../source/training/curriculum/curriculum.rst:1170 -msgid "Plugins" -msgstr "Plugin" - -# 84c6645c5aec42198588e2b9d7b88b7f -# f9dea62439df4a569ea13db5d489f6f3 -#: ../../source/training/curriculum/curriculum.rst:359 -#: ../../source/training/curriculum/curriculum.rst:931 -msgid "Language settings" -msgstr "Pengaturan Bahasa" - -# 6e0a3bd8108945c4b5f93ea891a64727 -# d585a19f39ff4cb187d1e000f2f2650f -#: ../../source/training/curriculum/curriculum.rst:361 -#: ../../source/training/curriculum/curriculum.rst:933 -msgid "Drawing maps using JOSM" -msgstr "Menggambar peta menggunakan JOSM" - -# 26654d9b58304988932742c805c5cadb -# 2dab82d75eac4653b0fb8801bd9ca8cd -#: ../../source/training/curriculum/curriculum.rst:363 -#: ../../source/training/curriculum/curriculum.rst:935 -msgid "Basic operation" -msgstr "Operasi dasar" - -# 0f40a52316874caa94e32e2594cfe116 -# f33e14012bb74a20a38bd7736adf13a6 -#: ../../source/training/curriculum/curriculum.rst:364 -#: ../../source/training/curriculum/curriculum.rst:936 -msgid "Nodes, ways, and shapes" -msgstr "Nodes, Garis dan Bentuk" - -# 9b5a4350b7f04e0396c07ea70cd92db5 -# d14da2fd92c24efa8627301efda9a56b -#: ../../source/training/curriculum/curriculum.rst:365 -#: ../../source/training/curriculum/curriculum.rst:937 -msgid "Changing objects" -msgstr "Mengubah objek" - -# 1081c5b91e7e486985600ebf50549f34 -# 4d576a024f5345d9aa429ce058aa6c27 -#: ../../source/training/curriculum/curriculum.rst:366 -#: ../../source/training/curriculum/curriculum.rst:938 -msgid "Adding presets" -msgstr "Menambahkan presets" - -# 211c9e8d1a194cf8b00e5a022bb371c3 -# 4e2765297b694c35acbec5fec4ae4a2d -#: ../../source/training/curriculum/curriculum.rst:369 -#: ../../source/training/curriculum/curriculum.rst:943 -msgid "Understand GPS and the types of GPS" -msgstr "Memahami GPS dan tipe-tipe GPS" - -# ed94ba8928c34ff1b28c4e1342c90b47 -# 1f7dec343c514fa2a817fc45f77849a5 -# ecd55c4bba864a029cbaa6b969315cfa -# d8de7aa91e524ae08e28a9c788cafbe1 -#: ../../source/training/curriculum/curriculum.rst:370 -#: ../../source/training/curriculum/curriculum.rst:944 -msgid "Turn on GPS" -msgstr "Dapat menyalakan GPS" - -# 52430844d61e4bc9a30c06fe5653527f -# 0d56486c17014e51b8b894d074f65b62 -#: ../../source/training/curriculum/curriculum.rst:371 -#: ../../source/training/curriculum/curriculum.rst:945 -msgid "Set up GPS" -msgstr "Pengaturan GPS" - -# 5b2b665ff7b84fcba0fe826dcc5119b0 -# 05f121d48c4846c7be74febdef064618 -#: ../../source/training/curriculum/curriculum.rst:372 -#: ../../source/training/curriculum/curriculum.rst:946 -msgid "Understand factors that affect GPS accuracy" -msgstr "Memahami faktor-faktor yang mempengaruhi akurasi GPS" - -# fb874e3f721044c9aa274226d72ef5d9 -# fc0a95b4109a4dab97637302953b6c84 -#: ../../source/training/curriculum/curriculum.rst:373 -#: ../../source/training/curriculum/curriculum.rst:947 -msgid "Understand tracks and waypoints" -msgstr "Memahami *track* dan *waypoint*" - -# 7cb97594b76042418dee4cabd0cdb156 -# 13cf194390d2486482c0a30f269cdb9c -#: ../../source/training/curriculum/curriculum.rst:374 -#: ../../source/training/curriculum/curriculum.rst:948 -msgid "Collect data using GPS" -msgstr "Mengumpulkan data menggunakan GPS" - -# 25e8bd8c9b8b4edebfb209ff296942dc -# f1d46a836b454fd8a2c615fa4de18cf2 -#: ../../source/training/curriculum/curriculum.rst:375 -#: ../../source/training/curriculum/curriculum.rst:949 -msgid "Copy GPS data (tracks and waypoints) to computer" -msgstr "*Copy* data GPS (*tracks* dan *waypoints*) ke dalam komputer" - -# 4ada26bff6dd4eecaa2172e163352bbb -# f3fa299efe794e25ab3837f8b5fa06f3 -#: ../../source/training/curriculum/curriculum.rst:376 -#: ../../source/training/curriculum/curriculum.rst:950 -msgid "Open waypoints and tracks in JOSM" -msgstr "Buka *waypoints* dan *tracks* pada JOSM" - -# 3ced463b273d4d2286b8dcd8e1465744 -#: ../../source/training/curriculum/curriculum.rst:377 -msgid "Upload GPS tracks using JOSM" -msgstr "*Upload track* GPS menggunakan JOSM" - -# c42dde4fe5cf451c83c6ba00d17f1f41 -# 0ad729ed3cee484f8e252f529d70eaa6 -#: ../../source/training/curriculum/curriculum.rst:378 -#: ../../source/training/curriculum/curriculum.rst:952 -msgid "Edit OSM based on GPS data in JOSM" -msgstr "*Edit* OSM berdasarkan data GPS pada JOSM" - -# f3625584d31348d4aa3c6c44526d56c8 -# 8313e566df384471b1c1bb14a93d1302 -#: ../../source/training/curriculum/curriculum.rst:368 -#: ../../source/training/curriculum/curriculum.rst:942 -msgid "**Using GPS**" -msgstr "**Penggunaan GPS**" - -# 75a7ee51e5c6489b814a43cf5ea92ddc -# ad659c1ee03a4780ade985d4aa636beb -#: ../../source/training/curriculum/curriculum.rst:370 -#: ../../source/training/curriculum/curriculum.rst:944 -msgid "What is GPS" -msgstr "Pengertian GPS" - -# 64988ff75fb54cfb8e400b15705ce3f7 -# 16e0b322428440299cd652bcf6f2a450 -#: ../../source/training/curriculum/curriculum.rst:371 -#: ../../source/training/curriculum/curriculum.rst:945 -msgid "Turning on GPS" -msgstr "Menyalakan GPS" - -# 7cf14611371047838a4b36cb168aec69 -# 15646caaac28481fb7fa12a37ccb3f2e -#: ../../source/training/curriculum/curriculum.rst:372 -#: ../../source/training/curriculum/curriculum.rst:946 -msgid "Navigating the GPS" -msgstr "Menavigasikan GPS" - -# f73db4c8a35d44cf8f375c9e38f155fc -# 3ee707642f1e4e869f50313299bb55bb -#: ../../source/training/curriculum/curriculum.rst:373 -#: ../../source/training/curriculum/curriculum.rst:947 -msgid "Tracks and waypoints" -msgstr "*Track* dan *waypoint*" - -# 7482c47e587844dab1e12bbb50bc9e51 -# 28c20b0b92fd4775be62230e7551d389 -#: ../../source/training/curriculum/curriculum.rst:374 -#: ../../source/training/curriculum/curriculum.rst:948 -msgid "Saving location (waypoint)" -msgstr "Menyimpan lokasi (waypoint)" - -# fbe1bef441124bffb46ddf5c231cfbcd -# 5912caac5d8249bb918bba577af489b5 -#: ../../source/training/curriculum/curriculum.rst:375 -#: ../../source/training/curriculum/curriculum.rst:949 -msgid "Turning on the Track Log" -msgstr "Menyalakan *Track Log*" - -# e3884d4186bb454c8c453051e389b7dd -# cad5d17a3fa346d688ea9d5226b76c83 -#: ../../source/training/curriculum/curriculum.rst:376 -#: ../../source/training/curriculum/curriculum.rst:950 -msgid "GPS settings" -msgstr "Pengaturan GPS" - -# 6080a924347541bfbcddc314d67873ab -# 41ac78bd149442b59a0e718742dbf91d -#: ../../source/training/curriculum/curriculum.rst:377 -#: ../../source/training/curriculum/curriculum.rst:951 -msgid "How to copy waypoints and tracks to computer" -msgstr "Bagaimana mengcopy *waypoint* dan *track* ke komputer" - -# d5a0f79711334a9eaa264a2b660696f8 -# cf63bc4c448041bab659aca0f5d78309 -#: ../../source/training/curriculum/curriculum.rst:379 -#: ../../source/training/curriculum/curriculum.rst:953 -msgid "Connecting GPS to computer" -msgstr "Menghubungkan GPS ke komputer" - -# 6c7471632a90407a95a49a12c0eea7ce -# 9ea03d58271041fa91d4354d60a21389 -#: ../../source/training/curriculum/curriculum.rst:380 -#: ../../source/training/curriculum/curriculum.rst:954 -msgid "Installing GPS driver" -msgstr "Instalasi *driver* GPS" - -# 2df92862f82a46b4b27670ea5d6bf6ad -# 3550f8aa0a9d464fbde8220dc69251cf -#: ../../source/training/curriculum/curriculum.rst:381 -#: ../../source/training/curriculum/curriculum.rst:955 -msgid "GPSBabel program setup" -msgstr "Pengaturan program GPSBabel" - -# bf4dd9abf9ad4c0eac975d52d990625b -# 52d7b5fe53c84966be68e0de318788b5 -#: ../../source/training/curriculum/curriculum.rst:382 -#: ../../source/training/curriculum/curriculum.rst:956 -msgid "GPSBabel installation" -msgstr "Instalasi GPSBabel" - -# ac7ad176b2554dc3b0034085551498a3 -# 424d1332735547ed862692199bd3f49f -#: ../../source/training/curriculum/curriculum.rst:383 -#: ../../source/training/curriculum/curriculum.rst:957 -msgid "Copying tracks and waypoints" -msgstr "Mengcopy *track* dan *waypoint*" - -# 24013d0ef4934f36a2a96f20487b3042 -# 2b1ea4d4cfa147cd940235eb9487c2f0 -#: ../../source/training/curriculum/curriculum.rst:384 -#: ../../source/training/curriculum/curriculum.rst:958 -msgid "GPS data in JOSM" -msgstr "Data GPS pada JOSM" - -# 2169fc0af8ec441c858ed55627953f7a -# b35495c7dba2411a836eea9afea16fc7 -#: ../../source/training/curriculum/curriculum.rst:386 -#: ../../source/training/curriculum/curriculum.rst:960 -msgid "Uploading GPS tracks in JOSM" -msgstr "*Upload* *track* GPS pada JOSM" - -# 7edf2d3868d64e0eacdf3655b140779a -# 6cd4a45c188144e8a9ec6ddb70f97f83 -#: ../../source/training/curriculum/curriculum.rst:387 -#: ../../source/training/curriculum/curriculum.rst:961 -msgid "Editing GPS data using JOSM" -msgstr "Mengedit data GPS menggunakan JOSM" - -# 1595149b26aa4ce4a306679fbefec77b -# 9582ed6a7d204acb84b38a1aef780fda -#: ../../source/training/curriculum/curriculum.rst:390 -#: ../../source/training/curriculum/curriculum.rst:966 -msgid "Understand how to use Field Papers" -msgstr "Memahami cara kerja Field Papers" - -# 7e684805ca6c4b38bd85b1e048089ac3 -# 85c045447ac14bbfb3b057be3e78bccd -#: ../../source/training/curriculum/curriculum.rst:391 -#: ../../source/training/curriculum/curriculum.rst:967 -msgid "Make and print Field Papers" -msgstr "Membuat dan mencetak Field Papers" - -# bc5eff07faa945a7af1cea1351eb1451 -# 94f5c916983f4649a01741301f74d832 -#: ../../source/training/curriculum/curriculum.rst:392 -#: ../../source/training/curriculum/curriculum.rst:968 -msgid "Add information to Field Papers" -msgstr "Menambahkan informasi ke Field Papers" - -# f7f7c06174274000ba756feab740a5f8 -# cdd1c093fc7943f5995e14226a8b3f72 -#: ../../source/training/curriculum/curriculum.rst:393 -#: ../../source/training/curriculum/curriculum.rst:969 -msgid "Scan and upload Field Papers to fieldpapers.org" -msgstr "Melakukan *scan* dan *upload* *Field Papers* ke situs fieldpapers.org" - -# 8e4e0ae0c7e04df18a9e31992277f221 -# 9df2b5344c6a4a5a84a1a7d400b6280e -#: ../../source/training/curriculum/curriculum.rst:394 -#: ../../source/training/curriculum/curriculum.rst:970 -msgid "Open Field Papers in JOSM" -msgstr "Membuka Field Papers ke dalam JOSM" - -# 3ba6b9ce9f154629824597199c6c3ad2 -# 177678308eee4564871e074307b262d9 -#: ../../source/training/curriculum/curriculum.rst:389 -#: ../../source/training/curriculum/curriculum.rst:965 -msgid "**Field Papers**" -msgstr "**Field Papers**" - -# 3196ecf7327f4ae0acecf179080dac39 -# d5136e77a07d4b33ae7a8305d169920f -#: ../../source/training/curriculum/curriculum.rst:391 -#: ../../source/training/curriculum/curriculum.rst:967 -msgid "What is Field Papers" -msgstr "Apa itu Field Papers" - -# 98d14fe49f8f43b1ad67623986086a1d -# e1dab9dcb083427682cb14cf58a9bfdc -#: ../../source/training/curriculum/curriculum.rst:392 -#: ../../source/training/curriculum/curriculum.rst:968 -msgid "Using Field Papers" -msgstr "Menggunakan *Field Papers*" - -# ee9ce0ccddf9478a9b3ed79dbcb5cb43 -# 1bfecda7c4cc4dec9f4ebec3df76b32d -#: ../../source/training/curriculum/curriculum.rst:393 -#: ../../source/training/curriculum/curriculum.rst:969 -msgid "Making and printing Field Papers" -msgstr "Membuat dan mencetak *Field Papers*" - -# 0a6e86edccd14b208ccdfb45607cb69f -# 666f0df5e0c74d16ad7bc71614ea8cbc -#: ../../source/training/curriculum/curriculum.rst:394 -#: ../../source/training/curriculum/curriculum.rst:970 -msgid "Mapping with Field Papers" -msgstr "Pemetaan dengan *Field Papers*" - -# 26c21e8797504e9c908b3b69550c3205 -# 17b30951e48e4bf89867b66ef987f0f6 -#: ../../source/training/curriculum/curriculum.rst:395 -#: ../../source/training/curriculum/curriculum.rst:971 -msgid "Scanning and uploading" -msgstr "Proses *scan* dan *upload*" - -# 07a2704245cd4b1eaafcab6875c1e6a8 -# e89b856718c94ffd9dc11d35151b5d59 -#: ../../source/training/curriculum/curriculum.rst:396 -#: ../../source/training/curriculum/curriculum.rst:972 -msgid "Field Papers in JOSM" -msgstr "*Field Papers* di dalam JOSM" - -# 3f830fde43364680811ccdeb5727a087 -# 84f7e0ea334941acbb776fed2651f429 -#: ../../source/training/curriculum/curriculum.rst:399 -#: ../../source/training/curriculum/curriculum.rst:978 -msgid "Download OSM data in the area you want to edit" -msgstr "Memahami cara mendownload data OSM pada area yang akan Anda edit" - -# f72ba0c913aa4370a74d608e061191c7 -# e34d95874dcd4a16b7b518a03a693d35 -#: ../../source/training/curriculum/curriculum.rst:400 -#: ../../source/training/curriculum/curriculum.rst:979 -msgid "Select layers" -msgstr "Memahami cara memilih layer" - -# ef4c45bf06fc4e6291dbfc8e11a7d6ce -# 64a965b2a7904c69a3f970cd5006aae7 -#: ../../source/training/curriculum/curriculum.rst:401 -#: ../../source/training/curriculum/curriculum.rst:980 -msgid "Edit OSM data" -msgstr "Memahami cara mengedit data OSM" - -# b364cc46078745039a65aa13a65ad2b7 -# 6f3da830863d462f8cdb8f241be6a528 -#: ../../source/training/curriculum/curriculum.rst:402 -#: ../../source/training/curriculum/curriculum.rst:981 -msgid "Edit and understand tags" -msgstr "Memahami cara mengedit dan memahami tag" - -# 3b983240c2d74cb88e2397717600935c -# a8681a839646431c886bc2ef5fb4a48e -#: ../../source/training/curriculum/curriculum.rst:403 -#: ../../source/training/curriculum/curriculum.rst:982 -msgid "Upload OSM data" -msgstr "Mengetahui cara mengupload data OSM" - -# 61419e7c54f5470ab0680d04409ed34b -# 630af23437714ff3a4c27f7a22ad8658 -# b532c1b2508740289f7c1a2823029024 -# c3e2cd79447b48838d9b17cd70498de8 -#: ../../source/training/curriculum/curriculum.rst:404 -#: ../../source/training/curriculum/curriculum.rst:983 -msgid "Save OSM files" -msgstr "Mengetahui cara menyimpan file OSM" - -# 7f42948151e84717bcb59eb65c04093f -# 5910e5af0b304566b21d8b11cee132b6 -#: ../../source/training/curriculum/curriculum.rst:398 -#: ../../source/training/curriculum/curriculum.rst:977 -msgid "**Editing OpenStreetMap with JOSM**" -msgstr "**Editing OpenStreetMap dengan JOSM**" - -# 6a2d8b2775b9443ca6ad0626a883c35f -# 8687696b57ef49979d6cc05810de524d -#: ../../source/training/curriculum/curriculum.rst:400 -#: ../../source/training/curriculum/curriculum.rst:979 -msgid "Exploring JOSM" -msgstr "Mengeksplorasi JOSM" - -# a5d06e00045f456e92dce85d6e994d36 -# 3227c4a08e0845d58236c8ce70603cef -#: ../../source/training/curriculum/curriculum.rst:401 -#: ../../source/training/curriculum/curriculum.rst:980 -msgid "JOSM layers" -msgstr "Layer-layer JOSM" - -# bcffa7ed67234959a20bc819c3be65a1 -# 0f9420447b0247faa248b056427496a9 -#: ../../source/training/curriculum/curriculum.rst:402 -#: ../../source/training/curriculum/curriculum.rst:981 -msgid "Editing OSM data" -msgstr "Mengedit Data OSM" - -# b1564c22c05b42bd84ffd04810481d19 -# d838b43c1718450f9567dceb68739cff -#: ../../source/training/curriculum/curriculum.rst:403 -#: ../../source/training/curriculum/curriculum.rst:982 -msgid "Tags" -msgstr "*Tag*" - -# a8aba1e3b6c54100bbb9015f9eb9aafd -# 38a5c3bbd2f7453c954ec8976a7c5188 -#: ../../source/training/curriculum/curriculum.rst:404 -#: ../../source/training/curriculum/curriculum.rst:983 -msgid "Uploading changes" -msgstr "Mengupload perubahan" - -# f35c11b70c2849238c2d4d9d68e7fb17 -# ea30735e9ad14ac085e25b08dd45bfea -#: ../../source/training/curriculum/curriculum.rst:405 -#: ../../source/training/curriculum/curriculum.rst:984 -msgid "Saving OSM files" -msgstr "Menyimpan *file* OSM" - -# 45d51eac93414f07a30bafecf4a6f6ee -# b0b490b93c1e488992f36fd1d82db8e1 -#: ../../source/training/curriculum/curriculum.rst:408 -#: ../../source/training/curriculum/curriculum.rst:993 -msgid "Understand the definition of imagery offset" -msgstr "Memahami pengertian pergeseran citra satelit" - -# 79067bfd0274445f8b14eb2a0a7f5d7e -# 47a7d0a2c41d41e5888987532d3f2b3d -#: ../../source/training/curriculum/curriculum.rst:409 -#: ../../source/training/curriculum/curriculum.rst:994 -msgid "Understand components of imagery (resolution and georeference)" -msgstr "Memahami komponen-komponen citra (resolusi dan georeferensi)" - -# dbe6ad310396409a99ba909d8865cd61 -# 94b9b3cf2d814afc82001f6fcbf1e437 -#: ../../source/training/curriculum/curriculum.rst:410 -#: ../../source/training/curriculum/curriculum.rst:995 -msgid "Explain how imagery offsets occur" -msgstr "Menjelaskan bagaimana pergeseran citra satelit terjadi" - -# 2db308fa161c4a599f761f04606402ab -# 2e14b8a3fa4c40c192a8d238aa84bff5 -#: ../../source/training/curriculum/curriculum.rst:411 -#: ../../source/training/curriculum/curriculum.rst:996 -msgid "Fix imagery offset" -msgstr "Memperbaiki pergeseran citra satelit" - -# 26d47a8b456b48b0a3cc649d6b53a033 -# eca792b95e7b4d95bb9222fa91410925 -#: ../../source/training/curriculum/curriculum.rst:407 -#: ../../source/training/curriculum/curriculum.rst:992 -msgid "**Imagery Offset**" -msgstr "**Pergeseran Citra Satelit**" - -# 657ac7f4f6ca41659bfcff1b0ca2889f -# 2e958e0012a849ab8a14692f726a9f25 -#: ../../source/training/curriculum/curriculum.rst:409 -#: ../../source/training/curriculum/curriculum.rst:994 -msgid "Definition of imagery offset" -msgstr "Pengertian pergeseran citra satelit" - -# 036c17d2906b49ac9dfb8ea3542221ed -# 172bc306d5834f08aad2ce7e8c2bdc2c -#: ../../source/training/curriculum/curriculum.rst:410 -#: ../../source/training/curriculum/curriculum.rst:995 -msgid "Imagery resolution and georeferencing" -msgstr "Resolusi dan georeferensi citra satelit" - -# 8fd7b01700f048f39046fb8090a23780 -# 88ce884db2054b41bc8d6c04b672b986 -#: ../../source/training/curriculum/curriculum.rst:411 -#: ../../source/training/curriculum/curriculum.rst:996 -msgid "Imagery offset" -msgstr "Pergeseran citra satelit" - -# 559c78f81fcf44aeaf033cf067539a7f -# d8477cddf36f460fb2d3f4190e3bf641 -# 794227e9a11a4860a80506f357f8c756 -# 08531199689348a6ac6d5a2268a490ff -# 042646ba63d7447ab5106f8f9fece9c2 -# 58bc799ca3f24d3c9ba4c442f8c8d622 -#: ../../source/training/curriculum/curriculum.rst:412 -#: ../../source/training/curriculum/curriculum.rst:997 -msgid "Fixing imagery offset" -msgstr "Memperbaiki pergeseran citra satelit" - -# 7398f380e5e0429a9fd5f3bb3229e210 -#: ../../source/training/curriculum/curriculum.rst:415 -msgid "Download OpenStreetMap data from Geofabrik website" -msgstr "Mendownload data OpenStreetMap dari situs Geofabrik" - -# 18b33acecbfd40468eb1cce978f9f60d -# b8746f9220e9423793b6c17624352525 -#: ../../source/training/curriculum/curriculum.rst:416 -#: ../../source/training/curriculum/curriculum.rst:1003 -msgid "Download customised OpenStreetMap data using HOT Exports" -msgstr "Mendownload data OpenStreetMap menggunakan HOT Exports" - -# d7d935574ec94638985e5c1e7348b350 -# 4b8c3160cc794e33b06684c7a6168485 -#: ../../source/training/curriculum/curriculum.rst:414 -#: ../../source/training/curriculum/curriculum.rst:1001 -msgid "**Getting OSM Data**" -msgstr "**Perolehan Data OSM**" - -# 901582467fff4732ba254c2cc4dc9b36 -# ba894bd59263471abf113dcaf2fef4c3 -#: ../../source/training/curriculum/curriculum.rst:416 -#: ../../source/training/curriculum/curriculum.rst:1003 -msgid "OpenStreetMap data from Geofabrik Website" -msgstr "Mendonwload data OpenStreetMap dari situs Geofabrik" - -# ee80532725d846d599225640f4b754fd -# 8772bd8c92fc4ecfbf6bd6f25ae9c0f8 -#: ../../source/training/curriculum/curriculum.rst:417 -#: ../../source/training/curriculum/curriculum.rst:1004 -msgid "" -"OpenStreetMap data according to region and selecting attributes with HOT " -"export tool" -msgstr "" -"Mendownload data OpenStreetMap sesuai dengan wilayah dan memilih atribut " -"menggunakan HOT Export." - -# 990237fd14964e0ba0e9eef463ad2b4d -#: ../../source/training/curriculum/curriculum.rst:422 -msgid "**Data Analysis using QGIS and** |project_name| **Beginner Level**" -msgstr "" -"**Analisis Data Menggunakan QGIS dan** |project_name| **Tingkat Dasar**" - -# 1caa683b567a44588aee4ee12d4021f3 -# dd2fa00ceef24af4bb5179ce0d95bf4f -#: ../../source/training/curriculum/curriculum.rst:424 -#: ../../source/training/curriculum/curriculum.rst:1011 -msgid "" -"**Standard Competency:** Managing Spatial Data using QGIS and Analysing " -"Disaster Impact Scenarios with |project_name|" -msgstr "" -"**Kompetensi Dasar:** Mengatur Data Spasial Menggunakan QGIS dan " -"Menganalisis Skenario Dampak Bencana Menggunakan |project_name|" - -# d25591bba0cc447bbb6d7fee88e53a42 -# 0b922d42d13b45bfb9a44023bd36d9c7 -#: ../../source/training/curriculum/curriculum.rst:431 -#: ../../source/training/curriculum/curriculum.rst:1021 -msgid "Distinguish between data and information" -msgstr "Membedakan antara data dan informasi" - -# 9c54a069f4124f62991f74a241729684 -#: ../../source/training/curriculum/curriculum.rst:432 -msgid "Understand the concept of GIS" -msgstr "Memahami konsep SIG" - -# c5952e348d694b8d99a34ea6e20d16d9 -# e1f0e7956dd843f6b41d5bd0f8c4639a -#: ../../source/training/curriculum/curriculum.rst:430 -#: ../../source/training/curriculum/curriculum.rst:1020 -msgid "**GIS for Developing Contingency Plan**" -msgstr "**SIG untuk Pengembangan Rencana Kontinjensi**" - -# e476eabe241b4cbc9e30aac8c2282c93 -# 83ca2a80f3e64622974cc0dd6a48f74f -#: ../../source/training/curriculum/curriculum.rst:432 -#: ../../source/training/curriculum/curriculum.rst:1022 -msgid "The difference between data and information" -msgstr "Perbedaan data dan informasi" - -# 30e83a8645a84ba8a2ba14af63b97593 -#: ../../source/training/curriculum/curriculum.rst:433 -msgid "Terminology of Geographic Information System (GIS)" -msgstr "Pengertian Sistem Informasi Geografis (SIG)" - -# 3515780277fd41b7a5c2af84899ef789 -# aaa702ed9d154aa295b19aa29cc405ad -#: ../../source/training/curriculum/curriculum.rst:436 -#: ../../source/training/curriculum/curriculum.rst:1028 -msgid "" -"Understand the benefit of QGIS and InaSAFE for developing realistic scenario " -"for contingency planning" -msgstr "" -"Memahami manfaat QGIS dan InaSAFE dalam mengembangkan skenario realistik " -"untuk Rencana Kontinjensi" - -# fc80145e9fcc422bab6a822619da4e46 -# bdd6857576f14c05978e5647bb6b3639 -#: ../../source/training/curriculum/curriculum.rst:437 -#: ../../source/training/curriculum/curriculum.rst:1029 -msgid "Understand the role of GIS for preparing contingency planning" -msgstr "Memahami peran SIG untuk mempersiapkan rencana kontinjensi" - -# a1f7623eb27849549016613c6eb3cdf5 -# 5fb5ecb92e154ed98ec93eb31bc31240 -#: ../../source/training/curriculum/curriculum.rst:438 -#: ../../source/training/curriculum/curriculum.rst:1030 -msgid "Understand the importance of data" -msgstr "Memahami pentingnya data" - -# cd404b27c4414132bde79b418dadb560 -# 36912ca7725f4f9a9f9eb7cdb6ead009 -#: ../../source/training/curriculum/curriculum.rst:439 -#: ../../source/training/curriculum/curriculum.rst:1031 -msgid "" -"Understand the benefits of QGIS/|project_name| in the development of " -"scenarios for contingency planning" -msgstr "" -"Memahami manfaat QGIS/|project_name| dalam pengembangan skenario untuk " -"rencana kontinjensi" - -# a6887a0a36674fd8b81b0f27b2354179 -# 027999285c694366a07631e08bf2d8f2 -#: ../../source/training/curriculum/curriculum.rst:436 -#: ../../source/training/curriculum/curriculum.rst:1028 -msgid "**QGIS and InaSAFE in Contingency Planning**" -msgstr "**QGIS dan InaSAFE dalam Rencana Kontinjensi**" - -# 157f3dfc81e145f1afb497ef5e4c6c36 -# 2831ba0611d44f869a3298192e9556e1 -#: ../../source/training/curriculum/curriculum.rst:438 -msgid "GIS for Preparing contingency Planning" -msgstr "SIG untuk Mempersiapkan Rencana Kontinjensi" - -# 6c472c8b30054ddf8a6e6da611ad4d71 -# 16fa51c220924d9fbd1c776a907542c6 -#: ../../source/training/curriculum/curriculum.rst:439 -#: ../../source/training/curriculum/curriculum.rst:1031 -msgid "The Importance of Data" -msgstr "Pentingnya Data" - -# b53e08812a3d4ca3aad7d1047752006e -#: ../../source/training/curriculum/curriculum.rst:440 -msgid "QGIS and |project_name|" -msgstr "QGIS dan |project_name|" - -# cf615fa7660b403f97309fee10882d0b -# 1bd618e8fcaf4bc4ba861d3a808b6387 -#: ../../source/training/curriculum/curriculum.rst:443 -#: ../../source/training/curriculum/curriculum.rst:1037 -msgid "Download QGIS" -msgstr "Men-*download* QGIS" - -# 6fbbdcfc09d34be1aa69afe4e8eccc59 -# f2e1d5003eae4e3ab9885a9b81212a5f -#: ../../source/training/curriculum/curriculum.rst:444 -#: ../../source/training/curriculum/curriculum.rst:1038 -msgid "Install QGIS" -msgstr "Meng-*install* QGIS" - -# 610671d7c7874c41b1307afa5214085b -# 25077a907ee74082831d39a7e85c1eec -#: ../../source/training/curriculum/curriculum.rst:445 -#: ../../source/training/curriculum/curriculum.rst:1039 -msgid "Open a previously created QGIS project" -msgstr "Membuka proyek QGIS yang telah disimpan sebelumnya" - -# 21f194bd0ee54cfda310c79011e0b391 -# 14e335fb81924a7eb0cbc7b301cb61af -#: ../../source/training/curriculum/curriculum.rst:446 -#: ../../source/training/curriculum/curriculum.rst:1040 -msgid "Understand the layers panel" -msgstr "Memahami panel *layer*" - -# e0b68f6b625b48febac6c612a2e43eca -# 183b83d0b6fa474c9272b977b12f2e3e -#: ../../source/training/curriculum/curriculum.rst:447 -#: ../../source/training/curriculum/curriculum.rst:1041 -msgid "Access basic tools through the toolbar" -msgstr "Mengakses tool dasar melalui toolbar" - -# a87e72275f324d7eb096ca549c4ccf86 -# 86f7e4993790431ca8fccc7ca2985db1 -#: ../../source/training/curriculum/curriculum.rst:448 -#: ../../source/training/curriculum/curriculum.rst:1042 -msgid "Clean up the toolbar" -msgstr "Membersihkan *toolbar*" - -# 2fa6133502a147c1a4d63bca0c9491c6 -# ee6a107f0d16473490a949b7a855a334 -#: ../../source/training/curriculum/curriculum.rst:449 -#: ../../source/training/curriculum/curriculum.rst:1043 -msgid "Show a map in the map window" -msgstr "Menampilkan peta melalui jendela peta" - -# 10766af7edc14bf7abf43c5b31aba087 -# 5c12f979341c49e1820afdc8d7b4326c -#: ../../source/training/curriculum/curriculum.rst:450 -#: ../../source/training/curriculum/curriculum.rst:1044 -msgid "Get information on an active map through the status bar" -msgstr "Mengambil informasi pada peta melalui *status bar*" - -# 7c0cee161b2544e2856329a3076db0fc -# 01b74fab8e414d08b8c92013c52db835 -#: ../../source/training/curriculum/curriculum.rst:442 -#: ../../source/training/curriculum/curriculum.rst:1036 -msgid "**The Basics of QGIS**" -msgstr "**Dasar-dasar QGIS**" - -# 2e726cb91c864e55ba8a28c8ead7425e -# 766ab9dd5aa049328fd474b085b0e3b8 -#: ../../source/training/curriculum/curriculum.rst:444 -#: ../../source/training/curriculum/curriculum.rst:1038 -msgid "Getting QGIS" -msgstr "Mendapatkan QGIS" - -# d7ed9086adf94758b083021ce8a8057b -# f3afabc08cb04aceba08622816019c4b -# 4b90915bde72411f9719592233ded20a -# 255d911b389b45808706b8c060e585c1 -#: ../../source/training/curriculum/curriculum.rst:445 -#: ../../source/training/curriculum/curriculum.rst:1039 -msgid "Installing QGIS" -msgstr "Installasi QGIS " - -# e5764df311a040029cc010dc73d684f5 -#: ../../source/training/curriculum/curriculum.rst:446 -msgid "QGIS user interface layout" -msgstr "Pengguna tampilan antarmuka Layout QGIS" - -# a0d21b46576541358434a802c9fff46b -# 7689c2e375394dbd886b41d0ecb7157d -#: ../../source/training/curriculum/curriculum.rst:447 -#: ../../source/training/curriculum/curriculum.rst:1041 -msgid "Adding vector layer" -msgstr "Menambahkan *Layer* Vektor" - -# 3d08ab2f210c453e9805f8a6fa553fcf -# 23d75468385c43b5b4afe78f723d7126 -#: ../../source/training/curriculum/curriculum.rst:448 -#: ../../source/training/curriculum/curriculum.rst:1042 -msgid "QGIS basic tool" -msgstr "Tool QGIS Dasar" - -# 4e06a6926e3d4b41993adb0608fca981 -# 77ab8f6874e94af5b10e5b81b22ff616 -#: ../../source/training/curriculum/curriculum.rst:449 -#: ../../source/training/curriculum/curriculum.rst:1043 -msgid "Panning maps" -msgstr "Menggerakkan Peta" - -# f7f7c2613756466b85ae09285bb2443d -# 7685891513f7405285df0fec840630f2 -#: ../../source/training/curriculum/curriculum.rst:453 -#: ../../source/training/curriculum/curriculum.rst:1049 -msgid "Understand the concept of plugins" -msgstr "Memahami konsep plugin" - -# 0934d990516b489ea2cef0a044a5848e -# d3360a122e49404cbc71a8f0d271004d -#: ../../source/training/curriculum/curriculum.rst:454 -#: ../../source/training/curriculum/curriculum.rst:1050 -msgid "Install QGIS plugins" -msgstr "Instalasi Plugin QGIS" - -# 607f1e36d64f4bcc9485b227bc64fd05 -# 931add4d2ad6442fa60fc601238eb566 -#: ../../source/training/curriculum/curriculum.rst:455 -#: ../../source/training/curriculum/curriculum.rst:1051 -msgid "Add satellite imagery via OpenLayers" -msgstr "Penambahan imagery dari citra satelit menggunakan OpenLayers" - -# 3aa109f13e204710a93c188b2384674f -# cff84dc7e4374155838e353fa543113e -#: ../../source/training/curriculum/curriculum.rst:452 -#: ../../source/training/curriculum/curriculum.rst:1048 -msgid "**QGIS Plugins**" -msgstr "**Plugin pada QGIS**" - -# b9316a5fb68a4e87b664d4bcd5760491 -# 55284d69b9514ba2845dc682664c0fda -#: ../../source/training/curriculum/curriculum.rst:454 -#: ../../source/training/curriculum/curriculum.rst:1050 -msgid "Plugin setup" -msgstr "Mengatur Plugin" - -# d586093452cf4952b4d422bf020c4a1f -# 3a40420eaab240b2a5c75c9dd5f12c8b -#: ../../source/training/curriculum/curriculum.rst:455 -#: ../../source/training/curriculum/curriculum.rst:1051 -msgid "Installing plugin" -msgstr "Menginstal plugin" - -# 5d8a53f4f08c4b2ea562cea63c5b00ea -# 6bd03629757c49648eb766217d37aabc -#: ../../source/training/curriculum/curriculum.rst:456 -#: ../../source/training/curriculum/curriculum.rst:1052 -msgid "OpenLayers plugin" -msgstr "Plugin OpenLayer" - -# e8983cca47a74dd8ae02e1b9eca1ff6e -# 58816c7f0cf54bbbab8ce04c86596c2b -#: ../../source/training/curriculum/curriculum.rst:460 -#: ../../source/training/curriculum/curriculum.rst:1058 -msgid "Understand Coordinate Reference Systems (CRS)" -msgstr "" -"Pemahaman Sistem Referensi Koordinat (Coordinate Reference System - CRS)" - -# 755e952ad70b40308c68e3d4c3ea2307 -# 15393c2c7ae8468ab5b4d99c818385c6 -#: ../../source/training/curriculum/curriculum.rst:461 -#: ../../source/training/curriculum/curriculum.rst:1059 -msgid "Identify the CRS of a vector dataset" -msgstr "Identifikasi CRS pada dataset vektor" - -# df23a7f726ce462999730d0b6e5f3a07 -# 85aa6ba69bed49d0a91c44b5a6726f0e -#: ../../source/training/curriculum/curriculum.rst:462 -#: ../../source/training/curriculum/curriculum.rst:1060 -msgid "Do 'on the fly' reprojection" -msgstr "Melakukan proyeksi ulang 'on the fly'" - -# b865a507938b4b86b94735b1686a4453 -# 62a5031831a24257923ebdbba4d02b41 -#: ../../source/training/curriculum/curriculum.rst:463 -#: ../../source/training/curriculum/curriculum.rst:1061 -msgid "Save dataset with a different CRS" -msgstr "Simpan dataset dalam CRS yang berbeda" - -# 1c88ce7044094fea9b6fff252137edab -# 44d8d9badb2c46abab470a7148a51f6a -#: ../../source/training/curriculum/curriculum.rst:464 -#: ../../source/training/curriculum/curriculum.rst:1062 -msgid "Create a custom projection" -msgstr "Membuat proyeksi sendiri" - -# 5edf0d43e55a49e69efd63bd931f6246 -# 5b2ca9b0c4a44d368ce376db6170e2d3 -#: ../../source/training/curriculum/curriculum.rst:459 -#: ../../source/training/curriculum/curriculum.rst:1057 -msgid "**Map Projection Basics**" -msgstr "**Dasar Proyeksi Peta**" - -# 0a26abdaac4641b5a20d35b82dde4e0f -# 4a616659e5394697bcb7995ef50a17d6 -#: ../../source/training/curriculum/curriculum.rst:461 -#: ../../source/training/curriculum/curriculum.rst:1059 -msgid "Coordinate Reference Systems (CRS)" -msgstr "Sistem Koordinat Referensi (CRS)" - -# 966f42406634430785df0bd75c1789b3 -# b873c5de85c04a16ad905f090cba2d81 -#: ../../source/training/curriculum/curriculum.rst:462 -#: ../../source/training/curriculum/curriculum.rst:1060 -msgid "“On the fly” reprojection" -msgstr "Proyeksi ulang \"On the fly\"" - -# d7bb1e11b05545f2b7936e33ab56823a -# 0508712f7327469b9746d0cb4d19af3f -#: ../../source/training/curriculum/curriculum.rst:463 -#: ../../source/training/curriculum/curriculum.rst:1061 -msgid "Dataset with different CRS" -msgstr "Dataset dengan CRS berbeda" - -# 4d9ec6dea2d742abbbd81fb3e27d3ed3 -#: ../../source/training/curriculum/curriculum.rst:464 -msgid "Defining a custom projection" -msgstr "Menentukan proyeksi sendiri" - -# 1cb135635d034e2c8b6b80f9b4e49701 -# 30cb6086c5f848bf85f9344e520626af -#: ../../source/training/curriculum/curriculum.rst:467 -#: ../../source/training/curriculum/curriculum.rst:1069 -msgid "Understand vector data" -msgstr "Memahami data vektor" - -# b47c2fde2026499b8a4557b9c9aaac6a -# ccf373c234d94d909bdf3b1702e4f3b4 -#: ../../source/training/curriculum/curriculum.rst:468 -#: ../../source/training/curriculum/curriculum.rst:1070 -msgid "Identify attributes of vector data" -msgstr "Mengidentifikasi atribut data vektor" - -# 70bab1677e2c441399646787d76448e8 -# a1180679d29740f397e16d6afa0c9675 -#: ../../source/training/curriculum/curriculum.rst:469 -#: ../../source/training/curriculum/curriculum.rst:1071 -msgid "Add vector layers" -msgstr "Menambah layer vektor" - -# 07db8257698c44a89d6ee640358c57b3 -# 682185d667c24bc69155d9402e9ac432 -#: ../../source/training/curriculum/curriculum.rst:470 -#: ../../source/training/curriculum/curriculum.rst:1072 -msgid "Symbolise vector layers" -msgstr "Simbolisasi layer vektor" - -# 9b26b088bca243da8f0911be497e248f -# 2e64029681e84e20baa699cefabd9266 -#: ../../source/training/curriculum/curriculum.rst:466 -#: ../../source/training/curriculum/curriculum.rst:1068 -msgid "**Working with Vector Data**" -msgstr "**Bekerja dengan Data Vektor**" - -# 546823747069464794aab1e5efb5182b -# 5a14f5d06e5641d3ba7e43ab6b6d5ab3 -#: ../../source/training/curriculum/curriculum.rst:468 -#: ../../source/training/curriculum/curriculum.rst:1070 -msgid "Vector data" -msgstr "Data Vektor" - -# ef92748b56bf433fbe679f1e277765ad -# c77e93908a4446c9b770a7909013accf -# 4b78f3b969374ab1804275f77a3096a0 -# 6228a37aa7ee4c96a48de6157ddecce0 -#: ../../source/training/curriculum/curriculum.rst:469 -#: ../../source/training/curriculum/curriculum.rst:1071 -msgid "Data attribute" -msgstr "Atribut Data" - -# 3d401c318eae443aad5a77701e6d672c -# 89a6557d386d474d844b2835a6acff9f -# 2fb9b69219a5411cb9de50adbe7c6a8d -# 20150bf037e145e180e3e0b33defadf5 -#: ../../source/training/curriculum/curriculum.rst:470 -#: ../../source/training/curriculum/curriculum.rst:1072 -msgid "Add vector data" -msgstr "Menambah data vektor" - -# 42583fdea8c146b0845b198664a04f98 -# 1d1b886d16ea49be826533363fea73ac -#: ../../source/training/curriculum/curriculum.rst:471 -#: ../../source/training/curriculum/curriculum.rst:1073 -msgid "Symbology" -msgstr "Simbologi" - -# 5e032da65d24457c8226585a1385fa7e -# 2262a88b3bf242399f948bfad741a764 -#: ../../source/training/curriculum/curriculum.rst:474 -#: ../../source/training/curriculum/curriculum.rst:1078 -msgid "" -"Explore attribute data of an object attributes and understand the uses of " -"different types of data" -msgstr "" -"Menelusuri data atribut dari suatu objek dan memahami penggunaan berbagai " -"tipe data yang berbeda" - -# 86a9c742e4df41818e3af48128e6b2f5 -# 814b11f08c4f427f918e55db7796c25a -#: ../../source/training/curriculum/curriculum.rst:476 -#: ../../source/training/curriculum/curriculum.rst:1080 -msgid "Add labels to vector layers" -msgstr "Menambahkan label ke *layer* vektor" - -# 8f5701a8335e4ae49baf3597548127f4 -# 5be6118cb80140279017edb35244a684 -#: ../../source/training/curriculum/curriculum.rst:477 -#: ../../source/training/curriculum/curriculum.rst:1081 -msgid "Symbolise vector data using categories" -msgstr "Melakukan simbolisasi data vektor dengan kategori" - -# d13e62b561ba43a1954ffb85d96f09e7 -# e3114d5fd08449d9a95f413769c1a95b -#: ../../source/training/curriculum/curriculum.rst:473 -#: ../../source/training/curriculum/curriculum.rst:1077 -msgid "**Labels and Classification**" -msgstr "**Label dan Klasifikasi**" - -# 36e9c6b3ddfa4e14ad81554e4068a0b8 -# dedc91630c984af8b728268e61372102 -#: ../../source/training/curriculum/curriculum.rst:475 -#: ../../source/training/curriculum/curriculum.rst:1079 -msgid "Data attributes" -msgstr "Atribut Data" - -# a2d7b14d3e6d46ffbbd146a5d051ac75 -# d1d2177de39549ebac705c662ec2825e -# 64738c089216450ca568b58f5248e21f -# 2a37d6125d074b659a2b9537f47f30fb -#: ../../source/training/curriculum/curriculum.rst:476 -#: ../../source/training/curriculum/curriculum.rst:483 -#: ../../source/training/curriculum/curriculum.rst:1080 -#: ../../source/training/curriculum/curriculum.rst:1089 -msgid "Tool label" -msgstr "Tool label" - -# b7235573d0ed4dfe9478ad4484a0ae0f -# 08baf47409dc458ab34fb9a0657307cc -# 0eea28653d2d4abda0dec6e4d337842e -# 9359558e2b8b4614966ccdea67b3f82c -#: ../../source/training/curriculum/curriculum.rst:477 -#: ../../source/training/curriculum/curriculum.rst:484 -#: ../../source/training/curriculum/curriculum.rst:1081 -#: ../../source/training/curriculum/curriculum.rst:1090 -msgid "Classification" -msgstr "Klasifikasi" - -# 17acd1b79322444b94259a0df33d2bb8 -# 6ced88ad84b343008b813208132c0eac -#: ../../source/training/curriculum/curriculum.rst:481 -#: ../../source/training/curriculum/curriculum.rst:1087 -msgid "Create raster data" -msgstr "Membuat data raster" - -# 732c8bcb809a4f2db424556fbfe02116 -# 06fe9de54e184f44b2bc945b8c328786 -#: ../../source/training/curriculum/curriculum.rst:482 -#: ../../source/training/curriculum/curriculum.rst:1088 -msgid "Change raster symbology" -msgstr "Mengubah simbologi raster" - -# bb93ef1c030c4bcebce91af7907b0d35 -# 7e966334063c4ca0a1c53a123072f8d6 -#: ../../source/training/curriculum/curriculum.rst:483 -#: ../../source/training/curriculum/curriculum.rst:1089 -msgid "Perform terrain analysis" -msgstr "Melakukan analisis medan" - -# 5624c5542df946d88b8053e8dd72d9c7 -# 0f1e9acac03e4636b6a7466bf05707d2 -#: ../../source/training/curriculum/curriculum.rst:480 -#: ../../source/training/curriculum/curriculum.rst:1086 -msgid "**Working with Raster Data**" -msgstr "**Bekerja dengan Data Raster**" - -# 5c206540e16c4810b4b6c22bce5588f9 -# 5f75a431949d4cdfac28bd35810733d4 -#: ../../source/training/curriculum/curriculum.rst:482 -#: ../../source/training/curriculum/curriculum.rst:1088 -msgid "How to load raster data" -msgstr "Bagaimana untuk memuat data raster" - -# 385bd5ff639e48efa81eb912b6fb2bb5 -# 023b08617c704e2fbc4f727c5e36dc3a -#: ../../source/training/curriculum/curriculum.rst:488 -#: ../../source/training/curriculum/curriculum.rst:1096 -msgid "Add a raster layer for digitising" -msgstr "Menambah layer raster untuk dijitasi " - -# 469dd341dd7b4781beae7d7316f4166a -# e0efa1f2f6cc4a42b264cbee482bed96 -#: ../../source/training/curriculum/curriculum.rst:489 -#: ../../source/training/curriculum/curriculum.rst:1097 -msgid "Create new vector features (polygon, lines and points)" -msgstr "Membuat fitur vektor baru (poligon, garis, dan titik)" - -# a8ca673bc850449da0785c7442a89c4c -# 138b97f9eadd40d1b7c0ebb7d10d5682 -#: ../../source/training/curriculum/curriculum.rst:490 -#: ../../source/training/curriculum/curriculum.rst:1098 -msgid "" -"Digitise new vector layers by tracing a raster layer, considering topology" -msgstr "" -"Digitalisasi layer vektor baru dengan mengacu pada layer raster dan " -"mempertimbangkan topologi" - -# e0f3c8b4e522455f9b624c29c67a5053 -# 7560c3d07af047a2860d4532b4554363 -#: ../../source/training/curriculum/curriculum.rst:492 -#: ../../source/training/curriculum/curriculum.rst:1100 -msgid "Georeference an image" -msgstr "Melakukan Georeferensi" - -# 4c124ca2238341bab206595226c4b667 -# e3ecb0c799cc4f1ca223223f30092b58 -#: ../../source/training/curriculum/curriculum.rst:487 -#: ../../source/training/curriculum/curriculum.rst:1095 -msgid "**Creating Vector Layers**" -msgstr "**Membuat Layer Vektor**" - -# 7bfd519a4f4348f7b7511348c6688987 -# f943cffd18e34f94b76cdb717c457306 -#: ../../source/training/curriculum/curriculum.rst:489 -#: ../../source/training/curriculum/curriculum.rst:1097 -msgid "Adding raster layer" -msgstr "Penambahan layer raster" - -# 139f5d7c81334fab8f050809b8d747ca -# 92c1c28a6b564ac8a956da27990390fb -#: ../../source/training/curriculum/curriculum.rst:490 -#: ../../source/training/curriculum/curriculum.rst:1098 -msgid "Creating new vector feature" -msgstr "Pembuatan fitur vektor baru" - -# 9d68243d885e4be2a355a745878e2649 -# 552743c1f495440d8b4403ded9be37e2 -#: ../../source/training/curriculum/curriculum.rst:491 -#: ../../source/training/curriculum/curriculum.rst:1099 -msgid "Digitising new vector layer" -msgstr "Digitasi layer vektor baru" - -# 7bbb8d9f8d9b4972812b626de417d4ae -# 7d29065e01324a7db0d411005ced1319 -#: ../../source/training/curriculum/curriculum.rst:492 -#: ../../source/training/curriculum/curriculum.rst:1100 -msgid "Georeference" -msgstr "Georeferensi" - -# 4aa069df6944444c81310d47a97dd9b6 -# ccfb39901dce4f528d6d6c90c0ed1156 -#: ../../source/training/curriculum/curriculum.rst:495 -#: ../../source/training/curriculum/curriculum.rst:1105 -msgid "Understand the GIS process" -msgstr "Memahami proses SIG" - -# 8ee837dacf9b4565949eb93e4d603e5c -# ebd9838933a5413db38e8096b65ef575 -#: ../../source/training/curriculum/curriculum.rst:496 -#: ../../source/training/curriculum/curriculum.rst:1106 -msgid "Identify addressable problems" -msgstr "Mengidentifikasi permasalahan" - -# ccbc74b197a34aa3bff53e57bcca1774 -# b568e4f981b7400cb6555fff2ebb55b5 -#: ../../source/training/curriculum/curriculum.rst:497 -#: ../../source/training/curriculum/curriculum.rst:1107 -msgid "Understand data needs" -msgstr "Memahami kebutuhan data" - -# bd5c3a1ab90247a7a4a7cc15111d20c1 -# fdf4efeb239a44cda76d66f046f33253 -#: ../../source/training/curriculum/curriculum.rst:498 -#: ../../source/training/curriculum/curriculum.rst:1108 -msgid "Start a QGIS project" -msgstr "Memulai sebuah proyek QGIS baru" - -# 6b683f71427a416ab61c326c9591a67f -# f737a4fba70842c582f696c3af41799e -#: ../../source/training/curriculum/curriculum.rst:499 -#: ../../source/training/curriculum/curriculum.rst:1109 -msgid "Analyse problems" -msgstr "Menganalisis masalah" - -# abe349830df74777bd14e7d9e5fa65c0 -# 139f506131a843718003dd046f1f4903 -#: ../../source/training/curriculum/curriculum.rst:500 -#: ../../source/training/curriculum/curriculum.rst:1110 -msgid "Identify hazard zones" -msgstr "Mengidentifikasi zona ancaman" - -# 99f9ffebd52642168b93c73197d0e45a -# c16f561b0b4d42de9c62af31a96f6f30 -#: ../../source/training/curriculum/curriculum.rst:501 -#: ../../source/training/curriculum/curriculum.rst:1111 -msgid "Look for important roads" -msgstr "Mencari jalan penting" - -# 1ae0e322e8764fda940f6bd3f44eba9d -# a64fa4a18d9e4d8e90cf4b5177798eb6 -#: ../../source/training/curriculum/curriculum.rst:502 -#: ../../source/training/curriculum/curriculum.rst:1112 -msgid "Look for medical facilities" -msgstr "Mencari fasilitas kesehatan" - -# 3da580a68d274bd4a96854b8ec846d85 -# 9e11cfbaf1ab4b4b9125ffbdc2b1b122 -#: ../../source/training/curriculum/curriculum.rst:503 -#: ../../source/training/curriculum/curriculum.rst:1113 -msgid "Buffer roads" -msgstr "Melakukan *buffer* jalan" - -# bd3385f686264085b7d8cbecacb27a75 -# 81d23b079dbc473ea8344a6db7383c72 -#: ../../source/training/curriculum/curriculum.rst:504 -#: ../../source/training/curriculum/curriculum.rst:1114 -msgid "Buffer medical facilities" -msgstr "Melakukan *buffer* fasilitas kesehatan" - -# 18f9429dab7e4b6fbce4c700d297069a -# b879115a73084d28b4fc0f85f0b9ef21 -#: ../../source/training/curriculum/curriculum.rst:505 -#: ../../source/training/curriculum/curriculum.rst:1115 -msgid "Analyse overlapped areas" -msgstr "Menganalisis wilayah yang overlap" - -# d107ab0a55964266969c004559ae41ca -# 0ba14e7e0f544204b87d918d56c4b338 -#: ../../source/training/curriculum/curriculum.rst:506 -#: ../../source/training/curriculum/curriculum.rst:1116 -msgid "Choose features by landuse type" -msgstr "Pilih fitur menurut jenis penggunaan lahan" - -# b07610abae4442acb15f2ce7c229d8d7 -# 60f78804f5ac42819105076afafce946 -#: ../../source/training/curriculum/curriculum.rst:494 -#: ../../source/training/curriculum/curriculum.rst:1104 -msgid "**Vector Analysis for Problem Solving**" -msgstr "**Analisis Vektor untuk Pemecahan Masalah**" - -# 183736b97d484c48adbbf8b3b7db9716 -# 7f966219f3e24c56988a8029aee103c2 -#: ../../source/training/curriculum/curriculum.rst:496 -#: ../../source/training/curriculum/curriculum.rst:1106 -msgid "GIS Processes" -msgstr "Proses SIG" - -# 87c97fc1deee4b9c901fc741bbc78cac -# df44e5eab46348fe9a87570d01db71a4 -#: ../../source/training/curriculum/curriculum.rst:497 -#: ../../source/training/curriculum/curriculum.rst:1107 -msgid "Problems" -msgstr "Permasalahan" - -# 08899f64a9494fad89b29efae8370a92 -# e995a859f4dc4481b274d3241dd3849f -#: ../../source/training/curriculum/curriculum.rst:498 -#: ../../source/training/curriculum/curriculum.rst:1108 -msgid "Data" -msgstr "Data" - -# 16e61b136ab44c649376f2b515f30d11 -# 79e7bf27953440aeac6243a856c6971f -# 742a448e498c4fd9bdf445e3cc274743 -# 5b88ce20becf44f08d9ed738e140f5a9 -#: ../../source/training/curriculum/curriculum.rst:499 -#: ../../source/training/curriculum/curriculum.rst:1109 -msgid "Starting a project" -msgstr "Memulai Proyek" - -# 2e2b1e9a6b1d4bac9702e82ef0472e66 -# 607ef769726740098e521ab3a35ef3e9 -#: ../../source/training/curriculum/curriculum.rst:500 -#: ../../source/training/curriculum/curriculum.rst:1110 -msgid "Analysing problems: farms and moors" -msgstr "Analisis Masalah : Kebun dan Tegalan" - -# 152f420731fd4dbfb5bd885d232e7aca -# b0de35d2740c4a8cbf88dc96ac3c1c77 -#: ../../source/training/curriculum/curriculum.rst:501 -#: ../../source/training/curriculum/curriculum.rst:1111 -msgid "Hazard zone" -msgstr "Zona Ancaman" - -# 09c0b097c7e2476e9f9ab9b36e43a63c -# 6dc0ba46d7294681af4905920402b1f7 -#: ../../source/training/curriculum/curriculum.rst:502 -#: ../../source/training/curriculum/curriculum.rst:1112 -msgid "Searching for important roads" -msgstr "Mencari Jalan Penting" - -# 677de4dffa9145b0974124c948fa26a1 -# 08c15f7d9622478fb7802c29d691a3f7 -#: ../../source/training/curriculum/curriculum.rst:503 -#: ../../source/training/curriculum/curriculum.rst:1113 -msgid "Searching for health facilities" -msgstr "Mencari Fasilitas Kesehatan" - -# 05a016a99ed74665886fd20d7ae96e94 -# 322be8d03ebd471a9f9cce4b54d32409 -#: ../../source/training/curriculum/curriculum.rst:504 -#: ../../source/training/curriculum/curriculum.rst:1114 -msgid "Road Buffer" -msgstr "Buffer Jalan" - -# 78335f1c7fce4c10b3871b74ba1d0ae4 -# 4baa7e31eab94544830405b0f9a00f7f -#: ../../source/training/curriculum/curriculum.rst:505 -#: ../../source/training/curriculum/curriculum.rst:1115 -msgid "Health Facilities Buffer" -msgstr "Buffer Fasilitas Kesehatan" - -# 1b7f8050ea5249a6b6753e771d8965d6 -# f6e4114c5c5e47a79c3a2e7d5a4c08d5 -#: ../../source/training/curriculum/curriculum.rst:506 -#: ../../source/training/curriculum/curriculum.rst:1116 -msgid "Overlapped area" -msgstr "Area yang tumpah tindih" - -# 84d2cb3a27fe4eff9b2577dba7b4e274 -# 43f5cd2e68ab48e8b0760189ab63105c -#: ../../source/training/curriculum/curriculum.rst:507 -#: ../../source/training/curriculum/curriculum.rst:1117 -msgid "Choosing farms and moors" -msgstr "Memilih Kebun dan Tegalan" - -# c6cff3a16c3d4ef0a7a75908dc5d524e -# 3bb9f7e448f7495bbe84589e0c7b4eeb -#: ../../source/training/curriculum/curriculum.rst:508 -#: ../../source/training/curriculum/curriculum.rst:1118 -msgid "Choosing land area with right size" -msgstr "Memilih Area Lahan dengan Ukuran Tepat" - -# 2de46997d08d4d65b245a7016ad0f9d6 -# 3f32e5a392bc467bbd05f028e5ff16d7 -#: ../../source/training/curriculum/curriculum.rst:511 -#: ../../source/training/curriculum/curriculum.rst:1123 -msgid "Arrange map layout" -msgstr "Merancang layout peta " - -# 8fe2336c65794c6fb60baf2893476452 -# 1dcaddecc7c844ab93613d1f22a43a9f -#: ../../source/training/curriculum/curriculum.rst:512 -#: ../../source/training/curriculum/curriculum.rst:1124 -msgid "Add a new map" -msgstr "Menambahkan sebuah peta baru" - -# 16b7d171da274f1e976baee95313006e -# 51c48d50638540488a8d727951a98afc -#: ../../source/training/curriculum/curriculum.rst:513 -#: ../../source/training/curriculum/curriculum.rst:1125 -msgid "Add title to a map" -msgstr "Menambahkan judul pada sebuah peta " - -# e13c4574c6644d65a5fb76067be0c427 -# 221ef3260b324857bd2f14ecac6cd63b -#: ../../source/training/curriculum/curriculum.rst:514 -#: ../../source/training/curriculum/curriculum.rst:1126 -msgid "Add graphic and numeric scales" -msgstr "Menambahkan skala grafik dan numerik " - -# 40bfb370995d4deaa36983bc1cd46e6d -# 9ebfdd1a3bbe48768e2c06d1aa2cc4b2 -#: ../../source/training/curriculum/curriculum.rst:515 -#: ../../source/training/curriculum/curriculum.rst:1127 -msgid "Add grid to a map" -msgstr "Menambahkan grid pada sebuah peta " - -# e8efa8572f604002892cc672e4ebe4e9 -# ea995947b44a4d67af3280efedc1ac96 -#: ../../source/training/curriculum/curriculum.rst:516 -#: ../../source/training/curriculum/curriculum.rst:1128 -msgid "Add an inset" -msgstr "Menambahkan sebuah inset" - -# 6d185d017dfd4a2a954a7c8d8518ff06 -# bc8e744d21f74f458d1d0a9285a58cd2 -#: ../../source/training/curriculum/curriculum.rst:517 -#: ../../source/training/curriculum/curriculum.rst:1129 -msgid "Customise the content of the legend" -msgstr "Menyesuaikan isi legenda" - -# 2bc171b65ef749a096c9e17f70f2035a -# c63c727c4ce94805b60eebfb88de13c0 -#: ../../source/training/curriculum/curriculum.rst:518 -#: ../../source/training/curriculum/curriculum.rst:1130 -msgid "Export a map to different formats (pdf, jpeg, svg)" -msgstr "" -"Meng-eksport sebuah peta ke dalam format yang berbeda (pdf, jpeg, jpeg, svg)" - -# 01ed3d259f774d1f9bf36862881eebb6 -# 5eb64724505b4c82b3fc0f7de64a9d71 -#: ../../source/training/curriculum/curriculum.rst:510 -#: ../../source/training/curriculum/curriculum.rst:1122 -msgid "**Using Map Composer**" -msgstr "**Menggunakan Map Composer**" - -# f2fa510d141442439b974c8a9cabb97f -# c6171a045b92482fa4fce88a2703d8e1 -#: ../../source/training/curriculum/curriculum.rst:512 -#: ../../source/training/curriculum/curriculum.rst:1124 -msgid "Map Composer" -msgstr "Membuat Peta" - -# 7749feace0484821b1a9c0887ed56ad9 -# bc9911fdd5144405a02dd55ff736176d -#: ../../source/training/curriculum/curriculum.rst:513 -#: ../../source/training/curriculum/curriculum.rst:1125 -msgid "Adding new maps" -msgstr "Menambahkan peta baru" - -# a48d77c9ffe247fdbc58a070e6f1c461 -# 33a3a1b6d3664d1ba75c05fe99853cb7 -#: ../../source/training/curriculum/curriculum.rst:514 -#: ../../source/training/curriculum/curriculum.rst:1126 -msgid "Adding a title to the map" -msgstr "Menambahkan judul peta" - -# 181ec98cdfc6474d82f7fc2faa953901 -# 04dbc8fb95d342108b58f37ed658c4f0 -#: ../../source/training/curriculum/curriculum.rst:515 -#: ../../source/training/curriculum/curriculum.rst:1127 -msgid "Adding scale" -msgstr "Menambahkan Skala" - -# 681e30d53e5d4dc1847372a3fd641c55 -# 8defa954f7e64d5ea5e36704bb419ecb -#: ../../source/training/curriculum/curriculum.rst:516 -#: ../../source/training/curriculum/curriculum.rst:1128 -msgid "Adding grids" -msgstr "Menambahkan Grid" - -# d92131f0ed7441b6b4f6a6a3d21e045b -# b818e727dbe74cf9b29566f5c99b99ea -# 9a25a82615a0439fb27bda2c767846e5 -# 28a78ab768a04d3dbebf439e7d5c9e86 -#: ../../source/training/curriculum/curriculum.rst:517 -#: ../../source/training/curriculum/curriculum.rst:1129 -msgid "Adding inset" -msgstr "Menambahkan inset" - -# 2410ad61e6604eaa972c71f454a87b97 -# ef3373a8d2b5463998026c3d84e63e95 -#: ../../source/training/curriculum/curriculum.rst:518 -#: ../../source/training/curriculum/curriculum.rst:1130 -msgid "Adding legend" -msgstr "Menambahkan Legenda" - -# a226b3fb010e4ff4b1eff60de1fba944 -# 8325abdd73ef445691cb2bb503feea13 -#: ../../source/training/curriculum/curriculum.rst:519 -#: ../../source/training/curriculum/curriculum.rst:1131 -msgid "Printing the map" -msgstr "Mencetak Peta" - -# 4aa6da87d2c54f35a25e3c6f7a2cd78d -#: ../../source/training/curriculum/curriculum.rst:522 -msgid "Understand the concept of hazard, exposure and impact data" -msgstr "Menjelaskan konsep dari Ancaman, Keterpaparan, dan Data Dampak Bencana" - -# 613bf211cecb4e249bf93d30b12c74ee -# 375e3bb51f0f4287b3a293fc5b5495ff -#: ../../source/training/curriculum/curriculum.rst:523 -#: ../../source/training/curriculum/curriculum.rst:1137 -msgid "Understand how to determine impact" -msgstr "Memahami bagaimana cara menentukan dampak bencana" - -# 11b75354eec04aa197edc9abcfdc0f09 -# 2604ec0096024b4cb248f110ec4013f5 -#: ../../source/training/curriculum/curriculum.rst:524 -#: ../../source/training/curriculum/curriculum.rst:1138 -msgid "Understand the |project_name| interface" -msgstr "Memahami tampilan antarmuka |project_name|" - -# e961d61089b041cb90c2b2f901b92d85 -# aef9b549b0a842c592c44b027dda1f2c -#: ../../source/training/curriculum/curriculum.rst:525 -#: ../../source/training/curriculum/curriculum.rst:1139 -msgid "Add hazard data" -msgstr "Menambahkan data ancaman" - -# 493af21b3c0a4d72985588c330a611db -# 5f0af60021c748e1a44605fd5932b488 -#: ../../source/training/curriculum/curriculum.rst:526 -#: ../../source/training/curriculum/curriculum.rst:1140 -msgid "Add unprocessed exposure data (vector and raster)" -msgstr "Menambahkan data keterpaparan (vektor dan raster) yang belum diproses" - -# c0aa1823572a451abab08efc2e784d97 -# de829272c9584bdcbbbd95d95854273a -#: ../../source/training/curriculum/curriculum.rst:527 -#: ../../source/training/curriculum/curriculum.rst:1141 -msgid "Use the keywords editor" -msgstr "Menggunakan editor kata kunci" - -# 11095a7267a34837a21358776d892425 -# 0dd0b264fbdb43b289c5c324fa72f3a2 -#: ../../source/training/curriculum/curriculum.rst:528 -#: ../../source/training/curriculum/curriculum.rst:1142 -msgid "Analyse impact" -msgstr "Menganalisis Dampak" - -# 5ea89f839de944ce8319aacb5c0c2c86 -# d1941c06fc044abab1c62774719e4055 -#: ../../source/training/curriculum/curriculum.rst:529 -#: ../../source/training/curriculum/curriculum.rst:1143 -msgid "Improve |project_name| output map" -msgstr "Memperbaiki output peta |project_name| " - -# 334a35b3f22044d482866e9a2c06c5d0 -# 739e995259e94fc2823e3412f4de2df2 -#: ../../source/training/curriculum/curriculum.rst:530 -#: ../../source/training/curriculum/curriculum.rst:1144 -msgid "Save and print scenario results" -msgstr "Menyimpan dan mencetak hasil skenario" - -# bc5c6b2566b84af6bfc5951b51782963 -# 124033ac80fd482db694833fa94e0e11 -#: ../../source/training/curriculum/curriculum.rst:521 -#: ../../source/training/curriculum/curriculum.rst:1135 -msgid "**Understanding InaSAFE**" -msgstr "**Memahami InaSAFE**" - -# c1a961c269d84e7194f10f8c841429f8 -# a864796154da4de5b7fbf2d61192d0ef -#: ../../source/training/curriculum/curriculum.rst:523 -#: ../../source/training/curriculum/curriculum.rst:1137 -msgid "Hazard, Exposure, Impact" -msgstr "Ancaman, Paparan, Dampak" - -# 95340e1b319b4db8aa9f9d94453cd7b9 -#: ../../source/training/curriculum/curriculum.rst:524 -msgid "|project_name| interface" -msgstr "Tampilan antarmuka |project_name|" - -# 8df4d136a93a4a02aff7e30138475859 -# d3e5fdd0b6034e2ea1cd72fa2e39dbd2 -# fdd0985fc2ba42d09bb3dffb30e50595 -# d942a7eefcf24e178d1bfce0ae616742 -#: ../../source/training/curriculum/curriculum.rst:525 -#: ../../source/training/curriculum/curriculum.rst:1139 -msgid "Adding hazard data" -msgstr "Menambahkan data ancaman" - -# 3069efbb16394dd18d45673cead2399d -# c481671afaf64dacbfda2ec427987372 -#: ../../source/training/curriculum/curriculum.rst:526 -#: ../../source/training/curriculum/curriculum.rst:1140 -msgid "Adding exposure data" -msgstr "Menambahkan data keterpaparan" - -# 7d4da674e85447a19649fe8b8b0a98ad -# e6d987daf89a42019b92f1ad812720dc -#: ../../source/training/curriculum/curriculum.rst:527 -#: ../../source/training/curriculum/curriculum.rst:1141 -msgid "Adding keyword in metadata" -msgstr "Menambahkan kata kunci di metadata" - -# 3912894d792a4d3899dceb898f69e57b -# b5979a19efc346649e35993f3ee07f6b -#: ../../source/training/curriculum/curriculum.rst:528 -#: ../../source/training/curriculum/curriculum.rst:1142 -msgid "Impact analysis" -msgstr "Analisis Dampak" - -# 362c06d0eb2e4e9995d222cf63a6927b -#: ../../source/training/curriculum/curriculum.rst:529 -msgid "Improving |project_name| maps output" -msgstr "Memperbaiki Output Peta |project_name|" - -# 43d5b2d8f1a1463c9bf3bff6f871e8b6 -# 4f8d05df19f94180ae375fb07da76f1f -#: ../../source/training/curriculum/curriculum.rst:530 -#: ../../source/training/curriculum/curriculum.rst:1144 -msgid "Using print button" -msgstr "Menggunakan tombol cetak" - -# 6972eded8aad4b1887601f3e45fef2e3 -# 93a78d5dbee04b4c97c301d966e71fee -#: ../../source/training/curriculum/curriculum.rst:531 -#: ../../source/training/curriculum/curriculum.rst:1145 -msgid "Saving your work" -msgstr "Menyimpan pekerjaan anda" - -# 0f7da12ce2b140a99ee71f94faedf7b1 -# e0b311fa2b3a4438a9690b86bd2a1847 -#: ../../source/training/curriculum/curriculum.rst:534 -#: ../../source/training/curriculum/curriculum.rst:1150 -msgid "Use social media to connect with |project_name| community" -msgstr "" -"Menggunakan media sosial untuk berhubungan dengan komunitas |project_name|" - -# 4b843496972b4d0d88f6cef17e86d226 -# c463182e1fb14e4d9c56cb92273c57fe -#: ../../source/training/curriculum/curriculum.rst:535 -#: ../../source/training/curriculum/curriculum.rst:1151 -msgid "Access QGIS tutorial website" -msgstr "Mengakses situs panduan QGIS" - -# 39e6f9d0812e422f82b01462e40636dd -# 387730bece614b449455f255fc63cee3 -#: ../../source/training/curriculum/curriculum.rst:533 -#: ../../source/training/curriculum/curriculum.rst:1149 -msgid "**Getting Support**" -msgstr "**Mendapatkan Dukungan**" - -# cc128e2148f64e3da134c844094c837d -# 48a82a7986ef48178f05aa7b5b0366a9 -#: ../../source/training/curriculum/curriculum.rst:535 -#: ../../source/training/curriculum/curriculum.rst:1151 -msgid "Facebook" -msgstr "Facebook" - -# bc0dfd757f5844cdbeedbf3ca9b042aa -# 4ec37befd2e545e3978d7ce595fa93c2 -#: ../../source/training/curriculum/curriculum.rst:536 -#: ../../source/training/curriculum/curriculum.rst:1152 -msgid "QGIS tutorials" -msgstr "Tutorial QGIS" - -# ca1ce8978ed748cb81f29f18e77b3152 -#: ../../source/training/curriculum/curriculum.rst:539 -msgid "**Data Collection Using OSM Intermediate Level**" -msgstr "**Pengumpulan Data dengan menggunakan OSM Tingkat Menengah**" - -# cd275969251b477b9912b6fe214a208d -# 5fd83ba316cb4ceca2dbd1df3f638116 -#: ../../source/training/curriculum/curriculum.rst:541 -#: ../../source/training/curriculum/curriculum.rst:1157 -msgid "**Standard Competency:** Quality Assurance in OSM mapping" -msgstr "**Kompetensi Dasar:** Penjaminan kualitas dalam pemetaan OSM" - -# cd8066fe9be443c1a0ecdc7bb3c2b60b -# 14c10bae62d64c3ab305bf4e9e0e57ea -#: ../../source/training/curriculum/curriculum.rst:547 -#: ../../source/training/curriculum/curriculum.rst:1165 -msgid "" -"Apply better digitising technique for improving quality of collected data." -msgstr "" -"Menerapkan teknik digitasi yang lebih baik untuk meningkatkan kualitas data " -"yang dikumpulkan." - -# d05f18fe7fac44b6930b24248e6e312c -# 740e0c96986b4fbfb4b7401ffecd83fd -#: ../../source/training/curriculum/curriculum.rst:548 -#: ../../source/training/curriculum/curriculum.rst:1166 -msgid "Use advanced editing tools in JOSM" -msgstr "Menggunakan alat edit di JOSM" - -# 795a4d9e358f44df973a2ee772c00a68 -#: ../../source/training/curriculum/curriculum.rst:549 -msgid "Make relations among objects" -msgstr "Membuat relasi antar objek" - -# 5246c9f110074fcd972b834faee1ba7d -# 10c282e6470a4c098bdb3234d258c5c4 -#: ../../source/training/curriculum/curriculum.rst:547 -#: ../../source/training/curriculum/curriculum.rst:1165 -msgid "**Advanced Editing**" -msgstr "**Teknik Editing Lebih Lanjut**" - -# b21fc4e56c474f69a2faae9ce0515e52 -# f186b143bc054a628850b9f166b3659c -#: ../../source/training/curriculum/curriculum.rst:549 -#: ../../source/training/curriculum/curriculum.rst:1167 -msgid "Advanced editing tools" -msgstr "*Tool* mengedit tingkat lanjut" - -# 1d9b60c6bfff4e48adefed064c1e82b3 -# 16b05d33447e401d96e66dade1b4ff5f -#: ../../source/training/curriculum/curriculum.rst:551 -#: ../../source/training/curriculum/curriculum.rst:1169 -msgid "Default drawing tools" -msgstr "*Tool* standar untuk menggambar " - -# 09b3327038f7494a93c024490a05d863 -# 86a3f36310ce40098aea56df7360da26 -#: ../../source/training/curriculum/curriculum.rst:554 -#: ../../source/training/curriculum/curriculum.rst:1172 -msgid "Relations" -msgstr "Relasi" - -# 11e597fe745c4707a4d501f1c137d636 -# f6a7e88c4bf6468e81808f8dd9348e1b -#: ../../source/training/curriculum/curriculum.rst:556 -#: ../../source/training/curriculum/curriculum.rst:1174 -msgid "Editing relations" -msgstr "Mengedit relasi" - -# f88ea6fe23494dd9bcfb99a6d72d956b -# 524f7f15dbbb4dfe8f7b214a648baef8 -#: ../../source/training/curriculum/curriculum.rst:557 -#: ../../source/training/curriculum/curriculum.rst:1175 -msgid "Multipolygons and linestrings" -msgstr "*Multipolygons* dan *linestrings*" - -# 08e69597ef9c4663a8a3d2b1b64f9b61 -# 10748a28d2804956ab8193399a9ee62e -#: ../../source/training/curriculum/curriculum.rst:560 -#: ../../source/training/curriculum/curriculum.rst:1180 -msgid "Use validation tools in JOSM" -msgstr "Menggunakan *tool* validasi pada JOSM" - -# fd2131cc0cbb4009930549922d038df7 -# 16489c5dac734bc29478718372916303 -#: ../../source/training/curriculum/curriculum.rst:561 -#: ../../source/training/curriculum/curriculum.rst:1181 -msgid "Use online validation tools" -msgstr "Menggunakan tool validasi secara online" - -# cebe36a471bc4952b0a1a7f613b118bb -# dce2200c41cd4870a195af5a65333b17 -#: ../../source/training/curriculum/curriculum.rst:559 -#: ../../source/training/curriculum/curriculum.rst:1179 -msgid "**Quality Assurance**" -msgstr "**Penjaminan Kualitas**" - -# 3233012b11e64c20a83d927243541e3b -# b77a1d3410314d19a7cee7dd5eb59c84 -#: ../../source/training/curriculum/curriculum.rst:561 -#: ../../source/training/curriculum/curriculum.rst:1181 -msgid "Error and warnings" -msgstr "Kesalahan dan peringatan" - -# 3d478387ffda4cb6ad17541be35e5410 -# fb45c60ee57c43c7935d1d0b67e9418e -#: ../../source/training/curriculum/curriculum.rst:562 -#: ../../source/training/curriculum/curriculum.rst:1182 -msgid "Using the validation tool" -msgstr "Menggunakan *tool* validasi" - -# 9b20dc9007514007b3f93e0a47f4a445 -# 3459c19b751942caabc34b3b780b7d15 -#: ../../source/training/curriculum/curriculum.rst:563 -#: ../../source/training/curriculum/curriculum.rst:1183 -msgid "Common validation warnings" -msgstr "Peringatan validasi umum" - -# 09c0b1693cba4da8804723ca39c7cd53 -# dfcdebf8d6974409b859fb92e05bd455 -#: ../../source/training/curriculum/curriculum.rst:564 -#: ../../source/training/curriculum/curriculum.rst:1184 -msgid "Using the tasking manager" -msgstr "Menggunakan tasking manager" - -# 1047cf14c64e458ebce7111057f00113 -# 1c42776421b94791a4cc68fce2c08482 -#: ../../source/training/curriculum/curriculum.rst:565 -#: ../../source/training/curriculum/curriculum.rst:1185 -msgid "Editing tips" -msgstr "Petunjuk mengedit" - -# a74eca84448a42e7bb55f5634209a979 -# 95751db566c64eb6b2d36a726dafccdf -#: ../../source/training/curriculum/curriculum.rst:566 -#: ../../source/training/curriculum/curriculum.rst:1186 -msgid "Presets standardisation" -msgstr "Standardisasi preset" - -# 392085821b5243d9b831636069d935db -# 36db3614a29a48278a816cf933e1a9ad -#: ../../source/training/curriculum/curriculum.rst:567 -#: ../../source/training/curriculum/curriculum.rst:1187 -msgid "KeepRight" -msgstr "*KeepRight*" - -# d5eaf7e38f3c498e994cf563febd6a08 -# d8e283a9c1624ee387bcbbfd96a2d2a6 -#: ../../source/training/curriculum/curriculum.rst:570 -#: ../../source/training/curriculum/curriculum.rst:1192 -msgid "Identify conflicts" -msgstr "Mengenali Konflik" - -# 5a201aa344a844fc941ba83bdef3cecd -# f0d2924e903345bfbf14383a39d6bd89 -#: ../../source/training/curriculum/curriculum.rst:571 -#: ../../source/training/curriculum/curriculum.rst:1193 -msgid "Understand why conflicts occur" -msgstr "Memahami bagaimana konflik dapat terjadi" - -# 9acbff585271481c8a95618517b9a1eb -# 41540c634bf9446193e67416e0c0f9f0 -#: ../../source/training/curriculum/curriculum.rst:572 -#: ../../source/training/curriculum/curriculum.rst:1194 -msgid "Solve conflicts" -msgstr "Menyelesaikan konflik" - -# 3d809bec61f348c09c80d82b92bd1fc9 -# aae6536a26d740be9be0f819dc3ca376 -#: ../../source/training/curriculum/curriculum.rst:569 -#: ../../source/training/curriculum/curriculum.rst:1191 -msgid "**Dealing with Conflicts**" -msgstr "**Menyelesaikan Konflik**" - -# 7b674357ba68489e8e89b067d4b71a5b -# 27e3bd2ee2f7446f8c305d0ba7c01b00 -#: ../../source/training/curriculum/curriculum.rst:571 -#: ../../source/training/curriculum/curriculum.rst:1193 -msgid "Conflicts" -msgstr "Konflik" - -# c501640199b0407691471d42cc0b1f9c -# 436f1a38b4a446a59498e61b80e69676 -#: ../../source/training/curriculum/curriculum.rst:572 -#: ../../source/training/curriculum/curriculum.rst:1194 -msgid "Conflict resolution" -msgstr "Cara menyelesaikan konflik" - -# caa656ef72984a72a142f7c159a7c1cc -# 8a059b43dfc649848c84b720dee2ed80 -#: ../../source/training/curriculum/curriculum.rst:573 -#: ../../source/training/curriculum/curriculum.rst:1195 -msgid "Ways to avoid conflicts" -msgstr "Cara untuk menghidari konflik" - -# 54eadb22b9ad4dd49489895dd09246e2 -# c084e274049f47fb8ca764cabc1e4483 -#: ../../source/training/curriculum/curriculum.rst:576 -#: ../../source/training/curriculum/curriculum.rst:1201 -msgid "Understand tags" -msgstr "Memahami tags" - -# 64d1880dbd244700ae7d46c8a9bb8ef2 -# b6bc41c784574f41ad0ca7b2472163e1 -#: ../../source/training/curriculum/curriculum.rst:577 -#: ../../source/training/curriculum/curriculum.rst:1202 -msgid "Understand XML" -msgstr "Memahami XML" - -# 8bf5b6a432264c48907d4c3779ba82ea -# 9106ddfd576c42e8988211dafe721f20 -#: ../../source/training/curriculum/curriculum.rst:578 -#: ../../source/training/curriculum/curriculum.rst:1203 -msgid "Understand keys and values" -msgstr "Memahami *keys* dan *values*" - -# c92dded439164fecb5f445be621bf77e -# 6d09e4bdcb9c49ad99dd9a0fd22c0344 -#: ../../source/training/curriculum/curriculum.rst:579 -#: ../../source/training/curriculum/curriculum.rst:1204 -msgid "Make presets" -msgstr "Membuat preset" - -# 9fae4d200658451d984f2f26451b27aa -# d3802c5708e04f1ca21b582bc3a3d5c0 -#: ../../source/training/curriculum/curriculum.rst:580 -#: ../../source/training/curriculum/curriculum.rst:1205 -msgid "Put preset files into JOSM" -msgstr "Memasukkan file preset ke dalam JOSM" - -# e1d736e897a947d7a8781c6943f3535c -# 659da0151007474b83650bf5dccc4035 -#: ../../source/training/curriculum/curriculum.rst:581 -#: ../../source/training/curriculum/curriculum.rst:1206 -msgid "Apply new presets to an object" -msgstr "Menerapkan preset baru pada sebuah objek" - -# 40ef1236d9e9486980f5f3bb69e69c19 -# 1816b0ceee444fe6a0688be22664de85 -#: ../../source/training/curriculum/curriculum.rst:575 -#: ../../source/training/curriculum/curriculum.rst:1200 -msgid "**Creating JOSM File Presets**" -msgstr "**Membuat File Preset JOSM**" - -# 1004a06e12064848a3a246e867f7a986 -# e5d234a50af247d1a163477af2005614 -#: ../../source/training/curriculum/curriculum.rst:577 -#: ../../source/training/curriculum/curriculum.rst:1202 -msgid "Tags and presets" -msgstr "Tag dan preset" - -# 4e4a7f7f85314499b5218f5bf5946933 -# 340f88c264eb43eb8cb3984484dc40a4 -#: ../../source/training/curriculum/curriculum.rst:578 -#: ../../source/training/curriculum/curriculum.rst:1203 -msgid "Introduction to XML" -msgstr "Pendahuluan XML" - -# e9bba647a9d24d7caedad2c4c579e08b -# ffd4c19daf984aefa3b91620c3dcbe59 -#: ../../source/training/curriculum/curriculum.rst:579 -#: ../../source/training/curriculum/curriculum.rst:1204 -msgid "JOSM presets files" -msgstr "*File preset* JOSM" - -# 28b0894ac42d423bb8319d878dca0723 -# cd59f322636442d0ac89128a334a4474 -#: ../../source/training/curriculum/curriculum.rst:585 -#: ../../source/training/curriculum/curriculum.rst:1212 -msgid "Understand the functions of the Separate Data Store (SDS)" -msgstr "Memahami fungsi dari Data Store Terpisah (*SDS - Separate Data Store*)" - -# 72bc5b3958cd4d8aa0465c79d4b3d263 -# e68d25b7727143b1b9ba4eefdffadacf -#: ../../source/training/curriculum/curriculum.rst:586 -#: ../../source/training/curriculum/curriculum.rst:1213 -msgid "Understand what data should be kept publicly and what should be private" -msgstr "Memahami data apa yang seharusnya dipublikasi dan data pribadi" - -# 819b4fbd217243c4991840e5508769a8 -# 20d03003ba9d40e5929aeba217f5de86 -#: ../../source/training/curriculum/curriculum.rst:588 -#: ../../source/training/curriculum/curriculum.rst:1215 -msgid "Install SDS plugin in JOSM" -msgstr "Menginstal Plugin SDS di JOSM" - -# c4ac1741dd244b619e194f8bc77231ac -# ef6c76ca302740a987216d0ac1577fd2 -#: ../../source/training/curriculum/curriculum.rst:589 -#: ../../source/training/curriculum/curriculum.rst:1216 -msgid "Use SDS presets" -msgstr "Menggunakan Preset SDS" - -# 17f4a94c5d9e44039817d835e11d82b0 -# 004a7ca249da460da8ede26b40923ce0 -#: ../../source/training/curriculum/curriculum.rst:590 -#: ../../source/training/curriculum/curriculum.rst:1217 -msgid "Use SDS plugin for selecting public and private data" -msgstr "Menggunakan plugin SDS untuk memilih data publik dan data pribadi" - -# c462bdb447214e05af523e3f0328aefd -# 3efce36e54034191b645cd90fcefd91e -#: ../../source/training/curriculum/curriculum.rst:591 -#: ../../source/training/curriculum/curriculum.rst:1218 -msgid "Access online datastore" -msgstr "Mengakses datastore secara online" - -# acc81e4bb1c34ad58cc2b7fa6232120e -# ab0de8293b0a4116bb2749a467c5f9d5 -#: ../../source/training/curriculum/curriculum.rst:584 -#: ../../source/training/curriculum/curriculum.rst:1211 -msgid "**Using the Separate Data Store**" -msgstr "**Menggunakan Separate Data Store**" - -# 2947179b1d4047bca1c24fb9e0fa554f -# 944e43880d084f70bda2868b97b25c86 -#: ../../source/training/curriculum/curriculum.rst:586 -#: ../../source/training/curriculum/curriculum.rst:1213 -msgid "Installing the SDS plugin" -msgstr "Menginstalasi plugin SDS" - -# 3fc0322ecffd4694be79b6d8b37190bc -# 093912413a7849f9bda1ee782cf34164 -#: ../../source/training/curriculum/curriculum.rst:587 -#: ../../source/training/curriculum/curriculum.rst:1214 -msgid "Using the plugin" -msgstr "Menggunakan Plugin" - -# 9552df195e724ad0a9c7cb3e2be58b62 -# b94d8062e3214ceea8b4131916679ba3 -#: ../../source/training/curriculum/curriculum.rst:588 -#: ../../source/training/curriculum/curriculum.rst:1215 -msgid "How it works" -msgstr "Bagaimana cara kerjanya" - -# bfca6809c6b6443a88f292832b252033 -# f89b161765194e31a2d460acac511747 -#: ../../source/training/curriculum/curriculum.rst:589 -#: ../../source/training/curriculum/curriculum.rst:1216 -msgid "Accessing the datastore online" -msgstr "Mengakses datastore secara online" - -# ba007549dc5241979e28be0dad7f34cc -# 33d858216d824476b7276539e9c76dfe -#: ../../source/training/curriculum/curriculum.rst:593 -#: ../../source/training/curriculum/curriculum.rst:1227 -msgid "Create and edit pages in OSM wiki" -msgstr "Membuat dan mengedit halaman di wiki OSM" - -# 9e0ba16c1f43466cbd944e46c2f8271d -# bff14c3bb703471682277ffe82dcc0dd -#: ../../source/training/curriculum/curriculum.rst:595 -#: ../../source/training/curriculum/curriculum.rst:1229 -msgid "Make an account on the OpenStreetMap wiki" -msgstr "Memahami cara membuat akun di Wiki OpenStreetMap" - -# 910b3617d3804ac68473fd1e9ef36ad2 -# 294a82e0872340a7acd3507633d38b90 -#: ../../source/training/curriculum/curriculum.rst:596 -#: ../../source/training/curriculum/curriculum.rst:1230 -msgid "Understand conventions and rules in developing a wiki page" -msgstr "Memahami format dan aturan dalam pembuatan halaman wiki" - -# 7c5d9cfd687f4faa85a03b3bf37df98d -# 3b93fe947da949b79ca3abc794258b04 -#: ../../source/training/curriculum/curriculum.rst:597 -#: ../../source/training/curriculum/curriculum.rst:1231 -msgid "Edit the wiki" -msgstr "Memahami cara mengedit wiki" - -# 9f9b18833f9a42b3ac92208e1ba28154 -# d268be6ababf41d9bbdd13314c6637ed -#: ../../source/training/curriculum/curriculum.rst:598 -#: ../../source/training/curriculum/curriculum.rst:1232 -msgid "Upload files and images" -msgstr "Memahami cara meng-*upload* file dan foto/gambar" - -# e56885924dc94fb0a0b4dc5bc6c4e5ed -# 60be66ccac19449ba28d99a824b4025b -#: ../../source/training/curriculum/curriculum.rst:599 -#: ../../source/training/curriculum/curriculum.rst:1233 -msgid "Translate and revise wiki" -msgstr "Mampu menerjemahkan dan merevisi wiki" - -# eeb51b222ded4b58b1c9a506cc0836e1 -# ae444569ad7d40cc8856e3c0823e7ca2 -#: ../../source/training/curriculum/curriculum.rst:593 -#: ../../source/training/curriculum/curriculum.rst:1227 -msgid "**Editing the OpenStreetMap Wiki**" -msgstr "Mengedit Wiki OpenStreetMap" - -# 763aafb408fd4cfb983fa5be3191b103 -# 3170bfabd2994c39a35f5ca34e49e9c7 -#: ../../source/training/curriculum/curriculum.rst:595 -#: ../../source/training/curriculum/curriculum.rst:1229 -msgid "OSM wiki" -msgstr "Wiki OSM" - -# a1b5b714e6c9427b93826b93c6249439 -# ba2da2abb08e4ced8bd89c7fe3a4f10a -#: ../../source/training/curriculum/curriculum.rst:596 -#: ../../source/training/curriculum/curriculum.rst:1230 -msgid "Signing up" -msgstr "Mendaftar" - -# 3035d99b52e94ac3ad135a6e91d9b113 -# d64628f3ff7a4f11a9b81910fc540268 -#: ../../source/training/curriculum/curriculum.rst:597 -#: ../../source/training/curriculum/curriculum.rst:1231 -msgid "Editing" -msgstr "Mengedit" - -# 81361ee6ddbe4d118275517b91e92707 -# 1a1bfd18ce9f42a59d6ea0f587e87ea2 -#: ../../source/training/curriculum/curriculum.rst:598 -#: ../../source/training/curriculum/curriculum.rst:1232 -msgid "Wiki formatting" -msgstr "Pemformatan Wiki" - -# 3b43dc70f0c6426eabbdb93f2682dc9e -# b1d97126857041dd873dfa4248fc1b1d -#: ../../source/training/curriculum/curriculum.rst:599 -#: ../../source/training/curriculum/curriculum.rst:1233 -msgid "Creating a new page" -msgstr "Membuat halaman baru" - -# 8019184597674c4ea7d0ea8ca4523e5f -# 82c38052ceab4876be9a3c36225f5226 -#: ../../source/training/curriculum/curriculum.rst:600 -#: ../../source/training/curriculum/curriculum.rst:1234 -msgid "Uploading files and images" -msgstr "Mengupload *file* dan gambar" - -# ac3f154dda8845e4b2f6f142bdc00e5b -# d8105d3985a64867b10689bf180c30f4 -#: ../../source/training/curriculum/curriculum.rst:601 -#: ../../source/training/curriculum/curriculum.rst:1235 -msgid "Translating pages" -msgstr "Menerjemahkan halaman" - -# aeacf0ad872b4c61bdf95d44073c66b8 -# 0024489df59c4068b33572bb2731f444 -#: ../../source/training/curriculum/curriculum.rst:602 -#: ../../source/training/curriculum/curriculum.rst:1236 -msgid "Watching pages" -msgstr "Halaman pantauan" - -# 31db926fa4154ccfaa816bf575498876 -#: ../../source/training/curriculum/curriculum.rst:605 -msgid "**Data Analysis using QGIS and** |project_name| **Intermediate Level**" -msgstr "" -"**Analisis Data menggunakan QGIS dan** |project_name| **Tingkat Menengah**" - -# ec54fb1adcbf4638b0cbd57637da2a16 -# e5a43c4df4c044d686d7ab72a237d755 -#: ../../source/training/curriculum/curriculum.rst:607 -#: ../../source/training/curriculum/curriculum.rst:1241 -msgid "" -"**Standard Competency:** Spatial Data Analysis using QGIS and |project_name| " -"for Contingency Planning" -msgstr "" -"**Kompetensi Standarr:** Analisis Data Spasial menggunakan QGIS dan |" -"project_name| untuk Rencana Kontinjensi " - -# a7cd8bc9e6a446c3995bdc0620293a2d -# d488604501e0408da2245cdc263e3309 -#: ../../source/training/curriculum/curriculum.rst:614 -#: ../../source/training/curriculum/curriculum.rst:1250 -msgid "Identify data types in QGIS" -msgstr "Mengidentifikasi tipe data QGIS" - -# ff97f75ce1d54ff38ad168f2a2696d51 -# 82da06bc0a6e45a4bbd88902082333c6 -#: ../../source/training/curriculum/curriculum.rst:615 -#: ../../source/training/curriculum/curriculum.rst:1251 -msgid "Understand symbology" -msgstr "Memahami simbologi" - -# f478d7ac3cf94169b6ebc9b2b21474df -# 7c476998ab0341318fceaa4401229a11 -#: ../../source/training/curriculum/curriculum.rst:616 -#: ../../source/training/curriculum/curriculum.rst:1252 -msgid "Understand map layout" -msgstr "Memahami layout peta " - -# 2fcfc1f820a048f6bb36dfe4eb4f995d -# 36430b77d39c43acbdaf6fc50b643716 -#: ../../source/training/curriculum/curriculum.rst:613 -#: ../../source/training/curriculum/curriculum.rst:1249 -msgid "**QGIS Review**" -msgstr "**Review QGIS**" - -# c5e201797d0a4136928d3cb715404a27 -# 4a10e44a854743e795fab86fd21fa6fb -#: ../../source/training/curriculum/curriculum.rst:615 -#: ../../source/training/curriculum/curriculum.rst:1251 -msgid "Data types in QGIS" -msgstr "Tipe data dalam QGIS" - -# b029c2b262d24ea2bd6fde93cbef743d -# 9258913713b54234a73031e37f771713 -#: ../../source/training/curriculum/curriculum.rst:616 -#: ../../source/training/curriculum/curriculum.rst:1252 -msgid "Symbolising data" -msgstr "Simbolisasi data" - -# 82c146adddd74177ae4db0bc6e88db87 -# c6fb2af07ee14d958c67a98d7b99d5e4 -#: ../../source/training/curriculum/curriculum.rst:617 -#: ../../source/training/curriculum/curriculum.rst:1253 -msgid "Map layout" -msgstr "Layout Peta" - -# f7fe888ed64d45f7b18b820f29067bf7 -# f008118a08e5487d850a79442130487b -#: ../../source/training/curriculum/curriculum.rst:620 -#: ../../source/training/curriculum/curriculum.rst:1258 -msgid "Understand |project_name| inputs" -msgstr "Memahami *input* |project_name|" - -# d0fd6d604a944283b8bcb5d5390f16f0 -# 755a728ca2b14d1ea8e7de2ef2d1dd95 -#: ../../source/training/curriculum/curriculum.rst:621 -#: ../../source/training/curriculum/curriculum.rst:1259 -msgid "Get OSM data from the HOT export server" -msgstr "Memperoleh data OSM dari server HOT export" - -# b2a381afe1bc42949e6a266544113a2a -# fe65f99cda4a43a3aa68222724e6394b -#: ../../source/training/curriculum/curriculum.rst:622 -#: ../../source/training/curriculum/curriculum.rst:1260 -msgid "Load data into |project_name|" -msgstr "Menambahkan data ke dalam |project_name|" - -# 8afebf58ae65438fae8648acc4c756ae -# b352c56e4a854afd845dd51803b8b42f -# e24b58c2a29f44be9845506ffb771a9c -# 20c2efdf40de4173b73caec4ee5f600b -#: ../../source/training/curriculum/curriculum.rst:623 -#: ../../source/training/curriculum/curriculum.rst:1261 -msgid "Add keywords" -msgstr "Menambahkan kata kunci" - -# 2fdbd9a57cd042e79f2eca1cf6251032 -# 7807ccf0dd494438898f935a39ea6d20 -#: ../../source/training/curriculum/curriculum.rst:624 -#: ../../source/training/curriculum/curriculum.rst:1262 -msgid "Prepare the hazard layer" -msgstr "Mempersiapkan layer ancaman" - -# 72aeba45cca64d98a10f767377b4de6c -# 70acc39e9b7c4f0084d53e34e12e8175 -#: ../../source/training/curriculum/curriculum.rst:625 -#: ../../source/training/curriculum/curriculum.rst:1263 -msgid "Run |project_name|" -msgstr "Jalankan |project_name|" - -# 8e370edc7fae4ae08c90e6e9786a8d06 -#: ../../source/training/curriculum/curriculum.rst:619 -msgid "**Preparing data and keywords for** |project_name|" -msgstr "**Mempersiapkan data dan kata kunci untuk** |project_name|" - -# 71bf079d4233440ba2d7e3426691760f -# a1f6b5eaf5694f4d8f6bc8fe8b05e4d4 -#: ../../source/training/curriculum/curriculum.rst:621 -#: ../../source/training/curriculum/curriculum.rst:1259 -msgid "|project_name| inputs" -msgstr "|project_name| input" - -# 8d700546d3c148c98da45bf887ca4b87 -# 92e50fe3db5d4ba5825fdaa2e165170e -#: ../../source/training/curriculum/curriculum.rst:622 -#: ../../source/training/curriculum/curriculum.rst:1260 -msgid "Getting OSM data from HOT Exports" -msgstr "Memperoleh data OSM dari HOT Export" - -# 3273475aeb614cc38f63899d8a86bc10 -# 6686d792f29a482093f44a35405918c6 -#: ../../source/training/curriculum/curriculum.rst:623 -#: ../../source/training/curriculum/curriculum.rst:1261 -msgid "Loading data" -msgstr "Memuat data" - -# 5788b896442e4119be144aae59cbb839 -# fe0c4a41f40c4e51bae7e7981ff9788e -#: ../../source/training/curriculum/curriculum.rst:624 -#: ../../source/training/curriculum/curriculum.rst:1262 -msgid "Adding keywords" -msgstr "Menambahkan kata kunci" - -# 77d525db785c4010a40f70d4a30b448a -# 8035ac61ba734534a22a678e20ac0eeb -#: ../../source/training/curriculum/curriculum.rst:625 -#: ../../source/training/curriculum/curriculum.rst:1263 -msgid "Preparing a hazard layer" -msgstr "Mempersiapkan layer ancaman" - -# a238537f6c884de19cf53f044893ec05 -# 69611ce691b44da4a0149eb935b90d72 -#: ../../source/training/curriculum/curriculum.rst:626 -#: ../../source/training/curriculum/curriculum.rst:1264 -msgid "Running |project_name|" -msgstr "Jalankan |project_name|" - -# 445a6f7a5b5948fda78765d979b8e3ea -# 86bbddee39fb4e74a1ee547920abbe7b -#: ../../source/training/curriculum/curriculum.rst:629 -#: ../../source/training/curriculum/curriculum.rst:1270 -msgid "Develop criteria for determining an ideal IDP camp location" -msgstr "Menyusun kriteria untuk menentukan lokasi tempat pengungsian" - -# c69594daa63e44e59d321de5686eb693 -# ba67a89a20714d459304014661e9cf31 -#: ../../source/training/curriculum/curriculum.rst:631 -#: ../../source/training/curriculum/curriculum.rst:1272 -msgid "Use geoprocessing tools" -msgstr "Menggunakan alat-alat geoprocessing" - -# f3c9b3d1d47948a3809ee2849d06f82b -# 11f6bd8867694046aa39e277ee9169fc -#: ../../source/training/curriculum/curriculum.rst:632 -#: ../../source/training/curriculum/curriculum.rst:1273 -msgid "" -"Use various spatial queries: contains, within, equal, intersect and is " -"disjoint" -msgstr "" -"Menggunakan berbagai kueri spasial: *contains, within, equal, intersect, dan " -"is disjoint*" - -# 9ab639b0e9a044839e05c6264b2f521c -# 7ac13e77a3f94771abbe3db13c8e1471 -#: ../../source/training/curriculum/curriculum.rst:634 -#: ../../source/training/curriculum/curriculum.rst:1275 -msgid "" -"Combine geoprocessing tools and spatial queries to select building(s) for " -"temporary IDP camps" -msgstr "" -"Menggabungkan *tool* geoprocessing dan kueri spasial untuk memilih bangunan " -"(bangunan-bangunan) sebagai tempat pengungsian sementara" - -# 20eb38a5cb5143c9b1605814bfb2ed56 -# 400d1927c666455193d6a1dd63a57bee -#: ../../source/training/curriculum/curriculum.rst:628 -#: ../../source/training/curriculum/curriculum.rst:1269 -msgid "**Determining IDP Camp Location**" -msgstr "**Menentukan Lokasi Tempat Pengungsian**" - -# 850278cf72ce44d1b9b713f8493773f4 -# a9b5e8296f74446ea06bbaa64d4675fd -#: ../../source/training/curriculum/curriculum.rst:630 -#: ../../source/training/curriculum/curriculum.rst:1271 -msgid "Geoprocessing tools" -msgstr "Tool Geoprocessing" - -# 0b770fcf10854d86a0f8e6dc31f66372 -# f2722f7739c04799b07b5d1072474e5c -#: ../../source/training/curriculum/curriculum.rst:631 -#: ../../source/training/curriculum/curriculum.rst:1272 -msgid "Spatial queries" -msgstr "Kueri Spasial" - -# fdd416da85aa49f2a800222c10263212 -# 3caf43ee504045fe840eb3c40a9cff4e -#: ../../source/training/curriculum/curriculum.rst:632 -#: ../../source/training/curriculum/curriculum.rst:1273 -msgid "IDP camp criteria and data" -msgstr "Kriteria dan data tempat pengungsian" - -# d512e90f10d9466c975f01754658e133 -# 3a7074f37269496cbab3e9dd8d2a0a01 -#: ../../source/training/curriculum/curriculum.rst:633 -#: ../../source/training/curriculum/curriculum.rst:1274 -msgid "Criteria #1: building must be outside affected area" -msgstr "Kriteria #1: bangunan harus berada di luar area terdampak" - -# 18fe209458be409d8fcd15f2310a882c -# e4097b1cc8f04e34a190eb5333b666f2 -#: ../../source/training/curriculum/curriculum.rst:635 -#: ../../source/training/curriculum/curriculum.rst:1276 -msgid "" -"Criteria #2: location must have direct access to a primary/secondary road " -"within 20 metres" -msgstr "" -"Kriteria #2: lokasi harus memiliki akses langsung ke jalan primer/sekunder " -"dalam jarak 20 meter" - -# 612026d51e8e4b8a90843b34a45a75df -# 942eae00e05e43f09158ad92b045898c -#: ../../source/training/curriculum/curriculum.rst:637 -#: ../../source/training/curriculum/curriculum.rst:1278 -msgid "Criteria #3: building must have an area of at least 225 square metres" -msgstr "Kriteria #3: bangunan harus memiliki luas setidaknya 225 meter persegi" - -# 3888c2ebd66c4f76bad44b2c809d1853 -# 67922ddcbe3f4031ba0ec851ac95e9ac -#: ../../source/training/curriculum/curriculum.rst:641 -#: ../../source/training/curriculum/curriculum.rst:1284 -msgid "Understand the concept of shortest path and fastest route" -msgstr "Memahami konsep jalur terpendek dan rute tercepat" - -# 34580bcdc8e045f6ab9f006f6f465195 -# 464b1c0dfe0c46b3b0e943995151957d -#: ../../source/training/curriculum/curriculum.rst:642 -#: ../../source/training/curriculum/curriculum.rst:1285 -msgid "Use the Road Graph plugin" -msgstr "Menggunakan plugin Road Graph" - -# 942bb980ae8c4b5ea45ac4e949ba71b2 -# f70fa44194de418d9283acb63f2425c2 -#: ../../source/training/curriculum/curriculum.rst:643 -#: ../../source/training/curriculum/curriculum.rst:1286 -msgid "Set up speed and road direction" -msgstr "Mengatur kecepatan dan arah jalan " - -# 3210ff2239df45e291a44b22ae0bf1ec -# e1bb173536ad4abd8ce84258cb770fca -#: ../../source/training/curriculum/curriculum.rst:644 -#: ../../source/training/curriculum/curriculum.rst:1287 -msgid "Determine start and destination points" -msgstr "Menentukan titik awal dan titik tujuan " - -# a8be621f9f0b45a78f2551fe77184e3c -# fe1acd4bec0d4a3e88d8ead299c58dc4 -#: ../../source/training/curriculum/curriculum.rst:645 -#: ../../source/training/curriculum/curriculum.rst:1288 -msgid "Conduct route analysis and selection" -msgstr "Melakukan analisis dan seleksi rute" - -# 5c1466d81d7a45269b31d6f19106019b -# ce1177ef64c2413bb963a82fb2a9d853 -#: ../../source/training/curriculum/curriculum.rst:640 -#: ../../source/training/curriculum/curriculum.rst:1283 -msgid "**Planning an Evacuation Route**" -msgstr "**Perencanaan Jalur Evakuasi**" - -# 4066ad16d6944b19b50f484f0f899ccd -# 059812aa5455473fb32f6249bcec641d -#: ../../source/training/curriculum/curriculum.rst:642 -#: ../../source/training/curriculum/curriculum.rst:1285 -msgid "Road graph plugin" -msgstr "Plugin road graph" - -# 702089ef9a7f4f03bfa6fc73911098a1 -# 8e2a171351f54baeafbb3bea7c4dd109 -#: ../../source/training/curriculum/curriculum.rst:643 -#: ../../source/training/curriculum/curriculum.rst:1286 -msgid "Editing plugin settings" -msgstr "Mengubah pengaturan plugin" - -# c642a9f7b26d4b1c8c33704fb6ab4a84 -# 83663386945f444bae9217c8ad0cf241 -#: ../../source/training/curriculum/curriculum.rst:644 -#: ../../source/training/curriculum/curriculum.rst:1287 -msgid "Choosing start and destination points" -msgstr "Memilih titik awal dan akhir" - -# 6b93c93b654943e6b9e3b36e4eefb057 -# eb610c4a7759464097357540deb329df -#: ../../source/training/curriculum/curriculum.rst:648 -#: ../../source/training/curriculum/curriculum.rst:1293 -msgid "" -"Understand the definition of damages, losses and their calculation based on " -"community exposure data" -msgstr "" -"Memahami definisi kerusakan, kerugian, dan perhitungannya berdasakan data " -"keterpaparan komunitas" - -# 91ed60e43041491c886a954000969153 -# 42e7fc6360da43ea953971a0b5e8f2b9 -#: ../../source/training/curriculum/curriculum.rst:650 -#: ../../source/training/curriculum/curriculum.rst:1295 -msgid "Understand damage and losses assessment values based on BNPB and BPBD" -msgstr "" -"Memahami penilaian kerusakan dan kerugian berdasarkan ketentuan BNPB dan BPBD" - -# 559347b346b14512979bd5c0de427c5d -# fe0de1d4d425477da0436d30272c874f -#: ../../source/training/curriculum/curriculum.rst:652 -#: ../../source/training/curriculum/curriculum.rst:1297 -msgid "Make a damage and losses map" -msgstr "Membuat sebuah peta penilaian kerusakan dan kerugian" - -# df4c9f6169e443ada4631d310bcbef39 -# 40452bab0d464aebb6b6f6ae6bc83db4 -#: ../../source/training/curriculum/curriculum.rst:653 -#: ../../source/training/curriculum/curriculum.rst:1298 -msgid "Calculate damage area" -msgstr "Menghitung area kerusakan" - -# 55e8a58410394fd68afca5e60b68ef6f -# 1dbf6c68d9e54b118fb51af31e50d36a -#: ../../source/training/curriculum/curriculum.rst:654 -#: ../../source/training/curriculum/curriculum.rst:1299 -msgid "" -"Manipulate attribute data of affected features to obtain damage values for " -"each object" -msgstr "" -"Memanipulasi data atribut dari fitur yang terkena dampak untuk memperoleh " -"nilai kerusakan untuk setiap objek" - -# a19d05e4622d4e7bb7d0eb796d2645e2 -# b0d6c60530dc4a2c8bd18a852ffdfde1 -#: ../../source/training/curriculum/curriculum.rst:656 -#: ../../source/training/curriculum/curriculum.rst:1301 -msgid "" -"Manipulate attribute data of affected features to obtain loss values for " -"each object" -msgstr "" -"Memanipulasi data atribut dari fitur yang terkena dampak untuk memperoleh " -"nilai kerugian untuk setiap objek" - -# d366c25738694e4ea01d254b4359e850 -# d51a1d7cb8aa4a8fba12b79b78943962 -#: ../../source/training/curriculum/curriculum.rst:658 -#: ../../source/training/curriculum/curriculum.rst:1303 -msgid "" -"Group attribute data for administrative areas (hamlet village, subdistrict)" -msgstr "" -"Mengelompokkan data atribut untuk wilayah administrasi masing-masing (dusun, " -"desa, kecamatan)" - -# 8e665255b38644ae8e1483801e4cbf73 -# 10541f1ef3a84874869644888998616c -#: ../../source/training/curriculum/curriculum.rst:660 -#: ../../source/training/curriculum/curriculum.rst:1305 -msgid "" -"Combine attribute data for administrative areas (hamlet village, subdistrict)" -msgstr "" -"Menggabungkan data atribut untuk wilayah administrasi masing-masing (dusun, " -"desa, kecamatan)" - -# 8c39d1adf791404e981a05aa6c1a249c -# 49782cfdb4b7407f94a35f4ba87553de -#: ../../source/training/curriculum/curriculum.rst:662 -#: ../../source/training/curriculum/curriculum.rst:1307 -msgid "Present damage and loss values using charts" -msgstr "Menyajikan penilaian kerusakan dan kerugian menggunakan diagram" - -# 533b338a09374f0f810c63c1fa360d26 -# 393b978e8baf4b369d46b21c105e6dc8 -#: ../../source/training/curriculum/curriculum.rst:647 -#: ../../source/training/curriculum/curriculum.rst:1292 -msgid "**Calculating Damages and Losses**" -msgstr "**Menghitung Kerusakan dan Kerugian**" - -# 364336fd09eb41c1861c8992cfc00bf8 -# e6895cb76f834ef5976d6641bf9dce52 -#: ../../source/training/curriculum/curriculum.rst:649 -#: ../../source/training/curriculum/curriculum.rst:1294 -msgid "BPBD damage assessment guide" -msgstr "Panduan Penilaian Kerusakan BPBD" - -# 635a04da06404622af0f0cdc5afe5ea7 -# 2972aa6f53904f4586f8f9a524f545ab -#: ../../source/training/curriculum/curriculum.rst:650 -#: ../../source/training/curriculum/curriculum.rst:1295 -msgid "Damage and losses assessment map" -msgstr "Peta penilaian kerusakan dan kerugian" - -# 6dbb6dcab2b74e63b6f15989836c16fb -# d42c57bc783547b2b4ac3f9ddc12f51e -#: ../../source/training/curriculum/curriculum.rst:651 -#: ../../source/training/curriculum/curriculum.rst:1296 -msgid "Calculating damage area" -msgstr "Menghitung Area Kerusakan" - -# e1762befcf9c48ba8713049695fb3a6e -# 3c02e7c6e99a41a694f504bd4c255f03 -#: ../../source/training/curriculum/curriculum.rst:652 -#: ../../source/training/curriculum/curriculum.rst:1297 -msgid "Calculating damages using the Group Stats plugin" -msgstr "Menghitung kerusakan dengan Plugin Group Stats" - -# 6a21e216980042089636bea72091fe22 -# ebb738fe28d24d87ac5e08d06cd27dcf -#: ../../source/training/curriculum/curriculum.rst:653 -#: ../../source/training/curriculum/curriculum.rst:1298 -msgid "Calculating losses" -msgstr "Menghitung kerugian" - -# da4484316cee43bdac1d17f8b49a4bdf -# d5a5a2673fc143ea8dc5006456a35306 -#: ../../source/training/curriculum/curriculum.rst:654 -#: ../../source/training/curriculum/curriculum.rst:1299 -msgid "Calculating losses using the Group Stats plugin" -msgstr "Menghitung kerugian dengan Plugin Group Stats" - -# 52b14913314f476dae69d2ff889b8f6e -# 4bb395b31ff84a15ac98d791bff3b457 -#: ../../source/training/curriculum/curriculum.rst:655 -#: ../../source/training/curriculum/curriculum.rst:1300 -msgid "Joining data" -msgstr "Penggabungan data" - -# 1de5f6641bd04dcb989c44ffb827b141 -# 1082c617d3d74cc1b3a7cab524eac3a2 -#: ../../source/training/curriculum/curriculum.rst:656 -#: ../../source/training/curriculum/curriculum.rst:1301 -msgid "Creating a chart" -msgstr "Membuat diagram" - -# 16ea61af853c44f3a34845594dcf6fcd -#: ../../source/training/curriculum/curriculum.rst:665 -msgid "" -"**Training of Trainer Workshop for Contingency Planning using OSM, QGIS,** " -"**and** |project_name|" -msgstr "" -"**Lokakarya Training of Trainer untuk Rencana Kontinjensi menggunakan OSM, " -"QGIS, dan** |project_name|" - -# e638ef6fca504114ba439789c487a5f3 -#: ../../source/training/curriculum/curriculum.rst:668 -msgid "" -"**Standard Competency:** Participant can be a workshop facilitator to teach " -"Data collection and Data Analysis through OSM, QGIS and |project_name| in " -"their respective region." -msgstr "" -"**Kompetensi Dasar:** Peserta dapat menjadi fasilitator dalam lokakarya " -"untuk mengajarkan tentang Pengumpulan Data dan Analisis Data menggunakan " -"OSM, QGIS, dan |project_name| di wilayah mereka masing-masing." - -# 3e3dc69a9a724b05a1a43a87760e1998 -# 7318aa448a5e4eb186a72bd455a91ad2 -#: ../../source/training/curriculum/curriculum.rst:676 -#: ../../source/training/curriculum/curriculum.rst:1322 -msgid "Explain the principles of adult learning" -msgstr "Menjelaskan prinsip pembelajaran orang dewasa " - -# 300061975b5d46929f23b28936caa7bd -#: ../../source/training/curriculum/curriculum.rst:677 -msgid "Analyse the characteristics of adult learning" -msgstr "Menganalisis karakteristik pembelajaran untuk orang dewasa" - -# 7e6c84c96af04ed3b1a9cd47629729aa -#: ../../source/training/curriculum/curriculum.rst:678 -msgid "" -"Determine strategies, teaching methods or techniques that apply in adult " -"learning" -msgstr "" -"Menentukan strategi, metode pengajaran atau teknik yang digunakan dalam " -"pembelajaran tingkat lanjut" - -# 057468bedcf74c3fa8adf9eea3b4b0db -#: ../../source/training/curriculum/curriculum.rst:680 -msgid "Evaluate adult learning" -msgstr "Mengevaluasi pembelajaran untuk orang dewasa" - -# 5fa27af057164b97b92bb6037140a393 -# 5c23680828d944b58218b9f4bab85cf1 -#: ../../source/training/curriculum/curriculum.rst:675 -#: ../../source/training/curriculum/curriculum.rst:1321 -msgid "**Adult Learning**" -msgstr "**Pembelajaran Orang Dewasa**" - -# 8f1ac78bef264ec780dbc1570da281bf -# b7c50b3dd025466d907b942dac394e95 -#: ../../source/training/curriculum/curriculum.rst:677 -#: ../../source/training/curriculum/curriculum.rst:1323 -msgid "Principles of adult learning" -msgstr "Prinsip pembelajaran orang dewasa" - -# 4f71e488c3e14c6a874f8b093aa7ea3b -# 78b49a10178e49169a7d2e2bee527e63 -#: ../../source/training/curriculum/curriculum.rst:678 -#: ../../source/training/curriculum/curriculum.rst:1324 -msgid "Characteristics of adult learning" -msgstr "Karakteristik pembelajaran orang dewasa" - -# c78abbdbabe746eea9f781ec6315bc54 -# 0aad13157ff246b9ac2f314c43c3aba3 -#: ../../source/training/curriculum/curriculum.rst:679 -#: ../../source/training/curriculum/curriculum.rst:1325 -msgid "Strategies, teaching methods or techniques that apply adult learning" -msgstr "Startegi, metode, atau teknik pembelajaran orang dewasa" - -# e33e9ff567cd4b008edda0545863e6dc -# f16de883429e48c1970c9ba5bf0210f6 -#: ../../source/training/curriculum/curriculum.rst:681 -#: ../../source/training/curriculum/curriculum.rst:1327 -msgid "Adult learning evaluation" -msgstr "Evaluasi pembelajaran orang dewasa" - -# b4908eda0ba34d32aec4bb184a3c555e -# d05e8e8cadb14c7495768ed814befb4c -#: ../../source/training/curriculum/curriculum.rst:685 -#: ../../source/training/curriculum/curriculum.rst:1333 -msgid "Describe the principles of effective communication" -msgstr "Mendeskripsikan prinsip-prinsip dari komunikasi efektif" - -# dfce7d1edba44897921415826247aa90 -#: ../../source/training/curriculum/curriculum.rst:686 -msgid "Describe the communication models in workshops" -msgstr "Mendeskripsikan contoh komunikasi pada lokakarya" - -# f19a938c387843e5aae06643bb24407e -#: ../../source/training/curriculum/curriculum.rst:687 -msgid "Demonstrate the basic skills component of teaching workshops" -msgstr "Demonstrasi komponen keterampilan dasar mengajar di lokakarya" - -# 906f18c1507143abb138980bfe7375af -# 5a467946e55347408ac9e96f3a289cd0 -#: ../../source/training/curriculum/curriculum.rst:684 -#: ../../source/training/curriculum/curriculum.rst:1332 -msgid "**Communication skills**" -msgstr "**Keterampilan berkomunikasi**" - -# 1061f8cb0f62422890b36c67d14be9a5 -# b7e131e6bc284b30be643acfd8d12856 -#: ../../source/training/curriculum/curriculum.rst:686 -#: ../../source/training/curriculum/curriculum.rst:1334 -msgid "Principles of effective communication" -msgstr "Prinsip-prinsip dari komunikasi efektif" - -# a72a05147ce84788af3dffa1022d0a43 -# 9c82df1a30214f1ab5dfffc78f6b2edb -#: ../../source/training/curriculum/curriculum.rst:687 -#: ../../source/training/curriculum/curriculum.rst:1335 -msgid "Communication models in workshop" -msgstr "Contoh komunikasi dalam lokakarya" - -# b6ffd9f5fe4544dab5380a5e4bb4c954 -# 7ec5c3d4679d4b8a95a42f2a20dc5017 -#: ../../source/training/curriculum/curriculum.rst:688 -#: ../../source/training/curriculum/curriculum.rst:1336 -msgid "Basic teaching skills component" -msgstr "Mempelajari komponen keterampilan dasar" - -# e293698b7ecf41579c36584fdbd8ab91 -#: ../../source/training/curriculum/curriculum.rst:690 -msgid "" -"Practise Data Collection and Analysis through OSM, QGIS, and InaSAFE workshop" -msgstr "" -"Mempraktikkan Pengumpulan Data dan Analisis pada lokakarya OSM, QGIS, dan " -"InaSAFE" - -# 3c1ca7e887104b65b27ccdf467d2e48d -# f913f569c7774d3c999c802219dcd543 -#: ../../source/training/curriculum/curriculum.rst:693 -#: ../../source/training/curriculum/curriculum.rst:1343 -msgid "" -"Practise data collection and analysis through OSM, QGIS and InaSAFE workshop " -"using adult learning" -msgstr "" -"Mempraktikkan pengumpulan data dan analisis pada lokakarya OSM, QGIS, dan " -"InaSAFE untuk pembelajaran orang dewasa" - -# 311ab8d4731a473dadc1f6bef57700d0 -#: ../../source/training/curriculum/curriculum.rst:695 -msgid "" -"Practise communication skills in data collection and analysis through OSM, " -"QGIS and InaSAFE workshop" -msgstr "" -"Melatih keterampilan berkomunikasi dalam pengumpulan data dan analisis pada " -"lokakarya OSM, QGIS, dan InaSAFE" - -# a466edbdff7d433ab418d24556252d7c -#: ../../source/training/curriculum/curriculum.rst:690 -msgid "" -"**Facilitator Skills for Data Collection and Analysis through OSM, QGIS, and " -"InaSAFE workshop**" -msgstr "" -"**Lokakarya Keterampilan Pengumpulan Data dan Analisis menggunakan lokakarya " -"OSM, QGIS, dan InaSAFE**" - -# 9a6f0112bb1847c1821ebc086335d6d7 -# 42949cbf46404785a62aca2f99f1afc5 -#: ../../source/training/curriculum/curriculum.rst:693 -#: ../../source/training/curriculum/curriculum.rst:1343 -msgid "" -"Implementation of adult learning in data collection and analysis through " -"OSM, QGIS, and InaSAFE workshop" -msgstr "" -"Lokakarya implementasi dalam pembelajaran untuk orang dewasa dalam " -"pengumpulan data dan analisis menggunakan OSM, QGIS, dan InaSAFE" - -# 4adada567ec54ceebe19ebd9a1e20beb -# 9b6afee56ebc49238b210873da15c1c4 -#: ../../source/training/curriculum/curriculum.rst:695 -#: ../../source/training/curriculum/curriculum.rst:1345 -msgid "" -"Implementation of communication skills data collection and analysis through " -"OSM, QGIS, and InaSAFE workshop" -msgstr "" -"Lokakarya implementasi dalam keterampilan berkomunikasi untuk pengumpulan " -"data dan analisis menggunakan OSM, QGIS, dan InaSAFE" - -# b98bacc1724343f998ca2b45394b265a -#: ../../source/training/curriculum/curriculum.rst:700 -msgid "F. Curriculum Structure" -msgstr "F. Struktur Kurikulum" - -# 6571b6b97012479eb5457fc0522d689a -#: ../../source/training/curriculum/curriculum.rst:702 -msgid "Based on the curriculum, program structure is designed as follows." -msgstr "Berdasarkan kurikulum, struktur program disusun sebagai berikut." - -# e0904d946e344f2088eafbd44b1d5b91 -#: ../../source/training/curriculum/curriculum.rst:704 -msgid "**1. Data Collection Using OSM Beginner Level**" -msgstr "**1. Pengumpulan Data dengan menggunakan OSM Tingkat Dasar**" - -# e0c637e8ce184a18bd7db33ceabc59f6 -# 2ffeee84f7b049ae98b3cdd874bd0db3 -# da7283093673477f9950dc1c84c9c4a7 -# ae1a6543ee5f4f0a8c8bd67f40e324ec -# e3a703f315ea4c95b31168004cee0142 -#: ../../source/training/curriculum/curriculum.rst:707 -#: ../../source/training/curriculum/curriculum.rst:743 -#: ../../source/training/curriculum/curriculum.rst:789 -#: ../../source/training/curriculum/curriculum.rst:821 -#: ../../source/training/curriculum/curriculum.rst:854 -msgid "No" -msgstr "No" - -# 241363cc731f45b29d99d40144d717eb -# c0c4515a945a42b88551ea8f5af08176 -# 5e366f8d1fe4478081d686130448213f -# 6451e0ab18494e78b0dc4536edb556e1 -# 1fa4628a32204b39827fdd3cd9719f1f -#: ../../source/training/curriculum/curriculum.rst:707 -#: ../../source/training/curriculum/curriculum.rst:743 -#: ../../source/training/curriculum/curriculum.rst:789 -#: ../../source/training/curriculum/curriculum.rst:821 -#: ../../source/training/curriculum/curriculum.rst:854 -msgid "Workshop Material" -msgstr "Materi Lokakarya" - -# 927d2d6b42534bcb9e3ce4069f6543c3 -# 6534ac2cec1a4ea2824febadbd6a5d84 -# a201f548f8464fa7815ce08e1fdef1f9 -#: ../../source/training/curriculum/curriculum.rst:707 -#: ../../source/training/curriculum/curriculum.rst:821 -#: ../../source/training/curriculum/curriculum.rst:854 -msgid "Time (learning hour) @ 45Minutes" -msgstr "Waktu (jam pelajaran) @ 45 menit" - -# f0165b592cac47eb94bc24f8f3d931e1 -# 3980dde52e924edb88e4717a3226e21d -# 37922806efbd4a79a9b6485b4f80bb13 -# e41d9acf5fc0472fba7adbd40cecebac -# 7a9ce82d7da6468abc4e8049144a83fc -#: ../../source/training/curriculum/curriculum.rst:709 -#: ../../source/training/curriculum/curriculum.rst:745 -#: ../../source/training/curriculum/curriculum.rst:791 -#: ../../source/training/curriculum/curriculum.rst:823 -#: ../../source/training/curriculum/curriculum.rst:856 -msgid "**General Program**" -msgstr "**Program Umum**" - -# b06b981385bd464eb95ceea31c193cba -# b4bb43804e9043bc9cee49066f3d98c0 -# a919c80521c64be19922835ef3ab1345 -# 503cf377bb114d14a9ada5f7125f27de -# 0742df8adbc947ea924d891780b1ffea -#: ../../source/training/curriculum/curriculum.rst:709 -#: ../../source/training/curriculum/curriculum.rst:745 -#: ../../source/training/curriculum/curriculum.rst:791 -#: ../../source/training/curriculum/curriculum.rst:823 -#: ../../source/training/curriculum/curriculum.rst:856 -msgid "**1**" -msgstr "**1**" - -# 7d7bc2fbbe394c4095bd198e0f400570 -#: ../../source/training/curriculum/curriculum.rst:711 -msgid "BNPBPolicy" -msgstr "Kebijakan BNPB" - -# 3b8de8a43d624b83a51b277316e88e08 -# 3e5d7423517f47d48017fb7035eb9349 -# fc96f64f2a7f4049abb544b57e00e6d1 -# 898e7580541a4c6c8ce684004e8ef603 -# 34be3fe2127c4fc88c2b75c7d1ce9c15 -# ef1c76adf2ac4868874aaace846803f8 -# a1ab7d7151c64a85afb101f18212b6ad -# cd51f120512442cf871d8af3789408cf -# 869bc63032ff4ea69a83029bc1bb6dfd -# 844d907505504899b25a090aae2e910c -# 7255b05cd5a8474fae1ee67bb6f8ebec -# 6986bd45c4e649c38695b7a9a3c91eed -# 2c90c5cf6fa74c51840d40a06a12d1f1 -# f7e291694cbe481280d440da0f682db5 -#: ../../source/training/curriculum/curriculum.rst:711 -#: ../../source/training/curriculum/curriculum.rst:735 -#: ../../source/training/curriculum/curriculum.rst:747 -#: ../../source/training/curriculum/curriculum.rst:751 -#: ../../source/training/curriculum/curriculum.rst:753 -#: ../../source/training/curriculum/curriculum.rst:775 -#: ../../source/training/curriculum/curriculum.rst:781 -#: ../../source/training/curriculum/curriculum.rst:793 -#: ../../source/training/curriculum/curriculum.rst:813 -#: ../../source/training/curriculum/curriculum.rst:825 -#: ../../source/training/curriculum/curriculum.rst:845 -#: ../../source/training/curriculum/curriculum.rst:858 -#: ../../source/training/curriculum/curriculum.rst:871 -#: ../../source/training/curriculum/curriculum.rst:873 -msgid "1" -msgstr "1" - -# bd56abb246bb4ca083bfba7513f07946 -# dd890256b8ae4f96ba03dc868436241a -# b3af90d681ab49d883f99a27b53b37e1 -# 577e471ea33a4c9ba5d14bd7b7589641 -# 70e0a8d1b90747b99ca363ca616f0d7b -#: ../../source/training/curriculum/curriculum.rst:713 -#: ../../source/training/curriculum/curriculum.rst:749 -#: ../../source/training/curriculum/curriculum.rst:795 -#: ../../source/training/curriculum/curriculum.rst:827 -#: ../../source/training/curriculum/curriculum.rst:860 -msgid "**Main Program**" -msgstr "**Program Pokok**" - -# 020703f479e048f89af03555f4399e24 -# 226bf9c806be445e8eaa7cb328f4efc6 -#: ../../source/training/curriculum/curriculum.rst:713 -#: ../../source/training/curriculum/curriculum.rst:749 -msgid "**46**" -msgstr "**46**" - -# 040832fd86cf48508d1714bb4ed83ccf -#: ../../source/training/curriculum/curriculum.rst:715 -msgid "The OpenStreetMap website" -msgstr "Situs OpenStreetMap" - -# 9626145e1ee34915b104de8f7f32df91 -# af78f45ca5ac41c9ad6f982e4a75b301 -# b51790b049114070a0a3a3a5d294001e -# bff41b143de7430595663310d368f64b -# caa1f1047ba64a02807058985ca773ef -# 8e65b4e3a25041da9b8b01186a76c75f -# 031ccfcd81a54844b5189681c8904140 -# 0e07585a726440af8c10399cb930a005 -# 5af61b2b176547b38ececc222170e050 -# d5159ce5f2694a698838bfbcdc67c935 -# 9a2b7561dce44cf194999a0a7d323802 -# d5693a0b4f184958a706409310d2cee8 -#: ../../source/training/curriculum/curriculum.rst:715 -#: ../../source/training/curriculum/curriculum.rst:727 -#: ../../source/training/curriculum/curriculum.rst:729 -#: ../../source/training/curriculum/curriculum.rst:733 -#: ../../source/training/curriculum/curriculum.rst:757 -#: ../../source/training/curriculum/curriculum.rst:759 -#: ../../source/training/curriculum/curriculum.rst:779 -#: ../../source/training/curriculum/curriculum.rst:811 -#: ../../source/training/curriculum/curriculum.rst:843 -#: ../../source/training/curriculum/curriculum.rst:862 -#: ../../source/training/curriculum/curriculum.rst:864 -#: ../../source/training/curriculum/curriculum.rst:866 -msgid "2" -msgstr "2" - -# dcf79fc423eb45fb9efc50d114bec57b -#: ../../source/training/curriculum/curriculum.rst:717 -msgid "Working with OSM" -msgstr "Bekerja dengan OSM" - -# 438c4b06ca384084ae227663a1d1ece5 -# 29766307dffb4f7688b959c28c3dcb80 -# ee5e7cdb510746abb86d339b77b6d874 -# 70db779ba8a94f53adfbcc1beaa6a79d -# 6acf5a93839348729ef847b0764b30ed -#: ../../source/training/curriculum/curriculum.rst:717 -#: ../../source/training/curriculum/curriculum.rst:719 -#: ../../source/training/curriculum/curriculum.rst:755 -#: ../../source/training/curriculum/curriculum.rst:767 -#: ../../source/training/curriculum/curriculum.rst:831 -msgid "4" -msgstr "4" - -# 103a7a4da5464e409c7012ff33ac9693 -# 31014b1e248443fd8e74002c73607fbb -# 35b926017a80451b9635693a483e9a9d -#: ../../source/training/curriculum/curriculum.rst:719 -msgid "Working with JOSM" -msgstr "Bekerja dengan JOSM" - -# 238d16e6a8d441009fc1793057d85d70 -#: ../../source/training/curriculum/curriculum.rst:721 -msgid "Using GPS" -msgstr "Penggunaan GPS" - -# 40bceda817714145ab29f5f7603ceb67 -# 0ea4208c6f4e42c6903927e69adf0f68 -#: ../../source/training/curriculum/curriculum.rst:721 -#: ../../source/training/curriculum/curriculum.rst:723 -msgid "10" -msgstr "10" - -# 276d506c14764ba7abe8e4ab2e979705 -#: ../../source/training/curriculum/curriculum.rst:723 -msgid "Field Papers" -msgstr "Field Papers" - -# 6bc1469fd75345a7bae735b858dd3f0f -#: ../../source/training/curriculum/curriculum.rst:725 -msgid "Editing OpenStreetMap with JOSM" -msgstr "Editing OpenStreetMap dengan JOSM" - -# 2760321161f941ba9d9ca3e5d50888c4 -#: ../../source/training/curriculum/curriculum.rst:725 -msgid "12" -msgstr "12" - -# e9f03ed9fdd94521952afec6ad1401fb -#: ../../source/training/curriculum/curriculum.rst:727 -msgid "Imagery Offset" -msgstr "Pergeseran Citra Satelit " - -# a5b9bb00de124fb591e108cf72d3db14 -#: ../../source/training/curriculum/curriculum.rst:729 -msgid "Getting OSM Data" -msgstr "Perolehan Data OSM " - -# ce08fef6928141feb0f2aec64948afa0 -# e1fe04d7f1bd4362b9122d79cb94082a -# feb11a24d9e64a6d8e0b2dbb6ba037c7 -# b8c8273f90f44148976f01083b82e0a7 -# 0416a582aca4492bb6a4bb67e858468f -#: ../../source/training/curriculum/curriculum.rst:731 -#: ../../source/training/curriculum/curriculum.rst:777 -#: ../../source/training/curriculum/curriculum.rst:809 -#: ../../source/training/curriculum/curriculum.rst:841 -#: ../../source/training/curriculum/curriculum.rst:869 -msgid "**Supporting Program**" -msgstr "**Program Penunjang**" - -# 11c5cc1abc0a42eab75a8ed2d3b657e4 -# adec88dcd9a743aea55b81d2f6064e1c -# 5b78015684594ef091fe91b104c038d4 -# d8948261e62c4fd1801ea0cca24c3526 -#: ../../source/training/curriculum/curriculum.rst:731 -#: ../../source/training/curriculum/curriculum.rst:777 -#: ../../source/training/curriculum/curriculum.rst:809 -#: ../../source/training/curriculum/curriculum.rst:841 -msgid "**3**" -msgstr "**3**" - -# 815c641cc9f14614ab2385bf7be56ca3 -# 8677e547972e4c37bb2594a248a5ba4f -# e499edb1aaad455a9fd4621469039cae -# e912a35b36fd4d919e549b0b62affd5a -# d256d22e206a48f8a6c40512ea62b7df -#: ../../source/training/curriculum/curriculum.rst:733 -#: ../../source/training/curriculum/curriculum.rst:779 -#: ../../source/training/curriculum/curriculum.rst:811 -#: ../../source/training/curriculum/curriculum.rst:843 -#: ../../source/training/curriculum/curriculum.rst:871 -msgid "Opening and Closing" -msgstr "Pembukaan dan Penutupan" - -# 9542fcb23164476da1e20152753138d8 -# 0049e5914127412695ed49cd5137cf8e -# a4e7f500ee5e48c79e9b880ee19244ba -# 0fcf66e9842d43a7bcc72399cc207783 -# 8482482c31934b868cd33f7799945b49 -#: ../../source/training/curriculum/curriculum.rst:735 -#: ../../source/training/curriculum/curriculum.rst:781 -#: ../../source/training/curriculum/curriculum.rst:813 -#: ../../source/training/curriculum/curriculum.rst:845 -#: ../../source/training/curriculum/curriculum.rst:873 -msgid "Workshop Evaluation" -msgstr "Evaluasi Lokakarya" - -# 80376da93db84f63b55305e4f2db351a -# 4640b471febd4c369888ade6539f4fed -# c5f600283aa14b9fab8c0c247e8d8eac -# b7c8e1d1b9da4da7bfc24f1d0e91da86 -# 5774280d79cf455b8d2183a4f68b190a -#: ../../source/training/curriculum/curriculum.rst:737 -#: ../../source/training/curriculum/curriculum.rst:783 -#: ../../source/training/curriculum/curriculum.rst:815 -#: ../../source/training/curriculum/curriculum.rst:847 -#: ../../source/training/curriculum/curriculum.rst:875 -msgid "Total" -msgstr "Jumlah" - -# 307f14dc7bb1409389c77a087b19785a -# dfd5ec05e0c842aa9d41976624d8b085 -# 66ffc2b4685d45d994d71dc7b9c9247d -#: ../../source/training/curriculum/curriculum.rst:737 -#: ../../source/training/curriculum/curriculum.rst:783 -#: ../../source/training/curriculum/curriculum.rst:847 -msgid "50" -msgstr "50" - -# 51b068e863634e19aed12ef3a2ee19c1 -#: ../../source/training/curriculum/curriculum.rst:740 -msgid "**2. Data Analysis Using QGIS/** |project_name| **Beginner Level**" -msgstr "**2. Analisis Data menggunakan QGIS/**|project_name|** Tingkat Dasar**" - -# b30eed77ddaf47cc903411ef0d1e68e3 -# c1c38afc52564483962a342e899b4a06 -#: ../../source/training/curriculum/curriculum.rst:743 -#: ../../source/training/curriculum/curriculum.rst:789 -msgid "Time (learning hour) @ 45 Minutes" -msgstr "Waktu (jam pelajaran) @ 45 menit" - -# 150e61da468446f59a541db6793a58fe -# be216eaacb1e428bbabb4eca2bb736b4 -# 6b83fc58f8fb461db0730529ab9c60df -# 42d3cf0db8b44fd394451b7418bcaa22 -#: ../../source/training/curriculum/curriculum.rst:747 -#: ../../source/training/curriculum/curriculum.rst:793 -#: ../../source/training/curriculum/curriculum.rst:825 -#: ../../source/training/curriculum/curriculum.rst:858 -msgid "BNPB Policy" -msgstr "Kebijakan BNPB" - -# ac2ec09920484a3a80a39b22bc923305 -# 947e552a332044deb92314a45392be6f -# e54fa4f364a84311afa7798113fd1f8b -# e233a170f6524642b0e5003719d32f6b -#: ../../source/training/curriculum/curriculum.rst:751 -msgid "Using GIS to develop scenario for contingency planning" -msgstr "Menggunakan SIG untuk pengembangan skenario rencana kontijensi." - -# 870d72ec9e9b48e9bad10185e715391d -# 41f294b3e27140d09b3eba0073f132b5 -#: ../../source/training/curriculum/curriculum.rst:753 -msgid "" -"Explaining the benefit of QGIS and InaSAFE for developing realistic scenario " -"for contingency planning" -msgstr "" -"Menjelaskan manfaat QGIS dan InaSAFE di dalam mengembangkan skenario " -"realistik untuk Rencana Kontijensi" - -# 682777357c95417bbaf0835024fdd457 -# 45f647449d8f436d856f60cccc436d53 -# b130fbaddb484281b76c728504206878 -# 735457d52a7e415fb266d3548060ad11 -#: ../../source/training/curriculum/curriculum.rst:755 -msgid "Installing QGIS and explaining QGIS user interface" -msgstr "Melakukan instalasi QGIS dan menjelaskan layout QGIS" - -# 34eeca35a358433b95d4ff40e3712b49 -# fca4cb5e510f44fcb8fd537b199807c9 -#: ../../source/training/curriculum/curriculum.rst:757 -msgid "Using QGIS plugins" -msgstr "Menggunakan plug-in pada QGIS" - -# 1fd9feb07fbe427c84e6c0c715825559 -# edaa75e384ac4767acf2e27ed01f7f71 -#: ../../source/training/curriculum/curriculum.rst:759 -msgid "Determining projection system and transformation in QGIS" -msgstr "Menerapkan Sistem Proyeksi dan Transformasi pada QGIS" - -# b95079cbcde64f1c8b64bf954d635bce -# 2fbfab94bd804d4492d2794b255db6b0 -# 82fb5a752bd64a618ee830e3f1d86bd0 -# dce8de4b51a94bc79d048d9308b4b35a -#: ../../source/training/curriculum/curriculum.rst:761 -msgid "Working with vector data" -msgstr "Bekerja dengan data vektor" - -# 87f7b6e688e04f829f45c92b10f61bca -# 7db290b6a7b54c6ab433aee34e6c6b9e -# 642be0225c184554b6d4bb2af413d11a -# e0f32ffb0c8f416bbf638fcf1c963644 -# 1e18ee72bc724b44b2176360ba16920f -# 9f74f162f2934ee9a08b2adf3bddded5 -# 446bec96379f43b7bed9f7957829f869 -# a3459c4e61544878929ea3e6b2ba2881 -#: ../../source/training/curriculum/curriculum.rst:761 -#: ../../source/training/curriculum/curriculum.rst:763 -#: ../../source/training/curriculum/curriculum.rst:765 -#: ../../source/training/curriculum/curriculum.rst:801 -#: ../../source/training/curriculum/curriculum.rst:805 -#: ../../source/training/curriculum/curriculum.rst:807 -#: ../../source/training/curriculum/curriculum.rst:829 -#: ../../source/training/curriculum/curriculum.rst:835 -msgid "3" -msgstr "3" - -# 52b2f6dfd32c49cca754fee0ef3931bb -#: ../../source/training/curriculum/curriculum.rst:763 -msgid "Categorising and creating label from vector data" -msgstr "Mengkategorisasi dan membuat label dari data vektor" - -# db5ab23971ca4d858a06fe619ea38b88 -# 58e5bc2856ab4054912045781c826173 -# ce41cfc55ac647fdab1a8dcae1612d7c -# 9fc97ae6270943d7a81e96a404884a84 -#: ../../source/training/curriculum/curriculum.rst:765 -msgid "Working with raster data" -msgstr "Bekerja dengan data raster" - -# 5764776fba814b738a35934f9e1492d1 -# 8e566e89c1204f2f8a2aac5620c30958 -# df6905a4db644cd19cadae9160825551 -# e31cf61c77ec4e2a820b9fbd4771a3a7 -#: ../../source/training/curriculum/curriculum.rst:767 -msgid "Creating and editing new vector layer" -msgstr "Membuat dan mengedit layer vektor baru" - -# 40944623904948ac820ac850ce6402f5 -#: ../../source/training/curriculum/curriculum.rst:769 -msgid "Analysing vector data to solve problem" -msgstr "Analisis data vektor untuk memecahkan masalah" - -# 280c48cb9c4e4721bab859f5edbec1d8 -# d2660d8aa5d94eeda907207885873812 -# 789d20b7d90b407dae85b343faa407c6 -# 8ec8f53781f945938eab9d2200de0d3d -#: ../../source/training/curriculum/curriculum.rst:769 -#: ../../source/training/curriculum/curriculum.rst:797 -#: ../../source/training/curriculum/curriculum.rst:799 -#: ../../source/training/curriculum/curriculum.rst:839 -msgid "6" -msgstr "6" - -# 1f90e4da1181494dbe8c1f0c5fbe7246 -#: ../../source/training/curriculum/curriculum.rst:771 -msgid "Creating maps with Map Composer" -msgstr "Membuat peta yang baik dengan menggunakan *Map Composer*" - -# 6daae4446aaa40b0a99d6e044855c352 -# d4f7f6502a0442b39d2be1d2db77b0b1 -#: ../../source/training/curriculum/curriculum.rst:771 -#: ../../source/training/curriculum/curriculum.rst:773 -msgid "8" -msgstr "8" - -# e3b3d49200b94a5db8ac1ab8b60aea59 -# 93c256d45235434f8c37a4dd85355bfb -#: ../../source/training/curriculum/curriculum.rst:773 -msgid "Using InaSAFE" -msgstr "Menggunakan InaSAFE" - -# d3da91052d5540d8a96456b2f3f9d3a7 -#: ../../source/training/curriculum/curriculum.rst:775 -msgid "" -"Keeping interaction and communication to support QGIS and InaSAFE in " -"Indonesia" -msgstr "" -"Menjaga interaksi untuk mendukung jejaring sosial menggunakan QGIS/InaSAFE " -"di Indonesia" - -# be9b70e6f82345adae8d3d8726543d4c -#: ../../source/training/curriculum/curriculum.rst:786 -msgid "**3. Data Collection Using OSM Intermediate Level**" -msgstr "**3. Pengumpulan Data menggunakan OSM Tingkat Menengah**" - -# ed2bf86b0a9c4a69b3f28b502c877a28 -# 9bf4f94fcb9741ecbd7f1409b3027042 -#: ../../source/training/curriculum/curriculum.rst:795 -#: ../../source/training/curriculum/curriculum.rst:827 -msgid "**26**" -msgstr "**26**" - -# 808bf48a540d4b30943587ad3af696a5 -#: ../../source/training/curriculum/curriculum.rst:797 -msgid "Advanced Editing" -msgstr "Teknik Editing Tingkat Lanjut" - -# ef3cecd88ff6435e9f6ec62d1f041f3e -#: ../../source/training/curriculum/curriculum.rst:799 -msgid "Quality Assurance" -msgstr "Penjaminan Kualitas" - -# fd386cec97cd4b25ab371bbd1f852b3d -#: ../../source/training/curriculum/curriculum.rst:801 -msgid "Resolving conflicts when uploading OSM Data" -msgstr "Menyelesaikan konflik ketika mengupload data OSM" - -# 9e3231cc2bfd4a09bfda269a5881952b -#: ../../source/training/curriculum/curriculum.rst:803 -msgid "XML and Presets in JOSM" -msgstr "XML dan presets pada JOSM" - -# eed055c295254d099f22505984be48c0 -# b004367a8ccc413fafad86d7f3794175 -# e474e7314f93402f95f0e09ca5793426 -#: ../../source/training/curriculum/curriculum.rst:803 -#: ../../source/training/curriculum/curriculum.rst:833 -#: ../../source/training/curriculum/curriculum.rst:837 -msgid "5" -msgstr "5" - -# 715fc1b5928a4d179d610e6efcd781b8 -#: ../../source/training/curriculum/curriculum.rst:805 -msgid "Using Private Data Store" -msgstr "Menggunakan *Private Data Store*" - -# 617772f1f8a3419ca46ebba5964851cd -#: ../../source/training/curriculum/curriculum.rst:807 -msgid "OpenStreetMap Wiki" -msgstr "Wiki OpenStreetMap" - -# 1203f7eb48884686a77e145c2ed8ddc3 -#: ../../source/training/curriculum/curriculum.rst:815 -msgid "30" -msgstr "30" - -# 7bdfab616d8a4f11a5f3b31721a49e60 -#: ../../source/training/curriculum/curriculum.rst:818 -msgid "**4. Data Analysis Using QGIS/** |project_name| **Intermediate Level**" -msgstr "" -"**4. Analisis data menggunakan QGIS/** |project_name| **Tingkat Menengah**" - -# 5aee4f6d61a344b0a94a5e37da32bf9a -#: ../../source/training/curriculum/curriculum.rst:829 -msgid "QGIS Review" -msgstr "Review QGIS" - -# 2f2b3c41e6b140d7a9d2f2ae0d5235f3 -# 6c46293e11b44d25a9bd98cabdb92e1e -# f32e91b52fd0479692445e58db602120 -#: ../../source/training/curriculum/curriculum.rst:831 -msgid "Preparing data and keywords for InaSAFE" -msgstr "Persiapan data dan kata kunci untuk InaSAFE" - -# 6baad7609cd94cfe9ed0db121c1b0c63 -#: ../../source/training/curriculum/curriculum.rst:833 -msgid "Planning temporary shelter" -msgstr "Perencanaan tempat pengungsian sementara" - -# 462b52c558ef4b88bbb38d3f7f9e36a4 -#: ../../source/training/curriculum/curriculum.rst:835 -msgid "Planning evacuation route" -msgstr "Perencanaan jalur evakuasi" - -# 49bee58ef7d04bd0825922ba882156f5 -#: ../../source/training/curriculum/curriculum.rst:837 -msgid "Calculating damage and losses" -msgstr "Penilaian kerusakan dan kerugian" - -# 898c92fdb8504605a5b1389267cd2aa7 -# 59435f229c5e4307b986349408506f2d -# 50473fa867bb4eb4a99cd2739cfc893a -# 29380ebc62124249a41b6233435305be -# e4caa5be10394cafb1b21e689d0f1ffb -# bfc3e291b1c4478ea1a2aefe2dbe1f42 -# 5ff304c481d547da8ca6780df239c3d8 -# de0c789dce1c491db19a239533d03514 -# c9f44211e348454ea1230f2c788c403f -# 4eadba21c9814774888bdbc451d4fd1a -# d088e7f126f8464eb1e9cb7b49720d0e -# 94ff300e1d634bdab8c43c0c7c5a4f51 -# 9e4f34bdde1041e1a32fc8f4c7df9370 -# 39f6366addfd406d8ef8ee08937771e3 -#: ../../source/training/curriculum/curriculum.rst:839 -#: ../../source/training/curriculum/curriculum.rst:912 -#: ../../source/training/curriculum/curriculum.rst:922 -#: ../../source/training/curriculum/curriculum.rst:942 -#: ../../source/training/curriculum/curriculum.rst:977 -#: ../../source/training/curriculum/curriculum.rst:1036 -#: ../../source/training/curriculum/curriculum.rst:1077 -#: ../../source/training/curriculum/curriculum.rst:1086 -#: ../../source/training/curriculum/curriculum.rst:1095 -#: ../../source/training/curriculum/curriculum.rst:1122 -#: ../../source/training/curriculum/curriculum.rst:1137 -#: ../../source/training/curriculum/curriculum.rst:1165 -#: ../../source/training/curriculum/curriculum.rst:1179 -#: ../../source/training/curriculum/curriculum.rst:1340 -msgid "Practice" -msgstr "Praktik" - -# 1ad1ebe7519341eb888252da893e7110 -#: ../../source/training/curriculum/curriculum.rst:850 -msgid "" -"**5. Training of Trainer for Contingency Planning Using OSM, QGIS, and** |" -"project_name|" -msgstr "" -"**5. Training of Trainer untuk Rencana Kontinjensi menggunakan OSM, QGIS, " -"dan** |project_name|" - -# edde081661844f3fb1ef46efac07b91a -#: ../../source/training/curriculum/curriculum.rst:860 -msgid "**6**" -msgstr "**6**" - -# 3719156645b546a38627244433bcfec0 -#: ../../source/training/curriculum/curriculum.rst:862 -msgid "Adult learning" -msgstr "Pembelajaran orang dewasa" - -# 2e78b199aa2942cb80867c00e66b0e65 -#: ../../source/training/curriculum/curriculum.rst:864 -msgid "Communication skills" -msgstr "Keterampilan berkomunikasi" - -# 2ee5047757cd4cc7b759301dd439ef9e -# c76f92ad5ab542cd9f381b392c2d4f9d -#: ../../source/training/curriculum/curriculum.rst:866 -msgid "" -"Practising Data Collection and Analysis through OSM, QGIS, and InaSAFE " -"workshop" -msgstr "" -"Lokakarya mempraktikkan Pengumpulan Data dan Analisis menggunakan OSM, QGIS, " -"dan InaSAFE" - -# 4e51961aa7984c0399cbbe5ff835889c -#: ../../source/training/curriculum/curriculum.rst:869 -msgid "**2**" -msgstr "**2**" - -# f2a6e42568dd42e18206307f13e9247f -#: ../../source/training/curriculum/curriculum.rst:875 -msgid "9" -msgstr "9" - -# 46067fe752c54c639c110d87d2c9f093 -#: ../../source/training/curriculum/curriculum.rst:879 -msgid "Syllabus" -msgstr " Silabus" - -# 33dedc76ab71474d8f1b50aa81c306fd -#: ../../source/training/curriculum/curriculum.rst:881 -msgid "" -"The syllabus is a learning plan for the workshop material that includes " -"basic competencies, indicators, core material, learning activity, " -"assessment, allocation of time and learning resources. The syllabus is based " -"on the structure of the program and allocation of a predetermined time." -msgstr "" -"Silabus merupakan rencana pembelajaran untuk materi lokakarya termasuk " -"kompetensi dasar, indikator, materi utama, kegiatan pembelajaran, penilaian, " -"alokasi waktu, dan sumber belajar. Silabus disusun berdasarkan struktur dari " -"program dan alokasi waktu yang telah ditetapkan." - -# 2b46017b6b614c71ad200a9d683d39af -#: ../../source/training/curriculum/curriculum.rst:887 -msgid "" -"This syllabus is described in more detail in the toolkit/workshop manuals " -"separate from this curriculum. Therefore, the syllabus may be more easily " -"understood by reading the prepared toolkit." -msgstr "" -"Silabus ini akan dijelaskan lebih lanjut pada panduan toolkit/lokakarya yang " -"terpisah dari kurikulum ini. Untuk itu silabus ini akan lebih mudah dipahami " -"dengan membaca toolkit yang sudah disiapkan." - -# ceb672ef3f9c4da7aa69ff776423e1d5 -# 298b943c362e407a84275785fabdabbf -# 3aed3099e25644c883d91457fe8ca56b -# 4df9c064873b42dbaa8232879b26e386 -# cbcbd7003a654811aa63dabdd389b850 -#: ../../source/training/curriculum/curriculum.rst:899 -#: ../../source/training/curriculum/curriculum.rst:1016 -#: ../../source/training/curriculum/curriculum.rst:1161 -#: ../../source/training/curriculum/curriculum.rst:1245 -#: ../../source/training/curriculum/curriculum.rst:1317 -msgid "Learning Activity" -msgstr "Kegiatan Pembelajaran" - -# 516eee4d0bf04c419f476975ed6ee686 -# 41ab9b2f83364c1892c982cde4ba2760 -# b8aa920679b141b586b4b4b5846decbc -# 514eed2297cb4b96b43f01ed2c68c431 -# 7b5a1d1589594756b248377e25fb5b2b -#: ../../source/training/curriculum/curriculum.rst:899 -#: ../../source/training/curriculum/curriculum.rst:1016 -#: ../../source/training/curriculum/curriculum.rst:1161 -#: ../../source/training/curriculum/curriculum.rst:1245 -#: ../../source/training/curriculum/curriculum.rst:1317 -msgid "Time Allocation" -msgstr "Alokasi Waktu" - -# 96e9b2a7cb38486fa90b954e531a0439 -# a292645f196c405ea66f5786ad68457b -# 7806d92f91ba433aa552b7e2c3b80b51 -# 61d9cfa27a0c4808ae4ffaae9ad9ecb7 -# f538236e034c45bdac66285700e1e017 -#: ../../source/training/curriculum/curriculum.rst:899 -#: ../../source/training/curriculum/curriculum.rst:1016 -#: ../../source/training/curriculum/curriculum.rst:1161 -#: ../../source/training/curriculum/curriculum.rst:1245 -#: ../../source/training/curriculum/curriculum.rst:1317 -msgid "Assessment" -msgstr "Penilaian" - -# 7c0a7c0972eb420fbaebeb2b9adb0765 -# 8162cd938fae48e1ad1b0c7073ad8b93 -# aea6b72092354402969a6c0c9dad0d32 -# 42b267769abf4eebb00d797c3a417955 -# 8babe2de55e04bddb0942f66e376de45 -#: ../../source/training/curriculum/curriculum.rst:899 -#: ../../source/training/curriculum/curriculum.rst:1016 -#: ../../source/training/curriculum/curriculum.rst:1161 -#: ../../source/training/curriculum/curriculum.rst:1245 -#: ../../source/training/curriculum/curriculum.rst:1317 -msgid "Learning Sources" -msgstr "Sumber Belajar" - -# 7148c607ffa548d1be3d5ed315227761 -#: ../../source/training/curriculum/curriculum.rst:901 -msgid "**1. Basic Concept of OpenStreetMap Website (2 Hours)**" -msgstr "**1. Konsep Dasar Situs OpenStreetMap (2 Jam)**" - -# 5a150e1fd68549b1913cece8e5cd1295 -#: ../../source/training/curriculum/curriculum.rst:903 -msgid "Quiz about OSM, data, and map" -msgstr "Tebak berhadiah tentang OSM, data, dan peta" - -# 82f90f26bd9d4d51b96fb2ac420b14b6 -#: ../../source/training/curriculum/curriculum.rst:905 -msgid "Make a hand-drawn sketch of an area (individually)" -msgstr "Membuat sketsa peta wilayah menggunakan tangan (individu)" - -# afea0adcaa994ad2910d68ce63e9f8de -# 284342d00c0848fcba7ca8d83ef2b94d -# fab9b0d8a1294d378b6ffa1223c546fb -# caeb4789dc1b4fc494c16f3f6e24eea2 -#: ../../source/training/curriculum/curriculum.rst:903 -#: ../../source/training/curriculum/curriculum.rst:992 -#: ../../source/training/curriculum/curriculum.rst:1001 -#: ../../source/training/curriculum/curriculum.rst:1057 -msgid "90 Minutes" -msgstr "90 menit" - -# 16d98f84d1df40a2b144d6b6e32e01bf -#: ../../source/training/curriculum/curriculum.rst:903 -msgid "Test/Practice" -msgstr "Tes/Latihan" - -# b6330ea49c6e4ddca550cf00bfa2b250 -#: ../../source/training/curriculum/curriculum.rst:903 -msgid "Projector Slide PPT Module 1 Paper and pen" -msgstr "Proyektor Slide PPT Modul 1 Kertas dan pulpen" - -# 276b693a671440a7b6655906c04661e6 -#: ../../source/training/curriculum/curriculum.rst:910 -msgid "**2. Working with OSM (4 Hours)**" -msgstr "**2. Pengoperasian OSM (4 Jam)**" - -# f50b6b8d23c24f01b19a9254c6ee4986 -#: ../../source/training/curriculum/curriculum.rst:914 -msgid "Navigate map on OSM Website" -msgstr "Menavigasikan peta di situs OSM" - -# 2be1be3d556744adb893d955864f63b4 -#: ../../source/training/curriculum/curriculum.rst:912 -msgid "" -"Participants visit the OSM website, navigate the map, save OSM map as an " -"image, create an OSM account, and edit the OSM map after demonstrated by " -"Facilitator" -msgstr "" -"Para peserta mengunjungi situs OSM, menavigasi peta, menyimpan peta OSM " -"dalam bentuk gambar, membuat akun OSM, dan edit peta OSM setelah " -"didemonstrasikan oleh fasilitator" - -# abe43010ff3540468cc75f839fe079e9 -# b2b6a6f3557541f99d235bbc3b3dd141 -# aa4fe24ff3404d7e96500bfb81411f4b -# 64f86b9a65b140b6acf6c32c25b8d2ec -#: ../../source/training/curriculum/curriculum.rst:912 -#: ../../source/training/curriculum/curriculum.rst:922 -#: ../../source/training/curriculum/curriculum.rst:1036 -#: ../../source/training/curriculum/curriculum.rst:1257 -msgid "180 Minutes" -msgstr "180 Menit" - -# 530d4d1237ac493da1077d7edac019ea -#: ../../source/training/curriculum/curriculum.rst:912 -msgid "Participant's computer Projector Slide PPT Module 2" -msgstr "Komputer milik peserta Proyektor Slide PP Modul 2" - -# eb679d7640734558abb7f750e18207a5 -#: ../../source/training/curriculum/curriculum.rst:920 -msgid "**3. Working with JOSM (4 Hours)**" -msgstr "**3. Pengoperasian JOSM (4 Jam)**" - -# 9985b9d02db8420f9520b85717e1be18 -#: ../../source/training/curriculum/curriculum.rst:922 -msgid "" -"Participants practise how to download and install JOSM, change JOSM " -"preferences, learn basic map drawing in jOSM, and add presets after " -"demonstrated by facilitator" -msgstr "" -"Para peserta mempraktikkan bagaimana cara mendownload dan menginstal JOSM, " -"mengubah pengaturan JOSM, belajar memetakan peta dasar di JOSM, dan " -"menambahkan preset setelah diidemonstrasikan oleh fasilitator" - -# 19deafc6a9a44e5ab69ce459a0c0fca2 -# 7660b5949f9f47e9937864e9b2abdb17 -# 82613f1c1a8c4cc69dc935077b049562 -# e732b162d35f4ae197d61c91e0c8bf5f -#: ../../source/training/curriculum/curriculum.rst:922 -#: ../../source/training/curriculum/curriculum.rst:1191 -#: ../../source/training/curriculum/curriculum.rst:1269 -#: ../../source/training/curriculum/curriculum.rst:1283 -msgid "Projector Slide PP Module 3 Participant's computer" -msgstr "Proyektor Slide PP Modul 3 Komputer peserta" - -# 2b6369350bce4f6ea78ea0e88849c814 -#: ../../source/training/curriculum/curriculum.rst:928 -msgid "All required software that is distributed to participant on USB stick" -msgstr "" -"Perangkat lunak yang sudah dimasukkan ke dalam USB stick/flashdisk " -"didistribusikan ke peserta" - -# 7ea0ee04d5a947628c56eeedd7048e78 -#: ../../source/training/curriculum/curriculum.rst:940 -msgid "**4. Using GPS (10 Hours)**" -msgstr "**4. Penggunaan GPS (10 Jam)**" - -# 3550414fd647417da13cdf9b7d9b3063 -#: ../../source/training/curriculum/curriculum.rst:951 -msgid "Upload GPS tracks in JOSM" -msgstr "Upload track GPS di JOSM" - -# 4c58889939b245a585e9d027f09b1be2 -#: ../../source/training/curriculum/curriculum.rst:942 -msgid "Participants are asked about and discuss GPS." -msgstr "Para peserta berdiskusi dan tanya jawab mengenai GPS." - -# 58688fd074934126a1c183b4424bdfc3 -#: ../../source/training/curriculum/curriculum.rst:945 -msgid "" -"Participants practise how to turn on GPS, set up GPS for the first time, " -"navigate with GPS, save tracks and waypoints, turn on track log, and " -"transferr waypoints and tracks to computer after demonstrated by facilitator" -msgstr "" -"Para peserta mempraktikkan bagaimana cara menyalakan GPS, pengaturan GPS " -"saat pertama kali digunakan, menavigasikan GPS, menyimpan track dan " -"waypoints, menyalakan track log, dan menyalin track dan waypoint ke komputer " -"setelah didemonstrasikan oleh fasilitator" - -# 78775ec373a5454395425992e9a7ef39 -#: ../../source/training/curriculum/curriculum.rst:942 -msgid "5 hours and 30 minutes" -msgstr "5 Jam 30 menit" - -# b91bb2102193407e91731faa93659959 -#: ../../source/training/curriculum/curriculum.rst:942 -msgid "Projector Slide PP Module 4 Participant's Computer" -msgstr "Proyektor Slide PP Modul 4 Komputer peserta" - -# daab416408dc409fb0ac70914e5b6783 -#: ../../source/training/curriculum/curriculum.rst:947 -msgid "" -"GPS Device (ideally minimum one GPS for two or three participants) Pen and " -"Paper" -msgstr "" -"Perangkat GPS (idealnya satu GPS untuk dua atau tiga peserta) Kertas dan " -"Pulpen" - -# 1e629061f3f74589a9b6b34344689b42 -#: ../../source/training/curriculum/curriculum.rst:963 -msgid "**5. Field Papers (10 Hours)**" -msgstr "**5. Field Papers (10 Jam)**" - -# d9237473a92842a082ee6bf988f2a25c -#: ../../source/training/curriculum/curriculum.rst:965 -msgid "Participants are asked about and discuss Field Papers." -msgstr "Para peserta berdiskusi dan tanya jawab mengenai Field Papers." - -# a7dca99fa43c4c9294a773010b0f5aa5 -#: ../../source/training/curriculum/curriculum.rst:968 -msgid "" -"Participants practise how Field Papers works, how to create and print Field " -"Papers, how to map with Field Papers, scan and upload, and how to to open " -"scanned Field Papers in JOSM after demonstrated by Facilitator" -msgstr "" -"Para peserta mempraktikkan bagaimana cara kerja Field Papers, bagaimana " -"membuat dan mencetak Field Papers, bagaimana cara memetakan dengan Field " -"Papers, scan dan upload, dan bagaimana membuka Field Papers yang sudak " -"discan di JOSM setelah didemonstrasikan oleh fasilitator" - -# 64f6c876e9da490e83b0d457b3a9fcd6 -#: ../../source/training/curriculum/curriculum.rst:965 -msgid "5 hours and 30 Minutes" -msgstr "5 jam dan 30 menit" - -# 4f2ed8f9a9084bc1b6010beb013ee12c -# b727de6077394f97a0f452ec2f62fc50 -# ab4385a497c34d638630794d05beea31 -# 0f79717f911e4a56a189705d0c540a3e -# ab27da6978344470aaae83f1d5c13de0 -# d1df68df76e0435abde012fba64c322e -# 6d42b004e9954db1a1dc140325d344e6 -# 2b78ea1b1533411caf4993690b9f226c -# 893b50b4cd7b4d2eb72938e5e8d9a28d -# 9d83692b6fde45d594b62e1d93fdc3f3 -# 371d82df66f84b86bc8c16e6f182f856 -# dc6cca07dca74510ae5e08a093fd997f -# a173912dd8224723b93daf10d29087d6 -# 7bbf9e96398744ba803ca66dec7baa42 -# 30dcd7c354974e0baf94c982544c9d43 -# be6314c9729242eb8ae9096bd8bfcf98 -# fcfeadd7924c4d24b1c3b8dd5e326866 -#: ../../source/training/curriculum/curriculum.rst:965 -#: ../../source/training/curriculum/curriculum.rst:992 -#: ../../source/training/curriculum/curriculum.rst:1001 -#: ../../source/training/curriculum/curriculum.rst:1057 -#: ../../source/training/curriculum/curriculum.rst:1068 -#: ../../source/training/curriculum/curriculum.rst:1104 -#: ../../source/training/curriculum/curriculum.rst:1149 -#: ../../source/training/curriculum/curriculum.rst:1191 -#: ../../source/training/curriculum/curriculum.rst:1200 -#: ../../source/training/curriculum/curriculum.rst:1211 -#: ../../source/training/curriculum/curriculum.rst:1227 -#: ../../source/training/curriculum/curriculum.rst:1249 -#: ../../source/training/curriculum/curriculum.rst:1257 -#: ../../source/training/curriculum/curriculum.rst:1269 -#: ../../source/training/curriculum/curriculum.rst:1283 -#: ../../source/training/curriculum/curriculum.rst:1292 -#: ../../source/training/curriculum/curriculum.rst:1332 -msgid "Test Practice" -msgstr "Tes Unjuk Latihan" - -# 2e1803c1ce68482eb294886a50084caa -#: ../../source/training/curriculum/curriculum.rst:965 -msgid "" -"Projector Slide PP Module 5 Participant's computer Example of Field Papers" -msgstr "Proyektor Slide PP Modul 5 Komputer peserta contoh Field Papers" - -# c03b9cf11fcf4a94bf86ecf45ea3ce08 -#: ../../source/training/curriculum/curriculum.rst:975 -msgid "**6. Editing OpenStreetMap with JOSM (12 Hours)**" -msgstr "**6. Editing OpenStreetMap dengan JOSM (12 Jam)**" - -# ee17573211354b96a1fd6999382b85aa -#: ../../source/training/curriculum/curriculum.rst:977 -msgid "" -"Participants learn JOSM user interface, JOSM layers, and practise how to " -"edit OSM data, tags, upload changes, and saving OSM files, and using " -"keyboard shortcuts after demonstrated by Facilitator" -msgstr "" -"Para peserta belajar mengenai tampilan antar muka JOSM,layer JOSM, dan " -"mempraktikkan bagaimana mengedit data OSM, tag, upload perubahan, menyimpan " -"file OSM, menggunakan tombol pintas pada keyboard setelah didemonstrasikan " -"oleh fasilitator" - -# b745000519544400a1549d98610208b1 -#: ../../source/training/curriculum/curriculum.rst:977 -msgid "7 Hours" -msgstr "7 Jam" - -# cff409dbfd8543c69faec3fd8d661407 -#: ../../source/training/curriculum/curriculum.rst:977 -msgid "Projector Slide PP Module 6 Participant's computer" -msgstr "Proyektor Slide PP Modul 6 Komputer Peserta" - -# 725222902a91450cabb56ab702ee8007 -#: ../../source/training/curriculum/curriculum.rst:990 -msgid "**7. Imagery Offset (2 Hours)**" -msgstr "**7. Pergeseran Citra Satelit (2 Jam)**" - -# 5a6e36647336465391b05e478205e1c9 -#: ../../source/training/curriculum/curriculum.rst:992 -msgid "" -"Participants watch demo from facilitator and learn about imagery offset, " -"imagery components (resolution and georeference), then practise how to fix " -"imagery offset" -msgstr "" -"Para peserta memperhatikan penjelasan dari fasilitator dan belajar mengenai " -"pergeseran citra satelit, komponen citra (resolusi dan georeferensi), " -"kemudian mempraktikkan bagaimana memperbaiki citra yang bergeser" - -# d0d1fca313a949a1a1981c26f09014d6 -#: ../../source/training/curriculum/curriculum.rst:992 -msgid "Projector Slide PP Module 7 Participant's computer" -msgstr "Projector Slide PP Modul 7 Komputer Peserta" - -# 61efb494e0fe4fa89e685998974f97ae -#: ../../source/training/curriculum/curriculum.rst:999 -msgid "**8. Getting OSM data (2 Hours)**" -msgstr "**8. Perolehan Data OSM (2 Jam)**" - -# 639f90f155b9456fb98189fe0934af64 -#: ../../source/training/curriculum/curriculum.rst:1002 -msgid "Download OpenStreetMap data from Geofabrik Website" -msgstr "Download data OpenStreetMap dari Situs Geofabrik" - -# bb495d7568b844fabd1cccd010232eca -#: ../../source/training/curriculum/curriculum.rst:1001 -msgid "" -"Participants practise how to download OSM data from Geofabrik website, and " -"download OSM data based on area and tags needed using Hot export tool" -msgstr "" -"Para peserta mempraktikkan bagaimana mendownload data OSM dari situs " -"Geofabrik, dan download data OSM sesuai dengan wilayah dan tag yang " -"diperlukan menggunakan tool HOT Export" - -# fd23d4b87f6e4be49bb4a83dc1d83f6e -#: ../../source/training/curriculum/curriculum.rst:1001 -msgid "Projector Slide PP Module 9 Participant's computer" -msgstr "Proyektor Slide PP Modul 9 Komputer peserta" - -# 7b222ed738544161862ee94e4a51ab0a -#: ../../source/training/curriculum/curriculum.rst:1009 -msgid "" -"**Data Analysis using QGIS and** |project_name| **Beginner Level Workshop**" -msgstr "" -"**Analisis Data menggunakan QGIS dan ** |project_name| **Lokakarya Tingkat " -"Dasar**" - -# 6ddc6914861042efbd85325d684aad3d -#: ../../source/training/curriculum/curriculum.rst:1018 -msgid "**1. Using GIS to develop scenario for contingency planning (1 Hour)**" -msgstr "" -"**1. Penggunaan SIG untuk pengembangan skenario rencana kontijensi (1 Jam)**" - -# 3fb6e71bc6774df8ac4c25b370fb5bca -#: ../../source/training/curriculum/curriculum.rst:1022 -msgid "Explain GIS terminology" -msgstr "Menjelaskan pengertian dari SIG" - -# 50725d9c4eb64c8eb967ced4ab5080e6 -# d76429b19a314c9985c038b73604af87 -#: ../../source/training/curriculum/curriculum.rst:1023 -msgid "Terminology of Geographic information System (GIS)" -msgstr "Pengertian Sistem Informasi Geografis (SIG)" - -# 3be08f6f55af44919f4f0d015a2d1569 -#: ../../source/training/curriculum/curriculum.rst:1020 -msgid "" -"Participants watch presentation from facilitator and discuss about the " -"difference between data and information, and Geographic Information System " -"(GIS) terminology" -msgstr "" -"Para peserta memperhatikan penjelasan fasilitator dan berdiskusi mengenai " -"perbedaan antara data dan informasi, dan pengertian Sistem Informasi " -"Geografis (SIG)" - -# 505e977065484fe9b3a49174aa232fa5 -# 5c938589e74a4af1896a07fd619c8806 -#: ../../source/training/curriculum/curriculum.rst:1020 -#: ../../source/training/curriculum/curriculum.rst:1028 -msgid "45 Minutes" -msgstr "45 menit" - -# b4a3e1ddc3c34de4b29887a87c922d42 -# b7317a30756f49d2b88a6c12a9da101d -# b06b0416921648528f917b154cb4dfb3 -# 652bc475249a422395b0321c4d5be131 -#: ../../source/training/curriculum/curriculum.rst:1020 -#: ../../source/training/curriculum/curriculum.rst:1028 -#: ../../source/training/curriculum/curriculum.rst:1135 -#: ../../source/training/curriculum/curriculum.rst:1321 -msgid "Test" -msgstr "Tes" - -# aac179a040184cb5ae95b2ce1d1a7d4c -# 0505998b2d184e949aa6544718ac5a52 -#: ../../source/training/curriculum/curriculum.rst:1020 -#: ../../source/training/curriculum/curriculum.rst:1165 -msgid "Projector Slide PP Module 1" -msgstr "Proyektor Slide PP Modul 1" - -# 294fd22d98794107beb8fcee3c1d7def -#: ../../source/training/curriculum/curriculum.rst:1026 -msgid "**2. InaSAFE for Contingency Planning (1 Hour)**" -msgstr "**2. QGIS dan InaSAFE untuk Rencana kontijensi (1 Jam)**" - -# f4edb18f5e634f5abe701d2774f5749d -#: ../../source/training/curriculum/curriculum.rst:1030 -msgid "GIS for Preparing contingency planning" -msgstr "SIG untuk Mempersiapkan Rencana Kontinjensi" - -# 0b02848deee84308a0bf2d9e39851b80 -#: ../../source/training/curriculum/curriculum.rst:1032 -msgid "QGIS and InaSAFE" -msgstr "QGIS dan InaSAFE" - -# e3c120f96d1944258db14505f2889850 -#: ../../source/training/curriculum/curriculum.rst:1028 -msgid "" -"Facilitator explains about GIS for contingency planning and the importance " -"of data in QGIS and InaSAFE" -msgstr "" -"Fasilitator menjelaskan mengenai SIG untuk rencana kontinjensi dan " -"pentingnya data di QGIS dan InaSAFE" - -# 35b7282c7f914a0798d3b446760355ca -# 181cf551138141948c280208fe9627f5 -#: ../../source/training/curriculum/curriculum.rst:1028 -#: ../../source/training/curriculum/curriculum.rst:1332 -msgid "Projector Slide PP Module 2" -msgstr "Proyektor Slide PP Modul 2" - -# 24ca8a34273b4e8e99850d6951970dbd -#: ../../source/training/curriculum/curriculum.rst:1034 -msgid "**3. QGIS Installation and QGIS User Interface Layout (5 Hours)**" -msgstr "" -"**3. Installasi QGIS dan Penggunaan Tampilan Antarmuka Layout pada QGIS (5 " -"Jam)**\t" - -# 296626e2ee5c4b03ad24e4bdab376411 -# 0d58a16209cc4935a1ee55747343e795 -#: ../../source/training/curriculum/curriculum.rst:1040 -msgid "QGIS User interface layout" -msgstr "Layout Tampilan antarmuka pengguna QGIS" - -# f2d4a96bfc564e51921b6af3415db4ca -#: ../../source/training/curriculum/curriculum.rst:1036 -msgid "" -"Participants practise how to get QGIS, install QGIS, set up QGIS, add vector " -"layers, basic QGIS tools, panning map" -msgstr "" -"Para peserta mempraktikkan bagaimana mendapatkan QGIS, instal QGIS, " -"pengaturan QGIS, menambahkan layer vektor, alat QGIS dasar, menggeser peta" - -# 799eac5d83124e73bbc0c96be72fdd09 -#: ../../source/training/curriculum/curriculum.rst:1036 -msgid "" -"Projector Slide PP Module 3 Participant's computer QGIS Installation file" -msgstr "Proyektor Slide PP Modul 3 Komputer peserta File installasi QGIS" - -# cda0e485a41d48e49125265768d32803 -#: ../../source/training/curriculum/curriculum.rst:1046 -msgid "**4. QGIS Plugin (2 Hours)**" -msgstr "**4. Plugin pada QGIS (2 Jam)**" - -# 480c384f67f84e57ac9c6ca85180ab7c -#: ../../source/training/curriculum/curriculum.rst:1048 -msgid "" -"Participants learn how to manage plugins, install new plugins, and OpenLayer " -"plugin" -msgstr "" -"Para peserta belajar bagaimana mengatur plugin, menginstal plugin baru, dan " -"plugin OpenLayer" - -# cc490d63b8a14b0f952e5f9c372281a1 -# 1396ba25fec64def8ac2c7407285508f -#: ../../source/training/curriculum/curriculum.rst:1048 -msgid "105 Minutes" -msgstr "105 menit" - -# 25c59d982c0544d8892cab3c0991e70c -# c2d935b949d740da8bae0dd07175afd2 -#: ../../source/training/curriculum/curriculum.rst:1048 -#: ../../source/training/curriculum/curriculum.rst:1200 -msgid "Projector Slide PP Module 4 Participant's computer" -msgstr "Proyektor Slide PP Modul 4 Komputer peserta" - -# cb89a0f5eb884a33ab7191a8be5d6640 -#: ../../source/training/curriculum/curriculum.rst:1055 -msgid "**5. Projection systems and Transformation (2 Hours)**" -msgstr "**5. Sistem Proyeksi dan Transformasi (2 Jam)**" - -# 783f4c2adbaa45e2b2a2f17e3b6ed6aa -# 79e67b35a31841eebcbd9c9927194bb9 -# 3377ce0352314e518da1dc2759146b01 -# 19ab1a228ea74e6880d70e45d1e5b884 -#: ../../source/training/curriculum/curriculum.rst:1062 -msgid "Making its own projection" -msgstr "Membuat proyeksi sendiri" - -# a866be4b27a24a1abb4f643f9c2935ef -#: ../../source/training/curriculum/curriculum.rst:1057 -msgid "Participants learn about Coordinate Reference System (CRS)" -msgstr "" -"Para peserta belajar mengenai Sistem Referensi Koordinat (CRS - Coordinate " -"Reference System)" - -# 905b4279c0e64d699ab4c3c5527ddb87 -#: ../../source/training/curriculum/curriculum.rst:1060 -msgid "" -"Participants practise how to reproject with \"on the fly\" projection, how " -"to deal with different CRS, and how to set custom projection" -msgstr "" -"Para peserta mempraktikkan proyeksi ulang \"on the fly\", dataset dengan CRS " -"berbeda, dan pembuatan proyeksi sendiri" - -# f2eabc0145b64649b1b668f4515d214b -# d65fa544a64345a7bbf2523ad8f24057 -# 345df94756af43e0b850fe1d70d2e05d -#: ../../source/training/curriculum/curriculum.rst:1057 -#: ../../source/training/curriculum/curriculum.rst:1211 -#: ../../source/training/curriculum/curriculum.rst:1292 -msgid "Projector Slide PP Module 5 Participant's computer" -msgstr "Proyektor Slide PP Modul 5 Komputer peserta" - -# d563c06a6c474913a172b4c35a9a7f2f -#: ../../source/training/curriculum/curriculum.rst:1066 -msgid "**6. Vector Data (3 Hours)**" -msgstr "**6. Data Vektor (3 Jam)**" - -# 7e86c5f035d64169a864de8cda2cc1a4 -#: ../../source/training/curriculum/curriculum.rst:1068 -msgid "" -"Participants learn from facilitator about vector data and its attributes" -msgstr "Para peserta belajar dari fasilitator mengenai data vektor dan atribut" - -# fd3eccee269243d59218fa234e8710e8 -#: ../../source/training/curriculum/curriculum.rst:1072 -msgid "Participants practise how to add vector layers and do symbology" -msgstr "" -"Para peserta mempraktikkan bagaiman menambahkan layer vektor dan simbologi" - -# 9e927e1543374ee381b894fd2c40f5af -# a89f7a38978447ca8df2aae6d1e22ba6 -# d125e7ca9ef344ad97efea0e447ef93d -# 626b62e14ac040c18bad536363eb836d -#: ../../source/training/curriculum/curriculum.rst:1068 -#: ../../source/training/curriculum/curriculum.rst:1077 -#: ../../source/training/curriculum/curriculum.rst:1086 -#: ../../source/training/curriculum/curriculum.rst:1095 -msgid "135 Minutes" -msgstr "135 menit" - -# 440aebb098e3420fae8706c2cff70331 -#: ../../source/training/curriculum/curriculum.rst:1068 -msgid "" -"Projector Slide PP Module 6 Participant's computer Example file contain " -"vector data" -msgstr "" -"Proyektor Slide PP Modul 6 Komputer peserta File contoh yang berisi data " -"vektor" - -# 47d7451186444215b744859e4157bc41 -#: ../../source/training/curriculum/curriculum.rst:1075 -msgid "**7. Label and classification (3 Hours)**" -msgstr "**7. Label dan klasifikasi (3 jam)**" - -# 753efa41b48f4ef697550639ffe276bf -#: ../../source/training/curriculum/curriculum.rst:1077 -msgid "" -"Participants learn about attribute data, labeling tools, and classifying " -"attributes" -msgstr "" -"Para peserta belajar mengenai data atribut, tool label, dan klasifikasi " -"atribut" - -# 1f064b0f0de74f6bac0bc04c5dfebad2 -#: ../../source/training/curriculum/curriculum.rst:1077 -msgid "" -"Projector Slide PP Module 7 Participant's computer Example file contain " -"vector data" -msgstr "" -"Proyektor Slide PP Modul 7 Komputer peserta File contoh yang berisi data " -"vektor" - -# 3f0e00b7008a45d18139c95d19188d6c -#: ../../source/training/curriculum/curriculum.rst:1084 -msgid "**8. Raster data (3 Hours)**" -msgstr "**8. Data raster (3 jam)**" - -# 38790cb0bd4940cfb2c0a449ddcacfdd -#: ../../source/training/curriculum/curriculum.rst:1086 -msgid "" -"Participants learn and practise how to add raster layer, change its symbol, " -"and doing simple terrain analysis." -msgstr "" -"Para peserta mempraktikkan bagaimana menambahkan layer raster, mengubah " -"simbol, dan melakukan analisis terrain" - -# ddd21a0e16fe43a38c79e9dc0214fae4 -#: ../../source/training/curriculum/curriculum.rst:1086 -msgid "" -"Projector Slide PP Module 8 Participant's computer Example file contain " -"Raster" -msgstr "" -"Proyektor Slide PP Modul 8 Komputer peserta File contoh yang berisi data " -"raster" - -# 926eda9ba0e4481b9a3a98d2251b6d8d -#: ../../source/training/curriculum/curriculum.rst:1093 -msgid "**9. Creating new Vector data (3 Hours)**" -msgstr "**9. Membuat data vektor baru (3 jam)**" - -# c4bea7e17c0d43019f636efcd8a46946 -#: ../../source/training/curriculum/curriculum.rst:1095 -msgid "" -"Participants learn and practise how to add raster layers, change its " -"symbology, and do simple terrain analysis" -msgstr "" -"Para peserta mempraktikkan bagaimana menambahkan layer raster, mengubah " -"simbol, dan melakukan analisis terrain" - -# 0652ec97090745219e38673b90aab59b -#: ../../source/training/curriculum/curriculum.rst:1095 -msgid "" -"Projector Slide PP Module 8 Participant's computer Example file contain " -"raster" -msgstr "" -"Proyektor Slide PP Modul 8 Komputer peserta File contoh yang berisi data " -"raster" - -# 4a77c80e9b2c456688ed96fa21bfcb43 -#: ../../source/training/curriculum/curriculum.rst:1102 -msgid "**10. Vector analysis (6 Hours)**" -msgstr "**10. Analisis vektor (6 jam)**" - -# 37599a4f73854164ba035db4e5d39807 -#: ../../source/training/curriculum/curriculum.rst:1104 -msgid "Participants discuss about GIS process, problems, and data" -msgstr "Para peserta berdiskusi mengenai proses SIG, permasalahan, dan data" - -# e08789d2b1894bd889532c7480d57755 -#: ../../source/training/curriculum/curriculum.rst:1107 -msgid "" -"Participants learn and practise how to start a project, analyse problems, " -"determining hazard zone, search for important roads and health facilities, " -"buffering, and choosing right size for land area" -msgstr "" -"Para peserta belajar dan mempraktikkan bagaimana memulai proyek, analisis " -"masalah, menentukan zona ancaman, mencari jalan penting dan fasilitas " -"kesehatan, buffer jalan, dan memilih area lahan dengan ukuran yang tepat." - -# 14d569dcefef438087dfb859c478fd9c -#: ../../source/training/curriculum/curriculum.rst:1104 -msgid "210 Minutes" -msgstr "210 menit" - -# dfe449da1b56419499699899880bc599 -#: ../../source/training/curriculum/curriculum.rst:1104 -msgid "Projector Slide PP Module 9 Module 10 Participant's computer" -msgstr "Proyektor Slide PP Modul 9 Modul 10 Komputer peserta" - -# 85ea8c07c3534af9b6a6d19287e77085 -#: ../../source/training/curriculum/curriculum.rst:1120 -msgid "**11. Map Layout with Map Composer (8 Hours)**" -msgstr "**11. Layout Peta dengan Map Composer (8 Jam)**" - -# eb8905dc771e496eae41705bf8d8baaa -#: ../../source/training/curriculum/curriculum.rst:1122 -msgid "" -"Participants practise how to lay out a map in Map Composer: add a new map, " -"add a title, add scale, add a grid, add an inset, add a legend, and print map" -msgstr "" -"Para peserta mempraktikkan layout peta di Map Composer: menambahkan peta " -"baru, menambahkan judul, menambahkan skala, menambahkan grid, menambahkan " -"inset, menambahkan legenda, dan mencetak peta" - -# 90e4b67f7dac401a977021ec1da3841c -#: ../../source/training/curriculum/curriculum.rst:1122 -msgid "4 hours 30 minutes" -msgstr "4 jam 30 menit" - -# 9e8dc8dee0934513951200655d777b2a -#: ../../source/training/curriculum/curriculum.rst:1122 -msgid "Projector Slide PP Module 11 Participant's computer" -msgstr "Proyektor Slide PP Modul 11 Komputer peserta" - -# 71f0da6a58794497ad05bae113c3099a -#: ../../source/training/curriculum/curriculum.rst:1133 -msgid "**12. Working with InaSAFE (8 Hours)**" -msgstr "**12. Bekerja dengan InaSAFE (8 Jam)**" - -# 260776b3421a41bd8217bdb46debfd22 -#: ../../source/training/curriculum/curriculum.rst:1135 -msgid "Use InaSAFE" -msgstr "Menggunakan InaSAFE" - -# cc5101f9665f4172af698e1749eb8cf7 -#: ../../source/training/curriculum/curriculum.rst:1136 -msgid "Understand the concept of hazard, exposure, and impact data" -msgstr "" -"Memahami konsep dari Ancaman Bencana, Keterpaparan, dan Data Dampak Bencana" - -# 26a03fa4803f430f87a102a0fb46eeb9 -#: ../../source/training/curriculum/curriculum.rst:1138 -msgid "InaSAFE interface" -msgstr "Tampilan Antarmuka InaSAFE" - -# 6493deb9b8714797ae8f4fa9b11ee908 -#: ../../source/training/curriculum/curriculum.rst:1143 -msgid "Improving InaSAFE maps output" -msgstr "Meningkatkan Output Peta InaSAFE" - -# 6bb098b0fb7d4084a6b6cab1be187ed2 -#: ../../source/training/curriculum/curriculum.rst:1135 -msgid "" -"Participants discuss about hazard, exposure, impact and InaSAFE user user " -"interface." -msgstr "" -"Para peserta berdiskusi mengenai ancaman, paparan, dampak dan tampilan antar " -"muka InaSAFE." - -# e0bb3a6fd10649fd903a0074fdf2cb01 -#: ../../source/training/curriculum/curriculum.rst:1135 -msgid "4 Hours 30 Minutes" -msgstr "4 jam 30 menit" - -# f4fe0c3bd3974866958b66f3af1da82c -#: ../../source/training/curriculum/curriculum.rst:1135 -msgid "Projector Slide PP Module 12 Participant's computer" -msgstr "Proyektor Slide PP Modul 12 Komputer peserta" - -# 5c4ba46b511a4834803c38b980ad64e7 -#: ../../source/training/curriculum/curriculum.rst:1147 -msgid "**13. Social media to keep QGIS and InaSAFE interaction (1 Hours)**" -msgstr "" -"**13. Media sosial untuk menjaga interaksi antarpengguna QGIS dan InaSAFE (1 " -"jam)**" - -# c1a2fe2ab2294cbf822bf69341a788a9 -#: ../../source/training/curriculum/curriculum.rst:1149 -msgid "" -"Participants are expected to keep up to date with social media through " -"Facebook or QGIS forum." -msgstr "" -"Para peserta diharapkan untuk tetap menjaga interaksi dan mendapatkan " -"informasi terkini melalui Facebook atau forum QGIS." - -# db6640e91fe240b8b804afb9fcf7f2c9 -#: ../../source/training/curriculum/curriculum.rst:1149 -msgid "60 Minutes" -msgstr "60 menit" - -# d2aecdb7a8a042298b674ab00c7e5476 -#: ../../source/training/curriculum/curriculum.rst:1149 -msgid "Projector Slide PP Module 13 Participant's Computer" -msgstr "Proyektor Slide PP Modul 13 Komputer peserta" - -# 163f31edefa9410da9878585e5089014 -#: ../../source/training/curriculum/curriculum.rst:1155 -msgid "**Data collection using OSM Intermediate Level Workshop**" -msgstr "**Lokakarya Pengumpulan Data Menggunakan OSM Tingkat Menengah**" - -# ee9e99cbd5d147d4ae9dd879a266038e -#: ../../source/training/curriculum/curriculum.rst:1163 -msgid "**1. Advanced Editing (6 Hours)**" -msgstr "**1. Teknik Editing Lebih Lanjut (6 Jam)**" - -# 0c34d268e34f487a88dc49d15ea04bb8 -#: ../../source/training/curriculum/curriculum.rst:1167 -msgid "Make relations between objects" -msgstr "Membuat relasi antar objek" - -# cadef9742a104835a91492be3d760319 -#: ../../source/training/curriculum/curriculum.rst:1165 -msgid "" -"Participants practise using more editing tools in JOSM and create relations " -"between objects" -msgstr "" -"Para peserta mempraktikkan penggunaan tool edit di JOSM dan membuat relasi " -"antar objek" - -# d7456a38e1414454bd9dbb14fb91d530 -#: ../../source/training/curriculum/curriculum.rst:1165 -msgid "4 Hours" -msgstr "4 Jam" - -# 1868c7364b2b4f779408f9388eaa4fdf -#: ../../source/training/curriculum/curriculum.rst:1169 -msgid "Participant's computer" -msgstr "Komputer peserta" - -# 837ba6643ef34d4bba83656a586b5071 -#: ../../source/training/curriculum/curriculum.rst:1172 -msgid "Exercise file in USB stick" -msgstr "Contoh file latihan pada flashdisk " - -# b9f05be2af4a4311aecafb895f70e507 -#: ../../source/training/curriculum/curriculum.rst:1174 -msgid "(tools_menu_sample.osm and utilsplugin2_sample.osm)" -msgstr "(tools_menu_sample.osm dan utilsplugin2_sample.osm)" - -# 8da2546a0a73410eb199176ef976c5a7 -#: ../../source/training/curriculum/curriculum.rst:1177 -msgid "**2. Quality Assurance (6 Hours)**" -msgstr "**2. Penjaminan Kualitas (6 Jam)**" - -# c442add54aac4109b0517b6e97a6efb6 -#: ../../source/training/curriculum/curriculum.rst:1179 -msgid "" -"Participants practise editing tips and giving presets based on standard to " -"improve the quality assurance of OSM data by using validation tools in JOSM, " -"and online validation tools (KeepRight)" -msgstr "" -"Para peserta mempraktikkan penerapan tips editing dan standarisasi preset " -"untuk menjamin kualitas data OSM menggunakan alat validasi di JOSM, dan alat " -"validasi online (KeepRight)" - -# 20c38e6ddc6d4c5e80eabad119cdf3f4 -#: ../../source/training/curriculum/curriculum.rst:1179 -msgid "4 Hours 15 Minutes" -msgstr "4 Jam 15 menit" - -# b7858e1e2fb34be89d086373f3b0bb90 -# 6a028255f5384a48831a4b8f0f5458fe -#: ../../source/training/curriculum/curriculum.rst:1179 -#: ../../source/training/curriculum/curriculum.rst:1257 -msgid "Projector Slide PP Module 2 Participant's computer" -msgstr "Proyektor Slide PP Modul 2 Komputer peserta" - -# 80da76844de94bd98924b7532960e659 -#: ../../source/training/curriculum/curriculum.rst:1189 -msgid "**3. Resolving conflicts when uploading OSM data (3 Hours)**" -msgstr "**3. Penyelesaian Konflik ketika mengupload data OSM (3 Jam)**" - -# e9077ab263604da19a54f040df85ab84 -#: ../../source/training/curriculum/curriculum.rst:1191 -msgid "Participants discuss how conflicts can happen when uploading OSM data" -msgstr "" -"Para peserta mendiskusikan penyebab terjadinya konflik ketika mengupload " -"data OSM" - -# 516b0e5a28304d3e80b87dda7b96d350 -#: ../../source/training/curriculum/curriculum.rst:1194 -msgid "" -"Participants practise conflict resolution and how to avoid conflicts when " -"uploading OSM data" -msgstr "" -"Para peserta mempraktikkan penyelesaian konflik dan bagaimana menghindari " -"konflik ketika mengupload data OSM" - -# 3a73f82baa8d4350bb6a59e84d7465cb -#: ../../source/training/curriculum/curriculum.rst:1191 -msgid "2 Hours" -msgstr "2 Jam" - -# fd1030c7c39e46ef8c3c2206f49aa548 -#: ../../source/training/curriculum/curriculum.rst:1198 -msgid "**4. XML and presets in JOSM (5 hours)**" -msgstr "**4. XML dan presets pada JOSM (5 Jam)**" - -# ed54e84ab65f44cf919ca8583ee6ddca -#: ../../source/training/curriculum/curriculum.rst:1200 -msgid "Participants learn from facilitator about tags, XML, keys and values." -msgstr "" -"Para peserta belajar dari fasilitator mengenai *tag*, XML, *key* dan *value*." - -# 46f1f1a07c194214baec36b2d8e8dc56 -#: ../../source/training/curriculum/curriculum.rst:1204 -msgid "" -"Participants practise making their own preset file, setting up preset files " -"in JOSM, and applying a new preset to some objects." -msgstr "" -"Para peserta mempraktikkan pembuatan file preset, memasukkan file preset ke " -"dalam JOSM, dan mengaplikasikan preset baru ke objek." - -# 637c2954103d44678aa4676a2286be96 -#: ../../source/training/curriculum/curriculum.rst:1200 -msgid "150 Minutes" -msgstr "150 menit" - -# 7f6577456b834291a2444bdb50440179 -#: ../../source/training/curriculum/curriculum.rst:1209 -msgid "**5. Using Private Datastore (3 Hours)**" -msgstr "**5. Penggunanaan Private Datastore (3 Jam)**" - -# 5e8ca7d2e0e6457ca735fb5b13d48e4a -#: ../../source/training/curriculum/curriculum.rst:1211 -msgid "" -"Participants watch presentation from facilitator about private data store " -"function and discuss about the kind of data that can go public and should go " -"private." -msgstr "" -"Para peserta memperhatikan penjelasan dari fasilitator mengenai fungsi " -"*private data store* dan berdiskusi mengenai jenis data yang dapat " -"dipublikasikan dan data yang bersifat pribadi." - -# 393c6b64eaca4bf2a73d15bdfbccb4c5 -#: ../../source/training/curriculum/curriculum.rst:1217 -msgid "Participants practise installing" -msgstr "Para peserta mempraktikkan cara menginstal" - -# 92dc43201ce844c6a5fd431bc4cfdd4b -#: ../../source/training/curriculum/curriculum.rst:1219 -msgid "" -"private data store plugin in JOSM and how to use the plugin also how the " -"plugin works, and accessing the data store via web." -msgstr "" -"plug-inprivate data storeke dalam JOSM, menggunakan plug-inprivate data " -"store dalam memilah data umum dan privasi, dan mengakses datastore secara " -"online" - -# d502f3627d0a4c42a40709a5268a52d5 -#: ../../source/training/curriculum/curriculum.rst:1211 -msgid "120 Minutes" -msgstr "120 menit" - -# 3d2a41cfd69f4daa94529abe5594f2f5 -#: ../../source/training/curriculum/curriculum.rst:1225 -msgid "**6. OpenStreetMap Wiki (3 Hours)**" -msgstr "**6. Wiki OpenStreetMap (3 Jam)**" - -# aaf3386446544f0fb2095a1b496c0db0 -#: ../../source/training/curriculum/curriculum.rst:1227 -msgid "Participants do a FGD about OpenStreetMap Wiki." -msgstr "Para peserta melakukan FGD mengenai Wiki OpenStreetMap." - -# 154ba84d6fb5440aaf4064de1cac8233 -#: ../../source/training/curriculum/curriculum.rst:1230 -msgid "" -"Participants practise how to create OSM wiki account, edit wiki, learning " -"about wiki format, create new wiki page, upload images, translate pages, and " -"view the changelog." -msgstr "" -"Para peserta mempraktikkan bagaimana membuat akun wiki OSM, edit wiki, " -"belajar mengenai format penulisan wiki, membuat halaman baru wiki, upload " -"gambar, menerjemahkan halaman, dan melihat daftar perubahan." - -# 8e56ebec7d714aa3b6beaa1af5f9279d -#: ../../source/training/curriculum/curriculum.rst:1227 -msgid "2 hours" -msgstr "2 Jam" - -# a9a387fa8e604b4a829b1fa86a2f87b3 -#: ../../source/training/curriculum/curriculum.rst:1227 -msgid "Projector Slide PP Module 6 Participant's Computer" -msgstr "Proyektor Slide PP Modul 6 Komputer peserta" - -# 4c5f6c04e96940a8b9e5907a7b348ba1 -#: ../../source/training/curriculum/curriculum.rst:1239 -msgid "**Data Analysis using QGIS and InaSAFE Intermediate Level Workshop**" -msgstr "" -"**Lokakarya Analisis Data menggunakan QGIS dan InaSAFE Tingkat Menengah**" - -# 27db4225ca964232a55048dfcc3398b8 -#: ../../source/training/curriculum/curriculum.rst:1247 -msgid "**1. QGIS Review (3 Hours)**" -msgstr "**1. Review QGIS (3 jam)**" - -# 7889234eb84c4675b0ba8bf5a7aa4f8c -#: ../../source/training/curriculum/curriculum.rst:1249 -msgid "Participants discuss about QGIS data type, symbology, and map layout." -msgstr "" -"Para peserta berdiskusi mengenai jenis data QGIS, pengaturan simbologi, dan " -"layout peta." - -# 773cf317af4f4fa9afed7f015a49849f -#: ../../source/training/curriculum/curriculum.rst:1249 -msgid "135 minutes" -msgstr "135 menit" - -# 4010a5adbf5346859dd7ef6bfb3ab29a -#: ../../source/training/curriculum/curriculum.rst:1249 -msgid "Projector Slide PP Module 1 Participant's computer" -msgstr "Proyektor Slide PP Modul 1 Komputer peserta" - -# b6f801c023d24d2da2496f86e05e2f78 -#: ../../source/training/curriculum/curriculum.rst:1255 -msgid "**2. Preparing data and keywords for InaSAFE (4 Hours)**" -msgstr "**2. Persiapan data dan kata kunci untuk InaSAFE (4 Jam)**" - -# 38f69e253b1a43e58de575dbfb710b7f -#: ../../source/training/curriculum/curriculum.rst:1257 -msgid "**Preparing Data and keywords for** |project_name|" -msgstr "**Mempersiapkan Data dan Kata Kunci untuk** |project_name|" - -# 5916ff18483e497c85302e27ae47abeb -#: ../../source/training/curriculum/curriculum.rst:1257 -msgid "" -"Participants watch explanation about input data in InaSAFE from facilitator" -msgstr "" -"Para peserta memperhatikan penjelasan mengenai memasukkan data di InaSAFE " -"dari fasilitator" - -# 931b590526f34b48bda9d54c926a260a -#: ../../source/training/curriculum/curriculum.rst:1261 -msgid "" -"Participants learn to get exposure data from HOT Exports, input data, add " -"keywords, prepare hazard layer, and run InaSAFE" -msgstr "" -"Para peserta belajar untuk memperoleh data paparan dari HOT Export, " -"memasukkan data, menambahkan kata kunci, mempersiapkan layer ancaman, dan " -"menjalankan InaSAFE" - -# 0488d97d918348649972a94c5f28621c -#: ../../source/training/curriculum/curriculum.rst:1267 -msgid "" -"**3. Temporary IDP (Internally Displaced Persons) camps planning (4 Hours)**" -msgstr "**3. Perencanaan Tempat Evakuasi Sementara (4 Jam)**" - -# 8c413591377a4be79e676bd7f009e698 -#: ../../source/training/curriculum/curriculum.rst:1269 -msgid "Participants practise QGIS analysis to determine temporary IDP camps" -msgstr "" -"Para peserta mempraktikkan analisis QGIS untuk menentukan tempat evakuasi " -"sementara" - -# 11044cc7bca0432aa978aa0fe083c958 -# 57f886f577c54be082d746d3585113fc -#: ../../source/training/curriculum/curriculum.rst:1269 -#: ../../source/training/curriculum/curriculum.rst:1283 -msgid "225 minutes" -msgstr "225 menit" - -# 5c15774ce1f54bce9e7977d5af841d16 -#: ../../source/training/curriculum/curriculum.rst:1281 -msgid "**4. Evacuation route planning (3 Hours)**" -msgstr "**4. Perencanaan Jalur Evakuasi (3 Jam)**" - -# c185a17a5b964ff7bac5708551046a3c -#: ../../source/training/curriculum/curriculum.rst:1283 -msgid "Participants learn about road graph plugin in QGIS." -msgstr "Para peserta belajar mengenai plugin road graph di QGIS." - -# f2459ae28ba44d44bfee825d886b445f -#: ../../source/training/curriculum/curriculum.rst:1286 -msgid "" -"Participants practise how to set up road graph plugin, and choose start and " -"end points" -msgstr "" -"Para peserta mempraktikkan bagaimana menggunakan plugin road graph, dan " -"memilih titik awal dan akhir" - -# 3d9c20bc030a4801b2ab592dcfa2c468 -#: ../../source/training/curriculum/curriculum.rst:1290 -msgid "**5. Damages and losses assessment (4 Hours)**" -msgstr "**5. Penilaian Kerusakan dan Kerugian (4 Jam)**" - -# 026d62ce7883452da4fef78e72e0c2d8 -#: ../../source/training/curriculum/curriculum.rst:1292 -msgid "Participants discuss about BPBD's damage and losses assessment guide." -msgstr "" -"Para peserta berdiskusi mengenai panduan penilaian kerusakan dan kerugian " -"BPBD." - -# d797724e094c48a5971a40991a1bc662 -#: ../../source/training/curriculum/curriculum.rst:1296 -msgid "" -"Participants learn how to calculate damage and losses using group stat " -"plugin, join data, and create a diagram." -msgstr "" -"Para peserta belajar bagaimana menghitung kerusakan dan kerugian menggunakan " -"plugin group stat, penggabungan data, dan membuat diagram." - -# f76bf1fd8cca484894846e2af44584d9 -#: ../../source/training/curriculum/curriculum.rst:1292 -msgid "210 minutes" -msgstr "210 menit" - -# af524a1ed2fc40d0b20ce7e3b0a2e8f9 -#: ../../source/training/curriculum/curriculum.rst:1310 -msgid "" -"**Training of Trainer workshop for contingency planning using OSM, QGIS, and " -"InaSAFE**" -msgstr "" -"**Lokakarya Training of Trainer untuk Rencana Kontinjensi menggunakan OSM, " -"QGIS, dan InaSAFE**" - -# dc51f2fb98414e3ca19cd9a7be37d9ba -#: ../../source/training/curriculum/curriculum.rst:1312 -msgid "" -"**Standard Competency:** Teaching data collection and analysis with OSM, " -"QGIS and |project_name| in their respective region" -msgstr "" -"**Kompetensi Dasar:** Peserta mengajarkan pengumpulan data dan analisis " -"dengan OSM, QGIS dan |project_name| di wilayah mereka masing-masing" - -# 1562267bcacd4307ad74ce496794fe16 -#: ../../source/training/curriculum/curriculum.rst:1319 -msgid "**1. Adult Learning (2 Hours)**" -msgstr "**1. Pembelajaran untuk Orang Dewasa (2 jam)**" - -# f0809e1f75fd421382b5b2534f52d85f -#: ../../source/training/curriculum/curriculum.rst:1323 -msgid "Analysing the characteristics of adult learning" -msgstr "Menganalisis karakteristik pembelajaran untuk orang dewasa" - -# 65c1f6047abe4bdeafd153d4ed09d710 -# c4b489f06ff342bfbe98dc46e473abea -#: ../../source/training/curriculum/curriculum.rst:1324 -msgid "" -"Determining strategies, teaching methods or techniques that apply adult " -"learning" -msgstr "" -"Mengidentifikasi strategi, metode pembelajaran atau teknik yang digunakan " -"dalam pembelajaran orang dewasa" - -# e1e63132614b49cd85059acf94abe4d2 -# bd860a5b9b1b4e1fbc8b81c9d62bc207 -#: ../../source/training/curriculum/curriculum.rst:1326 -msgid "Evaluating adult learning" -msgstr "Mengevaluasi pembelajaran orang dewasa" - -# 6a35d892fbaf4217a7a4ba630f732ec7 -#: ../../source/training/curriculum/curriculum.rst:1321 -msgid "" -"Participants learn about characteristics and principles of adult learning" -msgstr "" -"Para peserta belajar mengenai karakteristik dan prinsip pembelajaran untuk " -"orang dewasa" - -# 1d68b78a1b074b6cba4a15701a2845b3 -#: ../../source/training/curriculum/curriculum.rst:1324 -msgid "Participants discuss about strategy of adult learning" -msgstr "" -"Para peserta berdiskusi mengenai strategi pembelajaran untuk orang dewasa" - -# 13a492ed3eaa429a80c43efddd2f5863 -#: ../../source/training/curriculum/curriculum.rst:1326 -msgid "Participants discuss in pairs about how to evaluate adult learning" -msgstr "" -"Para peserta berdiskusi secara terpisah mengenai bagaimana cara mengevaluasi " -"pembelajaran untuk orang dewasa" - -# 7d599c94efc044e3a3f56e6faf8f54ff -# 63afd7594dbc461ba07e09a4e46296ff -# 61c791a776524e21922b8cbf1308e8d0 -#: ../../source/training/curriculum/curriculum.rst:1321 -#: ../../source/training/curriculum/curriculum.rst:1332 -#: ../../source/training/curriculum/curriculum.rst:1340 -msgid "90 minutes" -msgstr "90 menit" - -# 497feb1212794f9abbfd3f82a88e3e68 -#: ../../source/training/curriculum/curriculum.rst:1321 -msgid "Projector Slide PPT Module 1 Plano Paper HVS Paper Small ball Music" -msgstr "Proyektor Slide PPT Modul 1 Kertas Plano Kertas HVS Bola kecil Musik" - -# 5caa8d5f280d49f38766d83d89dc30da -#: ../../source/training/curriculum/curriculum.rst:1330 -msgid "**2. Communication skill (2 Hours)**" -msgstr "**2. Keterampilan Berkomunikasi (2 jam)**" - -# ca0a6433f8ad475c89179a75079b6579 -# 52dba535f5754dee96affc636e328268 -#: ../../source/training/curriculum/curriculum.rst:1334 -msgid "Describing the communication models in workshop" -msgstr "Mendeskripsikan contol komunikasi dalam lokakarya" - -# f29d6c2164ce4b6ebf05f0300c6ed5a4 -# b123e38f556a418298d4267691f22bd0 -#: ../../source/training/curriculum/curriculum.rst:1335 -msgid "Demonstrate the basic skills component of teaching / workshop" -msgstr "Demonstrasi komponen keterampilan dasar dari mengajar / lokakarya" - -# 3810bfa73d5844bd9cb7ed1b6c95fc7e -#: ../../source/training/curriculum/curriculum.rst:1332 -msgid "Participants learn about effective communication" -msgstr "Para peserta belajar mengenai komunikasi yang efektif" - -# f959454e2ecb48c0808b67a1529736db -#: ../../source/training/curriculum/curriculum.rst:1334 -msgid "Participants discuss about communication models in the workshop setting" -msgstr "Para peserta berdiskusi mengenai contoh komunikasi pada lokakarya" - -# fe55b75063624970b2bb890e18951fc4 -#: ../../source/training/curriculum/curriculum.rst:1338 -msgid "" -"**3. Facilitator skills for data collection and analysis through OSM, QGIS," -"and** |project_name| **workshop (2 hours)**" -msgstr "" -"**3. Keterampilan fasilitator untuk pengumpulan data analisis dalam " -"lokakarya OSM, QGIS, dan** |project_name| **pelatihan (2 jam)**" - -# 505455d1d4f840aca19af997cd5e1dd4 -#: ../../source/training/curriculum/curriculum.rst:1340 -msgid "" -"Practise data collection and analysis through OSM, QGIS, and InaSAFE workshop" -msgstr "" -"Mempraktikan pengumpulan data dan analisis dalam lokakarya OSM, QGIS, InaSAFE" - -# 24f07fb51e2b40b69fba19e39b29de04 -#: ../../source/training/curriculum/curriculum.rst:1345 -msgid "" -"Practise communication skills in data collection and analysis through OSM, " -"QGIS, and InaSAFE workshop" -msgstr "" -"Mempraktikkan keterampilan berkomunikasi dalam pengumpulan data dan analisis " -"pada lokakarya OSM, QGIS, dan InaSAFE" - -# aee32e97a6f34a5fb9655e75cfec53fd -# 89cd4a5ffa174171ad9b0b9396caa2ae -#: ../../source/training/curriculum/curriculum.rst:1340 -msgid "" -"** Facilitator Skills for Data Collection and Analysis through OSM, QGIS, " -"and InaSAFE workshop" -msgstr "" -"** Lokakarya Keterampilan Fasilitator dalam Pengumpulan Data dan Analisis " -"menggunakan OSM, QGIS, dan InaSAFE" - -# 7179142ad3d14a0495f98e4ad4e72bbe -#: ../../source/training/curriculum/curriculum.rst:1340 -msgid "" -"Participants practise their facilitating skill for data collection and " -"analysis using OSM, QGIS, and InaSAFE Workshop" -msgstr "" -"Para peserta berlatih keterampilan fasilitasi mereka untuk pengumpulan dan " -"analisis menggunakan lokakarya OSM, QGIS, dan InaSAFE" - -# 7d5145e928c24018a573aa6d718d6c4c -#: ../../source/training/curriculum/curriculum.rst:1340 -msgid "Projector Slide PPT" -msgstr "Proyektor Slide PPT" - -# 079445340e5b4a49900f47484eda1a81 -#: ../../source/training/curriculum/curriculum.rst:1350 -msgid "Summary" -msgstr "Ringkasan" - -# 54d9f17fe5f3403784c4b3fb8c927aa0 -#: ../../source/training/curriculum/curriculum.rst:1352 -msgid "" -"After completing the three trainings, including the Training of Trainers for " -"Scenario Development for Contingency Planning using OSM and QGIS/|" -"project_name|, it is expected that workshop organisers from national or " -"province/district level can use this document as reference in order to " -"create the same output." -msgstr "" -"Setelah menyelenggarakan ketiga pelatihan tersebut, termasuk Training of " -"Trainers untuk Pengembangan Skenario Rencana Kontinjensi menggunakan OSM dan " -"QGIS/|project_name|, kita berharap bahwa penyelenggara lokakarya dari " -"tingkat nasional atau provinsi/kabupaten dapat menggunakan dokumen ini " -"sebagai acuan untuk membuat output yang sama. " - -# 27d23afbeb3a4553ac6e7ef780a8a255 -#: ../../source/training/curriculum/curriculum.rst:1358 -msgid "" -"This curriculum is continually augmented and improved through input from " -"stakeholders, such as government officials or non-government who are " -"included in the working group." -msgstr "" -"Kurikulum ini terus ditambah dan ditingkatkan berdasarkan input dari para " -"pemangku kepentingan, seperti pejabat pemerintah atau non pemerintah yang " -"termasuk ke dalam kelompok kerja." diff --git a/docs/i18n/id/LC_MESSAGES/training/curriculum/index.po b/docs/i18n/id/LC_MESSAGES/training/curriculum/index.po deleted file mode 100644 index a5fb7209..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/curriculum/index.po +++ /dev/null @@ -1,56 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 487aaf127a1d44c98ca376a34f26ff6f -#: ../../source/training/curriculum/index.rst:4 -msgid "Curriculum and Guide for Facilitator" -msgstr "Kurikulum dan Panduan untuk Fasilitator" - -# 79f2d00cf34f48fe87edc806e43c4888 -#: ../../source/training/curriculum/index.rst:6 -msgid "" -"This section contains the standard curriculum and facilitator guide for the |" -"project_name| training course designed by Badan Nasional Penanggulangan " -"Bencana (BNPB), Humanitarian OpenStreetMap Team (HOT) and Australia-" -"Indonesia Facility for Disaster Reduction (AIFDR). The training course " -"consists of four units which provide hands-on experience with |" -"project_name|, |QGIS| and |OSM|." -msgstr "" -"Bagian ini terdiri dari kurikulum standar dan panduan fasilitator untuk " -"pelatihan |project_name| dibuat untuk Badan Nasional Penanggulangan Bencana " -"(BNPB), Humanitarian OpenStreetMap Team (HOT), dan Australia-Indonesia " -"Facility for Disaster Reduction (AIFDR). Pelatihan ini terdiri dari empat " -"unit yang menyediakan panduan untuk pelatihan |project_name|, |QGIS| dan |" -"OSM|. " - -# c48a250daf014b7aa8535c27602aa926 -#: ../../source/training/curriculum/index.rst:12 -msgid "" -"The training modules to be used with this curriculum are available in :ref:" -"`beginner` and :ref:`intermediate`." -msgstr "" -"Modul pelatihan yang digunakan dalam kurikulum ini tersedia dalam bagian :" -"ref:`beginner` dan :ref:`intermediate`" - -# 4f4d137a228f43a793d197bb7bcfe909 -#: ../../source/training/curriculum/index.rst:15 -msgid "**Curriculum Table of Contents**" -msgstr "**Daftar Isi Kurikulum**" diff --git a/docs/i18n/id/LC_MESSAGES/training/curriculum/osm-beginner-toolkit.po b/docs/i18n/id/LC_MESSAGES/training/curriculum/osm-beginner-toolkit.po deleted file mode 100644 index bfad49f3..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/curriculum/osm-beginner-toolkit.po +++ /dev/null @@ -1,3779 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2014,2018 -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013-2014 -# Emir Hartato , 2014 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013-2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-08 05:25+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 346922cac34e4e949958be4f1f776ae7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:2 -msgid "Unit 1 Facilitator Guide" -msgstr "Unit 1 Panduan untuk Fasilitator" - -# b2254165414d4f4abfca1558998d8748 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:5 -msgid "Beginning OpenStreetMap Trainer Toolkit - (A Guide for Facilitators)" -msgstr "" -"OpenStreetMap Tingkat Dasar Trainer’s Toolkit - (Panduan untuk Fasilitator)" - -# b520b3f5ccdb48ef961fc2368b0e3794 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:7 -msgid "**BADAN NASIONAL PENANGGULANGAN BENCANA**" -msgstr "**BADAN NASIONAL PENANGGULANGAN BENCANA**" - -# d4113babf1e046d59d663ec731beb943 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:9 -msgid "**2013**" -msgstr "**2013**" - -# e8ccdbc712604f72aa1348ec98584592 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:12 -msgid "About Toolkit" -msgstr "Tentang Toolkit" - -# bf051978b36b402c9babd41729d947ec -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:14 -msgid "" -"**The Beginning OpenStreetMap Trainer Toolkit** is designed to prepare " -"trainers to deliver an introductory training course to new users of OSM. The " -"materials included will prepare trainers to conduct trainings with a variety " -"of audiences and to cover common problems and pitfalls, and also provide " -"trainers with the best methodologies to engage new mappers." -msgstr "" -"**Toolkit OpenStreetMap Tingkat Dasar** ini dirancang untuk mempersiapkan " -"fasilitator dalam menyampaikan suatu pelatihan kepada pengguna OSM yang " -"baru. Materi-materi yang terkandung di dalamnya akan mempersiapkan " -"fasilitator untuk melaksanakan pelatihan dengan berbagai macam peserta, juga " -"termasuk mencakup masalah dan kesalahan umum, serta menyediakan berbagai " -"metodologi terbaik untuk fasilitator agar dapat mengajak pembuat peta yang " -"baru." - -# b451fa6d38e5420b9aa3424745770519 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:20 -msgid "" -"When organising an OpenStreetMap workshop, numerous factors must be " -"considered, including the length of time you have to train, available " -"resources, number of trainees and their technical skills. This toolkit will " -"help trainers prepare trainings for different types of participants, but it " -"will primarily focus on educating those with little or no experience with " -"GPS, map-making and computers." -msgstr "" -"Ketika merencanakan lokakarya OpenStreetMap, banyak faktor yang harus " -"dipertimbangkan, termasuk lama pelatihan, sumberdaya yang tersedia, jumlah " -"fasilitator dan kemampuan teknis peserta. Toolkit ini akan membantu " -"fasilitator mempersiapkan pelatihan untuk berbagai tipe peserta, namun " -"toolkit ini akan lebih terfokus pada peserta yang sedikit atau sama sekali " -"tidak memiliki kemampuan dalam penggunaan GPS, pembuatan peta, dan " -"penggunaan komputer." - -# 0fd816fde95845b2b95f0a8a772b9ab5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:27 -msgid "" -"The purpose of this toolkit is to prepare the trainer to successfully train " -"workshop participants in adding spatial data to OpenStreetMap." -msgstr "" -"Tujuan dari toolkit ini adalah mempersiapkan fasilitator untuk melatih para " -"peserta lokakarya dalam menambahkan data spasial ke OpenStreetMap." - -# 41e1803e4c354ab78af39e4fec34523b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:31 -msgid "Purpose of Workshop" -msgstr "Tujuan Lokakarya" - -# ede9e20368cc416b99caf357e66b999d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:32 -msgid "" -"This workshop is intended to achieve the following standard and basic " -"competencies:" -msgstr "" -"Lokakarya ini bertujuan untuk mencapai standar kompetensi dan kompetensi " -"dasar:" - -# 67c3e528c8c8437bba7dc57c82465205 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:36 -msgid "Standard Competency" -msgstr "Standar Kompetensi" - -# 084d12b6b03849b380b0763298d7d808 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:37 -msgid "Collecting Spatial Data with OSM" -msgstr "Mengumpulkan data spasial dengan OSM" - -# 75570bd8566a442ba45de9e1a08c15e7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:40 -msgid "Basic Competencies" -msgstr "Kompetensi Dasar" - -# 07647e4a0a294b4abe5701c62bfe4a90 -# 762db927abed4462a680289b840a5448 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:41 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:228 -msgid "Draw paper maps to gain a basic understanding of OpenStreetMap" -msgstr "Menggambar peta wilayah sebagai dasar pemahaman OpenStreetMap" - -# 1cd6ae4f952b43d5a2a3788dada57bb0 -# fb0826f9007944f7b6f488b3ff08f9eb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:42 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:358 -msgid "Navigate OpenStreetMap website" -msgstr "Dapat menavigasikan Peta OpenStreetMap " - -# 050261816609423190091c0907dc7ed6 -# bb2479dc935a42bab569d626b039c762 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:43 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:480 -msgid "Operate JOSM" -msgstr "Dapat Mengoperasikan JOSM" - -# 3675972f2d7f40ffb369aa829039b7c0 -# 0c2a0f0084ea4715a3d0662fc5039cb1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:44 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:656 -msgid "Use GPS to add data to OSM" -msgstr "Menggunakan GPS untuk menambah data di OSM" - -# 1fd4785ce0f34f3688f3d8327ae974ef -# f718b64fe65c4de8889f82a7733b9826 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:45 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:826 -msgid "Use Field Papers to add data to OSM" -msgstr "Menggunakan *field papers* untuk menambah data di OSM" - -# 3fdcbadacda2453cb1e4a3d6f26821f4 -# 6e1d7116f80e41eda3b2bbe99defee80 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:46 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:959 -msgid "Edit a map and add information to OSM using JOSM" -msgstr "Dapat mengedit peta dan menambahkan informasi ke OSM menggunakan JOSM" - -# be935e03f9a64cd388b3b1fbaa4da67c -# 10d7d23f5e484d01a1969fdb13247ef8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:47 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1106 -msgid "Correct imagery offset" -msgstr "Memperbaiki pergeseran citra satelit" - -# 319412bebd9a4eec9fd52e9283332e0e -# a1c9433c65494466aeaa3af308b07e71 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:48 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1165 -msgid "" -"Get OSM data in a specific format to be analysed further in Geographic " -"Information System (GIS) software" -msgstr "" -"Memperoleh data OSM dalam format tertentu untuk melakukan analisa lebih " -"lanjut di perangkat lunak SIG (Sistem Informasi Geografi)" - -# 429d7c20a3ca4c7698cbe3c6560848dc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:51 -msgid "Workshop Materials" -msgstr "Materi Lokakarya" - -# f967bfb0aa3c41c4b3d223c039b27b65 -# 1353088cdab54b6082f0ebc80d7caa93 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:52 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:112 -msgid "The OpenStreetMap website" -msgstr "Situs OpenStreetMap" - -# cc4e3555d38f452a9333e97ce3c37c60 -# 42f730cac3194c9db5201ea667d11131 -# 16681e76e0ce4440819c2007052b995d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:53 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:116 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:120 -msgid "Working with OSM" -msgstr "Bekerja dengan OSM" - -# 98906073487742258069f53cbfa03d50 -# 12684bc6c9ba4b3d8b2870b7d51a9e9d -# dcff32af35d2407ebd89a502c83c47b1 -# 506722b6fca849578a09f5d9e623bbf4 -# b5e5265e09634ae3b0cb3cdf6fa305df -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:54 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:122 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:130 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:134 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:475 -msgid "Working with JOSM" -msgstr "Bekerja dengan JOSM" - -# ea295e35d4e842a1954bec21639ae31f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:55 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:136 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:140 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:144 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:152 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:651 -msgid "Using GPS" -msgstr "Penggunaan GPS" - -# ec2d758ff3aa470b9dd1e3e495f933a9 -# 3adb680855c94ccb92ea299ee5ee4370 -# 10680632c98149c696e0509bad6dbb24 -# 5a9efc5a36c249bdaebb61c32b48394e -# 034151d0611d49d095b608f7f47796d0 -# 3b6a5223444d42e6a0f86dcb89ef0522 -# f95d06aecb494a6e988a32178e905906 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:56 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:156 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:160 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:164 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:166 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:821 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:908 -msgid "Field Papers" -msgstr "Field Papers" - -# 2f793db50aef40e6bdc259c0a4147ee0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:57 -msgid "Editing OpenStreetMap through JOSM" -msgstr "Editing OpenStreetMap dengan JOSM" - -# 32b60cc007004260b9b1dc30da3ba93a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:58 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:188 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:190 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1125 -msgid "Imagery offset" -msgstr "Pergeseran citra satelit" - -# e0611aa17316420da4cd61d29bef6d91 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:59 -msgid "Getting OSM data" -msgstr "Perolehan Data OSM " - -# 5a43f59837ad438c81242996040cdfc1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:62 -msgid "Workshop Strategies" -msgstr "Strategi Lokakarya" - -# 2cf179aee3bb4825a751c7c181f59464 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:63 -msgid "" -"Methods emphasised in this workshop are participatory teaching and active " -"participation in all sections and activities, rather than lecture method." -msgstr "" -"Metode yang digunakan dalam lokakarya ini adalah pengajaran partisipatif dan " -"partisipasi aktif dalam semua bagian dan kegiatan, bukan metode ceramah." - -# 9feaeccfc2ce465882b942f0ab99741e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:66 -msgid "" -"**Participant oriented.** Participants are encouraged to find and gain " -"knowledge and skills by themselves." -msgstr "" -"**Berpusat pada peserta.** Peserta didorong untuk mencari, menemukan dan " -"memperoleh pengetahuan/keterampilan yang dibutuhkan secara mandiri" - -# fd4662064d5e4d15a42f210c13d772f2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:69 -msgid "" -"**Trainers serve as facilitators.** Trainers facilitate to help ideas in the " -"workshop emerge from the participants, not only from trainers. However, " -"trainers must be ready to provide necessary information when the " -"participants need any assistance." -msgstr "" -"**Trainer berfungsi sebagai fasilitator.** Trainer hanya memfasilitasi agar " -"ide-ide datang dari berbagai arah bukan hanya dari trainer. Namun, trainer " -"harus mampu memberikan informasi yang diperlukan di saat peserta membutuhkan " -"bantuan." - -# 84c39ab0a02447f1926a9d3a66121c53 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:74 -msgid "" -"**Outcome oriented.** Workshop must produce the outcomes mentioned " -"previously." -msgstr "" -"**Berorientasi pada hasil.** Lokakarya harus menghasilkan *outcome* yang " -"telah disebutkan." - -# d12292b2ae1d407799988296a2d7c5e8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:78 -msgid "Tools" -msgstr "Perlengkapan" - -# fb7ef62491db4c1ab305afeb6bcdf465 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:80 -msgid "" -"Copy of :ref:`Data Collection Using OpenStreetMap Beginner Level ` for participants" -msgstr "" -"*Copy* :ref:`Pengumpulan Data dengan Menggunakan OSM Tingkat Dasar ` untuk peserta " - -# ab420143f8bd4451a3d186a784d91807 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:82 -msgid "A workshop space with tables and seats" -msgstr "Sebuah tempat atau ruangan indoor dengan meja dan tempat duduk" - -# 201d361c3f7543feb4e06c28bea80a00 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:83 -msgid "" -"Computers (one computer may be used by two participants, but it is better if " -"one computer is used by one participant)" -msgstr "" -"Beberapa unit komputer (idealnya paling tidak satu komputer untuk dua " -"peserta, namun apabila bisa satu komputer untuk satu peserta maka lebih baik)" - -# e25c7112ddd34453b06481064a8b4868 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:85 -msgid "A Printer (to print out Field Papers)" -msgstr "Sebuah Printer (untuk mencetak *Field Papers*)" - -# aba8146df23942df89057be9906797a8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:86 -msgid "" -"A Projector (to present slide and demonstrate technical instructions and " -"software)" -msgstr "" -"Sebuah Proyektor (untuk presentasi dan mendemonstrasikan berbagai teknis " -"perangkat lunak/software)" - -# b50f3cbe91444813b2e04f2124e21ac3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:88 -msgid "" -"GPS devices (ideally, one GPS is used by two or three participants in a " -"group)" -msgstr "" -"Perangkat GPS (idealnya paling tidak satu unit GPS untuk setiap dua atau " -"tiga peserta dalam satu kelompok)" - -# 5cb41cb6a0df4deea1c51fc23ca617eb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:90 -msgid "Batteries for GPS devices" -msgstr "Baterai untuk perangkat GPS" - -# 7cb941032717410e8c5bad9fcbc774f3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:91 -msgid "USB cable to connect GPS devices to computer" -msgstr "Kabel USB untuk menghubungkan GPS ke komputer" - -# ec7fb78cbd2942678298f902e30878b8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:92 -msgid "USB Flash drive(s) to transfer files and software" -msgstr "*Flashdisk* untuk memindahkan *file* dan *software*" - -# 192e51dda07f47b8a75017f3c57482e9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:93 -msgid "Good internet connection" -msgstr "Koneksi Internet yang baik" - -# c1f53a4dc58248f2b020bf4cebc4728c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:94 -msgid "Snacks and coffee for breaks" -msgstr "Makanan dan minuman ringan untuk istirahat" - -# 860474f58550449f9bfbdccec2e26ff4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:97 -msgid "Schedule" -msgstr "Jadwal" - -# 7096ce89edb04de3a37779b7b3115b90 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:99 -msgid "" -"Below is an outline of a schedule for a five day workshop that has been " -"tested with several groups in Indonesia. You may choose to adapt and change " -"this workshop schedule to meet your needs." -msgstr "" -"Di bawah ini adalah contoh jadwal pelatihan untuk lima hari yang telah diuji " -"coba kepada beberapa kelompok berbeda di beberapa daerah di Indonesia. Anda " -"bisa saja memberikan berbagai perubahan yang mungkin bisa lebih berguna " -"tergantung berbagai faktor yang telah didiskusikan sebelumnya." - -# 7fcdd36269934f02afeeb1c1a14832a9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:104 -msgid "Day I:" -msgstr "Hari Pertama: " - -# 2a29c018b87646fd9435b114084529e6 -# bbc8e67023364fea89e86a2a0a2d19f9 -# 4b9f60152d6c47e3827d93fb0d7706d5 -# b458e7acfb5d4bc199dbada784f9dc83 -# 3e1a4ab8e3d645cb9a7e733c3636c0fc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:106 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:128 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:150 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:172 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:196 -msgid "**Time**" -msgstr "**Waktu**" - -# ff3d9cc24d47411fb1ceceb80d4effef -# 1bae1374e7724ff48a0204569047bedd -# 34dfc0ee355c45de856871ef7b3ee81e -# c5ee2717bbef48f3adadc0926e51884e -# f045f685076c41c5ac5d0406a9800732 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:106 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:128 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:150 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:172 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:196 -msgid "**Materials**" -msgstr "**Materi**" - -# efdeba28e0d8497fb2c876f9ced7a802 -# 9f57f0f68dc7464baecbb55f345e0054 -# b184022e32ec43079983d9299c083b77 -# 9096e3dbab6647838d51a806a6193e1b -# db33fb57424a4b35965291713ceaec93 -# f74f89c359fa44838933ab298415e7e8 -# 121fc950d1be46839ee006c2c02172e6 -# f568011f7a4c411285b63d173c10828a -# 371ed1177bef4a4d9694dc1e52d59bd3 -# caf737153a524f178a25698071a866f6 -# 736fe271bd6c4288aa4a023c9079a6bd -# f7dcc27c30c647ba9de9777adb7cee80 -# 77c37fca9b5645a88715205d94725dd3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:106 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:128 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:150 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:172 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:196 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:254 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:387 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:520 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:701 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:855 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:988 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1131 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1188 -msgid "**Activities**" -msgstr "**Langkah Kegiatan**" - -# 045ecdfeaece42ce924e4c8ba5f73850 -# a0e591d8111843428ef203a8dc0fe295 -# 3af869fba73f4c2084cff2bce2c25edd -# 239a26487aa44d4e984c95904f7a671e -# 6a64688191664a3980b629fe7a6658a9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:108 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:130 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:152 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:174 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:198 -msgid "09.00 - 10.00" -msgstr "09.00 - 10.00" - -# 7da536612b674882be052713db28a79c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:108 -msgid "Opening and Introductions" -msgstr "Pengantar dan Pengenalan" - -# daa175a4c72843a9884798448556ccb0 -# a826262439144f0488ad4483bc2125da -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:108 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:212 -msgid "Plenary Session" -msgstr "Pleno" - -# 3d6e9504bd8e45bfbb08484792f99428 -# d20eed619c46452bb6cf39306ceeb831 -# 08bf54e0d7c44263866cbb00d3620a11 -# 830f32885b414afdb51819d80dbd2f17 -# 8606f64d17634f28ab33fb9e1baef24e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:110 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:132 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:154 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:176 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:200 -msgid "10.00 - 10.15" -msgstr "10.00 - 10.15" - -# 3638944f1b494d7d90874b1a1e455984 -# 2d7094d1d7e140d49613e00c1626e120 -# 8d58e6e7fa1447c491840e7c87635025 -# 190092b44b724a12b3d69de75f9cff52 -# cdc9b2f68beb442ba8e2e2d7b3b8d39d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:110 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:132 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:154 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:176 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:200 -msgid "Break 1" -msgstr "Istirahat 1" - -# 4ad19f0199e94ccfb14eefdede5e5894 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:112 -msgid "10.15 - 11.45" -msgstr "10.15 - 11.45" - -# 0e272ae82d9d428593973e2da6286c0b -# 677e32fbeb6b476eaf81e9c291c0ae1a -# ef0eba17c0854827af3b6ae52beaf2c3 -# e6d87e480f8d4a42bca40b419bfd54b9 -# d888c6648f624e69bada7e36353fdc96 -# fc4e0e55ea65424c9763529e883d00f4 -# 1f88e396505e40728caf3b2e898f3349 -# f6a251713cc3429a8377694225191860 -# 53c490aa59ef4607a76ca25ffa8312a0 -# 25e1c87f479d4dccae285cd8444435e5 -# 6cd5c5287720460e9761125a6bda310f -# a54d9fcbda794d529effb2792e1e20c7 -# e5ce4b591d79430f8d49c9d1f5df5445 -# ec04ee2f1d4f47238bf50fc6580b3f75 -# 59b52750b47749feb1994150d680b7cf -# 072d78b97aa640c7bfd86c14e6ccfc27 -# f26c0f241e5c441683f2765c4a84c340 -# 821ce76ee5304a3c841844ed6a1186c6 -# 5ff700feb1264433832c63d79521f171 -# b7d5be12ecff4c8dbb8df6f7345118a2 -# e3f69ca9a33849da9e5287dd10d6c535 -# c73c2c7c9f60458cac2fec4e4aef80b9 -# 789a1accf2e24e1f9093a0bacba41aea -# 318d5253125d4e21be307af5e851c01a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:112 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:116 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:120 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:122 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:130 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:134 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:136 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:140 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:144 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:152 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:156 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:160 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:164 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:166 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:174 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:178 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:182 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:184 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:188 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:190 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:198 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:202 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:206 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:208 -msgid "FGD and Plenary Session" -msgstr "FGD dan Pleno" - -# 2a8fed9a4a994cd4b5357f164b55ebf4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:114 -msgid "11.45 - 12.45" -msgstr "11.45 - 12.45" - -# f3e82ba99ae84d1db73572ff80d9c2e7 -# 0c7b3bc0e7264e1c9165ccb72e2e2770 -# 8304809c08904230aa40e66ef16713d6 -# 5821d2958c6044beb0915d294f062ef1 -# 147ffdd3f6e944b1a77fed43ca89c450 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:114 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:138 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:158 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:180 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:204 -msgid "Lunch break" -msgstr "Sholat dan makan siang" - -# 0423d213289c4bd38b4a94170a8a7e5e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:116 -msgid "12.45 - 14.45" -msgstr "12.45 - 14.45" - -# 5037977e14d7459c982671cf56e097ed -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:118 -msgid "14.45 - 15.00" -msgstr "14.45 - 15.00" - -# b7c1ce2ad92547b2b3386a73b2a58bb2 -# 2c1a2ff2140d4c899dbd2df55bc22934 -# 87d4555b67ca43fa90063d8cccb42acf -# d709f81611a848afb52f456e5c1d2341 -# 0e2fbd30f9e14952968ea6bc9e5ecb8a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:118 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:142 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:162 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:186 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:210 -msgid "Break 2" -msgstr "Istirahat 2" - -# caea5143fd6b4785be5f031f89f93b57 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:120 -msgid "15.00 - 16.00" -msgstr "15.00 - 16.00" - -# 3d78d707fbd443f5b6d8ba9012c92c30 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:122 -msgid "16.00 - 17.00" -msgstr "16.00 - 17.00" - -# 353fceffcc5742d6a234b0cd6f7ba7b4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:126 -msgid "Day II:" -msgstr "Hari Kedua: " - -# 10bf57bb385a42c09f929f1ae824342c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:134 -msgid "10.15 - 11.15" -msgstr "10.15 - 11.15" - -# c01eb866598545a69533b0a422c6cb19 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:136 -msgid "11.15 - 12.15" -msgstr "11.15 - 12.15" - -# 5e6f4e5de48d4a45899e3ac13888692d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:138 -msgid "12.15 - 13.15" -msgstr "12.15 - 13.15" - -# 10a9897e6c1a4ed68cf85734a293db54 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:140 -msgid "13.15 - 15.15" -msgstr "13.15 - 15.15" - -# 0bff83e7842c46dea45c1605b6dae750 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:142 -msgid "15.15 - 15.30" -msgstr "15.15 - 15.30" - -# 2a9d4668e3b34970abe3d9d845bd9073 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:144 -msgid "15.30 - 17.00" -msgstr "15.30 - 17.00" - -# 8959cd4e24e2496b9696100f7c6018b7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:148 -msgid "Day III:" -msgstr "Hari Ketiga: " - -# 288e13db66714823b34d9d9e7411e62f -# 4cbb0ba5e7d945cb9aebb030a9df2a0a -# e75ce7ef5d84452fac33cffab9c18406 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:156 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:178 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:202 -msgid "10.15 - 12.00" -msgstr "10.15 - 12.00" - -# 4574775b46734eddb4f80d4f7c5724fb -# d9757350e07c4384905a7203f9dfd88b -# aeefae83edf048538d6ba875ba38bb5a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:158 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:180 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:204 -msgid "12.00 - 13.00" -msgstr "12.00 - 13.00" - -# 4d7e453f846d4524aadeed4fb5810e40 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:160 -msgid "13.00 - 15.00" -msgstr "13.00 - 15.00" - -# b55292568e9348338e705a70bf66eee6 -# 1d07ba3eed614db9894176affad648a3 -# 08b0a7d4dac74d85a36c5c79f31f3a49 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:162 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:186 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:210 -msgid "15.00 - 15.15" -msgstr "15.00 - 15.15" - -# 0407466ae58644eeb53171b450ffaa4e -# e9a24117679046df9c96d35523b5f28a -# 459a14bfebea403485809b2372ff66b0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:164 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:188 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:212 -msgid "15.15 - 16.15" -msgstr "15.15 - 16.15" - -# ab13a0afd35b428f819edcef20a9fa12 -# 9e29ad04cf5f4637bd8aeb6b2b4bdc94 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:166 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:190 -msgid "16.15 - 17.15" -msgstr "16.15 - 17.15" - -# f6234b530a4e4fc2ab1218630d9f6504 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:170 -msgid "Day IV:" -msgstr "Hari Keempat:" - -# 72a7d3746d824db59aab912a1535fb68 -# 89d1ad69acbb4741b7882e6546b60c1d -# 69d6dcc20492485f8244c3ce1604c7ce -# b7b7c8173f744716a73268961b00ec1a -# 595540b4c1e942c6835fa1f6953f1d94 -# e59cbbafd03c473482fb2104c7d21651 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:174 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:178 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:182 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:184 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:198 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:202 -msgid "Editing OpenStreetMap with JOSM" -msgstr "Editing OpenStreetMap dengan JOSM" - -# ede7beba7993403fb00e490196b868ba -# 5e76c0f442ca48288bd5d3e3e4e9ed66 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:182 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:206 -msgid "13.00 - 14.30" -msgstr "13.00 - 14.30" - -# 4bce0ce384a64be2adafa9c259a33277 -# dc690a3c2a1440d9a9919da27889321b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:184 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:208 -msgid "14.30 - 15.00" -msgstr "14.30 - 15.00" - -# 487713d3f1124ec992b3431fc296381c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:194 -msgid "Day V:" -msgstr "Hari Kelima :" - -# 1fc395ff976042758f0a2efbeaad8bf3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:206 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:208 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1160 -msgid "Getting OSM Data" -msgstr "Perolehan Data OSM " - -# bd1a339978c945269c77c1896eb22067 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:212 -msgid "Workshop Evaluation and Closing" -msgstr "Evaluasi Lokakarya dan Penutupan" - -# 4c7c09215f8947fc96f0e92f25baa40d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:217 -msgid "Workshop Plan" -msgstr "Rencana Lokakarya" - -# 4be66d758e874764943d71b663e6050f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:220 -msgid "Session 1" -msgstr "Sesi 1" - -# 19713d21288741da9733015f1a9748f9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:223 -msgid "The OpenStreetMap Website" -msgstr "Situs OpenStreetMap" - -# d5ec2a2d545940a9a40f863075804891 -# 10786bec6b804173b2c590514604811c -# ee73d536e3cc4139a98a6994bfd134bb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:224 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1102 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1161 -msgid "Time : 90 minutes" -msgstr "Waktun : 90 menit" - -# 62776fb451c64dc7b5b100307fa1195a -# 9611cde4ce68442f9359137a83822306 -# 0fd1c097e1ef4c49881947dcd2334d75 -# f3fd7b24ce554f68b078f1b4ac425039 -# e89b2b8eca7c4b0fb548e708a6e336b1 -# 278acd87f1f848d5bd9bbe45267c508d -# 447648b213ab4ef59a2daf7d82cd3b7b -# 58fe2a54931d47f1b0e8e030974902ac -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:227 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:357 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:479 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:655 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:825 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:958 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1105 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1164 -msgid "Basic Competency" -msgstr "Kompetensi Dasar" - -# 7d6c43c21e6a42b1867654019770c5b4 -# e6d889b202fc4ebea1dc522aca8bdb91 -# bcf515fc57a548188331212afa1db30c -# 136de915c0dd4c038b51d957c82c5701 -# 31d58b2dbdff477aac07018de070a9f7 -# 7489ece9fbb54bd3ae6209157e4f36dd -# 08524299193843a79978c4c78ae849b5 -# a24181e17df54753afad78d393a1f3cd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:231 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:361 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:483 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:659 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:829 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:962 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1109 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1169 -msgid "Indicators" -msgstr "Indikator" - -# 3771ff74bde94037884bed73e37f15f5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:232 -msgid "Understand the concept of OpenStreetMap" -msgstr "Memahami konsep dan pengertian *OpenStreetMap*" - -# 163513228cf14450a923c982033f98e4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:233 -msgid "Understand the definition and objectives of data collection" -msgstr "Memahami definisi dan tujuan pengumpulan data" - -# e822cfb54a08490d9dc8032563f06c10 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:234 -msgid "Understand the composition of a map" -msgstr "Memahami komponen dalam peta" - -# 3230473b5b1d47748f068145df4fa0ba -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:235 -msgid "Make a hand-drawn sketch of an area" -msgstr "Membuat sketsa peta wilayah menggunakan tangan" - -# 674c06f516e94674bcf6d6fd4dc35376 -# b6bbeba16dca4ee4b940693b19be6f7e -# 04ca0d9601fb466db79ddbd3f2e191a4 -# 010d84ef20b249fb981917a18679b724 -# 3a35dc3e1bc847438b4f5f37418fa71e -# 324d9328dff64320a9105154f1a85884 -# 4b56c9fb577b4b1987fe7b0d230d8be2 -# 56fc81d1d58f43669482e4f1c2543871 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:238 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:370 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:493 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:672 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:837 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:971 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1116 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1174 -msgid "Outcomes" -msgstr "Hasil" - -# 9547f860879047cfacfa3e5172d8529e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:239 -msgid "Questions and comments about OSM, data and maps" -msgstr "Pertanyaan dan komentar tentang OSM, data, dan peta" - -# 52b4c03b247a4256ba7f7eb15e38d960 -# a2e5cfacf6f74d1399d4596a589f05db -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:240 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:249 -msgid "Hand-drawn sketch of an area" -msgstr "Sketsa dari sebuah wilayah yang digambar tangan" - -# f9fc964031064b0782b19b7a84df9bf9 -# be1ca5a578d945f281b9d402d5420a5b -# 9b0d61243c9149829055c09b4955c67a -# afba1ffe9ea049c098e865728f80a488 -# 406923602fe74cbda1386374749766f7 -# 3aaec45a64e14becb7d8eeb06faaca72 -# d0216f75d4b14156ba74c9cefbae03a2 -# bdc1ad3753f74338a84d606863915aaf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:243 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:375 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:497 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:676 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:842 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:975 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1120 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1178 -msgid "Core Material" -msgstr "Materi Pokok" - -# 2fd1aabb83ab4c0a9e52f7a1af8825ed -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:244 -msgid "**The OpenStreetMap Website**" -msgstr "**Situs OpenStreetMap**" - -# f5edfe53966348c08e584091a6b9131b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:246 -msgid "Concept of *OpenStreetMap*" -msgstr "Konsep *OpenStreetMap*" - -# c6640e4e8c74459fabcb842418189428 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:247 -msgid "Definition and objectives of data collection" -msgstr "Pengertian dan tujuan pengumpulan data " - -# 1269b87de0b84d61a3cd1fe1fcff33b6 -# a5fbfdde03114ea8b0c624eadae636b8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:248 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:284 -msgid "Components of a map" -msgstr "Komponen dalam sebuah peta" - -# 450ea0034ad047e5a3b7b6b8a748baf3 -# 704c371050344cdb830961f5d1b1b1ac -# 44b178f99a36476e97e6c72c8d93b884 -# 6c5019df5d3c4b48ad40bc1924da1c6d -# 91b7aba3d538492a876ff340ba84ec83 -# 3d2de5a8842042aaba842f0db52f1a56 -# 37c552d887d649e19b04393b3b5a8a68 -# e93867956ade4c42930d0cc24c03d042 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:252 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:385 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:518 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:699 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:853 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:986 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1129 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1186 -msgid "Activities" -msgstr "Aktivitas" - -# 8938d297ffe448febd0ead157e6f65f5 -# 1d0d5c2cea7f466ca73333952d6b518b -# c3dc0d0c90714eaeac29b4cd2af4ab68 -# 2095f9470acc4a0fa83677c3dac52d39 -# 8a45d401e1f041efa6140dfa1daddaea -# d423808380844a1e965ad0ac62e6dee4 -# 82dbcb4cca434c0d954f7bf497f873f8 -# 788c6d0a635f4025922a2b512866d67a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:254 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:387 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:520 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:701 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:855 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:988 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1131 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1188 -msgid "**Methods**" -msgstr "**Metode**" - -# f640d4110395474995a1858a5e7ae161 -# 5f7db920efa24d0992cb39f3347e3452 -# a66e639221f64c88a0e8a536a61d8eb2 -# e90410316ef640b7b1dcca4f6b3478d2 -# 0727450771ad4c1a95608ecaad494aec -# 9d01487258f74810ac705fc22a473330 -# fc85147f8b5947668bcc6b7cdcbe0618 -# 28289d211bc84dad8c9f84e0da0d70dd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:254 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:387 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:520 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:701 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:855 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:988 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1131 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1188 -msgid "**Tools**" -msgstr "**Alat/Bahan**" - -# ec4e026a103f4876874221c26e04c06e -# 5ceee3d4ee2a4bde83eb849382e16285 -# c3b8065d8ca649f4aa92672841eb1028 -# 3813d72259f14ebb8eb8e4f4e920fc26 -# 04f806fa41f14c38977c59575c3ef902 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:256 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:389 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:990 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1133 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1190 -msgid "**Introduction 5'**" -msgstr "**Pengantar 5**" - -# 7d43f3b2373b4626bf0934b39afed1f3 -# 7d640100e3ca466ab0ac36829ce49f08 -# a1edfd2411ab4c72a334dc325c53e5d6 -# 3183ef8656aa4a0b9ba56dd73238398b -# 9b927d90426e4548bdca60b06fdba360 -# 9bd6c264dea340e9a5489e0543bef4bd -# 9bec5ee733bb4f96b78de431b7455def -# 966768ff078446eaaed185cc1ad8a818 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:258 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:391 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:524 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:705 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:859 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:992 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1135 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1192 -msgid "" -"Explain the importance of the session, objectives, outcomes and activities " -"of the session." -msgstr "" -"Fasilitator menyampaikan pentingnya sesi, tujuan, hasil dan langkah kegiatan." - -# 4e1b2523cbae4638b45b75df02f6510d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:256 -msgid "Lecture *Slide*" -msgstr "Slide Materi" - -# bf0c5bf43b4f4534b092c8e4abb1aaed -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:256 -msgid "*Powerpoint*" -msgstr "*Powerpoint*" - -# a0bc321ce5554e958370f6c40be97aa1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:261 -msgid "**Quiz 15'**" -msgstr "**Kuis 15'**" - -# 00aa12efcfa74c48aa0b259b453da9bc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:263 -msgid "Ask questions to be answered by participants, such as:" -msgstr "Memberi pertanyaan untuk dijawab oleh para peserta, seperti:" - -# db20865c67044a168348b8d33c420bfa -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:266 -msgid "What is OpenStreetMap?" -msgstr "Apa itu *OpenStreetMap*?" - -# b5752780a867418cb4f846140a571ee1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:267 -msgid "What is data?" -msgstr "Apa itu data? " - -# 2be9958573484e0a93b7f172d9f3a0f6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:268 -msgid "What are the components of a map?" -msgstr "Apa saja komponen dalam sebuah peta?" - -# 89f8069c2112468e8f7771e5a769b5a8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:261 -msgid "Quiz" -msgstr "Kuis" - -# 76397ecb5a874a018944c7ebed2517c2 -# ca9b4b2161ed43c5aa991815786fb859 -# 213455a571524b8d9840bdbf85611c9b -# 1e2a049e7ab3456b98d629ebe9a52cf0 -# 3e81428c6d034e99a4c1d406b1f6c368 -# 0c8fd6c70e004a45af12023d42cb3e4a -# cede5d36483c4f3cb13283468a5275ee -# f666db275fd54bbda11a1c0e3196fd6b -# a793929547e640acaa69c2255f31a676 -# a845c618ee8e476f9707a64fcc67c2f1 -# d423df969fc3447ca8de1a82eb3ddb4c -# 16e10d33186840efb895d9580f1b88f4 -# 404c08331e1b44c39fdfe27f5e7411f7 -# 0cf8ca05b3724d57b3d75b210a831c7f -# bce7a727462245a4ae75dc93a625cdb2 -# e84d810d0410429f8f425ec94d160a7d -# 295af7bf00a34ae0b40434d2f6b8066f -# 33fbe1e520174b26bc57ef4257667a58 -# 10f827d7e6004b749abf42ac6ced36c0 -# cd7e30b4acb04fa3ad3c9f373614a271 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:261 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:389 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:398 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:410 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:420 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:434 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:443 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:522 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:530 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:703 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:708 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:716 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:857 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:862 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:872 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:990 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:995 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1133 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1138 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1190 -msgid "*Powerpoint* *presentation*" -msgstr "Slide *Powerpoint*" - -# f514ec051e804f8db9acb037b8e55d70 -# 364d973b1a14487b858c4fc449e49897 -# f12e53a13a0c4fdd9763c62a0897d747 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:264 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:273 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:291 -msgid "Module 1" -msgstr "Modul 1" - -# 001a2aab436345c8ab4d5c5822a74a9b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:270 -msgid "**Explanation 30'**" -msgstr "**Penjelasan 30'**" - -# 9e4506cdb8e94f189510758dc8ddaf48 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:272 -msgid "Definition of OpenStreetMap" -msgstr "Pengertian OpenStreetMap" - -# b1fda01c302d4f2c97de3bfa6d8b08bf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:274 -msgid "Data:" -msgstr "Data:" - -# 22905ff7aee2472d9e20ce5601e2c32b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:276 -msgid "Definition of data" -msgstr "Pengertian data" - -# 4094e651ecf64366a326ed8e3fe797e9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:277 -msgid "Objectives of data collection" -msgstr "Tujuan pengumpulan data" - -# 65b621ba09724d019fef44991629aaa0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:278 -msgid "How to add data" -msgstr "Bagaimana cara memasukkan data" - -# 21e187ed7478445c8d93e7b5fa67d221 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:279 -msgid "How to save data" -msgstr "Bagaimana cara menyimpan data" - -# 590302c7c92641a3b4fe80c7450f535a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:281 -msgid "Map:" -msgstr "Peta:" - -# 40e87c8d970a47c998f1ac8765312e83 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:283 -msgid "Definition of a map" -msgstr "Pengertian peta" - -# 26c63b24b78e4e1f824bf05434a71727 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:285 -msgid "How can a map show us information?" -msgstr "Bagaimana sebuah peta dapat menunjukkan informasi?" - -# d46c85ef4770440d957a455c378bc245 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:286 -msgid "How to connect attributes to a map?" -msgstr "Bagaimana kita dapat menghubungkan data dengan peta?" - -# 2b730981e9aa4697968bc6b045e03daf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:287 -msgid "Mapping process" -msgstr "Proses Pemetaan" - -# 7976d6c87bc94d7abccabb905cd89c5a -# 12345f3d57984f778cacce26d0335553 -# dcdd68389fba46ef8e60b9f32561fb79 -# 5dfe3eee222a421f864b6e433c218fa1 -# 4aec9f27aef34e9ca0dea2c85ad17f9f -# 01333460ab8b41788aae4cb412ece17a -# b18f477bad864fe896d6ad120a817678 -# 888c60b6ca4e476393b1d8bddc738e87 -# 14c548bd1bd74455934a96d01f463e5d -# ecfa6b2e1a17444c91b0fc1cda964557 -# 4a724514a54046b6bfb30f4ed0c62cdf -# 71c9ea2e097e4273801b543e6ef4ef6e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:270 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:299 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:389 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:418 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:990 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:995 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1133 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1138 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1190 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1195 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1204 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1216 -msgid "Lecture" -msgstr "Dosen" - -# ce3ad911306c4289b09b25f359c091b7 -# bc23fd2decf441f2b5b9517014f32c1b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:270 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:299 -msgid "*Powerpoint* *Slide*" -msgstr "*Slide* *Powerpoint*" - -# db86ccb5e67642d9b3da528dbf085bc0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:289 -msgid "**Individual Work 10'**" -msgstr "**Kerja individu 10’**" - -# 670d0c37997e449488304e2741cbcd65 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:291 -msgid "" -"Ask each participant to draw a map, complete with its information such as " -"the name of streets or districts" -msgstr "" -"Setiap peserta diminta menggambar sebuah peta, lengkap dengan informasi " -"mengenai jalan atau kota atau tempat tinggal mereka" - -# 0875fa4d907d474ea3824ae6279e3e2a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:289 -msgid "Individual work" -msgstr "Kerja individu" - -# 4d26eee54eca4132a7d1398c5e5cccf2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:289 -msgid "Paper and pen" -msgstr "Kertas dan pulpen" - -# 2425e704261f40f9a5f42ac3b2e5d60b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:294 -msgid "**Presentation 15'**" -msgstr "**Presentasi 15’**" - -# 63c156573fd24839833f5443d665ade8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:296 -msgid "" -"Ask the participants to show their maps and explain what they have drawn" -msgstr "" -"Meminta peserta untuk menunjukkan peta mereka dan menjelaskan apa yang sudah " -"mereka gambar." - -# 6dbb2b2fc8f64bc6a6b2ede1aca5dfe3 -# e6361017508249a09f6d2717f4c5e82e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:294 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:765 -msgid "Presentation" -msgstr "Presentasi" - -# 93958e9f36b24196ace90b2fbc26a3f5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:299 -msgid "**Emphasis 10'**" -msgstr "**Penguatan 10’**" - -# 8d5c1c60538749069bcc710c5d3d3e84 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:301 -msgid "Emphasise some points:" -msgstr "Penguatan beberapa poin:" - -# b1ee6811f0a046cf9e47a39bbb09d91b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:303 -msgid "A map represents places/objects with different symbols" -msgstr "" -"Peta merepresentasikan berbagai tempat/objek dengan simbol yang berbeda" - -# 210b67a4d4fd42ab97c3b2195106372d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:305 -msgid "" -"There are three ways to represent an object: as point, line and polygon " -"(area)." -msgstr "" -"Terdapat tiga cara untuk merepresentasikan sebuah objek: sebagai titik, " -"garis, dan poligon (area)." - -# e817c3d174ae4b5eaf5181e49fada665 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:307 -msgid "Objects on a map represent objects from the real world" -msgstr "Objek-objek pada peta merepresentasikan objek sebenarnya" - -# 910bded03f524fd79e4af246d11edb58 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:308 -msgid "" -"Digital maps are composed of shapes similar to real objects and the shape is " -"composed from points, lines and polygons (area)." -msgstr "" -"Peta digital akan menciptakan bentuk yang mirip seperti objek aslinya dan " -"bentuk dibuat dari titik, garis dan poligon (area)." - -# d3caf8a4d40f4202b70dfb2e1521271e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:312 -msgid "" -"Ask the participants to give examples about objects that can be represented " -"as point, line and polygon (area)." -msgstr "" -"Bertanya kepada peserta untuk memberikan contoh-contoh objek yang dapat " -"mewakili titik, garis, dan poligon (area)." - -# fcf020cda29f48ab885a16aa3def11e7 -# 594087b1741440a08df6930f64b60b71 -# 3b2bc1f696174dd1ad3034baf55b7b1c -# 5738f05acceb402eb41ee11615421cd2 -# 02f92d71a40c45eeab8e2a08bb8d01a7 -# 7483e75e3df34bdfbdf64fcf7c6dbb84 -# 3eb48b47377e441a8d7c49bbdf595b41 -# fa2e93c5d0074f0cb87b9b521b791226 -# a1d1146159b84de9825c1db9cfe2b24c -# 269202fe108746b3a41f74f5d8e2df3f -# 7418916667814e4f85e6893dbea2707a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:301 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:315 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:420 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:448 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:565 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:718 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:770 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:862 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:915 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:997 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1150 -msgid "Q & A" -msgstr "Tanya & Jawab" - -# f4cb2c542c4c4f509ad48783db3744fa -# 05a4adfa9aa14957a4ba83d876df78c1 -# 420fce2c07fb4131ac8f1d497396ea68 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:315 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:448 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1150 -msgid "**Closing 5'**" -msgstr "**Penutup 5'**" - -# 0ca3d6d09ea9478aa047708cc964b02a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:317 -msgid "" -"Ask the participants to give their opinion and feedback about what they have " -"learned in Session 1." -msgstr "" -"Mintalah ke peserta untuk memberikan opini dan feedback mereka terkait " -"dengan apa yang telah diterima pada sesi 1 ini." - -# f6d4a1899d33482a8a5e6dc847d4ddad -# aad3c244a66845f384751cf53651247f -# 94ee08f36d1f42688ca66665b6b94f14 -# 98e52bd58a81481d825e0e8a14c29e9a -# 6f3da59e61b14be7998c7ab824621040 -# 21fe51ba801e455c8aa1ed9ee7c8888e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:322 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:455 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:602 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:802 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:928 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1057 -msgid "FAQ (Frequently Asked Questions)" -msgstr "FAQ (Pertanyaan yang sering muncul)" - -# e581964843164ac0b5ced1b4eac4ee31 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:324 -msgid "**How did the UK begin mapping? How did OpenStreetMap start?**" -msgstr "" -"**Bagaimana orang-orang Inggris mulai melakukan pemetaan? Bagaimana " -"OpenStreetMap pertama kali dimulai?**" - -# ce88cfe6946f4deab371326f732ced0a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:326 -msgid "" -"OpenStreetMap started with just a handful of volunteers who had GPS devices. " -"They went out, collected data on their GPS and made sketches of maps and " -"took notes, and then added the data into the OSM database at home. These " -"initial volunteers hosted \"Mapping Parties\" in different towns, in which " -"anybody could come out with them one day and go mapping. These parties " -"helped expand the network of volunteers, get more people involved, and " -"create great maps of different towns." -msgstr "" -"*OpenStreetMap* dimulai oleh beberapa sukarelawan yang memiliki perangkat " -"GPS. Mereka pergi keluar, mengumpulkan data menggunakan GPS mereka dan " -"membuat gambar peta dan menulis beberapa catatan, dan kemudian menambahkan " -"data tersebut ke dalam database OSM di rumah. Para sukarelawan pertama ini " -"kemudian menyelenggarakan beberapa \"Mapping Party\" di berbagai kota, " -"dimana siapapun dapat berpartisipasi dengan mereka suatu hari dan pergi " -"untuk memetakan. Kelompok-kelompok ini membantu menyebarluaskan jaringan " -"lewat relawan, mengajak orang-orang untuk terlibat dan membuat peta terbaik " -"untuk berbagai kota." - -# 76bb6fe325764e8dadcf97a852d15bac -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:334 -msgid "" -"**How did they create maps so thoroughly? What technologies did they use?**" -msgstr "" -"**Bagaimana bisa orang membuat peta mereka sangat komplit dan menyeluruh? " -"Teknologi apa yang mereka gunakan?**" - -# d11858b20b13422a96da4b9e87a0780e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:336 -msgid "" -"At the beginning, mappers only had GPS to work with, and any map data that " -"was freely given to the OpenStreetMap community. Later, OSM made a deal with " -"Yahoo! to be able to use their satellite imagery to digitise maps with. More " -"recently, Microsoft and Mapbox have made imagery available to OSM." -msgstr "" -"Pada awalnya para pembuat peta hanya menggunakan GPS untuk mulai bekerja, " -"dan peta apapun yang dengan gratis telah diberikan kepada komunitas " -"*OpenStreetMap*. Selanjutnya, *OSM* membuat kesepakatan dengan *Yahoo!* agar " -"dapat menggunakan gambar satelit untuk menggambar peta. Baru-baru ini, " -"Microsoft telah membuat gambar satelitnya tersedia untuk *OSM*." - -# f84801ae5cb74caab4368c76b05ce082 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:342 -msgid "**Can we use OSM with Google Maps?**" -msgstr "**Bisakah kita menggunakan OSM dengan Google Maps?**" - -# b1245004996943e2b78cddf5051712a3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:344 -msgid "" -"It is not legal to use Google Maps as a resource when editing OpenStreetMap. " -"Google has not given permission for this like Microsoft has, and so it is " -"not acceptable to use." -msgstr "" -"Tidak legal bila kita menggunakan *Google Maps* sebagai sumber ketika " -"melakukan editing *OpenStreetMap*. Google tidak memberikan izin untuk hal " -"ini, berbeda dengan Microsoft, jadi hal ini tidak diperbolehkan." - -# 2aca0a2f74a44af79e16c70a6f601f44 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:350 -msgid "Session 2" -msgstr "Sesi 2" - -# 9af824c11e1d432e9d87f43a061ba135 -# 6ed36eff0da54904b8c96e0b0892e43f -# b1dc276951804e7cbec2d0de8eb0d73d -# 4c8acf8cf676434fa2d3adfb70fef553 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:353 -msgid "Working with *OSM*" -msgstr "Pengoperasian *OSM*" - -# f0983bd14d5d49959f3662a67be738c4 -# 9b522a7a3bf7411ca7b0b952c6fc17bf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:354 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:476 -msgid "Time : 180 minutes" -msgstr "Waktu : 180 menit" - -# 0c5b6fe8dc2245d3be7db6a26ed4dde4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:362 -msgid "Visit OSM website" -msgstr "Mengunjungi situs OSM" - -# 7b97e3958e474fcc8e3258be537f43fc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:363 -msgid "Navigate map on OSM website" -msgstr "Menavigasi peta di situs OSM" - -# a9043c6c8b1d4c18a2fadd2b2722d709 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:364 -msgid "Save an image from OSM" -msgstr "Menyimpan gambar dari OSM" - -# 40be43e3bfa24b9281a1fb7662fa701f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:365 -msgid "Register an OSM account" -msgstr "Mendaftarkan akun OSM" - -# a727eee09d9143faaf8000081faac1d3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:366 -msgid "Editing a map" -msgstr "Mengedit peta" - -# a5c7667df15e4f05a39fa416fab39028 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:367 -msgid "Save edits" -msgstr "Menyimpan hasil editing" - -# e4fa52fe2403454db0593d5895522020 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:371 -msgid "Participants sign up for an OSM account" -msgstr "Peserta mendaftar sebuah akun OSM" - -# c10807e1aeed4240b2551567fe8c97b8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:372 -msgid "Map images created from OSM website" -msgstr "Gambar peta yang dibuat dari situs OSM" - -# 9f8211d5ce8c4c7da782be7347cafa3b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:376 -msgid "**Working with OSM**" -msgstr "**Pengoperasian OSM**" - -# 3565b58fd7f845f5b8bd5048897eb4b4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:378 -msgid "OSM website" -msgstr "Mengunjungi situs OSM" - -# d12a1bd0140840748d9efef5dfd93e23 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:379 -msgid "Navigating the OSM map" -msgstr "Menavigasikan peta OSM" - -# 787b09a500de4d28b4652bae41ee4e48 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:380 -msgid "Saving images from OSM" -msgstr "Menyimpan gambar dari OSM" - -# 735cf89d4e0a48268d09b8e5e92848da -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:381 -msgid "Creating an OSM account" -msgstr "Mendaftarkan akun OSM" - -# 747b5af199864ed49cadb669d2469a10 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:382 -msgid "Editing the OSM map" -msgstr "Mengedit peta OSM" - -# e2ee4e8d90c045e6b00e94b1ec9951b9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:394 -msgid "**Demonstration 20'**" -msgstr "**Demonstrasi 20’**" - -# 6cf6465bd2f24c9cb0d3e81ec33b46e1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:396 -msgid "Ask participants to pay attention to a demonstration about:" -msgstr "Meminta peserta untuk mempperhatikan demonstarasi mengenai:" - -# 859919052d544097ac8b49f70a1b4fc8 -# f51f0aaeabf9483c8167249a726d4271 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:399 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:412 -msgid "Main functions of OpenStreetMap website" -msgstr "Fungsi-fungsi utama dari website *OpenStreetMap*" - -# c4afb0b529fc4ab9b47669810fd10c0d -# 0ff0a56cf7bd4cc4baeaadfc401e7bdf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:400 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:413 -msgid "Zoom in and zoom out the map" -msgstr "Cara memperbesar dan memperkecil tampilan peta" - -# 24937d32aa4c40b1b8e06af72db4ee7a -# 55feef4c0ff7478c9a58fa60ed3b7749 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:401 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:414 -msgid "Pan the map" -msgstr "Menggeser posisi peta" - -# 8b8f1e98f587437eaeb932d0b5966358 -# 0fa0bde3bbbd45abb74a02b564485adf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:402 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:415 -msgid "Find a place" -msgstr "Mencari tempat" - -# 7e5614681ce74a8f90878a1aa8af50ef -# 0aadea45a8164130bd826fae4bd53dab -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:403 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:416 -msgid "Save image from OSM website" -msgstr "Menyimpan gambar dari situs OSM" - -# b926663d503541f597fe00c1a9e14554 -# bea20fb683c3489f860e863968d91e34 -# c2e57161977d4b19a6d617327b911894 -# 05fc7aee60394cfdb4e395852ffb7591 -# 09dec8fea806482093c80397bb282201 -# 8bda86af7be84404a6c4b87833b178f0 -# b65b08e584054cb8b87b285027c586d4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:394 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:430 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:439 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:530 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:540 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:727 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:875 -msgid "Demo" -msgstr "Demonstrasi" - -# f9f98fd110804debaf176e5a1caa1aa1 -# f7282522687048a6a0b5ea21bc003c88 -# b23a0fb668fc4166ba2834519184ba8c -# 2fc1556b17134c5c86b8174c4e878403 -# 13a6327c11e84eca8fa6b3ab50582b5e -# 0144febc02b64e5cb99963baf604bcd8 -# 252d3b3d3018430f8ce3d8f8a4c8b93e -# 29f2724f97a74be5b51da94d631798d2 -# 07cda613914d42d39a9fe57ea93d6ca9 -# 2d23aac2070c4546a39b118d70a900c9 -# aa6a9b569b1846c8bf9aeb6d42b46af2 -# 7834c25eee9340acbf30eb1ac74bec21 -# 3662ac82e9984567bc8931d9b3c8cdd4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:394 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:406 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:430 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:439 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:882 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1011 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1023 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1031 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1039 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1048 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1143 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1204 -msgid "Computer" -msgstr "Komputer" - -# 4c448a9961aa4aa7b0805fc1d43fab3f -# f91a59453bdb405387cebc90412f32ea -# 9fc7612fced64df39960ae2560503d58 -# e0c488305f764ea494923004dbd65319 -# 9b48ea934400411cb640b6f105d203da -# ea805b84a69b42399d12a06e01dcbe67 -# 1d0f3419b36d48ee8ce568e6fccfcd5f -# adbd3d805632414eb9035da6979213e6 -# 6e590383598e46708961166d52808926 -# 225fdddd80c0434d864a6965eb44a7bd -# db20de20f6ac43ba9310bfa31f13e9fc -# 97bc5f775fef4ddcbcb1935b01f73487 -# 7a1efe61135e40d3b421248b451343c5 -# 169fd2f7b8ab449fb9137620ef5e8346 -# cefa2b628c9d4b94bc9029dc9ad34b57 -# e1689cd651dd4c6a96cbceaccf898b42 -# cf07a3aafc6d468eb0c5df8c77e03c6a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:396 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:408 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:418 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:432 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:441 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:870 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:875 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:896 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1015 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1027 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1035 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1043 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1052 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1147 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1198 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1208 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1216 -msgid "Projector" -msgstr "Proyektor" - -# b62d60f97f6c4be699bf57c182aa3e2e -# ff6529e8fcb94ec3b3ec1c10e03c28d2 -# 5ccafa87a4884acb9e472389eb1356ca -# b6b564f44d354fdbb2e3aa45da7b59ea -# 280b97241ac14264bb6632f577c6f1c9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:401 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:413 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:423 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:437 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:446 -msgid "Module 2" -msgstr "Modul 2" - -# ae538ad996da4891935c447bfc328377 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:406 -msgid "**Practice 40'**" -msgstr "**Praktik 40'**" - -# 90799ac1e77d442591682cc0a1745506 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:408 -msgid "" -"On the projector, show participants openstreetmap.org and ask participants " -"to follow these activities:" -msgstr "" -"Pada proyektor, fasilitator menunjukkan situs openstreetmap.org dan meminta " -"peseta untuk mengikuti langkah-langkah ini:" - -# 86c23d01d2454321bdaef6c36b842e62 -# ad2cefb61ed54a3fbb04177db19cbaf6 -# 88b32068b8e54e06b66ad63e44617f7e -# 0fa914795359431a94487b1ce8f8b20d -# aeea2dfc40574f9fbf94f8321443da4f -# f31766705bf847608811760c6c392894 -# c12070d4c12c48cebdcbe322a7424099 -# dac8ba76700d4508acd54627c21ef382 -# f76b4aa58d9e426ba9de29fa53ebdf65 -# 64c3ec47e56c4e8dbf502ebb85ac1e3d -# 55f331ee518f4cf0a98acf4a81d266d6 -# 585f14b7d24444489f83930e6e1a090f -# 4077245e63a84e1ba0d205eef679c4f4 -# a5dd08fb03534b34bdf8b0840b52e28e -# 63e0a597de424f45ace564f7297f3940 -# be0b496275b34cb3aea1a2c753624e3d -# a6efebe34bd14a909cd4e757fa6aefc6 -# fb122395a38b459b91e79266da68a6d0 -# b1165859e5c049b2ab6777d9aae4ea4c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:406 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:432 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:441 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:532 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:542 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:729 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:751 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:877 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:884 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:890 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1004 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1014 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1023 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1034 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1042 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1051 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1143 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1197 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1207 -msgid "Practice" -msgstr "Praktik" - -# da6d3df826e442cc8baf888e22738e22 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:418 -msgid "**Input 20'**" -msgstr "**Input 20'**" - -# 43f9485881f348fcbee3b09bb4018d8b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:420 -msgid "Explain:" -msgstr "Fasilitator menjelaskan:" - -# b0f2be6ce610459cbeef8f31a726cf31 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:422 -msgid "" -"The OpenStreetMap licence. ODbL is a licence in which all of the data in " -"OpenStreetMap can be used by everyone freely, but the user must add " -"OpenStreetMap attribution and contribute back to OpenStreetMap" -msgstr "" -"Lisensi *OpenStreetMap*. ODbL adalah sebuah lisensi yang berarti semua data " -"pada *OpenStreetMap* dapat digunakan secara bebas dan gratis oleh semua " -"orang, namun pengguna harus bemberikan atribusi dan ikut berkontribusi " -"kembali terhadap *OpenStreetMap* " - -# 1ff848c1f5314ef08e08d7b340c088cd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:426 -msgid "" -"If users choose public domain when they sign up, it means that they consider " -"their edits to be freely usable with no licence whatsoever" -msgstr "" -"Jika pengguna baru memilih *public domain* saat mereka mendaftar, itu " -"berarti mereka menganggap hasil edit mereka dapat digunakan secara bebas " -"tanpa lisensi apapun" - -# 21628d26d4d44e8a883dd26ed1e5c316 -# 041f2168d52748aa99305cdf529b9a29 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:430 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:439 -msgid "**Demo and Practice 45'**" -msgstr "**Demostrasi dan praktik 45’**" - -# db5415b9f3e24dbb808de513e7a590d3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:432 -msgid "" -"Show the participants how to sign up or register an OpenStreetMap account " -"(problems: some participants might not have email accounts, some " -"participants might forget their email passwords)" -msgstr "" -"Fasilitator menunjukkan pada peserta bagaimana cara mendaftar akun " -"*OpenStreetMap* (masalah: peserta yang tidak memiliki alamat email, atau " -"banyak juga yang lupa kata sandi emailnya)" - -# a332875c54dc4827959509b9fceaec2b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:436 -msgid "" -"When everyone is signed up, show participants how to log in to their OSM " -"account" -msgstr "" -"Ketika semua peserta sudah mendaftar, fasilitator menunjukkan cara melakukan " -"masuk ke akun OSM." - -# 923bfe63c0394e1690de649e64a07ad4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:441 -msgid "" -"Show participants how to edit the map on the OpenStreetMap website and save " -"their edits." -msgstr "" -"Fasilitator memperlihatkan kepada peserta tentang bagaimana cara mengedit " -"peta di situs *OpenStreetMap* dan menyimpan hasil edit mereka." - -# ee1bf9431c12472fb357ede67316bd99 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:444 -msgid "How to add and remove objects in the iD editor" -msgstr "Bagaimana menambahkan dan menghapus objek di iD editor" - -# bda708037dae471980d3ecf96fbf780d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:445 -msgid "How to save edits in the iD editor" -msgstr "Bagaimana menyimpan hasil edit di iD editor" - -# 177753b13e234500a27abb34a9ce5847 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:450 -msgid "" -"Ask the participants to give their opinion and feedback about what they have " -"learned in Session 2." -msgstr "" -"Peserta diminta menyampaikan refleksi apa yang telah diterima pada sesi 2 " -"ini." - -# c9e06715cacb4a5fa587404b3f7f07ab -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:448 -msgid "Projector *Powerpoint* *presentation* Module 2" -msgstr "Proyektor *Slide* *Powerpoint* Modul 2" - -# 9217592194634038b885e61fc40ca405 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:457 -msgid "**Forgot Password**" -msgstr "**Lupa Password**" - -# 175a9ad41916452a86ba2eca2b64db23 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:459 -msgid "" -"Sometimes participants forget their password. In this case, you will need to " -"help them to reset or create a new password. If that is not possible they " -"may need to open a new email account. If the participants already have an " -"OpenStreetMap account but forget the password, help them to reset their " -"password." -msgstr "" -"Seringkali peserta lupa kata sandi mereka. Pada kasus ini, Anda perlu " -"membantu mereka untuk mereset atau membuat kata sandi yang baru. Apabila hal " -"tersebut tidak memungkinkan maka bantu mereka membuat alamat email baru. " -"Jika peserta telah membuat sebuah akun *OpenStreetMap* namun lupa kata " -"sandinya, bantu mereka untuk mereset kata sandinya." - -# 501c657f075448f4b75104bda3a6828a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:465 -msgid "**Do not have email**" -msgstr "**Tidak Memiliki Alamat Email**" - -# 6174cbf96ce940f481df8e47f035c352 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:467 -msgid "" -"If participants do not have an email account, help them create a new one." -msgstr "" -"Jika peserta tidak memiliki alamat email, Anda perlu membantu mereka untuk " -"membuatkan email." - -# ca5c1770aeeb4134b05d8b8f692b2ae2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:472 -msgid "Session 3" -msgstr "Sesi 3" - -# 3e44e95304c54a17829cc0d633ec11b0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:484 -msgid "Download JOSM" -msgstr "Melakukan download JOSM" - -# e41fb196813748f68a6f246f39fcc626 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:485 -msgid "Install JOSM" -msgstr "Instal JOSM" - -# f0ee9cb7dedd4fdf9bfa4f6373be49e4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:486 -msgid "Set JOSM preferences" -msgstr "Mengubah pengaturan JOSM" - -# 7841497280ad4f74a6cd35a0585157b2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:487 -msgid "Use basic tools" -msgstr "Menggunakan tools dasar" - -# b6f85817bdab474f8c4553428ac9034a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:488 -msgid "Draw nodes and ways in JOSM" -msgstr "Menggambar nodes dan garis di JOSM" - -# 6a552502227b4dd29bd2ba123d3c5a60 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:489 -msgid "Change objects" -msgstr "Mengubah Objek" - -# c1b7a38d68174d2d9897fcc2c307cb04 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:490 -msgid "Add tags to objects using presets menu" -msgstr "Memberikan informasi terhadap objek dengan menggunakan menu presets" - -# e4b4941a98a441beaf163d5ad04e2e9f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:494 -msgid "JOSM is ready to use for OSM mapping" -msgstr "JOSM siap digunakan untuk pemetaan OSM" - -# 36d7538f731a4083abef6412417d78f5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:498 -msgid "**Working with JOSM**" -msgstr "**Pengoperasian JOSM**" - -# 7e4297fa6e25472cacf6969ce9ad32da -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:500 -msgid "Downloading JOSM" -msgstr "Mendownload JOSM" - -# 3734e4c7385c42c198571ccd751489c0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:501 -msgid "Installing JOSM" -msgstr "Melakukan instalasi JOSM" - -# 1edb28d775e2464ca99b95de42c3b0b7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:502 -msgid "Setting preferences in JOSM" -msgstr "Pengaturan preferensi pada JOSM" - -# d66b46cd0bc54f9db74e4db18a0dbf66 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:504 -msgid "Bing imagery" -msgstr "Citra satelit Bing" - -# a2ab429de16d45e0a350d6b4d7601e8d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:505 -msgid "Presets" -msgstr "Preset" - -# d3b4bb8a89f84febbc4cf1ea20569420 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:506 -msgid "Plugins" -msgstr "Plugin" - -# c56bdfb674204888bc02d0168263b9c2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:507 -msgid "Language settings" -msgstr "Pengaturan Bahasa" - -# b3bc6c2d89f34e59a1020a0032a3daa7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:509 -msgid "Drawing maps using JOSM" -msgstr "Menggambar peta menggunakan JOSM" - -# 0289c31214d14a1fa477bfd4343e235e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:511 -msgid "Basic operation" -msgstr "Operasi dasar" - -# ffaa245bdb904eebbaf6057625db5dda -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:512 -msgid "Nodes, ways, and shapes" -msgstr "Nodes, Garis dan Bentuk" - -# f156318daece4d4c82e300a6b2a823a4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:513 -msgid "Changing objects" -msgstr "Mengubah objek" - -# eb6b6cbab54f4b0c888097e960c0081a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:514 -msgid "Adding presets" -msgstr "Menambahkan presets" - -# 7ddfa2f8e40c404898f6b6edbeaaa630 -# 5e5c39f3de1542a7a230c15874cca009 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:522 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:857 -msgid "**Introduction 15'**" -msgstr "**Pengantar 15’**" - -# 4e8abdad681f4f6b882f8761f346b363 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:527 -msgid "" -"Ensure that JOSM, GPSBabel and GPS drivers are installed on the computers of " -"participants" -msgstr "Pastikan bahwa JOSM, GPSBabel dan GPS terinstal di komputer peserta" - -# 4ce6e7924e4740b5a6b304da802c14a6 -# 984779e47d8c44bbbb91f697ff22140e -# f82899a82e8b444f846cba17f2f2e1be -# 0d674c9175ea4376b565fe2e8e6881e6 -# d2b002032eaf4c8bb49a67477c6f80c8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:522 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:703 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:716 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:857 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:870 -msgid "Talk" -msgstr "Ceramah" - -# 81b50e225eb140ff8da5078d16dbbac6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:530 -msgid "**Demonstration and Practice 1: 45'**" -msgstr "**Demonstrasi dan Praktik 1: 45’**" - -# 774ed06491604937a0479246ba42365d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:532 -msgid "Demonstrate how to install software using projector" -msgstr "" -"Fasiltator mendemonstrasikan cara melakukan instalasi perangkat lunak " -"menggunakan proyektor" - -# dd4f0da8aed74655b1582fabc3c9a411 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:534 -msgid "Ask participants to follow along" -msgstr "Minta peserta untuk mengikuti keseluruhan" - -# ec928e64f23949028dc460d29654f42f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:536 -msgid "" -"Help participants if they have problems with the steps like installing " -"software or computer system configuration" -msgstr "" -"Fasilitator membantu peserta jika mereka menemui masalah pada langkah-" -"langkah seperti saat instalasi perangkat lunak atau konfigurasi sistem " -"komputernya." - -# 2ab3302535004dcda1f44e744207e5fb -# 94b510cba7cf431fa3f42caed566f448 -# 1e6cbfcf3d674b30b64fc6069e8eb5e4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:533 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:877 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1206 -msgid "Participants" -msgstr "Peserta" - -# f81e80aee6054b3d9502dc00670cc28a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:535 -msgid "Computer software on USB Projector" -msgstr "Perangkat lunak komputer pada *USB Projector*" - -# 699c08f203dc44e9b45e7bf964b1cd59 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:540 -msgid "**Demonstration and Practice 2: 90'**" -msgstr "**Demonstrasi dan Praktik 2: 90’**" - -# fdf6413270e0405086f1185bb4cad9db -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:542 -msgid "If software is already installed, ask participants to open JOSM" -msgstr "" -"Jika perangkat lunak sudah terinstal, meminta ke peserta untuk membuka JOSM" - -# 0921a8eadb184ff981cc21da3f1ba5a7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:544 -msgid "Demonstrate the basic features of drawing a map" -msgstr "Fasilitator mendemonstrasikan fitur-fitur dasar dalam menggambar peta." - -# a6d353fad4bf4ed2a260ef3a2c719f10 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:545 -msgid "Ask participants to follow the steps shown about:" -msgstr "" -"Fasilitator meminta peserta untuk mengikuti langkah-langkah yang ditunjukkan " -"tentang:" - -# ea483b1542ec414b93b19d85aa647722 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:548 -msgid "Setting language to Bahasa Indonesia" -msgstr "Mengubah bahasa menjadi Bahasa Indonesia" - -# faac26f916374f1bbfae705132b5c301 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:549 -msgid "Drawing nodes, ways and shapes" -msgstr "Menggambar titik, garis dan bentuk" - -# 9a406140481a4aa68e716c8b704cc1bc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:550 -msgid "Selecting nodes and ways" -msgstr "Memilih node dan garis" - -# c83d27b3c6ed4d2480f44f8b40870233 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:551 -msgid "" -"Understanding that a way consists of nodes, and a shape is a way that is " -"finishes where it begins" -msgstr "" -"Memahami bagaimana sebuah garis terbuat dari beberapa *node*, dan bentuk " -"adalah sebuah garis dimana titik awal dan akhir saling bertemu." - -# 54d94a2f81de45fda360debad166afb7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:553 -msgid "Adding custom presets to the menu" -msgstr "Menambahkan preset ke dalam menu" - -# e41c60e68b964c76baff46aa2d9d938a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:555 -msgid "" -"Explain how the data is added to objects in tag format. A good way to " -"explain a tag is to describe it as a label which is put on the objects and " -"each label describes different attributes about that object" -msgstr "" -"Fasilitator menjelaskan bagaimana data ditambahkan kepada objek dalam format " -"tag. Cara yang baik untuk menjelaskan tag adalah dengan mendeskripsikannya " -"sebagai label yang ditempelkan pada suatu objek, dan setiap label " -"mendeskripsikan berbagai atribut berbeda dari objek tersebut." - -# 0328d4732a784703ab4fc3afdb17c59e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:559 -msgid "" -"Show that there are many types of tags for different attributes, and the " -"easiest way to add them to objects is by using the presets menu" -msgstr "" -"Tunjukkan bahwa terdapat banyak tipe tag dengan atribut yang berbeda-beda, " -"dan cara termudah untuk menambahkannya kepada suatu objek adalah dengan " -"menggunakan menu *Presets*" - -# bea57b2b528741ec9d79caecf9bc9b7d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:562 -msgid "" -"Ask participants to draw their paper maps using JOSM to create nodes, ways " -"and shapes" -msgstr "" -"Fasilitator meminta peserta untuk menggambar peta kertas mereka menggunakan " -"JOSM untuk membuat *node*, garis dan bentuk" - -# 91353a6e85c541448e99cefa2d602b51 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:540 -msgid "Computer with installed software" -msgstr "Komputer dengan perangkat lunak yang telah terinstall" - -# 17dfdfe7b57c4e75ae7b4883dbec5fb4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:544 -msgid "Paper Map" -msgstr "Peta Kertas (yang telah dibuat)" - -# 66adb1e4af2441a99fac9b762299d1f8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:565 -msgid "**Closing 30'**" -msgstr "**Penutup 30’**" - -# f29c890efef345febfb82e56818b2970 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:567 -msgid "One or several participants are asked to summarise Session 3" -msgstr "Satu atau beberapa peserta diminta menyimpulkan pembelajaran di Sesi 3" - -# 3ffa630749a24653a67a470338421a8c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:572 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:777 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1241 -msgid "Common Problems" -msgstr "Kesalahan Umum" - -# fb69abd5cda346e081ba2442d09f0a8f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:574 -msgid "**Setting up on Mac and Ubuntu**" -msgstr "**Melakukan pengaturan pada Mac dan Ubuntu**" - -# 23815460d7114d67af2174aaa7866e33 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:576 -msgid "" -"The steps to install on Mac and Ubuntu are quite easy. JOSM is a software " -"based on Java so it is platform independent, but you have to make sure Java " -"is already installed on your computer system. GPSBabel does not have a GUI " -"for Linux, so it would be harder to use on Linux, especially for newbie " -"users." -msgstr "" -"Proses untuk meng-*instal* JOSM pada Mac dan Ubuntu cukup mudah. JOSM " -"merupakan perangkat lunak berbasis Java, yang merupakan sebuah *platform* " -"yang berdiri sendiri -tidak membutuhkan *platform-platform* yang lain. " -"Namun, Anda harus memastikan bahwa Java telah ter-*instal* pada komputer " -"Anda. GPSBabel tidak memiliki GUI untuk Linux, jadi mungkin akan lebih sulit " -"untuk pengguna Linux, terutama pengguna yang kurang berpengalaman." - -# b20d4d8b1ff946eaa3f70fc62b19a448 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:583 -msgid "**JOSM runs out of memory**" -msgstr "**JOSM kehabisan memori**" - -# f57c74b5636f480e9319e98e1cf67ace -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:585 -msgid "" -"Sometimes if someone downloads a lot of imagery and data on JOSM, the " -"computer runs out of memory and crashes. The solution is to start JOSM with " -"a batch file that will tell JOSM to add extra memory. An example batch file " -"is provide in this toolkit, but you have to edit it using a text editor to " -"put the correct location of the josm.jar file." -msgstr "" -"Terkadang jika seseorang men-*download* begitu banyak citra satelit dan data " -"OSM pada JOSM, komputer akan kehabisan memori dan mengalami *crash*. Untuk " -"mengatasi permasalahan ini, jalankan JOSM dengan sebuah file *batch* yang " -"akan memberi tahu kepada JOSM untuk menambahkan memori ekstra. Sebuah contoh " -"file *batch* telah disediakan bersama toolkit ini, namun Anda harus " -"mengeditnya menggunakan *text editor* untuk memasukkan alamat direktori file " -"josm.jar yang benar." - -# 522c8a515ea54c4089220065fc71965f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:592 -msgid "**Participants add tags on nodes rather than the ways**" -msgstr "**Peserta menambahkan tag pada node, bukan pada garis**" - -# 75d52c6cda2b415586a18a8073eb484e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:594 -msgid "" -"Sometimes it is difficult for new OSM users to understand that a way " -"consists of several nodes. Often a tag that is supposed to be put on a way " -"is accidentally put on the nodes that make up that way. This can happen when " -"a user draws a selection box that selects all the nodes on an object. This " -"is an important problem to correct from the beginning, to train good mappers." -msgstr "" -"Terkadang sulit bagi pengguna baru OSM untuk memahami bahwa garis terdiri " -"dari banyak *node*/titik. Seringkali suatu tag yang seharusnya diberikan " -"pada garis atau poligon, namun justru diberikan pada *node*/titik yang " -"menyusun garis/poligon tersebut. Sebagai contoh, pengguna baru memilih semua " -"titik pada poligon dengan cara menggambar sebuah kotak disekitar objek, " -"sehingga yang terpilih adalah semua garis dan titik yang ada di dalamnya. " -"Hal ini terjadi ketika pengguna melakukan pemilihan dengan membuat sebuah " -"persegi yang dari hasil pemilihan tersebut akan terpilihlah *node*/titik-" -"titik penyusun objek tersebut. Hal ini penting untuk dijelaskan sejak awal, " -"sehingga peserta akan melakukan pemetaan dengan baik." - -# 04e523ac69904080b97df3135c9fbc9c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:604 -msgid "" -"**Is there an easy way to restart JOSM after we finish installing plugins?**" -msgstr "" -"**Apakah ada cara yang lebih mudah untuk melakukan restart JOSM setiap kita " -"selesai menginstall plugins?**" - -# 0657a9b5edf644c68ccb25ece02c968b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:606 -msgid "" -"Yes, there is a plugin that you can add which allow you to restart JOSM by " -"clicking a button. To activate it, install it in the Preferences menu." -msgstr "" -"Ya, ada sebuah plugin yang dapat Anda tambahkan untuk melakukan restart JOSM " -"hanya dengan melakukan klik pada sebuah tombol. Untuk mengaktifkan fitur " -"ini, install *plugin* restart melalui menu *Preferences*." - -# c72a5aa742524793b66de078031bebac -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:610 -msgid "**Could we make tags in Bahasa Indonesia?**" -msgstr "**Bisakah tag dibuat dalam Bahasa Indonesia?**" - -# 37aa9153a2d94160a6c4d993655e6175 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:612 -msgid "" -"Theoretically, you can add any tag to nodes, ways or shapes on OSM. But " -"because all of the objects on OSM are saved in international databases and " -"cover the whole world, we need a consensus about how to make a tag. As an " -"example, a hospital is still a hospital in England, France and even in " -"Indonesia. If every country gives a tag with their own language it will be " -"difficult and confusing to show the icon or symbol for different locations. " -"Because OSM originated in England and English is a very common language all " -"over the world, the English language is the language which is accepted for " -"tagging in OpenStreetMap. However if you want to alter the presets menu to " -"use your own language it is still possible." -msgstr "" -"Secara teori, Anda dapat menambahkan tag apapun yang Anda inginkan kepada " -"sebuah *node*, garis, atau poligon pada OSM. Namun karena semua objek pada " -"OSM disimpan dalam basis data yang berskala internasional dan mencakup " -"seluruh dunia, diperlukan sebuah kesepakatan mengenai bagaimana membuat " -"suatu tag. Sebagai contoh, sebuah rumah sakit tetap merupakan sebuah rumah " -"sakit baik di Inggris, Perancis, atau Indonesia. Jika setiap negara memberi " -"*tag* untuk objek tersebut dengan bahasa mereka sendiri, maka akan menjadi " -"membingungkan, dan akan sulit untuk menunjukkan ikon atau simbol untuk tipe " -"lokasi yang berbeda. Karena OSM dimulai di Inggris, dan bahasa Inggris " -"merupakan bahasa yang sangat umum di seluruh dunia, maka Bahasa Inggris " -"digunakan untuk memberikan *tag* pada OpenStreetMap. Namun, jika Anda ingin " -"membuat menu *preset* menggunakan bahasa Anda sendiri, hal ini dapat " -"dilakukan." - -# 9ddba8ede62e4597a79f09637e6a6e2a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:625 -msgid "" -"**Can we change the colour of nodes and ways and can we change the icons? " -"How can we print?**" -msgstr "" -"**Bisakah kita mengubah warna dari *node* dan garis, dan bisakah kita " -"mengubah ikon? Bagaimana kita mencetaknya?**" - -# 45af91951f374ae39981619f35c2fbf1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:628 -msgid "" -"You can change the colour of the objects in the Preferences menu. This is " -"very useful especially when it is hard to see nodes on ways and shapes " -"against a background. When participants ask about how to change the symbol " -"or show the name of objects, you need to tell them that this program is for " -"editing data and not to see the preview or result and print a map. All of " -"the nodes and tags will be saved in a database, but you can use some other " -"software to render your map to look better. For example, the map on " -"openstreetmap.org is rendered, although there are many more examples. The " -"difference between editing data and rendering on another software might be " -"quite hard to understand by participants in the beginning." -msgstr "" -"Anda dapat mengubah warna dari objek-objek pada menu Preferensi. Hal ini " -"sangat berguna, terutama ketika kita kesulitan untuk melihat *node* pada " -"garis dan bentuk yang berada pada latar belakang yang berbeda. Ketika " -"peserta bertanya tentang cara mengubah simbol atau memunculkan nama objek, " -"Anda harus menjelaskan bahwa program ini adalah untuk mengedit data dan " -"bukan untuk melihat tampilan ataupun mencetak peta. Seluruh *node* dan *tag* " -"tersebut akan disimpan dalam basis data, namun Anda dapat menggunakan " -"beberapa perangkat lunak yang lain untuk membuat peta tampak lebih bagus. " -"Contoh, peta di OpenStreetMap, meskipun masih banyak contoh yang lain. " -"Perbedaan antara mengedit data dan melakukan *rendering* pada perangkat " -"lunak lainnya mungkin awalnya sulit untuk dipahami oleh peserta." - -# 39ee3731536d46fab203e2e22bbb8f5d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:641 -msgid "**What is the difference between presets and tags?**" -msgstr "**Apa perbedaan antara preset dan tag?**" - -# 97804e70ad004f19932fc8dc28d9848c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:643 -msgid "" -"A tag is a piece of information that you attach to nodes, ways or shapes " -"(polygon) to describe one of the attributes. Presets are a menu that " -"simplifies the task of applying tags to an object." -msgstr "" -"*Tag* adalah sepenggal informasi yang melekat pada node, garis atau bentuk " -"(poligon) untuk menggambarkan salah satu atribut. *Preset* adalah menu yang " -"menyederhanakan cara memberikan *tag* pada objek." - -# cfd81bad7d934c7fadc164e348ec587b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:648 -msgid "Session 4" -msgstr "Sesi 4" - -# 5c8a1cdccd704acd943e026c355632f3 -# 2248cc62f1334849ba221c2b641e9068 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:652 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:822 -msgid "Time : 6 hours 15 minutes" -msgstr "Waktu : 6 Jam 15 menit" - -# 2d31c9aa92aa432596db080b46cd857b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:660 -msgid "Understand GPS and the types of GPS" -msgstr "Memahami GPS dan tipe-tipe GPS" - -# 9a6dce930f09482fbbc01d6553d96e26 -# 2c5c217ba5d14a58a8c8f8309f7f2e22 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:661 -msgid "Turn on GPS" -msgstr "Dapat menyalakan GPS" - -# 7a9e3b88da63430a925ac409cf184071 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:662 -msgid "Set up GPS" -msgstr "Pengaturan GPS" - -# 6f48c092a4bf480388404fa5f9c1cff8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:663 -msgid "Understand factors that affect GPS accuracy" -msgstr "Memahami faktor-faktor yang mempengaruhi akurasi GPS" - -# a4f6a443ff8046b0ac3405552ad49e0c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:664 -msgid "Understand tracks and waypoints" -msgstr "Memahami *track* dan *waypoint*" - -# f32b7edd75514b4ab88edbe55774dfbc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:665 -msgid "Collect data using GPS" -msgstr "Mengumpulkan data menggunakan GPS" - -# e5d0a846f1fd442083dc963b9d9de44d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:666 -msgid "Copy GPS data (tracks and waypoints) to computer" -msgstr "*Copy* data GPS (*tracks* dan *waypoints*) ke dalam komputer" - -# 8a46fc77f78c40c1b99737977cd6fa87 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:667 -msgid "Open waypoints and tracks in JOSM" -msgstr "Buka *waypoints* dan *tracks* pada JOSM" - -# 0bcbba1c89a349f38b36471602dc1d62 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:668 -msgid "Upload GPS tracks using JOSM" -msgstr "*Upload track* GPS menggunakan JOSM" - -# 68dc3fd519984ffd92929f2ce906a638 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:669 -msgid "Edit OSM based on GPS data in JOSM" -msgstr "*Edit* OSM berdasarkan data GPS pada JOSM" - -# da855f00254c41e49cb51bae1ba19409 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:673 -msgid "Collect GPS field data in gpx format" -msgstr "Mengumpulkan data lapangan menggunakan GPS dengan format gpx" - -# acfa94365aa24d06b670d3266973be39 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:677 -msgid "**Using GPS**" -msgstr "**Penggunaan GPS**" - -# ed75184a38b34776b2e000b60be837b3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:679 -msgid "What is GPS" -msgstr "Pengertian GPS" - -# 3f552683a45f45c1b5349c335fa88d6b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:680 -msgid "Turning on GPS" -msgstr "Menyalakan GPS" - -# 598192a195f7466a9e11bfb0cbbe831b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:681 -msgid "Navigating the GPS" -msgstr "Menavigasikan GPS" - -# 4191fe29b9914b66a01a1ea453f53484 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:682 -msgid "Tracks and waypoints" -msgstr "*Track* dan *waypoint*" - -# 92c7b76524104a8992f03e9d313bdcc1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:683 -msgid "Saving location (waypoint)" -msgstr "Menyimpan lokasi (waypoint)" - -# 78dd6cf47a924191a98b9394e9edad68 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:684 -msgid "Turning on the Track Log" -msgstr "Menyalakan *Track Log*" - -# 371df47df3b34098b02642a8c4d1552d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:685 -msgid "GPS settings" -msgstr "Pengaturan GPS" - -# 141a66241b594aa695cb46bfec4e11b7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:686 -msgid "How to copy waypoints and tracks to computer" -msgstr "Bagaimana mengcopy *waypoint* dan *track* ke komputer" - -# 2df9578fa3c04f64bc732af7a05aebaf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:688 -msgid "Connecting GPS to computer" -msgstr "Menghubungkan GPS ke komputer" - -# 08281a41643e41d79b0e04572453ed77 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:689 -msgid "Installing GPS driver" -msgstr "Instalasi *driver* GPS" - -# b0733a7ffe2b488aa50295a00750fbed -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:690 -msgid "GPSBabel program setup" -msgstr "Pengaturan program GPSBabel" - -# 2ce1639aa0864f3bbed6868a88bbbab1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:691 -msgid "GPSBabel installation" -msgstr "Instalasi GPSBabel" - -# cf5692cfb607475e866ba8e70ed2880c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:692 -msgid "Copying tracks and waypoints" -msgstr "Mengcopy *track* dan *waypoint*" - -# 3b74da5dbb9b4035a1c34e61077dc6c9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:693 -msgid "GPS data in JOSM" -msgstr "Data GPS pada JOSM" - -# 29f2a4232e4347cf8c37128e8dff5b2a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:695 -msgid "Uploading GPS tracks in JOSM" -msgstr "*Upload* *track* GPS pada JOSM" - -# f1e478a12a5a42e395ed2492498b3b7a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:696 -msgid "Editing GPS data using JOSM" -msgstr "Mengedit data GPS menggunakan JOSM" - -# de7b11d323e440fca310fe4f2133b997 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:703 -msgid "**Introduction 10'**" -msgstr "**Pengantar 10’**" - -# ce15eb11fbbe40a69cde440d1760fe6a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:708 -msgid "**Sharing 15'**" -msgstr "**Tukar cerita 15’**" - -# 493a57a80c5e40ca8aaa9cb21e3a3c67 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:710 -msgid "" -"Any participants who have experience using smartphones may share with others " -"their experience using GPS on their smartphone." -msgstr "" -"Beberapa peserta yang memiliki pengalaman menggunakan smartphone atau ponsel " -"pintar, diminta untuk menceritakan pengalamannya menggunakan GPS yang sudah " -"ada di ponsel tersebut." - -# 8b4706d4685648d9a837d34bf01f27ed -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:713 -msgid "" -"Other participants respond and ask about experiences using GPS in smartphone." -msgstr "" -"Peserta lain menanggapi dan bertanya sekitar pengalaman peserta menggunakan " -"GPS pada ponsel pintar." - -# 8ff20753ebd14c83a80de9b55ff087e2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:708 -msgid "Discussion" -msgstr "Diskusi" - -# 164cc5d5b0e645ab808d3f348a867453 -# cb2d8972b3a9464aba98274f7b71dde3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:711 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:719 -msgid "Module 4" -msgstr "Modul 4" - -# bc5f81c3587a4fd894ba5da36849c660 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:716 -msgid "**Advice 20'**" -msgstr "**Masukan 20’**" - -# 1223fdb3d7d247899f51da1bc466989c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:718 -msgid "Present what GPS does and how it works on the smartphone. For example:" -msgstr "" -"Fasilitator menjelaskan: Apa yang dapat dilakukan oleh GPS dan bagaimana GPS " -"bekerja pada ponsel pintar. Sebagai contoh:" - -# cb060285de174a9cb9f499d3279023ba -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:722 -msgid "" -"Phone receives signals from radio towers, GPS receives signals from " -"satellites orbiting in space." -msgstr "" -"Seperti handphone yang menerima sinyal dari menara radio, GPS menerima " -"sinyal dari satelit yang mengorbit di luar angkasa." - -# 886be244004c40a79ecc356f4c18a62a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:724 -msgid "When receiving a signal, GPS can track absolute locations on earth." -msgstr "" -"Saat menerima sinyal, perangkat GPS dapat mengetahui lokasi pasti di " -"permukaan bumi." - -# 2f18da5116d84cd1b58e06de343674d9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:727 -msgid "**Demonstration and Practice 180'**" -msgstr "**Demonstrasi dan Praktik 180’**" - -# d0cca3896559491b9b3753c80163c93b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:729 -msgid "" -"Give a GPS to each pair of participants (if there are enough GPS). Go " -"outside away from buildings to make sure the satellite signal is good." -msgstr "" -"Berikan sebuah GPS untuk setiap pasang peserta (jika Anda punya cukup " -"perangkat GPS). Pergi keluar ke tempat yang jauh dari bangunan untuk " -"memastikan sinyal satelit akurat." - -# c7013062344541cf84ed9e353af6c1bf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:732 -msgid "Participants should follow the following demonstrations:" -msgstr "Peserta diminta mengikuti langkah-langkah yang didemonstrasikan:" - -# bb71b139ce2d47d6a447c289c183be7e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:735 -msgid "How to turn on the GPS" -msgstr "Bagaimana menyalakan GPS" - -# 3c307c11fa8f4eef9dd2856fed2c2381 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:736 -msgid "" -"Satellite page. Give brief explanation that when GPS is connected with three " -"or more satellite you can know your current location. It is usually takes 30 " -"seconds." -msgstr "" -"Halaman Satelit. Berikan penjelasan singkat bahwa ketika GPS telah terhubung " -"dengan tiga atau lebih satelit, Anda dapat mengetahui lokasi Anda saat itu. " -"Hal tersebut biasanya akan memakan waktu sekitar 30 detik." - -# baeec45355ff4eedabc157f06aef0306 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:739 -msgid "Go to other pages on GPS. Use :kbd:`X` button to move to other pages." -msgstr "" -"Pergi ke halaman lain yang ada di GPS. Gunakan tombol :kbd:`X` untuk pindah " -"ke halaman-halaman yang lain." - -# 288f395f8c78440eb581cd7a33699b6c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:741 -msgid "Create a waypoint and explain what it is." -msgstr "Membuat sebuah waypoint dan menjelaskan apakah itu." - -# 6b41145cee9d4c01b15944af7ad80779 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:742 -msgid "Look to the map page, try to zoom in and zoom out." -msgstr "Lihat pada halaman peta, coba lakukan pembesaran dan pengecilan peta." - -# 6295b4e178df4e6fa1682aa0fb958ae4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:743 -msgid "Turn on track log and explain how the track log works." -msgstr "Nyalakan track log dan jelaskan bagaimana track log bekerja" - -# 0268dfc1096149378d1b5d6e5646aff9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:744 -msgid "Look at the map page and walk so the participants can see the track." -msgstr "" -"Lihat pada halaman peta, cobalah berjalan sehingga peserta dapat melihat " -"*track* yang dibuat mengikuti arah jalan" - -# c80d691d32864041b0b1c50f73889a42 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:746 -msgid "Make another waypoint." -msgstr "Membuat *waypoint* yang lain" - -# 91082bff288f4728b17765950d0df4bd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:748 -msgid "Ask participants to practice using GPS in groups." -msgstr "" -"Fasilitator meminta peserta untuk praktik menggunakan GPS dalam kelompok." - -# 20e073377e7149538706483ac3ce92a4 -# f89f4badccc8455682b5d4373bf269af -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:727 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:751 -msgid "GPS (ideally one GPS for every two or three participants)" -msgstr "Perangkat GPS (idealnya satu GPS untuk setiap dua atau tiga peserta)" - -# bd799894715e46c8a8a611ed1cc31b60 -# 4aba4eaffe1d491da349750996b865a2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:733 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:757 -msgid "Paper and Pen" -msgstr "Kertas dan Pena" - -# e3355766a0a040629887b93dbb849291 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:751 -msgid "**Second Practice 120'**" -msgstr "**Praktik kedua 120’**" - -# 6c8407355b524238bb184fa0166c6504 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:753 -msgid "" -"Ask participants to walk to some roads around the training location in " -"groups. Participants should collect waypoints and tracks correctly, make " -"notes for waypoints in diaries or survey forms and make sketches of the area." -msgstr "" -"Minta peserta untuk berjalan ke beberapa jalan disekitar lokasi pelatihan di " -"setiap kelompok. Peserta harus mengumpulkan *waypoint* dan *track* dengan " -"benar, dan membuat catatan untuk *waypoint* pada buku catatan atau form " -"survei dan membuat sketsa dari area yang dipetakan." - -# d924c3d53e524770b0b5671f6af280d2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:759 -msgid "Instruct every group of participants to follow the steps." -msgstr "Instruksikan setiap kelompok untuk mengikuti arahan." - -# 8064b94c5ab949e3aef8bca06c59c9bc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:760 -msgid "" -"After each group understands how to save the information, send each group to " -"a different direction" -msgstr "" -"Setelah setiap kelompok mengerti bagaimana menyimpan informasi, kirim setiap " -"kelompok ke arah yang berbeda-beda." - -# e963028d8ee84abea6ae30bf0b6c7d8a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:762 -msgid "" -"Ask every group to collect at least ten waypoints before returning to the " -"training location." -msgstr "" -"Minta setiap kelompok untuk mengumpulkan paling tidak sepuluh *waypoint* " -"sebelum kembali ke lokasi training." - -# 79e45bfb9eb84e9999a54a49fa6f6341 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:765 -msgid "**Presentation 60'**" -msgstr "**Presentasi 60’**" - -# bb876c8a3a2149ba84fa80ec2cbf3640 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:767 -msgid "Participants are asked to share their experience doing field practice." -msgstr "" -"Peserta diminta untuk saling menceritakan pengalamannya pada saat praktik " -"lapang." - -# e95fcdbedd334a76982cbd6c7c078c17 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:770 -msgid "**Closing 15'**" -msgstr "**Penutup 15’**" - -# ffbe61c44bb54e58a572757cce9174ee -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:772 -msgid "Q & A about experiences and problems in the field when using GPS." -msgstr "" -"Tanya jawab mengenai pengalaman dan kendala di lapangan saat menggunakan GPS." - -# 9af8d19a754c41b2a92ea1eb5d1de619 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:779 -msgid "**Make sure you have batteries and extra USB cables**" -msgstr "**Pastikan Anda memiliki baterai dan kabel USB cadangan**" - -# c0741e9bd2f44e3888692982bf06c0ce -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:781 -msgid "" -"GPS devices burn through batteries relatively quickly, so it is a good idea " -"to make sure every group has extra batteries when they go out mapping. Then " -"when they return, they will need to move the data from GPS to the computer. " -"It is best if every group has its own USB cable, which will enable faster " -"copying of data to the computers." -msgstr "" -"Perangkat GPS menghabiskan daya baterai yang relatif cepat, jadi pastikan " -"setiap kelompok memiliki baterai cadangan yang dibawa ketika mereka keluar " -"melakukan pemetaan. Ketika mereka kembali, mereka perlu memindahkan data " -"yang didapat ke dalam komputer. Akan sangat baik jika setiap kelompok " -"memiliki kabel USB sendiri, untuk mempercepat dalam menyalin data ke " -"komputer." - -# 3ffd2e6ab3f54dca8c76c7ae5c74d986 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:787 -msgid "**All GPSes should be formatted the same**" -msgstr "**Semua GPS harus diformat sama**" - -# dba99e3f690d422897ae2d6d2ba00709 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:789 -msgid "" -"Before the training, make sure all GPS devices are formatted in the same " -"way, which will prevent participants from getting confused. Many GPS " -"settings can be changed, but when teaching a group it is best if they all " -"look the same." -msgstr "" -"Sebelum pelatihan, pastikan semua perangkat GPS memiliki format yang sama, " -"untuk mencegah peserta menjadi bingung. Banyak pengaturan GPS dapat diubah, " -"tetapi ketika mengajar kelompok akan lebih baik jika format GPS semua " -"terlihat sama." - -# dbfd94585a8046dc9f4c17b09a07e8f4 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:793 -msgid "The key things to make sure of are that:" -msgstr "Hal-hal penting untuk memastikan bahwa:" - -# 41856305f32b4d2b8e41bb99e34eae10 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:795 -msgid "" -"Page arrangement is same and in the same order: Main Menu, Track page, Map " -"page, Satellite page" -msgstr "Susunan dari halaman sama yaitu: Menu Utama, Track Menu, Peta, Satelit" - -# 1407275f859545da985b71cbe1281863 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:797 -msgid "Coordinates are saved in decimal degrees" -msgstr "Koordinat disimpan dalam *decimal degrees*" - -# c65578f05fdc45e6bb427a6779eccc72 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:798 -msgid "Units are in metres" -msgstr "Unit dalam meter" - -# 4f6a3dceb5514e3581d7066a7771b57c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:799 -msgid "Elevation has been calibrated correctly" -msgstr "Ketinggian telah terkalibrasi dengan benar" - -# 7c471097551d4bd79655dac41cc80df9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:804 -msgid "**What projection does the GPS use for collected data?**" -msgstr "**Proyeksi apa yang digunakan GPS dalam Merekam Data?**" - -# 172091ea646e482aafa592bca946c56f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:806 -msgid "" -"A GPS can be set to record in different projections, but for our needs, the " -"GPS must be set to record coordinates in geographic projection WGS84 " -"(EPSG:4326)." -msgstr "" -"Perangkat GPS dapat diatur untuk merekam data dalam bentuk proyeksi-proyeksi " -"yang berbeda, tetapi untuk kebutuhan kita, GPS akan merekam data dalam " -"koordinat geografis WGS84 (EPSG:4326)." - -# b7299d9549fe466fba3362c73c949af5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:810 -msgid "**How accurate is the GPS? How can the accuracy affect the data?**" -msgstr "" -"**Seberapa akuratkah perangkat GPS? Bagaimana akurasi tersebut mempengaruhi " -"pemodelan data?**" - -# f1e1bec090b446cf8942fc45c5b6cff0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:812 -msgid "" -"Consumer-grade GPS devices (such as the Garmin eTrex line) typically have an " -"accuracy of between three and 15 metres. The Satellite page on the GPS " -"indicates the accuracy when it is in use. For our mapping needs, inaccuracy " -"less than 15 metres can be ignored." -msgstr "" -"Perangkat GPS yang biasa digunakan (seperti *Garmin eTrex line*) secera umum " -"memiliki akurasi antara 3 - 15 meter. Halaman satelit pada GPS " -"mengindikasikan akurasi pada saat digunakan. Untuk kebutuhan pemetaan, " -"ketidakakuratan kurang dari 15 meter dapat diabaikan." - -# f227bddf7f15440cac99f9d9686eb07f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:818 -msgid "Session 5" -msgstr "Sesi 5" - -# f80e8be8685d4bf4a0eaa34eed99c4aa -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:830 -msgid "Understand how to use Field Papers" -msgstr "Memahami cara kerja Field Papers" - -# b78aad207bf3478db23668458634d273 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:831 -msgid "Make and print Field Papers" -msgstr "Membuat dan mencetak Field Papers" - -# bcbac682f99949c6af2acaf667faebd5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:832 -msgid "Add information to Field Papers" -msgstr "Menambahkan informasi ke Field Papers" - -# 299f5228df824eacab63c9e55084fcf8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:833 -msgid "Scan and upload Field Papers to fieldpapers.org" -msgstr "Melakukan *scan* dan *upload* *Field Papers* ke situs fieldpapers.org" - -# 2ff1480ea71046f49b810d0369ee564d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:834 -msgid "Open Field Papers in JOSM" -msgstr "Membuka Field Papers ke dalam JOSM" - -# 4c201eb7674a422ca404f424f71b9026 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:838 -msgid "Print Field Papers as PDF for surveying" -msgstr "Mencetak *Field Papers* berupa PDF untuk dibawa survei lapangan" - -# 534d26bedafc406b82e7f567a01395c8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:839 -msgid "Add field data to Field Papers" -msgstr "Menambahkan data lapangan ke *Field Papers*" - -# 0b3c011a6ef6470d96b69419a2e99fcc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:843 -msgid "**Field Papers**" -msgstr "**Field Papers**" - -# d67535c448eb454988d6295d374c0073 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:845 -msgid "What is Field Papers" -msgstr "Apa itu Field Papers" - -# de829af4d1824e3c9f9c441817e3a2d1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:846 -msgid "Using Field Papers" -msgstr "Menggunakan *Field Papers*" - -# 9e41c7f8260f4405a43879c24edc4190 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:847 -msgid "Making and printing Field Papers" -msgstr "Membuat dan mencetak *Field Papers*" - -# 47272d5b5d9d4ed999a480fbeb675308 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:848 -msgid "Mapping with Field Papers" -msgstr "Pemetaan dengan *Field Papers*" - -# 0699fc8f103f44deb0a6d49b179a9482 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:849 -msgid "Scanning and uploading" -msgstr "Proses *scan* dan *upload*" - -# c5cedebc5b504940b711344b6b357b3a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:850 -msgid "Field Papers in JOSM" -msgstr "*Field Papers* di dalam JOSM" - -# e86b632a5f454be1ac5275fa4f2467c9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:862 -msgid "**Q & A 15'**" -msgstr "**Tanya jawab 15’**" - -# 8cb93779931c488fabafaaf82c1231c6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:864 -msgid "" -"Ask if participants have any experience using Field Papers and how they work" -msgstr "" -"Fasilitator menanyakan apakah peserta memiliki pengalaman menggunakan *Field " -"Papers* dan bagaimana mereka bekerja" - -# 198c8bd13c9141bcb1a23569c9fbc5cd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:866 -msgid "Participants ask about how Field Papers works" -msgstr "Peserta bertanya seputar cara kerja *Field Papers*" - -# eb641b8b325c48be89293ca4461a59a6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:867 -msgid "Show participants Field Papers website" -msgstr "Menunjukkan kepada peserta situs *Field Papers*" - -# 735239751d504c7d8404b49b2f4e82d3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:865 -msgid "*Field Papers* examples" -msgstr "Contoh *Field Papers*" - -# a38d5e0b5d5743348b37fd40c1e897a2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:868 -msgid "Module 5" -msgstr "Modul 5" - -# 057909fc1c9d408692b4980e507cba4e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:870 -msgid "**Explanation 15'**" -msgstr "**Penjelasan 15'**" - -# ae7d44191fd54073925598908daaf3d3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:872 -msgid "Explains Field Papers, why it is useful and how it works." -msgstr "" -"Menjelaskan tentang Field Papers, mengapa ini berguna dan bagaimana ini " -"bekerja." - -# 98144b240c7e4869ad17bd6e495c6c0a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:875 -msgid "**Demonstrate and Practice 105'**" -msgstr "**Demonstrasi dan Praktik 105’**" - -# ac2a3c255ee24ac1bfb4011a61c92a43 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:877 -msgid "Demonstrate: (and participants practice)" -msgstr "Demonstrasi: (dan praktik peserta)" - -# 4477f0b1863c41a7bb3024187822b06c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:879 -msgid "Mapping using Field Papers" -msgstr "Pemetaan menggunakan *Field Papers*" - -# 54d49c9450034de1842f07d8241ad617 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:880 -msgid "Scanning and Uploading" -msgstr "Proses Scan dan Upload" - -# 7ccbeba854194eae8fdbb6c1607343a7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:881 -msgid "Opening Field Papers in JOSM" -msgstr "Membuka *Field Papers* di dalam JOSM" - -# d92c289882894ad49f7da66920516ddf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:884 -msgid "" -"Guide teams to make their own Field Papers, and then collect Field Papers " -"from each team as PDF and print them." -msgstr "" -"Fasilitator membimbing tim untuk membuat sendiri *Field Papers* mereka, " -"kemudian kumpulkanlah *Field Papers* dari setiap tim dalam bentuk PDF untuk " -"kemudian dicetak." - -# 426e2c7d10334441b55258e8b7e74c5a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:884 -msgid "Participants Computers Projector Printer Papers" -msgstr "Komputer peseta Projektor Printer Kertas" - -# 64a7f84152ae427288dfd516da89a68e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:890 -msgid "**Big Practice 225'**" -msgstr "**Praktik besar 225’**" - -# 4f52e958f4a14c1db587bdf9954be4b9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:892 -msgid "**Divide area among groups**" -msgstr "**Membagi area antar kelompok**" - -# 862b85b9505341979e3f36826c33bb13 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:894 -msgid "" -"Show participants a satellite picture of the area to be mapped today, over " -"which you’ve drawn lines dividing it into sections." -msgstr "" -"Menampilkan kepada peserta sebuah gambar satelit dari daerah yang akan " -"dipetakan hari ini, di mana Anda telah menggambar garis yang memisahkan " -"menjadi beberapa bagian." - -# 008d174123b149e08352a226375f5be2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:896 -msgid "" -"Do not create very large areas. The focus of this exercise is simply to " -"introduce the survey method." -msgstr "" -"Jangan membuat area yang sangat besar. Fokus latihan ini hanya untuk " -"memperkenalkan metode survei." - -# cd1c246581534ac3b534920b790872b3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:898 -msgid "" -"Explain that together you will all make a fantastic map of this area today. " -"Each team (partners) will be assigned one of these areas to map, and they " -"will all go out to collect data, and later will add it to OpenStreetMap" -msgstr "" -"Jelaskan bahwa Anda dan semuanya akan membuat peta yang menarik hari ini. " -"Setiap tim (pasangan) akan ditunjuk satu dari area tersebut untuk dipetakan " -"dan mereka akan pergi untuk mengumpulkan data, setelah menambahkannya pada " -"*OpenStreetMap*." - -# 9948d0d8506c4cbe9967622e92344e3b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:902 -msgid "" -"Teams will be equipped with a GPS, as well as one or two Field Papers for " -"their area, which they can use to write on and take notes." -msgstr "" -"Setiap tim akan diberikan GPS, dan juga satu atau dua *Field Papers* untuk " -"area mereka, yang mana mereka bisa gunakan untuk menulis dan memberikan " -"catatan pada peta tersebut." - -# 47329ad26c284740ac26ff68f2d9711b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:906 -msgid "" -"Each group goes out to map their area. Make sure all problems and questions " -"about GPS and Field Papers have been answered and the participants " -"understand what they should do. When they finish collect their Field Papers " -"and add them to the website during the break." -msgstr "" -"Setiap grup keluar untuk memetakan area mereka masing-masing. Pastikan " -"segala macam masalah dan pertanyaan mengenai GPS dan Field Papers telah " -"dijawab dan para peserta telah mengerti sehingga mereka mengetahui dengan " -"jelas apa yang akan mereka lakukan. Ketika mereka telah kembali, kumpulkan " -"*Field Papers* mereka dan menguploadnya ke situs *Field Papers* selama " -"istirahat." - -# 23ff08b54334460fb03a03470f904d13 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:912 -msgid "" -"The easiest way to do this is to take photos of the Field Papers and upload " -"them to the fieldpapers.org website." -msgstr "" -"Cara paling mudah untuk melakukan hal ini adalah foto *Field Papers* " -"kemudian menguploadnya ke situs fieldpapers.org" - -# 0c4b78249a6c430ab12e0568e21dd5d0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:906 -msgid "GPS" -msgstr "GPS" - -# 5df0889ed1404d77841489bf8433c587 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:910 -msgid "Pen and Papers" -msgstr "Pulpen dan Kertas" - -# 9b219d8c8b404653802024874cb0ca4e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:915 -msgid "**Review/Q & A**" -msgstr "**Tinjauan Ulang/Tanya Jawab**" - -# be71f1fbb1f64f6f8422ac414a5d6056 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:917 -msgid "Ask one participant from each team to tell how the survey went:" -msgstr "" -"Mintalah perwakilan dari setiap tim untuk menyampaikan pengalaman survei " -"yang telah dilakukan:" - -# 0c7edea22466429bb5dd07092d04beec -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:919 -msgid "Their survey strategy" -msgstr "Strategi survei yang dilakukan" - -# 856d074094d94ab983bf003db27370dd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:920 -msgid "Benefits and weaknesses of their strategy" -msgstr "Kelebihan dan kekurangan strategi tersebut" - -# 9e9d9fc874974eb1bfda2bbba344d411 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:921 -msgid "Problems or challenges that come from doing field surveys" -msgstr "Masalah atau tantangan yang muncul saat survei lapangan" - -# 2155b2ea847c425e9d9ec430ac433897 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:923 -msgid "" -"After identifying common problems, discuss solutions for them to minimise " -"participant problems." -msgstr "" -"Setelah mengidentifikasi masalah yang umum, fasilitator harus mendiskusikan " -"solusinya untuk meminimalkan masalah peserta." - -# 0a2f2748cc3248cf89a6048a63da7db3 -# 1d827a08065746b2a2f2b0db64bf87e7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:915 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1218 -msgid "Microphone" -msgstr "Microphone" - -# c3af53b833264106b9e7d9473707bd9f -# e5da9e6b1d5242d395967376cadb353e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:917 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1220 -msgid "Speaker" -msgstr "Speaker" - -# 76603db5c0824e898a8ae2e9c3e3fadd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:930 -msgid "" -"**How can we print large size maps, such as a poster for a community mapping " -"project?**" -msgstr "" -"**Bagaimana kita dapat mencetak peta ukuran besar seperti poster untuk " -"proyek pemetaan komunitas?**" - -# 9eb858efb5bc4eb5a83b5efa945c1e09 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:932 -msgid "" -"One way of doing this is by using |QGIS|, though the topic is not covered " -"during this session. Basic QGIS training is provided in the next unit of " -"this training, and from there users may be able to learn how to format and " -"print large maps." -msgstr "" -"Salah satu cara untuk melakukan ini adalah dengan menggunakan |QGIS|, " -"meskipun topik tersebut tidak tercakup selama sesi ini. Pelatihan QGIS dasar " -"disediakan di unit berikutnya dari pelatihan ini, dan dari sana pengguna " -"mungkin dapat belajar bagaimana untuk memformat dan mencetak peta besar." - -# a2cfdfb2119f470b8c7afca4dde907f6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:937 -msgid "**How do we scan Field Papers?**" -msgstr "**Bagaimana caranya men-scan Field Papers?**" - -# 4a23c39bf76947ebbc6d7791471d15f3 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:939 -msgid "" -"You can use a scanner, a mobile (smartphone) or a camera to take photos of " -"Field Papers and then upload them to fieldpapers.org." -msgstr "" -"Anda dapat menggunakan scanner atau ponsel (ponsel pintar) atau kamera untuk " -"mengambil gambar *Field Papers* dan kemudian menguploadnya ke situs " -"fieldpapers.org." - -# ca1ff5a17e8b4f1c8c95c0977fb2cd7b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:942 -msgid "" -"**What should we do if uploading Field Papers is really slow or does not " -"work at all?**" -msgstr "" -"**Apa yang harus kita lakukan jika proses upload *Field Papers* berjalan " -"lambat atau tidak berjalan sama sekali?**" - -# 67df2b0d3b2d449cbe32602d6cc0cfbd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:944 -msgid "" -"Unfortunately, the Field Papers website is not always 100% working, " -"especially when many people are using it as once. The process of uploading " -"may take longer than your lunch break. If this becomes a problem during " -"training, participants may simply use their Field Papers as handheld notes " -"and you may show them how to use imagery and GPS data as reference layers." -msgstr "" -"Sayangnya, situs *Field Papers* tidak selalu bekerja 100%, terutama ketika " -"banyak orang menggunakannya secara bersamaan. Proses mengupload sebuah peta " -"dapat membutuhkan waktu yang lebih lama daripada istirahat makan siang Anda. " -"Peserta dapat menggunakan *Field Papers* sebagai catatan dan Anda dapat " -"menunjukkan mereka bagaimana menggunakan citra satelit dan data GPS sebagai " -"layer acuan." - -# 9e6f39d8ff6c4722ab84e8fb03ff97f7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:951 -msgid "Session 6" -msgstr "Sesi 6" - -# d22bdfda71a94a88a82b66cecf26b942 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:954 -msgid "Editing *OpenStreetMap* with *JOSM*" -msgstr "Editing *OpenStreetMap* dengan *JOSM*" - -# df6ae3d851d5487fb744c15851a55ef6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:955 -msgid "Time : 7 hours 45 minutes" -msgstr "Waktu\t: 7 Jam 45 menit" - -# 575602b93d914ea7b5200daf3aa7fe69 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:963 -msgid "Download OSM data in the area you want to edit" -msgstr "Memahami cara mendownload data OSM pada area yang akan Anda edit" - -# 5642594d0f174e1ea77cba583db52ff1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:964 -msgid "Select layers" -msgstr "Memahami cara memilih layer" - -# d7823fe33f474aa8a795f1737707f162 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:965 -msgid "Edit OSM data" -msgstr "Memahami cara mengedit data OSM" - -# 2b6b9565614d487a8ead2dd55a97fe50 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:966 -msgid "Edit and understand tags" -msgstr "Memahami cara mengedit dan memahami tag" - -# 0c798ef65e4f49e19e36b8ea106b275d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:967 -msgid "Upload OSM data" -msgstr "Mengetahui cara mengupload data OSM" - -# 7440e4375c9c422f99831e092fe0e50b -# bf5322ec16964a8b9f4a24ad3a8556c7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:968 -msgid "Save OSM files" -msgstr "Mengetahui cara menyimpan file OSM" - -# 2eeb67e3558f47ffb4585cfffc12a53f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:972 -msgid "Survey area mapped in OSM" -msgstr "Daerah survei terpetakan dalam OSM" - -# 8edadbdabf5c4087970f76ba5a442f4f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:976 -msgid "**Editing OpenStreetMap with JOSM**" -msgstr "**Editing OpenStreetMap dengan JOSM**" - -# 1f936156afdf4f26bee3c4cb4194af84 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:978 -msgid "Exploring JOSM" -msgstr "Mengeksplorasi JOSM" - -# a4d041893cac4e74833ae6d451e390dc -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:979 -msgid "JOSM layers" -msgstr "Layer-layer JOSM" - -# b5834b76739f4ab0b2d1586e37ab9ead -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:980 -msgid "Editing OSM data" -msgstr "Mengedit Data OSM" - -# b194e10eb07b496dbafaab5ffca98b82 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:981 -msgid "Tags" -msgstr "*Tag*" - -# f797e505103146de8fc07e3300924c18 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:982 -msgid "Uploading changes" -msgstr "Mengupload perubahan" - -# df4a9a2c39d3458d889b392a1894d506 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:983 -msgid "Saving OSM files" -msgstr "Menyimpan *file* OSM" - -# a1667b1a32294658a926980cdcb925d2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:995 -msgid "**Review 20'**" -msgstr "**Tinjauan Kembali 20’**" - -# 5cfe1a4310d243bfbd674cb987cae4de -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:997 -msgid "Remind participants of the basic operations in JOSM." -msgstr "" -"Fasilitator mengingatkan kembali kepada peserta mengenai pengoperasian dasar " -"di JOSM" - -# 6df9ee8d01e44e4994f767c6fdc3fb24 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1000 -msgid "" -"Ask participants about basic operations such as how to zoom in and out on " -"the map and how to draw points, lines and polygons." -msgstr "" -"Fasilitator menanyakan kepada peserta mengenai pengoperasian dasar seperti " -"bagaimana cara memperbesar dan memperkecil peta, dan bagaimana cara " -"menggambar titik, garis dan poligon." - -# cc0717dd43cc4793a4493c95f5a58b4d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:998 -msgid "Module 6" -msgstr "Modul 6" - -# 956abc5829c84077b4d955673662d1b0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1004 -msgid "**Download current OSM data of the area you want to edit 20'**" -msgstr "" -"**Melakukan download data OSM terkini pada wilayah yang akan diedit 20’**" - -# 5137445294cf4d6d9cfd5e46352157c0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1006 -msgid "" -"Instruct the participants to download OpenStreetMap data according to the " -"region to be edited." -msgstr "" -"Fasilitator menginstruksikan kepada peserta untuk mendownload data " -"OpenStreetMap terlebih dahulu sesuai dengan wilayah yang akan diedit " -"nantinya." - -# e2c070e19bba4ea0b4c8d8f23eb73cf0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1004 -msgid "Computer Participant" -msgstr "Komputer Peserta" - -# 12df5f17c5774871826a247fbfd2e428 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1007 -msgid "*Powerpoint* *presentation* and projector" -msgstr "presentasi powerpoint dan projector" - -# 608819f443854cff8032a15c77249767 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1011 -msgid "**Setting layer JOSM 20'**" -msgstr "**Mengatur layer JOSM 20’**" - -# 34c1a845da674f7a8581cf34bed975df -# 5c2c52c9a7ec4d84adab8045765fe4a8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1013 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1233 -msgid "Demonstrate:" -msgstr "Demonstrasi:" - -# 04cf2df64f5e452188d5a9e5eb21cc59 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1015 -msgid "Moving JOSM layers above and below one another" -msgstr "Memindahkan layer-layer JOSM diatas dan dibawah satu sama lain" - -# b36eba4bc2414469be10ddd6e2d3c05a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1016 -msgid "Hiding and showing layers" -msgstr "Menyembunyikan dan menampilkan layer" - -# 89c32c9be0744195a405c3828542d762 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1017 -msgid "Enabling and disabling layers" -msgstr "Mengaktifkan dan menonaktifkan layer" - -# cea05a3180de41f4a291051b7acc51e9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1018 -msgid "Removing a layer" -msgstr "Menghapus layer" - -# af79fb0b6f324db4b30c0b668a53be56 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1019 -msgid "Setting layer transparency" -msgstr "Mengatur transparasi layer" - -# a37bf97ba5c24b318dcafabf8dd62ccf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1021 -msgid "Participants should practice after these tasks are demonstrated." -msgstr "Peserta harus mempraktekkan setelah tugas ini ditunjukkan." - -# a2fefa77102c4cc1b772926ca1d7307f -# 6d5c7f337f2047138c2be969e185e92f -# 4d8b47084b144ab18d742581e2043ac2 -# 1fe231cd40334ed49a8dbcf7a3b96092 -# 3b3dc38b37eb449d8ca665acff4ac1f5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1011 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1031 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1039 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1048 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1231 -msgid "Demonstration" -msgstr "Demonstrasi" - -# 070d8e85344e4630be9b86fa7a179970 -# 479936fe334247878899db9b9a1a0188 -# 496d68f3f1a14a41895d7e52ef16e3cf -# 301f721d988844c9a889bb4f5e7ef3a6 -# 019906e7a91c456c81b468a3b20b2663 -# 74edcc3a1f2c463e919120869a1defc7 -# a983da63496746b8ad36139d4d1813af -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1013 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1025 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1033 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1041 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1050 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1145 -msgid "Participant" -msgstr "Peserta" - -# be419d1fcc6d437584d6b8f0582ea225 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1023 -msgid "**Editing OSM data 180'**" -msgstr "**Mengedit data OSM 180'**" - -# c7e948e1c79748069776ebaf7a542502 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1025 -msgid "" -"Ask participants to edit their respective regions, according to the " -"information they collected." -msgstr "" -"Fasilitator meminta peserta untuk mengedit daerahnya masing-masing, sesuai " -"dengan informasi yang mereka kumpulkan." - -# febd836350bb40c98b453d73593750b7 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1027 -msgid "" -"Continually walk around to each group to observe participants' work, help " -"answer questions and catch mistakes." -msgstr "" -"Fasilitator harus terus berkeliling ke masing-masing kelompok untuk " -"mengamati pekerjaan peserta dan membantu menjawab pertanyaan dan mengoreksi " -"kesalahan." - -# ca114c0a70fd4c58b88c0dc366feffbb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1031 -msgid "**Tags 150'**" -msgstr "**Tag 150'**" - -# 19dfe317694c467d872af83033dc2464 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1033 -msgid "" -"Show participants how to enter information (tags) to the objects instead of " -"through presets in JOSM." -msgstr "" -"Fasilitator menunjukkan kepada peserta bagaimana cara memasukkan informasi " -"(tag) ke dalam objek bukan melalui preset di JOSM." - -# 166e228e0278476fa8ae0267ab0e089c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1036 -msgid "Ask participants to practice adding tags directly" -msgstr "" -"Fasilitator meminta peserta untuk praktik menambahkan tag secara langsung" - -# 6760b4f5b4b840619ba40c035ced849c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1039 -msgid "**Upload OSM Data 45'**" -msgstr "**Melakukan Upload Data OSM 45’**" - -# 2a514fe5405a4684b35a9a04a10107fe -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1041 -msgid "Show participants how to upload the data that they have added to OSM." -msgstr "" -"Tunjukkan kepada peserta bagaimana cara mengupload data yang telah mereka " -"tambahkan ke OSM." - -# d86cd035dfe04646ad94cbb3b89fc6d1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1043 -msgid "" -"Ask participants to upload their data in accordance with their respective " -"working areas. Each group is allowed one person only to upload to avoid " -"conflicts that otherwise might occur." -msgstr "" -"Fasilitator meminta peserta untuk mengupload data mereka masing-masing " -"sesuai dengan wilayah kerjanya. Masing-masing kelompok diperbolehkan satu " -"orang saja untuk mengupload datanya untuk menghindari konfik yang " -"kemungkinan bisa terjadi." - -# 3ab5f12e6518452192df6bed3903bac2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1048 -msgid "**Save OSM file 25'**" -msgstr "**Menyimpan file OSM 25’**" - -# 5dcceed592d34bd492b4733a0f32aac2 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1050 -msgid "" -"Show participants how to save OpenStreetMap files on their laptops. " -"Participants should be reminded not to let too much time pass between " -"downloading and uploading OSM data." -msgstr "" -"Tunjukkan peserta bagaimana cara menyimpan file OpenStreetMap pada laptop " -"mereka. Peserta harus diingatkan untuk tidak membiarkan waktu terlalu lama " -"antara mendownload dan mengupload data OSM." - -# f261dc0f898349bf8d3bf4bb1f46cb10 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1059 -msgid "" -"**Should we use a point or a polygon to identify a restaurant in a mall?**" -msgstr "" -"**Haruskah saya menggunakan sebuah titik atau sebuah poligon untuk " -"mengidentifikasi sebuah restoran dalam suatu mall?**" - -# 4a1244d9ca89435c9145b4909bef1d22 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1061 -msgid "" -"You should use a point. Polygons are used if you clearly know the shape of a " -"building or area. If you want to identify a landmark inside a larger " -"polygon, such as a building it is better to use a point." -msgstr "" -"Anda sebaiknya menggunakan titik. Poligon digunakan jika Anda mengetahui " -"dengan jelas bentuk bangunan atau areanya. Jika Anda ingin mengidentifikasi " -"sebuah landmark di dalam poligon yang lebih besar, seperti sebuah bangunan " -"lebih baik menggunakan titik." - -# 9d25874e96a4455a9841f05e25dc224f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1066 -msgid "**How do we map a bridge in JOSM?**" -msgstr "**Bagaimana cara memetakan sebuah jembatan di JOSM?**" - -# f9d4bd2e249a4ce99c129cab841138e9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1068 -msgid "" -"To mark a bridge, you need to split the lines which marks the bridge " -"(usually a way) on both sides of the bridge. If you have a road that crosses " -"a river, you can click on the dots on the side of the river and press 'P' on " -"the keyboard to split the line at that point. Then the selected line can be " -"tagged as bridge using the presets menu." -msgstr "" -"Untuk menandai sebuah jembatan, Anda perlu memisahkan garis yang menandai " -"jembatan (biasanya sebuah jalan) di kedua sisi jembatan. Jika Anda memiliki " -"sebuah jalan yang dilewati sungai, Anda dapat mengklik pada titik di sisi " -"sungai dan tekan 'P' pada keyboard untuk memisahkan garis pada titik " -"tersebut. Kemudian garis yang telah dipilih dapat diberi tag sebagai " -"jembatan menggunakan menu preset." - -# 54d7996910004e2f94c459553fc474da -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1075 -msgid "**How do we digitise a building to have a perfect rectangle shape?**" -msgstr "" -"**Bagaimana cara mendijitasi sebuah bangunan yang memiliki bentuk kotak " -"sempurna?**" - -# ca6bcd6064d6472d975fae91ae73b5d6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1077 -msgid "" -"It is not easy to make a perfect rectangle only using your hand. Luckily " -"there are tools that can make the proper angle at each corner of a polygon. " -"Select the polygon (building) and press :kbd:`Q` on the keyboard to shape " -"that polygon." -msgstr "" -"Tidak mudah untuk membuat sebuah kotak sempurna secara manual dengan tangan " -"Anda sendiri. Untungnya terdapat alat yang dapat membuat sebuah poligon " -"dengan sudut yang tepat di setiap sudutnya. Pilih poligon (bangunan) dan " -"tekan :kbd:`Q` pada keyboard untuk membentuk poligon tersebut." - -# 9f690bdc0a484b49b1b98ad5e437f633 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1083 -msgid "" -"**The map on OpenStreetMap does not show edits immediately. What can we do?**" -msgstr "" -"**Peta di OpenStreetMap tidak menunjukkan editan seketika. Apa yang bisa " -"kita lakukan?**" - -# 908d75c7cdc84def83d4c10ae828c409 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1085 -msgid "" -"Usually it will take about 5-10 minutes to see your changes appear on the " -"OpenStreetMap website. If you can not see the changes on OpenStreetmap after " -"that time it may be because your browser is still caching the old map. In " -"this case you should reload the page in your browser. If this is not " -"successful you may need to delete the cache in your browser. For example, in " -"Google Chrome go to :menuselection:`Tools ‣ Clear Browsing Data`. Click :" -"guilabel:`Empty the cache` and click :guilabel:`Clear browsing data`. Then " -"refresh the page again and your edits should appear. Sometimes it still can " -"take a while until changes to OpenStreetMap appear on the main page." -msgstr "" -"Biasanya dibutuhkan sekitar 5-10 menit untuk melihat perubahan Anda muncul " -"pada situs OpenStreetMap. Jika Anda masih tidak dapat melihat perubahan pada " -"OpenStreetMap mungkin karena browser Anda masih menampilkan peta yang lama. " -"Pada kasus ini Anda harus memuat ulang halaman pada browser Anda. Jika " -"langkah ini tidak berhasil Anda harus menghapus *cache* pada browser Anda. " -"Sebagai contoh di Google Chrome Anda pilih :menuselection:`Tools -> Clear " -"Browsing Data`. Klik :guilabel:`Empty the cache` dan klik :guilabel:`Clear " -"browsing data`. Kemudian refresh kembali halamannya dan hasil edit Anda akan " -"muncul. Terkadang ini tetap membutuhkan waktu beberapa saat hingga perubahan " -"tersebut muncul di halaman utama OpenStreetMap." - -# 75ba9db3d559435b843c37c94b7b2275 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1098 -msgid "Session 7" -msgstr "Sesi 7" - -# 7fdb8ca9cdf14c2e8970c3f7f9da87a6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1101 -msgid "Imagery Offset" -msgstr "Pergeseran Citra Satelit " - -# 6f34b0445fe54a508b00ba3c19c8e5f5 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1110 -msgid "Understand the definition of imagery offset" -msgstr "Memahami pengertian pergeseran citra satelit" - -# 3fb598ed530a4234b3d93e8e1180e0b0 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1111 -msgid "Understand components of imagery (resolution and georeference)" -msgstr "Memahami komponen-komponen citra (resolusi dan georeferensi)" - -# 29b2244d17c44b5fa5bce87e07b3940e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1112 -msgid "Explain how imagery offsets occur" -msgstr "Menjelaskan bagaimana pergeseran citra satelit terjadi" - -# e55013ea35a04a0980fe4560c0c52102 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1113 -msgid "Fix imagery offset" -msgstr "Memperbaiki pergeseran citra satelit" - -# fc7ac106f29b4b3ab82d94cb55bdb9f8 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1117 -msgid "Able to correct imagery offset" -msgstr "Mampu memperbaiki pergeseran citra satelit" - -# 9ac4e998f0124423b2ef06e6b1d8017e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1121 -msgid "**Imagery Offset**" -msgstr "**Pergeseran Citra Satelit**" - -# 89ad87234b234465a38dfd862b3008cf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1123 -msgid "Definition of imagery offset" -msgstr "Pengertian pergeseran citra satelit" - -# 949042649fbd42a3b86f0e2850417408 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1124 -msgid "Imagery resolution and georeferencing" -msgstr "Resolusi dan georeferensi citra satelit" - -# dbc0e6bc10b24eb1bcc39d16eb669fdb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1126 -msgid "Fixing imagery offset" -msgstr "Memperbaiki pergeseran citra satelit" - -# ceea67794d484593a5d4f3805586aede -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1138 -msgid "**Explain Imagery 60'**" -msgstr "**Menjelaskan Citra Satelit 60’**" - -# 140290745e6241cb845fe12109b52c77 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1140 -msgid "" -"Explains about imagery, including resolution, georeference, why imagery " -"offset occurs and how to fix it." -msgstr "" -"Fasilitator menjelaskan tentang citra satelit, termasuk resolusi, " -"georeferensi, mengapa pergeseran citra satelit bisa terjadi dan bagaimana " -"memperbaikinya" - -# 6b524815df58490e8d10ad7d71c762b9 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1141 -msgid "Module 7" -msgstr "Modul 7" - -# 47ce8d1be7494eceab278d2fb39e6ccb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1143 -msgid "**Add plugin imagery_offset_db in JOSM 20'**" -msgstr "**Menambahkan plugin imagery_offset_db pada JOSM 20’**" - -# 8c78043118174b33af6462c85ed13554 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1145 -msgid "" -"Ask participants to add imagery_offset_db plugin from the Plugins list in " -"the Preferences menu." -msgstr "" -"Fasilitator meminta kepada peserta untuk menambahkan plugin imagery " -"offset_db dari daftar Plugin pada menu Preferensi." - -# 2d48c4c6f8d64466afbb7f8cf9b4a511 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1147 -msgid "Guide the participants step-by-step on how to utilise the plugin." -msgstr "Peserta dipandu langkah-demi-langkah dalam memanfaatkan plugin." - -# 3077352856ed4b94afcc2b6e8547e4ac -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1152 -msgid "Discussion and Questions" -msgstr "Diskusi dan Pertanyaan" - -# c657b733a37a4ac2a3b3efeed7ae291e -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1157 -msgid "Session 8" -msgstr "Sesi 8" - -# 08c5515c0486439c9a665530bfe2754c -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1170 -msgid "Download OpenStreetMap data from Geofabrik website" -msgstr "Mendownload data OpenStreetMap dari situs Geofabrik" - -# 64840b730d4a44dbafa8086e9889e8d6 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1171 -msgid "Download customised OpenStreetMap data using HOT Exports" -msgstr "Mendownload data OpenStreetMap menggunakan HOT Exports" - -# 8e1f838746824d45a13f58c18a13a09f -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1175 -msgid "" -"Able to access pre-processed vector files for use in Beginner QGIS training" -msgstr "" -"Dapat mengakses file vektor yang belum diproses untuk digunakan dalam " -"pelatihan QGIS untuk pemula." - -# 82ae0426f39548f7a1ce8be672bcf0eb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1179 -msgid "**Getting OSM Data**" -msgstr "**Perolehan Data OSM**" - -# 760c178382644a9c95a4ffc780844437 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1181 -msgid "OpenStreetMap data from Geofabrik Website" -msgstr "Mendonwload data OpenStreetMap dari situs Geofabrik" - -# 682b85f4ded94fdea81062464ccd58cd -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1182 -msgid "" -"OpenStreetMap data according to region and selecting attributes with HOT " -"export tool" -msgstr "" -"Mendownload data OpenStreetMap sesuai dengan wilayah dan memilih atribut " -"menggunakan HOT Export." - -# a44d8222b8f34d51a78f099dbddfd47a -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1193 -msgid "Module 9" -msgstr "Modul 9" - -# 8b255666201d47df9c4e928500be4b39 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1195 -msgid "**Download OSM vector files from Geofabrik website 20'**" -msgstr "**Mendownload file vektor OSM melalui situs Geofabrik 20'**" - -# c450497f8ea34aa8ae7cfb49e9943756 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1197 -msgid "" -"Shows how participants can get OSM data in shapefile format through the " -"Geofabrik website that can be processed by QGIS and InaSAFE." -msgstr "" -"Fasilitator menunjukan bagaimana peserta dapat memperoleh data OSM dalam " -"bentuk shapefile melalui situs Geofabrik agar dapat diolah dengan perangkat " -"lunak QGIS dan InaSAFE." - -# e78979c2695946e1a9533a4917de9586 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1201 -msgid "" -"Ask participants to download vector files themselves via the Geofabrik " -"website." -msgstr "Peserta diminta mendownload file vektor OSM melalui situs Geofabrik." - -# 814010a0be604a29bc72719c1e130e07 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1195 -msgid "Computer Participants" -msgstr "Komputer Peserta" - -# b2c8b36e85a94b1daa6fa96b17d49734 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1204 -msgid "**Download OSM vector files via HOT Export website 30'**" -msgstr "**Mendownload file vektor OSM melalui situs Hot-Export 30’**" - -# 27c81dd9384a4299ae9f1260654a9eeb -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1206 -msgid "Demonstrate" -msgstr "Demonstrasi" - -# 8305063f1f5142a5b077c7c59d5c91ff -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1208 -msgid "" -"How participants can get OSM data in shapefile format through the HOT Export " -"website that can be processed by QGIS and InaSAFE software" -msgstr "" -"Bagaimana peserta dapat memperoleh data OSM dalam bentuk shapefile melalui " -"situs Hot-Export agar dapat diolah dengan perangkat lunak QGIS dan InaSAFE" - -# 1502434a24904ce38944c8a73ada87b1 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1211 -msgid "The difference between Geofabrik and HOT Export websites" -msgstr "Perbedaan antara situs Geofabrik dan HOT-Export " - -# 9af8cf9c55e74ead8afb69ccc1eff361 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1213 -msgid "" -"Ask participants to download vector files themselves via the HOT Export " -"website." -msgstr "" -"Peserta diminta untuk mendownload file vektor melalui situs Hot-Export." - -# 45f27cd08bfc48269fb20992b93b0c89 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1216 -msgid "**FGD 20'**" -msgstr "**FGD 20’**" - -# 99de7e0bcffb493f918f88991ea02509 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1218 -msgid "Topics for discussion are:" -msgstr "Topik untuk didiskusikan diantaranya:" - -# f4e5041fa211486888a44acff64fe79b -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1220 -msgid "How will OSM will be useful for participant activities?" -msgstr "Bagaimana OSM akan berguna bagi kegiatan para peserta.?" - -# 32a366cca9fa44108e00939bd85effad -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1221 -msgid "" -"Difficulties in using OSM for participants. For example, some common " -"difficulties are the unavailability of GPS devices and satellite imagery or " -"slow internet." -msgstr "" -"Kesulitan dalam menggunakan OSM bagi peserta. Sebagai contoh, kesulitan yang " -"paling umum terjadi adalah masalah tidak tersedianya alat GPS, citra " -"satelit, atau internet yang lambat." - -# 7b728c8333d44d2cb637f21c6dcb3dea -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1225 -msgid "" -"Do not provide solutions directly to the participants. Note the comments and " -"needs of the participants so that it can be submitted to the training " -"organiser or relevant partner to be followed up on (for example, set aside a " -"budget for the procurement of GPS)." -msgstr "" -"Fasilitator tidak harus memberikan solusi langsung kepada peserta. Catat " -"seluruh kebutuhan peserta sehingga bisa disampaikan ke penyelenggara " -"pelatihan atau mitra yang bersangkutan untuk ditindaklanjuti (misalnya, " -"menyisihkan anggaran untuk pengadaan GPS)." - -# 285d594be22d4051bcfc93e23a933d39 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1218 -msgid "FGD" -msgstr "FGD" - -# 0133e03cca9c419499ad036f2887d050 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1231 -msgid "**Closing and Follow-up 15'**" -msgstr "**Penutup dan Tindak Lanjut 15’**" - -# ede2279377504321b2ad0019d62c7230 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1235 -msgid "" -"How participants can discuss through social media such as Facebook or Twitter" -msgstr "" -"Bagaimana peserta dapat berdiskusi melalui sosial media seperti grup " -"Facebook atau Twitter." - -# 3418853f41524c67bb6c915d1f61f085 -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1237 -msgid "How participants can join the talk-id mailing list" -msgstr "Bagaimana caranya peserta dapat bergabung milis talk-id" - -# 55aea444ffc943d7957e7f1d1d58aa2d -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1243 -msgid "**HOT Exports takes a long time to process a job**" -msgstr "**HOT Exports memakan waktu lama untuk memproses pekerjaan**" - -# b51796885639434b8a7cd74ed6965fbf -#: ../../source/training/curriculum/osm-beginner-toolkit.rst:1245 -msgid "" -"The HOT Export server uses a first come - first serve strategy. That means " -"the server serves the user who executes the first data request first. The " -"size of the desired area also affects the processing time. The greater the " -"total area the longer the process will take." -msgstr "" -"Server HOT Export menggunakan strategi *first come - first serve*. Yang " -"diartikan: server melayani pengguna yang lebih dulu mengeksekusi permintaan " -"data. Ukuran luas area yang diinginkan juga mempengaruhi waktu proses. " -"Semakin luas wilayah yang diambil datanya maka akan semakin lama prosesnya." diff --git a/docs/i18n/id/LC_MESSAGES/training/curriculum/osm-intermediate-toolkit.po b/docs/i18n/id/LC_MESSAGES/training/curriculum/osm-intermediate-toolkit.po deleted file mode 100644 index b0e094bd..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/curriculum/osm-intermediate-toolkit.po +++ /dev/null @@ -1,2173 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-08 05:25+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# c879a8e530094718a98c82cfa97833c5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:2 -msgid "Unit 3 Facilitator Guide" -msgstr "Unit 3 Panduan Fasilitator" - -# 10a6a4ad42a2448893ac6660bbdf92de -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:5 -msgid "" -"Intermediate OpenStreetMap Trainer's Toolkit - (A Guide for Facilitators)" -msgstr "" -"OpenStreetMap Tingkat Menengah Trainer's Toolkit - (Panduan untuk " -"Fasilitator)" - -# 22d68d93199348ec8481c6761563f74c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:7 -msgid "**BADAN NASIONAL PENANGGULANGAN BENCANA**" -msgstr "**BADAN NASIONAL PENANGGULANGAN BENCANA**" - -# feb2a4ee7cde4d67ac2a0880936ba024 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:9 -msgid "**2013**" -msgstr "**2013**" - -# 1dea0965db7f462aab10552a79a94dc9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:12 -msgid "About Toolkit" -msgstr "Tentang Toolkit" - -# 95694f3ae8514f81919af21f5a571422 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:14 -msgid "" -"**The Intermediate OpenStreetMap Trainer Toolkit** is designed to prepare " -"trainers to deliver an intermediate training course to users of OSM. The " -"materials included are designed to continue from the **Beginner " -"OpenStreetMap Training**." -msgstr "" -"**OpenStreetMap Tingkat Menengah Trainer Toolkit** ini dirancang untuk " -"mempersiapkan fasilitator dalam menyampaikan suatu pelatihan tingkat " -"menengah kepada pengguna OSM. Materi-materi yang terkandung di dalamnya " -"dirancang sebagai lanjutan dari **Pelatihan OpenStreetMap Tingkat Dasar**." - -# acb31e4e734b4510a77d09c0444f792a -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:19 -msgid "" -"When organising an OpenStreetMap workshop, numerous factors must be " -"considered, including the length of time you have to train, available " -"resources, number of trainees and their technical skills. This toolkit will " -"help trainers prepare trainings for different types of participants, but it " -"will primarily focus on educating those with little or no experience with " -"GPS, map-making and computers. Participants of this training should have " -"experience already working with OSM." -msgstr "" -"Ketika merencanakan suatu lokakarya OpenStreetMap, banyak faktor yang harus " -"dipertimbangkan, termasuk lama pelatihan, sumberdaya yang tersedia, jumlah " -"fasilitator dan kemampuan teknis peserta. Toolkit ini akan membantu " -"fasilitator mempersiapkan pelatihan untuk berbagai tipe peserta, namun " -"toolkit ini akan lebih terfokus pada mendidik peserta yang sedikit atau sama " -"sekali tidak memiliki pengalaman dengan GPS, pembuatan peta, dan penggunaan " -"komputer. Peserta dari pelatihan ini harus memiliki kemampuan bekerja dengan " -"OSM." - -# 777b3e45c07648b5a225def0c3a1b7a8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:27 -msgid "" -"The purpose of this toolkit is to prepare the trainer to successfully train " -"workshop participants in adding spatial data to OpenStreetMap." -msgstr "" -"Tujuan dari toolkit ini adalah mempersiapkan fasilitator untuk melatih para " -"peserta lokakarya dalam menambahkan data spasial ke OpenStreetMap." - -# 5cd9a7e4119a46228cbe2ada6984a92b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:31 -msgid "Purpose of Workshop" -msgstr "Tujuan Lokakarya" - -# 6eea384123ff4fd18c6a7b36cca8c911 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:32 -msgid "" -"This workshop is intended to achieve the following standard and basic " -"competencies:" -msgstr "" -"Lokakarya ini bertujuan untuk mencapai standar kompetensi dan kompetensi " -"dasar:" - -# c0a6a9f9ad0a4b1c8d7be2fc8aba02ce -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:36 -msgid "Standard Competency" -msgstr "Standar Kompetensi" - -# df8f45fa535f42b9bca8d3cd8f0752aa -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:37 -msgid "Quality Assurance in OSM mapping" -msgstr "Penjaminan Kualitas dalam pemetaan OSM" - -# 170217ffb43d4aa6862a78fda7e92b37 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:40 -msgid "Basic Competencies" -msgstr "Kompetensi Dasar" - -# f4f74e88683f452b91c2624da081bf6f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:41 -msgid "" -"Apply better digitising techniques for improving quality of collected data" -msgstr "" -"Menerapkan teknik dijitasi yang lebih baik untuk meningkatkan kualitas data " -"yang terkumpul" - -# beada5c1755045fb9ce4cbf6c4dfa97f -# b2cdeaf4706645bf9b02639a3cef8f7c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:42 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:298 -msgid "Use JOSM validation tools to ensure the quality of map contributions" -msgstr "" -"Menggunakan alat validasi JOSM untuk memastikan kualitas peta kontributor" - -# b90451bb6052478fae5e9781acd41dc6 -# cc2e6338dc0b4dd98439aae71ca4e356 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:43 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:376 -msgid "Resolve conflicts when uploading OSM data" -msgstr "Menyelesaikan konflik ketika melakukan *upload* data OSM" - -# 8880afc9a24f4b7c9aab5222e29049e9 -# e0fbaeb7dc42458c9a1f83ad0b003e8e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:44 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:461 -msgid "Create presets files in JOSM" -msgstr "Membuat file *presets* di JOSM" - -# 836539cfc4814e6da84d0be10009dcb7 -# 22540c31e73a4ba1867b44a50d352cc2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:45 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:565 -msgid "Use private data store feature to keep private data" -msgstr "Menggunakan fitur *private data store* untuk menyimpan data pribadi" - -# 2004c899a99a435e93a883ca68681141 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:46 -msgid "Create and edit pages in OSM Wiki" -msgstr "Membuat dan mengedit halaman pada Wiki OSM" - -# afe28f6f554240458a6a886bf0d87c6c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:49 -msgid "Workshop Materials" -msgstr "Materi Lokakarya" - -# 6b3d03b8102246cda7b8414237ea603b -# 0d8bace48bf1480dbaa501a327a2fa7b -# c7d2dc1d70b84d71a71e0686557773ca -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:50 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:102 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:106 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:161 -msgid "Advanced Editing" -msgstr "Teknik Editing Tingkat Lanjut" - -# 03bf9150eaf94772a4e5a57a9b961833 -# fa0a08676cec461982bdae3d5d120caf -# b71e6eb1abb64c69bd8edeeed8661648 -# 7c29d918d30e405484a259a6a9aab7f1 -# 3fca2438f6b140c5b5bd1b876dfa944b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:51 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:110 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:118 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:122 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:293 -msgid "Quality Assurance" -msgstr "Penjaminan Kualitas" - -# 4bb620bd46f14bbfa9d086e236d3bc1c -# daa05cc102c6403aaf0e444ed655b6c7 -# 9742291859f74f62b4a3200a94ade00b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:52 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:126 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:371 -msgid "Dealing with Conflicts" -msgstr "Penyelesaian Konflik" - -# d09d660fe3fb4520aadd77373fd61b81 -# 88aa628849ce479e97f9d751ebbd39f2 -# 39d60411aa994bb6b189cdfc45f4891d -# fac7fb3397254dffbd94915a3dfffbf9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:53 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:130 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:138 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:456 -msgid "Creating JOSM File Presets" -msgstr "Pembuatan File Presets JOSM" - -# 845cf60696fa4e1584ef56e107721f31 -# 971421161d21416fa3b7edea005c918e -# f6b7f15ce730475586468e76fb5ffaba -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:54 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:142 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:560 -msgid "Using the Separate Data Store" -msgstr "Penggunaan *Private Data Store*" - -# 7a124bdd41fb4214a8dbbd85764e8a48 -# a4b964ece2a94b598d60e6e1f21a683b -# b7f5bcbf995348a183a518b3a9fffa7e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:55 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:146 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:649 -msgid "Editing the OpenStreetMap Wiki" -msgstr "Mengedit Wiki OpenStreetMap" - -# 137083d7eb8c45349f002be9556ba092 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:58 -msgid "Workshop Strategies" -msgstr "Strategi Lokakarya" - -# 0f43d50c1af04a54ade07dc1b132f4f9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:59 -msgid "" -"Methods emphasised in this workshop are participatory teaching and active " -"participation in all sections and activities, rather than lecture method." -msgstr "" -"Metode yang digunakan dalam lokakarya ini adalah pengajaran partisipatif dan " -"partisipasi aktif dalam semua bagian dan kegiatan, bukan metode ceramah." - -# d584d1017a304736b744f53f947a9a19 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:62 -msgid "" -"**Participant oriented.** Participants are encouraged to find and gain " -"knowledge and skills by themselves." -msgstr "" -"**Berpusat pada peserta.** Peserta didorong untuk mencari, menemukan dan " -"memperoleh pengetahuan/keterampilan yang dibutuhkan secara mandiri" - -# c4241477e15849c09c23e6982c27662e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:65 -msgid "" -"**Trainers serve as facilitators.** Trainers facilitate to help ideas in the " -"workshop emerge from the participants, not only from trainers. However, " -"trainers must be ready to provide necessary information when the " -"participants need any assistance." -msgstr "" -"**Trainer berfungsi sebagai fasilitator.** Trainer hanya memfasilitasi agar " -"ide-ide datang dari berbagai arah bukan hanya dari trainer. Namun, trainer " -"harus mampu memberikan informasi yang diperlukan di saat peserta membutuhkan " -"bantuan." - -# f04e8ea60b1c42d19de0a013e4a43d49 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:70 -msgid "" -"**Outcome oriented.** Workshop must produce the outcomes mentioned " -"previously." -msgstr "" -"**Berorientasi pada hasil.** Lokakarya harus menghasilkan *outcome* yang " -"telah disebutkan." - -# 7493693f9cc94493bb28f40d8ec92d30 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:74 -msgid "Tools" -msgstr "Perlengkapan" - -# 2a3247d5fde54c8b805692a188262b16 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:75 -msgid "" -"Copy of :ref:`Data Collection Using OSM Intermediate Guide ` for " -"participants" -msgstr "" -"*Copy* :ref:`Diklat Pengumpulan Data dengan Menggunakan OSM Tingkat Menengah " -"` untuk peserta" - -# ba6f6cf905e74441abc844df916e3d31 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:77 -msgid "A workshop space with tables and seats" -msgstr "Sebuah tempat atau ruangan indoor dengan meja dan tempat duduk" - -# 904a8c1cea474fb3bfcbdf7979d49889 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:78 -msgid "" -"Computers (one computer may be used by two participants, but it is better if " -"one computer is used by one participant)" -msgstr "" -"Beberapa unit komputer (idealnya paling tidak satu komputer untuk dua " -"peserta, namun apabila bisa satu komputer untuk satu peserta maka lebih baik)" - -# 9f7d031a88bd4cfd950860fbdb662fdb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:80 -msgid "" -"A Projector (to present slide and demonstrate technical instructions and " -"software)" -msgstr "" -"Sebuah Proyektor (untuk presentasi dan mendemonstrasikan berbagai teknis " -"perangkat lunak/software)" - -# 6e9386c6dce84aac9679603b964215a3 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:82 -msgid "USB Flash drive(s) to transfer files and software" -msgstr "*Flashdisk* untuk memindahkan *file* dan *software*" - -# 62a8fa55a58e47bb99dd5b96398e05bf -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:83 -msgid "Good internet connection" -msgstr "Koneksi Internet yang baik" - -# 0aff55af4dae4ff2adc613ee82287fd7 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:84 -msgid "Snacks and coffee for breaks" -msgstr "Makanan dan minuman ringan untuk istirahat" - -# 5c643723031648d4ad4ce7238293bd73 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:87 -msgid "Schedule" -msgstr "Jadwal" - -# aff716d82d4e4ea3a59d152a4fe9415b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:89 -msgid "" -"Below is an outline of a schedule for a three day workshop that has been " -"tested with several groups in Indonesia. You may choose to adapt and change " -"this workshop schedule to meet your needs." -msgstr "" -"Di bawah ini adalah contoh jadwal pelatihan untuk tiga hari yang telah diuji " -"coba kepada beberapa kelompok di Indonesia. Anda boleh memilih untuk " -"menyesuaikan dan mengubah jadwal lokakarya sesuai dengan kebutuhan Anda." - -# 7bed663d83b34e949a40b0bdfa086dcc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:94 -msgid "Day I:" -msgstr "Hari Pertama: " - -# 9ca1aeee76d547a990f3d7c37479a257 -# aeed14199bc34fa78335bad25f531c05 -# a7c1944dbddc41e399d8452d0e5b4148 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:96 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:116 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:136 -msgid "**Time**" -msgstr "**Waktu**" - -# ec093a35ef92423c9723e560324a1ee1 -# 44a2e9c884304e50a827bc1c3e8edd8a -# 27c56dc95c074cf7b157407eb4eabbc5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:96 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:116 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:136 -msgid "**Materials**" -msgstr "**Materi**" - -# 68d1bd38176c455db5655f5b99b905bc -# 97f708571bf2435686b9988aed76313d -# fa87d19562744a38954c80725e482360 -# a62782183a8c4d3686a19ab653f1e7ab -# 222731ca9e934796ac9ad3d6096b8041 -# be215b9a1b754a2cbfb1acc51f029454 -# 15145867946949e594295587e3cd95e2 -# 749d362fa91a46888e08f5dca0350405 -# b8f132387e354ce19c98281e152e9adc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:96 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:116 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:136 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:196 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:326 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:401 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:488 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:595 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:686 -msgid "**Activities**" -msgstr "**Langkah Kegiatan**" - -# 8b22ca7b80434b208f6cea339af7fdba -# 1f3f39257fca491ab99f6b516457712a -# 8fb81758007444f185eddbb1344b29a0 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:98 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:118 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:138 -msgid "09.00 - 10.00" -msgstr "09.00 - 10.00" - -# bb6850ff01f843d2a7b2e2d95466ae24 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:98 -msgid "Opening and Introductions" -msgstr "Pengantar dan Pengenalan" - -# 96f28096bd754d7f89bfa411736e3213 -# 77f0c882f5c5494db0b36ba58296fc52 -# 9f4387ec915342008bc1ef5cc894f802 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:98 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:118 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:138 -msgid "Plenary Session" -msgstr "Pleno" - -# 900af9c31e72497bb2b31d4f00f7d6e3 -# f7eb5d9b5b674f209df0170e6076ccd7 -# 2d279c6c53c14ed3af20712c08371ae9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:100 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:120 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:140 -msgid "10.00 - 10.15" -msgstr "10.00 - 10.15" - -# 3fa8061fd5d142e3aff73da0221c0147 -# 0d94b385002c448283b1d412c6b4bbe5 -# 70c5b18c76264186b7b99d41686f1463 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:100 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:120 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:140 -msgid "Break 1" -msgstr "Istirahat 1" - -# 9ae378ea9c6645b68a84770c675ca8d0 -# a333d2ac086a441c9dc47dcbbd061f16 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:102 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:142 -msgid "10.15 - 12.15" -msgstr "10.15 - 12.15" - -# 4c008487e9ec460a8f5e3734ad25e72e -# e23a3334f3354edd8df8e4b8977c2b9e -# 9ea698a232f948878ab1ec2eb623597f -# 8492b2c9c5f440978f5d8c1bf2cf4df1 -# 9b4ea521cdfd4409aa5e83ea68e29ce8 -# 00a288a3a3af45e9b8b6ac20358be401 -# b403277be2034215a3465d0496ffa68a -# 0c486d3889d04500afa025e40894a2af -# 19e9fe66eda241dbb7d82223bb73492b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:102 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:106 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:110 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:122 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:126 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:130 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:142 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:146 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:150 -msgid "FGD and Plenary Session" -msgstr "FGD dan Pleno" - -# 499cdd6f70354eaeb9fd56e69348a22e -# 2df64d9cc65b422dbe6d39e01d82b7ad -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:104 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:144 -msgid "12.15 - 13.15" -msgstr "12.15 - 13.15" - -# f53a84a089b74911bd78c81dd3d0c78e -# 310b3d98d8d849009664833f55de0a03 -# e400df7d073548a98fc6caad036c36a6 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:104 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:124 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:144 -msgid "Lunch break" -msgstr "Sholat dan makan siang" - -# fac96a48cd4d46efaa48885b9112ee89 -# 5ecb88da398a44cb8702ef6937640a8f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:106 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:146 -msgid "13.15 - 15.15" -msgstr "13.15 - 15.15" - -# 38b8630760594156a4de170f35d060d0 -# eb0e02255d8842e780cefca5ea294bc2 -# d19f1d6d32d745a5af72874f6c96ffb5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:108 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:128 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:148 -msgid "15.15 - 15.30" -msgstr "15.15 - 15.30" - -# 19ce7de51e2f4086997883841033e518 -# ed9e6e0e369b470aa4e4a55ede300c56 -# f596d0a00d824c00b3831edf290d48b5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:108 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:128 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:148 -msgid "Break 2" -msgstr "Istirahat 2" - -# a57c507e78dd4329add9f68d1bfad780 -# a9441d72c290458280e67f30d932b4f1 -# 0ea6d8b97e624ae0970d8766600f744d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:110 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:130 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:150 -msgid "15.30 - 17.00" -msgstr "15.30 - 17.00" - -# ab9d92e1f1eb4ea18167bfdb93b0bc1f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:114 -msgid "Day II:" -msgstr "Hari Kedua: " - -# 5828f2b1666946198169d0f1b163b0ef -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:122 -msgid "10.15 - 12.00" -msgstr "10.15 - 12.00" - -# cdf02b7787394c3099fb926dc8a9dab2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:124 -msgid "12.00 - 13.00" -msgstr "12.00 - 13.00" - -# 5fbb4e526d5940f28992248f40502590 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:126 -msgid "13.00 - 15.15" -msgstr "13.00 - 15.15" - -# 92ddd0f2f1b14c2d9c91e460b0a4aba9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:134 -msgid "Day III:" -msgstr "Hari Ketiga: " - -# 13174aa00cb0446b89b657398a9920c8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:150 -msgid "Evaluation and Closing" -msgstr "Evaluasi dan Penutupan" - -# ebc477fd4d3d49e19fb0574ccf5136ac -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:155 -msgid "Workshop Plan" -msgstr "Rencana Lokakarya" - -# bdd8ecf420934beb808efed4da50d738 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:158 -msgid "Session 1" -msgstr "Sesi 1" - -# 1ddc8e20cfa84a9ea42647cf71fd582e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:162 -msgid "Time : 4 hours" -msgstr "Waktu : 4 Jam" - -# c696ceb169534dc7bde06475d2bca697 -# 925a9ef5761241a1832173c11369f284 -# a65b89492bc64bb9b876d83c422a7d96 -# defd5d17b46e4101b5ce76e9003a783d -# 3288743415bd4e4a8ba66eb748b676a4 -# 0f468357a0c54a849e044c684cef8cf5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:165 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:297 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:375 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:460 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:564 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:653 -msgid "Basic Competency" -msgstr "Kompetensi Dasar" - -# 34ff19d33b5644c99cbe02220b19705b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:166 -msgid "" -"Apply a better digitising technique for improving quality of collected data" -msgstr "" -"Menerapkan teknik dijitasi yang lebih baik untuk meningkatkan kualitas data " -"yang terkumpul" - -# 40110d097d03431b9b07869135bc3bb5 -# ca8774e3b094428f99cea8bb92823e0a -# 5aabc80acd76419ca1b70d08e9587949 -# 5f7d7967967d443d9a9aa58c66099bee -# a12359f055784005b6ab4c93bb97fea9 -# d9adf9fbff4f4855b95dda0ffe76eca8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:170 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:302 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:379 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:464 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:568 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:657 -msgid "Indicators" -msgstr "Indikator" - -# 0193f9b4f65a4b08ac72863ad0b4678b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:171 -msgid "Use advanced editing tools in JOSM" -msgstr "Menggunakan alat edit di JOSM" - -# 15655bf81cea41f6a7c53fff337b3abd -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:172 -msgid "Make relations among objects" -msgstr "Membuat relasi antar objek" - -# 582036d6ecbf45b3ac5d7aa0e2c57f1d -# d7402400a38241a9b1a7f83df85f3235 -# c9d6cb491d834f73956e951847c63432 -# 648f699bceb54cad85d1c1fd27679237 -# 526d53f93e7f42d485f0193467954016 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:175 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:307 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:473 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:578 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:665 -msgid "Outcomes" -msgstr "Hasil" - -# 6bbc698071ae40f18a59a36396ecaf8a -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:176 -msgid "Make data in OpenStreetMap better" -msgstr "Membuat data di OpenStreetMap menjadi lebih baik" - -# ec16cfbfbe4f48e59110a0d08ecaf01d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:177 -msgid "Understand relations" -msgstr "Memahami relasi" - -# 1c329357b2444512963b6c1772046363 -# 427690d3ed97429cb0b71895ffbf6e6d -# 40e1e73a21254a1eaa8065aa6acafb55 -# 07cd3a863e6843f693983782248a2620 -# 7ae9f6549edb437eb839e33ad28403b5 -# 0dfa7efd33c7435f9c316169abe34db5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:180 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:311 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:390 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:477 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:582 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:670 -msgid "Core Material" -msgstr "Materi Pokok" - -# 082ad1a7785e4031816f6457f82c89f2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:181 -msgid "**Advanced Editing**" -msgstr "**Teknik Editing Lebih Lanjut**" - -# a8853f6452e947a8b34591b4c25996b9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:183 -msgid "Advanced editing tools" -msgstr "*Tool* mengedit tingkat lanjut" - -# 115efa5c844a44778cbf3ca11fd56990 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:185 -msgid "Default drawing tools" -msgstr "*Tool* standar untuk menggambar " - -# 6866e6ead2a34324a5be2515ebf4457b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:186 -msgid "Plugins" -msgstr "Plugin" - -# 9c37de541c3443dc9aca83694771d3d9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:188 -msgid "Relations" -msgstr "Relasi" - -# 2bffc2b9adc44c8f95a24423fc6aa5bb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:190 -msgid "Editing relations" -msgstr "Mengedit relasi" - -# 4ad6a62229a04ccf97d7ab87ef85b10b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:191 -msgid "Multipolygons and linestrings" -msgstr "*Multipolygons* dan *linestrings*" - -# 1e4ea9cec6a9471fbc6cb940a3975920 -# 39eeffd127374ba9aa9ddc534d2fcafb -# bf85d54b108c486f847dc5d58bd58352 -# af83ca8344d744ac8f6f8d3011b16759 -# 6621f11fd0b14b4d9d12490433e804a2 -# 96c9526ff72d4377a7f499dd28b2fd7a -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:194 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:323 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:398 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:485 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:592 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:683 -msgid "Activities" -msgstr "Aktivitas" - -# f982e7d2fc9f43c5a8be11321d1e5537 -# 7a84d40f764e4f2aac70b6da74371fe7 -# 326799938cdf48138430c8ec78d6e6dc -# 259535f90875479dbeacab998ad181b3 -# dd69db42e1ff4febaaa145369707c1d5 -# fe587e99bb964b62acb97c05f5910b78 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:196 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:326 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:401 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:488 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:595 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:686 -msgid "**Methods**" -msgstr "**Metode**" - -# 9db939fbfdb445e8a4d7a8431b95c340 -# c6e7cf7d781f4c1e996fa1314d09ca8c -# d661aef44ecc421aa17a9ea2eb6d51f0 -# ea4dfa1de95048d88526f23ab6206723 -# 8fe3b199a5ba46cba7370d01cc7b1f54 -# 196957e69c0d4a15849ca20e1b746494 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:196 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:326 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:401 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:488 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:595 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:686 -msgid "**Tools**" -msgstr "**Alat/Bahan**" - -# 79c11793685249d1be1162b0cbc8fab6 -# eea2bc5ebe7748cd90bfdb700b497d00 -# 8a68bc69015b48c7bd5db08e79b245bb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:198 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:328 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:403 -msgid "**Introduction 5'**" -msgstr "**Pengantar 5**" - -# 2f4dbf9f9ebb4cedb14f6c696b77adc4 -# eede0d971c2b4c00ad256c91e6173d6a -# a1e00ba5cd544b3d88869a50c0d602d0 -# a6b2cc27cc2147a0a5f3f449da4c08aa -# d79e38a98cde4ef0b0c371771be65c7c -# eb9592a81edb4bbcb5c8870c4d3fdf33 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:200 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:330 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:405 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:492 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:599 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:690 -msgid "" -"Explain the importance of the session, objectives, outcomes and activities " -"of the session." -msgstr "" -"Fasilitator menyampaikan pentingnya sesi, tujuan, hasil dan langkah kegiatan." - -# df7439ce74884456abff55d85306a9d7 -# aaeeb1b80a104061b4dacc38f69e4193 -# 9b045ddea04c43de921103d465d150ae -# aa7ceb9694394b358b36622fac2257bb -# 4595ebce9836443887232127536b581e -# 2eed5dc864fd4cbfaef9df5462aca5ce -# 31d682dab2874b64b7b01613ab066cd5 -# 6bc8aff24b644440931ecadcac4b0e66 -# 797c6922dbe9460c9f79767ba0aefb74 -# 0947e37c2aab40f5a9c8176a7438efb9 -# 1f594de687774edbbe125ef6ec9cfbad -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:198 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:328 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:403 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:412 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:420 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:490 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:500 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:597 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:606 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:688 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:693 -msgid "Lecture" -msgstr "Dosen" - -# 685a8bbd636b4150b550236da2a42ad2 -# 8c25c6c701f64d7098ca7b33f12104e7 -# 705547966f524c21b19c6f3cd9fe1ce4 -# 91bedc1f527344e8860c572a396893d0 -# e2fece433faa4e8dad8cf1d66adf4f4f -# 201e36a764d24f459919e710fb6f8b2e -# aef716b1ea4c481a92596ed4a8584a42 -# e066c4f9b434464fb496cedb0b711510 -# 033a2c0b84a1422ebd0a9f807cf9ada3 -# 190d9e7112384991a7a84e60cd0a11a2 -# 86e3bd35ff9a49128309fe3524e014ae -# a6ad00d4ade64585800391902bc7376d -# 4c14e463c78e4db4ba710bbd5918fe9c -# 56e671339a7745e485b1bfc5aaccda84 -# 5c90d80f91004a4486d1e5939f7c46fa -# 879488fac3f8462695b7a9c8d6982e1f -# 9d06d200118a462a92c2e587e78a300d -# c6688d8b0978465880550661bc2062aa -# 694a4c52890e406b87252ef067a92108 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:198 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:222 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:235 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:251 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:263 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:328 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:335 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:342 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:403 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:410 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:490 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:500 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:527 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:597 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:606 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:688 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:693 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:711 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:722 -msgid "Powerpoint" -msgstr "Slide PP" - -# 26644c14178c4df08d799d674d7767f3 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:200 -msgid "Slide" -msgstr "*Slide*" - -# 2f7f691039274c5fa948d2c878e3aa83 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:203 -msgid "**Review OSM Materials for Beginners 30'**" -msgstr "**Review Materi OSM untuk Pemula 30'**" - -# f19fce5dfff54195adeef3d95ed7a2ac -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:205 -msgid "" -"Request participants to discuss what they have done with OpenStreetMap (OSM) " -"since the first workshop (beginner training)" -msgstr "" -"Peserta diminta untuk mendiskusikan apa yang telah mereka lakukan dengan " -"OpenStreetMap (OSM) sejak lokakarya pertama (pelatihan tingkat dasar)" - -# 4a20f6a221194022b9499cc3fd0482a1 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:208 -msgid "" -"Create a questions list from participants, showing them all on the projector." -msgstr "" -"Buat daftar pertanyaan dari peserta, dan tunjukkan ke mereka dengan " -"proyektor." - -# 13d84a96f38e4d84a55f8ca5bac9ba12 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:210 -msgid "" -"If the questions are simple, answer them directly. But if the questions are " -"outside workshop material, give the other references or do an individual " -"session outside the workshop, for example at lunch break." -msgstr "" -"Jika pertanyaannya sederhana, dapat menjawabnya secara langsung. Namun jika " -"pertanyaan tersebut di luar cakupan materi lokakarya, berikan sumber/" -"referensi lain atau lakukan pembicaraan secara individu kepada peserta " -"tersebut di luar sesi lokakarya, misalnya pada waktu istirahat. " - -# 4e1bb455b0d04fb6ad0008ac67a66904 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:215 -msgid "" -"Explain what participants will get from this workshop (intermediate " -"workshop). Separate participants into two sides, asking more details about " -"their experience using computers and OSM. Pair the participants so that " -"there is a good balance of skill in each pair. Less experienced participants " -"should be paired with more advanced users." -msgstr "" -"Jelaskan apa yang dapat peserta dapatkan/harapkan dari lokakarya ini " -"(lokakarya tingkat menengah). Bagi peserta menjadi dua bagian, tanyakan " -"lebih lanjut kepada mereka tentang pengalaman penggunaan komputer dan OSM. " -"Hal ini dilakukan untuk menyeimbangkan kemampuan peserta dalam setiap " -"pasangan. Peserta yang belum mahir harus dipasangkan dengan peserta yang " -"lebih mahir." - -# f6c1ec602b3843ea88718e93a920c56a -# 8ba0905bcc9e45ada58dc642db386232 -# 03a37ecbe38a4a5984d7fcad28246faa -# caf6ad35c35b4d16997c200aa409050f -# eaeb55c9119f445499c628a416c8fe65 -# e08c16a479ba4f5db2d1a26f41ffc9f6 -# 619802b783494709a9d1040c91a98671 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:203 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:222 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:235 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:251 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:263 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:410 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:513 -msgid "Discussion" -msgstr "Diskusi" - -# 481c51f6e6f340069081ee6b54227969 -# d915eabc328c4d4a89ef2cfb6702341e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:205 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:224 -msgid "Q & A Session Lecture" -msgstr "Tanya jawab Ceramah" - -# 09acab2237244a4c986ca90525880707 -# afa7954747584aa4b2da70f0098b33ae -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:203 -msgid "Schedules" -msgstr "Jadwal Kegiatan" - -# cdc057c5ee1549729d8f17bba05c7f51 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:205 -msgid "Microphone Speakers Projector" -msgstr "*Microphone Speaker Proyektor*" - -# 2a8cb5ae490847a1bf9c3b248d9b5b98 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:222 -msgid "**Shortcuts in JOSM 20'**" -msgstr "**Shortcuts/tombol pintas dalam JOSM 20'**" - -# eeefb6c1c15a4c099daa4e2b98e631e8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:224 -msgid "" -"Ask participants to discuss in brief about the shortcuts (shortcut keys on " -"your keyboard) to activate tools in JOSM." -msgstr "" -"Peserta diminta mendiskusikan secara singkat tentang *shortcut* (tombol " -"pintas pada keyboard) untuk mengaktifkan beberapa *tool* pada JOSM." - -# b62f6332ea284b35b6e3f2e4cef872ab -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:227 -msgid "" -"Demonstrate how shortcut keys can make the job of editing easier by saving a " -"lot of time." -msgstr "" -"Fasilitator menjelaskan dan mendemonstrasikan bagaimana *shortcut*/tombol " -"pintas tersebut dapat membuat pekerjaan mengedit menjadi lebih mudah dengan " -"menghemat banyak waktu." - -# d6a095fdff89428f9c5961c6d4dd162b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:230 -msgid "" -"Ask participants to practise by following the demonstration in the use of " -"shortcuts." -msgstr "" -"Peserta diminta untuk mempraktikkan dengan mengikuti demonstrasi dalam " -"penggunaan *shortcuts*/tombol pintas." - -# 3c6a7491a4184c31946c8c961af9d476 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:224 -msgid "" -"Presentation Projector Computer Laptop Sample files in USB drive (tools_menu " -"_sample.osm utilplugin2 _sample.osm)" -msgstr "" -"Presentasi powerpoint Proyektor Komputer/laptop Contoh file latihan pada " -"flashdisk (tools_menu_sample.osm dan utilsplugin2_sample.osm)" - -# 9bc2252e935a4f1b8dbbf75c4d8d8b71 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:235 -msgid "**Building tools plugin 30'**" -msgstr "**Plugin Building Tools 30'**" - -# 489e37ba04134ed3a6047d8840699a94 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:237 -msgid "" -"Make sure all the participants have installed the **building_tools** and " -"**utilsplugin2** plugins. Make sure that participants remove the previous " -"training files and ask them to create new layer. Use that layer to practice " -"with the **buildings_tool** plugin. Demonstrate:" -msgstr "" -"Pastikan semua peserta telah menginstal plugin **building_tools** dan " -"**utilsplugin2**. Pastikan peserta telah menghapus file latihan sebelumnya " -"dan mintalah mereka membuat layer baru. Gunakan layer kosong untuk " -"mempraktikkan plugin **buildings_tool**. Beberapa hal yang fasilitator harus " -"perhatikan adalah:" - -# 3a3f3b94f59d4eff8f80278b42872019 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:243 -msgid "How building tools works" -msgstr "Cara kerja *building tools*" - -# a4756bf202ed4a18bf93f1a83eee7fed -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:244 -msgid "Make sure that they don't select any object when using building tools." -msgstr "" -"Pastikan agar mereka tidak memilih suatu objek dalam penggunaan *building " -"tools*." - -# 41938f531cf04507ac69b428eb20a47e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:246 -msgid "Teach how to set the building size (for example 10 m x 10 m)" -msgstr "" -"Ajarkan kepada mereka untuk mengatur ukuran *building tools* (misalnya 10m x " -"10m)" - -# a148d0c3582046269746fb20d28aacd6 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:248 -msgid "How to automatically add tags other than building=yes" -msgstr "Cara otomatis menambahkan tag lain selain building=yes" - -# 0d15604476584ee79f55b5b533f082fa -# 8270c5833be14cd8b10be352a75f14d4 -# 9abc376359b94b08a293888dd4f39b5f -# 99e87eff77674f99a1abec8f1da44ce8 -# 2745b0cff9764fbba40766919c89f3bd -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:237 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:253 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:265 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:422 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:515 -msgid "Demonstration Practice" -msgstr "Demonstrasi Latihan" - -# 88c64586190f4669aa14d6e142fe1a87 -# f5bbaa0e262246c99af124bd9b35ad12 -# 4b57c8973b294aa7afb14dec68798a46 -# 3a52fb1bc0f94f0ea24918d2877826e7 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:237 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:253 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:337 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:344 -msgid "Presentation Projector Computer/ Laptop" -msgstr "Presentasi powerpoint Proyektor Komputer/laptop " - -# e4f9cef5293a4df4bedd72490d374dc3 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:251 -msgid "**Utilplugin2 60'**" -msgstr "**Utilsplugin2 60’**" - -# a402bd853ebf40d2b9ac818674dbbc43 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:253 -msgid "" -"After the **building_tool** plugin, ask participants to close the layer and " -"open the training file **utilsplugin2_sample.osm**. With this file, " -"participants practise using new tools." -msgstr "" -"Setelah menggunakan plugin **buildings_tool**, perintahkan peserta untuk " -"menutup layer dan membuka file latihan **utilsplugin2_sample.osm**. Dengan " -"file latihan ini, peserta dapat mempraktikkan beberapa *tool* baru." - -# b3955279c2064658ab8e52f26ae7c623 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:257 -msgid "" -"Explain new tools in utilplugin2 plugin such as *add source tag, select way " -"nodes, replace geometry*. Give examples of situations when these will be " -"used." -msgstr "" -"Fasilitator menjelaskan *tools* baru dalam plugin utilsplugin2 seperti *add " -"source tag, select way nodes, atau replace geometry*. Berikan contoh yang " -"sesuai dengan pengaplikasiannya sehari-hari." - -# 70bfe0578721498da5c959ae6ded1428 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:260 -msgid "Participants should practise the tools as they are explained." -msgstr "Peserta harus mempraktikkan *tools* seperti yang dijelaskan." - -# 08bb2f0f5a0048be88ef32a58cb9c841 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:263 -msgid "**Create relations between objects 35'**" -msgstr "**Membuat relasi antar objek 35’**" - -# ae7b83455ca94511a4394758c3f496e8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:265 -msgid "Explain relations and show an example in JOSM and on the OSM website." -msgstr "" -"Fasilitator menjelaskan pengertian relasi, dan tunjukkan contoh dalam JOSM " -"dan pada situs OSM." - -# 3a268e488a2f4d218c90e19011d5394e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:267 -msgid "" -"Have participants create two polygons with one inside the other (to " -"demonstrate making a building with a courtyard)" -msgstr "" -"Peserta membuat dua poligon yang saling bertumpuk (untuk kasus bangunan " -"dengan taman di dalam bangunan tersebut)." - -# 9e0da0be0d204ecc9bab7367ccd3930c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:269 -msgid "Explain relation attributes, and the \"inner\" and \"outer\" roles." -msgstr "Jelaskan mengenai relasi atribut, dan peran “inner” dan “outer”." - -# b81a085908d8491a9451120efa36f33e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:265 -msgid "Presentation Projector Computer Laptop" -msgstr "Presentasi powerpoint Proyektor Komputer/laptop" - -# 786b73958c684686bb7d0deba46f04c3 -# 382526df55a540bb95101aff7685ba06 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:273 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:432 -msgid "FAQ (Frequently Asked Questions)" -msgstr "FAQ (Pertanyaan yang sering muncul)" - -# 942f6994f2844c658941b45fa65a742e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:275 -msgid "" -"**I have set the building size in the building tools plugin. Why do " -"buildings show as a line, not as a polygon?**" -msgstr "" -"**Saya sudah mengatur ukuran bangunan pada plugin *building tools*. Mengapa " -"bangunan terlihat seperti garis bukan sebuah poligon?**" - -# ae798eb021804d23af291b6cfdd6eb96 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:278 -msgid "" -"It may look this way if you are not zoomed in far enough. Zoom in further to " -"see the building properly." -msgstr "" -"Hal ini dikarenakan pengaruh zoom level yang digunakan. Coba perbesar garis " -"tersebut. Gambar bangunannya akan nampak apabila sudah diperbesar." - -# 1bcbddfa5e3542f7a621520d8c287773 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:281 -msgid "" -"**I want to create a circle. Why do I get a very large circle with the " -"'create a circle' tool in utilsplugins2?**" -msgstr "" -"**Saya ingin membuat lingkaran. Mengapa lingkaran yang dihasilkan dari " -"'membuat lingkaran' dengan *tool* *utilsplugins2* sangat besar?**" - -# 27006544f79a4bf19f3fb4e17e2867ef -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:284 -msgid "" -"Before using this tool, first create a way with exactly two nodes. If you " -"create a way with more than two nodes, the resulting circle made from this " -"tool can end up very large." -msgstr "" -"Sebelum menggunakan *tool* ini, terlebih dahulu membuat gambar dengan dua " -"titik. Apabila garis tersebut memiliki lebih dari dua titik, lingkaran yang " -"dihasilkan akan sangat besar." - -# c661994dc14847e290356d769ed0efbc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:290 -msgid "Session 2" -msgstr "Sesi 2" - -# 33aec73491864f8d9815783453e3456d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:294 -msgid "Time : 4 Hours 15 minutes" -msgstr "Waktu : 4 Jam 15 menit" - -# e4e80caa8b2e47718309cbe2009aae65 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:303 -msgid "Use validation tools in JOSM" -msgstr "Menggunakan *tool* validasi pada JOSM" - -# 7e6af44b2e2f4ba1a0b92f450ff3b1d1 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:304 -msgid "Use online validation tools" -msgstr "Menggunakan tool validasi secara online" - -# 5be49e26d2de40d59eb891abbf4cab11 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:308 -msgid "Use validation tools to make OSM data better" -msgstr "Menggunakan *tools* untuk menghasilkan data OSM yang lebih baik" - -# 9c484f31661c48bebdcf899ca980b0f8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:312 -msgid "**Quality Assurance**" -msgstr "**Penjaminan Kualitas**" - -# 1ba053d703084e4790e53cacdfda6d79 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:314 -msgid "Error and warnings" -msgstr "Kesalahan dan peringatan" - -# 24f8dd8822c74156a860862348ca809d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:315 -msgid "Using the validation tool" -msgstr "Menggunakan *tool* validasi" - -# f3d1b4a37ddc458e9c73dcd0dd8f07fc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:316 -msgid "Common validation warnings" -msgstr "Peringatan validasi umum" - -# c7a9fe6ab84b4844a91246321906c785 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:317 -msgid "Using the tasking manager" -msgstr "Menggunakan tasking manager" - -# ea751b14c1ac4a5892b4a7a5d234178d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:318 -msgid "Editing tips" -msgstr "Petunjuk mengedit" - -# dcd9a638c1534ff4a827f50690bc0780 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:319 -msgid "Presets standardisation" -msgstr "Standardisasi preset" - -# c971767eb04b4fac800aef437a45335e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:320 -msgid "KeepRight" -msgstr "*KeepRight*" - -# 1429ea9d3814494bbceacf95869861a0 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:332 -msgid "Answer any participant questions about editing OSM data" -msgstr "Menjawab pertanyaan-pertanyaan peserta tentang mengedit data OSM" - -# da22095bbbed458ea4d24c52740a9e0e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:330 -msgid "Q & A Session" -msgstr "Sesi Tanya Jawab" - -# a8620c009a4747c3ac8a480abc5a32ea -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:330 -msgid "Presentation Projector" -msgstr "Presentasi powerpoint Proyektor" - -# 0a78e302ef3b4816a081b0db1ec43709 -# f00e73572aa3482aa7017d0874921879 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:335 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:500 -msgid "**Input 45'**" -msgstr "**Input 45’**" - -# bc3be8160b634d1bb70882defe6bf34e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:337 -msgid "" -"Explain quality assurance. Show a few common errors that occur when editing " -"in OSM." -msgstr "" -"Menjelaskan penjaminan kualitas. Tunjukkan beberapa kesalahan umum yang " -"terjadi ketika mengedit di OSM." - -# b734de3e05bc4c0d9b661af49010f0f2 -# 823efa86ba8a41488dc07d055fee42a3 -# 6412ba2018e149628a6e2d411537044c -# 36fbcdc3e5704770b042ee9106e0e59a -# 5324a1e104f3403b930ff11cd3d6dc0b -# e0bda7be632c40ea8fde5c9725c48b56 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:335 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:342 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:527 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:545 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:614 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:711 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:722 -msgid "Practice" -msgstr "Praktik" - -# 5c8b670fe6bd4b9aaf77a18b27d70e59 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:342 -msgid "**Practice 150'**" -msgstr "**Praktik 150’**" - -# 38a5041e3d7f45739108bf38fe20e231 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:344 -msgid "Show the proper way to digitise with JOSM." -msgstr "Tunjukkan bagaimana cara mendigitasi dengan JOSM. " - -# b3da8d6826ae486dba758c860ab50c07 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:345 -msgid "Show how to fix errors or warnings." -msgstr "Tunjukkan bagaimana cara memperbaiki kesalahan atau peringatan." - -# 3d791878128046c498b6233d77fbf4fa -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:346 -msgid "" -"Find and fix errors in JOSM using two validation tools, JOSM validator and " -"KeepRight." -msgstr "" -"Temukan dan perbaiki kesalahan di JOSM menggunakan dua *tools* validasi, " -"validasi JOSM dan *KeepRight*." - -# 7617eb16ca834f70890792e7ba141bdc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:348 -msgid "" -"Remind participants of the tools from the previous session such as those on " -"the tools menu and more tools." -msgstr "" -"Ingatkan peserta mengenai *tool* yang telah dipelajari pada sesi sebelumnya " -"seperti pada menu *tools* dan *more tools*." - -# 5c0d7409f24a4e36aed423104e2df651 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:351 -msgid "" -"Use the tools to correct existing mistakes, according to the functions of " -"each tool (like split, merge nodes, add intersection, etc.)" -msgstr "" -"Gunakan *tools* tersebut untuk memperbaiki kesalahan-kesalahan yang ada, " -"sesuai dengan fungsi dari masing-masing *tool* (seperti *split, merge nodes, " -"add intersections*, dll.) " - -# 3726dcf13c784988841a5a57b716aa00 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:354 -msgid "" -"Participants should practise using the JOSM validation tool and KeepRight." -msgstr "" -"Peserta harus praktik menggunakan *tool* validasi JOSM dan *KeepRight*." - -# 28bacdf67c7b46779cd96df11ea3653d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:356 -msgid "" -"Let participants practise validation in an area, using the tasking manager " -"to arrange tasks so that upload conflicts do not occur." -msgstr "" -"Biarkan peserta mempraktikkan validasi dalam suatu area, menggunakan tasking " -"manager untuk mengatur pekerjaan agar pada saat upload tidak terjadi konflik." - -# 734f53b44ecd4344bb6c6c9c26235b35 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:360 -msgid "**Closing 30'**" -msgstr "**Penutup 30’**" - -# 216d23765bc144a8bbfaefb5ef0749ff -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:362 -msgid "" -"Q & A about problems that may happen when using validation tools in JOSM or " -"online" -msgstr "" -"Tanya jawab mengenai permasalahan/kendala yang terjadi pada saat " -"mempraktikkan *tool* validasi di JOSM maupun online" - -# 56a051e546c44e89940b4a9ce0c546ee -# 5f1cfb04afa849a89ceaf4174116bc04 -# b7f04e74cc454cf78a4fd5310f84504a -# fb39d41bf714437db70fd5d0e9e44432 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:360 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:543 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:608 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:628 -msgid "Q & A" -msgstr "Tanya & Jawab" - -# e8bb13f0a10f49a28bfe2188ac6ae1ae -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:362 -msgid "Session" -msgstr "Sesi" - -# f90580df110749cca4c543483c24445d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:368 -msgid "Session 3" -msgstr "Sesi 3" - -# a57d84fbc83c4f40b805ffc0e4e29621 -# 508dc27db8504f3aacc8a8b9f51f855a -# 903135861cfc4bf0a00e36bf5f805c78 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:372 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:561 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:650 -msgid "Time : 2 Hours" -msgstr "Waktu : 2 Jam" - -# f2c371c2afb84c04a53a320100646acb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:380 -msgid "Identify conflicts" -msgstr "Mengenali Konflik" - -# f2712da0f84747bab7beae0c82098cfd -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:381 -msgid "Understand why conflicts occur" -msgstr "Memahami bagaimana konflik dapat terjadi" - -# 34c03db2c25241fab79cddd6c5a0caff -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:382 -msgid "Solve conflicts" -msgstr "Menyelesaikan konflik" - -# 737e66eff0c64e9c951181739f89c571 -# d3a78f24c70d4e67b58e20eb16abf78d -# 3fb983e19bd64ff69004eda2d5ef9cec -# 6d583f2c922f43698ffc588975a62ecd -# 64827bc717a346e487f031a7ab996d82 -# 3366c053d608410789cd2129b8132158 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:385 -msgid "Outcome" -msgstr "Hasil" - -# 46ad6e2b289249f3a5dc571e6cb604b2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:386 -msgid "Conflicts occur less" -msgstr "Konflik dapat diminimalisir" - -# b349c63d77ee48c3bc7f0b6228c3933f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:387 -msgid "Able to resolve conflicts in JOSM" -msgstr "Terampil untuk menyelesaikan konflik dalam JOSM" - -# 99c83b94e83a4618abf567fd3edf24e6 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:391 -msgid "**Dealing with Conflicts**" -msgstr "**Menyelesaikan Konflik**" - -# 380aa5356a594e579b20eee0f572a8bc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:393 -msgid "Conflicts" -msgstr "Konflik" - -# 3a1a4bf8258048c2940da459a1942b6b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:394 -msgid "Conflict resolution" -msgstr "Cara menyelesaikan konflik" - -# 284c32d630c340b7ac4631ef36da0eea -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:395 -msgid "Ways to avoid conflicts" -msgstr "Cara untuk menghidari konflik" - -# 4481ec135b734a3dbd39e66ad585d841 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:405 -msgid "Presentations Projector (get there are two projector)" -msgstr "Presentasi powerpoint Proyektor (usahakan ada 2 proyektor)" - -# d12f40bc7cf7426392d27bf64509fa5d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:410 -msgid "**Group Discussion 15'**" -msgstr "**Diskusi Kelompok 15’**" - -# 5f2fe44d607b411c83969e150ed097a0 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:412 -msgid "" -"Ask participants to form groups and discuss the causes of conflicts and how " -"to solve them." -msgstr "" -"Peserta diminta mendiskusikan apa yang mengakibatkan terjadinya konflik dan " -"bagaimana menyelesaikannya secara berkelompok." - -# 29756c6c54d54bf8b384428f6146a01f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:414 -msgid "One group can present their discussion results and others respond." -msgstr "" -"Salah satu kelompok menpresentasikan hasil diskusinya dan peserta lain " -"menanggapi." - -# 4e1042edc63a43fd930752cbe71fa35d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:416 -msgid "" -"Reinforce the discussion by showing on the projector how a conflict occurs, " -"by downloading some area around the training location." -msgstr "" -"Fasilitator memberikan penguatan dengan tunjukkan di layar proyektor " -"bagaimana proses suatu konflik dapat terjadi, dengan mendownload suatu area " -"di sekitar lokasi pelatihan." - -# 6446a7707a7a4aaa88a520fec2d8a178 -# 673b06b62bb64a7ebb976f416af35d85 -# c760e85027f244d2b90f63d0c115fdcb -# 3d851548306645e684f369c61232b58b -# 4cf5ef973098485a8cf3ef6636f6a720 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:412 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:492 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:502 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:599 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:690 -msgid "Presentations Projector" -msgstr "Presentasi powerpoint Proyektor" - -# 9b8b1966ac384d55873f87d64d381e83 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:420 -msgid "**Demonstration and practice 100'**" -msgstr "**Demonstrasi dan praktik 100’**" - -# ab84e97505464b59b4485b3c7074c817 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:422 -msgid "Before demonstrating a conflict, first create a sample conflict." -msgstr "" -"Sebelum mempertunjukkan sebuah konflik, pertama buat konflik sederhana." - -# 461061fab4cb4dd599dd67755aa1b639 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:424 -msgid "" -"Explain the three type of conflict that arise when uploading JOSM data. " -"Describe the cause of each, show an example and how to handle it." -msgstr "" -"Jelaskan tiga jenis konflik yang biasa muncul pada saat mengupload data " -"JOSM. Masing-masing konflik dijelaskan penyebab terjadinya, contoh dan cara " -"mengatasinya." - -# 3d148397b163454cac0da89390584830 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:427 -msgid "" -"Ask participants to demonstrate to the others on the projector how to solve " -"a given conflict." -msgstr "" -"Minta peserta untuk mempertunjukkan kepada peserta lainnya dengan proyektor " -"bagaimana untuk menyelesaikan konflik yang diberikan." - -# 4b3423400d9645968eed50eaba8e8b3c -# dfa5a2d790ed407ca2640ef8ac434e73 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:420 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:513 -msgid "Computer/" -msgstr "Komputer/" - -# 5afc0d62730f441dae867521699056c8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:422 -msgid "Laptop" -msgstr "Laptop" - -# 90159ea4b0bb46b39da74e8cd9a41e4d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:434 -msgid "**How do we avoid conflicts?**" -msgstr "**Bagaimana cara menghindari konflik?**" - -# 87b58f8ade4c450fa1fa14e2fb4a4cdc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:436 -msgid "" -"If you are working with other mappers, divide the work area so that your " -"efforts do not overlap." -msgstr "" -"Jika Anda bekerja dengan pengguna lainnya, bagi wilayah kerja Anda sehingga " -"tidak overlap." - -# ee79e2e42cb04c62b6f9e1852c2db577 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:439 -msgid "" -"It is also wise to upload your edits regularly. Fewer conflicts will occur " -"if you upload changes soon after downloading data." -msgstr "" -"Juga *upload* hasil edit Anda secara teratur. Lebih sedikit konflik yang " -"akan terjadi jika Anda mengupload perubahan segera setelah men-download data." - -# da0a895a340142ca883801a0a004e359 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:442 -msgid "" -"**What is the meaning of the green, yellow and red colours in the conflict " -"dialog?**" -msgstr "**Apa arti dari warna hijau, kuning dan merah dari dialog konflik ?** " - -# 76d2bbb85fa945a69599fe061db185dc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:445 -msgid "" -"The green colour means that the nodes are also in the OSM server and in the " -"same order. The yellow colour means that the nodes are also in the OSM " -"server but not the same order. The red colour means that the nodes exist " -"just in one version, whether it is the working version or on the OSM server." -msgstr "" -"Warna hijau artinya bahwa *node* tersebut berada juga pada server OSM dan " -"berada didalam urutan yang sama. Warna kuning menandakan bahwa *node* " -"tersebut berada pada server OSM tetapi tidak berada didalam urutan yang " -"sama. Sedangkan warna merah menandakan bahwa node tersebut hanya berada " -"disalah satu versi, baik itu versi yang akan kita upload atau server OSM." - -# e27c846cfb35409a92ebfe8243c1f778 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:453 -msgid "Session 4" -msgstr "Sesi 4" - -# fedcfa5fa45d4084bd2334f37483840b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:457 -msgid "Time : 150 minutes" -msgstr "Waktu : 150 menit" - -# 10dbb4002f2c40628cc8a3317a54fb49 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:465 -msgid "Understand tags" -msgstr "Memahami tags" - -# bde55bfa76544d80b18629918fb216bd -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:466 -msgid "Understand XML" -msgstr "Memahami XML" - -# 4d0f7d6a8289420b9f9fa951aadc3307 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:467 -msgid "Understand keys and values" -msgstr "Memahami *keys* dan *values*" - -# ada290812c014f1eb231941470d0c29f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:468 -msgid "Make presets" -msgstr "Membuat preset" - -# d5a2c86069ab46aca4b13381c5428187 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:469 -msgid "Put preset files into JOSM" -msgstr "Memasukkan file preset ke dalam JOSM" - -# afac5313a14a4aef864c4f04bc41ebeb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:470 -msgid "Apply new presets to an object" -msgstr "Menerapkan preset baru pada sebuah objek" - -# 5ff62ab4cd5548cfacaf4b7fc0bdaaf0 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:474 -msgid "Presets can be used to ease and standardise editing process" -msgstr "" -"Presets dapat digunakan untuk mempermudah dan standarisasi proses mengedit " - -# a8566f2c832f47a79c4d887a0d2b5483 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:478 -msgid "**Creating JOSM File Presets**" -msgstr "**Membuat File Preset JOSM**" - -# 4544ce8280fd4ce3a0acc65463dcf214 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:480 -msgid "Tags and presets" -msgstr "Tag dan preset" - -# 1d86b1bb7a6a445e8718934fc96d2c63 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:481 -msgid "Introduction to XML" -msgstr "Pendahuluan XML" - -# 001967c271004c44b4c0a52a7e1a3d00 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:482 -msgid "JOSM presets files" -msgstr "*File preset* JOSM" - -# f58937de6d0b4515a91bcca74eda0158 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:490 -msgid "**Introduction 10'**" -msgstr "**Pengantar 10’**" - -# 2e93e0df536e4a33a2d9f1e7f361d87c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:494 -msgid "" -"Give questions to make sure that the participants still remember what are " -"presets and tags." -msgstr "" -"Berikan pertanyaan untuk memastikan bahwa peserta masih mengingat apa itu " -"preset dan apa itu *tag*. " - -# 81fc3c1b2bef404eb0ed53ff5b988264 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:496 -msgid "" -"Make sure that the participants understand commonly accepted tags in OSM " -"(remind about Map Features page on OSM wiki)." -msgstr "" -"Pastikan bahwa peserta memahami secara umum *tag* yang ada pada OSM (ingat " -"mengenai halaman *Map Features* pada wiki OSM)." - -# 2b4c5dbb67a84e7494e2c4d517e0ceaf -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:492 -msgid "Q & A Discussion" -msgstr "Diskusi Tanya jawab" - -# 0a022c0fdaa6419cb90b504ba7db0065 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:502 -msgid "Explain presets, different tags, keys and values." -msgstr "Jelaskan apa itu presets, perbedaan *tags*, *key* dan *value*." - -# 2772463bcd48457584b083cf1d4b63bc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:504 -msgid "Introduce the XML language which is used to create a presets file." -msgstr "" -"Peserta akan dikenalkan kepada bahasa XML yang menyusun sebuah file preset. " - -# 5805e2d7bc104b5fa48b5e88e790ab2f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:506 -msgid "" -"Explain the various elements that can be added to a presets menu through the " -"XML code. Explain each element carefully, so that participants understand " -"the relationship between their code and how results appear in the preset " -"menu." -msgstr "" -"Fasilitator menjelaskan tentang bermacam-macam elemen yang dapat ditambahkan " -"ke suatu menu presets melalui baris-baris kode XML. Diharapkan fasilitator " -"menjelaskan setiap elemen secara perlahan-lahan, sehingga peserta dapat " -"memahami hubungan antar kode yang mereka tulis dan bagaimana hasilnya pada " -"menu preset." - -# c931c7a50d144feabb6c442709235127 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:513 -msgid "**Making Your Own Preset File 30'**" -msgstr "**Membuat File Preset Sendiri 30’**" - -# 54675c3e97a84ed282e415efa9b56e84 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:515 -msgid "" -"Invite participants to discuss presets that you want to make together. Make " -"sure the ideas include all types of preset menu items, such as text box, " -"check box and multiselect." -msgstr "" -"Fasilitator mengajak peserta untuk berdiskusi mengenai preset apa saja yang " -"ingin dibuat bersama-sama nantinya. Pastikan informasi yang akan diubah " -"menjadi file preset nanti mencakup seluruh jenis yang dapat dibuat " -"menggunakan xml yaitu teks box, combo box, checkbox, dan multiselect." - -# 1a98923f0d3e4558aaf6fab480bf838f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:520 -msgid "" -"Ask participants to visit the Map Features page on the OSM wiki and the " -"taginfo.openstreetmap.org website to see what keys and value are already " -"available in OpenStreetMap. They should try to use keys and values that " -"exist or once existed. If they have not been created before, they may invent " -"keys and values of their own." -msgstr "" -"Peserta diminta mengunjungi halaman *Map Features* pada situs wiki " -"OpenStreetMap dan situs taginfo.openstreetmap.org untuk melihat *key* dan " -"*value* yang sudah tersedia di OpenStreetMap. Usahakan mereka akan " -"menggunakan *keys* dan *values* yang telah ada atau pernah digunakan. " -"Apabila tidak ada, mereka boleh membuat *key* dan *value* sendiri." - -# cc5538eae0fd4e9fa23cff84a2a5a750 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:515 -msgid "Laptop Module 4" -msgstr "Komputer/laptop Modul 4" - -# 8f7e25ebcb4f4bb3a9d332c1cca00d68 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:527 -msgid "**Making Your Own Preset File 45'**" -msgstr "**Membuat File Preset Sendiri 45’**" - -# 6d4dc3ee3c45424d87100150cfa39d72 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:529 -msgid "Help participants install Notepad++ for use in this session." -msgstr "" -"Fasilitator membantu peserta untuk menginstal NotePad++ untuk digunakan " -"dalam sesi ini." - -# 15155a51bb7246729fe3a2b28aa0f6a0 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:531 -msgid "" -"Ask participants to open the *presets_sample.xml* file that has been " -"provided on USB flash disk. This file is an empty preset file provided as " -"the starting point for writing custom XML." -msgstr "" -"Peserta diminta untuk membuka file *presets_sample.xml* yang telah " -"disediakan pada USB flashdisk. File ini merupakan file preset kosong yang " -"disediakan sebagai titik awal peserta untuk menulis XML mereka sendiri." - -# 11cea4ee6e6f4740b484501fa1e2b2a3 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:535 -msgid "" -"Guide participants to make together the presets file that was previously " -"discussed. Go around and check how the participants write XML code. Fix " -"mistakes and explain them to participants. When they finish writing their " -"XML file, show how to save it and add into JOSM." -msgstr "" -"Fasilitator akan menuntun seluruh peserta untuk membuat bersama-sama file " -"preset yang sebelumnya telah didiskusikan. Fasilitator berkeliling kelas dan " -"cek bagaimana peserta membuat kode-kode xml tersebut. Perbaiki kesalahan-" -"kesalahan yang di temukan pada peserta. Ketika peserta selesai menulis file " -"XML mereka, tunjukkan bagaimana menyimpan file preset tersebut dan tambahkan " -"file preset tersebut ke JOSM." - -# 1e0d1f68f14446ed9d97e33c87934dae -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:529 -msgid "" -"Presentations Projector Computer/ Laptop USB Flash disk Installer Notepad ++ " -"a XML file example Module 4 XML and Presets in JOSM" -msgstr "" -"Presentasi powerpoint Proyektor Komputer/laptop USB flashdisk Installer " -"NotePad++ Contoh file XML Modul 4 - XML dan Presets pada JOSM" - -# 3cc8ee668b6942388cd74f13b8639dd8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:543 -msgid "**Adding new presets file to JOSM 15'**" -msgstr "**Menambahkan File Preset Baru ke dalam JOSM 15’**" - -# 9fdd0283816a4a9ea11bea0672d20963 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:545 -msgid "Add presets through the \"Preferences\" menu." -msgstr "Menambahkan preset melalui menu “Preferences”. " - -# 7e42593276f84cc79485907d2c4cdec6 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:546 -msgid "" -"If participants get an error after adding their presets file into JOSM, help " -"them correct it. Usually errors happen when participants make mistakes with " -"their XML. Make sure participants are able to succesfully correct and add " -"into JOSM. Then practise tagging objects with the new menu." -msgstr "" -"Apabila peserta menemukan kesalahan setelah menambahkan file presets ke " -"JOSM, bantu mereka untuk memperbaiki kesalahan tersebut. Biasanya kesalahan " -"itu terjadi ketika peserta membuat kesalahan dengan XML mereka sendiri. " -"Pastikan peserta berhasil memperbaikinya dan menambahkannya ke dalam JOSM. " -"Kemudian praktikkan pemberian tag pada objek dengan menu baru." - -# e06da0139b5445fe9c55fd87dbf154a8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:557 -msgid "Session 5" -msgstr "Sesi 5" - -# dad19db64d084cda85ff67f4d53eee3b -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:569 -msgid "Understand the functions of the Separate Data Store (SDS)" -msgstr "Memahami fungsi dari Data Store Terpisah (*SDS - Separate Data Store*)" - -# 99afbe35a6ca46e2a4c5b856ea066a30 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:570 -msgid "Understand what data should be kept publicly and what should be private" -msgstr "Memahami data apa yang seharusnya dipublikasi dan data pribadi" - -# 43491eb24b6e4842a1bf88f667310514 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:572 -msgid "Install SDS plugin in JOSM" -msgstr "Menginstal Plugin SDS di JOSM" - -# 3ac5fa7df46d4a44a9cc9a3ae9aa5da3 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:573 -msgid "Use SDS presets" -msgstr "Menggunakan Preset SDS" - -# 3856eb9d60134ed58f0812dd084bc67f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:574 -msgid "Use SDS plugin for selecting public and private data" -msgstr "Menggunakan plugin SDS untuk memilih data publik dan data pribadi" - -# 02e4d70217e449d69bd30193501f5c3d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:575 -msgid "Access online datastore" -msgstr "Mengakses datastore secara online" - -# 21ff27380d1146ac842b17bb0fb2968c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:579 -msgid "Understand how to use the SDS" -msgstr "Memahami cara menggunakan SDS" - -# bf603b27582f42ddb13f3af28db56e8f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:584 -msgid "**Using the Separate Data Store**" -msgstr "**Menggunakan Separate Data Store**" - -# 442962596f104211adc7531838a967ce -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:586 -msgid "Installing the SDS plugin" -msgstr "Menginstalasi plugin SDS" - -# 6a5e4ad1ebbe4b44b186e349859306e5 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:587 -msgid "Using the plugin" -msgstr "Menggunakan Plugin" - -# 8bd8073fac1b4e1fbe4e663bb1f387d7 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:588 -msgid "How it works" -msgstr "Bagaimana cara kerjanya" - -# e629db1fce5b4631982225b8edac46ff -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:589 -msgid "Accessing the datastore online" -msgstr "Mengakses datastore secara online" - -# c5dad288e8b341699f5e8f919c06eb8b -# b3cdd8d171d5426cba83c39d6f519099 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:597 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:688 -msgid "**Introduction 15'**" -msgstr "**Pengantar 15’**" - -# 6edb9775481442489dbe4c29033b1be9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:601 -msgid "" -"Through games, participants should list what kind of data can be mapped " -"using a private datastore." -msgstr "" -"Melalui permainan, peserta diminta menyebutkan data apa saja yang dapat " -"dipetakan menggunakan private datastore" - -# b73955672c03498d8874b5b0d2e51518 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:603 -msgid "Explain reasons why data might be better as private or public data." -msgstr "" -"Beri penjelasan terkait dengan alasan mereka memasukkan data tersebut " -"menjadi data pribadi ataupun data publik." - -# 0d1dc869a24c454c93646897fdac996e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:606 -msgid "**Input 30'**" -msgstr "**Masukan 30’**" - -# 62b38b8536d64a3ebeefffc8565588ad -# ae9cc7a2cbc24b7096e1d6d261d6dc76 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:608 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:695 -msgid "Explain:" -msgstr "Fasilitator menjelaskan:" - -# c8a360dc7a374230a9ecbdf87b955890 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:610 -msgid "How Separate Data Store (SDS) works" -msgstr "Bagaimana Separate Private Datastore (SDS) bekerja" - -# 7dcac3cea7994925ac86539f83d46592 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:611 -msgid "The purpose of using the SDS" -msgstr "Tujuan penggunaan SDS" - -# 19b181505f2e469290c0156fb9c461f2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:612 -msgid "Applications of the tool" -msgstr "Penerapan dari *tool* ini" - -# 2538fac353974905a72c4fc90919071f -# 3eade64c42624fe896cc3126b4e4ae4d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:608 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:695 -msgid "Presentations" -msgstr "Presentasi powerpoint" - -# 0e9d305651cc49ce8c1837b30d039615 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:610 -msgid "Projector Computer/ Laptop" -msgstr "Proyektor Komputer/laptop" - -# bc267263b8814f92916c823f14b774ea -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:614 -msgid "**Practice 60'**" -msgstr "**Latihan 60’**" - -# 082701a93d46467f8e32703a17084d9f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:616 -msgid "" -"Show how to install the plugin and ask participants to install on their " -"computer/laptop. Edit the settings so that the SDS points to HOT's demo " -"server (sds.dev.hotosm.org)." -msgstr "" -"Tunjukkan bagaimana menginstal plugin ini dan mintalah kepada peserta untuk " -"menginstal plugin tersebut pada komputer/laptop mereka masing-masing. Edit " -"pengaturan sehingga titik SDS ke demo server HOT (sds.dev.hotosm.org). " - -# a7c12fe500cb4b29ac7ef2072a2c424a -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:620 -msgid "" -"Demonstrate how to add tags to objects which will be redirected to the " -"private demo server. Participants should download a small area and practise " -"adding custom tags. Upload the edits." -msgstr "" -"Tunjukkan bagaimana untuk menambahkan objek yang akan diarahkan ke demo " -"server pribadi. Peserta harus mendownload area kecil dan praktik menambahkan " -"kustom tag. *upload* hasil edit." - -# 009d871e6c6b4d0a86147370c9a07dcf -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:624 -msgid "" -"Use the sample account to access the demo data store. Allow participants to " -"explore the SDS and see the private data which they uploaded in JOSM." -msgstr "" -"Gunakan contoh akun untuk mengakses demo data store. Izinkan peserta untuk " -"menjelajahi SDS dan lihat data pribadi yang diupload di JOSM." - -# adc0322c5e1446f794e599d7f1be1331 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:628 -msgid "**Closing 15'**" -msgstr "**Penutup 15’**" - -# 3d1935de9f0142ebb846053cb6f7e7f0 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:630 -msgid "" -"Discuss the session. Explain how the SDS can be set up privately for " -"organisations and users that want to maintain their own private data store." -msgstr "" -"Sesi diskusi. Jelaskan bagaimana SDS dapat diatur secara pribadi untuk " -"organisasi dan pengguna yang ingin memelihara *private data store* sendiri." - -# 1b07f28025c544cea756528d837a6397 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:636 -msgid "Common Problems" -msgstr "Kesalahan Umum" - -# f69b7c0897404eef8b9780f47df586e1 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:638 -msgid "**Internet connection**" -msgstr "**Koneksi Internet**" - -# fb7b2e7e07cc448d9404f157c55192e8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:640 -msgid "" -"Sometimes the demo SDS has problems when many people are using it because of " -"limited bandwidth. You may need to ask participants to watch demonstration " -"rather than practising all on their own." -msgstr "" -"Biasanya demo SDS memiliki masalah ketika banyak orang yang menggunakannya " -"karena bandwidth terbatas. Anda perlu meminta para peserta untuk menonton " -"demonstrasi dari pada mempraktikkan semuanya oleh mereka sendiri." - -# 967bd0177142482e911c348d7bd40516 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:646 -msgid "Session 6" -msgstr "Sesi 6" - -# 8a8566644c094f0cb8d3e03c9bba12ea -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:654 -msgid "Create and edit pages in OSM wiki" -msgstr "Membuat dan mengedit halaman di wiki OSM" - -# 8cd9826ad2224844b849d5ba4f02b3de -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:658 -msgid "Make an account on the OpenStreetMap wiki" -msgstr "Memahami cara membuat akun di Wiki OpenStreetMap" - -# e1434050c15646fe989ddcda92960e25 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:659 -msgid "Understand conventions and rules in developing a wiki page" -msgstr "Memahami format dan aturan dalam pembuatan halaman wiki" - -# f357abacec0a4aa6b1fc2983c006e654 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:660 -msgid "Edit the wiki" -msgstr "Memahami cara mengedit wiki" - -# f70d90f6c16c41b78faffe30893632b7 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:661 -msgid "Upload files and images" -msgstr "Memahami cara meng-*upload* file dan foto/gambar" - -# c0b8eeffd18e41128c7e2bff179431e1 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:662 -msgid "Translate and revise wiki" -msgstr "Mampu menerjemahkan dan merevisi wiki" - -# ae77bf4888ef441e860d56b998faad1c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:666 -msgid "Edit the OpenStreetMap wiki" -msgstr "Mengedit wiki OpenStreetMap" - -# 82043b3c7414406f9aec0336e20503bb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:667 -msgid "Understand how to contribute to OSM wiki" -msgstr "Memahami bagaimana berkontribusi ke wiki OSM" - -# 189275f6939b4fc9808674ec74f91a56 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:671 -msgid "**Editing the OpenStreetMap Wiki**" -msgstr "Mengedit Wiki OpenStreetMap" - -# f7448d0774034911b3d7b0f4e3ffd82d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:673 -msgid "OSM wiki" -msgstr "Wiki OSM" - -# 5d01c5be07e64afa93b772d8719e1f38 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:674 -msgid "Signing up" -msgstr "Mendaftar" - -# 3ac96e87cc50432d9734e76743c5d8bc -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:675 -msgid "Editing" -msgstr "Mengedit" - -# bcdcad5c50d34bdc899d809a271a5eed -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:676 -msgid "Wiki formatting" -msgstr "Pemformatan Wiki" - -# 4401c29d460e4f7989932a8c18408bf9 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:677 -msgid "Creating a new page" -msgstr "Membuat halaman baru" - -# 9fabe773e2354af28d46b0ff7cf2c777 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:678 -msgid "Uploading files and images" -msgstr "Mengupload *file* dan gambar" - -# 9590dac58b8a4ad7a039763dc5f84de2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:679 -msgid "Translating pages" -msgstr "Menerjemahkan halaman" - -# 138d7d5262b34b659c6d786fd82cdb20 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:680 -msgid "Watching pages" -msgstr "Halaman pantauan" - -# dc2cb41dcf064ff9ae1fc9b135fcefe8 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:693 -msgid "**Explain OpenStreetMap Wiki 25'**" -msgstr "**Menjelaskan Wiki OpenStreetMap 25'**" - -# 36425612feb94993b7840dbaac652c38 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:697 -msgid "What is the OSM wiki and how it can be used" -msgstr "Apa itu wiki OSM dan bagaimana ini dapat digunakan" - -# 3486f4ec546c48cda1c550796d960338 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:698 -msgid "" -"The importance of the wiki as the main information source about anything " -"related to OSM" -msgstr "" -"Pentingnya wiki sebagai sumber informasi utama mengenai apapun terkait " -"dengan OSM" - -# 0e31336660eb4ab7b1c36f56fd81c21f -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:701 -msgid "" -"How the wiki works similar to OSM, where all users can add and edit the wiki " -"pages" -msgstr "" -"Cara kerja Wiki serupa dengan OSM, dimana semua pengguna dapat menambahkan " -"dan mengedit halaman wiki" - -# c61b597d544b414d92d38b7247e8b0f2 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:703 -msgid "" -"The importance of posting projects related to OSM and also various kinds of " -"OSM tags" -msgstr "" -"Pentingnya memposting proyek-proyek terkait OSM dan juga berbagai macam tag " -"OSM" - -# 7778153caab345cca9d69a82403b9177 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:706 -msgid "" -"Show some important wiki pages, such as *Map Features* and *Basics of JOSM* " -"(JOSM Basic). Show how to translate pages to improve the accessibility of OSM" -msgstr "" -"Tunjukkan beberapa halaman wiki yang penting, seperti *Map Features* dan " -"*Basics of JOSM* (Dasar-dasar JOSM). Tunjukkan bagaimana menerjemahkan " -"halaman untuk meningkatkan aksesibilitas OSM" - -# cb4223e55798482385be84de18b4098c -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:695 -msgid "FGD" -msgstr "FGD" - -# 59fb97ffa2e7481088c360faf5f2ae0e -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:697 -msgid "Projector Module 6" -msgstr "Proyektor Modul 6" - -# beb2fd6cbc564368904cdc3f19fa4234 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:711 -msgid "**Create Wiki Accounts 30'**" -msgstr "**Membuat Akun Wiki 30'**" - -# ec42ed4d854b4e7f8f0bdaa988d868ad -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:713 -msgid "" -"Help participants to register on OSM wiki, so they can log in and contribute." -msgstr "" -"Membantu para peserta mendaftarkan diri di wiki OSM, sehingga mereka dapat " -"**log in** dan berkontribusi." - -# 4991a549eded46b894bf8caf1beb2d52 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:716 -msgid "" -"Tell participants that they should sign up with the same name (account), " -"because it will help them remember their login info (which often confuses " -"users and prevents them from logging in) and it makes it easier for other " -"users to find them both on OSM and the wiki." -msgstr "" -"Sampaikan ke para peserta bahwa mereka harus mendaftarkan dengan nama " -"(akun), karena ini akan membantu mereka mengingat informasi login mereka " -"(yang sering membingungkan pengguna dan mereka tidak dapat login kembali) " -"dan ini memudahkan peserta untuk menemukan mereka pada OSM maupun Wiki." - -# 61fdd785d5b2480ebf56e83bbad23b77 -# cde2783d0cf4411caf99dae289b3595d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:713 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:724 -msgid "Presentations Projector Computer connected internet Module 6" -msgstr "Slide ppt Proyektor Komputer peserta yang terhubung internet Modul 6" - -# c992f46c3664430382b7746e9a8447ea -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:722 -msgid "**Create and Edit OSM Wiki Page 60'**" -msgstr "**Membuat dan Mengedit Halaman Wiki OSM 60'**" - -# dc01fd39ceb0401a922b68370165d474 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:724 -msgid "" -"Ask participants to access their user page to practise adding to the wiki." -msgstr "" -"Meminta para peserta untuk mengakses halaman penggunan mereka untuk " -"mempraktikkan penambahan beberapa artikel ke wiki." - -# 9c524562ea704f6cb49d35f8b3e2100d -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:726 -msgid "" -"Show how the editor works, and ask the participants to add basic information " -"about themselves to their user page." -msgstr "" -"Menunjukkan cara kerja editor, dan meminta para peserta untuk menambahkan " -"informasi dasar mengenai diri mereka masing-masing ke halaman pengguna " -"mereka." - -# 3da4a9039fe24f16a21eb44c0657d112 -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:728 -msgid "" -"Demonstrate how to use the buttons at the top of the editor to make the " -"formatting look better." -msgstr "" -"Mempraktikkan bagaimana menggunakan tombol di bagian atas editor untuk " -"membuat format terlihat lebih baik." - -# 065cd674690646d889f139a8db2ad7fb -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:730 -msgid "" -"Teach basic formatting. It does not need to be commplex. The important thing " -"is for participants to understand the basic concepts." -msgstr "" -"Ajarkan format dasar. Tidak perlu kompleks. Hal yang terpenting adalah para " -"peserta memahami konsep dasarnya." - -# 043d0219dd084f66ad5fd4e737ed9a5a -#: ../../source/training/curriculum/osm-intermediate-toolkit.rst:733 -msgid "Have participants create a new page entirely on their own." -msgstr "" -"Minta para peserta membuat sebuah halaman baru sepenuhnya oleh mereka " -"sendiri." diff --git a/docs/i18n/id/LC_MESSAGES/training/curriculum/qgis-inasafe-beginner-toolkit.po b/docs/i18n/id/LC_MESSAGES/training/curriculum/qgis-inasafe-beginner-toolkit.po deleted file mode 100644 index e26eac7f..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/curriculum/qgis-inasafe-beginner-toolkit.po +++ /dev/null @@ -1,3657 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013-2014 -# harry mahardhika , 2015 -# mahardika fadmastuti , 2014 -# Ranie Dwi Anugrah , 2015 -# Werner Macho , 2014 -# Yantisa Akhadi , 2013-2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-08 05:24+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 5af1ef867e6e441487627ac869d30d88 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:2 -msgid "Unit 2 Facilitator Guide" -msgstr "Unit 2 Panduan Fasilitator" - -# de92166752214aa79c790a156cd0eff9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:5 -msgid "" -"Beginning QGIS-|project_name| Trainer's Toolkit - (A Guide for Facilitators)" -msgstr "" -"QGIS Tingkat Dasar-|project_name| Trainer Toolkit - (Panduan untuk " -"Fasilitator)" - -# 42d09b838ac947eabf198b07ab71f4b7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:7 -msgid "**BADAN NASIONAL PENANGGULANGAN BENCANA**" -msgstr "**BADAN NASIONAL PENANGGULANGAN BENCANA**" - -# 320cfb221446433c84a0ef3e8337d9a8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:9 -msgid "**2013**" -msgstr "**2013**" - -# abef6f409e124da38cd408f6199d4a8a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:12 -msgid "About Toolkit" -msgstr "Tentang Toolkit" - -# f848c542efc54144a682298c28dbfc09 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:14 -msgid "" -"**The Beginning QGIS-** |project_name| **Toolkit** is designed to prepare " -"trainers to deliver training for new QGIS users. The materials included will " -"prepare trainers to conduct trainings with a variety of audiences and to " -"cover common problems and pitfalls, and also provide trainers with the best " -"methodologies." -msgstr "" -"**Toolkit QGIS-** |project_name| **tingkat dasar** ini dirancang untuk " -"mempersiapkan fasilitator dalam menyampaikan suatu pelatihan kepada pengguna " -"QGIS dan InaSAFE yang baru. Materi-materi yang terkandung di dalamnya akan " -"mempersiapkan Anda untuk melaksanakan pelatihan dengan berbagai macam " -"peserta, termasuk masalah dan kesalahan umum, serta menyediakan berbagai " -"metodologi terbaik." - -# d305ff3364ef4b399652a01d05372201 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:20 -msgid "" -"When organising a QGIS-|project_name| training, numerous factors must be " -"considered, including the length of time you have to train, available " -"resources, number of trainees and their technical skills. This toolkit will " -"help trainers prepare trainings for different types of participants, but it " -"will primarily focus on educating those with little or no experience with " -"GPS, map-making and computers." -msgstr "" -"Ketika merencanakan pelatihan QGIS-|project_name| , banyak faktor yang harus " -"dipertimbangkan, termasuk lama pelatihan, sumber daya yang tersedia, jumlah " -"fasilitator dan kemampuan teknis mereka. Toolkit ini akan membantu Anda " -"mempersiapkan pelatihan untuk berbagai tipe peserta, namun akan lebih " -"terfokus pada mengajarkan mereka yang memiliki sedikit atau tidak memiliki " -"kemampuan atau pengalaman menggunakan GPS, membuat peta dan menggunakan " -"software GIS di komputer." - -# 43da71ea32374b2ca9702efc2968e7c2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:27 -msgid "" -"The purpose of this toolkit is to prepare the trainer to successfully train " -"workshop participants in using QGIS and analysing hazard and exposure data " -"with |project_name|." -msgstr "" -"Tujuan dari toolkit ini adalah untuk mempersiapkan Anda, para fasilitator, " -"untuk melatih para peserta diklat dengan sukses dalam hal memproses peta " -"digital dengan QGIS dan menganalisis data ancaman bahaya dan keterpaparan " -"dengan |project_name|." - -# 1a75cf3963ea4082a303be9252860c84 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:32 -msgid "Purpose of Workshop" -msgstr "Tujuan Lokakarya" - -# f3d00dbe71464e4d96f805a1d17e2dd9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:33 -msgid "" -"This workshop is intended to achieve the following standard and basic " -"competencies:" -msgstr "" -"Lokakarya ini bertujuan untuk mencapai standar kompetensi dan kompetensi " -"dasar:" - -# f82a11ba67814c92a45cbfac97d8f4e2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:37 -msgid "Standard Competency" -msgstr "Standar Kompetensi" - -# 90ea0d442d4143a18de90c36912af245 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:38 -msgid "" -"Managing Spatial Data using QGIS and Analysing Disaster Impact Scenarios " -"with |project_name|" -msgstr "" -"Mengelola data spasial menggunakan QGIS dan menganalisis skenario dampak " -"bencana menggunakan |project_name|" - -# dcbd2965ac034ab1b6a1652072d1e12f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:42 -msgid "Basic Competencies" -msgstr "Kompetensi Dasar" - -# 4959ad2d6c834a688191b5c5eacadbae -# c4051e8697ef4361866a7b46c302d619 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:43 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:234 -msgid "Use GIS to develop scenarios for contingency planning" -msgstr "Menggunakan SIG untuk mengembangkan skenario rencana kontijensi" - -# a7e78577c72a4fb3ba599310dc783c80 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:44 -msgid "" -"Understand the benefit of QGIS and |project_name| for developing realistic " -"scenarios for contingency planning" -msgstr "" -"Memahami manfaat QGIS dan |project_name| dalam pengembangan skenario " -"realistis untuk rencana kontinjensi" - -# 2f75a7802ba64ffe8cfda3dad13346f9 -# ec136a7761c144ae90e489760a7dd1ab -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:46 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:363 -msgid "Install QGIS and understand QGIS user interface" -msgstr "Instalasi QGIS dan memahami tampilan antarmuka QGIS" - -# db83854f89c04793b1b9cb9aa7cde66b -# 33ba9da290a842bd8f2171f58e36268c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:47 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:439 -msgid "Use QGIS plugins" -msgstr "Menggunakan *plugin QGIS*" - -# ca2c133f0a7646248abe5f0850c74cdd -# e26d9a320f694e4b9581afb880251898 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:48 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:519 -msgid "Understand projection systems and transformation in QGIS" -msgstr "Memahami sistem proyeksi dan transformasi proyeksi pada QGIS" - -# f09c3b7a06d348558f210896d171935e -# dce67955aaa947669a54035cfae0af48 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:49 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:589 -msgid "Use and understand vector data" -msgstr "Menggunakan dan memahami data vektor" - -# 9f2bb43386dd4413b5a54adfa76d47c9 -# b5e423166ebf47a788d64d5be5f079d0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:50 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:692 -msgid "Categorise and create labels from vector data" -msgstr "Mengkategorisasi dan membuat label dari data vektor" - -# 2c28d09f89fa4665b25b011dfb3b73e9 -# eb720267e1704c6a85dfc495ba1b7c94 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:51 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:752 -msgid "Use and understand raster data" -msgstr "Menggunakan dan memahami data raster" - -# db5f6cee48a0405d803d88841b12da1b -# 95b55294daf84110bb01e892fc255744 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:52 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:830 -msgid "Create and edit new vector layers" -msgstr "Membuat dan mengedit *layer* vektor baru" - -# bbd14e2d0c5b426a9cb08a47e34e28ca -# 14476fec1149467694723461be0a98a2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:53 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:917 -msgid "Analyse vector data to solve problems" -msgstr "Analisis data vektor untuk memecahkan masalah" - -# 5dc629b9b4de461fb9070430b9e66897 -# 3754d9854dee4a2bbce875de47d5bed3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:54 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1036 -msgid "Create maps with the Map Composer" -msgstr "Membuat peta dengan Map Composer" - -# 6292e43290a14ce88aea8cda337cd5c1 -# a9a9d9318f4f4701b392b2f674e7763e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:55 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1140 -msgid "Use |project_name|" -msgstr "Menggunakan |project_name|" - -# 6782260831204533ad75685f0a8eb00f -# f281370abf97407dbf0db59a4a1cc5af -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:56 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1260 -msgid "Understand how to get support for QGIS and |project_name| in Indonesia" -msgstr "" -"Memahami bagaimana mendapatkan bantuan untuk QGIS dan |project_name| di " -"Indonesia" - -# c69fc5d4a79e45509fe1e7ebfee8345c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:59 -msgid "Workshop Materials" -msgstr "Materi Lokakarya" - -# 8e39f38ce79044338b6456fdc739ce18 -# e8988af2dd6b4f008a92ef1c3192c240 -# c456aea56d0d47e4a2fb1c1b513e5a46 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:60 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:118 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:229 -msgid "GIS for Developing Contingency Plan" -msgstr "SIG untuk Pengembangan Rencana Kontinjensi" - -# aa5716003d5842a6b2778c4c944ca73c -# 7b12473c23234f47ab9df2e3a6ced993 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:61 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:120 -msgid "QGIS and InaSAFE in Contingency Planning" -msgstr "QGIS dan InaSAFE dalam Rencana Kontinjensi" - -# 77b2c0b49ab34d1f9d8fc571c13a1985 -# 088e4ca878db440b8717872d49766def -# 8057b4b249764e698b6ce096ee398417 -# ac5198d05af747cebedbac5f991f11c9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:62 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:124 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:128 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:358 -msgid "The Basics of QGIS" -msgstr "Dasar-dasar QGIS" - -# 809dfddc955b41bf968a376ef3ae480e -# 57b70abec3924cabad7ea60c59b1e1ad -# 6c0cc3d451214ed3a4a80207ef8dd2f4 -# 3da029b87d214e928c9cdf16ef135d2d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:63 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:130 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:138 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:434 -msgid "QGIS Plugins" -msgstr "Plugin QGIS" - -# cfad76fddcff4cbdab9400763405a233 -# 6f3013e9ddfb48259f6183e885cfe33b -# 54416692222245f1b093560e1f93a126 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:64 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:142 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:514 -msgid "Map Projection Basics" -msgstr "Dasar-dasar Proyeksi Peta" - -# 6d0f6a3c6cc7424b95df29b2fda85fde -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:65 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:146 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:584 -msgid "Working with Vector Data" -msgstr "**Bekerja dengan Data Vektor**" - -# 884cf1faeca84ef7887489f76ead3846 -# 3c37ec70191e4c8cbfeef1dade918202 -# dd7f56181b444e3e8fc34d9a26438870 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:66 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:150 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:687 -msgid "Labels and Classification" -msgstr "Label dan Klasifikasi " - -# ae3c074ba7d144509f5b4811b1ef65fb -# 1fe61c37484c44618cc959a17ccf5f4b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:67 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:158 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:162 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:747 -msgid "Working with Raster Data" -msgstr "Bekerja dengan Data Raster" - -# d5eb27cb480c48c79b2c86ac43234259 -# 4bf05bc918134296b68f1b7bc43693e5 -# 5d5a0df1d7d14d67908245c32cf27ccb -# 839ede5a1d314d7fa5ac370e738d6029 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:68 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:164 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:168 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:825 -msgid "Creating Vector Layers" -msgstr "Membuat Layer Vektor" - -# b51e38c104364f6cbe658a92834996c1 -# 00334b75cae1461d981643aaed3cc0bd -# 9a3e36bd87ec48e9a6eac72d3b621f43 -# 9df472f5dfe944ef9e547b07dd6a5851 -# d52e692f46624b1aa0c78fa3ef7d6a28 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:69 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:170 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:174 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:182 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:912 -msgid "Vector Analysis for Problem Solving" -msgstr "Analisis Vektor untuk Pemecahan Masalah" - -# 5f7208f328f74c7583e6b4989410cdb9 -# 77dd0b2f81934fda8e22e3ac95ffa7fd -# 27223016f04344019821167061c636ed -# d668c4895fb14754916224533e2c6a17 -# 622fe54b38ba43e78de09debdc3d7b67 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:70 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:186 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:190 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:194 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1031 -msgid "Using Map Composer" -msgstr "Menggunakan Map Composer" - -# a6ff306ea57141a380def7040f53e1c1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:71 -msgid "Understanding |project_name|" -msgstr "Memahami |project_name|" - -# 6e31db17a6834255bb54cd3ebe8da0d3 -# 20f5db1e74154f8fbdde89f8417124a6 -# 37653d327d774684a12c0e2331c2f1ce -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:72 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:214 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1255 -msgid "Getting Support" -msgstr "Mendapatkan dukungan" - -# fe35d69b66a04ca68ff7b073954dd79a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:75 -msgid "Workshop Strategies" -msgstr "Strategi Lokakarya" - -# ae2c61471b194e47a6d5d6c662e8f2dd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:76 -msgid "" -"Methods emphasised in this workshop are participatory teaching and active " -"participation in all sections and activities, rather than lecture method." -msgstr "" -"Metode yang digunakan dalam lokakarya ini adalah pengajaran partisipatif dan " -"partisipasi aktif dalam semua bagian dan kegiatan, bukan metode ceramah." - -# 49623376c1a94efa861c70ec01f53650 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:79 -msgid "" -"**Participant oriented.** Participants are encouraged to find and gain " -"knowledge and skills by themselves." -msgstr "" -"**Berpusat pada peserta.** Peserta didorong untuk mencari, menemukan dan " -"memperoleh pengetahuan/keterampilan yang dibutuhkan secara mandiri" - -# 7f20bbe61e5c4645b75d89abf9b49b3b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:82 -msgid "" -"**Trainers serve as facilitators.** Trainers facilitate to help ideas in the " -"workshop emerge from the participants, not only from trainers. However, " -"trainers must be ready to provide necessary information when the " -"participants need any assistance." -msgstr "" -"**Trainer berfungsi sebagai fasilitator.** Trainer hanya memfasilitasi agar " -"ide-ide datang dari berbagai arah bukan hanya dari trainer. Namun, trainer " -"harus mampu memberikan informasi yang diperlukan di saat peserta membutuhkan " -"bantuan." - -# 31309fb8ed87435bb560cc84e56fc4ab -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:87 -msgid "" -"**Outcome oriented.** Workshop must produce the outcomes mentioned " -"previously." -msgstr "" -"**Berorientasi pada hasil.** Lokakarya harus menghasilkan *outcome* yang " -"telah disebutkan." - -# 38cbad4c6cbb42a7ad4fc7b09ae43b5a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:91 -msgid "Tools" -msgstr "Perlengkapan" - -# 0beee95c002241359bc59c173dae87d4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:92 -msgid "" -"Copy of :ref:`Data Analysis using QGIS and InaSAFE Beginner Level ` for participants" -msgstr "" -"Salinan dari :ref:`Analisis Data menggunakan QGIS dan InaSAFE Tingkat " -"Dasar` untuk para peserta" - -# 58cf5d36d5e543b0be3a4dcd00a3c257 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:94 -msgid "A workshop space with tables and seats" -msgstr "Sebuah tempat atau ruangan indoor dengan meja dan tempat duduk" - -# 8a96336a851542a59e50f925b0f4eb7a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:95 -msgid "" -"Computers (one computer may be used by two participants, but it is better if " -"one computer is used by one participant)" -msgstr "" -"Beberapa unit komputer (idealnya paling tidak satu komputer untuk dua " -"peserta, namun apabila bisa satu komputer untuk satu peserta maka lebih baik)" - -# a9c1cde3cadc4fd4948e30e04b485f35 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:97 -msgid "" -"A Projector (to present slide and demonstrate technical instructions and " -"software)" -msgstr "" -"Sebuah Proyektor (untuk presentasi dan mendemonstrasikan berbagai teknis " -"perangkat lunak/software)" - -# ddd7a506719e4ef6ba42bd156608668e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:99 -msgid "USB Flash drive(s) to transfer files and software" -msgstr "*Flashdisk* untuk memindahkan *file* dan *software*" - -# 29f070d4b8044921a0e4835463473410 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:100 -msgid "Good internet connection" -msgstr "Koneksi Internet yang baik" - -# 616b188db20d4cdeaf1722ad69ad16c2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:101 -msgid "Snacks and coffee for breaks" -msgstr "Makanan dan minuman ringan untuk istirahat" - -# ca68c3c3151d498e8926910a564ac1c6 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:104 -msgid "Schedule" -msgstr "Jadwal" - -# f89852e36ca54329ae85b6ec439c866d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:105 -msgid "" -"Below is an outline of a schedule for a five day workshop that has been " -"tested with several groups in Indonesia. You may choose to adapt and change " -"this workshop schedule to meet your needs." -msgstr "" -"Di bawah ini adalah contoh jadwal pelatihan untuk lima hari yang telah diuji " -"coba kepada beberapa kelompok berbeda di beberapa daerah di Indonesia. Anda " -"bisa saja memberikan berbagai perubahan yang mungkin bisa lebih berguna " -"tergantung berbagai faktor yang telah didiskusikan sebelumnya." - -# 7ff10021eeba43c9bd96fc21e7ed54a0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:110 -msgid "Day I:" -msgstr "Hari Pertama: " - -# 2f6b48affece433e9c2389c38298fdbc -# bf0c5a1c3aa947cc91bec1ba51f568d9 -# 9667e2bc3d22420d9f163e5428bb4693 -# fe70de206bbc4d21a5433f3a253998d2 -# 941bfdc9f5a44f928b9eb24d31922e3b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:112 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:136 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:156 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:180 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:202 -msgid "**Time**" -msgstr "**Waktu**" - -# 5f6eecac931c4540a5f37c8be26201f9 -# b72aff09dc314c87b296f8921ccaeb9d -# d0f506cfef3648e49a7e56a5028b6c02 -# 2bf87fbcddd34cad8c794cf179d65f28 -# 9a07b3b83fa045e089ae14fcd16974d5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:112 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:136 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:156 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:180 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:202 -msgid "**Materials**" -msgstr "**Materi**" - -# 8265431e2eb94f1d8248418df29927ec -# a8a0075b89954d198bf6aa149dcaf2c1 -# 26b411ae7c3c43288c2c5272bbd8e58a -# e89c2256c6aa4c5982cd7bc1311b5310 -# 1685533f28324c9e96f33704ab5ec6b1 -# 95758f02545a4150998633211737b0f7 -# 32fab7343e304a3b815337c22fade8a7 -# 2c82f49410e34f9b989286086a599227 -# 33c976fd8af146769c00ea99c335118f -# a4dd83e7694d43f4ad838b8199fd9963 -# 47132745ae4f4a3b8422f9b5f9e0f8b3 -# 71d506b543b843b1b3272d42fd4c7bb5 -# 771c4aaeeaba405496c9451ac523b9c9 -# 30f110e6800c4e8c86151920935d6b54 -# 0f61e2bd54ee4f38abf5113139a00238 -# 5f7bb88eb7724e36892ddd467362300b -# b3d53e911a9e4258869a67df07fe2660 -# 25aa02b42be14501b84954048c0eec71 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:112 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:136 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:156 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:180 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:202 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:255 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:323 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:395 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:463 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:545 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:615 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:717 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:776 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:858 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:959 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1069 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1177 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1282 -msgid "**Activities**" -msgstr "**Langkah Kegiatan**" - -# 9c04448b98b9407da58710799d758e85 -# c58883600d3240ca92d593a0eaef1a09 -# b56842c1649a496fa6d9af925b8802b0 -# 6baf83b2ef08494da94e2e9a7046d5ff -# 03af90c05cce40daabe66955f921e04d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:114 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:138 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:158 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:182 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:204 -msgid "09.00 - 10.00" -msgstr "09.00 - 10.00" - -# d4c2637b597748ab98e7f2de2cb4fdc3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:114 -msgid "Opening and building learning contract" -msgstr "Pembukaaan dan Membangun Kesepakatan" - -# 615ed71e19534b39a1f04e0ff330083a -# e22e1716adaa46919e91429cedc7334e -# 62363d50df8c4053816ed697304f2e98 -# 66d57d7466a14f64b68138506785afbf -# 9a71d142af474d1eb2cc51f4472b338b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:114 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:138 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:158 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:182 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:204 -msgid "Plenary" -msgstr "Pleno" - -# 4a4d5da287114b088e867cb97bc4856c -# 25443c4335f04aebab9a04375b0153c7 -# 6d73b70a9cfc4e4c90feb789c71157fe -# 32f5a9343c76400c8f910429df4a9224 -# 9c60d8ebc3854a898e28b13727c60222 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:116 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:140 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:160 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:184 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:206 -msgid "10.00 - 10.15" -msgstr "10.00 - 10.15" - -# 6b49b643d53842d095f70055d8972d20 -# 83b53aedbf704d94bb61e807eb7d58b1 -# 52c84fd5c737472c8f622a8dfb77421e -# 2d1336aeb35c4cf481abdacc430cebd8 -# c04676712e1c492bac3b75eeb45c39ad -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:116 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:140 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:160 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:184 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:206 -msgid "Break 1" -msgstr "Istirahat 1" - -# 47478c3ff71e4c258cfd3842379fe491 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:118 -msgid "10.15 - 11.00" -msgstr "10.15 - 11.00" - -# 839df1fac1754d718643c36ab05106e1 -# 9373e9e1fe144a9789d79f2948a5ceda -# 00bc0bbe21fe489d92b2e500ea7b3e8e -# c353f415816742d2a5b11ef3f170148f -# 107ed4fba89c4ae3ae8bcff3e2887283 -# c387d3129fa34104aa0cb248e560109b -# 810d05fda06840c69a8e5e621101f1ac -# 8d4f9472ca4e4bacadaacbff4f4dfc0e -# 3d98121a74c24693b7c4fb60ba59e60f -# c7fa380dffa441d58a333d12af75d7de -# b67ddba72dd743ac883dee5e9f0bdf4a -# 5fc08b2b884c4d4e9f3faa00bd8fc923 -# 0232df1cd98143dea298a24aae90dc66 -# a76264eae88c44caafe9016859daf962 -# 2b2abdc46e9d47f1a204f1aa6b09bd80 -# b09b3e18925643d1b6777d92fe5af1a7 -# 8facd09176524ccaa921e12c78d39ac3 -# d54defc3f61649f1b9e5b649cf6028c4 -# 66724e85f4df407982e4298cee2e5cf8 -# 71b47c30e9334fa59fe141edbd907910 -# fa1e0ee17a10473f97ba99725ed2c45b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:118 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:120 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:124 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:128 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:130 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:142 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:146 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:150 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:162 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:164 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:168 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:170 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:174 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:186 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:190 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:194 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:196 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:208 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:212 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:214 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:218 -msgid "FGD and Plenary" -msgstr "FGD dan Pleno" - -# 63c5b03378694aa3830e0e0137013ac2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:120 -msgid "11.00 - 11.45" -msgstr "11.00 - 11.45" - -# ca9c0c64a0db4284a4c7a7dcb7de9cce -# ef31f86c2f4e4041a8246b3293223b52 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:122 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:144 -msgid "11.45 - 12.45" -msgstr "11.45 - 12.45" - -# 3d238269cd024383a4779545ccd389d6 -# e99361d48c744626b7168a43c8481d60 -# 45d4cb830e54403587aa3815d171a6ab -# 55eb8026d73947718bc43428a4aedf10 -# 2e437cf2e6e045a09bf9e770f5c1ba2e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:122 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:144 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:166 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:188 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:210 -msgid "Lunch break" -msgstr "Sholat dan makan siang" - -# d50fe420d68b4cadb0653b417bb6a8cd -# 6ffaa54e50c7452abdac8e0eeaf6a8f2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:124 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:146 -msgid "12.45 - 15.00" -msgstr "12.45 - 15.00" - -# 8a2547caa5a744c199f017430c691f52 -# e816a7babd0244c5b8ef73100cd7aad1 -# 5c342f4010e24bb688291227f381c832 -# 9def45901dfb4473a0d2121457e57784 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:126 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:148 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:172 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:216 -msgid "15.00 - 15.15" -msgstr "15.00 - 15.15" - -# 6d3c4471f7a14cbe893507ce80df7cee -# a5f26dfa73a940acbf0d1b6d8ab3eeb5 -# f028f7be41004ea789c2e96c3e37d46b -# c63819112ea04b988ade31f8d03bc559 -# 1b50a86f545c423a8102c03d2f6a4e03 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:126 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:148 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:172 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:192 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:216 -msgid "Break 2" -msgstr "Istirahat 2" - -# c180af8f16a8411180b5e724cac21e1a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:128 -msgid "15.15 - 16.00" -msgstr "15.15 - 16.00" - -# 6e308882406c4eecb888d84e8a55b3e4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:130 -msgid "16.00 - 17.00" -msgstr "16.00 - 17.00" - -# f36914bf90e9490a9a643f99ed09d7ea -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:134 -msgid "Day II:" -msgstr "Hari Kedua: " - -# 5cd191eb2c6348b987a2beebe23386b3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:142 -msgid "10.15 - 11.45" -msgstr "10.15 - 11.45" - -# e96702ae4e914eb7bfb160919f7fdc9b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:150 -msgid "15.15 - 17.30" -msgstr "15.15 - 17.30" - -# a584c1fb4c9445b0bd85366a35596b5e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:154 -msgid "Day III:" -msgstr "Hari Ketiga: " - -# 5408cea6e4ca4e9a9bb08ff1f4dfd756 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:162 -msgid "10.15 - 11.30" -msgstr "10.15 - 11.30" - -# 29b5d2368df84180ba7818ca8bded193 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:164 -msgid "11.30 - 12.00" -msgstr "11.30 - 12.00" - -# 81385992b5854b60b089a30385283217 -# 44fc3da6da64444aba3a7147b8c8cbf9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:166 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:210 -msgid "12.00 - 13.00" -msgstr "12.00 - 13.00" - -# a821ccff693848ffaeea8d647f0c0b29 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:168 -msgid "13.00 - 14.30" -msgstr "13.00 - 14.30" - -# 5dbccd9076c3433ab0764060f5897c13 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:170 -msgid "14.30 - 15.00" -msgstr "14.30 - 15.00" - -# 6cc3f52c8e754b7793cfeb6a3df0b5bc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:174 -msgid "15.15 - 17.15" -msgstr "15.15 - 17.15" - -# b10647cbf6f44065b53ecec456b936d2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:178 -msgid "Day IV:" -msgstr "Hari Keempat:" - -# b386c796277d41a69472b1de84155add -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:186 -msgid "10.15 - 12.15" -msgstr "10.15 - 12.15" - -# ebe5bd99498f4ba2a3d6fb9899b95523 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:188 -msgid "12.15 - 13.15" -msgstr "12.15 - 13.15" - -# 585374bf003c497e9f1f7337dc02297a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:190 -msgid "13.15 - 15.15" -msgstr "13.15 - 15.15" - -# 8a610055460343e0a2d228a420395ea4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:192 -msgid "15.15 - 15.30" -msgstr "15.15 - 15.30" - -# 7a70e8c9ca1240e2a85e27c312abc27f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:194 -msgid "15.30 - 16.00" -msgstr "15.30 - 16.00" - -# bd5097d61908462696b3afaaacd91719 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:196 -msgid "16.00 - 17.15" -msgstr "16.00 - 17.15" - -# e090f8c344174d5eae94f8ff699b7308 -# dbeed38fbd704b46894bd354a2a844d7 -# b29ebd30a85f486f98f8dcdf225931a6 -# 40562efa521d4237ba65d510137c05de -# 8ad116f512914bde9e583577cf9e2bba -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:196 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:204 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:208 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:212 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1135 -msgid "Understanding InaSAFE" -msgstr "Memahami InaSAFE" - -# 56a58844096248f898ba28b83993fedb -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:200 -msgid "Day V:" -msgstr "Hari Kelima :" - -# 199623feaa534979b8b3b2ce8261c69b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:208 -msgid "10.15 - 12.00" -msgstr "10.15 - 12.00" - -# 8569f546b6f24921bdef8cb46b03c386 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:212 -msgid "13.00 - 14.00" -msgstr "13.00 - 14.00" - -# 72d2fbb769b5410f8ea40edbb2b28001 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:214 -msgid "14.00 - 15.00" -msgstr "14.00 - 15.00" - -# 3a110da38d4c41a98a974ae03ff98ce2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:218 -msgid "15.15 - 17.00" -msgstr "15.15 - 17.00" - -# 1b4da1f11b604c069ceeca443006bd12 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:218 -msgid "Workshop Evaluation and Closing" -msgstr "Evaluasi Lokakarya dan Penutupan" - -# 2c2003fe125045868c84cc027263070b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:223 -msgid "Workshop Plan" -msgstr "Rencana Lokakarya" - -# c51bb0875a1c4980bc01dd4474e6899a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:226 -msgid "Session 1" -msgstr "Sesi 1" - -# 4ce5411014434145a250025e7cdf539c -# bf04924c99d04b108b82289a9c102ff6 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:230 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:294 -msgid "Time : 45 minutes" -msgstr "Waktu : 45 menit" - -# a39762d525834d809e3658421867070d -# 5aac0772daa54809abf0071a8447f712 -# 894ac8a0068e4376adc3da9d45336ff5 -# b38b50545d964303bab45b3b5d418d08 -# ba236c5893c84397b9b187e482e102a7 -# c4dc105d348f4967bc32f3760d46a586 -# 09ddbb108318411f88e7592a62cc04df -# ba39b03b6af44ae18d52033dc95f6e18 -# 1a0c3b707fbf496d909f9765298f83d8 -# 0d84b0ce90a5479e939d850155848148 -# f709c79262e84107905ced7c687dec39 -# 7af6d5edb2ec4e329ba1d285131cc596 -# 7c628cbe44784ee7b2d9547912ba26d5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:233 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:297 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:362 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:438 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:518 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:588 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:691 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:751 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:829 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:916 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1035 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1139 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1259 -msgid "Basic Competency" -msgstr "Kompetensi Dasar" - -# 4035714f64df47e2bfbd9683d4a245a0 -# ae6263316f264887a25cb6f48df625e8 -# 297ed035f5fe4d679f3cfa244ee67ecc -# 18ccb8cbbf494ca78bb1edd2d85d3096 -# befa35b25373441cb178d347ef7a4d4b -# 23694ef8a26c4b5aa4f186bc66424b5f -# 12b7f99346454e2a9f4504591eeb1067 -# 2901862acbc44594979ce2e8e1c0508a -# 1c50da0be6a0446a879433b0d5eff0f9 -# 5d937b0f51984781a2fee954de07c8b6 -# d62fdf5b0566462caa9a5fee3752df3f -# 48e36562023b4b0a802c2213a804b1a0 -# 53666d055a11406083b180fe8c1bf3f7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:237 -msgid "Indicator" -msgstr "Indikator" - -# 8720b6e0f9d14dfcba3f22a0495cf84d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:238 -msgid "Distinguish between data and information" -msgstr "Membedakan antara data dan informasi" - -# a04b148014c946f2986f6b09a91acc6c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:239 -msgid "Understand the concept of GIS" -msgstr "Memahami konsep SIG" - -# 7592dc2f8c404f4cbe68749bc1a41716 -# f45f4b62242446d3a5fd79e70846483b -# 70d9df3922a54397896e3c9623d9594b -# 10a4d6f8fde9498b94e677697668b664 -# 3d720f513229493a948f87131c46617d -# 577c22d5a5bb4c5395198ed820d0d127 -# 706abd204ddd4cce9bfc1727b5ab2e1b -# 759cda4df0164badaeba79647385f477 -# 2e25d05bff784e99a2462f7150c1d6c5 -# 8ba481fe59644790853c5e65e9724b78 -# 3188d7724fd74311a1f6f0cc95af8307 -# 5841141a64204acfa51bcf203078d8d7 -# 043f4691812c4cfea59827adb55b3110 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:242 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:309 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:377 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:448 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:530 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:599 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:702 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:761 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:841 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:935 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1050 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1155 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1268 -msgid "Outcomes" -msgstr "Hasil" - -# c2daf6983c3542a58fa0f4d479c41ff4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:243 -msgid "Questions and comments about GIS and problem solving" -msgstr "Pertanyaan dan komentar tentang SIG dan penyelesaian masalah" - -# f9d3d691396b4763bb0465f7631060e3 -# 0177690379f14fbc8ffcb51e7e1408c3 -# 60ca8e6fb28c4077b1bd4d2a4c590bf3 -# 788237dea5c247e28cd1aa5314133d4f -# 0e0a4309520041da9baff2f472602b7e -# 7cb23680d89e4873809afb5e975ab0cd -# 3d14e1c8370a49ad93a84abcca52c3e7 -# 81ada438dcbc48ee8161bef017f3893f -# 16a24b43f14d4cabba539cfc5a9ab524 -# fb87ee76dd754fd58466052375449604 -# 1c84801f43a7449fb4ed78ce8dda1620 -# 9e3a1f72dc064c99b12a24052af580f9 -# 172a2050817049fa9147bf231322f4ad -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:246 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:313 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:382 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:453 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:534 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:604 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:707 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:766 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:847 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:939 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1054 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1161 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1273 -msgid "Core Material" -msgstr "Materi Pokok" - -# fe02623ddbb44f6da28795c15346aa4e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:247 -msgid "**GIS for Developing Contingency Plan**" -msgstr "**SIG untuk Pengembangan Rencana Kontinjensi**" - -# eb4329e707c84a7893496fd643ad6dba -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:249 -msgid "The difference between data and information" -msgstr "Perbedaan data dan informasi" - -# aaae4353a2d64aee8b3ccdaacb2a4998 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:250 -msgid "Terminology of Geographic Information System (GIS)" -msgstr "Pengertian Sistem Informasi Geografis (SIG)" - -# 4b7c330ce7e342a7aa0b522a85723ee5 -# 7b31a8f675d14f09974c9d50b1e18f18 -# a3c73cbc260941229f3f279116c1000e -# 785368b2dd5c420b9ef2e38df4008903 -# 4f07cac984c24afd9eb75b4d9028f0b1 -# 8cedee594d0b4463b84c181e531c4e79 -# 3d58122189234568a6313d500df401bf -# cb639fc85472421ab8ad73c4f82cd8b4 -# 51db5e77409f4cdfb70e9cc1cdca79c1 -# 8e7b665bf08a4ff68306dad876d77e96 -# ee75d75e0fc04b32b64db4f1f2fe1e9f -# b183dfe34e9345b4877dc2153f69a33a -# d9135c115f104d7e940ed72da24f9ec1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:253 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:321 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:393 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:461 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:543 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:613 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:715 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:774 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:856 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:957 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1067 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1175 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1280 -msgid "Activities" -msgstr "Aktivitas" - -# a9ece85e97ec407eaac4d950ea44706f -# 475f08ffcae444f7854211f8f57a6ec3 -# d7542d6eb1de4e63b9713440356bb7be -# def01ee1b7f64ee6a50cd6f90f10cb1a -# c684cdab1a4f4521be0dd56f660b1dd5 -# b8dd829cbeb14497803fb465734a9185 -# b3eb2c7aea434c23a041b19bb464907a -# db51aa777d204030951d879b2e4f849f -# e5ef503e6b284dde801fb4fd74d26538 -# 81d3bbc8669a4f61a8f0312cd2c1a75b -# 959317dc718640e2806155107d30141c -# e338c39e4f0f4298924f5287af820287 -# 2e98d1365fa24088ac1ba02d5163cfbd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:255 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:323 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:395 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:463 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:545 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:615 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:717 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:776 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:858 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:959 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1069 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1177 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1282 -msgid "**Methods**" -msgstr "**Metode**" - -# d1d6128c4597490c9b606e5b901eac83 -# 3e95885904704e35b5d4247c355a2655 -# e42750f5d85a4b139eb7c0c868ab7798 -# 16c564e42d98403787df8258d6091f02 -# 3c192debc344429dbc5049a2469dab1d -# 515bba24ce1448fda42fa8adc7ef174d -# 8d2604eddac640c98e0cea61fe7f0302 -# 5dfaae85d8ca4ebd9def4606e2812bc3 -# 5c935cbaf4c74180ab8bfc984afaa0d3 -# 4a89170040a4471eacc3cacca0232f5a -# 6cd9bab7e80a4a22be384ab68a21a3d9 -# 6b27f951c0cf47c3868c5dfda669cf41 -# da48a6d5284a4e7291743631ab7345d0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:255 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:323 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:395 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:463 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:545 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:615 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:717 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:776 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:858 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:959 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1069 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1177 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1282 -msgid "**Tools**" -msgstr "**Alat/Bahan**" - -# cc96121927a24aae929c50ad75b93921 -# fb3ab47900e64bb986ec3ee9ae8d57c9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:257 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1284 -msgid "**Introduction 10'**" -msgstr "**Pengantar 10’**" - -# 6dc0012d34124e769c6fd38cdfad5e8d -# 956921d1f7ee49dc95bd88de8fcc8b4f -# 1d05c84246c64c7ab30d0afb0daed586 -# ee078d85a2364c658150cdb4fb1108ab -# a4c96a5374e946e69b2799d7b48ee879 -# d7190a125a3144a191f7d11da4e152bd -# cd257c252c524458afaef8b24b8ab619 -# 8b8e7d1ba88041219b3560575d39001e -# badb09ff10434605a0f743c86fa3d521 -# 6591f91fdb1942b7a423cc4fa2286524 -# d69a851840f341b49fb119bf233d4505 -# a3c6b6805bdc43a99487c1b0f888196a -# 056e83e0b15b435781aee29331577b93 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:259 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:327 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:399 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:467 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:549 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:619 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:721 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:780 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:862 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:963 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1073 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1181 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1286 -msgid "" -"Explain the importance of the session, objectives, outcomes and activities " -"of the session." -msgstr "" -"Fasilitator menyampaikan pentingnya sesi, tujuan, hasil dan langkah kegiatan." - -# 470c65a957fe46148ddfa8058b619915 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:261 -msgid "" -"Give some questions about the OpenStreetMap beginner workshop to " -"participants. Ask participants to answer the questions in turns and other " -"participants to give input or corrections from the answer given, so a " -"discussion will develop." -msgstr "" -"Fasilitator memberikan pertanyaan seputar pelatihan OpenStreetMap tingkat " -"dasar kepada peserta, peserta diminta menjawab pertanyaan tersebut secara " -"bergantian dan peserta lain diminta untuk memeriksa jawaban temannya, agar " -"diskusi dapat berkembang dan menarik." - -# d832595fd8604e7e8e9a85a777e45651 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:266 -msgid "" -"Bridge the OpenStreetMap beginner workshop that has been given before with " -"QGIS/InaSAFE beginner workshop. Explain that OpenStreetMap is a resource for " -"spatial data which is free and open source and we can analyse it using GIS " -"software" -msgstr "" -"Fasilitator harus menjembatani pelatihan OpenStreetMap tingkat dasar yang " -"telah dilaksanakan sebelumnya dengan pelatihan QGIS/InaSAFE tingkat dasar " -"yang akan dilaksanakan. Berikan pemahaman bahwa OpenStreetMap merupakan " -"salah satu sumber data spasial bebas dan terbuka yang dapat diolah dengan " -"perangkat lunak SIG" - -# dedd4d89bfd1419e87a6f503056582fa -# d175aee4a73e4d1181075b002e754a79 -# 3b551ced3cef4daba6cdcc921f6d4d50 -# 1bf5d2e37d344d9fab784ac1079d58a9 -# 4b513c4c75da4c9bad9096961ffb7d90 -# dc90f59dd1cd4799ad5cd17296b21bfc -# 5e81ffa38dbc4d05959e1d931d6606b3 -# ae83169ce10d4273b1cb95a59920f199 -# 516c1d079c38453092e326878a8cfd89 -# cc7bb6d2d00945d3a2e4f818770ceb20 -# 615cc948e7ef4d6da777038669a567f8 -# 1e8934fe11174f0a9db60b90a3b7c498 -# d3870b7cb717475e91866275774191af -# dce53750b75941ff962f521a98196243 -# 108aba400f0c43aeb0d59d4d79141506 -# a2ac166968e24a6fb28fa7be48d3bdfb -# 1c218257e0b9497e96d8bf55f152ca0d -# 954c8e26a2c54f289ca6987e02de4d28 -# 893174655de144b7bd9a6eeaaaaf12e3 -# acf4ba71dccc458eb37b909c39249d0f -# bb50db3a74494ee494a5107c21b9a572 -# 53ddbdb9681a4dcda8bf4adecd4ecf1d -# ead991d4383f4054bd980324a2bf1a49 -# 5bff3dfea1dd45569a1d063d69a132b1 -# 5da4933a4065425289a8625e36716bf1 -# 785eed7c57e644bdb07c38d9b42ce38c -# 2c0323c4de104812bbfca1e4873f3bf4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:257 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:272 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:325 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:332 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:337 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:397 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:465 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:470 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:547 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:552 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:561 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:617 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:622 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:719 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:778 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:860 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:865 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:888 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:900 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:961 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:966 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1071 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1179 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1184 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1224 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1284 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1300 -msgid "Lecture" -msgstr "Dosen" - -# e4fe2a6cb23b457cac4eac3eb157c970 -# 2183620a4b16483b9e5c02f38e5ddd2f -# e54677ecd726443dacb3388e4ef891d6 -# 4322d2a583ad4c54bdf8850070d9efcf -# 1edc603750194524bbb63cb20f15b236 -# 88d18387f8454b52b8585504f8440a3b -# f1fc1f020ad14dbb9cb92627167aa4df -# e646e1887d3b40f89a3e979d26ecee9b -# 2f3f9ea6937b4d91abc070540b627e16 -# 9b6c31bde76b498d9e4cfebb36698076 -# 28d5c5b06fd545a481f52800ca787f11 -# f0a73b05bc654d67a5145c24e4ea20c9 -# 9a3e557193c44fa0a1a5e1d91dfdab71 -# ed6e761bbe3045a0a7cb356e892f5b47 -# 8dd41eac636443b8a0e6da1daf20bc1c -# 5e76cd8f42b348c283789568c73818b5 -# 9379828c9c4247edabc8f556dcb4b8d4 -# 4090cad6abf54428b8d82f63c38225c3 -# 14a4680d32e34a8dad889f0e801f91f4 -# 264ab8f0bd7e455fa43c0ab88c0d0a7d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:257 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:339 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:397 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:465 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:547 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:552 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:719 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:778 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:860 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:961 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1071 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1179 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1184 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1191 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1205 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1215 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1222 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1229 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1284 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1289 -msgid "*Slide PP*" -msgstr "*Slide PP*" - -# dc8e901f7a744bbcbb9a1f9fcb893bcc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:272 -msgid "**GIS for Developing Contingency Plan 30'**" -msgstr "**Penggunaan SIG untuk Pengembangan Skenario Rencana Kontijensi 30'**" - -# af67052b71ee4ef890bad3910226a5ea -# e993fa063d6c463a82261afc2645088d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:274 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:340 -msgid "Explain:" -msgstr "Fasilitator menjelaskan:" - -# 3406b4118c604b8ca06ae7c91bdfd4d4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:276 -msgid "The differences between data and information" -msgstr "Perbedaan data dan informasi" - -# 843ed2714f37442f90d26ce3026a937d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:277 -msgid "" -"Basic concept of GIS, GIS terminology and functions in GIS, along with " -"examples of the software" -msgstr "" -"Konsep dasar SIG berupa pengertian SIG dan fungsi analisis dalam SIG beserta " -"contoh perangkat lunaknya." - -# 6afa7f3bf7b041a6aec61f03fe84d9cd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:279 -msgid "Benefit of GIS to in contingency planning" -msgstr "Kegunaan dari SIG dalam rencana kontinjensi" - -# 28e08769d30b4ccb94f88d5b72d81f0b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:280 -msgid "Importance of having accurate data to develop contingency planning" -msgstr "" -"Bagaimana pentingnya memiliki data yang akurat untuk kegiatan penyusunan " -"rencana kontijensi" - -# b066b4aef86b4f38a802779e72346751 -# 5a18ddc3590e494db1032cdba300c17d -# 8e86f69a59b8490f8563aad26aa54658 -# e175a07e9cbc4f33aac71047bb0ae25f -# 5fff5284a8994aa294be13db5568e58a -# 845e9dface2a40bb868b94e8162630c9 -# 81ceaecf2b3c4b54a1d5dbb642d30921 -# 934837972da1470792a00a313db1729c -# 38c068d12a154cfba5b07ad9aaa83808 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:272 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:330 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:407 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:470 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:561 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:572 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:974 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:995 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1076 -msgid "*Powerpoint* *presentation*" -msgstr "Slide *Powerpoint*" - -# f2c91d3653534963915d6ea39116be4c -# 91a55aa39c9f4258822fa786fc23fe38 -# 5e8e530bdfa0418ea4ec875288f7f869 -# c5ccc6ffbaa34dcd96d30b36914f140d -# 16a6c849fa2d4a34929d0dda8e3142a1 -# 2bad1ec6eee14c4d9f060706ce178df4 -# 365cfaf709bb43c18600b038f55c3ded -# 77546517ed684025a0faaa7377d5b217 -# e2a336d4a3c6426c88eedcb2247feb65 -# 6c26c1d559644db08853581e09b1cebd -# 3b9b73d3c3e147c3b08eba20ae48678c -# 9ea388205a4d449f87e64aced9a264d6 -# 472c12fcb9f34173ae8f116964822556 -# df600309d6a2496c9477b3cf0de884d3 -# f5e3d28720c84139af2d37bd885c550b -# d54d0ef9f4344e899f46b2c5c0ba082d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:275 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:333 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:337 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:411 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:473 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:564 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:575 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:622 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:724 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:783 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:865 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:888 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:900 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:977 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:998 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1079 -msgid "Projector" -msgstr "Proyektor" - -# 541ea7c2ad8c4867a89bc5bcbb81c069 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:277 -msgid "Module 1" -msgstr "Modul 1" - -# 6905bd485d7c488cb6e0a535255ec8f9 -# f4526a87e26b4cdc8db8fa066a0f8bc8 -# b61e3365f84d4246ba539c2abb00f47d -# 702f8aa1a9ee463f9198e64135706450 -# d4031f5f9f1a4501804cc2e948379905 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:283 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:348 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:417 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:485 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:655 -msgid "**Closing 5'**" -msgstr "**Penutup 5'**" - -# 006c83fb36a849eeab7e810dbdee4a10 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:285 -msgid "Ask participants to give reflections on this first session." -msgstr "" -"Peserta diminta menyampaikan refleksi tentang apa yang telah diterima pada " -"sesi pertama." - -# 5a671fd0028a4c3a96d532001f15931d -# 7f3c82662e1e428ea59c6f17ac5318d9 -# 0f026f03439c49578b8193c04764ba17 -# a922d8c133da4f0ab9e50223246d79b5 -# 00d6af1833de4ffaa6800d0bb55a1ac1 -# 3f5f2d4908ee4d55bc4ac7b8d9fdd68b -# c30323873dd64e47b1bb63386b47aacb -# 82b3513e79324c31b416b28277fa79bb -# 01e25820925249119fd0d37cbb43d753 -# 148da8eb6cee429cb99daa5c9875e840 -# 65eae6abca62430c83703fb3cd3551b6 -# dc4adec57f5b4202804508d4ff953f7a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:283 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:330 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:339 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:348 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:417 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:485 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:567 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:655 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:904 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:968 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1186 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1302 -msgid "Q & A" -msgstr "Tanya & Jawab" - -# 98222c0c38904136a7788e2fb08aa333 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:291 -msgid "Session 2" -msgstr "Sesi 2" - -# c325f074ad45433d8915be137ec4c04a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:293 -msgid "QGIS and |project_name| in Contingency Planning" -msgstr "QGIS dan |project_name| dalam Rencana Kontinjensi" - -# 109b56a8e8b946a4b427671457dc0b56 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:298 -msgid "" -"Understand the benefit of QGIS and InaSAFE for developing realistic scenario " -"for contingency planning" -msgstr "" -"Memahami manfaat QGIS dan InaSAFE dalam mengembangkan skenario realistik " -"untuk Rencana Kontinjensi" - -# 8683cbf9269e45ff8b63e863fd5815d9 -# e5f5366ed57e4b39bb92f6d3b5945374 -# 822a1370d0f14fc095ae08e38f00cbdd -# fbea92a9acb249c0b7291cc933dca56b -# 7a631917c2d641ccb74a0731d344f062 -# cf717656fa254030aed97b9187c09643 -# dcb1f21945ed46ed840c73ce3956c439 -# dfd84ffb9dba471ebc97526ea1dad516 -# ee50555f047e4c65b1b4665760ed14d3 -# 8b1df00986a84f4aa135f576f42e968d -# 9b964374f0fc4e5aab9979fb6530a4cd -# cb1d56f5b82148128fbecefcfc2d7635 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:302 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:366 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:442 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:522 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:592 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:695 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:755 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:833 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:920 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1039 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1143 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1263 -msgid "Indicators" -msgstr "Indikator" - -# b70bd73f10a4468d9f52fbc3f7cad139 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:303 -msgid "Understand the role of GIS for preparing contingency planning" -msgstr "Memahami peran SIG untuk mempersiapkan rencana kontinjensi" - -# e6807f7fe83a46f89d0ad43437c6941c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:304 -msgid "Understand the importance of data" -msgstr "Memahami pentingnya data" - -# 4cd2117369c4460d8796c0abd8789bd7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:305 -msgid "" -"Understand the benefits of QGIS/|project_name| in the development of " -"scenarios for contingency planning" -msgstr "" -"Memahami manfaat QGIS/|project_name| dalam pengembangan skenario untuk " -"rencana kontinjensi" - -# efc491cc35ac4ac6834f1203368dd0ef -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:310 -msgid "" -"QGIS and |project_name| are used to support development of contingency " -"planning" -msgstr "QGIS dan |project_name| untuk mendukung penyusunan rencana kontijensi" - -# 64717ef755d0421984bd93e205663f7a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:314 -msgid "**QGIS and InaSAFE in Contingency Planning**" -msgstr "**QGIS dan InaSAFE dalam Rencana Kontinjensi**" - -# 14a0f57bf2084153a53ffaa20bf7843c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:316 -msgid "GIS for Preparing contingency Planning" -msgstr "SIG untuk Mempersiapkan Rencana Kontinjensi" - -# 5c39ccdd58a54ead934d6c689d41126a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:317 -msgid "The Importance of Data" -msgstr "Pentingnya Data" - -# 86305697892245dda06b5b95c1b88061 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:318 -msgid "QGIS and |project_name|" -msgstr "QGIS dan |project_name|" - -# 4cae4dde9a114b7ebfd3bfbca9e79411 -# 3f508b5a5e26431ca01ef63f8ca8ccc4 -# 2a5b14ad51bc4dd78c5b88903b00c77d -# 685cb62d87a94683ad1e94e6cdd222ca -# 31956692fbe047f195b6c36ec8c011a0 -# 3e8ba1e1364145fc924ae220e0822c54 -# 494c0783d38a4f93a9d4fb572a5dd73b -# eedcfb0d87ae40debfcf2db233ffd57a -# 40ba37ba836f4901be944d1ff71b79ba -# 6e7276ae1d134ba9bbeac3e9eb505038 -# 8f3f6fdafc814e9b8f4219041f935661 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:325 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:397 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:465 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:547 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:617 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:719 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:778 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:860 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:961 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1071 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1179 -msgid "**Introduction 5'**" -msgstr "**Pengantar 5**" - -# fcdf2e6233424ec58fe869430f2ac67a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:330 -msgid "**Understanding contingency planning 15'**" -msgstr "**Pemahaman rencana kontinjensi 15’**" - -# 5af40e5be9e14f3792c125ffed0b5e01 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:332 -msgid "" -"Before going into GIS to support contingency planning, it is better to ask " -"participants about their understanding of contingency planning. Provide some " -"review based on contingency planning terminology from BNPB." -msgstr "" -"Sebelum masuk ke pemanfaatan SIG untuk mendukung rencana kontinjensi, ada " -"baiknya fasilitator menanyakan terlebih dahulu pemahaman peserta mengenai " -"rencana kontinjensi. Berikan sedikit tinjauan ulang berdasarkan pengertian " -"rencana kontinjensi dari BNPB." - -# 414cf726d916425ea675095542c60780 -# 4b7b515cdb4c416cbc8c03ebfa709c45 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:335 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:341 -msgid "Module 2" -msgstr "Modul 2" - -# d2692a12890549eeac67fa19bf28f26f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:337 -msgid "" -"**Using QGIS/InaSAFE software to support development of** **contingency " -"planning 20'**" -msgstr "" -"**Pemanfaatan perangkat lunak QGIS/InaSAFE untuk mendukung pembuatan rencana " -"kontinjensi 20’**" - -# 23eb0bd90c834b578956e3b28097d0dc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:342 -msgid "Terminology of QGIS and InaSAFE" -msgstr "Pengertian QGIS dan InaSAFE" - -# fea3758465c345a19dbcfc38122e5980 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:343 -msgid "Why QGIS and InaSAFE is important for developing contingency planning" -msgstr "" -"Mengapa QGIS dan InaSAFE penting digunakan dalam penyusunan rencana " -"kontijensi. " - -# cc89e64e0faf4b81b1429fbebeff09d8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:345 -msgid "The benefit of using QGIS rather than other GIS software" -msgstr "" -"Beberapa kelebihan bila menggunakan QGIS dibandingkan dengan menggunakan " -"perangkat lunak SIG lainnya" - -# dafc050d72e944efa2784f71c65da4d5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:346 -msgid "Mapping disaster impact using InaSAFE" -msgstr "Memetakan dampak bencana dengan menggunakan InaSAFE" - -# 1fa032f080e44e2389e648b1ea656c03 -# 6321f638aeb743c1b1901cf7aa23b076 -# 5200fa5675a3471fb5ff03f0579eb0c6 -# 1a5ba7db4f6b4acda447bc384447ced2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:350 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:419 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:487 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:657 -msgid "Ask participants to give reflections on this session." -msgstr "Peserta diminta menyampaikan refleksi pada sesi ini." - -# 919109b4a0f04a54b87c42fe0660cb41 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:356 -msgid "Session 3" -msgstr "Sesi 3" - -# 7ca5943d9ad64c3b84bb8445143f95e0 -# e5964c9dc6ad46409bf528bf73650460 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:359 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:826 -msgid "Time : 180 minutes" -msgstr "Waktu : 180 menit" - -# 3f852532734248b9821ba89e3b417a50 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:367 -msgid "Download QGIS" -msgstr "Men-*download* QGIS" - -# 5dd9833efcde4660acba2f18ae41070d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:368 -msgid "Install QGIS" -msgstr "Meng-*install* QGIS" - -# 9b868df31de94ef28285f06bebbbae19 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:369 -msgid "Open a previously created QGIS project" -msgstr "Membuka proyek QGIS yang telah disimpan sebelumnya" - -# 48798887cdc34c1ebaad8bae4a5423d2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:370 -msgid "Understand the layers panel" -msgstr "Memahami panel *layer*" - -# fbf79007db1e48a29167954484d45366 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:371 -msgid "Access basic tools through the toolbar" -msgstr "Mengakses tool dasar melalui toolbar" - -# 2715f74a6bac404aade5eb63adf2032c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:372 -msgid "Clean up the toolbar" -msgstr "Membersihkan *toolbar*" - -# b47334aff9d54c2183f0cec4391f853f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:373 -msgid "Show a map in the map window" -msgstr "Menampilkan peta melalui jendela peta" - -# d57c3f5016324c2688264b10015fcc88 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:374 -msgid "Get information on an active map through the status bar" -msgstr "Mengambil informasi pada peta melalui *status bar*" - -# ec5d29d0a7fd42bdb758c19586877939 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:378 -msgid "QGIS is successfully installed in each participant's computer/laptop" -msgstr "QGIS berhasil terinstal pada setiap komputer/laptop peserta " - -# 3337cb9f8e204899aec84de054bc9349 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:379 -msgid "Participants understand basic QGIS navigation and layout" -msgstr "Peserta memahami dasar navigasi QGIS dan layout" - -# 75e2ed6d325e4b2fa411e6bd818e3677 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:383 -msgid "**The Basics of QGIS**" -msgstr "**Dasar-dasar QGIS**" - -# f89efef487f74f31bacfd493795a5696 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:385 -msgid "Getting QGIS" -msgstr "Mendapatkan QGIS" - -# 99280a10d372431eb8730ce1fcc44c53 -# 39cbfacb9ca54b5e8ffd45f1c055029a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:386 -msgid "Installing QGIS" -msgstr "Installasi QGIS " - -# 62881405fae641ab82ebe419691af107 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:387 -msgid "QGIS user interface layout" -msgstr "Pengguna tampilan antarmuka Layout QGIS" - -# 8ffd92ab624d460da0967715db987fb6 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:388 -msgid "Adding vector layer" -msgstr "Menambahkan *Layer* Vektor" - -# 252b7d052bb44f7b99a7fbea0114410c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:389 -msgid "QGIS basic tool" -msgstr "Tool QGIS Dasar" - -# f1394d13d46e4ac1acaa0f4701be0a89 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:390 -msgid "Panning maps" -msgstr "Menggerakkan Peta" - -# b01f5685857541aca2b8d8592f5a6bf8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:402 -msgid "**Practice 170'**" -msgstr "**Praktik 170’**" - -# e22f454d155a4b01ad07ce9d881298fd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:404 -msgid "" -"Ask participants to install QGIS which has been downloaded before workshop " -"on a flash drive. If internet connection is reliable they can download it " -"directly from http://download.qgis.org." -msgstr "" -"Fasilitator meminta peserta untuk melakukan installasi QGIS yang telah " -"diberikan sebelumnya dalam sebuah flash disk atau bila jaringan internet " -"memadai bisa mendownload langsung di website http://download.qgis.org. " - -# 19eb91710a7748db858569ae4d55bcc2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:408 -msgid "" -"Make sure every participant installs QGIS. Guide them through the " -"installation." -msgstr "" -"Pastikan seluruh peserta bisa melakukan installasi QGIS, bimbing para " -"peserta untuk melakukannya." - -# 8bfac32beec7433aa1b3f954e786cbd0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:410 -msgid "" -"After each participant installs QGIS successfully, explain the QGIS user " -"interface such as the toolbar menu, layers panel, map window and status bar." -msgstr "" -"Setelah para peserta berhasil install QGIS, jelaskan layout yang terdapat di " -"dalam QGIS berupa Menu toolbar, daftar layer, tampilan peta, dan status bar. " - -# d846bb538b6f4729b4c1d07d12ed5de1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:413 -msgid "" -"Guide each participant to add a shapefile (already prepared) into QGIS and " -"explain the status bar under the user interface layout." -msgstr "" -"Bimbinglah para peserta untuk bagaimana menambahkan shapefile (sudah " -"disediakan sebelumnya) kedalam QGIS dan menjelaskan status bar yang terdapat " -"di bawah layout." - -# 31fd3643c13c49e0bcecd8b6c353047a -# 5d98e09a8f874598b87d9afbefecd956 -# af32fac6ad89463dac679fbf48bf66d2 -# f98c14ffeb0e4c699cfd4edb6378a77d -# b95f6d487f3d4910bb66b145f96e48cb -# 9d563544e4e648418f24947237fa55af -# 37f4f11c9acb4d768de80ba26cc6a05b -# 9c0a0bc8ce4a45d0876c877ace63f124 -# 7a39b513c5d240b3bf596aba5b42246a -# 8c91e227ecd4424897528cae6a45f0f0 -# 256b196f10984b639ebdc14e60f4b324 -# 5e821d12824c44a2ba300a6a897217bc -# d72249f74fac42f495264c9d04773226 -# a25b9f30bc554f908e3c5e018a985701 -# b3e0e9c9174147d6b77ec968675ba518 -# 73cbf931be8843f58ea747d5bb580f17 -# 56f8cbdbd1bf43bc980f4970cb82f0ec -# 3a9f785c7dfb4a6bbf2cd49e5e1fb43f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:402 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:474 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:565 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:574 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:626 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:648 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:728 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:785 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:867 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:890 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:976 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:995 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1078 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1207 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1217 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1226 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1232 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1291 -msgid "Practice" -msgstr "Praktik" - -# 4027b3947ca94070b13525ef17cfe8f7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:402 -msgid "QGIS Installation file" -msgstr "File installasi QGIS" - -# 11475769e27c464e912eda9bc4c52105 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:414 -msgid "Module 3" -msgstr "Modul 3" - -# e2fddb2323de4bdfb8110630a72a04a7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:424 -msgid "Common Problems" -msgstr "Kesalahan Umum" - -# 8c5e419c21c6448a9848727a142d85a5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:425 -msgid "" -"In this session, it is possible that QGIS will not install on some computers/" -"laptops. One common problem is that a problem with sqlite shows up when QGIS " -"opened. You can solve this problem by copying sqlite file from another " -"computer/laptop that has QGIS successfully running." -msgstr "" -"Pada saat sesi installasi kemungkinan ada beberapa computer/laptop yang " -"tidak bisa menginstall QGIS. Masalah umum yang terjadi adalah terdapat " -"masalah sqlite muncul ketika kita membuka QGIS. Anda dapat menyelesaikan " -"masalah ini dengan meng-copy file sqlite dari komputer/laptop lain yang " -"berhasil menjalankan QGIS." - -# 5cebc15d17114be9936a0928c77c0f35 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:432 -msgid "Session 4" -msgstr "Sesi 4" - -# 31ff6a6c7cef4406a0ca8b06d9f4c9a1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:435 -msgid "Time : 105 minutes" -msgstr "Waktu : 105 menit" - -# 74e494f6d3e2480d937b9ebe32818d1b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:443 -msgid "Understand the concept of plugins" -msgstr "Memahami konsep plugin" - -# 52e4f77adc214343989201d01f5be297 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:444 -msgid "Install QGIS plugins" -msgstr "Instalasi Plugin QGIS" - -# 1182428a15f246edb2e69b5c435a3895 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:445 -msgid "Add satellite imagery via OpenLayers" -msgstr "Penambahan imagery dari citra satelit menggunakan OpenLayers" - -# b6caac12ebcc4bc1bbb9f1212fa67ecd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:449 -msgid "Participants can add QGIS plugins based on their needs" -msgstr "" -"Peserta dapat menambahkan plugin pada QGIS berdasarkan kebutuhan mereka" - -# 6bdb4c1fcc1e4a2dbc2bee07c123659e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:450 -msgid "Participants install and use the OpenLayers plugin" -msgstr "Peserta menginstal dan menggunakan plugin OpenLayers" - -# c1366a694622433fa2a344e84777f22e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:454 -msgid "**QGIS Plugins**" -msgstr "**Plugin pada QGIS**" - -# a83f93e515024dd980200500e66c6cab -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:456 -msgid "Plugin setup" -msgstr "Mengatur Plugin" - -# 7c6cf38d81ab4c06a3005ad78c168211 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:457 -msgid "Installing plugin" -msgstr "Menginstal plugin" - -# caa6f32ad65d40b98cca9a935495895f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:458 -msgid "OpenLayers plugin" -msgstr "Plugin OpenLayer" - -# e0a3b682f4164c7790e56e55a1c4250a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:470 -msgid "**Demo and Practice 80'**" -msgstr "**Demonstrasi dan Praktik 80’**" - -# 88d5ca2723d848819c8d02631d155fc7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:472 -msgid "" -"Explains the idea behind plugins. Show some examples of plugins. Explain how " -"plugins work in QGIS." -msgstr "" -"Menjelaskan konsep plugin. Menunjukkan beberapa contoh plugin. Menjelaskan " -"bagaimana plugin bekerja di QGIS." - -# 5730e111838d44c282d25cc1e3503f53 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:475 -msgid "" -"Show how to install a QGIS plugin, explain the QGIS plugin menu and make " -"sure every participant practices it." -msgstr "" -"Menunjukkan bagaimana cara menginstal plugin QGIS, menjelaskan menu plugin " -"QGIS dan pastikan seluruh peserta mempraktikkannya." - -# 094a4cb81baa4db396c31fed55e67409 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:478 -msgid "" -"Ask the participants to download the OpenLayers Plugin. After installing, " -"ask participants to use the plugin. One thing to remind participants is to " -"not use Google imagery with OpenStreetMap because the license is commercial." -msgstr "" -"Mintalah peserta untuk mendownload plugin OpenLayers. Setelah menginstal, " -"mintalah peserta untuk menggunakan plugin tersebut. Satu hal yang perlu " -"diingat oleh peserta adalah peserta tidak boleh menggunakan citra Google " -"dengan OpenStreetMap karena lisensinya masih diragukan." - -# 051e2a9a84084c4284b157ebdd84380a -# 769c0f6de9e0436aa1bf2752793a3421 -# 8bc1111dbf7348a59d9cd3bebdb288b3 -# 7bf80316edb84df1a0dd24c71cc25831 -# 9b992b653ab54f77acf4f314bb4eeff7 -# fc51cc758f0947f08d3fdcad1f5c2249 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:472 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:563 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:572 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:624 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:724 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:726 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:783 -msgid "Demo" -msgstr "Demonstrasi" - -# 5c9f75cb57d647939aeab8a2ab6c891b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:475 -msgid "Module 4" -msgstr "Modul 4" - -# 3670225b1cfd477dbffa9c24c87db753 -# 73c06ca82dea454a8a6fe394858ca9eb -# a9d7208fdab84deaa54e09401987bc46 -# 5f11dc8532b74c2a9494d1a46547b6ee -# a422068f48324ea5b6ff11ec94126193 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:492 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:662 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:811 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1014 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1121 -msgid "FAQ (Frequently Asked Questions)" -msgstr "FAQ (Pertanyaan yang sering muncul)" - -# fef5c1a7d9fb47ae87e00accc858202c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:494 -msgid "**What should we do if the plugin installation fails?**" -msgstr "**Apa yang harus kita lakukan jika instalasi plugin gagal?**" - -# ee3fb616d7fc4f5984302e601ce4d115 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:496 -msgid "" -"This can be caused by a poor internet connection. An internet connection is " -"needed during plugin installation, especially if the plugin file is big like " -"|project_name|. If this is a major problem, it can be addressed by preparing " -"the plugin file on a flash drive. Then copy the plugin to :file:`C:" -"\\Users\\Computer\\.qgis\\python\\plugins`." -msgstr "" -"Hal ini disebabkan oleh koneksi internet lemah. Koneksi internet dibutuhkan " -"selama menginstal plugin, khususnya jika file plugin besar seperti |" -"project_name|. Masalah tersebut bisa diatasi dengan menyiapkan plugin yang " -"sudah di-install di dalam flashdisk. Kemudian salin plugin tersebut ke :file:" -"`C:\\Users\\Computer\\.qgis\\python\\plugins`." - -# fe00d4affc4b438599bfe1e0de108791 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:503 -msgid "**What if the Fetch Python Plugin menu is not available?**" -msgstr "**Bagaimana jika menu Plugin Fetch Python tidak tersedia?**" - -# 78dee1af173a465e93de06d3d73d3cd1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:505 -msgid "" -"Open the settings from the *fetch python plugin* options menu. Tick the box " -"next to *check for updates* on startup which should add a list of new " -"plugins automatically." -msgstr "" -"Buka pengaturan dari menu pilihan *plugin fetch python*. Aktifkan *check for " -"updates* pada startup yang berguna untuk menambahkan daftar plugin baru " -"secara otomatis." - -# 8143b554a2784a719e9d24722ad49316 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:512 -msgid "Session 5" -msgstr "Sesi 5" - -# 9dcf26d65cb94abd85c4d4bbf6ae5f44 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:515 -msgid "Time : 90 minutes" -msgstr "Waktun : 90 menit" - -# c09b746ccb834b89acfa28753ea051a4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:523 -msgid "Understand Coordinate Reference Systems (CRS)" -msgstr "" -"Pemahaman Sistem Referensi Koordinat (Coordinate Reference System - CRS)" - -# 179eb0f8a0994975b50168d1a852b8f8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:524 -msgid "Identify the CRS of a vector dataset" -msgstr "Identifikasi CRS pada dataset vektor" - -# 73bc522c8dfa44809a8129659c68e46f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:525 -msgid "Do 'on the fly' reprojection" -msgstr "Melakukan proyeksi ulang 'on the fly'" - -# 5ddf7a51ce4f42238e57c2d1b77c4424 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:526 -msgid "Save dataset with a different CRS" -msgstr "Simpan dataset dalam CRS yang berbeda" - -# a92a8a8e0aeb4d0f99bb41c1bd0d9248 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:527 -msgid "Create a custom projection" -msgstr "Membuat proyeksi sendiri" - -# afe76342bba143c4a86c8f363d08d260 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:531 -msgid "Participants can change and create different projection systems" -msgstr "Peserta dapat mengubah dan membuat sistem proyeksi yang berbeda" - -# 34e6459f810b44e0823822c8004de599 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:535 -msgid "**Map Projection Basics**" -msgstr "**Dasar Proyeksi Peta**" - -# e14ba63202d749a4b73052eb1315d78c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:537 -msgid "Coordinate Reference Systems (CRS)" -msgstr "Sistem Koordinat Referensi (CRS)" - -# d3fdf8ffd9224b2c9af6f1c8ce9984f0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:538 -msgid "“On the fly” reprojection" -msgstr "Proyeksi ulang \"On the fly\"" - -# 1ed16af7c3e34ef5b50e3f1bff3ee970 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:539 -msgid "Dataset with different CRS" -msgstr "Dataset dengan CRS berbeda" - -# bf0d563c82da46ce94db101359380fe8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:540 -msgid "Defining a custom projection" -msgstr "Menentukan proyeksi sendiri" - -# 788a57dd47fd45e6bcd4c50f617a2639 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:552 -msgid "**Lecture and Discussion 15'**" -msgstr "**Ceramah dan diskusi 15’**" - -# 36a62655d1e540d7992eddde9ff003c7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:554 -msgid "" -"Explain projection systems and the difference between the use of UTM and WGS " -"84 in Indonesia. If the participants are not familiar with projection " -"systems, you should slowly explain and give examples of its use in the real " -"world." -msgstr "" -"Menjelaskan mengenai pengertian sistem proyeksi dan perbedaan antara " -"penggunaan UTM dan WGS 84 di Indonesia. Jika peserta belum mengenal dengan " -"sistem proyeksi, Anda harus menjelaskan secara perlahan dan memberikan " -"contoh penggunaannya di dunia nyata." - -# 0998c69a2edd45e399ab81a67ab6b636 -# 126341674a5045f5a84593434edc0e7e -# d37ad8dacd8547629ed3ab899993eb0d -# 420d9d94084b410a93c2ceabfc2390b2 -# 64423e8e755d4cf49c4ee58f7fc57bd8 -# 3f41002faf2840d1b66eface22f638e7 -# 8fe05931e2bc4a808169ea3d44981c6b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:554 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:735 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:804 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:902 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1008 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1115 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1246 -msgid "Discussion" -msgstr "Diskusi" - -# 79b89e8930f44a3d92d3a7a3797e79f9 -# 3561b7657afe4f38a0ea9eb2b77ef04d -# 4d1b15b77adc41acb9e3950a585054ae -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:554 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:566 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:577 -msgid "Module 5" -msgstr "Modul 5" - -# 7f3a96afb43d4f2d9e8635a9a8feee5b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:561 -msgid "**Demo and Practice 35'**" -msgstr "**Demonstrasi dan Praktik 35’**" - -# e670c75653db4e2fbe05aa1685b07a06 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:563 -msgid "" -"Explain how to change the CRS of a map and activate the \"On the fly\" " -"reprojection" -msgstr "" -"Menjelaskan bagaimana mengubah CRS dari sebuah peta dan mengaktifkan " -"proyeksi \"On the Fly\"" - -# b625a1e3df224692921a905c460c1619 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:565 -msgid "Explain how to save vector data into another projection system." -msgstr "" -"Menjelaskan bagaimana cara menyimpan data vektor ke dalam sistem proyeksi " -"lain." - -# fc5907e0c884439f88f3181db9af4399 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:567 -msgid "" -"Challenge the participants to make a projection system in QGIS, and ask them " -"to explain why they chose that projection system." -msgstr "" -"Memberikan tantangan kepada peserta untuk membuat sistem proyeksi di QGIS, " -"dan mintalah ke peserta untuk menjelaskan mengapa mereka memilih sistem " -"proyeksi." - -# c38da51fd9bc4b978bfa40bdb0213c14 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:572 -msgid "**Demonstration and Practice 35'**" -msgstr "**Demonstrasi dan Praktik 35’**" - -# 48185b7781bd4d038a155cc38ea3bd2d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:574 -msgid "" -"Explain how to make a custom projection system. Participants should follow " -"along." -msgstr "" -"Menjelaskan bagaimana cara membuat kustomisasi sistem proyeksi. Peserta " -"harus mengikuti proses ini." - -# 2a5aa19b43ad44c5be9af16578690c4f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:582 -msgid "Session 6" -msgstr "Sesi 6" - -# 1f3b24c8127d46b7bfe6187c2ef74c15 -# c7ccb03b4c7e4e178b619b9c7568d7dd -# d7b0a8531f8a47f88325c32d272da11a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:585 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:688 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:748 -msgid "Time : 135 minutes" -msgstr "Waktu : 135 menit" - -# 6427919e4deb4a638d7d73b115f3437f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:593 -msgid "Understand vector data" -msgstr "Memahami data vektor" - -# ddef873dee3c4be298db7868213f9c32 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:594 -msgid "Identify attributes of vector data" -msgstr "Mengidentifikasi atribut data vektor" - -# db3dfdd09eec4b8d87fd6bb1fedff9c0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:595 -msgid "Add vector layers" -msgstr "Menambah layer vektor" - -# 696b1616f3c04ce3bc6755403f338e9c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:596 -msgid "Symbolise vector layers" -msgstr "Simbolisasi layer vektor" - -# 9420599cb460414c9fdf451bf1cb0b99 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:600 -msgid "Understand how vector data works" -msgstr "Memahami bagaimana data vektor bekerja" - -# 9497712d67f84bddbab88597d8faa6d0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:601 -msgid "Add and symbolise vector layers" -msgstr "Menambahkan dan simbolisasi layer vektor" - -# 95168b66cb1a490b852a67d02c27e34e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:605 -msgid "**Working with Vector Data**" -msgstr "**Bekerja dengan Data Vektor**" - -# ecac7742b5ed4af5854fe3dc759d8982 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:607 -msgid "Vector data" -msgstr "Data Vektor" - -# 478e23b560034a5882315268201cdebf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:608 -msgid "Data attribute" -msgstr "Atribut Data" - -# 8c68d9cc066f4b2ead067928d555876f -# 3a16f765686746188032f8b440b4d81d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:609 -msgid "Add vector data" -msgstr "Menambah data vektor" - -# ac315a776c4d4cbd854760a96f59448c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:610 -msgid "Symbology" -msgstr "Simbologi" - -# d8fad6ce31e844888badf5266c69c0d5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:617 -msgid "Projector Computer" -msgstr "Proyektor Komputer" - -# 7cbc6312150b4385a90408c300cced0e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:620 -msgid "Participant" -msgstr "Peserta" - -# aa419fd15af24bd3ab0fbe8bf691893a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:622 -msgid "**Vector Data 75'**" -msgstr "**Data Vektor 75’**" - -# c4d53c071c2146e8addd33fcf67e0301 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:624 -msgid "" -"Explain what is vector data and examples of file formats. After explaining " -"the theory of vector data, open sample file containing vector data in QGIS " -"and show data points, lines and polygons." -msgstr "" -"Menjelaskan apa itu data vektor dan contoh format filenya. Setelah " -"menjelaskan teori dari data vektor, buka file contoh yang berisi data vektor " -"di QGIS dan masukkan data titik, garis dan poligon." - -# 6789646294784b5592493e807a9bfbb9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:630 -msgid "" -"Demonstrate how to open vector data in QGIS. Guide the participants to open " -"a sample file that contains vector data on each computer." -msgstr "" -"Demonstrasikan bagaimana membuka data vektor di QGIS. Bimbinglah pesert " -"untuk membuka sebuah file contoh yang berisi data vektor di masing-masing " -"komputer." - -# 9152edd9a3094b40acddb17d6487147a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:634 -msgid "" -"Demonstrate how we can identify the attributes in the vector data and then " -"let participants explore the contents of data attribute vector points, lines " -"and polygon for approximately 5-10 minutes." -msgstr "" -"Demonstarsikan bagaimana kita dapat mengidentifikasi atribut dalam data " -"vektor kemudian biarkan peserta mengeksplorasi isi atribut data vektor " -"titik, garis dan poligon selama kurang lebih 5-10 menit." - -# 7c65b3d325894b808975f428a0e55f99 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:638 -msgid "" -"Explain how vector data works in QGIS. Show how to change the symbols into " -"symbols or shapes we want." -msgstr "" -"Kemudian menjelaskan bagaimana data vektor bekerja di QGIS. Menunjukkan " -"bagaimana mengubah simbolnya menjadi simbol-simbol atau bentuk yang " -"diinginkan." - -# 9fe3f1194b904500800f0b27a5503fed -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:641 -msgid "" -"Show that the appearance of symbols may differ at different magnification " -"levels. Explain that it is important because we do not want to see messy map " -"symbols when too many objects appear, especially if we have a map with a " -"small scale." -msgstr "" -"Menunjukkan bahwa penampakan simbol mungkin berbeda pada tingkat perbesaran " -"yang berbeda. Menjelaskan bahwa hal ini penting karena kita tidak ingin " -"melihat simbol peta yang tidak teratur ketika begitu banyak objek yang " -"muncul, khususnya jika kita memiliki peta dengan skala kecil." - -# f688b8b61fdd4bd8a6dce0c8e29a08a4 -# 5f14b369ff614496a77cc2d5437e59a5 -# ed21561b33724edf975625df442663d0 -# 3bae3bf883c24361861761ba32e8b6b7 -# 43cc286d60004bd99cbff180e173047b -# 746d177dcfb2434e9555c84a408e201f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:624 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:726 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:735 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:785 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:867 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:890 -msgid "Participant's Computer" -msgstr "Komputer peserta" - -# e5c5afe3ea4845fe8d544024602f3a00 -# cee69ad336f64106848ad60142642a18 -# 1a2b9fa994234d4a9e4b34cf56cce645 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:627 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:729 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:788 -msgid "File containing vector data" -msgstr "File yang berisi data vektor" - -# 112a29eeece540fc915fa9fe7395dda9 -# 9ae04f37a9144b3baec30dc25b751756 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:631 -msgid "Module 6" -msgstr "Modul 6" - -# c468a33c35934a12b234e369e2373814 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:648 -msgid "**Test 40'**" -msgstr "**Uji kemampuan 40’**" - -# a366ef7d2f104c8e89ea5f8f7553007c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:650 -msgid "" -"Allow about 30 minutes for the participants so that they can practice " -"independently in setting symbology of vector data. Ask participants to " -"evaluate their partners' work." -msgstr "" -"Berikan waktu sekitar 30 menit untuk peserta sehingga mereka dapat " -"mempraktikkan sendiri dalam menentukan simbol data vektor. Mintalah peserta " -"untuk mengevaluasi pekerjaan rekannya." - -# 3a6c1a065c57487e821c00d738369f5a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:664 -msgid "" -"**When adding vector data, why doesn't my vector data show up in the Open " -"dialog?**" -msgstr "" -"**Ketika menambahkan data vektor, mengapa data vektor saya tidak terlihat di " -"dialog Open?**" - -# df2a9d5436464f318daed6f2f7871644 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:666 -msgid "" -"Sometimes participants find it difficult to distinguish between the buttons " -"to open vector data and raster data (because they are next to one another). " -"Make sure participants click the correct button." -msgstr "" -"Terkadang peserta mengalami kesulitan membedakan antara tombol untuk membuka " -"data vektor dan data raster (karena kedua tombol tersebut bersebelahan). " -"Pastikan peserta mengklik tombol yang benar." - -# e192d41389a34e4bafe8ce79d24f277f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:670 -msgid "" -"**When adding vector data, why is there some data that does not appear on** " -"**the QGIS display?**" -msgstr "" -"**Ketika menambahkan data vektor, mengapa ada beberapa data yang tidak " -"muncul pada** **tampilan QGIS?**" - -# 2c51728395b0439eba099d5d6643981e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:673 -msgid "" -"Check the order of the data layers in the Layers panel. Polygons should be " -"at the bottom, followed by the lines, then the points at the top. Often one " -"layer may overlap another layer." -msgstr "" -"Periksa urutan layer data di panel Daftar Layer. Poligon harus di bagian " -"bawah, diikuti oleh garis, kemudian titik di bagian atas. Sering kali satu " -"layer mungkin overlap dengan layer yang lain." - -# 778fb495054b4960a8d3f6c6943bc437 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:677 -msgid "" -"**Sometimes when using the Identify tool, the attribute window does not " -"appear when we click on an object. Why?**" -msgstr "" -"**Terkadang ketika menggunakan *tool* Identifikasi, jendela atribut tidak " -"muncul ketika kita mengklik pada sebuah objek. Kenapa?**" - -# 073d963560b14ee4b9e073b80ba7a351 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:680 -msgid "" -"Check that the vector data layer is selected in the Layers panel before " -"clicking on objects to identify." -msgstr "" -"Periksalah bahwa layer data vektor terpilih pada panel daftar layer sebelum " -"mengklik pada objek yang ingin diidentifikasi." - -# 8d0dd07a84d043de91886ddeac9a65bf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:685 -msgid "Session 7" -msgstr "Sesi 7" - -# 516525b7452943ad94ae7ddaf3f8a132 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:696 -msgid "" -"Explore attribute data of an object attributes and understand the uses of " -"different types of data" -msgstr "" -"Menelusuri data atribut dari suatu objek dan memahami penggunaan berbagai " -"tipe data yang berbeda" - -# b417c8a75ff743f2b5cc26e7765df572 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:698 -msgid "Add labels to vector layers" -msgstr "Menambahkan label ke *layer* vektor" - -# 5fef0bca1e9a4400bd894e20f99f8d12 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:699 -msgid "Symbolise vector data using categories" -msgstr "Melakukan simbolisasi data vektor dengan kategori" - -# feffc95f2c3c49099933d8197961c5c9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:703 -msgid "Add labels to vector features" -msgstr "Menambah label pada fitur vektor" - -# b2aaf49b92ea49f6b9bc0efb55489018 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:704 -msgid "Symbolise data using categories" -msgstr "Simbolisasi data menggunakan kategori" - -# b01c13b91e5a4751b2220d8fe8930868 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:708 -msgid "**Labels and Classification**" -msgstr "**Label dan Klasifikasi**" - -# 760d456a529f4ff7b2c8d003dc23e456 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:710 -msgid "Data attributes" -msgstr "Atribut Data" - -# e20937c283de4ab6adcca1c96af0faf6 -# e0d7fcab7a9e4b3f9c9c65e1fbc43a6b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:711 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:770 -msgid "Tool label" -msgstr "Tool label" - -# c99c874f8e3248b6b2ccf426285b9855 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:712 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:771 -msgid "Classification" -msgstr "Klasifikasi" - -# 0d47cb9754754352b37eff266451b006 -# 189fed7ce7e24d1d96899f9480b188c3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:724 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:783 -msgid "**Demo and Practice 100'**" -msgstr "**Demonstrasi dan Praktik 100’**" - -# 691f282c793d448485fa526a7068178f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:726 -msgid "" -"Demonstrate how to add labels to vector layers. Participants should follow " -"along." -msgstr "" -"Demonstrasi bagaimana menambahkan label ke layer vektor. Peserta harus " -"mengikuti proses ini." - -# b414bcc3c1c0453fb1ab62dec252628b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:728 -msgid "Demonstrate how to symbolise features by categorising them." -msgstr "" -"Demonstrasi bagaimana cara simbolisasi fitur dengan memberi kategori mereka." - -# 2ff3258b5c2a4d76996db1209859754c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:733 -msgid "Module 7" -msgstr "Modul 7" - -# ea8d85bb2f4c4fbf8dde174f2c2d03bf -# 0fe98106ca8b47159c680a2ac0929582 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:735 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:804 -msgid "**Closing 30'**" -msgstr "**Penutup 30’**" - -# 119e14ce1b314c1f887f3412d4142219 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:737 -msgid "" -"Give a conclusion of this session. Ask participants to ask questions about " -"the material provided, so that the discussion can go well." -msgstr "" -"Berikan kesimpulan dari sesi ini. Mintalah peserta untuk bertanya mengenai " -"materi yang diberikan, sehingga diskusi dapat berjalan lancar." - -# a23b894ec7fd4ffbb7981c276047c136 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:738 -msgid "Projector Microphone Module 7" -msgstr "Proyektor *Microphone* Modul 7" - -# 4f05077825cb4b1a86b5f368f184ee13 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:745 -msgid "Session 8" -msgstr "Sesi 8" - -# 10680a362c4040d9b275f5845d483fee -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:756 -msgid "Create raster data" -msgstr "Membuat data raster" - -# cfbd36e064584bec9c450d83ebf41d32 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:757 -msgid "Change raster symbology" -msgstr "Mengubah simbologi raster" - -# 963bb68ae5e24ec4aedb7594ca2cad4e -# 7441f8bd7f02490c8bf3ca26de6fb238 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:758 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:763 -msgid "Perform terrain analysis" -msgstr "Melakukan analisis medan" - -# 9a17d29b36164218a898e5cca25101cf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:762 -msgid "Understand how to change raster symbology" -msgstr "Memahami bagaimana mengubah simbologi raster" - -# a4bf685201654dc485162c3a14180f29 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:767 -msgid "**Working with Raster Data**" -msgstr "**Bekerja dengan Data Raster**" - -# 05e6f74c38064435bc6b8fe2a128c4d5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:769 -msgid "How to load raster data" -msgstr "Bagaimana untuk memuat data raster" - -# 32a16285e90043a49c86ec5efb548c20 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:785 -msgid "" -"Use the raster example file that is given to participants. Reiterate what is " -"the difference between raster data and vector data." -msgstr "" -"Menggunakan file contoh raster yang diberikan ke peserta. Mengulas kembali " -"perbedaan antara data raster dan data vektor." - -# 3ef9fd38f0ae440c88cc88cbf261fa7c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:788 -msgid "" -"Show how to open and identify raster data in QGIS. Remember when showing " -"raster and vector data at the same time the vector layers should be above " -"the raster data to be visible." -msgstr "" -"Menunjukkan bagaimana membuka dan mengidentifikasi data raster di QGIS. " -"Ingatkan kembali ketika memunculkan data raster dan vektor pada waktu yang " -"bersamaan, layer vektor harus di atas data raster agar terlihat." - -# d31af584b55e4c72b06aa379a8c970da -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:792 -msgid "" -"Change the raster symbology to make it more easily understood. Make the " -"symbology as in the module text. If you want to change the symbology of " -"raster data it will be better if the raster data has been given symbology " -"before." -msgstr "" -"Ubah simbologi raster agar lebih mudah dipahami. Membuat simbologi seperti " -"pada teks modul. Jika Anda ingin mengubah simbologi data raster akan lebih " -"baik jika data raster tersebut sudah diberi simbologi sebelumnya." - -# 2d4c8a0c8c084d17872e48604cd70246 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:798 -msgid "Do terrain analysis and create a hillshade." -msgstr "Melakukan analisis *terrain* dan membuat *hillshade*." - -# 87d7ff5c8f0f4766908cb936627f085c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:799 -msgid "" -"Explain each step, especially if the participants have never worked with " -"raster data. Ask the participants to pay attention and practice by themself." -msgstr "" -"Menjelaskan setiap langkah, terutama jika peserta tidak pernah bekerja " -"dengan data raster. Mintalah peserta untuk memperhatikan dan mempraktikkan " -"langsung." - -# 65c030c3693b4591bf29a5a22bc57adf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:792 -msgid "Module 8" -msgstr "Modul 8" - -# d3be8b70de6f4dfb95872a607fba0032 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:806 -msgid "" -"Give a conclusion of the session working with raster data. Discuss the " -"outcomes with participants." -msgstr "" -"Berikan kesimpulan sesi bekerja dengan data raster. Diskusi hasilnya dengan " -"peserta." - -# 9019d043ef6241b199ff4482cd84919b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:813 -msgid "**How do we get raster data?**" -msgstr "**Bagaimana mendapatkan data raster?**" - -# f39dcfde00dc4ca48a1c2d38868570bd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:815 -msgid "" -"Raster data can be obtained from a variety of sources. SRTM can be " -"downloaded at http://dwtkns.com/srtm/. Raster data associated with " -"earthquakes can be obtained from http://earthquake.usgs.gov/earthquakes/" -"shakemap/list.php." -msgstr "" -"Data raster dapat diperoleh dari berbagai sumber. SRTM dapat didownload di " -"http://dwtkns.com/srtm/. Data raster diasosiasikan dengan gempa bumi yang " -"dapat diperoleh dari http://earthquake.usgs.gov/earthquakes/shakemap/list." -"php." - -# 079cdcf8265643c8a32a762a1cf26862 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:823 -msgid "Session 9" -msgstr "Sesi 9" - -# 79cb1ecc49b746b1807ec3ad9875246d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:834 -msgid "Add a raster layer for digitising" -msgstr "Menambah layer raster untuk dijitasi " - -# ec156f2caf8448f5b425a17c1a47f7fc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:835 -msgid "Create new vector features (polygon, lines and points)" -msgstr "Membuat fitur vektor baru (poligon, garis, dan titik)" - -# 5e9e32b9fe4945f3842746a24ff8db08 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:836 -msgid "" -"Digitise new vector layers by tracing a raster layer, considering topology" -msgstr "" -"Digitalisasi layer vektor baru dengan mengacu pada layer raster dan " -"mempertimbangkan topologi" - -# eaf3ffefa3ff4a65aa2062728cb02618 -# da565175ca764770b7d722165d96ce59 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:838 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:844 -msgid "Georeference an image" -msgstr "Melakukan Georeferensi" - -# f09ac6619f2740248f5978dc5e559f26 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:842 -msgid "Add raster layers" -msgstr "Menambahkan layer raster" - -# f1b78f331aee4341ae0642fac2aedcb9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:843 -msgid "Trace raster layers" -msgstr "Mendijitasi layer raster" - -# dc2e78a6972b47c6b4b74a45eecb83d4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:848 -msgid "**Creating Vector Layers**" -msgstr "**Membuat Layer Vektor**" - -# 847a1a31484c4619ac0877ed4a96b516 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:850 -msgid "Adding raster layer" -msgstr "Penambahan layer raster" - -# 203fa6f63700424ebfa394c8860f6415 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:851 -msgid "Creating new vector feature" -msgstr "Pembuatan fitur vektor baru" - -# a4a85554a7bc47ac9aa9c38a7a7e2594 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:852 -msgid "Digitising new vector layer" -msgstr "Digitasi layer vektor baru" - -# 248fe8afa58a42b5bcd3ff000dce8e53 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:853 -msgid "Georeference" -msgstr "Georeferensi" - -# 6ec0f87f41e3481bb1ec04f8824e97b3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:865 -msgid "**Creating New Vector Data Practice 80'**" -msgstr "**Praktik Membuat Data Vektor Baru 80’**" - -# 2a679cc434024dd7b33aa72b392fc8dc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:867 -msgid "" -"Explain that QGIS can also be used to digitise data. However, explain that " -"the weakness of digitising through QGIS is that data is more difficult to " -"share, unlike OSM." -msgstr "" -"Menjelaskan bahwa QGIS juga dapat digunakan untuk mendijitasi data. Namun, " -"menjelaskan kekurangan dijitasi menggunakan QGIS bahwa data tersebut lebih " -"sulit untuk dibagi, tidak seperti OSM." - -# ed77fff6a0c4474cb7b35ae43a84b1ba -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:871 -msgid "" -"Explain also that things that can not be digitised in OSM can be digitised " -"in QGIS, such as flood- prone areas or KRB areas. Vector data like this will " -"be used for analysis in InaSAFE." -msgstr "" -"Jelaskan juga bahwa hal-hal yang tidak dapat didijitasi di OSM dapat " -"didijitasi di QGIS, seperti wilayah rawan banjir atau wilayah KRB. Data " -"vektor seperti ini akan digunakan untuk analisis di InaSAFE." - -# a7db0b2ed7534c20b777dd3556654829 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:875 -msgid "" -"Show how to digitise and the differences between digitising in QGIS and " -"JOSM. Use the raster GeoTIFF file that has previously been given to the " -"participants to do the digitisation process with QGIS." -msgstr "" -"Tunjukan bagaimana cara mendijitasi dan bedanya dijitasi di QGIS dan JOSM. " -"Menggunakan file GeoTIFF raster yang sebelumnya diberikan ke peserta untuk " -"melakukan proses dijitasi dengan QGIS." - -# c796de1da7f44fe1a5d42eb5809c4110 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:879 -msgid "" -"After that, participants may be asked whether they can digitise a map with " -"image formats such as JPEG or PNG, for example in disaster prone areas map " -"from BNPB. If no one asks, explain that if participants want to digitise " -"from JPEG or PNG maps, the map coordinates should be determined first " -"through the georeferencing process." -msgstr "" -"Setelah itu, peserta dapat ditanya apakah mereka dapat mendijitasi sebuah " -"peta dengan format gambar seperti JPEG atau PNG, contohnya pada wilayah " -"rawan bencana dari BNPB. Jika tidak ada yang bertanya, jelaskanlah jika " -"peserta ingin mendijitasi dari peta JPEG atau PNG, koordinat peta harus " -"ditentukan terlebih dahulu melalui proses georeferensi." - -# 6a917b8a28174083b870a08f4d40b7aa -# c4f99bb5481241d0bc1c4a0b3bee50bf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:870 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:897 -msgid "Module 9" -msgstr "Modul 9" - -# 8802f3020c1f4f1e90299ad5302986cc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:888 -msgid "**Georeference Practice 80'**" -msgstr "**Praktik Georeferensi 80’**" - -# 8dab6401770e446d9570baa60327b6cf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:890 -msgid "" -"Give an example of a JPEG formatted map to participants and guide them to do " -"georeferencing." -msgstr "" -"Berikan sebuah contoh peta berformat JPEG ke peserta dan pandu mereka untuk " -"melakukan georeferensi." - -# b5dd630fcc574c46a946acc50638a61c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:893 -msgid "" -"It is important to note that before digitising over another map, make sure " -"the participants know the data source and the map licence! Do not let the " -"participants digitise from commercial maps without permission in the future!" -msgstr "" -"Penting untuk diperhatikan bahwa sebelum dijitasi di atas peta, pastikan " -"peserta mengetahui sumber data dan lisensi peta! Jangan biarkan peserta " -"mendijitasi dari peta komersial tanpa izin pembuatnya!" - -# af9141c575ab46a3a9ac1f4cca3b727b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:893 -msgid "JPEG formatted maps" -msgstr "Peta berformat JPEG" - -# 741f6b4f4b384dbca344d9c28f67c553 -# d9ac2966c43142c585a678baf35fc8eb -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:900 -msgid "**Closing 15'**" -msgstr "**Penutup 15’**" - -# b043eaba0eea44eca0534ba02df67c2d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:902 -msgid "" -"Guide the participants to reflect on what they have learned in this session " -"and hold a Q & A session / discussions before the giving the final " -"conclusion for this session." -msgstr "" -"Bimbing peserta untuk merefleksikan apa yang telah dipelajari pada sesi ini " -"dan lakukan sesi tanya jawab / diskusi sebelum memberikan kesimpulan pada " -"sesi ini." - -# 732175eebd3f47a6b05d1c3f28753941 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:910 -msgid "Session 10" -msgstr "Sesi 10" - -# a2a92c773009412ba3c38e44660a96c5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:913 -msgid "Time : 210 minutes" -msgstr "Waktu : 210 menit" - -# 8ed865d977c049f29163607d9c989289 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:921 -msgid "Understand the GIS process" -msgstr "Memahami proses SIG" - -# fc5f24e75aa74a9a8d92bd98177e54f1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:922 -msgid "Identify addressable problems" -msgstr "Mengidentifikasi permasalahan" - -# b3c18d6f20ce434caab1b8cbd99a9e6d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:923 -msgid "Understand data needs" -msgstr "Memahami kebutuhan data" - -# 750c5e2efa2a4b75bfe9dd8e89867c92 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:924 -msgid "Start a QGIS project" -msgstr "Memulai sebuah proyek QGIS baru" - -# 0ae84919a447427fa059d0a425fdbc2f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:925 -msgid "Analyse problems" -msgstr "Menganalisis masalah" - -# 9d3c1846ee5745cd8f1630179b81b215 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:926 -msgid "Identify hazard zones" -msgstr "Mengidentifikasi zona ancaman" - -# 94145b43d25244dd8f3133650c6e135b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:927 -msgid "Look for important roads" -msgstr "Mencari jalan penting" - -# cca2d243271f460183c312a3de2d5537 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:928 -msgid "Look for medical facilities" -msgstr "Mencari fasilitas kesehatan" - -# 127b31e9d2a54f13bd2f1b0107b57c22 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:929 -msgid "Buffer roads" -msgstr "Melakukan *buffer* jalan" - -# 27c44382fd254ebe8ded3b284a0af442 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:930 -msgid "Buffer medical facilities" -msgstr "Melakukan *buffer* fasilitas kesehatan" - -# f74ee916f829499cb7587a1a1377af8f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:931 -msgid "Analyse overlapped areas" -msgstr "Menganalisis wilayah yang overlap" - -# e49f46c2cd9d4590a199686fffa34df2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:932 -msgid "Choose features by landuse type" -msgstr "Pilih fitur menurut jenis penggunaan lahan" - -# f975c591dcdf467aad08ac76c29445c0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:936 -msgid "Conduct GIS analysis of a spatial problem" -msgstr "Melakukan analisis SIG dari masalah spasial" - -# 79b9997221e64e5fbd42391b6c3ea51a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:940 -msgid "**Vector Analysis for Problem Solving**" -msgstr "**Analisis Vektor untuk Pemecahan Masalah**" - -# 7d262a49df1646a59285b5726fb9b0f1 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:942 -msgid "GIS Processes" -msgstr "Proses SIG" - -# c64ebe76e83f4e37ad649222a0389769 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:943 -msgid "Problems" -msgstr "Permasalahan" - -# bbc3b7011380489db822b4b9265dfa6f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:944 -msgid "Data" -msgstr "Data" - -# 739386d69ef64839af28db7c43a6b1db -# f32512b3fc804635a7e64781e4664dd9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:945 -msgid "Starting a project" -msgstr "Memulai Proyek" - -# d009bfffadea4ca1b82c0941f2445b3d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:946 -msgid "Analysing problems: farms and moors" -msgstr "Analisis Masalah : Kebun dan Tegalan" - -# 151bcba5757a4f17b93387dcbdb0618d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:947 -msgid "Hazard zone" -msgstr "Zona Ancaman" - -# cf319a6e88554be99624970704430b06 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:948 -msgid "Searching for important roads" -msgstr "Mencari Jalan Penting" - -# 255c0c61b78949838c711a0226479a51 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:949 -msgid "Searching for health facilities" -msgstr "Mencari Fasilitas Kesehatan" - -# c0d9b62925a54ef2ac0be5e939924921 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:950 -msgid "Road Buffer" -msgstr "Buffer Jalan" - -# fdcf6ecc17234196b6c57f24b92d8fb5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:951 -msgid "Health Facilities Buffer" -msgstr "Buffer Fasilitas Kesehatan" - -# 91230b4a250e469da8f3668eec1c732f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:952 -msgid "Overlapped area" -msgstr "Area yang tumpah tindih" - -# 9a117768fe4c49479197d16a6e38ae43 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:953 -msgid "Choosing farms and moors" -msgstr "Memilih Kebun dan Tegalan" - -# ed168a3dafff4d60a24da7a21a9d12eb -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:954 -msgid "Choosing land area with right size" -msgstr "Memilih Area Lahan dengan Ukuran Tepat" - -# 132936174a294b819111619b9cbd7da8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:966 -msgid "**Review 10'**" -msgstr "**Review Materi 10’**" - -# 9d78ce6241d64a84944d9cf57d479c07 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:968 -msgid "" -"In this session you will do a review regarding the materials from the " -"previous day. You can ask a few questions to the participants about some " -"subjects or you can also ask the participants about which subjects that were " -"not clear yet for them." -msgstr "" -"Pada sesi ini Anda akan melakukan tinjauan mengenai materi dari hari " -"sebelumnya. Anda dapat bertanya kepada peserta mengenai beberapa subjek atau " -"Anda juga dapat menanyakan ke peserta mengenai subjek yang jelas untuk " -"mereka." - -# ee6d39e8ebe04852b113685bae83830f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:966 -msgid "*Previous* *materials*" -msgstr "*Bahan materi* *sebelumnya*" - -# d4c15fad1052476e94b7bb2fddd8d37f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:974 -msgid "**Demonstration and Practice 150'**" -msgstr "**Demonstrasi dan Praktik 150’**" - -# de8813bd415f49a5b59d1f1b02fefff8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:976 -msgid "" -"This session should start with reviewing some types of GIS analysis that are " -"provided in QGIS. Ask the participants to finish one analysis, for example " -"buffer analysis, or any other analysis." -msgstr "" -"Sesi ini diawali dengan meninjau beberapa jenis analisis SIG yang tersedia " -"di QGIS. Mintalah peserta untuk menyelesaikan satu analisis, contohnya " -"analisis *buffer*, atau analisis lainnya." - -# f1aace6055e64ef7aa6db682319ca444 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:980 -msgid "" -"The session continues with a simulation of a natural hazard happening in an " -"area where they need IDP camps, areas affected, and the requirements to find " -"a safe place." -msgstr "" -"Sesi ini dilanjutkan dengan simulasi seandainya terjadi bencana di suatu " -"wilayah dimana mereka membutuhkan tempat pengungsian, wilayah terkena " -"dampak, dan syarat-syarat untuk menentukan tempat yang aman." - -# e51c68a36e74407d8e096f7ec49c61c5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:984 -msgid "" -"Explain that to solve the problems, they can use vector analysis in QGIS. " -"The first thing to do is to practise how to determine the evacuation site, " -"main roads, and hospital location. To determine them you can use the query " -"builder feature in module 10. After that you can determine the distance from " -"schools to roads and the range of hospitals with road buffer to determine " -"the right location for IDP camp." -msgstr "" -"Berikan informasi kepada peserta bahwa untuk memecahkan masalah ini dapat " -"menggunakan analisis vektor pada QGIS. Hal yang pertama kali Anda lakukan " -"adalah praktikum terkait dengan menentukan lokasi pengungsian, menentukan " -"jalan utama dan menentukan lokasi Rumah Sakit. Untuk menentukannya Anda bisa " -"menggunakan fitur query builder pada modul 10. Setelah itu Anda dapat " -"menentukan jarak dari sekolah ke jalan dan jangkauan rumah sakit dengan " -"*buffer* untuk menentukan lokasi pengungsian sementara." - -# b0081262b7c1485795131adba6a28f62 -# e82d1ecae4aa4bc7b6cd6ba5937ace54 -# 6b761c1eb67346a08b384c9ab17a5e20 -# 8bbd790745074820b01f1158f4bd0100 -# 9f3df3c4a94144d5aafb93e598e92218 -# 1cb19a7d419b49c19e20634c7f1ac48c -# 36cf110d7d4040c693ec577f29480e3d -# 307cc5d1d1f441fa96b78dbe53048662 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:974 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1076 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1191 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1205 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1215 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1222 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1229 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1289 -msgid "Demonstration" -msgstr "Demonstrasi" - -# bcf1f45a23ee49568b2c76cb9cf577d0 -# 662642abee08460a88087c7c653e53c5 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:979 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1000 -msgid "Module 10" -msgstr "Modul 10" - -# 1b662161c0ce40cca280f1d249105b17 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:995 -msgid "**Vector Analysis Practice 25'**" -msgstr "**Latihan Analisis Vektor 25’**" - -# 44b9135a5ca046e18a29863fc034d19e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:997 -msgid "" -"This session is almost the same as the previous session. In this session " -"you'll explain more about vector analysis." -msgstr "" -"Sesi ini sama dengan sesi sebelumnya. Pada sesi ini Anda akan menjelaskan " -"lebih tentang analisis vektor." - -# 11d1c71735c2488abba8640b8cd35c28 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1001 -msgid "" -"Ask the participants to practice along with you. If any participants have " -"already determined the evacuation sites, you can ask them to do another " -"analysis such as practising how to determine which location is suitable for " -"farming, etc." -msgstr "" -"Mintalah peserta untuk berlatih bersama dengan Anda. Apabila peserta sudah " -"melakukan tahap menentukan lokasi pengungsian, Anda bisa melakukan praktik " -"lain seperti menentukan lokasi yang sesuai untuk beberapa hal misalnya untuk " -"mengetahui lokasi kebun dan tegalan yang sesuai." - -# 0c59bac3f843446191ae7a5cf339b050 -# aafe80c334fe480e9560ff6c461df5da -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1008 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1115 -msgid "**Closing 20'**" -msgstr "**Penutup 20’**" - -# 7ec72dc536634fddbfc76ce5a0fd4b3e -# 64b0cb9295e74014bec35d04520316da -# f7e53e9af03c4dd288f7c3c5f3b3a936 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1010 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1117 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1248 -msgid "Q & A and discussion" -msgstr "Tanya jawab dan diskusi" - -# 38cb44cbe9ee46c5aec0fbf9f9a83a9c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1016 -msgid "" -"**Why does my buffer result look bigger than the one shown in the example?**" -msgstr "" -"**Mengapa hasil buffer yang saya hasilkan nampak sangat besar dibandingkan " -"yang ada di contoh?**" - -# 5c6cd4327cfb4c74a59271b0e9e998cf -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1018 -msgid "" -"This happens because of the projection. It just looks different because of " -"the projection, but it is the same size in reality." -msgstr "" -"Ini terjadi karena proyeksinya. Hal ini terlihat berbeda karena proyeksi, " -"tetapi itu adalah ukuran yang sama dalam kenyataannya." - -# 700eefbc90b4426d82f82548f0a91dbb -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1022 -msgid "**Why doesn't the query builder result show up?**" -msgstr "**Mengapa hasil query builder tidak tampak?**" - -# 76f7ab0a076644ca9b67a55b0d3f4d68 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1024 -msgid "" -"This is usually because of incorrect input into the query builder. Watch " -"carefully what you input into the query builder." -msgstr "" -"Hal ini biasanya terjadi karena kesalahan input dalam query builder. " -"Perhatikan dengan seksama setiap input yang dimasukkan ke dalam query " -"builder." - -# 1f379316adc749959f3d4efcf669dab0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1029 -msgid "Session 11" -msgstr "Sesi 11" - -# 7c793d8e4b8147d2b9756eba99962d50 -# 66831e8037bd463ca498c95653c0aef0 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1032 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1136 -msgid "Time : 4 hours 30 minutes" -msgstr "Waktu : 4 jam 30 menit" - -# 944acd833752446091910131e025ec18 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1040 -msgid "Arrange map layout" -msgstr "Merancang layout peta " - -# aae0260c4a7e4d8aae50e135b6e0a078 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1041 -msgid "Add a new map" -msgstr "Menambahkan sebuah peta baru" - -# 03506ac1749f45fdbe1583e76ae19bfe -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1042 -msgid "Add title to a map" -msgstr "Menambahkan judul pada sebuah peta " - -# cfad1ac85b9a4297b234fcac57ba4021 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1043 -msgid "Add graphic and numeric scales" -msgstr "Menambahkan skala grafik dan numerik " - -# b43e270c9ceb44959150e6d4fb78619b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1044 -msgid "Add grid to a map" -msgstr "Menambahkan grid pada sebuah peta " - -# 77cc42c3f99442cb85289d41560e72b2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1045 -msgid "Add an inset" -msgstr "Menambahkan sebuah inset" - -# 9b9a6c2f8c9046fc8f5d49a918b56c11 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1046 -msgid "Customise the content of the legend" -msgstr "Menyesuaikan isi legenda" - -# 40ea63f371754e7fb276e413c0e588e9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1047 -msgid "Export a map to different formats (pdf, jpeg, svg)" -msgstr "" -"Meng-eksport sebuah peta ke dalam format yang berbeda (pdf, jpeg, jpeg, svg)" - -# 6a6d68c09584472ea20156b35808b03c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1051 -msgid "Maps that are well laid out and ready to print." -msgstr "Peta yang sudah di lay out dan siap untuk dicetak." - -# b89394d0a9644d2bb2f9591dc9ef8c1f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1055 -msgid "**Using Map Composer**" -msgstr "**Menggunakan Map Composer**" - -# 8bb668789a02437fa3ca174e2927c34d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1057 -msgid "Map Composer" -msgstr "Membuat Peta" - -# efc92b3e080c4a01b2e2f28a32684090 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1058 -msgid "Adding new maps" -msgstr "Menambahkan peta baru" - -# 353acf50f9834bfca7ce19b8ee252a3e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1059 -msgid "Adding a title to the map" -msgstr "Menambahkan judul peta" - -# 7a68d2fb62e74dc895a0b3972026022c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1060 -msgid "Adding scale" -msgstr "Menambahkan Skala" - -# 7730ae304792497387eae5d6e50c5461 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1061 -msgid "Adding grids" -msgstr "Menambahkan Grid" - -# 0aadf0879f0747fcb6e4696850918627 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1062 -msgid "Adding inset" -msgstr "Menambahkan inset" - -# 637768082b2644c2a859eb44f04ba222 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1063 -msgid "Adding legend" -msgstr "Menambahkan Legenda" - -# 1baca3e90f2049c7930769e12f437bbc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1064 -msgid "Printing the map" -msgstr "Mencetak Peta" - -# 1988e0fd92b844988ba2ad96f7fe195e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1076 -msgid "**Making a Map Layout 250'**" -msgstr "**Membuat Layout Peta 250'**" - -# 64ec19dfcad24f66a178fca24d3eb338 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1078 -msgid "" -"In this session you will be explain how to make maps that are ready to be " -"printed using QGIS. First, you need to explain that it is important to " -"change the projection system into mercator projection system (Universal " -"Transverse Mercator/UTM) and ask participants to change all of the data " -"projections into the same projection system." -msgstr "" -"Pada sesi ini Anda akan menjelaskan bagaimana pembuatan peta yang siap untuk " -"dicetak menggunakan QGIS. Pertama, Anda harus menjelaskan tentang bagaimana " -"pentingnya mengubah sistem proyeksi peta ke dalam sistem proyeksi merkator " -"(Universal Transverse Mercator/UTM) dan meminta kepada para peserta agar " -"semua data yang akan digunakan harus ke dalam sistem proyeksi yang sama. " - -# 16385c2af27c419ca0cacdc5d1a2b946 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1085 -msgid "" -"Ask what are the basic elements that should be put into a map and show some " -"examples of good maps and bad maps. You should emphasise the basic elements " -"of maps to the participants." -msgstr "" -"Tanyalah elemen-elemen dasar yang harus dimasukkan ke dalam peta dan berikan " -"contoh peta yang benar dan contoh peta yang salah. Pemahaman peserta akan " -"elemen-elemen dasar pada peta perlu ditekankan oleh Anda. " - -# 82c7e671e06c48bb9d8c6d9cd595e55c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1089 -msgid "" -"Explain the interface of the Map Composer in QGIS. Explain the functions of " -"the toolbars and then practice inputting the data into the composer page, " -"and adjust the scale so all of the data that needs to be shown can be seen. " -"Then add a map title." -msgstr "" -"Setelah itu Anda menjelaskan tentang tampilan awal dari Map Composer di " -"QGIS. Jelaskan mengenai fungsi toolbar-toolbar dan kemudian lakukan " -"praktikum untuk menampilkan data ke dalam halaman composer dan mengatur " -"skala agar semua data yang ingin ditampilkan dapat terlihat. Bagian " -"berikutnya adalah menambahkan judul peta. " - -# 48d3250362a845ce846e745d5f19c6b8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1095 -msgid "" -"Add the compass rose and scale bar into the map. Explain that there are two " -"types of scale, numerical and graphical. The numeric scale uses numbers to " -"symbolise real distances. The graphical scale uses a scale bar to compare " -"distance." -msgstr "" -"Langkah berikutnya adalah menambahkan arah mata angin dan skala batang pada " -"peta. Berikan pengertian kepada peserta bahwa jenis skala dibagi kedalam 2 " -"macam yaitu skala numerik dan skala garis. Skala numerik atau angka adalah " -"skala peta yang menggunakan angka atau bilangan pecahan sebagai pembanding " -"jarak, dan skala grafik adalah jenis skala peta yang menggunakan bentuk ruas " -"garis bilangan sebagai pembanding jarak. " - -# bbb9ffef42f94b5bbf3f243d6a0f1cf4 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1101 -msgid "" -"The next elements that need to be added to the map are a legend, inset and " -"grid. Explain why those elements are important. The legend needs to be shown " -"because it help the map user understand the symbols contained in the map. " -"Inset needs to be shown to show the location of the map from the smaller " -"scale (for example 1:500.000 or 1:5000.000). A grid makes it easier for us " -"to determine the location through coordinates." -msgstr "" -"Unsur berikutnya yang perlu ditambahkan pada peta adalah legenda, inset, dan " -"grid. Jelaskan mengapa elemen-elemen tersebut penting. Legenda perlu " -"ditampilkan agar membantu orang lain yang tidak paham mengenai simbol-simbol " -"yang kita buat. Sementara itu, inset memudahkan kita mengetahui lokasi peta " -"tersebut jika dilihat dalam skala kecil (misal 1:500.000 atau 1:5000.000). " -"Grid memudahkan kita mengetahui lokasi peta tersebut pada permukaan bumi. " - -# 36cef9de26444632a5a72a2cbebb14e2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1110 -msgid "" -"After finishing the map, tell participants to save the print composer and " -"about the formats that they can use in the print composer, such as .pdf, ." -"jpeg and .svg, using the export feature." -msgstr "" -"Setelah penyusunan peta selesai, beritahukan kepada peserta agar menyimpan " -"print composer tersebut jika sewaktu-waktu akan digunakan kembali dan " -"beritahu peserta mengenai format-format hasil akhir yang bisa dihasilkan " -"oleh print composer seperti .pdf, .jpeg, dan .svg dengan menggunakan fitur " -"export. " - -# c411af8c74f140c9b4deddfdeab987b6 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1081 -msgid "Module 11" -msgstr "Modul 11" - -# 95fdfcbcd4c946bd93e8f4da3b52ff9a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1123 -msgid "" -"**I put the correct numbers in the x and y intervals in the grid dialog,** " -"**but why does the grid not show up?**" -msgstr "" -"**Saya memasukkan angka yang benar pada interval x dan y dalam grid,** " -"**tetapi kenapa grid tersebut tidak muncul?**" - -# 1d1282f1a1ec4040a0f05d8336107b8e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1126 -msgid "" -"This can occur because the map may still be using geographic projection (WGS " -"84), which is in decimal degrees. To make the x and y intervals, it is " -"better to use the mercator projection system so that they intervals are in " -"metres." -msgstr "" -"Hal ini dapat terjadi karena peta tersebut mungkin masih menggunakan " -"proyeksi geografis (WGS 84), dalam satuan derajat desimal. Untuk membuat " -"interval x dan y, sebaiknya menggunakan sistem proyeksi merkator sehingga " -"interval yang digunakan dalam satuan meter." - -# 31fc6b708eea4e59b8a3382c1370f031 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1133 -msgid "Session 12" -msgstr "Sesi 12" - -# 17739fb5098b469ab0318772cb1fab37 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1144 -msgid "Understand the concept of hazard, exposure and impact data" -msgstr "Menjelaskan konsep dari Ancaman, Keterpaparan, dan Data Dampak Bencana" - -# 92802bef7dda4ee7b2cd97f0f61d6564 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1145 -msgid "Understand how to determine impact" -msgstr "Memahami bagaimana cara menentukan dampak bencana" - -# da79b1160db34a648a06e367fb90ae28 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1146 -msgid "Understand the |project_name| interface" -msgstr "Memahami tampilan antarmuka |project_name|" - -# 7deb9c72137340f99ad0475f0b71356a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1147 -msgid "Add hazard data" -msgstr "Menambahkan data ancaman" - -# d4c96f4e500149b5907e0a55ecce6e6c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1148 -msgid "Add unprocessed exposure data (vector and raster)" -msgstr "Menambahkan data keterpaparan (vektor dan raster) yang belum diproses" - -# 7df4e42211804fa398fe4af4f075e721 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1149 -msgid "Use the keywords editor" -msgstr "Menggunakan editor kata kunci" - -# cbce5b42f1834cd889c69d029fb756bd -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1150 -msgid "Analyse impact" -msgstr "Menganalisis Dampak" - -# 410cad7e9ec84949a6dd37112ec2b551 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1151 -msgid "Improve |project_name| output map" -msgstr "Memperbaiki output peta |project_name| " - -# 18329e0abaf84d99b4fc0879d5ff377f -# 007f21baca384d598353f0869adb1a0b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1152 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1158 -msgid "Save and print scenario results" -msgstr "Menyimpan dan mencetak hasil skenario" - -# 69d933906def441eb4570ee462ae64e8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1156 -msgid "Understand |project_name| and what it does" -msgstr "Memahami |project_name| dan apakah yang dilakukan" - -# 42e024f3a92c476a8441ee51a2d8095e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1157 -msgid "Assemble an |project_name| scenario" -msgstr "Mengumpulkan skenario |project_name| " - -# aaf171782ad44a75bec1e0106c919e03 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1162 -msgid "**Understanding InaSAFE**" -msgstr "**Memahami InaSAFE**" - -# cd3328b4b7364c8e8f7cdd55382f9041 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1164 -msgid "Hazard, Exposure, Impact" -msgstr "Ancaman, Paparan, Dampak" - -# 0f9e8ad2617f4334b9d3d687e3383a31 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1165 -msgid "|project_name| interface" -msgstr "Tampilan antarmuka |project_name|" - -# 78a174a91a534f22a3729a3e9b2ce85a -# 703d1dd748ee42aa8f9e8d5306a6333c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1166 -msgid "Adding hazard data" -msgstr "Menambahkan data ancaman" - -# 893a5fc0e0df416a91e5900c20743b31 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1167 -msgid "Adding exposure data" -msgstr "Menambahkan data keterpaparan" - -# 84966e3efc094d9785b681dd15e72518 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1168 -msgid "Adding keyword in metadata" -msgstr "Menambahkan kata kunci di metadata" - -# 15926096ff2e48a08f03ad9b8f72ffca -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1169 -msgid "Impact analysis" -msgstr "Analisis Dampak" - -# 79405d181fad445e99c0f51888603574 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1170 -msgid "Improving |project_name| maps output" -msgstr "Memperbaiki Output Peta |project_name|" - -# 6186b180c6704d2cb129b425bc33955d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1171 -msgid "Using print button" -msgstr "Menggunakan tombol cetak" - -# bdc7a8cbdcfa490abda526fa69111fe7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1172 -msgid "Saving your work" -msgstr "Menyimpan pekerjaan anda" - -# 580981c09ab046e8bdd32aac80e606e7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1184 -msgid "**Lecture, Q & A 30'**" -msgstr "**Ceramah dan Tanya jawab 30’**" - -# 0d5cebc2473c444abd2a1a3baa605c9a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1186 -msgid "" -"Ask the participants what is hazard, exposure and impact. Discuss and " -"explain each in more detail. Give examples for each definition and explain " -"how to get the relevant data." -msgstr "" -"Fasilitator bertanya kepada peserta mengenai apa yang dimaksud dengan " -"ancaman, keterpaparan, dan dampak. Setelah itu fasilitator berdiskusi dan " -"menjelaskan semuanya lebih detail. Berikan contoh untuk masing-masing " -"definisi tersebut dan cara mendapatkan data-data tersebut." - -# 46e24f63026a4227a06f49c0918f1bd6 -# 67c008e43b674178a6578485478ef6d9 -# 631541d7ccef495dab23b6b75fb0f4d1 -# 3365f5d39d40410c9af5edba71590cb3 -# a57f67817d3b4332a4260ca4512d9e95 -# 22f50cbd59f04d7ca6db5b2b8829db7e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1186 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1193 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1207 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1217 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1224 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1231 -msgid "Module 12" -msgstr "Modul 12" - -# 75f16bb1620e47b8811a79bd8696cffc -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1191 -msgid "**Demonstration 30'**" -msgstr "**Demonstrasi 30’**" - -# 7babc537fe0b4fb6b0e7403454da8a1d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1193 -msgid "Explain the |project_name| interface. Explain the following:" -msgstr "Penjelasan tampilan antarmuka |project_name|. Penjelasan berikut:" - -# faa316d92130495dbb519954c351ae49 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1196 -msgid "Activating |project_name| plugin toolbar" -msgstr "Mengaktifkan toolbar plugin |project_name| " - -# 6f66801a7e164fae832b19984a549deb -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1197 -msgid "How to change |project_name| panel position in QGIS interface" -msgstr "" -"Bagaimana mengubah posisi panel |project_name| pada tampilan antarmuka QGIS" - -# 10d4d6149f99498f94f2136ae241c30a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1198 -msgid "" -"The question format in the |project_name| panel The panels should be " -"explained by the facilitators so that a question can be formed: *In the " -"event of* **[hazard]** *how many* **[exposure]** *might* **[impact]** ?" -msgstr "" -"Format pertanyaan pada panel |project_name|. Panel tersebut harus dijelaskan " -"oleh fasilitator sehingga pertanyaan dapat dirangkai: *Apabila terjadi* " -"**[hazard]** *Berapa banyak* **[exposure]** *Yang mungkin* **[impact]** ?" - -# dcf1e95a3f154d5d9899d02c00774f41 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1203 -msgid "Explain the options in the |project_name| plugin toolbar." -msgstr "Menjelaskan pengaturan pilihan pada toolbar plugin |project_name|." - -# 5804917fb2ba4c3cb6b2c45a6da5f318 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1205 -msgid "**Demonstration and Practice 45'**" -msgstr "**Demonstrasi dan Praktik 45’**" - -# 64007714b8ac41b8ad25e00f519603e7 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1207 -msgid "" -"Explain how to add hazard and exposure data so that it can later be analysed " -"in InaSAFE. Ask the participants to put hazard and exposure layer into QGIS. " -"After that, ask the participants to open the attribute table for each hazard " -"or exposure layer and check if the data has the right columns for |" -"project_name| analysis. If not, add the necessary columns." -msgstr "" -"Fasilitator menjelaskan mengenai bagaimana cara menambahkan data ancaman dan " -"data keterpaparan sehingga dapat dianalisis lebih lanjut di dalam InaSAFE. " -"Mintalah peserta untuk memasukkan layer ancaman dan layer keterpaparan ke " -"dalam QGIS. Setelah itu, mintalah peserta untuk mmbuka tabel atribut untuk " -"setiap layer ancaman atau keterpaparan dan memeriksa apakah data memiliki " -"kolom yang benar untuk analisis |project_name|. Jika tidak, tambahkan kolom " -"yang diperlukan." - -# d37794e6ab6a40e98766519fe31395c9 -# 31e8382678e546e882cc780bfabfa337 -# c0c2bd368d474e118c8be15cf29af56b -# 333537508d90456e8ca3720e5a104255 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1209 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1219 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1226 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1233 -msgid "Participants' computers" -msgstr "Komputer peserta" - -# ef14d064523246bf984f6daea58094e9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1215 -msgid "**Demonstration and Practice 60'**" -msgstr "**Demonstrasi dan Praktik 60’**" - -# ec44cfec4f79452186d0204a20e5ded8 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1217 -msgid "" -"Explain how to use the keyword editor in |project_name| so that data can be " -"read and then ask the participants to follow along with what has been done. " -"Use the Advanced Editor to add the source of the data." -msgstr "" -"Menjelaskan bagaimana menggunakan editor kata kunci di |project_name| " -"sehingga data dapat terbaca dan kemudian mintalah peserta untuk mengikuti " -"proses hingga selesai. Gunakanlah Editor Lanjutan untuk menambahkan sumber " -"data." - -# ece9dd12d95946989eb74e7fbfd294ff -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1222 -msgid "**Demonstration, Lecture, and Practice 60'**" -msgstr "**Demonstrasi, Ceramah, dan Praktik 60’**" - -# b339c58a62cf4af6adec1967cedef590 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1224 -msgid "" -"Ask participants to run an analysis using |project_name|. Describe the " -"analysis results to participants, especially about how many objects or " -"buildings are impacted." -msgstr "" -"Mintalah peserta untuk menjalankan analisis menggunakan |project_name|. " -"Menjelaskan hasil analisis ke peserta, terutama mengenai berapa banyak objek " -"atau bangunan yang terdampak." - -# 4479166a34b6402697da664b8e8f954b -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1229 -msgid "**Demonstration and Practice 30'**" -msgstr "**Demonstrasi dan Praktik 30’**" - -# 9b460da6ecf74dd28aa7c3bc37ffe557 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1231 -msgid "" -"Ask participants to improve their |project_name| analysis to be more " -"informative by:" -msgstr "" -"Mintalah peserta untuk meningkatkan analisis |project_name| mereka agar " -"lebih informatif seperti:" - -# 8976807d9e6f45619bbba7721460b62f -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1234 -msgid "Activating OpenLayers plugin with Bing Sat as the background" -msgstr "Mengaktifkan plugin OpenLayers dengan Bing Sat sebagai latarnya" - -# eba8c74e70044ae3933d526af6805604 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1236 -msgid "Symbolising and labeling the data" -msgstr "Memberi simbol dan label data" - -# b0bd0c00b9394857a337a4f1ee69920d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1238 -msgid "" -"Ask participants to print their |project_name| results and explain the " -"output from it. Output consists of two files, the map and the details of the " -"analysis." -msgstr "" -"Mintalah peserta untuk mencetak hasil |project_name| mereka dan menjelaskan " -"output tersebut. Output berisi dua file, peta dan detail analisis." - -# d1b3b6ea04344c068cb1634342dc3084 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1242 -msgid "" -"Lastly, demonstrate how to save results, having the participants follow " -"along." -msgstr "" -"Terakhir, fasilitator memperagakan cara menyimpan hasil analisis, kemudian " -"meminta peserta mengikuti proses ini. " - -# 4a919b6715274ac694cad2f6270a83d0 -# 35a80f2c4b97435da6f8b7df8a59db92 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1246 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1300 -msgid "**Closing 10'**" -msgstr "**Penutup 10’**" - -# 185afa7418d84bb4b92fa5bc54a53f94 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1253 -msgid "Session 13" -msgstr "Sesi 13" - -# a2a92405b59b41d08c97cfe6ba034a4e -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1256 -msgid "Time : 60 minutes" -msgstr "Waktu : 60 menit" - -# ce4387478ce643ffa48ce78ec9f0d4d3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1264 -msgid "Use social media to connect with |project_name| community" -msgstr "" -"Menggunakan media sosial untuk berhubungan dengan komunitas |project_name|" - -# 33e3265247b2481985f26e6f247a8e2c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1265 -msgid "Access QGIS tutorial website" -msgstr "Mengakses situs panduan QGIS" - -# dba9660da28a43a0a1ec5fb3e8f2939c -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1269 -msgid "Participants join the Forum Pengguna QGIS and |project_name|" -msgstr "Peserta tergabung dalam Forum Pengguna QGIS dan |project_name|" - -# 66ac7d891c6c40419d67d1b9453da748 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1270 -msgid "Find the QGIS tutorial website" -msgstr "Mengakses situs tutorial QGIS" - -# 27f43af5f80c46b291a0559386547780 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1274 -msgid "**Getting Support**" -msgstr "**Mendapatkan Dukungan**" - -# c870b82876644b679b114efad3fd8b5a -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1276 -msgid "Facebook" -msgstr "Facebook" - -# 7806a851ea9548cba89c8e2c4825d3c9 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1277 -msgid "QGIS tutorials" -msgstr "Tutorial QGIS" - -# fba9f397baa447359d4dc2efef1a0a75 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1289 -msgid "**Demonstration and Practice 40'**" -msgstr "**Demonstrasi dan Praktik 40’**" - -# 9c92435df89042f79961137f37cbac22 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1291 -msgid "" -"Show how participants can seek and get help remotely by using social media " -"in the internet. Invite all of the participants into a QGIS and InaSAFE " -"forum or group in Facebook. (Forum Pengguna QGIS dan InaSAFE)" -msgstr "" -"Menunjukkan bagaimana peserta dapat melihat dan memperoleh bantuan jarak " -"jauh dengan menggunakan media sosial di internet. Undanglah semua peserta ke " -"dalam forum QGIS dan InaSAFE di Facebook. (Forum Pengguna QGIS dan InaSAFE)" - -# c770d776513c4cd99b3f7b517ee1b4a2 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1296 -msgid "" -"Show them some websites that can be useful for learning QGIS (http://manual." -"linfiniti.com) and |project_name| (http://inasafe.org)" -msgstr "" -"Tunjukkan kepada mereka beberapa situs yang berguna untuk pembelajaran QGIS " -"(http://manual.linfiniti.com) dan |project_name| (http://inasafe.org)" - -# 3bd3d48eac0843f9ad04ced3f8ca999d -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1291 -msgid "Module 13" -msgstr "Modul 13" - -# 3d807d9832934cc9bb445c46b74285d3 -#: ../../source/training/curriculum/qgis-inasafe-beginner-toolkit.rst:1302 -msgid "Give a conclusion of the whole training." -msgstr "" -"Fasilitator memberikan kesimpulan seluruh rangkaian pelatihan yang telah " -"dilaksanakan." diff --git a/docs/i18n/id/LC_MESSAGES/training/curriculum/qgis-inasafe-intermediate-toolkit.po b/docs/i18n/id/LC_MESSAGES/training/curriculum/qgis-inasafe-intermediate-toolkit.po deleted file mode 100644 index 3ba57222..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/curriculum/qgis-inasafe-intermediate-toolkit.po +++ /dev/null @@ -1,1496 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013-2014 -# elida nurrohmah , 2014 -# harry mahardhika , 2013 -# mahardika fadmastuti , 2013-2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-08 05:26+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# c254e02426fc49beaefe07d23cbc489b -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:2 -msgid "Unit 4 Facilitator Guide" -msgstr "Unit 4 Panduan Fasilitator" - -# bea43f3eaf8941b3ad3b0c53f7570ef5 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:5 -msgid "Intermediate QGIS-InaSAFE Trainer's Toolkit - (A Guide to Facilitators)" -msgstr "" -"Toolkit Trainer QGIS_InaSAFE Tingkat Menengah - (Panduan untuk Fasilitator)" - -# b56ed44acc33494fa16ec14b15c06202 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:7 -msgid "**BADAN NASIONAL PENANGGULANGAN BENCANA**" -msgstr "**BADAN NASIONAL PENANGGULANGAN BENCANA**" - -# 28615d066052458f8e054173ac3ff2fb -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:9 -msgid "**2013**" -msgstr "**2013**" - -# ff7a307107364f3da6118a915c8d0f71 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:12 -msgid "About Toolkit" -msgstr "Tentang Toolkit" - -# 38580ab2d2fd4ba5ad86f50f3a769347 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:14 -msgid "" -"**The Intermediate QGIS-** |project_name| **Toolkit** is designed to prepare " -"trainers to deliver training for QGIS users who previously followed the " -"beginner training. The materials included will prepare trainers to conduct " -"trainings with a variety of audiences and to cover common problems and " -"pitfalls, and also provide trainers with the best methodologies." -msgstr "" -"**Toolkit** |project_name| - **QGIS Tingkat Menengah** dirancang untuk " -"mempersiapkan fasilitator dalam menyampaikan pelatihan untuk pengguna QGIS " -"yang sebelumnya telah mengikuti pelatihan tingkat dasar. Materi-materi yang " -"terkandung di dalamnya akan disiapkan oleh fasilitator untuk melakukan " -"pelatihan dengan berbagai macam peserta dan mencakup masalah dan kesalahan " -"umum, dan juga menyediakan berbagai macam metodologi terbaik. " - -# 621fc2b045274c9a8085ff541d561b59 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:21 -msgid "" -"When organising a QGIS-|project_name| training, numerous factors must be " -"considered, including the length of time you have to train, available " -"resources, number of trainees and their technical skills. This toolkit will " -"help trainers prepare trainings for different types of participants, but it " -"will primarily focus on educating those with little or no experience with " -"GPS, map-making and computers." -msgstr "" -"Ketika merencanakan pelatihan QGIS-|project_name| , banyak faktor yang harus " -"dipertimbangkan, termasuk lama pelatihan, sumber daya yang tersedia, jumlah " -"fasilitator dan kemampuan teknis mereka. Toolkit ini akan membantu Anda " -"mempersiapkan pelatihan untuk berbagai tipe peserta, namun akan lebih " -"terfokus pada mengajarkan mereka yang memiliki sedikit atau tidak memiliki " -"kemampuan atau pengalaman menggunakan GPS, membuat peta dan menggunakan " -"software GIS di komputer." - -# 227ee2cdd1674c7989706e4afbfa7d11 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:28 -msgid "" -"The purpose of this toolkit is to prepare the trainer to successfully train " -"workshop participants in intermediate QGIS and |project_name|." -msgstr "" -"Tujuan dari toolkit ini adalah mempersiapkan fasilitator untuk melatih para " -"peserta lokakarya dengan sukses pada QGIS dan |project_name| tingkat " -"menengah. " - -# c978464a50fa4a09b92bd58b0c3fb6d3 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:32 -msgid "Purpose of Workshop" -msgstr "Tujuan Lokakarya" - -# 3d874e02a6c54a62bd1ad0732a25a72f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:33 -msgid "" -"This workshop is intended to achieve the following standard and basic " -"competencies:" -msgstr "" -"Lokakarya ini bertujuan untuk mencapai standar kompetensi dan kompetensi " -"dasar:" - -# ba88dd4f66a74203a91809a7e889970e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:37 -msgid "Standard Competency" -msgstr "Standar Kompetensi" - -# dba8573df67a44dcaafd0da0dca87262 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:38 -msgid "" -"Spatial Data Analysis using QGIS and |project_name| for Contingency Planning" -msgstr "" -"Analisis Data Spasial menggunakan QGIS dan |project_name| untuk Rencana " -"Kontinjensi" - -# ae020d9eea6e4e32b21acbf0776f2134 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:41 -msgid "Basic Competencies" -msgstr "Kompetensi Dasar" - -# 2fd173fd082241549984a3813e11ec14 -# 6055d29b17524d01bbf39156b0970b9c -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:42 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:169 -msgid "Understand QGIS concepts" -msgstr "Memahami konsep QGIS" - -# 655bc5d3451b4efb86fae6a768a4a83d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:43 -msgid "Prepare data and keywords for |project_name|" -msgstr "Mempersiapkan data dan *keywords* untuk |project_name|" - -# c7a20db738a8408ca39526fdc0290852 -# dbd9e4ebfa7a4b41930e930802aba591 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:44 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:290 -msgid "Determine temporary IDP camp or evacuation locations" -msgstr "Menentukan lokasi tempat-tempat evakuasi sementara" - -# 8cc92d9249454ed9924bb4428c2f2a12 -# 4b89b2ec71574201ba41d899d77d030d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:45 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:354 -msgid "Plan evacuation routes based on hazard information" -msgstr "Merencanakan jalur evakuasi berdasarkan informasi ancaman" - -# efd9c631de1947488a9205c26f33c3d7 -# e45335dba11b4b959004a3480b90b688 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:46 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:427 -msgid "Calculate damage and losses" -msgstr "Menilai kerusakan dan kerugian" - -# ba1fbe6bb79743f891f72c8038239bac -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:49 -msgid "Workshop Materials" -msgstr "Materi Lokakarya" - -# d5a418e5e09b42baabadacba4d090796 -# 4c69d424fe7945e88d3df4f0b239fa97 -# e1c0c0b31dd04b31b5d7d9e9d41f2f57 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:50 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:101 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:164 -msgid "QGIS Review" -msgstr "Review QGIS" - -# 016ba9d2e7b34cc5886a7c1446c09f80 -# 977d281ed47045c59d6e51af1dc0f452 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:51 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:105 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:109 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:225 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:230 -msgid "Preparing data and keywords for |project_name|" -msgstr "Mempersiapkan data dan kata kunci untuk |project_name|" - -# 822a1938f2194efdb86a2ffdadfb5595 -# fedb63e8897f447a9e4003288934774e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:52 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:285 -msgid "Determining IDP Camp Location" -msgstr "Penentuan Lokasi Tempat Pengungsian" - -# 5aa424ea26b54e4fb73a3eaaca1904fc -# 7e58385879da4f83be7b4063590cacb5 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:53 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:349 -msgid "Planning an Evacuation Route" -msgstr "Perencanan Jalur Evakuasi" - -# b15865eb7d4649be8ae0f7e4a9512f43 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:54 -msgid "Calculating Damage and Losses" -msgstr "Penilaian Kerusakan dan Kerugian" - -# 77761ee69b8a4fe49ef428bcf8556508 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:57 -msgid "Workshop Strategies" -msgstr "Strategi Lokakarya" - -# a4bdcd1a64f640f7aff8c82b7327f29f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:58 -msgid "" -"Methods emphasised in this workshop are participatory teaching and active " -"participation in all sections and activities, rather than lecture method." -msgstr "" -"Metode yang digunakan dalam lokakarya ini adalah pengajaran partisipatif dan " -"partisipasi aktif dalam semua bagian dan kegiatan, bukan metode ceramah." - -# 7d06c6c3b6fb4648be79fb1e787bc315 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:61 -msgid "" -"**Participant oriented.** Participants are encouraged to find and gain " -"knowledge and skills by themselves." -msgstr "" -"**Berpusat pada peserta.** Peserta didorong untuk mencari, menemukan dan " -"memperoleh pengetahuan/keterampilan yang dibutuhkan secara mandiri" - -# 3f837c85c72b44c18ce8e97938515af4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:64 -msgid "" -"**Trainers serve as facilitators.** Trainers facilitate to help ideas in the " -"workshop emerge from the participants, not only from trainers. However, " -"trainers must be ready to provide necessary information when the " -"participants need any assistance." -msgstr "" -"**Trainer berfungsi sebagai fasilitator.** Trainer hanya memfasilitasi agar " -"ide-ide datang dari berbagai arah bukan hanya dari trainer. Namun, trainer " -"harus mampu memberikan informasi yang diperlukan di saat peserta membutuhkan " -"bantuan." - -# 99d66383a9124239a765b394406087f9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:69 -msgid "" -"**Outcome oriented.** Workshop must produce the outcomes mentioned " -"previously." -msgstr "" -"**Berorientasi pada hasil.** Lokakarya harus menghasilkan *outcome* yang " -"telah disebutkan." - -# 9875c6bd75a34199b8260aab715b2e2d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:73 -msgid "Tools" -msgstr "Perlengkapan" - -# 5ca94bf64ab64b6cb53cce5b561a645d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:74 -msgid "" -"Copy of :ref:`Data Analysis using QGIS and InaSAFE Intermediate Level " -"` for participants" -msgstr "" -"Salinan dari :ref:`Analisis Data menggunakan QGIS dan InaSAFE Tingkat " -"Menengah ` untuk para peserta" - -# 000d38afe6db4c7280e54c3bbeb17cde -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:76 -msgid "A workshop space with tables and seats" -msgstr "Sebuah tempat atau ruangan indoor dengan meja dan tempat duduk" - -# 27918ec0f4444a6abdba8359a35ac1ef -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:77 -msgid "" -"Computers (one computer may be used by two participants, but it is better if " -"one computer is used by one participant)" -msgstr "" -"Beberapa unit komputer (idealnya paling tidak satu komputer untuk dua " -"peserta, namun apabila bisa satu komputer untuk satu peserta maka lebih baik)" - -# 78c1f6d9884d46c3a9198e220f6b3ca0 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:79 -msgid "" -"A Projector (to present slide and demonstrate technical instructions and " -"software)" -msgstr "" -"Sebuah Proyektor (untuk presentasi dan mendemonstrasikan berbagai teknis " -"perangkat lunak/software)" - -# ef04a06b266c4f638828843221fc98ff -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:81 -msgid "USB Flash drive(s) to transfer files and software" -msgstr "*Flashdisk* untuk memindahkan *file* dan *software*" - -# 3b39017c886047dbaf4cb15586eee29d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:82 -msgid "Good internet connection" -msgstr "Koneksi Internet yang baik" - -# a7aa3f80348241969fb781f1722a9b4b -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:83 -msgid "Snacks and coffee for breaks" -msgstr "Makanan dan minuman ringan untuk istirahat" - -# b4cf2305c9874de5a90072360c2dcc2e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:86 -msgid "Schedule" -msgstr "Jadwal" - -# 45d434c95d144dc98d2442abaa28dc8e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:88 -msgid "" -"Below is an outline of a schedule for a three day workshop that has been " -"tested with several groups in Indonesia. You may choose to adapt and change " -"this workshop schedule to meet your needs." -msgstr "" -"Di bawah ini adalah contoh jadwal pelatihan untuk tiga hari yang telah diuji " -"coba kepada beberapa kelompok di Indonesia. Anda boleh memilih untuk " -"menyesuaikan dan mengubah jadwal lokakarya sesuai dengan kebutuhan Anda." - -# fe4ddb439e91488ea96bbaafa8dee6e3 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:93 -msgid "Day I:" -msgstr "Hari Pertama: " - -# 3b91607eca504588865a2f775294eff8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:95 -msgid "**Time**" -msgstr "**Waktu**" - -# 57f85cd3316f4847b281f0b5714570e0 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:95 -msgid "**Materials**" -msgstr "**Materi**" - -# 1cedd960924543aab5cf2922ae71b209 -# cc3e8a4b41f843d99ccf6d31d56e24e6 -# 9476b9dfde3a49bda58b3f89243d54c0 -# f086e1edfcb9471baf4e29aa9b109edb -# 91d035e83e1c4bd48add6c5633456b66 -# 22e592ec3bfb497d993ffcd7d752f8a2 -# a23e561f24f4401d85de5b7817c21c0a -# 97baf3ab4a1a4ff6b2dd4b66f83f7979 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:95 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:117 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:139 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:192 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:259 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:320 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:379 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:467 -msgid "**Activities**" -msgstr "**Langkah Kegiatan**" - -# d580668df2e3473b843ee53a2fed7193 -# 3d596d5f759744cd876ad5ef8da4233e -# 80cb8069e06e41b58960b57c69175511 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:97 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:119 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:141 -msgid "09.00 - 10.00" -msgstr "09.00 - 10.00" - -# dc161ff5e8414e889ba0cd33b1fd95e1 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:97 -msgid "Opening and building learning contract" -msgstr "Pembukaaan dan Membangun Kesepakatan" - -# 6b4abcb3464f4ab28299ef91f7ae3e42 -# 784403c02bb947b2a2502d04dd44b3f9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:97 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:155 -msgid "Plenary Session" -msgstr "Pleno" - -# 664b9bd1afb048c8a10f2fa54740a65a -# 8774eaca6ec24d6883e17773ff0432f0 -# 2f850bdaa42d40f2acaa9b69e9633cc6 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:99 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:121 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:143 -msgid "10.00 - 10.15" -msgstr "10.00 - 10.15" - -# 626d0be1781f4f3abedef4b0c179df39 -# 2db3e0691efe4bd399d7b1587fc2ef24 -# 9a71fa8621f8487fa3cbb0c4fc7ba3d3 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:99 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:121 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:143 -msgid "Break 1" -msgstr "Istirahat 1" - -# 04d6946e79fe415c9e242349b90d1b48 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:101 -msgid "10.15 - 12.30" -msgstr "10.15 - 12.30" - -# e1baf2cf549a4d4d95038f68981de568 -# 745cd0440a4b4350a130cabf68925689 -# 9e75797f566d419d9fd32901c67c12d2 -# d4c1b7d5bd1042bdbc736296b44200cc -# a9b3d6677e3f4efd9dd822848723a9d4 -# 811274d0acfd4574b38242f40eef781c -# 22ff9d967cdb4936ae4eb883b7ba402a -# 56c858ad0dae4eaea07cd89e52c87a07 -# 11b79ed9876d40bdbb5c38fd1e985467 -# 90cc572bf8f94265b79a389078d90211 -# 298f6edcc7c141e5adbbc26f2b57c255 -# a7d3ce14830841f1a058d380cd8d28ac -# b46b09fde3db474791fa97f8c39c4d77 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:101 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:105 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:109 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:111 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:119 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:123 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:125 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:129 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:133 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:141 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:145 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:149 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:153 -msgid "FGD and Plenary Session" -msgstr "FGD dan Pleno" - -# f11639cccea14e4abeb4511d7eebb150 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:103 -msgid "12.30 - 13.30" -msgstr "12.30 - 13.30" - -# 0ae0245f647f413c9015c4049f0f717e -# 2f96af265fb1499985cf93854a266573 -# 3cfdc7e59235458b8a6046fbf7eccdce -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:103 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:127 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:147 -msgid "Lunch break" -msgstr "Sholat dan makan siang" - -# 4727502c454e4ce6a2a0659e277b7498 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:105 -msgid "13.30 - 15.00" -msgstr "13.30 - 15.00" - -# 49ae6e8034f648ed82b83bd83ca2e1ca -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:107 -msgid "15.00 - 15.15" -msgstr "15.00 - 15.15" - -# c62476f1584c498cbde24d2ba81ebfd5 -# 3e2a3c793202457c81c0e440fffac242 -# 5e2296dd439444898e4a8db09361360f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:107 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:131 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:151 -msgid "Break 2" -msgstr "Istirahat 2" - -# d7ac7131e40b4f4ca994d3da8b754ad9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:109 -msgid "15.15 - 15.45" -msgstr "15.15 - 15.45" - -# faca79a757f249a3a14b8fbe163246e8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:111 -msgid "15.45 - 17.00" -msgstr "15.45 - 17.00" - -# b688a0597ca0410b83b25786341a05a4 -# b076c3f200d046608c7aa27374b84b6f -# c7201df45fdc480da0a0e71c27e8bf02 -# 4290c6a9e825445abfbf14b9c76614f6 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:111 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:119 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:123 -msgid "Planning temporary shelter" -msgstr "Perencanaan tempat pengungsian sementara" - -# f6cb90828f6a480fbf03f53d28dc1d80 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:115 -msgid "Day II:" -msgstr "Hari Kedua: " - -# cc0a0bf092b148f0a3ab308a8d1135f8 -# 0685c83fb1c34db385005300ab78a4eb -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:117 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:139 -msgid "**Time** | **Materials**" -msgstr "**Waktu** | **Materi**" - -# bb8d2bb005314774b1e67e96e08f6368 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:123 -msgid "10.15 - 11.15" -msgstr "10.15 - 11.15" - -# 39910eef8a844707b42ef95fa8e3156e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:125 -msgid "11.15 - 12.15" -msgstr "11.15 - 12.15" - -# f273eb66c99c4fc195d1176d5dc6fd05 -# 8c898974cf3c498fb458da1039099eb5 -# 0c71b6ce1c6748758e35a75295bd1b3e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:125 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:129 -msgid "Planning evacuation route" -msgstr "Perencanaan jalur evakuasi" - -# 90a3418730804b12811b2eeede86fe10 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:127 -msgid "12.15 - 13.15" -msgstr "12.15 - 13.15" - -# 2a21d34c0d6d4c9280cad128d00916a4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:129 -msgid "13.15 - 15.15" -msgstr "13.15 - 15.15" - -# b06a09ce86614c49a5ca227f5a6c54fe -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:131 -msgid "15.15 - 15.30" -msgstr "15.15 - 15.30" - -# 3bbab1f7c2604fb887e4366544f0a3b3 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:133 -msgid "15.30 - 17.00" -msgstr "15.30 - 17.00" - -# b4e6f921bab5495f9002629ce621b55d -# 814a7e63eb9d4e86879a3a423f1132a5 -# 13ee0e47fd094d42b08f48cb435fcab9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:133 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:141 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:145 -msgid "Calculating damage and losses" -msgstr "Penilaian kerusakan dan kerugian" - -# cc8ad3d87aa546b1b65e33e0d1177e9f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:137 -msgid "Day III:" -msgstr "Hari Ketiga: " - -# f2b12d3a4d7746708c490dca575ff7b8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:145 -msgid "10.15 - 12.00" -msgstr "10.15 - 12.00" - -# b5797f491839428588c572cf2f3ae0b4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:147 -msgid "12.00 - 13.00" -msgstr "12.00 - 13.00" - -# 48da44ecb0cc4174a86280e5b9374159 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:149 -msgid "13.00 - 15.00" -msgstr "13.00 - 15.00" - -# 646e2393066e46ddbe93a1307848096d -# fe6f3e5f821540129393320190b8248c -# 4f9e4357e02d40d784dd112dee543271 -# d6427534b94e479aaa5fbc2852256936 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:149 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:153 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:334 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:398 -msgid "Practice" -msgstr "Praktik" - -# 6e3e8d287f01401e9b93499f9a06eab0 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:151 -msgid "15.00 - 16.15" -msgstr "15.00 - 16.15" - -# d4b949b5d62e4d4c8293c1c54789b65e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:153 -msgid "15.15 - 16.15" -msgstr "15.15 - 16.15" - -# 36274ca27771474c82984ff3d9f7a646 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:155 -msgid "16.15 - 17.15" -msgstr "16.15 - 17.15" - -# f6c9d9dbcfc440d3a007c27a02cdb9dc -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:155 -msgid "Evaluation and closing" -msgstr "Evaluasi dan penutupan" - -# d20099b69d6e4ced860a8f3a3a5f8bd7 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:159 -msgid "Workshop Plan" -msgstr "Rencana Lokakarya" - -# bf1be838260f4efdb60cb26f44f2bb1a -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:162 -msgid "Session 1" -msgstr "Sesi 1" - -# 43601d61559745558c50bccad4abdbed -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:165 -msgid "Time : 135 minutes" -msgstr "Waktu : 135 menit" - -# 2a25c92d1c6c4cee8f8c95c81824c7a5 -# eba5d171edb548fe804f3491e659007a -# e0632763d56049f7b58926f6445ce5ef -# 98a358528a0c4c5c86a622110592fb1f -# e4398a40083b4bd6ae67f75a04f775ba -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:168 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:229 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:289 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:353 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:426 -msgid "Basic Competency" -msgstr "Kompetensi Dasar" - -# 2b8b640319d1408d94756ab6655917ef -# d425ef689e064398b65f334b5073c52e -# 7b0e204831b0454093cc9a870532a9f5 -# d4976532714a451e94411cd950a85b0d -# 3e7245ab13b94d9a8ec6a63be82ad802 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:172 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:233 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:293 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:357 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:430 -msgid "Indicators" -msgstr "Indikator" - -# 66702dabb383411a9da0bf6d83da0317 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:173 -msgid "Identify data types in QGIS" -msgstr "Mengidentifikasi tipe data QGIS" - -# e1d880356f6a409f8aa15df0ab20304a -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:174 -msgid "Understand symbology" -msgstr "Memahami simbologi" - -# f1831905b79d4bf99cf9d3d83ba23856 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:175 -msgid "Understand map layout" -msgstr "Memahami layout peta " - -# ab11a5c2038c4960b483edc744f192ae -# bde62895e8234d3ebfaefaf6de515b5c -# 633496db224543d9ab4656ee17dfc21b -# d625d429deb2489f9fc4834c28c5d7b3 -# b36a153d1eb64ffbb9ca2f0fa3437d50 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:178 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:242 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:302 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:365 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:447 -msgid "Outcomes" -msgstr "Hasil" - -# d1dcd6a8c2a748c49db1412de1ed2a0b -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:179 -msgid "Understand QGIS" -msgstr "Memahami konsep QGIS" - -# 2345b4e47db248daa3e1ffbc2c83c5b0 -# e350a9b4b12c488fa7cd8726110aee35 -# ffc143e9ce58447d98793fac75ed6960 -# 1de0be966d17460ca15c08eb2841c39d -# 77dfe0b46b2e421fb2df2df28fcab01c -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:182 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:246 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:306 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:369 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:451 -msgid "Core Material" -msgstr "Materi Pokok" - -# c6e2417fdfed407ca49946178c158fa8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:183 -msgid "**QGIS Review**" -msgstr "**Review QGIS**" - -# fefd745aa4a14bc8a5c09ec66188ef20 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:185 -msgid "Data types in QGIS" -msgstr "Tipe data dalam QGIS" - -# c8411e069e984baf925c4ae7a16163a9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:186 -msgid "Symbolising data" -msgstr "Simbolisasi data" - -# 00ffbda8849f42f3aa6bbf18941bf975 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:187 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:205 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:214 -msgid "Map layout" -msgstr "Layout Peta" - -# 15a89cfac66f45a4b7df4b1287f3e1c9 -# 21a7c3b7db3643e8a8c5b53abee93386 -# cddde84c49e54b24b2877a9c9820fddd -# 44c48e7f6fbd4dc3bf1adf407375c556 -# f0981b1a9a2445049e902efcdc91365f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:190 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:257 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:318 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:377 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:464 -msgid "Activities" -msgstr "Aktivitas" - -# 8f34994a7cef4f35a79814df8fcf45e4 -# e33dd8e0b75e4082bc73db8dfe21b394 -# 8f1f9697728c42ed8f014fdce455b498 -# 55c724a784ec43d1a3b482fc9560103f -# 12396712d4174890ba5bb7bae684117c -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:192 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:259 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:320 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:379 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:467 -msgid "**Methods**" -msgstr "**Metode**" - -# 7edb2eb018a9499f8209791b09766274 -# 041e3c683d9f451682b79410723001f9 -# 981855dde75e46d6a750e1780bac35bd -# 03057ca136ed45129c51bbdda4a68472 -# 3ba48cfb2d5c433bb33303ded30eccfa -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:192 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:259 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:320 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:379 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:467 -msgid "**Tools**" -msgstr "**Alat/Bahan**" - -# dd75882c2780479694c0ca2941d05fee -# 7d2809856e304f1da111b1ecfd318d35 -# d321bf9283964efcbd547d9778e9ebfe -# ac2de9db7dcb4f7eb556edb9125aa004 -# 05e6f01ea91743a8ae3afbe1529e6d84 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:194 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:261 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:322 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:381 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:469 -msgid "**Introduction 5'**" -msgstr "**Pengantar 5**" - -# 7b2fac9e3ddf478d93f3628412d8b3b0 -# 09c4bbcb5fc64e90bb308a61b0d223e1 -# 5248c89d5ea2459f90ceb1361a7007a7 -# 1ff11b77ef24428d90b53cb8a1260abf -# e5e12867064a44e680aec66a70f7c6a5 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:196 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:263 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:324 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:383 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:471 -msgid "" -"Explain the importance of the session, objectives, outcomes and activities " -"of the session." -msgstr "" -"Fasilitator menyampaikan pentingnya sesi, tujuan, hasil dan langkah kegiatan." - -# 28b6ea51b7404eefb2fea1bb5f936885 -# e75347f90e0b47bb900ec60948f5e372 -# aba7bd5a50f54e44927f052176d9d751 -# 1f3d8f5e61cb4f5584c5306661abac24 -# b5a9a5802aba45348808c061434880c2 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:194 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:261 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:322 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:381 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:469 -msgid "Lecture" -msgstr "Dosen" - -# d1afebfb652746049606a28ea7883eec -# c7e451fdf02b459e88bcfc24cfbe1fa8 -# 952d8b205d394df2b8ef940248a8d857 -# 4a83c3fbd7cb492e9b314ea6e154da08 -# 49d280c20f754b6a93b78da68d58fec6 -# 3b446aaa331a4847b4a6a309b2c6e2a7 -# 13188737b04746d5aeb8628208bddf2c -# f49dadc6e452490ebfb50ff40937dfac -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:194 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:199 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:207 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:261 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:322 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:327 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:381 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:469 -msgid "*Slide PP*" -msgstr "*Slide PP*" - -# 10a32a118ed644bbae8649dfa53f9c6c -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:199 -msgid "**FGD 65'**" -msgstr "**FGD 65'** *(Focus Group Discussion)*" - -# 167db66b765b47e2abe0496dc560e8a8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:201 -msgid "Discuss with participants:" -msgstr "Berdiskusi dengan para peserta:" - -# c67a04995769444cae6e7de9d2847358 -# 3b2ccb8a915340c7964693b32f9ed275 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:203 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:212 -msgid "QGIS data types" -msgstr "Jenis Data QGIS" - -# 8836edadc5e14b17bf390aae6e520d64 -# 7b8facac4ef04e9ca5dbebdda61ea7cc -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:204 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:213 -msgid "Data symbolisation" -msgstr "Simbolisasi Data" - -# 55a0b81d655b44bd949380c1b3cc91cb -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:199 -msgid "FGD" -msgstr "FGD" - -# 9cde7cf10c164d4c9b4e4bdc77c45515 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:204 -msgid "Module 1" -msgstr "Modul 1" - -# 9269b3c220e24816a16875b80f5930fd -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:207 -msgid "**Debrief 60'**" -msgstr "**Praktik 60’**" - -# f94ede158424484694f1a584adc2da38 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:209 -msgid "" -"Review this material and answer any questions and problems that participants " -"have encountered." -msgstr "" -"Meninjau materi ini dan menjawab pertanyaan dan masalah yang peserta temui." - -# 8b3252d2a8334e15a68566d4d3c2e85d -# fac4b509c54847ceb47c38d4d3e59eea -# 6151e7e3530e41eeb69a869fcf17aa85 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:207 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:266 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:327 -msgid "Lecture Q & A" -msgstr "Ceramah tanya & jawab" - -# 3135ac1f06de4b029893c3aee49a628e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:217 -msgid "" -"**Closing 5'** Ask participants to recap the session and answer any final " -"questions." -msgstr "" -"**Penutupan 5'** Peserta diminta untuk meninjau ulang sesi dan menjawab " -"pertanyaan." - -# 393743c9f6c245868fd8a7944c3f16ce -# bf65bdce27ee4e4eb1d3d981c76b163e -# 08401f3b636741f7aafc0172e4e73ec4 -# 5ffa5476faed459a8cfaccbae2758e15 -# a8bc12e48c0b4830be96fc3073b31284 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:217 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:277 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:342 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:405 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:489 -msgid "Q & A" -msgstr "Tanya & Jawab" - -# e92a8e7f98b14c8dbc97895c4ff0e13e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:223 -msgid "Session 2" -msgstr "Sesi 2" - -# cb2af76ef3ac470aaf773fc8d036ca84 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:226 -msgid "Time : 185 minutes" -msgstr "Waktu : 185 menit" - -# 67a49b81989d4d9c926f47b0916905fd -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:234 -msgid "Understand |project_name| inputs" -msgstr "Memahami *input* |project_name|" - -# ebea6a341f684b82ad275d856f6c408f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:235 -msgid "Get OSM data from the HOT export server" -msgstr "Memperoleh data OSM dari server HOT export" - -# 3cfc5a7593a54b8a844830206b9e8033 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:236 -msgid "Load data into |project_name|" -msgstr "Menambahkan data ke dalam |project_name|" - -# d350014a82214f9cb0438276e9b26af1 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:237 -msgid "Add keywords" -msgstr "Menambahkan kata kunci" - -# 25174bac917a4532bdb2b8998438ed23 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:238 -msgid "Prepare the hazard layer" -msgstr "Mempersiapkan layer ancaman" - -# a919cf777a4744799acf54aef27018f7 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:239 -msgid "Run |project_name|" -msgstr "Jalankan |project_name|" - -# cb39efbc4baf4f30a322e751ca576eae -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:243 -msgid "Hazard impact map based on |project_name| analysis results" -msgstr "Peta dampak ancaman berdasarkan hasil analisis |project_name|" - -# f0b6b934cabd43989c4e0ae76db16e26 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:247 -msgid "**Preparing data and keywords for** |project_name|" -msgstr "**Mempersiapkan data dan kata kunci untuk** |project_name|" - -# 26880cc3c3ef406386706b31fc022f18 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:249 -msgid "|project_name| inputs" -msgstr "|project_name| input" - -# 22a22739ffe14c0e85786eafd08507c8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:250 -msgid "Getting OSM data from HOT Exports" -msgstr "Memperoleh data OSM dari HOT Export" - -# 5e75063f7c384055a5cb0dab8d2ac1eb -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:251 -msgid "Loading data" -msgstr "Memuat data" - -# 2afcfdca287640c19178d3b1cccc58ad -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:252 -msgid "Adding keywords" -msgstr "Menambahkan kata kunci" - -# 19d6f515e1ec4ebba96ab14f7f6aac85 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:253 -msgid "Preparing a hazard layer" -msgstr "Mempersiapkan layer ancaman" - -# 87bf0e712a2945b398cccd3e86e54ecb -# 8941af357b1d4ef99bff76dabf09805e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:254 -msgid "Running |project_name|" -msgstr "Jalankan |project_name|" - -# 7310878d62e8453083854ff0dc3da3c5 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:266 -msgid "**Review** |project_name| **input data 65'**" -msgstr "**Meninjau** |project_name| **input data 65'**" - -# 61884b3ccb7f4ee39fba655a441a673a -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:268 -msgid "Explain about preparing data and keywords for |project_name|." -msgstr "" -"Menjelaskan tentang mempersiapkan data dan kata kunci untuk |project_name|." - -# 966b3812b7e84201ba9c89d7730a649c -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:270 -msgid "" -"Show participants how to get OSM exposure data and how to use |project_name| " -"to get affected buildings" -msgstr "" -"Menunjukkan ke para peserta bagaimana cara mendapatkan data keterpaparan OSM " -"dan bagaimana menggunakan |project_name| untuk mendapatkan bangunan terdampak" - -# 2b40848f2ca1402c83666629ef5275a9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:272 -msgid "" -"Q & A session for participants to ask anything about materials. Questions " -"will be answered after presentation." -msgstr "" -"Sesi tanya & jawab bagi para peserta untuk bertanya apa pun tentang materi. " -"Pertanyaan akan dijawab setelah presentasi." - -# 9ee7d272e42f46caaaa20bc80d9ca868 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:274 -msgid "" -"Challenge participants to prepare exposure and hazard data to be processed " -"in |project_name|." -msgstr "" -"Tantangan para peserta untuk mempersiapkan data keterpaparan dan ancaman " -"yang diproses pada |project_name|." - -# 1bc5798ede7248028a3c0c6c3e993aac -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:266 -msgid "*Slide PP* Projector Microphone" -msgstr "*Slide PP* Proyektor Microphone" - -# ffb2eca319e74beeb5486b7b3b29590f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:271 -msgid "Module 2" -msgstr "Modul 2" - -# 5be7a7a1be5245d3b60146a6d0717fad -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:277 -msgid "" -"**Closing 25'** Ask participants to recap the session. Conclude by answering " -"participant questions." -msgstr "" -"**Penutupan 25'** Peserta diminta untuk meninjau ulang sesi. Akhiri dengan " -"menjawab pertanyaan peserta." - -# cbc4b16a0c86495ab0e85ac1e130a643 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:283 -msgid "Session 3" -msgstr "Sesi 3" - -# 8b9d19c3afb7481daa0f3c2a6e7eb666 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:286 -msgid "Time : 225 minutes" -msgstr "Waktu : 225 menit" - -# 883b908e453f44f39ae991e2830570db -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:294 -msgid "Develop criteria for determining an ideal IDP camp location" -msgstr "Menyusun kriteria untuk menentukan lokasi tempat pengungsian" - -# 5e2d49437d3a41cb822ffc9a8497181d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:295 -msgid "Use geoprocessing tools" -msgstr "Menggunakan alat-alat geoprocessing" - -# 0068eaf700044dc2bd34c868e520cb4f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:296 -msgid "" -"Use various spatial queries: contains, within, equal, intersect and is " -"disjoint" -msgstr "" -"Menggunakan berbagai kueri spasial: *contains, within, equal, intersect, dan " -"is disjoint*" - -# 136f8b0eb0be4497b034e448bbf8ff38 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:298 -msgid "" -"Combine geoprocessing tools and spatial queries to select building(s) for " -"temporary IDP camps" -msgstr "" -"Menggabungkan *tool* geoprocessing dan kueri spasial untuk memilih bangunan " -"(bangunan-bangunan) sebagai tempat pengungsian sementara" - -# c8b9f15542364cdfabf2f5c3ea081cc4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:303 -msgid "Use spatial queries to determine good IDP camp locations" -msgstr "" -"Menggunakan query spasial untuk menentukan lokasi tempat pengungsian yang " -"baik" - -# 70b50493eb8b4773af03533d16c39df0 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:307 -msgid "**Determining IDP Camp Location**" -msgstr "**Menentukan Lokasi Tempat Pengungsian**" - -# a5aa7bcd8e204324921b172b8ab51791 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:309 -msgid "Geoprocessing tools" -msgstr "Tool Geoprocessing" - -# 17ac76857f3640f69b9c0e765d51a3cc -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:310 -msgid "Spatial queries" -msgstr "Kueri Spasial" - -# 32154beab18c4de58fd72b49b0e99e49 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:311 -msgid "IDP camp criteria and data" -msgstr "Kriteria dan data tempat pengungsian" - -# 951106dbca1f4804b07264d7e2b85341 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:312 -msgid "Criteria #1: building must be outside affected area" -msgstr "Kriteria #1: bangunan harus berada di luar area terdampak" - -# 09edef954dbb414494a00d6725653c8f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:313 -msgid "" -"Criteria #2: location must have direct access to a primary/secondary road " -"within 20 metres" -msgstr "" -"Kriteria #2: lokasi harus memiliki akses langsung ke jalan primer/sekunder " -"dalam jarak 20 meter" - -# 022867535b604801a43ee32b43e8aaf3 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:315 -msgid "Criteria #3: building must have an area of at least 225 square metres" -msgstr "Kriteria #3: bangunan harus memiliki luas setidaknya 225 meter persegi" - -# 0328c0a045d24c5e9d067ec40193cdf9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:327 -msgid "**Input 105'**" -msgstr "**Input 105'**" - -# a8a1669fcd2b4f648f57d8d047fc6c5f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:329 -msgid "Present the IDP camp scenario to participants." -msgstr "Menampilkan skenario tempat pengungsian ke para peserta." - -# c4b032fd9fa14d50aa00f12f70bad554 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:330 -msgid "" -"Explain the process of spatial analysis for identifying IDP camps, using " -"tools such as buffer, clip, intersect, union and dissolve." -msgstr "" -"Menjelaskan proses analisis spasial untuk mengidentifikasi tempat " -"pengungsian, menggunakan alat seperti buffer, clip, intersect, union dan " -"dissolve." - -# d9060660b02c4dcfad390b9275565a7f -# 5bbd012e1e4b44cab66e04a5858c9d76 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:334 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:398 -msgid "**Practice 120'**" -msgstr "**Praktik 120'**" - -# df59628164fb4f3198bba34fbf03c3f4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:336 -msgid "" -"Go step-by-step through the process of identifying potential IDP camps using " -"the sample material. Participants should follow along." -msgstr "" -"Lakukanlah langkah demi langkah melalui proses identifikasi potensi tempat " -"pengungsian menggunakan contoh pada materi. Para peserta harus mengikuti " -"proses ini." - -# 35b36312e46e4f35a8ac4484f4de4456 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:339 -msgid "Answer any questions participants have about the process." -msgstr "Menjawab pertanyaan para peserta mengenai proses tersebut." - -# 34df53256ab544dcb4c4dfefae15ba39 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:342 -msgid "**Closing 10'** Q & A and discussion." -msgstr "**Penutupan 10'** Tanya & Jawab dan diskusi." - -# bdabab143cc6463b97dd4c0b0c478805 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:347 -msgid "Session 4" -msgstr "Sesi 4" - -# a2ffa04b0a984bd9919d95471b1be7e4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:350 -msgid "Time : 180 minutes" -msgstr "Waktu : 180 menit" - -# 2f8543fc0eb4423faf72cd73ca44dc19 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:358 -msgid "Understand the concept of shortest path and fastest route" -msgstr "Memahami konsep jalur terpendek dan rute tercepat" - -# cabac33c7e83499792b676a990418192 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:359 -msgid "Use the Road Graph plugin" -msgstr "Menggunakan plugin Road Graph" - -# e3c9f9101a044cd5b1298d6f8104132e -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:360 -msgid "Set up speed and road direction" -msgstr "Mengatur kecepatan dan arah jalan " - -# 7495d06f6a69447e8447a24a0d221d72 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:361 -msgid "Determine start and destination points" -msgstr "Menentukan titik awal dan titik tujuan " - -# 8ecb25abbabc4d70804028f9bbbbe29a -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:362 -msgid "Conduct route analysis and selection" -msgstr "Melakukan analisis dan seleksi rute" - -# 868c64c2b099462dad947b641e29cc29 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:366 -msgid "Create evacuation route" -msgstr "Membuat jalur evakuasi" - -# c40af447cace4f568507fcd05a30f290 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:370 -msgid "**Planning an Evacuation Route**" -msgstr "**Perencanaan Jalur Evakuasi**" - -# 51e10e6b0dac413aa77cff4968c006fb -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:372 -msgid "Road graph plugin" -msgstr "Plugin road graph" - -# 1fd7dcf980bf472abfea6a7459c07e44 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:373 -msgid "Editing plugin settings" -msgstr "Mengubah pengaturan plugin" - -# e453e1ff1c944342939c86cb4a11b7a8 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:374 -msgid "Choosing start and destination points" -msgstr "Memilih titik awal dan akhir" - -# 8b590558b6dd499b9acfa7d50fc091c2 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:386 -msgid "**Input 45'**" -msgstr "**Input 45’**" - -# 7e69eb104e764800b8f379b442ebad6f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:388 -msgid "" -"Explain the process of determining a good evacuation route. Things to " -"consider are:" -msgstr "" -"Menjelaskan proses penentuan jalur evakuasi yang baik. Hal-hal yang perlu " -"diperhatikan:" - -# a450b409ab8e47ba834062e5a3fc0592 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:392 -msgid "Make sure the Road Graph plugin is installed" -msgstr "Pastikan plugin Grafik Jalan terinstal" - -# 8cc7373a6b0c4e97b30720c0b8a54927 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:393 -msgid "Explain Road Graph plugin settings" -msgstr "Menjelaskan pengaturan plugin Grafik Jalan" - -# 03a0032e2e784d15b58f5c1e16e54939 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:395 -msgid "Allow participants to ask questions about the material." -msgstr "Mengizinkan para peserta untuk bertanya mengenai material tersebut." - -# 037151e3fa6c471fa0cb12170e127a2d -# b87beaca30bf4046ad6baa6fe04adc4f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:386 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:474 -msgid "Discussion" -msgstr "Diskusi" - -# 8f5bd3c6fbbb4867b56f62130bc615dc -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:386 -msgid "*Slide PP* Module 4" -msgstr "*Slide PPT* Modul 4" - -# 7533c5069d0a4bd29749c3ffa81b3e9f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:400 -msgid "" -"Demonstrate how to determine the fastest route using the example data. " -"Participants should follow along." -msgstr "" -"Mendemonstrasikan bagaimana menentukan jalur tercepat menggunakan data " -"contoh. Para peserta harus mengikuti proses ini." - -# 9a5a32994b6540dcb1cfdff5323e1c43 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:402 -msgid "" -"Ask one of the participants to present the results of the analysis, and have " -"other participants respond." -msgstr "" -"Meminta satu dari peserta untuk mempresentasikan hasil analisis, dan peserta " -"yang lain merespon." - -# a26b62f2e4b04c2aa192464e989d12a2 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:405 -msgid "" -"**Closing 10'** Answer questions about the material and discuss use cases." -msgstr "" -"**Penutupan 10'** Menjawab pertanyaan mengenai materi dan berdiskusi " -"menggunakan sebuah contoh kasus." - -# bf37fdd410e346fdaa48fc7c33660587 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:411 -msgid "Common Problems" -msgstr "Kesalahan Umum" - -# 3dc7122646e44114a75013d74de661c0 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:413 -msgid "**Projection**" -msgstr "**Proyeksi**" - -# 35891c4294794653807965965d15da5b -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:415 -msgid "" -"You may need to turn off 'On the Fly' projection in order to use the Road " -"Graph plugin, if the analysis does not appear after running the plugin." -msgstr "" -"Anda perlu mematikan proyeksi 'On the Fly' ketika menggunakan plugin Grafik " -"Jalan, jika analisis tidak muncul setelah menjalankan plugin tersebut." - -# 2e5089f4adb14e9d90584d371decc383 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:420 -msgid "Session 5" -msgstr "Sesi 5" - -# 4c78737db7684be0b06dc53aad9b5310 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:422 -msgid "Calculating Damages and Losses" -msgstr "Penilaian Kerusakan dan Kerugian" - -# 3f989d0ea2be42918527841c92c06a7d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:423 -msgid "Time : 210 minutes" -msgstr "Waktu : 210 menit" - -# e90fd738e7474322bad480c363b240a1 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:431 -msgid "" -"Understand the definition of damages, losses and their calculation based on " -"community exposure data" -msgstr "" -"Memahami definisi kerusakan, kerugian, dan perhitungannya berdasakan data " -"keterpaparan komunitas" - -# d8ecf8fd6aef4bbaaa07a39fbb59b546 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:433 -msgid "Understand damage and losses assessment values based on BNPB and BPBD" -msgstr "" -"Memahami penilaian kerusakan dan kerugian berdasarkan ketentuan BNPB dan BPBD" - -# f214aa13eabc40af8121f17e5fbe4069 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:434 -msgid "Make a damage and losses map" -msgstr "Membuat sebuah peta penilaian kerusakan dan kerugian" - -# fcdfdf5437f6453f8f4a8134d37ea651 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:435 -msgid "Calculate damage area" -msgstr "Menghitung area kerusakan" - -# b9620cfac38647fdba54be685a7e362d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:436 -msgid "" -"Manipulate attribute data of affected features to obtain damage values for " -"each object" -msgstr "" -"Memanipulasi data atribut dari fitur yang terkena dampak untuk memperoleh " -"nilai kerusakan untuk setiap objek" - -# 49cf9ef7a90544818552abcefc1bb8db -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:438 -msgid "" -"Manipulate attribute data of affected features to obtain loss values for " -"each object" -msgstr "" -"Memanipulasi data atribut dari fitur yang terkena dampak untuk memperoleh " -"nilai kerugian untuk setiap objek" - -# a1f210526dd44ac69313e8d646153e74 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:440 -msgid "" -"Group attribute data for administrative areas (hamlet village, subdistrict)" -msgstr "" -"Mengelompokkan data atribut untuk wilayah administrasi masing-masing (dusun, " -"desa, kecamatan)" - -# f685f24c54c24f2a849342e9948f3332 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:442 -msgid "" -"Combine attribute data for administrative areas (hamlet village, subdistrict)" -msgstr "" -"Menggabungkan data atribut untuk wilayah administrasi masing-masing (dusun, " -"desa, kecamatan)" - -# c15c6ebcda3d4ffbb52dc09efd3d99ff -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:444 -msgid "Present damage and loss values using charts" -msgstr "Menyajikan penilaian kerusakan dan kerugian menggunakan diagram" - -# b747f2c12b694c81965e67a3070231e6 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:448 -msgid "Calculate damages and losses in QGIS" -msgstr "Menghitung kerusakan dan kerugian di QGIS" - -# 8b326f34a2dd40fd808c40c70b36cf25 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:452 -msgid "**Calculating Damages and Losses**" -msgstr "**Menghitung Kerusakan dan Kerugian**" - -# 3d163da4c25241028facba8bf1a170ad -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:454 -msgid "BPBD damage assessment guide" -msgstr "Panduan Penilaian Kerusakan BPBD" - -# 872f0ea144054ab5951a020d19718bae -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:455 -msgid "Damage and losses assessment map" -msgstr "Peta penilaian kerusakan dan kerugian" - -# f1903ebe71624bbaa0f4a1d55ed2c1c4 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:456 -msgid "Calculating damage area" -msgstr "Menghitung Area Kerusakan" - -# a880cfdae61f4520a46d54c401ad94b0 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:457 -msgid "Calculating damages using the Group Stats plugin" -msgstr "Menghitung kerusakan dengan Plugin Group Stats" - -# 3a261d0a7eba4ce1bcde6855a1b10003 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:458 -msgid "Calculating losses" -msgstr "Menghitung kerugian" - -# 4b6f845e6c8047b0b2d3c954e1b9fc78 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:459 -msgid "Calculating losses using the Group Stats plugin" -msgstr "Menghitung kerugian dengan Plugin Group Stats" - -# 2cbd9791f10f4dec8d9ad300a865c715 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:460 -msgid "Joining data" -msgstr "Penggabungan data" - -# 61f334796b584369a307aa149558d583 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:461 -msgid "Creating a chart" -msgstr "Membuat diagram" - -# 7e40ee04a3644f1a8046488ef21ce7b9 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:474 -msgid "**Demo and Practice 180'**" -msgstr "**Demonstrasi dan Latihan 180'**" - -# 7290e3be86c7416699af03e50fff8fc7 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:476 -msgid "" -"Explain the definition of damage and losses assessment (DALA), DALA benefits " -"and examples of DALA that are already used by some organisations/agencies to " -"calculate post-disaster losses." -msgstr "" -"Menjelaskan definisi dari penilaian kerusakan dan kerugian (DALA), " -"keuntungan DALA dan contoh dari DALA yang sudah digunakan oleh beberapa " -"organisasi/badan untuk menghitung kerugian setelah bencana." - -# fb0f851ad8f246b78ddff8179a690391 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:480 -msgid "" -"Give an example calculation of damage and losses that will be completed " -"together with participants. It is recommended to use the existing training " -"data." -msgstr "" -"Memberikan sebuah contoh penilaian kerusakan dan kerugian yang akan " -"dilengkapi bersama dengan para peserta. Disarankan untuk menggunakan data " -"pelatihan yang ada." - -# 728e86c3c3084e6b9bf50145517c927d -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:483 -msgid "Use the Group Stats plugin to calculate damage and losses by village." -msgstr "" -"Menggunakan plugin Group Stats untuk menghitung kerusakan dan kerugian di " -"suatu desa." - -# d680fb3800314cb8be7a965ae0decffd -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:485 -msgid "" -"Explain how such a DALA calculation can be used to help in drafting a " -"disaster contingency plan." -msgstr "" -"Menjelaskan bagaimana perhitungan DALA dapat digunakan untuk membantu dalam " -"penyusunan draft rencana kontinjensi." - -# 330cb39ac9c6485e89ecd515e71ec83f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:474 -msgid "*Slide PP* Module 5" -msgstr "*Slide PPT* Modul 5" - -# f1ed35d11d954ea6a0b24872d7c16b80 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:489 -msgid "" -"**Closing 10'** Conclude the session on DALAs. Discuss and answer questions " -"about the session." -msgstr "" -"**Penutupan 10'** Mengakhiri sesi DALA. Berdiskusi dan menjawab pertanyaan-" -"pertanyaan mengenai sesi tersebut." - -# 66758c6cf7c449ac9d971d2a8dc2571f -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:495 -msgid "FAQ (Frequently Asked Questions)" -msgstr "FAQ (Pertanyaan yang sering muncul)" - -# 58ca5793b1b043c9b5ae84e056822c26 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:497 -msgid "" -"**How do we get data that can be used for the calculation of damages and " -"losses?**" -msgstr "" -"**Bagaimana cara mendapatkan data yang dapat digunakan untuk perhitungan " -"dari kerusakan dan kerugian?**" - -# dcd489df18ce4f2896e0c600471634c3 -#: ../../source/training/curriculum/qgis-inasafe-intermediate-toolkit.rst:500 -msgid "" -"Data can be typically be obtained from the relevant national agencies. In " -"Indonesia, for example, it can be obtained from BNPB and BPBD." -msgstr "" -"Data biasanya dapat diperoleh dari badan-badan nasional yang relevan. Di " -"Indonesia, contohnya, dapat diperoleh dari BNPB dan BPBD." diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/index.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/index.po deleted file mode 100644 index 34ef635f..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/index.po +++ /dev/null @@ -1,53 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 348945a919e346f493eee3192ec056f9 -#: ../../source/training/old-training/beginner/index.rst:4 -msgid "Beginner Training Module" -msgstr "Modul pelatihan pemula" - -# edc8b42b409b49d4a5ab3afa3dba57b1 -#: ../../source/training/old-training/beginner/index.rst:6 -msgid "" -"The beginner training module has been designed by Badan Nasional " -"Penanggulangan Bencana (BNPB), Humanitarian OpenStreetMap Team (HOT) and " -"Australia-Indonesia Facility for Disaster Reduction (AIFDR) to provide hands-" -"on experience with |project_name| for data collection and data analysis for " -"contingency planning. The course is scheduled to run for 10 days." -msgstr "" -"Modul pelatihan dasar ini telah didesain oleh Badan Nasional Penanggulangan " -"Bencana (BNPB), Humanitarian OpenStreetMap Team (HOT) dan Australia-" -"Indonesia Facility for Disaster Reduction (AIFDR) yang menyediakan " -"pengalaman pelatihan dengan |project_name| untuk pengumpul data dan " -"penganalisis data untuk rencana kontinjensi. Pelatihan ini di rencanakan " -"untuk 10 hari." - -# 1f8f0a9138654ab8853c3006fdbb4e03 -#: ../../source/training/old-training/beginner/index.rst:12 -msgid "" -"The data used in this course is available for download on `data.inasafe.org " -"`_. Ask your trainer which data you will need to " -"download for the course if they do not provide it to you directly." -msgstr "" -"Data yang digunakan dalam pelatihan ini dapat di*download* pada `data." -"inasafe.org `_. Tanyakan pada pelatih Anda data " -"apa saja yang perlu Anda *download* untuk pelatihan jika mereka tidak " -"memberikan kepada Anda." diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/100-introduction.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/100-introduction.po deleted file mode 100644 index 31c3e9f0..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/100-introduction.po +++ /dev/null @@ -1,322 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2014 -# Emir Hartato , 2014 -# Wulansari Khairunisa , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 07:32+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 60169d5cd5a24f869dbf70e1d5f4c0ed -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:6 -msgid "Introduction" -msgstr "Pengantar" - -# b7610f782d044ca0a005ab123815c180 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:9 -msgid "Disclaimer" -msgstr "Ketentuan" - -# 227984954ff8409883755d18d57f2134 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:11 -msgid "" -"This document is initial draft and still in reviewing phase by these parties:" -msgstr "" -"Dokumen ini merupakan rancangan awal dan masih dalam tahap peninjauan oleh " -"pihak-pihak sebagai berikut:" - -# b87b1b43c77c4fc5bd5020acc1bfe03e -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:13 -msgid "Badan Nasional Penanggulangan Bencana (|BNPB|)" -msgstr "Badan Nasional Penanggulangan Bencana (|BNPB|)" - -# 68c204c6d2614d7db8a496b37fc51540 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:14 -msgid "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" -msgstr "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" - -# 8d019302328e49388dc4fe3a8c7f6d23 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:15 -msgid "Humanitarian OpenStreetMap Team (|HOT|)" -msgstr "Humanitarian OpenStreetMap Team (|HOT|)" - -# 7d6e5fb4e92443f8927803114611bf34 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:17 -msgid "" -"All contents and materials on this document may be changed without public " -"notice." -msgstr "" -"Seluruh isi dan materi dalam dokumen ini kemungkinan masih dapat mengalami " -"perubahan tanpa pemberitahuan publik." - -# eb4c34a3a3fe4e2ea7e515eb38e2ac1e -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:21 -msgid "Licence" -msgstr "Lisensi" - -# c8fc0e00d60a471084676fb53e8e33e5 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:25 -msgid "" -"All contents and materials in this document are licensed as Creative Commons " -"Attribution Australia (CCbyA)." -msgstr "" -"Seluruh isi dan materi pada dokumen ini berlisensikan Creative Commons " -"Attribution Australia (CCbyA)." - -# 07096b0a34514a8681a4f3fdce17f0ad -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:28 -msgid "You are free:" -msgstr "Anda dapat secara bebas:" - -# bcabcf59080c44b886ecacc0f71a9cef -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:30 -msgid "to copy, distribute, display, and perform the work" -msgstr "menyalin, mendistribusikan, menampilkan, dan melakukan pekerjaan" - -# a1ba11fdfd5241dfa7ef9c9c40d22185 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:31 -msgid "to make derivative works" -msgstr "membuat karya-karya turunan" - -# 51c279b9e33441a09b8192118416aead -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:32 -msgid "to make commercial use of the work" -msgstr "membuat penggunaan komersial dari karya tersebut" - -# a6d2e2b28a4b41f1b629ef683501ec93 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:34 -msgid "You must give the original author credit." -msgstr "Anda harus mencantumkan kredit penulis asli." - -# e862a6e9d620475c8a8b66d1e287e167 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:36 -msgid "" -"More information about CCbyA License: http://creativecommons.org/licenses/" -"by/3.0/au/deed.en_GB" -msgstr "" -"Keterangan lebih lanjut mengenai Lisensi CCbyA: http://creativecommons.org/" -"licenses/by/3.0/au/deed.en_GB" - -# 3f80cdda53b242fc9b818ad46057f1ca -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:40 -msgid "About Us" -msgstr "Tentang Kami" - -# 04ee76c26ccf476791f287076861c331 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:42 -msgid "Badan Nasional Penanggulangan Bencana (BNPB)" -msgstr "Badan Nasional Penanggulangan Bencana (BNPB)" - -# 62808c1ab1374d5b8b9c1aad0869e478 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:46 -msgid "" -"BNPB is Indonesia’s National Disaster Management Agency. |BNPB| is a non-" -"departmental ministerial-level government agency, tasked with providing " -"guidance and direction to the efforts of disaster management that includes " -"disaster prevention, emergency response, rehabilitation and reconstruction " -"in a fair and equal way. |BNPB| functions as a policy maker regarding " -"refugee/IDP management for effective and efficient response. It coordinates " -"the implementation of disaster management activities in a planned, " -"integrated and comprehensive way." -msgstr "" -"BNPB adalah Badan Nasional Penanggulangan Bencana Indonesia. |BNPB| " -"merupakan lembaga pemerintah non-departemen di tingkat kementrian yang " -"bertugas untuk menyediakan panduan dan pengarahan di bidang manajemen " -"bencana, termasuk pencegahan bencana, respon keadaan darurat, rehabilitasi, " -"dan rekonstruksi secara adil dan merata. BNPB memiliki fungsi sebagai " -"pembuat kebijakan terkait manajemen pengungsi (IDP) untuk bertindak secara " -"cepat dan merespon secara efisien. BNPB juga mengkoordinasikan implementasi " -"dari aktifitas manajemen bencana secara terencana, terintegrasi, dan " -"komprehensif." - -# e652067b2eba45dea7f3473a7c1e36ad -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:56 -msgid "http://bnpb.go.id" -msgstr "http://bnpb.go.id" - -# 833bf69930e44adf9ce90d2d8aa2adb2 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:59 -msgid "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" -msgstr "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" - -# ecc5b61c7f7042c8ab6cd6aba6dbceb4 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:63 -msgid "" -"The Australia-Indonesia Facility for Disaster Reduction (|AIFDR|) is a joint " -"initiative between the governments of Australia and Indonesia. They work to " -"strengthen Indonesia's ability to reduce the impact of disasters. The " -"Australian and Indonesian governments at a special ceremony on 15 July 2010 " -"launched the Australia-Indonesia facility. The launch marks an important " -"event in the strong relationship now shared by both countries and their " -"united commitment to better prepare for and respond to natural disasters in " -"Indonesia." -msgstr "" -"Australia-Indonesia Facility for Disaster Reduction (AIFDR, Fasilitas " -"Australia-Indonesia untuk pengurangan bencana) merupakan inisiatif gabungan " -"antara pemerintah Australia dengan pemerintahIndonesia. AIFDR bekerja untuk " -"memperkuat kemampuan Indonesia untuk mengurangi dampak bencana. AIFDR " -"diluncurkan oleh pemerintah Australia dan pemerintah Indonesia dalam sebuah " -"seremoni khusus pada tanggal 15 Juli 2010. Peluncuran ini menandakan sebuah " -"kejadian penting dalam hubungan kuat yang saat ini terjalin antara kedua " -"negara dan komitmen mereka untuk mempersiakan dan merespon bencana alam di " -"Indonesia lebih baik." - -# 77051902c4a84acab0a8d55553fabb4e -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:72 -msgid "http://aifdr.org" -msgstr "http://aifdr.org" - -# bb0371c15d844521abc43a0ad82c512d -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:75 -msgid "Humanitarian OpenStreetMap Team (HOT)" -msgstr "Humanitarian OpenStreetMap Team (HOT)" - -# e892475fd195474da086b2f5550df12d -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:79 -msgid "" -"Free, collaborative maps are uniquely valuable to humanitarian work, " -"especially in places where base map data is often scarce, out-of-date, or " -"rapidly changing. OpenStreetMap (OSM) is a web project to create a free and " -"open map of the entire world, built entirely by volunteers surveying with " -"GPS, digitising aerial imagery, and collecting and liberating existing " -"public sources of geographic data. The Humanitarian OpenStreetMap Team (|" -"HOT|) is an initiative to apply the principles and activities of open source " -"and open data sharing towards humanitarian response and economic development." -msgstr "" -"Peta gratis dan kolaboratif mempunyai keunikan yang berharga untuk pekerjaan " -"kemanusiaan, terutama di tempat-tempat dimana peta dasar sangat jarang " -"ditemukan, datanya sudah lama, atau seringkali berubah. Dibangun dalam dua " -"tahun dari kolaborasi secara informal, Tim Kemanusiaan OpenStreetMap (|HOT|) " -"merupakan sebuah inisiatif yang baru untuk mengaplikasikan prinsip dan " -"aktifitas dari sumber terbuka dan berbagi data terbuka untuk menuju respon " -"kemanusiaan dan pembangunan ekonomi." - -# b0786e59ba374fbf87ee4dca58663ea7 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:88 -msgid "http://hot.openstreetmap.org" -msgstr "http://hot.openstreetmap.org" - -# faf453bf0f514f1a8f89f91d80f90519 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:91 -msgid "Universitas Gadjah Mada" -msgstr "Universitas Gadjah Mada" - -# 60721d1f3db94d638d26d3dd969a2625 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:95 -msgid "" -"Universitas Gadjah Mada (internationally known as Gadjah Mada University, or " -"UGM) is a top research university located in Yogyakarta, Indonesia. The " -"Department of Geodetic Engineering and Faculty of Engineering focuses on " -"education, research, and commmunity services related to geodesy and " -"geomatics engineering, including acquisition, analysis, and uses of detailed " -"and accurate geospatial data and large-scale maps using open source " -"geospatial software for disaster management." -msgstr "" -"Universitas Gadjah Mada (secara internasional dikenal sebagai Gadjah Mada " -"University ; Disingkat : UGM) adalah salah satu pusat penelitian tingkat " -"universitas yang bertempat di Yogyakarta, Indonesia. Departemen Teknik " -"Geodesi, Fakultas Teknik khususnya fokus dalam kegiatan pengajaran, " -"penelitian, dan pengabdian kelompok yang berkaitan dengan geodesi dan teknik " -"geomatik, termasuk akuisisi, analisis, dan penggunaan dari geospasial data " -"yang detil dan akurat serta dengan peta berskala besar menggunakan software " -"geospasial bersifat open source dalam manajemen bencana." - -# a98be150b9094be5afcf21707e04e8fc -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:103 -msgid "http://ugm.ac.id" -msgstr "http://ugm.ac.id" - -# c279854c51544e078db07d7b6fe91e51 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:106 -msgid "Preface" -msgstr "Pengantar" - -# 31ce9a0c8bf94ac885706b1419c43395 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:107 -msgid "" -"Every day thousands of people contribute to OSM, a project with the lofty " -"goal of mapping the world. Most OSM software is free and open source, and " -"the data is open for anyone to use. The idea is simple: if you make a map of " -"your town and we make a map of ours, we can share those maps on a common " -"platform. With enough people contributing, we can collect data throughout " -"the world." -msgstr "" -"Setiap hari ribuan orang berkontribusi untuk OpenStreetMap, sebuah proyek " -"dengan tujuan mulia yaitu memetakan seluruh dunia. Kebanyakan software OSM " -"adalah gratis dan open source, dan datanya terbuka bagi siapapun yang " -"menggunakannya. Idenya sangat sederhana: jika anda membuat sebuah peta untuk " -"kota dimana anda tinggal dan saya membuat peta dimana saya tinggal, kita " -"dapat berbagi peta tersebut pada sebuah platform yang sama. Dengan orang " -"yang berkontribusi secukupnya, kita dapat membuat peta dan mengumpulkan data " -"dari seluruh dunia." - -# d2079cdad79843d0a7375a1c100a88ae -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:114 -msgid "" -"Collecting Spatial Data using OSM Beginner Level is a step-by-step course " -"designed to help anyone get started with OSM. While it might seem daunting " -"at first, OSM is simple enough that anyone can get started creating maps, " -"and as your understanding grows you'll find that you can do more and more " -"interesting things." -msgstr "" -"Mengumpulkan Data Spasial dengan OpenStreetMap Tingkat Dasar ini merupakan " -"panduan langkah demi langkah yang dirancang untuk membantu siapapun untuk " -"memulai OSM, tanpa mementingkan tingkat kemampuan sejauh mana anda " -"memulainya. Mungkin terlihat rumit ketika anda baru memulainya pertama kali, " -"tetapi OSM sebenarnya cukup sederhana bahwa semua dapat memulai untuk " -"membuat peta, dan seiring dengan bertumbuhnya pemahaman anda, anda akan " -"dapat mengetahui bahwa anda dapat melakukan banyak hal yang menarik dengan " -"OSM." - -# c7c12e39ce07497bbc62586bb2ad1cf2 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:120 -msgid "" -"This tutorial makes few assumptions. It assumes you have used a computer " -"before, and that you have an email address. If you don't have an email " -"address, we suggest you have a friend help you sign up for one. There are " -"many websites where you can get a free email address, such as www.gmail.com " -"or mail.yahoo.com." -msgstr "" -"Panduan ini dibuat berdasarkan asumsi. Yaitu anda telah menggunakan sebuah " -"komputer sebelumnya, dan anda mempunyai sebuah alamat email. Jika anda tidak " -"mempunyai alamat email, kami menyarankan anda untuk mendaftarkan sebuah " -"alamat email dengan bantuan teman anda. Terdapat banyak website dimana anda " -"dapat memperoleh alamat email dengan gratis, seperti www.gmail.com atau mail." -"yahoo.com." - -# 44b43b10108a4fd5867b56bd33c11e84 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:126 -msgid "" -"The only other assumption is that you've used the internet before. Perhaps " -"you're familiar with Facebook or email, and that's certainly enough to get " -"started with OSM. If you're already comfortable using a computer and surfing " -"the web, don't worry – this guide is for you too. No matter your " -"proficiency, we'll take you step-by-step through OSM and you'll be mapping " -"in no time!" -msgstr "" -"Asumsi lainnya adalah bahwa anda pernah menggunakan internet sebelumnya. " -"Mungkin anda mengenal Facebook atau email, dan dengan pengetahuan tersebut " -"sebenarnya sudah cukup untuk memulai dengan OpenStreetMap. Jika anda belum " -"merasa nyaman menggunakan komputer dan menjelajah internet, jangan khawatir " -"– panduan ini juga untuk anda. Tanpa memandang kemahiran anda, kami akan " -"membawa anda langkah demi langkah melalui OSM dan anda akan mampu memetakan " -"dalam waktu yang singkat!" - -# 96c7fd01bf2c497a91cfdb86edc990d1 -#: ../../source/training/old-training/beginner/osm/100-introduction.rst:133 -msgid ":ref:`Go to first module --> `" -msgstr ":ref:`Menuju modul pertama --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/101-basic-concept-of-osm-website.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/101-basic-concept-of-osm-website.po deleted file mode 100644 index f7c4195b..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/101-basic-concept-of-osm-website.po +++ /dev/null @@ -1,235 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# mahardika fadmastuti , 2013 -# Wulansari Khairunisa , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:58+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# a01e446946e945c2b12f89ddbe224e6a -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:6 -msgid "Module 1: The OpenStreetMap Website" -msgstr "Modul 1: Konsep Dasar Situs *OpenStreetMap*" - -# ea281f443eff48a4932128bcc4022d92 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 6a2990e4d34d4112ac5014fc814ffda9 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:10 -msgid "Understand the concept of OpenStreetMap" -msgstr "Memahami konsep dan pengertian *OpenStreetMap*" - -# aeb9978a4907468ab83fac0a4c357896 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:11 -msgid "Understand the definition and objectives of data collection" -msgstr "Memahami definisi dan tujuan pengumpulan data" - -# e75b3a3296064a2896bdc9a299e8005a -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:12 -msgid "Understand the composition of a map" -msgstr "Memahami komponen dalam peta" - -# d58450b665c448deb5cd7110dbd9a5c1 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:13 -msgid "Make a hand-drawn sketch of an area" -msgstr "Membuat sketsa peta wilayah menggunakan tangan" - -# 8d2483b53ac343f4a2598587fed27d93 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:15 -msgid "" -"Maps are a good way to convey information. Maps are visual representations " -"of our world. They can often demonstrate an idea better than words. This in " -"turn can also help answer important questions. Where is the closest school " -"or hospital? Who has the least access to these facilities? Where is " -"poverty the most problematic? Questions like these can often best be " -"expressed with maps, and maps can help find solutions to these questions." -msgstr "" -"Peta dapat digunakan dengan baik untuk menyampaikan informasi. Peta " -"merupakan gambaran visual dari dunia kita. Mereka sering dapat " -"mendemonstrasikan sebuah ide lebih baik daripada kata-kata. Ini juga dapat " -"membantu untuk menjawab pertanyaan penting. Dimana sekolah atau rumah sakit? " -"Siapa yang memiliki sedikit akses untuk fasilitas tersebut? Dimanakah lokasi " -"kemiskinan yang paling bermasalah? Pertanyaan seperti ini paling baik " -"diekspresikan dengan peta, dan peta dapat membantu untuk mencari solusi dari " -"pertanyaan-pertanyaan tersebut." - -# 38aab34470584dc1ad8411916d4305af -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:23 -msgid "Hand-drawn maps" -msgstr "Sketsa peta" - -# c9cd1c3411d94ce88e47ae1cb33e23ee -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:25 -msgid "" -"As an exercise, get a pen and paper and draw a map of your town or village. " -"What are the most important things to include on the map? What is the most " -"important information? Spend a few minutes making your map, and when you’re " -"finished, think about why the information you included is important, and who " -"it might be important to." -msgstr "" -"Sebagai sebuah latihan, ambil sebuah alat tulis dan secarik kertas kemudian " -"gambarlah peta kota atau desa tempat tinggal Anda. Hal apakah yang paling " -"penting untuk digambarkan pada peta tersebut? Informasi apa yang paling " -"penting? Silahkan kerjakan peta tersebut dalam beberapa menit, dan ketika " -"sudah selesai, silahkan anda pikirkan kembali kenapa informasi yang ada pada " -"peta anda itu penting untuk diberikan dan kepada siapa saja informasi " -"tersebut dapat berguna." - -# afaa0544e72045dfbbbf9bc7f9c51b19 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:37 -msgid "" -"*A village in Indonesia (top), and an example of a hand-drawn map (bottom)*" -msgstr "" -"*Sebuah desa di Indonesia (atas), dan sebuah contoh peta yang digambar " -"dengan tangan (bawah)*" - -# 0a031c6f4be64093a4b11fd72befe13e -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:39 -msgid "" -"If your town is like most, you may have drawn some lines to represent roads, " -"possibly a river or stream. Perhaps you added important buildings such as " -"schools and offices, fields, or boundaries. Whatever you drew, you probably " -"used symbols - a line to symbolise a road, a square to symbolise a building, " -"and so on. Your map is a representation of what is on the ground." -msgstr "" -"Jika Anda lebih banyak menggambarkan tentang kota Anda, mungkin Anda " -"menggambarkan beberapa garis untuk merepresentasikan jalanan, atau mungkin " -"juga sebuah aliran sungai. Mungkin Anda juga telah menambahkan bangunan-" -"bangunan penting seperti sekolah dan kantor, lapangan, atau batas wilayah. " -"Apapun yang Anda gambarkan, Anda kemungkinan menggunakan simbol sebuah garis " -"untuk pengaturan simbol jalan, sebuah persegi untuk simbol bangunan, dan " -"seterusnya. Peta Anda merupakan sebuah representasi dari apa yang ada di " -"permukaan bumi." - -# ca1dcbe8401446358c046c4d40ac920d -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:54 -msgid "*Examples of Symbols*" -msgstr "*Contoh dari simbol-simbol.*" - -# c5686fdf33d24b4489f53e7d4609143c -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:57 -msgid "" -"Your map is informative. You might use a map like this to explain to someone " -"where different places are, where problems are in your community, or merely " -"to help someone find their way around. The use of your map is limited " -"though. There is only one copy of the map and the way you drew it may make " -"sense to you, but perhaps not to someone else who would have drawn their own " -"map in a different way. Because your map is merely on paper, it is difficult " -"to get that information to others. This is why making your map on a " -"computer, in such a way that anyone can access it, can be much more valuable." -msgstr "" -"Peta Anda bersifat informatif. Anda mungkin akan menggunakan peta seperti " -"ini untuk menjelaskan kepada seseorang dimana tempat-tempat berbeda berada, " -"dimana permasalahan yang terdapat dalam komunitas Anda, atau lebih tepatnya " -"untuk membantu seseorang menemukan tempat tujuannya. Namun, kegunaan peta " -"Anda ini terbatas. Dimana hanya terdapat satu buah salinan dari peta dan " -"dari cara Anda menggambarkannya mungkin Anda memahami isinya, tetapi tidak " -"bagi orang lain yang menggambarkan peta tersebut dengan cara yang berbeda. " -"Karena peta Anda ini digambarkan hanya pada secarik kertas, sangat sulit " -"untuk menyampaikan informasi ini ke orang lain. Inilah mengapa Anda membuat " -"peta pada sebuah komputer, dengan cara seperti itu semua orang dapat " -"mengakses peta tersebut dan membuatnya lebih berharga." - -# a71cf29ed66c4eeeb146dcd7261f8eb3 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:68 -msgid "Why digital?" -msgstr "Kenapa digital?" - -# 4177de3ea8104c1d8ca28af5c40a580f -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:70 -msgid "" -"Map making on computers allows us to collect more useful data than on paper. " -"On paper we might draw a school, and even add it’s name and record some " -"information about the school, but on the computer we can attach an endless " -"amount of data about the school, such as the number of students, number of " -"teachers, size of the building, type of structure, and so on. And more " -"importantly, when we add this school to a digital map, we record it’s " -"precise location (longitude and latitude) on the planet. This is invaluable " -"for our future map making and analysis, and we will look more closely at it " -"later on." -msgstr "" -"Pembuatan peta di komputer memungkinkan kita untuk mengumpulkan data yang " -"lebih bermanfaat daripada di atas kertas. Di atas kertas kita mungkin " -"menggambar sekolah, dan bahkan menambah namanya dan merekam beberapa " -"informasi mengenai sekolah tersebut, tetapi di komputer kita dapat " -"melampirkan data mengenai sekolah jumlah tak terbatas, seperti jumlah murid, " -"jumlah guru, ukuran bangunan, jenis struktur bangunan, dan sebagainya. Dan " -"yang lebih penting, ketika kita menambah sekolah ini ke peta digital, kita " -"mencatatnya pada lokasi yang tepat (bujur dan lintang) di Bumi ini. Ini " -"sangat berharga untuk pembuatan peta analisis di masa depan kita." - -# cc40bf52c7e742099cbf424e8ef8156b -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:81 -msgid "What is OpenStreetMap?" -msgstr "Apa itu *OpenStreetMap*?" - -# 3ad184b2788a486ab96596151de3e0a2 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:83 -msgid "" -"OpenStreetMap is a tool for creating and sharing map information. Anyone can " -"contribute to OSM, and thousands of people add to the project every day. " -"Users draw maps on computers, rather than paper, but as we will see in this " -"guide, drawing a map on a computer is not all that different from drawing on " -"paper. We still draw lines to represent roads, fields, and anything else, " -"and we still represent schools and hospitals with symbols. The important " -"thing is that OSM maps are saved on the internet, and anyone can access them " -"at any time, totally free." -msgstr "" -"OpenStreetMap adalah sebuah alat untuk membuat dan berbagi informasi dalam " -"bentuk peta. Siapapun dapat berkontribusi untuk OSM, dan ribuan orang " -"menambahkan proyek setiap harinya. Para pengguna menggambarkan peta mereka " -"pada komputer, bukan pada kertas, tetapi pada panduan ini, kita akan melihat " -"bahwa menggambar sebuah peta pada sebuah komputer tidak jauh berbeda dengan " -"menggambar peta pada secarik kertas. Kita masih menggambarkan garis untuk " -"merepresentasikan jalan, lapangan, dan lain-lain, dan kita masih " -"merepresentasikan sekolah dan rumah sakit dengan simbol. Hal yang paling " -"penting adalah peta OSM dapat disimpan di dalam internet, dan siapapun dapat " -"mengakses peta tersebut kapanpun, secara gratis." - -# efc3500ddc1c4b33a579f81e09a5607a -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:95 -msgid "*Digital Maps with OpenStreetMap*" -msgstr "Peta digital dengan *OpenStreetMap*" - -# 9b94ae9668034edf8724aeda22326ec8 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:97 -msgid "" -"OSM is digital, which makes it extremely useful for us, and it is shared, " -"which means that everybody benefits from the work of everybody else." -msgstr "" -"OSM adalah digital, yang membuatnya sangat berguna bagi kita, dan di OSM " -"orang juga berbagi, yang berarti bahwa setiap orang memberikan manfaat untuk " -"orang lain." - -# 2cf9333b46844aa9a7d4d41495e3500d -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:101 -msgid "" -"In this unit, you will learn how to make a digital map. You will learn how " -"to use the OSM platform, and you will make your first edits and additions to " -"the worldwide map." -msgstr "" -"Dalam unit ini, Anda akan belajar bagaimana membuat peta digital. Anda akan " -"belajar bagaimana menggunakan platform OSM, dan Anda akan membuat perubahan " -"pertama Anda dan penambahan pada peta di seluruh dunia." - -# fd9109031a784a11aa3632a590799002 -#: ../../source/training/old-training/beginner/osm/101-basic-concept-of-osm-website.rst:105 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/102-working-with-osm.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/102-working-with-osm.po deleted file mode 100644 index 2a1e185f..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/102-working-with-osm.po +++ /dev/null @@ -1,465 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Wulansari Khairunisa , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:56+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 61c4e6871a0a4fa18778cdb64ba76265 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:6 -msgid "Module 2: Working with OSM" -msgstr "Modul 2: Pengoperasian OSM" - -# c762c41713894e4f87a37285f782ded8 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 361a62225e6947e28c704554f1d6f25b -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:10 -msgid "Visit OpenStreetMap website" -msgstr "Mengunjungi situs OpenStreetMap" - -# 86b93cf64ccf4d559f40468270bc46af -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:11 -msgid "Navigate map on OSM website" -msgstr "Menavigasi peta di situs OSM" - -# e98ee0b4feb144209400ca2c82316192 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:12 -msgid "Save an image from OSM" -msgstr "Menyimpan gambar dari OSM" - -# 6051ec994b364652a5f45a4e8d07d9a1 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:13 -msgid "Register an OSM account" -msgstr "Mendaftarkan akun OSM" - -# 5b9e53fae2c347e294ebea50d636fe99 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:14 -msgid "Edit the OSM map" -msgstr "Mengedit peta OSM" - -# fe6582e318a3469c966d88bf768d6d77 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:15 -msgid "Save edits" -msgstr "Menyimpan hasil editing" - -# 95c76692207b4055b9bf959478077c74 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:17 -msgid "" -"In this module we will learn step-by-step how to navigate the OpenStreetMap " -"website, view and print maps, and sign up for a user account. After you have " -"your own username and password, you will be able to add your first points to " -"the map." -msgstr "" -"Pada modul ini kita akan mempelajari langkah demi langkah bagaimana " -"mengoperasikan situs *OpenStreetMap*, melihat dan mencetak peta, dan " -"mendaftar untuk sebuah akun pengguna. Setelah Anda memiliki nama pengguna " -"dan kata kunci Anda sendiri, Anda dapat menambahkan titik pertama Anda pada " -"peta." - -# df1417c1870d4519a500e3b212ad176d -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:23 -msgid "1. The OpenStreetMap website" -msgstr "1. Situs *OpenStreetMap*" - -# b5835021aca34a20a1bf782178dab9a6 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:25 -msgid "Be sure that your computer is on and you are connected to the internet." -msgstr "Pastikan komputer anda telah terhubung dengan koneksi internet" - -# 680b579e34f64a8c8be94b288ef16f8b -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:27 -msgid "Open your web browser - Firefox, Chrome, Opera, or Internet Explorer." -msgstr "" -"Buka browser internet Anda - misalnya Firefox, Chrome, Opera, atau Internet " -"Explorer." - -# 0ae0af44427a47aab7452da7e99ce5e6 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:29 -msgid "" -"In the address bar at the top of the window, enter the following text: `www." -"openstreetmap.org `_" -msgstr "" -"Pada kolom alamat di atas jendela halaman browser anda, masukan teks berikut " -"ini: `www.openstreetmap.org `_" - -# c7a8da457b7a472d946fa9be41057bff -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:32 -msgid "When the page has finished loading, it should look something like this:" -msgstr "" -"Ketika halaman selesai dimuat, Anda seharusnya melihat halaman seperti " -"berikut: " - -# ffdc9d0deafb493baa7bbfeb13756a58 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:38 -msgid "2. Navigating the map" -msgstr "2. Menavigasikan Peta" - -# a8b6ee9bacc5465794fb5411ce23e3c3 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:40 -msgid "" -"The main thing we see is the map. Move the map by clicking on it with your " -"left mouse button, holding the button down, and dragging your mouse around." -msgstr "" -"Hal utama yang seharusnya Anda lihat adalah peta. Geser peta tersebut dengan " -"mengklik di atasnya dengan tombol kiri mouse, tahan tombol tersebut, dan " -"geser mouse Anda." - -# b4fa2e2258f945738b78be9a255e0513 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:44 -msgid "" -"If you have a mouse with a scroll-wheel, zoom in and out on the map by " -"turning the wheel. If you don’t have a scroll-wheel, click the :guilabel:`+` " -"and :guilabel:`-` buttons in the upper right corner of the map." -msgstr "" -"Jika Anda memiliki sebuah mouse dengan roda-gulir, perbesar dan perkecil " -"peta itu dengan menggeser roda tersebut. Jika Anda tidak memiliki roda-" -"gulir, gunakan tombol :guilabel:`+` dan :guilabel:`-` yang ada di pojok " -"kanan atas peta." - -# 27b335d6dd9f45b2be2f752427207ae3 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:49 -msgid "" -"To search for a place, left-click in the box labeled :guilabel:`Search` on " -"the left side of the page. Type in the name of your town or village and " -"press Enter. A window should appear to the left of the map with the results " -"of your search. Click on the location that looks closest to the one you " -"want. The map will automatically move to the location you choose." -msgstr "" -"Untuk melakukan pencarian tempat, klik kiri pada sebuah kotak yang " -"bertuliskan :guilabel:`Search` pada sisi kiri halaman. Ketik nama kota atau " -"desa Anda dan tekan :guilabel:`Enter`. Sebuah jendela akan muncul di sebelah " -"kiri peta dengan hasil pencarian Anda. Klik pada lokasi yang seperti " -"kriteria lokasi yang Anda cari. Peta secara otomatis akan bergeser ke lokasi " -"yang Anda pilih." - -# 2250ab423f71476bbc90c55abf1ee798 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:57 -msgid "3. Saving an image of the map" -msgstr "3. Menyimpan gambar dari peta" - -# bd53a751abf44ef4ab6618176ddaf96d -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:59 -msgid "" -"To save an image from OSM that you can easily print, follow these " -"instructions:" -msgstr "" -"Jika Anda ingin menyimpan sebuah gambar dari OSM yang dapat Anda cetak " -"dengan mudah, ikuti instruksi ini:" - -# 6d64fc5eeec748b991186eee38ca3423 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:62 -msgid "Click the :guilabel:`Share` button on the right side of the map." -msgstr "Klik pada tombol :guilabel:`Share` di sisi kanan peta." - -# 973d9058d2d54d78b15e58b8a8bd3041 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:67 -msgid "Options appear which look like this:" -msgstr "akan muncul pilihan seperti ini:" - -# 4db9c546ef454d12837759045c40d067 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:72 -msgid "" -"In the :guilabel:`Image` section, check the box next to :guilabel:`Set " -"custom dimensions` to manually specify the extent of the area for download. " -"Drag the box which appears to the area you would like to get as an image " -"file." -msgstr "" -"Pada bagian :guilabel:`Image`, centang :guilabel:`Set custom dimensions` " -"jika Anda ingin menentukan secara manual daerah yang akan Anda download. " -"Geser kotak yang muncul ke wilayah yang ingin Anda dapatkan file gambarnya." - -# 775e4501fbaf4839ae40bcce3980032c -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:77 -msgid "" -"Set the format to PNG, JPEG, SVG or PDF format according to your preference." -msgstr "Atur format ke PNG, JPEG, SVG, atau PDF sesuai dengan preferensi Anda." - -# a758cae2ac4f47c5bd3809b8bfed11d0 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:80 -msgid "" -"You may enter a scale in the next box. The larger the scale (meaning a " -"smaller number), the larger the image size will be. Scale is a ratio. For " -"example, entering 5000 here means that objects on the map will be 1/5000th " -"the size that they are in real life." -msgstr "" -"Anda dapat memasukkan skala pada kotak selanjutnya. Semakin besar skala " -"(berarti angka yang lebih kecil), maka ukuran gambar semakin besar . Skala " -"adalah rasio. Sebagai contoh, memasukkan angka 5000 berarti bahwa ukuran " -"objek pada peta 1/5000 ukurannya dalam kehidupan nyata." - -# c1d283fd231c456b8c3be2acac0f1357 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:85 -msgid "" -"Click the :guilabel:`Download` button. The image will be created, downloaded " -"and saved to your computer." -msgstr "" -"Klik tombol :guilabel:`Download`. Gambar akan dibuat, proses download akan " -"dimulai dan tersimpan dalam komputer Anda. " - -# f486cd48e667411092a83d532e9f2714 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:88 -msgid "" -"Open the downloaded file. It can be printed by going to :menuselection:`File " -"‣ Print`, after you connect your computer to a printer." -msgstr "" -"Buka file yang telah Anda download tadi. File tersebut dapat dicetak dengan " -"memilih :menuselection:`File ‣ Print`, setelah Anda menghubungkan komputer " -"Anda dengan sebuah printer. " - -# 6263c3af214049818cf32cb58bae4fed -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:93 -msgid "4. Creating an OpenStreetMap account" -msgstr "4. Membuat sebuah akun OpenStreetMap" - -# 02f3325721eb4cd9983dd2408b41f87f -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:95 -msgid "" -"Now that we have seen the website, we must create an OSM account so we can " -"start mapping." -msgstr "" -"Sekarang setelah melihat situs OSM, kita harus membuat akun OSM agar kita " -"dapat memulai memetakan." - -# e3e0b47f4699435590043721c99663e1 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:98 -msgid "" -"Return to the OSM website. Click :guilabel:`Sign Up` in the top right corner " -"of the page." -msgstr "" -"Kembali ke situs OSM. Klik :guilabel:`Sign Up` pada pojok kanan atas " -"halaman. " - -# e1549bd74d994fe28fc36cd7e525069c -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:101 -msgid "You should see a new page that looks like this:" -msgstr "Anda akan melihat sebuah halaman baru seperti berikut:" - -# cf5c314db21e4a0fabe223f87f353c21 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:106 -msgid "" -"There are five boxes on this page that you need to fill in to register an " -"account with OSM." -msgstr "" -"Akan ada lima kolom di halaman tersebut yang wajib anda isi untuk dapat " -"membuat akun di OSM." - -# 16af4178fd2146758e2a982d2c1c623a -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:109 -msgid "" -"Enter your email address in the first two boxes. You should enter the same " -"email address in both boxes. Later, you will need to open your email to " -"confirm your account with OSM." -msgstr "" -"Ketik alamat email Anda pada dua kotak pertama. Anda harus memasukkan alamat " -"email yang sama di kedua kotak. Kemudian Anda perlu membuka email Anda untuk " -"mengkonfirmasi akun Anda dengan OSM. " - -# 69ad02fbe3a549b7b390c48f1f850fe8 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:113 -msgid "" -"In the third box, enter the username that you would like to have. You will " -"not be able to choose a username that someone else has chosen before, so it " -"should be creative. If you try to enter something simple, like your first " -"name, it is likely that someone has already claimed that name." -msgstr "" -"Pada kotak ketiga, ketikan nama pengguna yang Anda inginkan. Anda tidak " -"dapat memilih sebuah nama pengguna yang orang lain sudah pilih sebelumnya, " -"jadi nama pengguna ini haruslah unik. Jika Anda mencoba mengetikkan sesuatu " -"yang sederhana, misalnya hanya nama pertama Anda, kemungkinan seseorang " -"sudah menggunakan nama tersebut. " - -# 86d223e75d064964b93e84d73511a3c4 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:119 -msgid "" -"Enter a new password in the fourth and fifth boxes. Enter the same password " -"in both boxes. It does not need to be the same as the password for your " -"email." -msgstr "" -"Masukan sebuah kata sandi baru pada kotak keempat dan kelima. Anda harus " -"mengisi kata sandi yang sama pada kedua kotak. Kata sandi tidak harus sama " -"dengan kata sandi email Anda. " - -# 4d86b485ef9e4d488ab6c5fba6eae6c1 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:123 -msgid "" -"You will need to remember your user name and your password so that you can " -"login later." -msgstr "" -"Anda harus mengingat nama pengguna dan kata sandi Anda sehingga Anda dapat " -"masuk nantinya." - -# d8398eab72c84a80b9021b318bc28587 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:126 -msgid "" -"After completing all the boxes, click :guilabel:`Continue` at the bottom of " -"the page." -msgstr "" -"Setelah Anda menyelesaikan semua kotak, klik :guilabel:`Continue` pada " -"bagian bawah halaman." - -# 4a2c035eeb6f4cd7a7e78f20e6c5d441 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:129 -msgid "" -"If there are any problems, an error message may pop up. Check to make sure " -"that your email is the same in the first to boxes, and your password is the " -"same in the bottom two boxes. If the third box is highlighted red, it means " -"that someone else has already chosen your username, and you should try a " -"different name." -msgstr "" -"Jika terdapat masalah, sebuah pesan kesalahan akan muncul. Pastikan alamat " -"email Anda sama dengan kotak pertama, dan kata sandi Anda sama pada dua " -"kotak dibawah. Jika kotak ketiga ditandai berwarna merah, itu berarti " -"seseorang telah menggunakan nama pengguna Anda, dan Anda harus mencoba nama " -"yang berbeda." - -# f31ad3a838484b97b953320ee2320782 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:135 -msgid "" -"Open a separate window or tab in your internet browser, and navigate to your " -"email. Common email sites are `mail.yahoo.com `_ and " -"`gmail.com `_." -msgstr "" -"Bukalah sebuah jendela baru atau tab baru pada browser, dan arahkan ke email " -"Anda. Situs email yang umum adalah `mail.yahoo.com `_ " -"dan `gmail.com `_." - -# a744557b60734a7fb59e67eaaed8936d -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:140 -msgid "" -"Enter your email address and your email password to open your email. Note " -"that this is not the same as your OSM username and password." -msgstr "" -"Ketikkan alamat email Anda dan kata sandi email Anda untuk membuka email " -"Anda. Perhatikan bahwa ini tidak sama dengan nama pengguna dan kata sandi " -"OSM." - -# 3fac19c22b2c4f449f7f591ea97ca90c -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:143 -msgid "" -"If everything was successful with your registration, you should see an email " -"from OSM in your inbox. Open the email. It should look like the image below. " -"Click on the link that is identified below:" -msgstr "" -"Jika semuanya telah sukses dengan registrasi, Anda seharusnya melihat sebuah " -"email dari OSM pada kotak masuk Anda. Buka email. Itu seharusnya terlihat " -"seperti gambar dibawah ini. Klik pada tautan seperti yang ditunjukkan di " -"bawah ini:" - -# 9f580e948c0943d59ace815c06cd43e5 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:152 -msgid "" -"A new tab or window will open. If everything went well, you should have an " -"OSM account!" -msgstr "" -"Sebuah tab baru atau jendela akan terbuka. Jika semuanya berjalan lancar, " -"seharusnya Anda telah memiliki akun OSM!" - -# 0f17dd25ccfa4c62be7e999b5a2c18a0 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:155 -msgid "" -"On the OSM page, click :guilabel:`Log In` in the top right corner. Enter " -"your OSM username and password and press Enter. You should now be logged in. " -"You will see your username in the upper right corner of the page." -msgstr "" -"Pada halaman OSM, klik :guilabel:`Log In` pada sudut kanan atas. Masukkan " -"nama pengguna OSM dan kata sandi dan tekan Enter. Anda seharusnya bisa masuk " -"sekarang. Anda akan melihat nama pengguna di sudut kanan atas halaman." - -# 53b3086bcbb144d095b4d7f9d78b1adf -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:161 -msgid "5. Adding your first points" -msgstr "5. Menambahkan titik pertama Anda" - -# fabeac14c7bf43f68e9f25077df1ae24 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:163 -msgid "" -"Now that you are logged in with your username on the OSM website, you can " -"add your first point to the map." -msgstr "" -"Sekarang Anda telah masuk dengan nama pengguna Anda pada situs OSM, Anda " -"dapat menambahkan titik pertama pada peta." - -# 0017290e3556484b9814f46c38088f21 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:166 -msgid "" -"Move the map to a place that you know very well, such as your town or " -"village." -msgstr "" -"Geser peta ke tempat yang Anda ketahui, misalnya kota atau desa tempat Anda " -"tinggal." - -# a2733ffccc384ed9b571001d1805a479 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:168 -msgid "Zoom in to a place where you would like to add a point to the map." -msgstr "" -"Perbesar ke area yang Anda ingin tambahkan sebuah titik di peta tersebut." - -# 77d5e375d74c4a6d9ddbe6c96653b596 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:170 -msgid "" -"Just above the map on the left, there is a button marked :guilabel:`Edit`. " -"Click on the arrow next to it to open a drop-down menu." -msgstr "" -"Di atas peta di sebelah kiri, terdapat sebuah tab yang tertulis :guilabel:" -"`Edit`. Klik pada tanda panah untuk membuka menu tambahan." - -# c70af1074fcb4d5095afda817394ff50 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:173 -msgid "Click :guilabel:`Edit with iD (in-browser editor)`" -msgstr "Klik :guilabel:`Edit with iD (pada browser editor)`" - -# 7dedac9d97724d8fb3410aab63cd858a -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:175 -msgid "" -"The online editor for OSM should open. For a tour of the editor, click :" -"guilabel:`Start the Walkthrough`. To begin editing, click :guilabel:`Edit " -"Now`." -msgstr "" -"Editor online untuk OSM seharusnya terbuka. Untuk petunjuk menggunakan " -"editor, klik :guilabel:`Start the Walkthrough`. Untuk memulai mengedit, " -"klik :guilabel:`Edit Now`." - -# 3554eb61919c4470b0987caa5c0478b0 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:178 -msgid "" -"Add a point to the map by clicking :guilabel:`Point` at the top, and then " -"clicking a location on the map. Select the type of location from the menu on " -"the left and add any other information that you know. If you are satisfied " -"that the information is correct, click :guilabel:`Save` at the top." -msgstr "" -"Tambahkan titik ke peta dengan klik :guilabel:`Point` di atas, dan kemudian " -"klik sebuah lokasi pada peta. Pilih tipe dari lokasi dari menu di sebelah " -"kiri dan tambahkan beberapa informasi lain yang Anda tahu. Jika Anda merasa " -"yakin infromasi sudah benar, klik guilabel:`Save` di atas." - -# 86d6c1f2dbc240f3a3132ecce542e3a9 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:183 -msgid "" -"If you are not sure about the accuracy of the point(s) you add, don’t click :" -"guilabel:`Save`! Play around with the iD editor, but don’t save your changes." -msgstr "" -"Jika Anda tidak yakin terhadap keakuratan dari titik (point) yang Anda " -"tambahkan, jangan klik :guilabel:`Save`! Berlatihlah dengan iD editor, " -"tetapi jangan simpan perubahan Anda." - -# 74d727685091409a81f24596b331bda5 -#: ../../source/training/old-training/beginner/osm/102-working-with-osm.rst:188 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/103-working-with-josm.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/103-working-with-josm.po deleted file mode 100644 index 52010d58..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/103-working-with-josm.po +++ /dev/null @@ -1,819 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Dewi Sulistioningrum , 2013 -# Werner Macho , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 07:37+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 6a58e2cdf6cb47bb8cb8dbf858a3d301 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:6 -msgid "Module 3: Working with JOSM" -msgstr "Modul 3: Pengoperasian JOSM" - -# 59f842d2cbb24d68aae5d51409768e76 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 7bb5fee52ba44c6e9b942b9d8814ce71 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:10 -msgid "Download JOSM" -msgstr "Melakukan download JOSM" - -# 94e582b24a16434c9e600c8d640aa5db -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:11 -msgid "Install JOSM" -msgstr "Instal JOSM" - -# b27aa1a4e67d491280b84d91ffa34db6 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:12 -msgid "Set JOSM preferences" -msgstr "Mengubah pengaturan JOSM" - -# bbd35adf522d4ee4aa0b4f8ef364ac3a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:13 -msgid "Use basic tools" -msgstr "Menggunakan tools dasar" - -# 2776dc734c1445649da91f256904f1de -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:14 -msgid "Draw nodes and ways in JOSM" -msgstr "Menggambar nodes dan garis di JOSM" - -# 229da7fee544429187ece50849c099f2 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:15 -msgid "Change objects" -msgstr "Mengubah Objek" - -# 2819a9f645e94442bbdc2329239d27c4 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:16 -msgid "Add tags to objects using presets menu" -msgstr "Memberikan informasi terhadap objek dengan menggunakan menu presets" - -# 7a60f39cc13947ecb553714f32fbc43a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:18 -msgid "" -"In this module we will learn step-by-step how to download and install JOSM, " -"the Java OpenStreetMap editor. We will change some of the settings in JOSM " -"to make it easier to use. Then we will open a sample map and learn some of " -"the basic operations of the software. Remember in :ref:`Module 1 ` when we asked you to draw a map of your town or " -"village? We will conclude this module by drawing your map again, this time " -"digitally. After this you should have a good understanding of how to draw " -"maps in JOSM." -msgstr "" -"Pada modul ini kita akan mempelajari langkah demi langkah bagaimana untuk " -"mendownload dan menginstall JOSM, Java OpenStreetMap editor. Kita akan " -"merubah beberapa pengaturan pada JOSM agar lebih mudak digunakan. Kemudian " -"kita akan membuka sebuah peta contoh dan mempelajari operasi dasar dari " -"perangkat lunak tersebut. Ingat pada :ref:`Modul 1 ` ketika kami meminta anda untuk menggambarkan sebuah peta desa atau " -"kota anda? Kita akan menyimpulkan modul ini dengan menggambarkan peta anda " -"kembali, kali ini dalam bentuk digital. Setelah itu anda akan memiliki " -"pemahaman yang baik bagaimana menggambar peta pada JOSM." - -# c407063471fd4cf9b14a97c4d8ad38b8 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:28 -msgid "1. Downloading JOSM" -msgstr "1. Download JOSM" - -# 1c9c6c6c858749e7ac3b619004111c0d -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:30 -msgid "" -"There is a copy of JOSM in the :file:`software/` folder of the package that " -"accompanies this course. If you don’t have this or would like the most up-to-" -"date version, follow the instructions here. Otherwise skip ahead to :ref:" -"`install-josm`." -msgstr "" -"Tersedia software JOSM di :file:`software/` folder yang terdapat dalam paket " -"panduan ini. Jika Anda belum memilikinya atau ingin memperbaharui versi, " -"ikuti perintahnya di sini. Jika tidak Anda dapat melewati bagian ini dan " -"langsung menuju ke :ref:`install-josm`." - -# 7c62402e6c844c9d96813f193fddbde1 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:35 -msgid "" -"Open your web browser - this may be Firefox, Chrome, Opera, or Internet " -"Explorer." -msgstr "" -"Buka browser internet Anda - misalnya Firefox, Chrome, Opera, atau Internet " -"Explorer." - -# 3a13429cad284153afe5852f882cea7a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:38 -msgid "" -"In the address bar at the top of the window, enter `josm.openstreetmap.de " -"`_ and press :kbd:`Enter`:" -msgstr "" -"Dalam kotak alamat yang berada di atas jendela, masukkan `josm.openstreetmap." -"de `_ and tekan :kbd:`Enter`:" - -# c817b29454e04232b49d1c0d3ae880ab -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:42 -msgid "The website should look something like this:" -msgstr "Situs tersebut akan terlihat seperti berikut:" - -# 466b9aff6d714d55af47edef4715dbd5 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:47 -msgid "" -"If you are running Windows, click :guilabel:`Windows Installer` to download " -"JOSM. If you have a different operating system, click on the link for your " -"system. Your download should begin. In this module we assume that you are " -"using Windows, but the instructions are similar for other operating systems." -msgstr "" -"Jika Anda menjalankan Windows, klik :guilabel:`Windows Installer` untuk " -"mendownload JOSM. Jika Anda menggunakan sistem operasi yang berbeda, klik " -"tautan pada sistem, Anda akan segera men-download JOSM. Dalam modul ini kita " -"mengasumsikan Anda semua menggunakan Windows, akan tetapi untuk Sistem " -"Operasi yang lain langkah-langkahnya tidak akan jauh berbeda." - -# 27c43bf186b34e2b9ca79400bc53de86 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:56 -msgid "2. Installing JOSM" -msgstr "2. Cara Menginstal JOSM" - -# b5e2e639ebb44f12b9d3a242db1ecc32 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:58 -msgid "" -"You may have problems installing JOSM if Java is not already installed on " -"your computer. Install Java by running :file:`jre-8u25-windows-i586` in the :" -"file:`software/` folder. The exact version may be different. The most up-to-" -"date version can also be downloaded here: `http://www.java.com/en/download/ " -"`_" -msgstr "" -"Anda mungkin memiliki masalah dalam menginstal JOSM jika Java belum " -"terinstal di komputer Anda. Anda dapat menginstal java terlebih dahulu " -"dengan menjalankan :file:`jre-8u25-windows-i586` yang terdapat dalam :file:" -"`software/` folder. Untuk versi paling terbaru Anda juga dapat " -"mendonwloadnya disini: `http://www.java.com/en/download/ `_" - -# 572bb39539cc44f389af98d19e1df656 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:64 -msgid "" -"Find the JOSM install file on your computer. It should be named :file:`josm-" -"setup.exe`. Double-click it to begin setup." -msgstr "" -"Temukan file untuk menginstal JOSM di komputer Anda. File tersebut bernama :" -"file:`josm-setup.exe`. Klik 2 kali untuk memulai pengaturan." - -# eea29cad8b6b4832afbda164afe64fd8 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:67 -msgid "" -"Click :guilabel:`OK`, :guilabel:`Next`, :guilabel:`I Agree` and :guilabel:" -"`Install`. When the installation is complete, click :guilabel:`Finish` to " -"launch JOSM for the first time. Later when you want to start JOSM, you can " -"do so by clicking on the :guilabel:`Start Menu` in the lower-left corner of " -"your computer, and clicking the program JOSM." -msgstr "" -"Klik :guilabel:`OK`, :guilabel:`Next`, :guilabel:`I Agree`, dan :guilabel:" -"`Install`. Ketika instalasi telah selesai, klik :guilabel:`Finish`untuk " -"membuka JOSM Anda pertama kali. Nantinya, ketika Anda ingin membuka JOSM, " -"Anda dapat klik :guilabel:`Start Menu` di sudut kiri bawah komputer Anda, " -"dan klik program JOSM." - -# 9a964b9bdd8b4444905ce4ba1667bfee -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:73 -msgid "" -"A window may pop up that asks if you want to update the software. It is not " -"necessary to update since it is new. Click the :guilabel:`Cancel` button. If " -"you don’t ever want to see this message again, check the box at the bottom " -"before pressing :guilabel:`Cancel`." -msgstr "" -"Anda akan melihat jendela pop up yang akan meminta Anda untuk memperbaharui " -"software. Anda tidak harus melakukannya. Tekan tombol “Cancel.” Jika Anda " -"tidak ingin melihat pesan ini lagi, beri tanda centang pada kotak yang " -"berada di bawah sebelum memilih “Cancel.”" - -# 7a892ee90b9c4f169f65aab107a4131c -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:78 -msgid "When JOSM starts, it will look something like this:" -msgstr "Ketika JOSM Anda dibuka, tampilannya akan seperti berikut:" - -# ad3fcac921d6401ab7725a3be9c4e3a2 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:84 -msgid "3. Changing JOSM settings" -msgstr "3. Cara Mengubah Pengaturan JOSM" - -# 9350f43483e14ef1a3cd09072dfb619a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:86 -msgid "" -"Before we begin using JOSM, it’s a good idea to change some of the settings " -"so that it will be easier to use. To change the settings, go to :" -"menuselection:`Edit ‣ Preferences`." -msgstr "" -"Sebelum kita memulai menggunakan JOSM, kita sebaiknya melakukan perubahan " -"terhadap beberapa pengaturan yang akan lebih memudahkan kita ketikan " -"menggunakan JOSM. Untuk mengubah pengaturan, klik :menuselection:`Edit ‣ " -"Preferensi`." - -# 5349125146b141f6bf070c3c076b63c0 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:94 -msgid "3.1. Adding Bing imagery" -msgstr "3.1. Cara Menambahkan Citra Satelit Bing" - -# 3f381f0fb15a4053a5e4ea49852c3b8b -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:96 -msgid "" -"This may be unnecessary if Bing Imagery is already activated in your copy of " -"JOSM." -msgstr "" -"Ini tidak dibutuhkan jika citra satelit Bing telah diaktifkan didalam *copy* " -"JOSM Anda." - -# cb0ae00562b241d395cb5e8fa8d7ee48 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:99 -msgid "" -"In order to use satellite imagery while making our maps, we must make sure " -"that it is enabled in the JOSM settings." -msgstr "" -"Untuk menggunakan citra satelit ketika membuat peta, kita harus memastikan " -"bahwa Bing telah diaktifkan didalam pengaturan JOSM." - -# 7120b162a3b24a3fa636b52326777cdc -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:102 -msgid "" -"On the left side of the Preferences window there are different icons for " -"different settings. Click the icon that says :guilabel:`WMS TMS`. You may " -"need to click on the down arrow to find it:" -msgstr "" -"Pada sebelah kiri jendela preferensi terdapat beberapa ikon/simbol yang " -"mewakili pengaturan tertentu. Klik ikon yang menyatakan “WMS TMS”. Anda " -"mungkin perlu untuk klik dan arahkan ke bawah untuk menemukannya :" - -# 5f7ae65d51ad4747ae74493455bda705 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:112 -msgid "Click on :guilabel:`Bing Sat`. Then click :guilabel:`Activate`." -msgstr "Klik :guilabel:`Bing Sat`. Lalu klik :guilabel:`Aktifkan`." - -# 134898550d424bfdb2ff2591aca99c4a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:117 -msgid "" -":guilabel:`Bing Sat` should now be in the list below the :guilabel:" -"`Activate` button." -msgstr "" -":guilabel:`Bing Sat` seharusnya saat ini terdapat didalam daftar yang berada " -"di bawah tombol :guilabel:`Aktifkan` " - -# 10c17189fce844e8af7b367234bb1ea4 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:121 -msgid "3.2. Adding presets" -msgstr "3.2. Cara Menambahkan Presets" - -# cd97999c93144b2b921cadd977a6417e -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:123 -msgid "" -"We will be using presets so that we can add special data to OSM. Don’t worry " -"if this is unclear right now - we will learn more about presets as we go " -"along." -msgstr "" -"Kita akan menggunakan presets sehingga kita dapat menambahkan data khusus " -"yang kita inginkan ke dalam OSM. Jangan khawatir jika hal ini belum jelas, " -"kita akan mempelajari mengenai preset dengan panduan ini." - -# 239f22a3abba42939986577e5a197e59 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:127 -msgid "" -"You should still have the Preferences window open. If not, go to :" -"menuselection:`Edit ‣ Preferences` to open the window." -msgstr "" -"Jendela Preferensi Anda seharusnya masih terbuka. Jika tidak klik :" -"menuselection:`Edit ‣ Preferensi` untuk membukanya." - -# 04e381d545d84f3dbf1486c014bb4d85 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:130 -msgid "On the left side, click the icon that looks like a grid." -msgstr "" -"Di sisi sebelah kiri, klik ikon yang terlihat seperti grid di bawah ini." - -# f2f89d6ed6d748bb99eda90ddeb3d422 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:135 -msgid "Click the tab at the top that reads :guilabel:`Tagging Presets`." -msgstr "Klik tab di sebelah atas yang bernama :guilabel:`Tagging Presets`." - -# 8a6410a5698e4ddbb6cdf3f19da07c93 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:137 -msgid "" -"Under :guilabel:`Available Presets` find and select the entry labelled :kbd:" -"`Buildings Indonesia`. Click the blue arrow to the right of this box." -msgstr "" -"Dibawah :guilabel:`Preset tersedia` cari dan pilih preset yang bernama :kbd:" -"`Buildings Indonesia`. Lalu klik tanda panah biru yang berada di sebelah " -"kanan kotak." - -# 86f7b72237de4331a0152731dad7fa0b -# 410242614a424e86b0a86167f83fa7ab -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:143 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:188 -msgid "Click :guilabel:`OK`." -msgstr "Klik :guilabel:`OK`." - -# e84c080a4ce048f9b20c7cd07e315ef1 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:146 -msgid "3.3. Adding plugins" -msgstr "3.3. Penambahan berbagai Plugin" - -# 2c48c4379a7d4aeb8ddc4921dd8f21f1 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:148 -msgid "" -"Plugins provide extra functionality for specific purposes. JOSM has many " -"plugins that can be downloaded. To install a plugin follow these steps:" -msgstr "" -"Plugin menyediakan fungsi ekstra untuk tujuan yang spesifik. JOSM memiliki " -"banyak plugin yang dapat didownload. Untuk menginstall plugin ikuti langkah " -"berikut:" - -# 1958c52d53514469bed823da43d673bc -# a8703b70c8cf4b62b8ee548fde49e694 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:151 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:180 -msgid "Make sure the Preferences window is open." -msgstr "Pastikan jendela Preferensi terbuka." - -# c9e05dff4ae04814ae0c0678d50ae0c3 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:153 -msgid "Click the :guilabel:`Plugin` icon on the left:" -msgstr "Klik ikon :guilabel:`Plugin` disebelah kiri:" - -# 403fd79ebdd94472a9883c16e8330dc2 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:158 -msgid "" -"On the plugin tab, first download the plugin list by clicking :guilabel:" -"`Download list`. It may take a few minutes." -msgstr "" -"Pada tab plugin, pertama download daftar plugin terlebih dahulu dengan klik :" -"guilabel:`Download daftar`. Ini membutuhkan waktu beberapa menit." - -# c89f4112728c44f7b3a79d81da872790 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:161 -msgid "" -"After the plugin list appears, type the name of the plugin you want to " -"download in the :guilabel:`Search` box." -msgstr "" -"Setelah daftar plugin muncul, ketikkan nama plugin yang ingin Anda download " -"pada kotak :guilabel:`Cari`" - -# 948a7993fb084929be0f2ed74ec9bb77 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:167 -msgid "When the plugin is found, check the box to the left of the plugin name." -msgstr "" -"Setelah menemukan plugin, berikan tanda centang di sebelah kiri nama plugin." - -# 29e42a044ec845fda9e3e7308cd1190a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:169 -msgid "Click :guilabel:`OK` to download and install the selected plugins." -msgstr "Klik :guilabel:`OK` untuk download dan install plugin yang dipilih." - -# 15a91a3e4cfe4db688f0d371e03fc1d5 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:171 -msgid "" -"Skim through the list to see what sort of additional features are available " -"through plugins." -msgstr "" -"lakukan penyaringan melalui daftar untuk melihat berbagai fitur tambahan " -"yang tersedia pada plugin." - -# 8dc0e847c36d4da7ab713f7261f42fa8 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:175 -msgid "3.4. Changing the language" -msgstr "3.4. Cara Memilih Bahasa" - -# c1d3da4b678746219303b0e3e8f13a36 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:177 -msgid "" -"JOSM has been translated into many languages. If it has been translated into " -"your language, you can change it in the Preferences." -msgstr "" -"JOSM telah diterjemahkan ke dalam berbagai bahasa. Jika bahasa Anda sudah " -"diterjemahkan maka Anda dapat menggunakannya, dengan menggantinya didalam " -"Preferensi." - -# ced9150eb39744899326443ed8bdb43a -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:182 -msgid "" -"On the left side, click the icon that looks like a paint can and paintbrush." -msgstr "" -"Di sisi sebelah kiri, klik ikon yang terlihat seperti kaleng dan kuas cat." - -# 3dc591235c234877b818e687e91c5973 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:184 -msgid "" -"At the top of the window, click the tab that says :guilabel:`Look and Feel`." -msgstr "Di atas jendela, klik kotak yang bernama :guilabel:`Look and Feel`." - -# 1f89dc564fb54a789ea149e72a8267fe -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:186 -msgid "" -"Choose your language in the drop-down box next to the word :guilabel:" -"`Language`." -msgstr "" -"Pilih bahasa Anda di kotak daftar pilihan disebelah kata :guilabel:`Bahasa`" - -# c51c3f8a7d9e43b9ac4efb17093026b7 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:193 -msgid "" -"JOSM must be restarted to save the language settings. Go to :menuselection:" -"`File ‣ Exit`." -msgstr "" -"JOSM harus direstart untuk menyimpan pengaturan bahasa. Silahkan menuju :" -"menuselection:`Berkas ‣ Keluar`." - -# e8dbf871f45c47f59c4afa6e286b5fc1 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:196 -msgid "" -"Start JOSM again by going to the Windows :guilabel:`Start Menu`. Find JOSM " -"and click on it to start." -msgstr "" -"Mulai dan buka JOSM kembali dengan menuju Windows :guilabel:`Start Menu`. " -"Cari JOSM dan klik untuk memulai." - -# ff57cb2432814682a34d8defbb621f4b -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:200 -msgid "4. Basic drawing with JOSM" -msgstr "4. Latihan Dasar Menggambar dengan JOSM" - -# a66cc17762324def9403305602936946 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:202 -msgid "" -"Now let’s open up a sample OSM file which we will use to learn the basic " -"ways to draw maps with JOSM. Note that this map is not real, in that it is " -"not a real map of a real place, so we will not save it on OSM." -msgstr "" -"Sekarang silahkan buka contoh file OSM yang akan digunakan untuk mempelajari " -"cara dasar dalam menggambar peta dengan JOSM. Perlu diingat bahwa peta ini " -"hanya untuk latihan, jadi kita tidak akan menyimpan hasil peta ini dalam OSM." - -# 8295cb6e2496431d88128085cca5419e -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:207 -msgid "The file is located in :file:`osm/` and is named :file:`sample.osm`." -msgstr "File ini berlokasi di :file:`osm/` dan namanya:file :`sample.osm`." - -# 6d6c384c8cb548878e4b3d286e07402c -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:209 -msgid "Open JOSM. Go to :menuselection:`Open`." -msgstr "Buka JOSM. Silahkan menuju :menuselection:`Buka`." - -# 57cf9fba80414a37afb8318694d25515 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:214 -msgid "" -"Navigate to the file :file:`sample.osm`. Click on it, and then click :" -"guilabel:`Open`." -msgstr "Anda akan menemukan file :file:`sample.osm`. Klik :guilabel:`Buka`." - -# a743fdfc413041e3bc799887ec9533ca -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:217 -msgid "You should now see a sample map, similar to this:" -msgstr "Anda akan melihat sebuah contoh peta seperti berikut :" - -# c3c8ae7c36464e28a07c7fbe1d88cb22 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:223 -msgid "4.1. Basic operations" -msgstr "4.1. Operasi Dasar" - -# 8ffcd03a2e874a9fb2a5e679f17626fd -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:225 -msgid "" -"To move the map left or right, up or down, hold the right mouse button down, " -"and move the mouse." -msgstr "" -"Untuk menggerakkan peta ke kanan atau ke kiri, naik atau turun, klik kanan " -"lalu tahan Anda gerakkan mouse Anda." - -# 86363599827d411593de7feb85fe5112 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:228 -msgid "" -"There are several ways to zoom in and out of the map. With a mouse, the " -"scroll wheel is used to zoom in and out. If you are using a laptop and don’t " -"have a mouse, zoom in and out using the scale bar in the upper-left of the " -"map window. Drag the bar left and right by holding your left mouse down and " -"moving the bar left or right with your mouse." -msgstr "" -"Ada beberapa cara untuk memperbesar dan memperkecil peta Anda. Jika Anda " -"memiliki mouse, Anda dapat Anda dapat meng-scroll roda yang ada pada mouse " -"Anda untuk memperbesar atau memperkecil peta. Jika Anda menggunakan laptop " -"dan tidak memiliki mouse Anda dapat memperbesar dan memperkecilnya " -"menggunakan skala baris di sebelah kiri di jendela peta Anda. Tahan dan " -"geser ke kiri dan ke kanan dengan mouse Anda." - -# 1da813f726294be0a8be43b91da3eed7 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:237 -msgid "" -"Look at the sample map. There are a few different types of objects here. " -"There is a river, a forest, some buildings, several roads, and a couple of " -"shops. To select an object, click on it with your left mouse button." -msgstr "" -"Lihat peta contoh. Terdapat beberapa perbedaan jenis objek di sana. Ada " -"sungai, hutan, beberapa bangunan, jalan dan sepasang tempat berbelanja. " -"Untuk memilih objek, klik kiri pada objek tersebut." - -# 54b00eeb5c7b4b7a8d01983eb87e7e46 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:242 -msgid "4.2. Points, lines, and shapes (polygons)" -msgstr "4.2. Titik, Garis dan Bentuk (poligon)" - -# afbdd9685bf94b57b08d6bf7470b83a1 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:244 -msgid "" -"As you click different objects on the sample map, notice that there are " -"three different types of objects on the map. There are points, lines, and " -"shapes. In mapping, shapes are usually called *polygons*." -msgstr "" -"Ketika Anda mengklik objek yang berbeda pada peta contoh, perhatikan bahwa " -"terdapat 3 jenis objek pada peta tersebut. Ketiga jenis objek tersebut " -"adalah titik, garis dan poligon. Dalam pemetaan, bentuk biasanya disebut " -"sebagai *poligon*." - -# a3d047c558a84e61a664cf25c69712e3 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:248 -msgid "" -"Points are a single location, represented by symbols. On this sample map, " -"there are two points, a clothing shop and a market. The clothing shop is " -"represented by a shirt symbol, and the market is represented by a shopping " -"cart." -msgstr "" -"Titik adalah suatu lokasi yang digambarkan dengan simbol. Dalam peta ini " -"terdapat 2 titik, yaitu toko baju dan pasar. Toko baju digambarkan dengan " -"simbol kaos dan pasar digambarkan dengan simbol keranjang belanja." - -# 0e82c37758d1422498a45b8c14462d93 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:253 -msgid "" -"There are several lines on the map as well, which represent roads. If you " -"look closely you will see that within the lines, there are points as well. " -"These points don’t have any symbols or other information associated with " -"them, but they help to define where the line is located." -msgstr "" -"Ada beberapa garis yang terdapat didalam peta, yang menggambarkan jalan. " -"Jika Anda melihat dengan lebih teliti akan melihat dalam garis terdapat " -"titik-titik. Titik-titik tersebut tidak memiliki simbol atau informasi " -"apapun tetapi akan membentuk garis tersebut." - -# 377f9d16775845c395df4f9c0b77c401 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:258 -msgid "" -"Lastly, there are numerous shapes on the sample map, representing different " -"places - a forest, a river, and buildings. A shape generally represents an " -"area, like a field or a building. A shape is exactly like a line - the only " -"difference is that the line begins at the same point where it ends." -msgstr "" -"Terakhir, ada beberapa poligon dalam peta contoh ini yang menunjukkan tempat-" -"tempat yang berbeda seperti hutan, sungai dan bangunan. Suatu poligon secara " -"umum mewakili suatu area seperti lapangan ataupun bangunan. Poligon sama " -"seperti garis akan tetapi perbedaannya poligon terdiri dari beberapa garis " -"yang membentuk dimana titik akhir berada sama dengan titik awal garis " -"tersebut." - -# e0a1f1d878a04b9498659ce1c25d9bc0 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:264 -msgid "" -"Notice that when you select an object, a list appears to the right of the " -"map in a window called :guilabel:`Properties`. These are known as tags. " -"**Tags** are information that is tied to a point, line or shape that " -"describes what it is. For now all you need to know is that this information " -"helps describe whether our object is a forest, a river, a building or " -"something else." -msgstr "" -"Anda akan menyadari ketika objek yang Anda pilih, akan muncul beberapa " -"daftar di sebelah kanan jendela yang disebut :guilabel:`Properti`. Hal ini " -"disebut sebagai tags. Tags adalah informasi yang dimana merupakan bagian " -"dari suatu titik, garis ataupun poligon yang memberitahukan informasi objek " -"tersebut. Untuk sekarang yang Anda butuhkan adalah mengetahui informasi ini " -"untuk menjelaskan apakah objek Anda itu hutan, sungai atau bangunan atau " -"bentuk lain." - -# e06a56cc729b4690aa9d69c2dae8fee4 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:271 -msgid "" -"Think about drawing a map by hand, and how you are also drawing points, " -"lines and shapes. What other places are best represented by points? Lines? " -"Shapes?" -msgstr "" -"Pikirkan tentang menggambarkan peta dengan tangan, dan bagaimana cara " -"menggambar titik, garis, dan bentuk/poligon. Objek apa yang paling tepat " -"untuk mewakilkan titik? Garis? Bentuk/poligon?" - -# dc93c8dd36fb433eb3dfbd5f3f6dbbab -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:275 -msgid "Now, let’s practise drawing an object (point, line and shape)." -msgstr "" -"Sekarang, mari kita coba praktek menggambar suatu objek (titik, garis dan " -"bentuk)." - -# be030a0a035043e2b755e67f5c03c288 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:277 -msgid "" -"On the left side of JOSM is a column of buttons. Many of these buttons open " -"new panels on the right side that provide more information about the map. " -"The most important buttons are at the top of the column. These buttons " -"change what you can do with your mouse. The top four buttons in this column " -"are the most important. They allow you to: :guilabel:`Select`, :guilabel:" -"`Draw`, :guilabel:`Zoom in` and :guilabel:`Delete`" -msgstr "" -"Di sebelah kiri dari JOSM terdapat kolom yang terdapat berbagai macam " -"tombol. Banyak dari tombol-tombol ini akan membuka jendela baru di sebelah " -"kanan yang akan menampilkan informasi pada peta Anda. Tombol yang paling " -"penting terdapat di sebelah atas kolom. Tombol-tombol tersebut dapat merubah " -"apa yang Anda lakukan dengan mouse Anda. Empat tombol yang utama pada kolom " -"ini merupakan yang paling penting. Ini memungkinkan Anda untuk :guilabel:" -"`Memilih`, :guilabel:`Menggambar`, :guilabel:`Memperbesar` and :guilabel:" -"`Menghapus`" - -# 2e724095b19b4c6484149891f7f934a0 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:285 -msgid "" -"Until now, you have been using the :guilabel:`Select` tool, which looks like " -"this:" -msgstr "" -"Hingga saat ini, Anda telah menggunakan alat bantu :guilabel:`Select`, yang " -"berfungsi untuk memilih objek, yang terlihat seperti berikut:" - -# f503e6ef3b2c458295cbecb2c538d9b9 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:291 -msgid "" -"Before drawing, we need to make sure that nothing is selected. Click in the " -"black space on the map, where it is empty, to make sure nothing is selected." -msgstr "" -"Sebelum menggambar, kita harus memastikan tidak ada objek lain yang dipilih. " -"Klik pada ruang yang kosong di peta. " - -# 2d2f337e802c4c30ad72a7b5beebabe1 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:295 -msgid "Click the second button, the :guilabel:`Draw` tool." -msgstr "Klik tombol kedua, tool :guilabel:`Menggambar`." - -# 8809457fb8134462a566a9234734c96d -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:300 -msgid "" -"Find an empty area on the map, and double-click with your mouse. This will " -"create a single point." -msgstr "" -"Temukan area kosong pada peta dan klik dua kali dengan mouse Anda. Ini akan " -"membantu Anda membuat titik." - -# 4a110f2d95b049279f572250e6eedda2 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:303 -msgid "" -"To draw a line, single-click with the mouse. Move the mouse and click again. " -"Continue until you are happy with the line. To end the line, double-click." -msgstr "" -"Untuk menggambar garis, klik dengan mouse. Lalu gerakkan mouse Anda dan klik " -"lagi. Lanjutkan hingga Anda sudah merasa garis yang dibuat sesuai. Untuk " -"mengakhiri, klik dua kali." - -# 4f3371bd0179427f8797705c4e41e94d -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:307 -msgid "" -"Draw a shape the same way that you draw a line, but finish the shape by " -"double-clicking on the point where you started the line." -msgstr "" -"Menggambar poligon caranya hampir sama dengan menggambar garis, akan tetapi " -"menyelesaikan poligon dengan klik dua kali di titik tempat Anda memulai tadi." - -# 2eb0f0a5a7604bb397c4e4dd72168cf6 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:311 -msgid "4.3. Changing objects" -msgstr "4.3. Cara Mengganti Objek" - -# c9937f6346b942bcb9a0fb36747616ca -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:313 -msgid "" -"Select the forest on the left side of the map. Be sure to click on the line " -"around the forest, not one of the points on the line. Now hold your left " -"mouse button down and drag your mouse. You should be able to move the forest " -"to a new location on the map." -msgstr "" -"Pilih hutan yang berada di sebelah kiri peta. Pastikan Anda mengklik garis " -"pada hutan tersebut bukan pada titiknya. Sekarang tahan tombol kiri mouse " -"Anda dan geser. Anda dapat menggerakkan hutan ke lokasi yang baru pada peta." - -# 896ce24f6d0f4bd398d52a8ddfc64f3b -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:318 -msgid "" -"Click on one of the points on the line around the forest. Hold your left " -"mouse button down and drag your mouse. You should be able to move the point. " -"This is how you can change the shape of an object, or move a point." -msgstr "" -"Klik salah satu titik yang merupakan bagian dari objek garis di wilayah " -"hutan. Tahan tombol kiri mouse Anda dan geser. Anda dapat menggerakan titik. " -"Dengan menggerakkan titik ini Anda dapat merubah bentuk dari sebuah objek." - -# 9ded68436f2f41d6b254d14d11a9adb9 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:323 -msgid "4.4. Adding presets" -msgstr "4.4. Cara Menambahkan Presets" - -# 8e509cdf78264fbab594e01a28ba3b96 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:325 -msgid "" -"Now we know how to draw points, lines and shapes, but we still haven’t " -"defined what they represent. We want to be able to say that our points are " -"shops, schools or something else, and whether our shapes are fields, " -"buildings or something else." -msgstr "" -"Sekarang kita mengetahui bagaimana menggambar titik, garis dan poligon, akan " -"tetapi kita masih belum menentukan objek tersebut adalah apa. Kita ingin " -"supaya objek yang kita gambar seperti titik itu adalah toko, sekolah dll dan " -"apakah bentuk yang kita buat itu bangunan atau sesuatu yang lain." - -# 2100d1a5df53439f8ff727f95e38dc4f -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:330 -msgid "" -"Click the :guilabel:`Select` tool, in the column of buttons on the left." -msgstr "Klik pada tool :guilabel:`Pilih`, di kolom sebelah kiri." - -# b1ee064287ae42e9a398b1c519258c74 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:335 -msgid "" -"Select one of the objects that you drew with the :guilabel:`Draw tool`. On " -"the top menu, click :menuselection:`Presets`. Move your mouse through the " -"sub-menu to the type of location you would like to define." -msgstr "" -"Pilih salah satu objek yang akan Anda gambar dengan :guilabel:`Draw tool`. " -"Pada menu di atas klik menu :guilabel:`Presets`. Gerakkan mouse Anda ke sub-" -"menu ke lokasi yang Anda ingin tentukan." - -# 08fab263bcfb48b8bb4f3f8d652ebb27 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:339 -msgid "" -"When you click on a preset, a form pops up asking you for more information. " -"You do not have to fill in every field, but you may wish to add some " -"important fields, such as the name of the object." -msgstr "" -"Ketika Anda klik pada preset, akan muncul kolom-kolom dan menanyakan anda " -"tentang informasi lebih lanjut tentang objek tersebut. Anda tidak harus " -"mengisi semua kolom tetapi Anda harus mengisi kolom penting seperti nama " -"dari objek yang Anda buat." - -# 68f6d34bddec492d8bb2b137ac35dcb3 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:343 -msgid "" -"When you are finished entering the information, click :guilabel:`Apply " -"Preset`. If everything went well, your point, line or shape should change " -"colours or show a symbol. This is because it has now been defined." -msgstr "" -"Ketika Anda sudah selesai memasukkan informasi, klik :guilabel:`Tambahkan " -"Preset`. Jika semuanya berjalan dengan lancar, titik, garis, atau poligon " -"yang Anda buat akan berubah warna atau memiliki suatu simbol. Ini tergantung " -"dari informasi yang Anda masukkan ke dalam objek tersebut." - -# a338c0c974ba44fba16c9cd581620886 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:348 -msgid "Exercise:" -msgstr "Latihan:" - -# c511b4de107f41878bdd4762705d56cd -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:350 -msgid "" -"Now let’s draw a map in order to practise the techniques we've learned. You " -"may wish to redraw the map that you drew on paper in Module 1." -msgstr "" -"Sekarang Anda akan membuat peta Anda sendiri untuk meningkatkan teknik-" -"teknik yang telah kita pelajari. Anda bisa saja menggambar peta yang telah " -"Anda buat di kertas ketika mempelajari Bab 1." - -# 1b13d6ffbcfa49a7b670e5481f4006a4 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:353 -msgid "" -"Drag the window away from the sample map by holding the right mouse button " -"and dragging your mouse, until you have a nice empty area to draw on." -msgstr "" -"Tahan dan geser jendela dari peta contoh dengan tahan tombol kanan dan geser " -"mouse Anda, hingga Anda mendapatkan area kosong untuk Anda menggambar." - -# a6a588bfbfd34027a0a1caa962d91477 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:356 -msgid "" -"Use the Draw tool to create points, lines and shapes. Describe what your " -"objects are by selecting from the Presets menu." -msgstr "" -"Gunakan tool menggambar untuk membuat titik, garis dan poligon. Jelaskan " -"objek apa yang Anda buat dengan memilih dari menu preset." - -# fafc6e396ed943659ec0768de604ad33 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:359 -msgid "" -"When you are finished, you should have your own map, similar to the sample " -"map that we opened in :file:`sample.osm`." -msgstr "" -"Ketika Anda sudah selesai, Anda akan memiliki peta Anda sendiri, yang sama " -"dengan contoh yang ada pada :file:`sample.osm`." - -# bbb8a1f6e7a7430ea734899f11db0575 -#: ../../source/training/old-training/beginner/osm/103-working-with-josm.rst:362 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/104-using-gps.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/104-using-gps.po deleted file mode 100644 index fc1e5e50..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/104-using-gps.po +++ /dev/null @@ -1,1082 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013-2014 -# mahardika fadmastuti , 2013 -# Wulansari Khairunisa , 2013 -# Yantisa Akhadi , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:55+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 2bee2cac66624c2e84aca32ab4e609cc -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:5 -msgid "Module 4: Using GPS" -msgstr "Bab 4: Penggunaan GPS" - -# fb12f45a7e994e038d2fad9157922564 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:7 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 5ec7341a299f4a2fa35b0e39683a08ce -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:9 -msgid "Understand GPS and the types of GPS" -msgstr "Memahami GPS dan tipe-tipe GPS" - -# 12c83e72f0fb4f79be65dc7042863fd9 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:10 -msgid "Turn on GPS" -msgstr "Dapat menyalakan GPS" - -# 88ca4cc4bf5f4ee49b92f4e07feabd2e -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:11 -msgid "Understand factors that affect GPS accuracy" -msgstr "Memahami faktor-faktor yang mempengaruhi akurasi GPS" - -# 7b95d774fed94f53ab641b8d1e149e41 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:12 -msgid "Understand tracks and waypoints" -msgstr "Memahami *track* dan *waypoint*" - -# b5db5e408a6a4ebcbbbae2407d9ed0f2 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:13 -msgid "Collect data using GPS" -msgstr "Mengumpulkan data menggunakan GPS" - -# 06d1affdc9dc46d88230f1f30e4eef9d -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:14 -msgid "GPS settings" -msgstr "Pengaturan GPS" - -# 4105f06aae63424a9ca8d517f397d20a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:15 -msgid "Copy GPS data (tracks and waypoints) to computer" -msgstr "*Copy* data GPS (*tracks* dan *waypoints*) ke dalam komputer" - -# d7519d9336a741aab4b43600d15beef3 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:16 -msgid "Open waypoints and tracks in JOSM" -msgstr "Buka *waypoints* dan *tracks* pada JOSM" - -# ffa9c562923b4c4bab16833f7a527586 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:17 -msgid "Upload GPS tracks using JOSM" -msgstr "*Upload track* GPS menggunakan JOSM" - -# c033133c2d7d400695f38b5cf4d1102a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:18 -msgid "Edit OSM based on GPS data in JOSM" -msgstr "*Edit* OSM berdasarkan data GPS pada JOSM" - -# 6515a5b5aff74f2a8d30273e729261ec -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:20 -msgid "" -"In this module we see what a GPS does and how it works. We explore how to " -"operate a GPS and how to use it to create maps. We will explain how to " -"operate the Garmin eTrex Vista HCx, a common GPS used for mapping. There are " -"many other models of GPS which do the same thing, so if you are working with " -"a different one, don’t worry - the principles remain the same." -msgstr "" -"Pada modul ini kami akan menjelaskan pengertian GPS dan bagaimana cara " -"kerjanya. Kita akan belajar bagaimana cara mengoperasikan GPS dan bagaimana " -"cara membuat peta. Kita juga akan mempelajari bagaimana mengoperasikan " -"Garmin eTrex Vista HCx, sebuah perangkat GPS yang pada umumnya digunakan " -"untuk membuat peta. Terdapat banyak model GPS lain yang dapat melakukan hal " -"yang sama, jadi jika Anda mengerjakannya dengan perangkat GPS yang berbeda, " -"jangan khawatir, pada prinsipnya tetap sama." - -# 9bf6ada973e74a218a6c21655d0fb0cb -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:28 -msgid "1. What is GPS?" -msgstr "1. Apa yang dimakusd dengan GPS?" - -# cefd861fe6bb403397c1dc1875d55da7 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:30 -msgid "" -"A GPS is like a mobile phone, except that instead of receiving radio signals " -"from telephone companies, it receives signals from satellites that are going " -"around the Earth. By receiving these signals from the satellites, a GPS is " -"able to calculate its exact location on the planet. It records this location " -"in coordinates, which are two long numbers. One number tells you how far " -"east or west you are - this is called **longitude**. The second number tells " -"you how far north or south you are - this is called **latitude**. Every " -"place on Earth has unique geographic coordinates." -msgstr "" -"Sebuah GPS bekerja seperti ponsel, namun jika ponsel menerima sinyal radio " -"dari perusahaan telepon, GPS menerima sinyal dari satelit yang mengelilingi " -"bumi. Dengan menerima sinyal tersebut dari satelit, sebuah GPS dapat " -"memperhitungkan dengan tepat posisi Anda di permukaan bumi. GPS merekam " -"lokasi ini dalam bentuk koordinat, dimana terdapat dua buah nomor yang " -"panjang. Satu nomor menunjukan sejauh mana posisi Anda dari Timur atau Barat " -"- biasa disebut **garis bujur**. Nomor yang kedua menunjukan sejauh mana " -"posisi Anda dari Utara atau Selatan - biasa disebut **garis lintang**. " -"Setiap tempat di bumi memliki koordinat geografis yang unik." - -# cea78f7f6dda44cf9c4212595bb5023c -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:39 -msgid "" -"For example: -8.639298 Latitude, 116.311607 Longitude is a location in " -"Lombok, Indonesia." -msgstr "" -"Sebagai contoh: -8.639298 Lintang, 116.311607 Bujur: merupakan sebuah lokasi " -"di Lombok, Indonesia." - -# 4d2145eec5734f6c924f7c9f741cc877 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:45 -msgid "" -"*Google Earth software, showing coordinates of a place in Lombok, Indonesia.*" -msgstr "" -"*Perangkat lunak Google Earth, menunjukan koordinat dari sebuah tempat di " -"Lombok, Indoonesia.*" - -# e244a0495b8041f9b29a1a4349073fa2 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:51 -msgid "*Garmin eTrex Vista HCx*" -msgstr "*Garmin eTrex Vista HCx*" - -# 69e5a5650db942e3828c7c68165df6d0 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:54 -msgid "2. Turning on the GPS" -msgstr "2. Menyalakan GPS" - -# 8184c5fcf3a74185abf964e40dfdb061 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:56 -msgid "" -"Before turning on your GPS, go outside where you have a clear view of the " -"sky. Because the GPS determines your location by receiving signals from " -"satellites, **it won’t work indoors**." -msgstr "" -"Sebelum Anda menyalakan GPS, pergilah keluar dimana Anda dapat melihat " -"langit dengan jelas. Karena GPS menentukan lokasi Anda dengan menerima " -"sinyal dari satelit, **GPS tidak akan bekerja di dalam ruangan**." - -# 7016dbead24e456d85f373c909d1583a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:60 -msgid "" -"On the right side of the GPS, press and hold the :guilabel:`Power` button. " -"The GPS will start, and it will show you the Satellites page. You should see " -"something like the image below. The GPS is looking for satellite signals. " -"When it has connected to three or more satellites, it will have your " -"location." -msgstr "" -"Pada bagian bawah sisi kanan GPS Anda, tekan dan tahan tombol :guilabel:" -"`Power`. GPS akan menyala, dan akan menunjukkan halaman Satelit. Anda " -"seharusnya dapat melihat sesuatu seperti pada gambar di bawah ini. Hal ini " -"berarti GPS sedang mencari sinyal satelit. Ketika sudah terhubung dengan " -"tiga satelit atau lebih, GPS akan mendapatkan lokasi Anda." - -# 980b87228f5a4d58aa101d70bd0ee01b -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:69 -msgid "" -"Once your location is determined, the Satellites page will disappear and you " -"will see the Main Menu." -msgstr "" -"Setelah lokasi Anda telah ditentukan, layar Satelit akan menghilang dan Anda " -"akan melihat menu utama." - -# 6b123c94d218446f884bede2f03dff8b -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:77 -msgid "3. Navigating the GPS" -msgstr "3. Menavigasikan GPS" - -# 20705f4a0c7e4625b9a7894cf8e88f7b -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:79 -msgid "" -"The GPS has different pages and menus that allow you to do different things. " -"To switch between pages, press the button marked :kbd:`X`, just above the " -"power button on the right side of the device. This button also serves to go " -"back. If you press something by mistake and would like to cancel or go back, " -"press the :kbd:`X` button." -msgstr "" -"GPS memiliki layar yang berbeda dan menu yang dapat membuat Anda melakukan " -"hal yang berbeda. Untuk memindahkan tampilan dari layar ke layar, tekan " -"tombol yang bertanda :kbd:`X`, tepat berada di atas tombol Power pada sisi " -"kanan perangkat. Tombol ini juga berfungsi untuk kembali. Jika Anda menekan " -"sesuatu karena kesalahan dan Anda menginginkan untuk membatalkan atau " -"kembali ke menu sebelumnya, tekan tombol :kbd:`X`." - -# d4482897f95b446b904e1246b8e5ad48 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:85 -msgid "" -"By pressing the :kbd:`X` button, you should be able to flip through " -"different screens that will look something like this:" -msgstr "" -"Dengan menekan tombol :kbd:`X`, Anda seharusnya dapat mengganti tampilan " -"dari layar ke layar yang berbeda seperti ini:" - -# 52c691ba7f394e39a1cfc79e1caec6ac -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:104 -msgid "" -"Return to the Satellites page and see that you are connected to three or " -"more satellites. In the upper left corner are your coordinates, your " -"latitude and longitude." -msgstr "" -"Kembali ke halaman Satelit dan Anda akan dapat melihat bahwa Anda terhubung " -"dengan tiga satelit atau lebih. Pada pojok kiri atas merupakan koordinat " -"Anda, lintang dan bujur." - -# 19c63a323625419f8324117ed551ef14 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:108 -msgid "" -"Flip to the Map page, and you can see a map of where you are. If you have " -"added OpenStreetMap maps to your GPS, you may see roads and places. " -"Otherwise, the map may look quite blank. Zoom in and out by pressing the up " -"and down arrow buttons on the left side of the GPS." -msgstr "" -"Ubah ke halaman Peta, dan Anda dapat melihat sebuah peta dimana Anda berada. " -"Jika Anda telah menambahkan peta OSM pada GPS Anda, Anda dapat melihat jalan " -"dan tempat. Selain itu, peta mungkin akan terlihat kosong. Perbesar dan " -"perkecil dengan menekan tombol atas dan bawah pada sisi kiri GPS." - -# d4347cee5bf941818bb01415ffd46f70 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:114 -msgid "4. Tracks and waypoints" -msgstr "4. Track dan Waypoint" - -# 8f22126f02fb4b47b8a79cf9531984a1 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:116 -msgid "" -"A GPS records two kinds of information that are useful for creating maps or " -"saving the coordinates of a place. First, it allows you to save your " -"location in the memory of the GPS. When you save a location, the coordinates " -"will be saved with a name. For example, your first saved point will be named " -"001, the second 002, and so on. When you save a point, you can write down " -"the number on a piece of paper, along with a note about what it is, and any " -"attributes or indicators you would like to collect. Saved locations on your " -"GPS are called waypoints." -msgstr "" -"Sebuah GPS merekam dua jenis informasi yang berguna untuk membuat peta atau " -"menyimpan koordinat dari sebuah tempat. Pertama, GPS dapat menyimpan lokasi " -"Anda pada memori GPS. Ketika Anda menyimpan satu lokasi, koordinat akan " -"disimpan dengan sebuah nama. Sebagai contoh, titik pertama yang tersimpan " -"oleh Anda akan diberi nama 001, kedua 002, dan seterusnya. Ketika Anda " -"menyimpan sebuah titik, Anda dapat menulis nomor tersebut pada selembar " -"kertas, dengan sebuah catatan tentang titik apakah itu, atribut atau " -"indikator apapun yang Anda ingin ketahui. Lokasi yang tersimpan ke dalam GPS " -"Anda disebut waypoints." - -# ae4ef85c47f94e3dae133901b9996eae -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:126 -msgid "" -"Second, a GPS can save what are called tracks. While a waypoint only saves a " -"single location, a track will save a series of locations wherever you move. " -"For example, a track will record your location every one second, or every " -"one metre, and the result will be a series of dots that show the path of " -"where you have been. Tracks are useful for mapping objects that are " -"represented by lines or shapes, such as the course of a road or the shape of " -"a field." -msgstr "" -"Kedua, sebuah GPS dapat menyimpan apa yang disebut dengan *“track”*. Jika " -"*waypoint* hanya menyimpan sebuah lokasi, maka sebuah *track* akan menyimpan " -"sebuah seri lokasi kemanapun Anda bergerak. Sebagai contoh, *track* akan " -"merekam lokasi Anda setiap satu detik, atau setiap satu meter, dan hasilnya " -"akan berupa sebuah seri dari titik-titik yang menunjukan jalur lokasi dimana " -"Anda pernah berada. *Track* sangat berguna untuk memetakan objek yang " -"ditunjukan oleh garis atau bentuk, seperti sebuah jalan, atau bentuk dari " -"sebuah lapangan." - -# 2cc62f04e8de480a92236df1f0664f4d -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:138 -msgid "" -"A GPS can record a single point as well as a path of where you travel. Here " -"the points are numbered in the order they are recorded. The path or " -"**track** is shown with a green line and the **waypoints** are shown in red." -msgstr "" -"Sebuah GPS selain dapat merekam satu titik juga dapat merekam sebuah jalur " -"kemanapun Anda bepergian. Disini, titik diberi nomor berurutan sebagaimana " -"mereka terekam. Jalur atau **track** ditunjukkan dengan garis berwarna " -"hijau, sedangkan **waypoint** atau titik ditunjukkan dengan warna merah." - -# 45b3e8ba541b406c9c2500c1778162e0 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:144 -msgid "5. Saving Your location" -msgstr "5. Menyimpan lokasi Anda" - -# 040dbaea4ba44b5ebc4f377af2ebfc71 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:146 -msgid "" -"To save your current location as a waypoint, click the :kbd:`X` button until " -"your reach the Main Menu. Using the joystick, move it so that :guilabel:" -"`Mark` is highlighted on the screen. Push the joystick button down to open " -"the Save Waypoint page." -msgstr "" -"Untuk menyimpan lokasi Anda sebagai sebuah waypoint, klik tombol :kbd:`X` " -"hingga mencapai menu utama. Dengan menggunakan joystick, gerakan joystick " -"hingga bagian :guilabel:`Mark` tersorot pada layar. Tekan tombol joystick " -"untuk membuka halaman Save Waypoint." - -# d1dd904601104b6e94478f98416c7777 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:159 -msgid "" -"You can see on this page some information about the waypoint that you are " -"saving. First is the name. If this is your first waypoint, it probably reads " -"“001”. This is the number you should record on paper along with the " -"information you want to collect with this object. Next you will see the time " -"and date when the point is recorded. Below that are the coordinates, " -"followed by the altitude." -msgstr "" -"Anda dapat melihat beberapa informasi tentang waypoint atau titik yang Anda " -"simpan. Pertama adalah namanya. Jika ini titik pertama Anda, Anda akan " -"membaca “001”. Ini merupakan nomor yang harus Anda catat di kertas bersamaan " -"dengan informasi yang Anda ingin kumpulkan pada obyek ini. Selanjutnya Anda " -"akan melihat jam dan tanggal ketika titik tersebut direkam. Di bawahnya " -"terdapat koordinat, diikuti dengan ketinggian." - -# 6e1ece11fbfa4537b70ccf8b8a22b4f0 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:166 -msgid "" -"Use the joystick to move to the :guilabel:`OK` button at the bottom of the " -"screen. Press the joystick button down to save this point. Be sure to write " -"down the number of the point, along with what the place is and any other " -"information you want to record about the place in your notebook." -msgstr "" -"Gunakan joystick untuk bergerak ke tombol :guilabel:`OK` pada bagian bawah " -"layar. Tekan tombol joystick untuk menyimpan titik ini. Pastikan untuk " -"menulis nomor titik, beserta keterangan tempat apakah itu dan berbagai " -"informasi lainnya yang Anda ingin ketahui di dalam buku catatan Anda." - -# b7af37a5032d4f59be8837f0124ef7d0 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:171 -msgid "" -"Press the :kbd:`X` button to go to the Map page. You should now see your " -"point on the map." -msgstr "" -"Tekan tombol :kbd:`X` untuk menuju halaman peta. Anda seharusnya akan " -"melihat titik pada peta." - -# 970dcff22bf14e2e9c27886aaa51c14f -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:177 -msgid "6. Turning on the Track Log" -msgstr "6. Menyalakan Track Log" - -# 62430738f836419ca2144e8d40e28313 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:179 -msgid "" -"Now that we have learned how to save points, let’s learn how to turn the " -"track log on and off. When the track log is turned on, it will automatically " -"record your path. It’s good practice to turn on the log when you begin " -"mapping, and turn it off when you are finished. You will then be able to " -"look at the track on a computer and see the path that you mapped. If you " -"would like to map the course of a road, it is a good idea to save a waypoint " -"at the beginning and end of the road, writing in your notebook the name and " -"type of the road, and any other important information about the road." -msgstr "" -"Sekarang kita telah mempelajari bagaimana caranya untuk menyimpan titik, " -"sekarang mari mempelajari bagaimana untuk menyalakan/mematikan *track log*. " -"Ketika *track log* dinyalakan, secara otomatis GPS akan merekam jalur Anda. " -"Pada saat mulai memetakan, sebaiknya *track log* dinyalakan, dan dimatikan " -"pada saat Anda telah selesai. Anda akan dapat melihat trek pada sebuah " -"komputer dan melihat jalur yang telah Anda petakan. Jika Anda ingin " -"memetakan jalur pada jalan raya, adalah ide yang bagus untuk menyimpan " -"sebuah *waypoint* pada awal dan akhir jalan, menuliskan nama dan tipe jalan, " -"serta informasi penting lainnya tentang jalan tersebut pada buku catatan." - -# 25a4de21f20a495fac71021b085d7796 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:189 -msgid "" -"Click the :kbd:`X` button until your reach the page that says Track Log." -msgstr "" -"Untuk menyalakan track log, klik pada tombol :kbd:`X` hingga Anda mencapai " -"halaman yang bernama Track Log." - -# ddf1c644a4fd4c7c8760fffa3ff014ec -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:196 -msgid "" -"To empty the track log (to delete earlier recordings), use the joystick to " -"select :guilabel:`Clear`, and press the joystick down. The bar at the top " -"should read “0%”." -msgstr "" -"Jika Anda ingin mengosongkan track log untuk menghapus perekaman sebelumnya, " -"gunakan joystick untuk memilih :guilabel:`Clear`, dan kemudian tekan " -"joystick. Pada bar yang terdapat di atas seharusnya terbaca “0%”" - -# 0fbc851f9ccf45db9ea14ba608af9de7 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:200 -msgid "" -"To turn on the log, move the joystick to highlight :guilabel:`On`, and press " -"the joystick down. The track log is now recording your path." -msgstr "" -"Untuk menyalakan track log, gerakan joystick untuk menyorot :guilabel:`On`, " -"kemudian tekan joystick. Track log sekarang akan merekam jalur Anda." - -# cf5069618c154a41a67d708c65cc7019 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:203 -msgid "" -"Under :guilabel:`Setup`, you also can set time or distance intervals to " -"track. Time intervals instruct your GPS to record your location at given " -"intervals. If you have a memory card in your GPS, it is good practice to set " -"this to one second, meaning that every second your location will be added to " -"the track log. This may be useful when detailed surveys are needed." -msgstr "" -"Dibawah :guilabel:`Setup`, Anda juga dapat mengatur interval waktu atau " -"jarak untuk trek. Interval waktu memerintahkan GPS Anda untuk merekam lokasi " -"Anda setiap beberapa menit atau detik sesuai dengan pengaturan interval " -"waktunya atau jika Anda memiliki kartu memori di GPS Anda, sebaiknya pilih " -"pengaturan 1 second, artinya setiap detik lokasi Anda akan ditambahkan pada " -"track log. Hal ini akan berguna jika sedang melakukan survey yang sangat " -"detail." - -# 06c45b720c5d4ee0ac85f81b41d20ec9 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:210 -msgid "" -"See :ref:`GPS Settings ` for more information on " -"setting up the track log." -msgstr "" -"Lihat :ref:`GPS Settings ` untuk informasi lebih lanjut " -"mengenai pengaturan pada track log." - -# 0a13dedec613431a94396fc7fc51e6cb -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:213 -msgid "" -"Press the :kbd:`X` button to go to the Map page. As you move you will see " -"your track shown as a series of dots." -msgstr "" -"Tekan tombol :kbd:`X` untuk menuju halaman peta. Selama Anda bergerak maka " -"Anda akan melihat trek yang ditunjukan dengan titik-titik berseri." - -# 52e014cdbb214b5e870a3b3d5317c79a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:217 -msgid "7. GPS settings" -msgstr "7. Pengaturan GPS" - -# 560b2265fa8640ef82cfe4cb31d4592e -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:219 -msgid "" -"Here we demonstrate how to edit some of the core settings of the GPS device. " -"Use this as a reference to set up your GPS properly." -msgstr "" -"Disini kami akan memberitahukan bagaimana mengatur beberapa pengaturan utama " -"pada perangkat GPS Anda. Gunakan ini sebagai referensi untuk mengatur GPS " -"Anda sendiri." - -# e92a6226ad64413983481dfa72b6dd56 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:223 -msgid "7.1. System settings" -msgstr "7.1 Pengaturan sistem" - -# 353bdb384dee4064a380073c7f2aebe8 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:225 -msgid "" -"Go to the Main Menu by using the :guilabel:`Page` button (the :kbd:`X` " -"button on the right side of the device). Use the joystick to click :guilabel:" -"`Setup`, and then click on :guilabel:`System`." -msgstr "" -"Pergi ke Main Menu dengan menggunakan tombol :guilabel:`Page` (tombol :kbd:" -"`X` terdapat pada disisi sebelah kanan dari perangkat). Gunakan joystick " -"untuk mengklik :guilabel:`Setup`, dan kemudian klik pada :guilabel:`System`." - -# 89a008a4ff044737b0824ffe806e94b4 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:237 -msgid "" -"Some of the settings that can be changed on the :guilabel:`System` menu are " -"as follows:" -msgstr "" -"Beberapa pengaturan dapat diganti pada menu :guilabel:`System` seperti " -"berikut:" - -# 238247eb9fe945a084522be8bd1be147 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:240 -msgid "" -"**GPS**: regulates how the GPS sensor works. Choose the :guilabel:`Normal` " -"option. This tells the device to capture only signals from GPS satellites. " -"The only drawback is that positional accuracy may sometimes be less accurate " -"(about 10-30 metres)." -msgstr "" -"**GPS**: mengatur bagaimana sensor GPS bekerja. Pilih pilihan :guilabel:" -"`Normal`. Ini akan membuat perangkat hanya menangkap sinyal dari satelit " -"GPS. Namun akurasi posisi Anda terkadang kurang akurat (berkisar 10-30 meter)" - -# 56256dab97ca406c83d5c2f6c4ca0954 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:245 -msgid "" -"**WAAS/EGNOS**: WAAS stands for Wide Area Augmentation System, while EGNOS " -"stands for Euro Geostationary Navigation Overlay Service. WAAS/EGNOS is a " -"system of satellites and ground stations that provide GPS signal " -"corrections, giving you a better position accuracy (to less than three " -"metres). Ensure that it is :guilabel:`Enabled`. The drawback to this feature " -"is that although it provides better accuracy, it will use the GPS battery " -"more quickly." -msgstr "" -"**WAAS/EGNOS**: WAAS merupakan kepanjangan dari Wide Area Augmentation " -"System, sedangkan EGNOS merupakan kepanjangan Euro Geostationary Navigation " -"Overlay Service. Pada umumnya, akurasi yang diberikan oleh GPS adalah 15 " -"meter. WAAS/EGNOS merupakan sistem satelit dan stasiun bumi yang memberikan " -"koreksi sinyal GPS, sehingga memberikan Anda akurasi posisi yang lebih baik " -"(hingga kurang dari 3 meter). Sebaiknya Anda memilih mode WAAS/EGNOS dengan " -"memilih :guilabel:`Enabled` untuk mendapatkan akurasi yang lebih baik, namun " -"dengan konsekuensi Anda harus mempersiapkan baterai cadangan." - -# f14a1672b2c64598bda928258ea6bb69 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:256 -msgid "" -"**Battery Type**: To optimise power usage, this should match the type of " -"battery in the device. The default is Alkaline." -msgstr "" -"**Battery Type**: Untuk optimalisasi penggunaan daya, sebaiknya disesuaikan " -"dengan jenis baterai yang Anda gunakan (standarnya: Alkaline)." - -# ee8a8ad11ba34c339c91439aea760cbe -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:259 -msgid "**Text Language**: Choose the language for the device." -msgstr "**Text Language**: Pilih bahasa untuk perangkat GPS." - -# 5256182055dc41258f32052a27854404 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:266 -msgid "7.2. Unit settings" -msgstr "7.2 Pengaturan satuan unit" - -# 9e829fe5399647c4b80235cd313eba2f -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:268 -msgid "" -"From the Main Menu, go to :menuselection:`Setup ‣ Units`. Here the type of " -"measurement units can be set, such as metres, feet and more. The location " -"unit format is also set here (decimal degrees, decimal minutes degrees, " -"second minutes degrees), datum (standard WGS 84) and projection (standard " -"WGS 84)." -msgstr "" -"Dari menu utama, pergi ke :menuselection:`Setup ‣ Units`. Pada menu ini Anda " -"dapat mengatur satuan unit yang ingin ditampilkan. Misalnya dalam meter, " -"feet, dan lainnya. Selain itu Anda juga dapat mengatur format posisi " -"(derajat desimal, derajat menit desimal, derajat menit detik), datum " -"(standarnya WGS 84), dan proyeksi (standarnya WGS 84)." - -# 9a2c756da73043ff9904147bb0990bb5 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:283 -msgid "7.3. Time settings" -msgstr "7.3 Pengaturan waktu" - -# 240968d716cd4502a1f2877384558cb9 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:285 -msgid "" -"From the Main Menu, go to :menuselection:`Setup ‣ Time`. Here the time " -"format is set (12 hours or 24 hours) as well as the time zone. It is good to " -"have the local time set, because all tracks and waypoints saved in the " -"device are also saved with the current time." -msgstr "" -"Dari menu utama, pergi ke :menuselection:`Setup ‣ Time`. Disini format waktu " -"diatur antara 12 jam atau 24 jam dan juga zona waktu. Lebih baik jika diatur " -"menggunakan waktu lokal, karena semua track dan waypoint yang akan disimpan " -"di GPS juga disimpan berdasarkan waktu saat itu. " - -# 80a33a771fc24c8fab6cf4435e8f563e -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:299 -msgid "7.4. Page settings" -msgstr "7.4 Pengaturan halaman" - -# 964303da31384ad8b418e22cef8dd0b1 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:301 -msgid "" -"Remember that when you press the :guilabel:`Page` button (the :kbd:`X`) you " -"are able to switch between different menus. By editing the page settings, " -"the pages, as well as their order, may be customised." -msgstr "" -"Masih ingat ketika Anda menekan tombol :guilabel:`Page` (:kbd:`X`) Anda " -"dapat berganti ke menu yang berbeda. Dengan mengedit pengaturan halaman, " -"urutan dari halaman tersebut dapat diubah." - -# 69269df59ece41db8b0660b501011a3f -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:305 -msgid "From the Main Menu, go to :menuselection:`Setup ‣ Page Sequence`." -msgstr "Dari menu utama, pergi ke :menuselection:`Setup ‣ Page Sequence`." - -# c30734ab09f644c5b981178d04488581 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:307 -msgid "" -"Add a new page to the list by selecting :guilabel:`Add Page`. Then select a " -"page such as: :guilabel:`Tracks` (to see details of your trip), :guilabel:" -"`Map` (to view maps), or :guilabel:`Satellite` (to view the satellite " -"status, position, and accuracy)." -msgstr "" -"Tambahkan halaman baru di daftar dengan memilih :guilabel:`Add Page`. " -"Kemudian pilih halaman seperti: :guilabel:`Tracks` (untuk melihat detil dari " -"perjalanan anda), :guilabel:`Map` (untuk melihat peta), atau :guilabel:" -"`Satellite` (untuk melihat status satelit, posisi dan akurasi)." - -# 6945397083974bee9dd1b91c6dd42621 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:312 -msgid "" -"Click on one of the pages to move it around the list and change the order in " -"which the pages flip." -msgstr "" -"Klik pada salah satu halaman untuk untuk berpindah antar daftar halaman dan " -"untuk mengubah urutan halaman." - -# 4b50771c070947219d2535b1e5d02169 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:327 -msgid "7.5. Track settings" -msgstr "7.5 Pengaturan Track" - -# e2f561e1b03f4d6f9cb9cd64ae47b843 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:329 -msgid "" -"Remember that :ref:`tracks ` are a bread-crumb trail " -"recording your movement, which is useful for mapping roads. On the Track " -"page there are several settings." -msgstr "" -"Masih ingat dimana :ref:`tracks ` adalah kumpulan seri " -"titik-titik yang merekam pergerakan Anda, dimana hal tersebut berguna untuk " -"memetakan jalan. Pada halaman Track terdapat beberapa pengaturan." - -# b5fd2b4f4af04020a8c9f8101453ff1e -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:333 -msgid "From the Track page, click :guilabel:`Setup`." -msgstr "Dari halaman Track, klik :guilabel:`Setup`." - -# 43bf11fd96e24061b432735c9f74eb5a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:339 -msgid "The settings are as follows:" -msgstr "Pengaturan yang ada seperti:" - -# 7a504c1d984244ef929fd2529da9f892 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:341 -msgid "" -"**Wrap When Full**: This option should be checked. It means that when the " -"GPS runs out of internal memory, it will start overwriting the oldest " -"trackpoints to record new ones. It is a good idea to keep this checked, " -"although typically you will be recording tracks to a memory card anyway, " -"making this option unimportant." -msgstr "" -"**Wrap When Full**: Beri tanda centang pada pilihan ini. Ini berarti ketika " -"kapasitas memori internal di GPS sudah habis, GPS akan menghapus trackpoint " -"yang lama untuk merekam yang baru. Disarankan untuk mengaktifkan fitur ini, " -"meskipun biasanya Anda akan merekam track ke memory card, sehingga " -"menyebabkan opsi ini tidak begitu penting." - -# 7e5cf265891b49f8b96fb8e2d4c04571 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:347 -msgid "" -"**Record Method**: There are several ways the GPS can record track points:" -msgstr "" -"**Metode Perekaman**: Terdapat beberapa cara sebuah GPS bisa merekam track:" - -# 5f76abe5dca949bda5ac1a9e0a1ae110 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:349 -msgid "" -"*Distance*: tracks a new point each time a certain distance has been covered" -msgstr "*Distance* – perekaman track dilakukan setiap rentang jarak tertentu." - -# d2cb8b8c98f84677b02de77fbd795b06 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:350 -msgid "*Time*: tracks a new point when an amount of time has elapsed" -msgstr "*Time* – perekaman track dilakukan setiap rentang waktu tertentu" - -# d5b97f8f1fc34cae8f573fafa3670711 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:351 -msgid "*Auto*: automatically choose method (typically this should be selected)" -msgstr "" -"*Auto*: perekaman track dilakukan otomatis (sebaiknya pilih pengaturan ini)" - -# 91474a4351c64192847615169bc016fc -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:353 -msgid "" -"**Interval**: This setting indicates how often the GPS will record the " -"track, depending on the method selected in **Record Method**. Using a high " -"setting (collecting many points) here will result in tracks that are smooth " -"and detailed but will also drain the battery faster. If **Record Method** is " -"set to *Auto*, the **Interval** options will be as follows:" -msgstr "" -"**Interval**: Pengaturan ini menentukan seberapa sering GPS akan merekam " -"jejak perjalanan Anda yang bergantung sesuai dengan metode yagn dipilih di " -"**Record Method**. Menggunakan pengaturan tertinggi (mengambil banyak titik) " -"akan menghasilkan garis track yang halus dan lebih teratur tetapi akan " -"menghabiskan baterai lebih cepat, jika di atur jarang atau “least often”, " -"perekaman dilakukan secara jarang, garis track yang dihasilkan akan terlihat " -"patah. Jika **Record Method** diatur ke *Auto*, pengaturan **Interval** akan " -"seperti ini:" - -# dc2408aa02c542348b7d7d360d1894da -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:359 -msgid "*Most often*" -msgstr "*Most often*" - -# 135f58b9bc0f4b5ca86c9a9862adcbd8 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:360 -msgid "*More often*" -msgstr "*More often*" - -# 96a220dac8e9422ba2b6baf4a46d5bca -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:361 -msgid "*Normal*" -msgstr "*Normal*" - -# 23b0b7f4365a48539391ec398f872fd9 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:362 -msgid "*Less often*" -msgstr "*Less often*" - -# 94aeb4de6ac54dce85e7c80e2d569201 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:363 -msgid "*Least often*" -msgstr "*Least often*" - -# 2f9b0128cde148fc8070cf7eb4520c97 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:365 -msgid "" -"If **Record Method** is set to *Distance* or *Time*, the options will allow " -"you to set a matching unit of measurement." -msgstr "" -"Jika **Record Method** diatur ke *Distance* atau *Time*, pengaturan yang ada " -"akan memperbolehkan Anda untuk mengatur beberapa unit pengaturan yang sesuai." - -# bc14ba29cc844de09e73bcaaf1812261 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:368 -msgid "" -"**Color**: This setting is for defining the colour of the track line as " -"shown on the GPS map page." -msgstr "**Color**: Anda dapat mengubah tampilan warna garis track pada peta." - -# f5d0720d08574759aa238987eac9059a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:377 -msgid "8. Copying waypoints and tracks to the computer" -msgstr "8. Copy Waypoint dan Track ke Komputer" - -# 0dbd4c3d89254374bc6d51d218f95bf4 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:380 -msgid "8.1. Attaching GPS to the computer" -msgstr "8.1 Menghubungkan GPS ke Komputer" - -# 874fa508f5934637a584a320aab533bd -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:382 -msgid "" -"When you are finished mapping with the GPS you will want to copy the points " -"and tracks to your computer so that you can open them in JOSM." -msgstr "" -"Ketika Anda telah selesai memetakan dengan GPS Anda menginginkan untuk " -"menyalin titik dan trek ke dalam komputer agar Anda dapat membukanya di JOSM." - -# 45a11a01023d4449af5930ee113ce245 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:385 -msgid "" -"First, turn off the track log on your GPS by going to the Track page and " -"selecting :guilabel:`Off`." -msgstr "" -"Pertama, matikan track log GPS Anda, dengan menuju halaman trek dan memilih :" -"guilabel:`Off`." - -# 7734321fe5f74884b5a1947e6e56bacd -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:388 -msgid "" -"Attach the GPS to your computer with the cable. One end should plug into " -"your computer’s USB port, and the other goes into the back of the GPS, " -"beneath the rubber flap at the top. The GPS should be turned on to copy the " -"points and tracks." -msgstr "" -"Sambungkan GPS pada komputer dengan kabel. Satu ujung kabel harusnya " -"tersambung pada port USB komputer Anda, dan ujung lainnya tersambung dengan " -"GPS, di belakang flap karet pada bagian atas belakang GPS. GPS harus " -"dinyalakan untuk menyalin titik dan track." - -# f19bab8f3bc74e3abd85790f7c802c24 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:395 -msgid "8.2. Installing GPS drivers" -msgstr "8.2 Menginstal Driver GPS" - -# 0be198b36ade428598eee32639c85a31 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:397 -msgid "" -"You may need to install GPS drivers on your computer. Open your training " -"folder and find :file:`software/USBDrivers_23.exe`. Double-click it and " -"install." -msgstr "" -"Anda mungkin perlu untuk melakukan instalasi driver GPS pada komputer Anda. " -"Jika Anda mempunyai salinan dari :file:`software/USBDrivers_23.exe` pada " -"komputer Anda, klik dua kali pada file tersebut dan install." - -# 922b32c22f0140a3ab0070bc7b981346 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:401 -msgid "" -"If you don’t have this file, you can download it. Open your internet browser " -"and go to: `http://www8.garmin.com/support/download_details .jsp?id=591 " -"`_" -msgstr "" -"Jika Anda tidak mempunyai file ini, Anda dapat mendownloadnya. Buka browser " -"internet Anda dan pergi ke: `http://www8.garmin.com/support/" -"download_details .jsp?id=591 `_" - -# 4d2d9d23e3044acaa36eaf6ec89532e0 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:405 -msgid "" -"Click :guilabel:`Download` to get the installation file. Locate it on your " -"computer, and double-click to install." -msgstr "" -"Klik :guilabel:`Download` untuk mendapatkan file instalasi. Cari pada " -"komputer Anda, dan klik-ganda untuk menginstall." - -# 528fce120c404d3a84cef4c5b1bb1c7d -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:410 -msgid "8.3. Getting the GPSBabel setup program" -msgstr "8.3. Memperoleh Setup Program GPSBabel" - -# de20e8f2f0b840a5b499e9271c3fb6d8 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:412 -msgid "" -"GPSBabel is a program that allows us to copy data from the GPS. It is saved " -"as :file:`GPSBabel-1.5.1-Setup` in the :file:`software` folder (the exact " -"version number may be different)." -msgstr "" -"GPSBabel adalah program yang dapat kita manfaatkan untuk menyalin data dari " -"GPS. Installer dari program ini disimpan sebagai :file:`GPSBabel-1.5.1-" -"Setup` pada folder :file:`software` (angka versi mungkin berbeda)." - -# 555d9d43435c4c88b8d6a51773e3c739 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:416 -msgid "" -"If you don’t have GPSbabel already, open your web browser and go to `www." -"gpsbabel.org `_." -msgstr "" -"Jika Anda belum mempunyai GPSBabel, buka browser internet Anda dan pergi ke " -"`www.gpsbabel.org `_." - -# 893c2cfa21fd4d86a3cf4c63587c07ba -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:419 -msgid "Click :guilabel:`Downloads` at the top of the page." -msgstr "Klik :guilabel:`Downloads` pada bagian atas halaman." - -# 69de5503b6344676b0774e70c27c781b -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:421 -msgid "" -"Scroll down the page. If your computer uses Windows, you want to download " -"the installation file for Windows. Click :file:`GPSBabel-1.5.1-Setup.exe`. " -"The file will be downloaded to your computer." -msgstr "" -"Geser ke bawah halaman. Jika komputer Anda menggunakan Windows, Anda akan " -"mendownload file instalasi utuk Windows. Klik :file:`GPSBabel-1.5.1-Setup." -"exe`. File akan didownload ke dalam komputer Anda." - -# e8841d3a8e3c4afeac4b2f6530c88666 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:428 -msgid "8.4. Installing GPSBabel" -msgstr "8.4. Melakukan Instalasi GPSBabel" - -# 640871c01067464aaf7b28ea5212d0f3 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:430 -msgid "" -"Locate the GPSBabel setup file on your computer. Double-click it to install." -msgstr "" -"Cari file setup GPSBabel pada komputer Anda. Klik-ganda untuk menginstall." - -# c89e91bff0c74d0489c75e439ed312e8 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:432 -msgid "Click :guilabel:`Next`." -msgstr "Klik :guilabel:`Next`." - -# e2975f54242348be96af33501ff29f9f -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:434 -msgid "Click :guilabel:`I accept` and :guilabel:`Next`." -msgstr "Klik :guilabel:`I accept` dan :guilabel:`Next`." - -# 1485919fa7eb4f54a39b52f9e649fa87 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:436 -msgid "Continue clicking :guilabel:`Next` until the program installs." -msgstr "Lanjutkan klik :guilabel:`Next` hingga program mulai menginstal." - -# d83657b2d04f4f13a6e0445509162480 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:438 -msgid "" -"When the program has finished installing, click :guilabel:`Finish` to start " -"GPSBabel." -msgstr "" -"Ketika program telah selesai diinstal, klik :guilabel:`Finish` untuk memulai " -"GPSBabel." - -# 847d7c2bca8e453b9ef13d6801820116 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:443 -msgid "8.5. Copying Tracks and Waypoints" -msgstr "8.5. Menyalin Trek dan Waypoint" - -# 1750918deb144149bc6409ee9597853c -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:445 -msgid "" -"Click in the circle next to the word :guilabel:`Device` at the top of the " -"window." -msgstr "" -"Klik pada lingkaran dengan kata :guilabel:`Device` di sampingnya pada bagian " -"atas jendela." - -# 1d1f164c10fe40fa94135ac24d870c84 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:452 -msgid "" -"In the drop-down menu labelled :guilabel:`Format`, select :guilabel:`Garmin " -"serial/USB protocol`" -msgstr "" -"Pada menu daftar pilihan yang berlabel :guilabel:`Format`, pilih :guilabel:" -"`Garmin serial/USB protocol`" - -# ccdf242887274a3ea0bc391925cf5680 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:455 -msgid "" -"Go down to the middle of the window, under :guilabel:`Output`. In the drop-" -"down menu labelled :guilabel:`Format`, select :guilabel:`GPX XML`:" -msgstr "" -"Pergi ke bawah pada pertengahan jendela, di bawah :guilabel:`Output`. Pada " -"menu daftar pilihan yang berlabel :guilabel:`Format`, pilih :guilabel:`GPX " -"XML`:" - -# 5a9fa35985f24a74ad740b9416cd3fdd -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:462 -msgid "" -"Click :guilabel:`File Name` and type a name for your saved file. It should " -"be something that describes the data, such as the date and the location. For " -"example: :file:`jakarta-07-07-2011`." -msgstr "" -"Klik :guilabel:`File Name` dan ketik sebuah nama untuk menyimpan file Anda. " -"Nama tersebut sebaiknya dapat mendeskripsikan tentang data GPS, misalnya " -"tanggal dan lokasi. Contoh: :file:`jakarta-07-07-2011`." - -# 95d1b3d52a644c7687060ad2af5ce57b -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:466 -msgid "Make sure your GPS is connected to the computer and turned on." -msgstr "Pastikan GPS Anda terhubung dengan komputer dalam keadaan menyala." - -# e3e431d379e541fe947ca5244c18b2a4 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:468 -msgid "Click :guilabel:`Apply` in the bottom right corner of the window." -msgstr "Klik :guilabel:`Apply` pada bagian pojok kanan bawah jendela." - -# ee54df3a0a1c4d4abddeb2e9fd0538f7 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:470 -msgid "" -"If all goes well you should see a bar move across the screen, indicating " -"that the data is being retrieved from the GPS. When it is finished, your " -"points and track will be saved in the file that you selected." -msgstr "" -"Jika semua berjalan dengan lancar seharusnya Anda akan melihat sebuah bar " -"yang bergerak pada layar, menandakan bahwa data sedang diterima dari GPS. " -"Ketika sudah selesai, titik dan track Anda akan disimpan ke dalam file yang " -"Anda pilih." - -# 0a635c66c257454fbc1b56a260ab108a -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:476 -msgid "8.6. Opening in JOSM" -msgstr "8.6. Membuka Waypoint dan Track di JOSM" - -# 11ad7eab053f46f495b3cddea02d83e5 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:478 -msgid "Now open JOSM. Go to :menuselection:`File ‣ Open...`" -msgstr "" -"Sekarang buka JOSM. Pada menu bagian atas, klik :menuselection:`File ‣ " -"Open...`" - -# 442ee4d47674450ab3de677150978e64 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:480 -msgid "" -"Find and select the file that you created with GPSBabel. Click :guilabel:" -"`Open`." -msgstr "" -"Cari dan pilih file yang telah Anda buat dengan GPSBabel. Klik :guilabel:" -"`Open`." - -# 7505e68fbb0942c289cac5fb395cf8a8 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:483 -msgid "You should now see your points and tracks loaded into JOSM." -msgstr "Anda seharusnya dapat melihat titik dan track Anda termuat pada JOSM." - -# c1bf8b128c3b4d76abfdc84a0280b71f -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:490 -msgid "9. Uploading GPS data in JOSM" -msgstr "9. Cara Mengupload Track GPS di JOSM" - -# 2a86af697bd041c4ae8b2c446c1ae22c -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:492 -msgid "" -"If you are not interested in sharing your tracks publicly on OSM, feel free " -"to skip this section." -msgstr "" -"Jika Anda tidak tertarik dalam membagi track Anda kedalam OSM, silahkan " -"lewatkan bagian ini." - -# 4b0f84a3cdef461088d6c4d5880e5315 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:495 -msgid "" -"Adding GPS tracks to the OSM server is useful because it enables other users " -"to see and use your tracks. For those who do not have a GPS or who can't " -"access a location, they are still able to benefit from your work and help " -"improve the map." -msgstr "" -"Menambahkan track GPS dan waypoint ke server OSM sangat berguna untuk banyak " -"alasan/tujuan. Untuk orang lain yang tidak mempunyai GPS atau mereka yang " -"tidak dapat mengakses lokasi, mereka masih bisa untuk mendapat keuntungan " -"dari kerja Anda dan membantu untuk mengembangkan peta." - -# 28b2ba79ce15408794fab7d827317faf -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:500 -msgid "" -"The easiest way to upload GPS tracks is to download the JOSM plugin :" -"guilabel:`DirectUpload`:" -msgstr "" -"Cara termudah untuk melakukan upload track GPS adalah dengan mendownload " -"plugin :guilabel:`DirectUpload`:" - -# 84dc13cb47c947c2ab76260c035b65fe -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:503 -msgid "" -"Open JOSM and go to :menuselection:`Edit ‣ Preferences`. Click the plugins " -"tab." -msgstr "" -"Buka JOSM dan klik :menuselection:`Edit ‣ Preferences`. Klik tab plugin." - -# b1c24b248abe473f9a4dd5ec095a9319 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:506 -msgid "" -"Type :kbd:`directupload` in the :guilabel:`Search` box. Check the box next " -"to the plugin, and then click :guilabel:`OK`." -msgstr "" -"Pada :guilabel:`Search` Cari ketik :kbd:`directupload` dan beri tanda " -"centang lalu klik :guilabel:`OK`." - -# b14af88ae6dd4577a65239457afdb3d2 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:513 -msgid "Restart JOSM." -msgstr "Restart JOSM." - -# 16d8f71a05a6465cad1fcfa3b3f22f75 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:515 -msgid "Open your GPX file in JOSM." -msgstr "Buka file GPX Anda pada JOSM." - -# c3d97a0a9e914080b4f944f05c487a1b -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:517 -msgid "Go to :menuselection:`Tools ‣ Upload Traces`" -msgstr "Klik :menuselection:`Tools ‣ Upload Traces`" - -# 3393568f90124a30a9f7e5e339e33a72 -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:522 -msgid "" -"Add tags, a description, and choose an option for whom to make the track " -"visible. Unless you have a reason for doing otherwise, choose :guilabel:" -"`Public`." -msgstr "" -"Deskripsikan file GPX Anda, tulis beberapa tag, dan tingkat penglihatan. " -"Kecuali Anda mempunyai alasan sebaliknya, pilih :guilabel:`Public`." - -# 3cbe1ced9bc040e791378b7f314e7e9c -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:529 -msgid "" -"Click :guilabel:`Upload Trace`. If requested to enter a username and " -"password, enter the credentials of your OSM account and click :guilabel:" -"`Authenticate`." -msgstr "" -"Klik :guilabel:`Upload Jejak`. Apabila diminta untuk memasukkan username dan " -"kata sandi, Anda dapat memasukkan nama pengguna dan kata sandi dari akun " -"OpenStreetMap dan centang simpan user dan password kemudian klik :guilabel:" -"`Membuktikan`." - -# b6c80addcf0642868923b6da561f32bc -#: ../../source/training/old-training/beginner/osm/104-using-gps.rst:535 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Pergi ke materi berikutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/105-field-papers.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/105-field-papers.po deleted file mode 100644 index ec9a99dd..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/105-field-papers.po +++ /dev/null @@ -1,584 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Dewi Sulistioningrum , 2013 -# Werner Macho , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 07:33+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 0df337fab1f940b29b6533cc21672a5b -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:6 -msgid "Module 5: Field Papers" -msgstr "Bab 5: Field Papers" - -# cca7cb3d3c664af69e68eb758f26701c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# e3119ad4a2b54e58a34c489d5cc1a90e -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:10 -msgid "Understand how to use Field Papers" -msgstr "Memahami cara kerja Field Papers" - -# ad3d6dcf0e1d436ba0df0e2816eae85c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:11 -msgid "Make and print Field Papers" -msgstr "Membuat dan mencetak Field Papers" - -# ef1f77b48a014e05bb3820e9b9259272 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:12 -msgid "Add information to Field Papers" -msgstr "Menambahkan informasi ke Field Papers" - -# 491236f9316d490685256ae560f156bc -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:13 -msgid "" -"Scan and upload Field Papers to `fieldpapers.org `_" -msgstr "" -"*Scan* dan *upload* Field Papers ke situs `fieldpapers.org `_" - -# d9a6150e108c44e5ad4aaa220066e5ad -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:14 -msgid "Open Field Papers in JOSM" -msgstr "Membuka Field Papers ke dalam JOSM" - -# 930137a250cb47de9be8d2273e7a87e8 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:16 -msgid "" -"In this module we will see how it is possible to record the coordinates of " -"places without a GPS. We will use a tool called Field Papers, which allows " -"you to print a map of an area, draw on it and add notes, and load the paper " -"back into JOSM, where you can add your locations to OpenStreetMap." -msgstr "" -"Pada modul ini, kita akan melihat bagaimana kita dapat merekam koordinat " -"dari suatu tempat tanpa GPS. Kita akan menggunakan sebuah *tool* bernama " -"Field Papers, yang mana memungkinkan kita untuk mencetak peta suatu wilayah, " -"menggambar dan menambahkan catatan di atasnya, dan membuka kertas tersebut " -"di dalam JOSM, dimana Anda dapat menambahkan lokasi Anda ke OpenStreetMap." - -# 24159dc45c1d4326a20815a29bff8215 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:23 -msgid "1. Overview" -msgstr "1. Gambaran Umum" - -# 57d3d07b29374c6ea6cefe6a4ec8efdd -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:25 -msgid "" -"Before going into detail about Field Papers, let’s look at an overview of " -"how the process works:" -msgstr "" -"Sebelum mempelajari lebih jauh tentang Field Papers, mari melihat gambaran " -"bagaimana Field Papers bekerja:" - -# 700da5a90f1d4fd0a91e36f4dc679d85 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:28 -msgid "" -"**Step 1:** Locate the area you want to map on the Field Papers website. " -"Print out a map of this area. You can choose to print the current map of the " -"area with OSM, or you can choose to print aerial imagery, if it is available " -"in your area." -msgstr "" -"**Langkah 1:** Carilah wilayah yang ingin Anda lakukan pemetaan pada situs " -"Field Papers. Cetak peta untuk wilayah tersebut. Anda dapat memilih untuk " -"mencetak peta saat ini berupa peta OSM ataupun Anda dapat memilih mencetak " -"dengan citra satelit, jika citra satelit tersebut tersedia untuk wilayah " -"Anda." - -# b3fe28b5d2f342ae92fa61d640093d37 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:33 -msgid "" -"**Step 2:** Use your printed map to survey the area. Add more places by " -"drawing them on the map. Draw lines for roads, shapes for buildings, and so " -"forth. Write notes about each location directly on the map, or write numbers " -"on the map that relate to numbers in your notebook, where you can record " -"more detailed information about each object." -msgstr "" -"**Langkah 2:** Gunakan Field Papers yang telah tercetak tersebut untuk " -"melakukan survei pada wilayah Anda. Tambahkan lebih banyak tempat/objek " -"dengan menggambarnya di atas peta. Gambarlah garis untuk jalan, bentuk untuk " -"bangunan, dan seterusnya. Tulislah catatan secara langsung pada peta tentang " -"masing-masing objek yang Anda gambar atau dapat memberi nomor untuk setiap " -"objek dalam buku catatan Anda, kemudian Anda menggunakan nomor tersebut " -"untuk menghubungan gambar dengan kode pada catatan." - -# 9e393b38e439431f905bce9d92d5c84c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:42 -msgid "" -"**Step 3:** Scan your paper into the computer. If you do not have a " -"scanner, you can take a photograph of the paper, if your camera is able to " -"take high quality pictures. Upload the image to the Field Papers website " -"(`http://fieldpapers.org/upload.php `_)." -msgstr "" -"**Langkah 3:** Scan Field Paper Anda kedalam komputer. Jika Anda tidak " -"memiliki scanner, Anda dapat foto Field Papers Anda, jika kamera Anda dapat " -"mengambil gambar dengan kualitas yang baik dan resolusi tinggi. Kemudian " -"upload tersebut ke situs Field Papers (`http://fieldpapers.org/upload.php " -"`_ )." - -# 80adf9c8ebbd400b81923520e51d1de0 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:47 -msgid "" -"**Step 4:** In JOSM, load the Field Paper. Use the objects you drew as a " -"reference to add them digitally into OSM." -msgstr "" -"**Langkah 4:** Pada JOSM, tambahkan Field Papers. Gunakan objek yang telah " -"Anda gambar sebagai acuan untuk menambahkan objek-objek tersebut menjadi " -"peta digital ke dalam OSM." - -# 6d3b556d56914fb89cceeadfb77e66ab -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:54 -msgid "2. How does Field Papers work?" -msgstr "2. Bagaimana Field Papers Bekerja?" - -# 068001743b824d818af00bf1a27fcf34 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:56 -msgid "" -"If you follow the Field Papers process described above, you will be " -"collecting accurate geographic coordinates of places with nothing more than " -"paper. How is this possible?" -msgstr "" -"Jika Anda mengikuti bagaimana cara kerja Field Papers sebagaimana dijelaskan " -"di atas, Anda akan mengumpulkan koordinat dari suatu tempat/lokasi secara " -"akurat hanya dengan menggunakan kertas. Bagaimama mungkin?" - -# f68cec64fe90425abf8c3a1a6a7a0aa1 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:63 -msgid "" -"When you print a Field Paper, it comes with a square barcode on the bottom " -"of the page. This bar code allows Field Papers to determine the exact " -"location of the map that you are using to survey. Later, when you load the " -"paper back into JOSM, all the objects that you drew will be in shown in " -"their actual locations, or at least quite close, which is good enough for us." -msgstr "" -"Ketika Anda mencetak sebuah Field Papers, kertas yang tersebut tercetak " -"dengan sebuah barcode berbentuk kotak pada bagian bawah halaman. Barcode ini " -"memungkinkan Field Papers untuk menentukan lokasi pasti dari peta yang Anda " -"gunakan untuk survei. Selanjutnya, ketika Anda menambahkan Field Papers ke " -"dalam JOSM, semua objek yang telah Anda gambar akan nampak pada lokasi " -"sebenarnya, atau paling tidak cukup dekat, yang mana cukup bagus untuk kita." - -# fa51b850df7c4ce1a4a4ab3987157853 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:70 -msgid "Next let’s learn how to create and use Field Papers." -msgstr "" -"Sekarang mari belajar bagaimana untuk membuat dan menggunakan Field Papers." - -# 95795e8cf8a043c08bd17086b8631757 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:73 -msgid "3. Create and print" -msgstr "3. Membuat dan Mencetak Field Papers" - -# 73457461fed340a8b472ea4a26dc40ff -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:75 -msgid "" -"Open your web browser - this may be Firefox, Chrome, Opera, or Internet " -"Explorer." -msgstr "" -"Buka browser internet Anda - misalnya Firefox, Chrome, Opera, atau Internet " -"Explorer." - -# 29a972add0fb4914a17208edaa3a2025 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:78 -msgid "" -"In the address bar at the top of the window, enter `http://fieldpapers.org/ " -"`_ and press :kbd:`Enter`." -msgstr "" -"Pada isian alamat situs pada bagian atas halaman browser, tulislah `http://" -"fieldpapers.org/ `_ dan tekan :kbd:`Enter`." - -# fafa097e0a9f43238c5227a9a6efac1e -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:82 -msgid "The website should look something like this:" -msgstr "Situs tersebut akan terlihat seperti berikut:" - -# cbe300fced2b4f59a3055e91f5d0a45a -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:87 -msgid "Click :guilabel:`Make yourself an Atlas`." -msgstr "Klik pada :guilabel:`Make yourself an Atlas`." - -# 0ad65dc8d2894bd28a2a1a279f9faa1c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:89 -msgid "" -"Enter the name of a place where you would like to print out a map, and " -"press :kbd:`Enter`. In this example we will search for :kbd:`jakarta`." -msgstr "" -"Ketiklah nama wilayah yang ingin Anda cetak peta nya, kemudian tekan :kbd:" -"`Enter`. Dalam contoh ini, kita akan mencari untuk wilayah :kbd:`jakarta`." - -# c47e31f9c380454f8c3a81262c0f8b44 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:95 -msgid "" -"Now you are presented with an interface where you can define the boundaries " -"of your Field Paper. The map that you see shows the area that you would like " -"to print on paper. You can print multiple pages, zoom in and out, and drag " -"the papers to cover specific boundaries on the map." -msgstr "" -"Sekarang Anda akan mendapatkan tampilan yang meminta Anda untuk membatasi " -"wilayah yang akan Anda cetak petanya dari Field Papers. Peta yang Anda lihat " -"menunjukkan wilayah yang akan Anda cetak petanya. Anda dapat mencetak peta " -"wilayah dalam beberapa halaman, memperbesar dan memperkecil peta, dan " -"menarik tepi-tepi kertas untuk memberikan batas wilayah pada peta." - -# f2802f013b014296a5a3c4542f8e3a20 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:103 -msgid "" -"Click on the various buttons to see what each does. Notice that in our " -"example we are presented with a two page set of Field Papers. To add or " -"subtract a page, click on the :guilabel:`+` and :guilabel:`-` buttons on the " -"map. It may be easiest to create only one page the first time that you use " -"Field Papers." -msgstr "" -"Klik pada berbagai tombol yang ada untuk melihat apa fungsi dari setiap " -"tombol tersebut. Perhatikan bahwa pada contoh ini kami menampilkan Field " -"Papers dengan dua halaman. Untuk menambahkan atau mengurangi sebuah halaman, " -"kita dapat klik pada tombol :guilabel:`+` dan :guilabel:`-` pada peta. Ini " -"mungkin paling mudah untuk membuat hanya satu halaman untuk pertama kalinya " -"Anda menggunakan Field Papers." - -# e0502b80467b475ebe1cf61cf3d02a82 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:112 -msgid "" -"Expand or decrease the area of the papers by dragging the button in the " -"lower right corner." -msgstr "" -"memperluas atau mengurangi luasan kertas dengan menarik tombol pada pojok " -"kanan bawah." - -# bda315741c2049b78bbd9146c320db7c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:118 -msgid "" -"Move the paper by clicking and dragging the button in the upper left corner." -msgstr "" -"Anda dapat memindahkan kertas dengan mengklik dan menggeser tombol pada " -"pojok kiri atas." - -# ce52ab5df3814015bc0c5b42bf069a4b -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:123 -msgid "" -"Adjust the paper orientation and type of map using the controls at the top." -msgstr "" -"Anda dapat menyesuaikan arah cetak kertas dan jenis peta dengan menggunakan " -"tombol pada sisi atas peta" - -# dfb5f495c6034933bf43e4b9fc91944f -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:128 -msgid "When you are finished adjusting the parameters, click :guilabel:`Next`." -msgstr "" -"Ketika Anda telah selesai mennyesuaikan parameter, klik :guilabel:`Next`" - -# cc951197260040838f791ec6610d2c10 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:130 -msgid "" -"Give your map a name, and if you want, you can add notes to be printed on " -"the map, such as questions you want to remember to answer or specific places " -"you want to identify. Then click :guilabel:`Next`." -msgstr "" -"Selanjutnya berilah nama, dan jika Anda menginginkan, Anda dapat menambahkan " -"catatan untuk ikut serta dicetak pada peta, misalnya catatan tentang " -"pertanyaan yang ingin Anda ingat untuk dijawab atau catatan tentang tempat-" -"tempat yang ingin Anda identifikasi. Kemudian klik :guilabel:`Next`" - -# 084bf5c9385b4ed0bb77b9423f2fb2a0 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:134 -msgid "" -"Finally choose your layout. Indicate whether you want pages only for your " -"maps, or if you want notes on the same page. If you choose the notes option, " -"then half of the page will be left for taking notes, and the other half will " -"contain the map." -msgstr "" -"Terakhir, pilih layout Anda. Anda dapat memilih apakah Anda ingin Field " -"Papers Anda hanya berisi peta, atau jika Anda ingin catatan pada halaman " -"yang sama. Jika Anda memilih untuk mencetak juga catatan yang ada, maka " -"separuh dari halaman Anda akan digunakan untuk mencetak catatan, dan separuh " -"yang lainya akan berisi peta." - -# ca530a64eddf46d0949824eb53e80d73 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:142 -msgid "It may take a few minutes to prepare your Field Paper." -msgstr "" -"Proses persiapan Field Papers Anda mungkin akan memakan waktu beberapa menit." - -# 0dc3833bf6874d36828911ac946f83b3 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:147 -msgid "" -"When the print is ready, scroll to the bottom and click :guilabel:`Download " -"PDF`. The Field Paper should begin downloading. If it loads in your browser, " -"you may need to save it by going to :menuselection:`File ‣ Save`." -msgstr "" -"Ketika Field Papers Anda telah siap, geser halaman ke bawah kemudian klik :" -"guilabel:`Download PDF` Selanjutnya Field Papers Anda seharusnya sudah mulai " -"ter-download. Jika Field Papers Anda langsung termuat di dalam browser, Anda " -"harus menyimpan file tersebut dengan mengklik :menuselection:`File > Save`." - -# 304e71bcbd4a4f58953344305ab6dfd3 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:152 -msgid "" -"When the download is finished, open the PDF file. Connect your computer to a " -"printer and print the page. If everything goes well, you should now have " -"your map printed on paper." -msgstr "" -"Ketika download telah selesai, buka file PDF. Hubungkan komputer Anda dengan " -"sebuah printer dan cetaklah halaman. Jika semuanya berjalan dengan lancar, " -"seharusnya kini Anda telah mendapatkan Field Papers Anda yang telah tercetak " -"di atas kertas." - -# 1faa35e506664c4a96ab651413c0248c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:157 -msgid "4. Map with Field Papers" -msgstr "4. Pemetaan dengan Field Papers" - -# e23aab99e06840ffb7095775fc9568e9 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:159 -msgid "" -"Take your Field Paper outside, and use it as a guide to walk and identify " -"new places that are not on the map." -msgstr "" -"Bawalah Field Papers Anda keluar, dan gunakan sebagai panduan untuk berjalan " -"dan mengidentifikasi tempat-tempat baru yang belum ada pada peta." - -# 1a743755fc464ceb883d6feec54b7162 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:162 -msgid "" -"Draw lines for roads, shapes for buildings, and so forth. Write notes about " -"each location directly on the map, or write numbers on the map that relate " -"to numbers in your notebook, where you can write more detailed information " -"about each object." -msgstr "" -"Gambarlah garis untuk jalan, bentuk untuk bangunan, dan seterusnya. Tulislah " -"catatan tentang setiap lokasi secara langsung pada peta, atau tulislah angka " -"pada peta yang menghubungkan objek pada peta dengan catatan, dimana Anda " -"menuliskan informasi yang lebih detail tentang objek Anda." - -# f3e363ea4c8d4cf9a42f8c2c9f7d7e0c -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:167 -msgid "" -"When you are satisfied with your additions on the paper map, then you are " -"ready to add them digitally into OSM." -msgstr "" -"Ketika Anda sudah merasa puas dengan penambahan Anda pada Field Papers Anda, " -"kemudian Anda dapat menambahkannya secara digital ke dalam OSM." - -# 630ec5b173a249a8bf668900e58182e5 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:171 -msgid "5. Scan and upload" -msgstr "5. *Scan* dan *upload*" - -# ef317c27c5e04c34b3c1a5a70cd37c33 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:173 -msgid "" -"Field Papers are useful for mapping with nothing more than paper, but they " -"are not 100% magic. We will still need to add our paper into JOSM, add our " -"information digitally and save the changes on OSM." -msgstr "" -"Field Papers sangat berguna untuk melakukan pemetaan lebih dari kertas, " -"namun Field Papers tidak 100% ajaib. Kita masih perlu menambahkan Field " -"Papers ke dalam JOSM, menambahkan informasi kita secara digital, kemudian " -"menyimpan perubahan kita pada OSM." - -# 3285b35d7a9f4a3cba345ef385c6eca6 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:177 -msgid "" -"The first step is to scan your Field Paper. Do this by attaching a scanner " -"to your computer, scanning the paper and saving it as an image file. If you " -"don’t have a scanner, take a photograph of the paper, but be careful to take " -"a good quality photo. Make sure that the paper is flat and the camera is " -"directly in front of it. Be sure to include the barcode in the image, as " -"Field Papers will not work without it. Here is an example of a scanned/" -"photographed image:" -msgstr "" -"Langkah pertama adalah scan Field Papers Anda. Anda bisa melakukan hal ini " -"dengan memasang dan menghubungkan sebuah scanner ke komputer Anda, scan " -"kertas dan menyimpan hasil scan tersebut menjadi sebuah file gambar. Jika " -"Anda tidak memiliki scanner, Anda dapat mem-foto kertas Field Papers Anda, " -"namun Anda harus berhati-hati agar dapat mengambil gambar yang baik. " -"Pastikan Field Papers Anda dalam kondisi benar-benar datar dan kamera Anda " -"tepat berada di depan kertas Field Papers. Pastikan Anda mengikutsertakan " -"barcode untuk Anda foto, karena Field Papers tidak akan bekerja tanpa " -"barcode ini. Berikut ini adalah contoh kertas Field Papers yang telah di-" -"scan ataupun difoto :" - -# 8fd2032ed3594abf866c8ca65b3401d3 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:189 -msgid "" -"Once your Field Paper is scanned and saved on the computer, open your web " -"browser and return to the http://fieldpapers.org/ just as before." -msgstr "" -"Begitu Anda men-scan Field Papers dan menyimpannya di komputer Anda, buka " -"browser internet Anda dan bukalah situs `_ " - -# 5b3e426d1f214718bacecf439b277525 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:193 -msgid "Click the :guilabel:`Upload` tab at the top of the page." -msgstr "Klik pada :guilabel:`Upload` di sisi atas halaman." - -# 98a18bd0765f4d9f9b302acdfe989d7f -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:198 -msgid "" -"Click :guilabel:`Choose File` and navigate to the file where you scanned/" -"photographed your Field Paper." -msgstr "" -"Klik :guilabel:`Choose File` dan arahkan ke file hasil scan/foto Field " -"Papers Anda." - -# 27e3383959a34cc796f489a7f24a5467 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:201 -msgid "" -"Click :guilabel:`Upload`. It may take a few minutes for the paper to upload, " -"depending on the speed of your internet connection." -msgstr "" -"Klik :guilabel:`Upload`. Proses upload ini membutuhkan beberapa menit, " -"tergantung pada kecepatan koneksi internet Anda." - -# 936a4cb6a894415e93f5b34e48fcfacb -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:207 -msgid "" -"You’ll be able to add additional notes to your Field Paper, but we will skip " -"this for now. Click :guilabel:`Finished`." -msgstr "" -"Anda dapat menambahkan catatan tambahan pada Field Papers Anda, namun untuk " -"saat ini kita akan melewatinya. Klik :guilabel:`Finished`." - -# fd2edf6c48ee4dddb1cc70c52e171a51 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:214 -msgid "6. Open in JOSM" -msgstr "6. Buka JOSM" - -# fc51d52494334502a2e218a7fc0573d4 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:216 -msgid "" -"When the scan has been processed, it can be added as a background layer in " -"JOSM. To display Field Papers in JOSM, the fieldpapers plugin must be " -"installed." -msgstr "" -"Ketika hasil scan Anda telah selesai diproses, kini dapat ditambahkan " -"sebagai latar belakang layer didalam JOSM. Untuk menampilkan hasil scan " -"Field Papers didalam JOSM, Anda dapat menggunakan plugin fieldpapers yang " -"harus terinstall." - -# 4264a988558a43389921192a82b5ef08 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:220 -msgid "Open JOSM and go to :menuselection:`Edit ‣ Preferences`." -msgstr "Buka JOSM dan klik :menuselection:`Edit > Preference`" - -# b97b6a6c32b44e428048f0e44852cca8 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:222 -msgid "Go to the :guilabel:`Plugins` tab." -msgstr "Pilih tab :guilabel:`Plugins`" - -# 94f1a6816a814d0389a91ab7db5d7792 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:227 -msgid "" -"Type :kbd:`fieldpapers` in the :guilabel:`Search` box. After it is found, " -"check the box next to it. Click :guilabel:`OK` and restart JOSM." -msgstr "" -"Ketikkan :kbd:`fieldpapers` pada kotak :guilabel:`Search`. Setelah " -"ditemukan, beri tanda centang pada kotak selanjutnya. Klik :guilabel:`OK` " -"dan Restart JOSM." - -# b754ae25bf434469baf28c35413d86c7 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:233 -msgid "" -"Open your browser and go to the `Field Papers website `_." -msgstr "Buka browser Anda dan buka situs `_." - -# e8979556793f4819a66907ba4fa1ec0d -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:235 -msgid "" -"Click :guilabel:`Watch`. Then move your mouse to the bottom and click :" -"guilabel:`Snapshots`." -msgstr "" -"Klik :guilabel:`Watch`. Kemudian arahkan mouse ke bawah dan klik :guilabel:" -"`Snapshots`." - -# c5dadf10f5ea478b9910d7fe1ec0116e -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:241 -msgid "" -"You will see all of the Field Papers that users around the world have " -"uploaded. Find your image, and then click on it." -msgstr "" -"Anda akan melihat semua Field Papers yang telah diupload pengguna lainnya di " -"seluruh dunia. Temukan foto Anda, dan klik pada foto tersebut." - -# fb5ded3b9e744dde806265377ae8c84b -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:244 -msgid "" -"We need the URL to load the Field Paper into JOSM. The URL is the web " -"address at the top of the page, which will be something like: *http://" -"fieldpapers.org/snapshot.php?id=67v87z5n#18/-5.15534/119.43913*" -msgstr "" -"Kita memerlukan URL untuk memuat Field Paper ke dalam JOSM. URL adalah " -"alamat web yang terletak diatas halaman, contonya seperti ini : *http://" -"fieldpapers.org/snapshot.php?id=67v87z5n#18/-5.15534/119.43913*" - -# 7dde7a24aba14668a7373f322ed3c6cd -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:248 -msgid "Copy the URL by selecting it and pressing :kbd:`CTRL + C`." -msgstr "*Copy* URL dengan memilihnya dan tekan :kbd:`CTRL + C`. " - -# a950533a490c4e529b0e5de4f73d79e7 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:253 -msgid "" -"Open JOSM. Since you installed the plugin, there should be a new Field " -"Papers menu at the top." -msgstr "" -"Buka JOSM. Setelah Anda menginstall plugin, seharusnya terdapat Menu Field " -"Papers di bagian atas." - -# ac7649c60db845f4bd93e9d74377c9ee -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:256 -msgid "" -"Go to :menuselection:`Field Papers ‣ Scanned Map` and paste the URL by " -"pressing :kbd:`Ctrl + V` on your keyboard." -msgstr "" -"Klik :menuselection:`Field Papers > Scanned Map` dan *paste* alamat URL " -"dengan cara tekan tombol :kbd:`Ctrl + V` pada keyboard. " - -# 7378c40abd624b57ace5d8eee295bb2b -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:259 -msgid "Click :guilabel:`OK`." -msgstr "Klik :guilabel:`OK`." - -# 106ba514cbaa4428b8fbfb6b4f814b76 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:264 -msgid "Wait a moment until the Field Paper appears in your JOSM layers." -msgstr "" -"Mohon tunggu beberapa saat sampai muncul peta field papers pada layer JOSM " -"Anda. " - -# d11ab442c5b74f48bc4a46af61c14fcb -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:269 -msgid "" -"Now you have a Field Papers layer that can be used as a reference to add OSM " -"data. It is like using imagery to identify objects on the ground, but " -"instead there are detailed drawings and notes from your field survey. Later, " -"when we have learned to access OSM data through JOSM, this can be used as a " -"reference to edit the map." -msgstr "" -"Sekarang Anda telah memiliki layer Field Papers yang digunakan sebagai " -"referensi untuk menambahkan data OSM. Itu seperti menggunakan citra satelit " -"untuk mengidentifikasi objek pada permukaan bumi, tetapi ini lebih detail " -"karena menggambar dan menambahkan catatan dari survei lapang. Kemudian, " -"ketika kita telah belajar untuk mengakses data OSM melalui JOSM, ini dapat " -"digunakan sebagai referensi untuk mengedit peta." - -# 1d4f9130f29f43f58dfd6a05eef2c9c0 -#: ../../source/training/old-training/beginner/osm/105-field-papers.rst:276 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/106-editing-osm-with-josm.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/106-editing-osm-with-josm.po deleted file mode 100644 index d402a030..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/106-editing-osm-with-josm.po +++ /dev/null @@ -1,937 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# mahardika fadmastuti , 2013 -# Werner Macho , 2014 -# Wulansari Khairunisa , 2013 -# Yantisa Akhadi , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 07:34+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 7d386b612c814222990f7a4483fff9cf -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:6 -msgid "Module 6: Editing OpenStreetMap with JOSM" -msgstr "Bab 6: Mengedit OpenStreetMap dengan JOSM" - -# cd98997abd7848fb90a901462bba60e2 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 4df5b1c26f2d4271b9886106766b880c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:10 -msgid "Download OSM data in the area you want to edit" -msgstr "Memahami cara mendownload data OSM pada area yang akan Anda edit" - -# d7220ed1e1a94fa5ade6ee2b153b1089 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:11 -msgid "Select layers" -msgstr "Memahami cara memilih layer" - -# fe6a3f97700f4b39825d1bf053f5dede -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:12 -msgid "Edit OSM data" -msgstr "Memahami cara mengedit data OSM" - -# b9f4df3c05b246858c6e721c2633b8a1 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:13 -msgid "Edit and understand tags" -msgstr "Memahami cara mengedit dan memahami tag" - -# 29db1063dc2449278bcd7d144d95b2f8 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:14 -msgid "Upload OSM data" -msgstr "Mengetahui cara mengupload data OSM" - -# 7e45687fb0574eae81e83d87d9f85c24 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:15 -msgid "Save OSM files" -msgstr "Mengetahui cara menyimpan file OSM" - -# e188c2ecea204e0f9da7e72c4d4a4ade -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:17 -msgid "" -"In :ref:`Module 3 ` we installed JOSM and began drawing " -"our first points, lines, and shapes. We added presets to these objects to " -"attach information about them. At the end, you were able to draw your own " -"map in JOSM." -msgstr "" -"Pada :ref:`Modul 3 ` kita telah menginstal JOSM dan mulai " -"menggambar objek titik, garis, dan bentuk/poligon pertama Anda. Kita " -"tambahkan preset pada objek-objek tersebut untuk memberikan informasi " -"tentang objek itu sendiri. Dan akhirnya, Anda dapat menggambarkan peta Anda " -"pada JOSM." - -# 64ea211ef8404a3ca1e575706963fcd1 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:22 -msgid "" -"Drawing maps was an exercise to learn JOSM and learn how to draw places on " -"the map. But our maps were not accurate, because we had not yet included " -"location. In the past two modules we have examined two tools, GPS and Field " -"Papers, which allow us to collect actual locations of places. These " -"locations are represented by coordinates." -msgstr "" -"Menggambar peta merupakan latihan untuk mempelajari JOSM dan bagaimana " -"menggambarkan tempat diatas peta. Namun, peta kita belum akurat karena kita " -"tidak memberikan lokasi yang benar. Pada dua modul sebelumnya, kita telah " -"mempelajari dua *tool*, GPS dan Field Papers, yang memungkinkan kita untuk " -"mengumpulkan lokasi dari suatu tempat. Lokasi ini direpresentasikan dengan " -"koordinat." - -# f4a39013b9224649a87689dbaec4ab6c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:28 -msgid "" -"Drawing a real map, that is, a map where all the points, lines and shapes " -"are in their proper location, is no different than drawing the maps we drew " -"previously. But now, we will utilise our GPS points and tracks, and our " -"Field Papers, to draw similar maps at their correct locations on the planet." -msgstr "" -"Menggambar peta sesungguhnya yaitu peta dimana setiap titik, garis, dan " -"bentuk/poligon berada pada lokasi yang sesungguhnya tidaklah berbeda dengan " -"menggambar peta yang kita gambar sebelumnya. Namun sekarang, kita akan " -"menggunakan titik dan *track* dari GPS, dan Field Papers, untuk menggambar " -"peta yang serupa dengan lokasi yang sebenarnya di muka bumi." - -# 6d0c47ad28ac47f9bb69bdb9a432588d -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:34 -msgid "" -"In this module we will learn how to edit the map on OpenStreetMap and add " -"our improvements. We’ll learn the basic cycle of mapping on OSM:" -msgstr "" -"Pada modul ini kita akan mempelajari bagaimana mengedit dan menambahkan data " -"pada peta OpenStreetMap. Kita akan mempelajari langkah-langkah dasar " -"pemetaan dalam OSM:" - -# 0775c7f6ed0b468fa4b78cfdb7cd8626 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:37 -msgid "Download data" -msgstr "*Download* data" - -# c2284db0c0c54476837a0b4ef39e87df -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:38 -msgid "Edit and add objects on the map" -msgstr "Edit dan tambahkan objek pada peta" - -# d8ab39dca18e4cb88bad6abccab0668e -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:39 -msgid "Upload changes to OSM" -msgstr "Mengupload perubahan ke OSM" - -# f5443fbc0ae647bebd06ebc661e837a5 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:40 -msgid "See the changes on the map!" -msgstr "Lihat perubahan pada peta!" - -# 3f057ba74d4a4c40883227f0247dbf8c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:43 -msgid "1. Exploring JOSM" -msgstr "1. Mengeksplorasi JOSM" - -# 711470f33f284e06919fba3fc9764e41 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:45 -msgid "Let's begin by exploring a little more in JOSM." -msgstr "Mari mulai dengan mengeksplorasi sedikit lebih banyak pada JOSM." - -# ec5e4804932c41f1944cc5b8c5a0ee42 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:47 -msgid "Open JOSM." -msgstr "Buka JOSM." - -# da2b5a13c33f4bbdbb0749e7f008fd06 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:49 -msgid "" -"Load your gpx file (tracks and/or waypoints) and your Field Paper in JOSM, " -"as in the previous modules. It is not necessary to open both, but you can if " -"you want. Refer to the previous two modules if you don’t remember how to " -"open these in JOSM." -msgstr "" -"Buka file gpx (*tracks* dan *waypoint*) Anda dan Field Paper Anda pada JOSM, " -"seperti pada modul sebelumnya. Anda tidak harus membuka keduanya, tetapi " -"Anda dapat membukanya jika ingin. Buka kembali dua modul sebelumnya jika " -"Anda tidak ingat bagaimana membuka file tersebut pada JOSM." - -# 98c8d71674a64ffd9e0c3abea8ee722f -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:54 -msgid "" -"JOSM has many different buttons and panels. We are already familiar with the " -"main window - this is the map window, and it is where most of the action " -"takes place. Here you view, edit, and add to the OSM data." -msgstr "" -"JOSM memiliki banyak fitur dan panel yang berbeda-beda. Kita telah mengenal " -"halaman utama - ini halaman peta atau *map window*, dan pada halaman ini " -"hampir semua pekerjaan dilakukan. Pada halaman ini, Anda dapat melihat, " -"mengedit, dan menambahkan data OSM. " - -# ac418835d520457783d0e21411789236 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:58 -msgid "" -"To the right of the map window are a series of panels, which each do " -"something different. When you first install JOSM several panels are shown by " -"default, such as :guilabel:`Layers`, :guilabel:`Properties` and :guilabel:" -"`Selection`. When you select a point, line or shape in the map window, it is " -"shown in the :guilabel:`Selection` panel. Information about the object is " -"shown in the :guilabel:`Properties` panel, and the username of the author of " -"that object is shown in the :guilabel:`Authors` panel." -msgstr "" -"Pada sisi kanan halaman peta terdapat beberapa panel yang masing-masing " -"memiliki tugas dan fungsi yang berbeda-beda. Ketika Anda pertama kali " -"menginstal JOSM beberapa panel telah muncul sesuai dengan pengaturan bawaan, " -"seperti :guilabel:`Layers`, :guilabel:`Properties` dan :guilabel:" -"`Selection`. Ketika Anda memilih suatu objek titik, garis, ataupun bentuk/" -"poligon pada halaman peta, objek tersebut akan muncul pada panel :guilabel:" -"`Selection`. Informasi tentang objek tersebut akan muncul pada panel :" -"guilabel:`Properties`, dan nama pengguna yang membuat objek tersebut akan " -"muncul pada panel :guilabel:`Authors`." - -# b418be0be28e4a6793b62890306987e7 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:70 -msgid "" -"On the left side of JOSM, there are several toolbars which consist of many " -"buttons. On the uppermost toolbar are different buttons which change what " -"you can do with your mouse. You are already familiar with the first two, " -"the :guilabel:`Select` tool and the :guilabel:`Draw` tool. The other tools " -"make it easier to zoom in, delete an object, draw a shape or create a line " -"that is parallel to another line." -msgstr "" -"Pada sisi kiri JOSM, terdapat beberapa toolbar yang mana terdiri dari banyak " -"tombol/ikon. Masing-masing toolbar ini memiliki fungsi yang berbeda-beda " -"yang dapat berubah dengan cara menggerakkan mouse Anda. Anda telah mengenal " -"dua toolbar pertama, yaitu tool :guilabel:`Select` dan tool :guilabel:" -"`Draw`. *Tool* yang lain berfungsi untuk mempermudah *zoom in* atau " -"memperbesar peta, menghapus objek, menggambar bentuk-bentuk tertentu, " -"ataupun membuat sebuah garis yang sejajar dengan suatu garis." - -# 63a1050e37694ee3b5eb451ecd27977c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:77 -msgid "" -"Below these tools are many more buttons. These buttons control what you see " -"on the right side of JOSM. Using these buttons you can open and close the " -"boxes on the right, such as :guilabel:`Properties`, :guilabel:`Selection` " -"and :guilabel:`Author`." -msgstr "" -"Di bawah *tool* ini terdapat banyak tombol, yang mengontrol apa yang dapat " -"kita lihat pada sisi kanan halaman JOSM. Dengan menggunakan tombol-tombol " -"tersebut, Anda dapat membuka ataupun menutup kotak/panel pada sisi kanan " -"JOSM, seperti :guilabel:`Properties`, :guilabel:`Selection` dan :guilabel:" -"`Author`." - -# be78317c504a4855a0d6f313fce23f5c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:83 -msgid "1.1. Downloading OSM Data" -msgstr "1.1. Download Data OSM" - -# 3653e87ca5a7426ab8b5244d92ee02bf -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:85 -msgid "" -"Remember the cycle of editing OSM described in the introduction of this " -"module? Download, edit, save. Before we can edit the map, we must download " -"the existing OSM data in our area." -msgstr "" -"Masih ingat dengan tahapan mengedit OSM yang dijelaskan pada awal modul ini? " -"Download, edit, simpan. Sebelum kita mengedit peta, kita harus mendownload " -"data OSM pada wilayah kerja kita." - -# fe52ffa498504bfaaf5ab68a1acd73d8 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:89 -msgid "" -"When you open a gpx track or Field Paper, the map window will show what you " -"have opened, and will automatically move to the correct coordinates. Look in " -"the bottom left corner of JOSM. Notice the two numbers, which are the " -"latitude and longitude (coordinates) of your mouse cursor." -msgstr "" -"Ketika Anda membuka *track* GPS atau Field Papers, halaman peta akan " -"menunjukkan apa yang Anda buka, dan secara otomatis akan menunjukkan nilai " -"koordinat yang akurat. Lihat pada sudut kiri bawah JOSM. Perhatikan dua " -"angka, yaitu Latitude dan Longitude (koordinat) dari mouse kursor Anda." - -# 5ddcee47d8f946378dca352e9fb6f5a9 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:97 -msgid "" -"Because our map window is already showing the area that we want to edit, it " -"is easy to download the OSM data for this area. Go to :menuselection:`File ‣ " -"Download from OSM`. This opens the :guilabel:`Download` window. This can be " -"accessed more simply by clicking the :guilabel:`Download` button, shown here:" -msgstr "" -"Karena halaman peta telah menunjukkan area yang akan kita edit, maka mudah " -"saja bagi kita untuk mendownload data OSM sesuai area kerja kita. Klik :" -"menuselection:`File ‣ Download from OSM` akan membuka jendela :guilabel:" -"`Download`. Ini dapat diakses lebih mudah dengan klik ikon :guilabel:" -"`Download` , seperti ini: " - -# f2395ee6ec7c4461956d434fbcb88f22 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:106 -msgid "" -"When the download window opens, you should see a map with a pink box drawn " -"on it. If you don’t see the map, click on the tab marked :guilabel:`Slippy " -"map`." -msgstr "" -"Ketika kotak dialog terbuka, Anda seharusnya melihat sebuah peta dengan " -"kotak berwarna merah muda di atas peta tersebut. Jika Anda tidak melihat " -"peta, klik tab :guilabel:`Slippy map`." - -# 6aab33dba876403e8231f09c6de615fa -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:113 -msgid "" -"The pink box represents the area of the map that you would like to download " -"for editing. Unless you have moved the map window since you opened your GPS " -"file or Field Papers, the box should be drawn around the correct area. " -"However if you would like to download a larger area, draw a new box. To do " -"so, click on the map, hold your left mouse button down and drag the mouse to " -"create a box. Release the mouse button to finish drawing the box." -msgstr "" -"Kotak berwarna merah muda menujukkan area yang akan didownload datanya untuk " -"selanjutnya Anda edit. Jika Anda tidak menggeser peta pada halaman peta " -"ataupun menutup halaman peta dimana Anda membuka file GPS atau Field Papers " -"Anda, kotak merah muda seharusnya sudah tergambar di sekitar area yang benar " -"yaitu pada wilayah kerja Anda. Namun, jika Anda ingin mendownload data untuk " -"wilayah yang lebih luas, Anda dapat menggambar kotak baru. Untuk menggambar " -"kotak baru, klik pada peta, klik kiri dan tahan tombol kiri mouse, kemudian " -"drag mouse Anda untuk membuat sebuah kotak. Lepaskan tombol kiri mouse Anda " -"yang mana sejak tadi Anda tekan dan tahan, untuk menyelesaikan penggambaran " -"kotak merah muda." - -# 837ed08c4dfe4a76bc720ff3c4b6bd7b -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:121 -msgid "" -"When you are satisfied with the size and location of the box, click :" -"guilabel:`Download` at the bottom of the window. JOSM will get the data for " -"this area from OSM and open it in your map window for editing." -msgstr "" -"Ketika Anda telah sesuai dengan ukuran dan lokasi/posisi kotak, klik tombol :" -"guilabel:`Download` yang terdapat pada bagian bawah kotak dialog. JOSM akan " -"mendapatkan dan mendownload data OSM untuk area tersebut dan membukanya pada " -"halaman peta untuk selanjutnya Anda edit." - -# da85ba3f737c496fbc6fe8878c5f5df3 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:126 -msgid "2. JOSM Layers" -msgstr "2. Layer JOSM" - -# f9df26820cb84cd78a8a4b1daa562c34 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:128 -msgid "" -"Open your GPS file and downloaded data from OSM, if you haven’t already. " -"Notice that when you open a file, add Field Papers or download from OSM, " -"another item is added to the :guilabel:`Layers` panel on the right side of " -"JOSM. Your :guilabel:`Layers` panel may look something like this:" -msgstr "" -"Buka file GPS Anda dan download data dari OSM, jika belum ada. Perhatikan " -"bahwa ketika Anda membuka sebuah file, atau menambahkan Field Papers, atau " -"mendownload dari OSM, sebuah item baru akan bertambah pada panel :guilabel:" -"`Layers` di sisi kanan JOSM. Panel :guilabel:`Layers` Anda seharusnya " -"terlihat seperti berikut:" - -# 52f87bf59afb41679d165af854909cee -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:137 -msgid "" -"Each item in this list represents a different source of data that is open in " -"the map window. In the example above, “Data Layer 2” is the OSM data that we " -"want to edit. “Markers” are the waypoints from the GPS, and “30 Juni 2011." -"gpx” is the track from the GPS. Finally, “Field Papers” is the layer created " -"when we added our Field Paper into JOSM." -msgstr "" -"Setiap item pada daftar tersebut merepresentasikan sumber data yang berbeda " -"yang terbuka pada halaman peta. Pada contoh di atas, “Data Layer 2” " -"merupakan layer yang isinya berasal dari data OSM yang mana akan kita edit. " -"“Penanda” merupakan layer yang isinya adalah *waypoint* dari GPS, dan “30 " -"Juni 2011.gpx” merupakan layer yang isinya adalah *track* GPS. Terakhir, " -"“Field Papers” merupakan layer yang terbentuk saat kita menambahkan Field " -"Papers kita kedalam JOSM." - -# 222bd8ea134a4dc8bfa0715c04b2e375 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:143 -msgid "" -"Add the Bing imagery layer, which shows satellite imagery, by going to :" -"menuselection:`Imagery ‣ Bing Sat`." -msgstr "" -"Tambahkan layer citra satelit Bing, yang menunjukkan citra satelit, dengan " -"cara :menuselection:`Imagery ‣ Bing Sat`." - -# 0d91d9ef2ee64a5794c6b9b0760dbd89 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:146 -msgid "" -"To hide one of the layers, select it with your mouse and click the :guilabel:" -"`Show/Hide` button, which looks like this:" -msgstr "" -"Untuk menyembunyikan salah satu layer, pilih dengan mouse layer yang ingin " -"Anda sembunyikan tersebut dan klik tombol :guilabel:`Show/Hide` seperti ini:" - -# cee213e89f7a40059594aef9b7713be2 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:152 -msgid "" -"The layer will disappear in the map window. Click :guilabel:`Show/Hide` " -"again, and it will reappear." -msgstr "" -"Layer menjadi tidak tampak pada halaman peta. Klik :guilabel:`Show/Hide` " -"lagi, maka layer muncul kembali." - -# 7d5478d1496c4663b356dfe7d62043c1 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:155 -msgid "" -"Remove a layer by selecting it and clicking the :guilabel:`Delete` button:" -msgstr "Hapus layer yang dipilih dan klik ikon :guilabel:`Delete`:" - -# 39bc0cb9177045349390c2902b851be3 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:160 -msgid "" -"Lastly, it’s important to know that you can only edit the layer that is " -"considered \"Active” by JOSM. If you are unable to edit the map in your map " -"window, it’s probably because you don’t have the correct layer set as " -"active. Most layers, such as GPS points, Field Papers, and satellite " -"imagery, can’t be edited. The only layers that can be edited are data from " -"OSM, which are usually called “Data Layer 1”." -msgstr "" -"Terakhir, penting untuk dipahami bahwa Anda hanya dapat mengedit layer yang " -"berada dalam posisi “Aktif” di JOSM. Jika Anda tidak dapat mengedit peta " -"pada halaman peta Anda, hal ini kemungkinan karena layer yang aktif. " -"Sebagian besar layer, seperti titik GPS, Field Papers, dan citra satelit, " -"tidak bisa diedit. Satu-satunya layer yang bisa diedit dalah layer yang " -"berasal dari OSM, yang biasanya bernama “Data Layer 1”." - -# c74c5e2f351642ec939ab94d9a04ee9c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:167 -msgid "" -"To make a layer active, select it in the :guilabel:`Layers` panel, and click " -"on the :guilabel:`Activate` button:" -msgstr "" -"Untuk mengaktifkan suatu layer, pilih nama layer Anda pada panel :guilabel:" -"`Layer`, kemudian klik tombol :guilabel:`Aktifkan`:" - -# 103926e36ddb4bf787f602e2d6877df6 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:174 -msgid "3. Editing" -msgstr "3. Mengedit" - -# d9a2e91d59e442a2a13320f9f9fac5f8 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:176 -msgid "" -"The next step is to edit the map and add new items. This is not always easy " -"at first, but with practice you will get better and better. Note that you " -"can select tools in JOSM by clicking their buttons in the toolbar, or you " -"can use keys on the keyboard as shortcuts. The shortcut keys are indicated " -"in parentheses below." -msgstr "" -"Langkah selanjutnya adalah mengedit peta dan menambahkan item-item yang " -"baru. Sedikit rumit jika Anda baru pertama kali, namun dengan praktek dan " -"latihan secara rutin Anda akan semakin mahir dan mudah. Perhatikan bahwa " -"Anda dapat memilih *tool* di JOSM dengan klik ikon pada toolbar, atau Anda " -"dapat menggunakan kata kunci pada keyboard sebagai jalan pintas. Jalan " -"pintas tersebut ditunjukkan dengan tanda kurung dibawah." - -# 4faa1ecddc56480ab61d673dea420393 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:182 -msgid "" -"To move a point, line or shape, use the :guilabel:`Select` tool (:kbd:`S`). " -"Click on an object and drag it where it should be. This can be used to " -"correct the location of items that have been put in the wrong place." -msgstr "" -"Untuk memindahkan suatu titik, garis, ataupun bentuk/poligon gunakan *tool* :" -"guilabel:`Select` atau (:kbd:`S`) .Klik pada objek yang ingin digeser/" -"dipindahkan, kemudian drag pada lokasi yang seharusnya. Kita dapat " -"menggunakan cara ini untuk memperbaiki lokasi/posisi objek kita yang mungkin " -"sebelumnya dalam posisi yang salah ataupun kurang tepat." - -# b76b9749f17f49c29a588abf7e32dc1d -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:186 -msgid "" -"Use the :guilabel:`Draw` tool (:kbd:`A`) to draw new points, lines, and " -"shapes. Attach attributes to these objects by selecting from the :" -"menuselection:`Presets` menu, as we did in Module 3." -msgstr "" -"Gunakan tombol :guilabel:`Draw` tool (:kbd:`A`) untuk menggambar titik, " -"garis, dan bentuk/poligon yang baru. Gunakan menu :menuselection:`Presets` " -"untuk memberikan keterangan-keterangan tentang objek, sebagaimana yang telah " -"dijelaskan pada Modul 3." - -# 734b15136dc64078a683d5df5e6fe086 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:193 -msgid "" -"Remember that your GPS points and Field Papers don’t automatically go into " -"OSM. You need to add them to the OSM map digitally using the :guilabel:" -"`Draw` tool. But your points, tracks, and Field Papers can be seen in the " -"background as a guide." -msgstr "" -"Ingat titik-titik GPS dan Field Paper Anda tidak otomatis masuk menjadi " -"bagian dari data OSM. Anda harus menambahkan titik-titik GPS dan Field Paper " -"Anda ke data OSM secara digital, yaitu dengan menggambar titik-titik " -"tersebut menggunakan tool :guilabel:`Draw`. Jadi, titik-titik GPS, *track*, " -"dan Field Papers Anda hanya menjadi latar belakang sebagai panduan." - -# daf86340b08247a3b7fd00fad6d9adee -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:198 -msgid "" -"Let’s assume that you saved a waypoint on your GPS named \"030\" and wrote " -"in your notebook that 030 is a school. To add this point into OSM, select " -"the :menuselection:`Draw` tool, and double-click on top of point 030 in your " -"map window. This will create a point. Then go to the :menuselection:" -"`Presets` menu, and find the preset for school. Enter the name of the school " -"and click :guilabel:`Apply Preset`. Do the same to add lines and shapes." -msgstr "" -"Sebagai contoh, misalnya Anda menyimpan satu *waypoint* pada GPS Anda dengan " -"nama titik \"030\", dan pada buku catatan Anda memberikan keterangan bahwa " -"titik 030 adalah sebuah sekolah. Untuk menambahkan titik ini ke OSM, Anda " -"harus menggambarnya sendiri. Caranya, terlebih dahulu klik tombol :" -"menuselection:`Gambar node`, dan lakukan double-klik tepat di atas titik 030 " -"pada halaman peta Anda. Maka akan terbentuk satu objek titik. Klik menu :" -"menuselection:`Presets`, kemudian carilah preset untuk sekolah. Tuliskan " -"nama sekolahnya dan klik :menuselection:`Tambahkan Preset`. Lakukan cara " -"yang sama untuk menggambarkan objek garis dan bentuk/poligon." - -# f9cc3542b61842848993d0cefb207dd9 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:210 -msgid "4. Tags" -msgstr "4. Tags" - -# 87ba77a8e8c445e6ac600b02e8eca4fb -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:212 -msgid "" -"When you draw a point, line or shape, it has a location, but no information " -"about what it is. In other words, we know where it is, but not what it is. " -"Before now, we have been using items from the :menuselection:`Presets` menu " -"to define what it is. The way OSM knows what an object is is by using tags." -msgstr "" -"Ketika Anda menggambar suatu objek titik, garis, ataupun bentuk/poligon, " -"objek tersebut telah memiliki lokasi, namun tidak ada informasi tentang " -"objek apakah itu. Dengan kata lain, kita tahu dimana objek tersebut, tapi " -"kita tidak tahu apakah itu. Sebelumnya, kita menggunakan menu :menuselection:" -"`Presets` untuk mendefinisikan apakah suatu objek itu. Cara OSM mengetahui " -"apakah suatu objek itu adalah dengan menggunakan tag." - -# feb054cc8d8949b2ab5d2ab1b8dda862 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:218 -msgid "" -"A tag is like a label that you can put on something. For example, if we draw " -"a square, it’s only a square. But then we add multiple tags to it that " -"describe what it is:" -msgstr "" -"Sebuah tag mirip sebuah label yang mana Anda dapat menambahkan keterangan di " -"dalamnya. Sebagai contoh, Kita menggambar sebuah area persegi, maka persegi " -"tersebut hanyalah sebuah bentuk persegi. Namun kemudian kita menambahkan " -"banyak tag untuk mendeskripsikan objek apakah itu:" - -# c260d67eeb79421ab5b9588ed5e666bc -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:222 -msgid "this square is a building" -msgstr "bentuk persegi ini adalah bangunan" - -# 42d4ed7c07e24b4cb47f57b1a484a434 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:223 -msgid "the name of the building is “Menara Thamrin”" -msgstr "nama dari bangunan adalah \"Menara Thamrin\"" - -# 4c383b853a9b4b1e9bc5bac897720861 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:224 -msgid "the building is 32 levels high" -msgstr "bangunan ini memiliki 32 tingkat" - -# 70fbc33ced3948459ddc58e295d9c84a -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:226 -msgid "" -"We can add as many tags as we want to an object. Tags are saved as pairs of " -"text, called the keys and the values. In OSM, the tags written above would " -"be:" -msgstr "" -"Kita dapat menambahkan tag sebanyak apapun pada suatu objek. Tag disimpan " -"sebagai sepasang teks, yaitu keys dan values. Pada OSM, tag yang ditulis di " -"atas tersebut sebenarnya tertulis sebagai berikut:" - -# f6240b67b0d74dc7898fc34da218638f -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:230 -msgid "building = yes" -msgstr "building = yes" - -# 4f62146d7c6b489b86826069542a34f9 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:231 -msgid "name = Menara Thamrin" -msgstr "name = Menara Thamrin" - -# ea7e8e189ed54113896bbb4c50370938 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:232 -msgid "building:levels = 32" -msgstr "building:levels = 32" - -# 3c7f85a253eb4287ab569460556b6d20 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:234 -msgid "" -"When you select an object in JOSM, you can see all the tags that are " -"attached to it in the :guilabel:`Properties` panel on the right." -msgstr "" -"Jika Anda memilih suatu objek pada JOSM, Anda dapat melihat semua tag yang " -"terdefinisi pada panel :guilabel:`Properti` di sisi kanan." - -# 152694830b3f41239122a019747a6da8 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:241 -msgid "4.1. Editing Tags" -msgstr "4.1. Mengedit Tag" - -# 787d14ce5e734dbbbf6868e26fa2cc6e -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:243 -msgid "" -"You can add, edit and delete these tags from the :guilabel:`Properties` " -"panel. The tags are traditionally in English, so if you prefer you can " -"always use the :menuselection:`Presets` menu to simplify tagging objects. " -"When you add or change tags, such as primary highway versus footpath, the " -"style will change according to the tag." -msgstr "" -"Anda dapat menambahkan, mengedit, dan menghapus suatu tag dari panel :" -"guilabel:`Properties`. Tag-tag ini dalam bahasa Inggris, sehingga Anda lebih " -"baik menggunakan menu :menuselection:`Preset` untuk mempermudah pemberian " -"tag objek. Ketika Anda menambahkan atau mengubah tag, misalnya jalan primer " -"atau jalan setapak, simbol yang akan muncul pada peta akan berubah/berganti " -"sendiri tergantung pada tag yang terdefinisi." - -# 4f2300d6d7bd41d9bc21e09c5bd7718f -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:249 -msgid "" -"To edit an existing object, first select it. Then edit the tags in one of " -"two ways:" -msgstr "" -"Untuk mengedit objek yang sudah ada, pertama pilih objek tersebut. Kemudian " -"edit tag dalam satu dari dua cara:" - -# 85501d28e4604e6e8610cddf400ac56d -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:252 -msgid "" -"Use the :menuselection:`Presets` menu to open up a form and edit the " -"information, or" -msgstr "" -"Gunakan menu :menuselection:`Presets` untuk membuka suatu form dan mengedit " -"informasi pada form tersebut, atau" - -# 54f1361b78494be786e6e38dbe86b3f4 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:254 -msgid "" -"Edit the tags directly in the :guilabel:`Properties` window on the right." -msgstr "" -"Mengedit tag secara langsung pada panel :guilabel:`Properti` di sebelah " -"kanan." - -# 56fb1f2a74da4dcc8c2667597788d5b6 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:261 -msgid "4.2. Common Mistake" -msgstr "4.2. Kesalahan Umum" - -# 49161e007e0a4d67920e7aa43a7748c5 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:263 -msgid "" -"A common mistake is to tag nodes when you want to apply tags to lines or " -"polygons." -msgstr "" -"Kesalahan umum salah satunya adalah pemberian tag pada titik ketika Anda " -"ingin memberikan tag ke garis atau poligon." - -# 693de2c59818456093897d2b05ce636e -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:266 -msgid "" -"When adding tags to a node, select the node and then add the relevant tags " -"(or use the :menuselection:`Presets` menu). However, when tagging a line or " -"polygon, it is important to select the line, and NOT the nodes that make up " -"the line." -msgstr "" -"Ketika Anda menambahkan tag pada suatu objek titik, Anda terlebih dahulu " -"harus memilih titik Anda kemudian menambahkan tag (atau gunakan menu :" -"menuselection:`presets`). Namun, ketika pemberian tag pada garis atau " -"poligon, itu penting untuk memilih garis, dan BUKAN pada titik-titik " -"penyusun garis." - -# b256b641bd814861ba2d463616173095 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:271 -msgid "" -"New users frequently use the JOSM :guilabel:`Select` tool to draw a box " -"around an object, which causes everything (both the line or shape as well as " -"its nodes) to be selected. Then when tags are applied to the selected " -"objects, they are applied to the nodes as well. To avoid this, be sure to " -"only select lines when you want to add tags to them." -msgstr "" -"Kesalahan yang umum terjadi pada pengguna baru dalam menggunakan JOSM yaitu " -"menggunakan tool :guilabel:`Select` untuk menggambar kotak yang mengelilingi " -"suatu objek, hal ini mengakibatkan semua elemen dari objek tersebut (baik " -"garis maupun titik-titik pada garis tersebut, menjadi dalam posisi " -"terpilih). Dan ketika Anda memberikan tag, maka tag tersebut akan berlaku " -"untuk semua elemen yang terpilih, bahkan pada titik-titiknya. Untuk " -"menghindarinya, pastikan bahwa Anda hanya memilih garis pada objek yang akan " -"Anda beri tag/keterangan tersebut." - -# 6846120d9ca64129900bd31aaa46e970 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:280 -msgid "" -"More information about tags and presets can be found in the :ref:" -"`Intermediate OpenStreetMap Guide Module 4 `." -msgstr "" -"Untuk informasi lebih lanjut tentang tag dan preset dapat Anda temukan pada :" -"ref:`Panduan OpenStreetMap Tingkat Menengah Modul 4 `." - -# a2dd50fe74b34c8580b28b0eead40c97 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:285 -msgid "5. Uploading Changes" -msgstr "5. Upload Perubahan" - -# cacdbba64b08431593576660251df11e -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:287 -msgid "" -"After we have made a couple of changes to improve the map, we need to upload " -"those changes to OSM. To save changes, we must be connected to the internet." -msgstr "" -"Setelah Anda melakukan beberapa perubahan dan perbaikan pada peta, segera " -"simpan perubahan-perubahan tersebut ke OSM. Untuk menyimpan perubahan, kita " -"membutuhkan koneksi internet." - -# 0f18b336c82c49f7a47c6b08569b585b -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:291 -msgid "" -"Go to :menuselection:`File ‣ Upload Data`. This opens the :guilabel:`Upload` " -"window. This can be accessed more simply by clicking the :guilabel:`Upload` " -"button, shown here:" -msgstr "" -"Klik menu :menuselection:`File ‣ Upload Data`. Buka jendela :guilabel:" -"`Upload`. Anda juga dapat mengakses lebih mudah dengan mengklik tombol :" -"menuselection:`Upload` seperti di samping ini: " - -# b8153bc6c046435b8847293d348290c6 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:298 -msgid "" -"The window that appears shows a list of the objects that you are adding and " -"the objects you are modifying or deleting. In the box at the bottom you are " -"asked to provide a comment about the changes that you are making. Type in " -"here a description of your edits." -msgstr "" -"Jendela yang muncul menampilkan daftar objek yang Anda tambahkan, edit, atau " -"pun Anda hapus. Pada kotak di bagian bawah, Anda diminta untuk memberikan " -"komentar tentang perubahan yang Anda buat. Ketikkan disini deskripsi dari " -"perubahan Anda. " - -# d44537544a1d47b4bbcf2c9fe9f84d29 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:306 -msgid "Click :guilabel:`Upload Changes`." -msgstr "Klik tombol :guilabel:`Upload Perubahan`." - -# 33adb2b89837460d96f7366216d414dd -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:308 -msgid "" -"If this is your first time saving changes to OSM, you will be asked for the " -"username and password that you created in Module 2. Enter them in the window " -"that appears. If you check the box in this window, your username and " -"password will be saved and you won’t need to enter them again in the future. " -"Click :guilabel:`Authenticate`." -msgstr "" -"Jika ini adalah pertama kali Anda menyimpan perubahan peta Anda pada OSM, " -"Anda akan ditanya tentang nama pengguna dan kata sandi yang telah Anda buat " -"pada Modul 2. Masukkan pada jendela yang telah tersedia. Jika Anda centang " -"kotak ini, maka nama pengguna dan kata sandi Anda akan tersimpan dan Anda " -"tidak perlu mengetikkan nama pengguna dan kata sandi Anda pada upload " -"berikutnya. Selanjutnya klik :guilabel:`Membuktikan`." - -# 05e64ddc72c44874af4ba39e0d8d2f24 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:317 -msgid "" -"Wait a few seconds for your changes to be uploaded, and then you are done! " -"You have made your first edits to OSM. You may continue editing to add all " -"your points if you wish. Always be sure to upload your changes before " -"closing JOSM." -msgstr "" -"Dibutuhkan beberapa menit hingga perubahan-perubahan Anda ter-upload dan " -"kemudian tunggu dan lihat hasilnya! Anda baru saja selesai mengedit untuk " -"pertama kalinya pada OSM. Anda dapat melanjutkan pengeditan untuk " -"menambahkan titik-titik yang diinginkan. Selalu pastikan bahwa Anda meng-" -"upload perubahan Anda sebelum Anda menutup JOSM." - -# 07e4584ef68c470bb7e205934f16f63a -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:322 -msgid "After you have uploaded all your changes, you can see the updated map." -msgstr "" -"Setelah Anda sudah mengupload semua perubahan, Anda dapat lihat pada peta " -"yang terbaru." - -# a050b3c871a9426a96af0dbb9caef59d -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:324 -msgid "" -"Open your internet browser and go to `openstreetmap.org `_" -msgstr "" -"Buka browser internet Anda, kemudian buka alamat situs berikut " -"`openstreetmap.org `_" - -# cd98f9ab95c54520a85fac308123a23a -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:327 -msgid "Move the map to the area that you edited." -msgstr "Geser peta ke area yang telah Anda edit." - -# 19b6770887304d85ade9bd9b5bc5a5a3 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:329 -msgid "" -"You should see your changes now on the map! If you don’t, try pressing :kbd:" -"`CTRL+R` to refresh the web page. Sometimes the map doesn’t update properly " -"and needs to be reloaded." -msgstr "" -"Seharusnya Anda sekarang telah melihat perubahan Anda pada peta!. Jika Anda " -"tidak melihat perubahan peta yang baru saja Anda lakukan, Refresh halaman " -"browser Anda, dengan menekan :kbd:`CTRL + R` pada keyboard Anda. Jika masih " -"belum tampak perubahan yang Anda buat, terkadang browser belum mengupdate " -"peta dengan baik, maka reload kembali halaman Anda." - -# 3067765f3922467eaf8fbd72070d6d6a -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:333 -msgid "" -"What if you don’t see your changes? Don’t worry - it may take a few minutes " -"for the changes to be shown on the map. Also, check your additions in JOSM " -"to make sure that you added them correctly. A good general rule is, if your " -"point has an icon in JOSM, then it should be seen on the main map on the OSM " -"website." -msgstr "" -"Bagaimana jika perubahannya masih belum tampak? Jangan khawatir, terkadang " -"memang dibutuhkan waktu beberapa menit hingga perubahan Anda muncul pada " -"peta. Juga periksa penambahan-penambahan yang Anda buat pada JOSM untuk " -"memastikan bahwa Anda telah membuatnya dengan benar. Ada satu petunjuk " -"sederhana, jika titik-titik Anda telah tampil dengan suatu simbol/ikon " -"tertentu pada JOSM, objek tersebut seharusnya juga muncul pada situs OSM." - -# 411ae0764bc84cc38499329cb0743b86 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:340 -msgid "6. Saving OSM files" -msgstr "6. Cara Menyimpan File OSM" - -# ae9ea74cab244ba0b4237b413618ac8c -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:342 -msgid "" -"Sometimes after you download some OSM data, you may wish to save it so that " -"you can edit it offline, and then upload it later when you have internet " -"access again." -msgstr "" -"Setelah Anda mendownload beberapa data OSM, terkadang Anda mungkin ingin " -"menyimpan data tersebut, kemudian Anda ingin mengeditnya secara offline dan " -"mengupload hasil edit tersebut ketika Anda mendapat koneksi internet." - -# 096743af88cd4949a795fe732262aede -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:346 -msgid "" -"To save an OSM file, make sure that it is the active layer in the the Layers " -"panel. Go to :menuselection:`File ‣ Save`. Choose a location for the file " -"and give it a name. It can also be saved by clicking this button:" -msgstr "" -"Untuk menyimpan file OSM, pastikan bahwa layer yang aktif pada panel Layer. " -"Pilih :menuselection:`Berkas ‣ Simpan`. Pilih lokasi untuk file dan beri " -"nama. Anda juga dapat menyimpan file OSM Anda dengan mengklik ikon berikut " -"ini:" - -# cb3f6ce6dc5740348e8ed1cf45a00a92 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:354 -msgid "" -"You can now close JOSM and your data will be saved. When you want to open " -"the file again, simply open JOSM and go to :menuselection:`File ‣ Open...`." -msgstr "" -"Sekarang Anda dapat menutup JOSM dan data Anda akan tersimpan. Ketika Anda " -"ingin membuka file tersebut, Anda tinggal membuka JOSM, kemudian klik menu :" -"menuselection:`Berkas ‣ Buka...`." - -# b26d3cdeba4845ee9a9b8b25bcf94650 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:357 -msgid "" -"While it is possible to download OSM data, save it, and then upload later " -"when you are connected to the internet, this may cause problems, especially " -"if a lot of time passes between the time you download and the time you " -"upload the changes. If another OSM user edits the same area and the same " -"objects during this time, it may cause conflicts to occur. Try not to let " -"too much time pass between downloading and uploading data." -msgstr "" -"Ketika memungkinkan untuk download data OSM, simpan itu, dan kemudian upload " -"kemudian ketika Anda memiliki koneksi internet, ini mungkin penyebab " -"masalah, terutama jika banyak waktu diantara waktu Anda mendownload dan " -"waktu Anda upload perubahan. Jika pengguna OSM lainnya mengedit area dan " -"objek yang sama pada waktu yang bersamaan, itu akan menyebabkan terjadinya " -"konflik. Cobalah untuk tidak terlalu lama dalam rentang waktu diantara " -"mendownload dan mengupload data." - -# f00b2c82afa84f0bbb033d78f497eef2 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:365 -msgid "7. Using keyboard shortcuts" -msgstr "7. Penggunaan Jalan Pintas Keyboard" - -# a0f93ad0fdfb4f939759c8f259721b43 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:367 -msgid "" -"It can be dizzying to click over and over again between the various tools " -"and menus in JOSM. Fortunately, there are shortcuts for most actions in JOSM " -"with a simple press of the keyboard. Here is a list of commonly used " -"keyboard shortcuts and their associated functions:" -msgstr "" -"Terkadang Anda bisa menjadi pusing untuk mengklik lagi dan lagi untuk " -"memilih berbagai pilihan dan menu yang berbeda dalam JOSM. Untungnya dalam " -"JOSM terdapat jalan pintas atau *shortcut* pada keyboard yang memungkinkan " -"Anda untuk melakukan hal-hal umum. Di bawah ini adalah sebuah daftar dari " -"jalan pintas pada keyboard beserta fungsinya yang pada umumnya digunakan:" - -# daf9b58f7b624504bab15d8cdd430ecf -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:372 -msgid ":kbd:`S`: Select tool (select objects)" -msgstr ":kbd:`S`: Select tool (memilih objek)" - -# cb9b8a7adaa04922811358af1536927d -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:373 -msgid ":kbd:`A`: Draw tool (draw objects)" -msgstr ":kbd:`A`: Draw tool (menggambar objek)" - -# 1c0d738df80a41b9832f7b1c5ea53dfa -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:374 -msgid ":kbd:`Z`: Zoom tool" -msgstr ":kbd:`Z`: Zoom tool" - -# 85b562e92cea41899e4c41f16d29771d -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:375 -msgid ":kbd:`Minus` (or :kbd:`Ctrl + >`): Zoom out" -msgstr "" -":kbd:`Minus` (or :kbd:`Ctrl + >`): Zoom out - untuk memperkecil tampilan" - -# c80a265a6c3640a1a13f4660f1a91cbf -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:376 -msgid ":kbd:`Plus` (or :kbd:`Ctrl + <`): Zoom in" -msgstr ":kbd:`Plus` (or :kbd:`Ctrl + <`): Zoom in - untuk memperbesar tampilan" - -# aa535cadfaf8481ab157b90072e0ba89 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:377 -msgid ":kbd:`P`: Split Way" -msgstr ":kbd:`P`: Split Way - memisahkan garis" - -# fb3e528cf3f147d095b0453cc0140ff5 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:378 -msgid ":kbd:`C`: Combine Way" -msgstr ":kbd:`C`: Combine Way - menggabungkan garis" - -# 724e30f47ad549c3a40fda375274cb06 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:379 -msgid ":kbd:`O`: Align in Circle (set the points into a circle)" -msgstr "" -":kbd:`O`: Align in Circle (mengatur susunan dari titik-titik menjadi sebuah " -"lingkaran)" - -# b50160fa4b894b66a2a5f859f6ef4feb -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:380 -msgid ":kbd:`L`: Align in line (set the points into a straight line)" -msgstr "" -":kbd:`L`: Align in line (mengatur susunan dari titik-titik menjadi sebuah " -"garis lurus)" - -# 2cd435023cf740b284d917e5459f3637 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:381 -msgid ":kbd:`Q`: Orthogonalise (make into a square shape)" -msgstr ":kbd:`Q`: Orthogonalise (membuat suatu bentuk menjadi sebuah persegi)" - -# 9c25a2c9fecd406380ca1743d2bd9f51 -#: ../../source/training/old-training/beginner/osm/106-editing-osm-with-josm.rst:384 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/107-imagery-offset.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/107-imagery-offset.po deleted file mode 100644 index d6cae50f..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/107-imagery-offset.po +++ /dev/null @@ -1,798 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2018 -# Dewi Sulistioningrum , 2013 -# Werner Macho , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-13 09:03+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# c80b0e110eb8488b9ea3cd613faaa4e1 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:6 -msgid "Module 7: Imagery Offset" -msgstr "Modul 7: Pergeseran Citra Satelit " - -# 9634790b0eb840adb8e31998d7703928 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:8 -msgid "**Learning Objectives**" -msgstr "*Tujuan Pembelajaran**" - -# 21a017ec77fa49c9a7a825542fa9815c -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:10 -msgid "Understand the definition of imagery offset" -msgstr "Memahami pengertian pergeseran citra satelit" - -# 295047ebd2984b2ca108bab9e80d0c0d -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:11 -msgid "Understand components of imagery (resolution and georeference)" -msgstr "Memahami komponen-komponen citra (resolusi dan georeferensi)" - -# 59755072dff94868a9a3ae37c92435df -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:12 -msgid "Understand how imagery offset occurs" -msgstr "Memahami bagaimana pergeseran citra satelit dapat terjadi" - -# f5db9ef127ef45efb1d5f39a04319122 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:13 -msgid "Fix imagery offset" -msgstr "Memperbaiki pergeseran citra satelit" - -# 79fd21e026034b85a39198cd901e096d -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:15 -msgid "" -"Using aerial imagery is the most widely used approach in making maps with " -"OpenStreetMap. Mappers typically use Bing or Mapbox satellite imagery as a " -"background layer, or imagery from another provider. We have already seen " -"this in action. In this module we will learn a little bit more about aerial " -"imagery, and we will learn how to solve the one important problem of using " -"aerial photographs - imagery offset." -msgstr "" -"Menggunakan citra satelit merupakan pendekatan yang paling sering digunakan " -"dalam membuat peta dengan OpenStreetMap. Pembuat peta biasanya menggunakan " -"citra satelit Bing atau Mapbox sebagai latar belakang ketika membuat peta, " -"ataupun citra satelit dari penyedia lain. Kita telah melihat ini dalam " -"kegiatan sebelumnya. Pada modul ini kita akan mempelajari lebih jauh tentang " -"citra satelit, dan kita juga akan mempelajari bagaimana memperbaiki salah " -"satu permasalahan utama dalam menggunakan citra satelit, yaitu pergeseran " -"citra satelit." - -# 363c760287174f25a41ade747746e090 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:24 -msgid "1. Components of imagery" -msgstr "1. Komponen citra satelit" - -# 452a6fba685749bba4c08c50ce8f28b2 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:26 -msgid "" -"Aerial imagery is the term that we use to describe photographs that are " -"taken from the sky. These can be taken from airplanes, helicopters, or even " -"kites and balloons, but the most common source of imagery comes from " -"satellites orbiting the Earth." -msgstr "" -"Foto udara merupakan istilah yang digunakan untuk menjelaskan sebuah foto " -"yang diambil dari langit. Foto ini bisa berasal dari pesawat, helikopter, " -"atau bisa juga dari layang-layang dan balon udara, tetapi salah satu sumber " -"pengambilan gambar yang paling umum berasal dari satelit yang mengorbit " -"mengelilingi bumi." - -# 15678e0ad43e4ab88ffc3f701afedbdf -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:31 -msgid "" -"In the :ref:`module on GPS` we learned about the dozens of " -"satellites orbiting Earth which allow our GPS receivers to identify latitude " -"and longitude. In addition to these GPS satellites, there are also " -"satellites which take photos of the earth. These photos are then manipulated " -"so that they can be used in GIS (mapping) software. Bing Aerial Imagery is " -"made up of satellite photos." -msgstr "" -"Pada :ref:`module GPS` kita telah mempelajari sejumlah satelit " -"yang mengorbit mengelilingi bumi yang membantu GPS kita mengidentifikasi " -"posisi kita dalam garis lintang dan bujur. Lebih lanjut, selain satelit GPS " -"terdapat pula satelit yang mengambil gambar permukaan bumi. Foto ini " -"dimanipulasi sedemikian rupa sehingga mereka bisa menggunakannya untuk " -"keperluan pemetaan (mapping) melalui software GIS. Citra satelit Bing " -"merupakan salah satu contoh dari citra satelit ini." - -# 3e8e4a4bf7a0443bb98ab6623de13b0f -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:38 -msgid "" -"Let's look at a couple of the components of aerial imagery - resolution and " -"georeferencing." -msgstr "" -"Mari lihat beberapa komponen dari citra satelit - resolusi dan georeferensi." - -# 4103d6f153a548fdada69737271dee37 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:42 -msgid "1.1. Resolution" -msgstr "1.1 Resolusi" - -# ad54a5a55a6b43b6aaa7a17e6cb20861 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:44 -msgid "" -"All digital photographs are made up of pixels. If you zoom in very close on " -"a photograph, you will notice the the image starts to get blurry, and " -"eventually you’ll see that an image is made up of thousands of little " -"squares that are each a different colour. This is true whether the " -"photograph is taken with a handheld camera, a mobile phone or a satellite " -"orbiting Earth." -msgstr "" -"Semua fotografi digital terdiri dari piksel. Jika Anda memperbesar lebih " -"dekat pada sebuah foto digital, Anda akan menyadari bahwa gambar berubah " -"menjadi samar/tidak jelas dan semakin Anda memperbesar gambar tersebut Anda " -"akan melihat sebuah gambar yang terdiri dari ribuan kotak kecil yang terdiri " -"dari warna yang berbeda. Hal ini berlaku pada semua foto digital yang " -"diambil baik menggunakan kamera saku, handphone, atau satelit yang mengorbit " -"mengelilingi bumi." - -# 0002435fc58b420fabf452cb60dac726 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:54 -msgid "" -"Resolution refers to the number of pixels wide by the number of pixels high " -"that an image is. More pixels means higher resolution, which means that you " -"are able to see greater detail in the photograph. Resolution in handheld " -"cameras is often measured in megapixels. The more megapixels your camera is " -"able to record, the higher the resolution of your photos." -msgstr "" -"Resolusi merepresentasikan jumlah piksel yang berada dalam panjang dikali " -"dengan jumlah piksel yang berada dalam lebar. Semakin banyak jumlah pixel " -"berarti semakin besar resolusinya, yang berarti Anda dapat melihat lebih " -"foto digital lebih detil. Resolusi yang ada dikamera biasanya disebut dalam " -"satuan megapiksel. Semakin banyak megapiksel dari sebuah kamera, semakin " -"tinggi resolusi yang dihasilkan dari foto tersebut." - -# d2f837d80734405ba289884bc5d78a51 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:61 -msgid "" -"Aerial imagery works the same, except that we talk about resolution " -"differently. Measurement is important with aerial photographs - hence, a " -"pixel represents a certain measurable area on the surface of the Earth. We " -"usually describe imagery as something like \"two metre resolution imagery\", " -"which means that one pixel in the image is equivalent to two metres on the " -"ground. One metre resolution imagery would have a higher resolution than " -"this, and 50cm resolution would be higher still. This is generally the range " -"of imagery that is provided by Bing, though it varies between locations, and " -"in many places it is worse than two metres, at which point it becomes " -"difficult to identify objects in the image." -msgstr "" -"Sama halnya dengan citra satelit, kecuali biasanya kita berbicara mengenai " -"resolusi secara berbeda. Pengukuran dengan foto udara adalah penting - " -"piksel mewakili jarak tertentu di atas permukaan Bumi. Kita biasanya " -"mendeskripsikan citra sebagai sesuatu seperti “citra resolusi dua meter,” " -"yang berarti bahwa satu piksel setara dengan dua meter di tanah. Citra " -"satelit dengan resolusi satu meter akan memiliki resolusi yang lebih tinggi " -"dari ini, dan resolusi 50 cm juga akan lebih tinggi. Hal ini umumnya rentang " -"dari citra yang disediakan oleh Bing, meskipun bervariasi antara lokasi dan " -"di banyak tempat, resolusi citra satelit lebih buruk dari dua meter, " -"sehingga pada suatu tempat akan terlihat sulit untuk mengidentifikasi objek " -"dalam gambar." - -# c570f2a0ae0f4ee58d37c305ca4756e7 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:75 -msgid "" -"The higher the resolution of an aerial image, the easier it is to use in " -"making maps." -msgstr "" -"Resolusi yang lebih tinggi dari gambar citra, memudahkan untuk digunakan " -"dalam membuat peta." - -# 985c54ebd06c461f8c0785b468996829 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:79 -msgid "1.2. Georeferencing" -msgstr "1.2 Georeferensi" - -# 65ed87bfc0d94862af7154db2ddc38a4 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:81 -msgid "" -"Every aerial image is georeferenced, meaning that it is manipulated so that " -"it can be shown in its correct location on the Earth. Georeferencing is a " -"relatively complex process, because images are flat and the Earth is round, " -"and the images need to be positioned and stretched so that the pixels are " -"accurately positioned on the planet." -msgstr "" -"Semua citra satelit sudah tergeoreferensikan, yang berarti sudah " -"dimanipulasi sedemikian rupa agar dapat muncul sesuai dengan lokasi yang " -"sesuai pada permukaan bumi. Georefensi merupakan proses yang rumit, karena " -"setiap gambar berbentuk bidang datar sedangkan bumi berbentuk bulat dan " -"gambar tersebut harus diposisikan dan ditarik sedemikian rupa supaya gambar " -"tersebut sesuai dengan posisi di permukaan bumi." - -# 1c7746e0622540818abe4504473a461b -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:87 -msgid "" -"The imagery available to us is already georeferenced, so it is not something " -"that we need to concern ourselves with too deeply. We can happily use " -"imagery to help add to OSM, so long as we understand a little bit about the " -"imagery we are using, and so long as we are aware of one common pitfall - " -"imagery offset." -msgstr "" -"Semua citra satelit yang kita lihat sudah tergeoreferensikan, sehingga hal " -"tersebut bukanlah sesuatu yang harus kita pahami lebih dalam. Kita bisa " -"menggunakan citra satelit tersebut ke dalam OSM, selama kita mengerti " -"tentang lisensi citra satelit yang kita gunakan, dan selama kita paham " -"dengan kesalahan umum yang ada, yaitu pergeseran citra satelit." - -# 31e3378affe747739257abfc1cf94558 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:95 -msgid "2. Imagery offset" -msgstr "2. Pergeseran citra satelit" - -# d8a42af744eb4eb197365d001ebdfc5b -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:97 -msgid "" -"Imagery providers usually do a pretty good job of georeferencing their " -"imagery, but occasionally the images can be a little bit out of position. " -"This is particularly true in hilly or mountainous areas, where it can be " -"difficult to stretch a flat image over an area of the Earth with many " -"contours. When you load imagery in JOSM, it can sometimes be ten metres or " -"more from its true position. This is called imagery offset." -msgstr "" -"Penyedia layanan citra satelit biasanya telah melakukan georeferensi citra " -"satelit mereka, tetapi beberapa citra satelit tidak terletak sempurna. Ini " -"biasanya terjadi di daerah pegunungan atau daerah berbukit-bukit, dimana " -"sangat sulit untuk menarik gambar datar sesuai permukaan bumi yang memiliki " -"kontur. Ketika Anda menampilkan gambar di JOSM, terkadang mengalami " -"pergeseran sejauh sepuluh meter atau lebih dari posisi sesungguhnya. Ini " -"yang disebut dengan pergeseran citra satelit." - -# 806faf3195f64bbcb27cd0933e5a27dc -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:104 -msgid "" -"Aerial imagery layers are composed of many photographs of the Earth's " -"surface that have been georeferenced and then stitched together. Imagery " -"providers cannot verify the accuracy of every photo, so some images may be " -"shifted from their actual positions. This might be a shift of a couple " -"metres, or in rare instances up to hundreds of metres. In mountainous areas, " -"imagery may be distorted non-linearly, which means that nearby parts of the " -"same image may be shifted in many different directions." -msgstr "" -"Layer citra satelit terdiri dari beberapa foto permukaan bumi yang telah " -"digeoreferensikan dan digabung bersama. Penyedia citra satelit tidak bisa " -"memverifikasi akurasi dari setiap foto, sehingga beberapa citra mungkin " -"mengalami pergeseran dari posisi yang ada. Pergeseran ini bisa saja beberapa " -"meter, atau dalam beberapa kasus bisa lebih dari beratus-ratus meter. Di " -"area pegunungan, citra satelit mungkin mengalami distorsi non liniear, yang " -"berarti beberapa bagian dari citra satelit mungkin bergeser ke beberapa arah." - -# b628ea5931e7472cabc00b12c58da7c6 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:112 -msgid "" -"Notice in the following image that two separate aerial photographs have been " -"georeferenced and merged together. Because georeferencing is not a perfect " -"process, the images do not line up perfectly with each other. Hence one, or " -"both, must be inaccurate." -msgstr "" -"Perhatikan pada gambar dibawah ini terdiri dari dua gambar yang telah di " -"georeferensikan dan digabungkan bersamaan. Karena proses georeferensinya " -"tidak bisa sempurna, gambar tersebut tidak sesuai satu sama lain. Salah " -"satu, atau mungkin kedua-duanya bisa saja tidak akurat." - -# 0b8bcbe3d8014bf0916f59591024f054 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:120 -msgid "" -"We’ve learned about two major ways of making maps - one is by utilising " -"aerial imagery to identify features on the ground, and another is by using " -"GPS to record tracks and waypoints and then add them to OSM. The advantage " -"of aerial imagery is obvious. It enables you, the mapper, to see the whole " -"picture, to observe various details from the image, consider your knowledge " -"of the area, and easily trace roads, buildings and areas. One key advantage " -"of GPS however, is that it doesn’t suffer from offset like imagery. A GPS " -"will always provide you with a correct latitude and longitude. The only " -"exception is when the satellite signals are interrupted by tall buildings or " -"mountains, but in this case it is easy to recognise the error. Observe the " -"GPS trace in this image, compared with the Bing aerial imagery layer beneath " -"it:" -msgstr "" -"Kita telah mempelajari bahwa terdapat dua cara untuk membuat peta - pertama " -"dengan menggunakan citra satelit untuk mengidentifikasi sebuah kenampakan di " -"permukaan bumi dan salah satunya menggunakan GPS untuk mencatat track dan " -"waypoint dan kemudian ditambahkan ke dalam OpenStreetMap. Banyak sekali " -"keuntungan dalam penggunaan citra satelit. Ini akan memudahkan Anda, pembuat " -"peta, untuk melihat gambar keseluruhan, untuk mengamati beberapa detail dari " -"gambar tersebut, selain dari Anda akan mendapatkan pengetahuan tentang area " -"tersebut, dan akan mudah untuk menggambar jalan, bangunan dan area. Salah " -"satu keuntungan dari GPS adalah tidak mengalami pergeseran seperti citra " -"satelit. Sebuah GPS akan selalu memberikan posisi lintang dan bujur yang " -"tepat. Salah satu kerugiannya adalah sinyal satelit tersebut dapat diganggu " -"oleh bangunan tinggi dan pegunungan, tetapi dalam kasus ini sangatlah mudah " -"untuk mengetahui kesalahan. Tampilkan trek GPS pada gambar citra satelit ini " -"dan bandingkan dengan citra Bing dibawahnya:" - -# bf3938de79d64ef897bf437fd6da4121 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:136 -msgid "" -"Because of what we now know, it is clear that the GPS trace is likely to be " -"accurate, and the image beneath it is out of place." -msgstr "" -"Dengan begitu kita akan tahu bahwa trek GPS akurat dan citra satelit " -"dibawahnya mengalami pergeseran." - -# 36ef3ea70b2245058eeb399d50003465 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:139 -msgid "" -"So now we must ask, “if the imagery may be out of place, how can we still " -"use it and make accurate maps?”" -msgstr "" -"Sekarang kita pasti akan bertanya, “jika citra satelit mengalami pergeseran, " -"bagaimana kita dapat menggunakan dan membuat peta yang akurat?”" - -# d7aea2fc7b574a7680e765900470dd4a -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:143 -msgid "3. Correcting imagery offset" -msgstr "3. Memperbaiki citra satelit" - -# f2cf4aa0494748319a121d949e328a2f -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:145 -msgid "" -"The answer to the preceding question is that we can move the imagery so that " -"it aligns with things that we know are in the correct location, such as GPS " -"tracks. It is easy to correct imagery offset in JOSM." -msgstr "" -"Jawaban untuk pertanyaan sebelumnya adalah kita dapat menggeser citra " -"satelit agar sesuai dengan posisi yang kita ketahui adalah posisi yang " -"tepat, seperti track GPS. Hal ini sangat mudah untuk memperbaiki pergeseran " -"citra satelit di JOSM." - -# 3dc7438ca3e445f191d5ce0a87f402a9 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:149 -msgid "" -"The best references for adjusting imagery are GPS tracks that follow roads. " -"And the more GPS tracks that you have to reference, the more accurate you " -"will be able to align your imagery. Since OSM users often upload their GPS " -"tracks to the OSM database, we can download them and use them to align our " -"imagery." -msgstr "" -"Salah satu referensi terbaik untuk mengatur citra satelit adalah menggunakan " -"track GPS yang mengikuti jalan. Semakin banyak track GPS yang Anda miliki, " -"semakin akurat Anda untuk memperbaiki pergeseran citra satelit. Saat ini " -"pengguna OpenStreetMap seringkali upload track GPS mereka kedalam database " -"OSM, kita dapat download dan menggunakannya untuk memperbaiki posisi citra " -"satelit kita." - -# e71cf2bead0e4c778c899e69c8230e6e -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:155 -msgid "In JOSM, click on the :guilabel:`Download` button." -msgstr "Pada JOSM, klik tombol :guilabel:`Download`." - -# 932ca5a7ef394fae833d4d685381b78b -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:157 -msgid "" -"Check the box next to :guilabel:`Raw GPS Data` near the top of the :guilabel:" -"`Download` window. Select your area and click :guilabel:`Download`." -msgstr "" -"Centang kotak di samping tulisan :guilabel:`Raw GPS Data` yang berada di " -"posisi atas dari jendela :guilabel:`Download`. Pilih area Anda dan klik :" -"guilabel:`Download`." - -# 840f15755f97445ba262b1c94bee5c24 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:164 -msgid "" -"This will download an additional layer to JOSM containing GPS tracks. " -"Depending on how many tracks have been uploaded by OSM users, you may see " -"few tracks (or even no tracks):" -msgstr "" -"Ini akan mengunduh layer tambahan di JOSM yang terdiri dari trek GPS. " -"Tergantung dari seberapa banyak trek yang sudah diunggah oleh pengguna OSM, " -"Anda mungkin akan melihat beberapa trek (bahkan tidak ada trek GPS sama " -"sekali):" - -# 743b22685f184f1ebdc566109094dffb -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:171 -msgid "Or, you may see many tracks:" -msgstr "Atau, Anda akan dapat melihat jumlah trek yang banyak:" - -# f8dc5596a43d4d48adfc473503c1f568 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:176 -msgid "Add an imagery layer (such as Bing Sat) to JOSM." -msgstr "Tambahkan layer citra satelit (misalnya Bing Sat) ke JOSM." - -# 8dc893c252214bbd9d89c0eb67ac74f2 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:178 -msgid "" -"To adjust an imagery layer, click on the :guilabel:`Adjust imagery offset` " -"button at the top of JOSM, and then click :guilabel:`New Offset`." -msgstr "" -"Untuk mengatur citra satelit, klik pada tombol :guilabel:`Atur offset citra` " -"di bagian atas JOSM, dan kemudian klik :guilabel:`Offset Baru`." - -# bd78ae26db7a4851819ba3f410ed9e03 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:184 -msgid "" -"Ignoring the box that pops up, use your mouse to drag the imagery layer so " -"that it aligns correctly with the GPS tracks. The GPS tracks should line up " -"with the roads on the imagery as closely as possible. You will see the " -"offset numbers in the box change." -msgstr "" -"Abaikan kotak yang muncul, gunakan mouse Anda untuk menggeser citra sehingga " -"akan terposisi sejajar dengan track GPS. Track GPS harus terposisikan sama " -"dengan gambar jalan sedekat mungkin. Anda akan melihat angka offset berubah " -"di kotak tersebut." - -# a7f8d356e0a648bba5644a04e1a9aa59 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:192 -msgid "" -"If you like, you can save these offset settings by entering a bookmark name " -"and then clicking :guilabel:`OK`. You can then automatically apply the same " -"settings later by going to :menuselection:`Imagery ‣ Imagery offset` and " -"clicking on your bookmark." -msgstr "" -"Jika ingin, Anda bisa menyimpan pengaturan pergeseran ini dengan memasukkan " -"nama penanda dan klik :guilabel:`OK`. Anda kemudian dapat secara otomatis " -"mengaplikasikan pengaturan yang sama dengan menuju ke :menuselection:`Citra " -"Satelit ‣ Pergeseran citra` dan klik penanda yang Anda simpan." - -# 507b13a8388d4e70964db82088ff811a -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:197 -msgid "" -"If you do not want to save the offset, simply click :guilabel:`OK` without " -"entering a bookmark name." -msgstr "" -"Jika Anda tidak ingin menyimpan pergeserannya, klik OK tanpa harus " -"memasukkan nama penanda." - -# 2d8e5e5f507046b49cb81e4a23c03302 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:200 -msgid "" -"What if there are no GPS tracks on OSM, and you don’t have a GPS? Without " -"GPS tracks, it is difficult to align imagery. If it is a relatively empty " -"area (not much mapping done), you might choose to simply use the imagery as " -"it is and correct the data later. It’s better to map an area 20 or 30 metres " -"offset than to not map it at all." -msgstr "" -"Bagaimana jika tidak ada track GPS di OpenStreetMap, dan Anda tidak " -"mempunyai GPS? Tanpa track GPS, akan sulit sekali mengatur citra. Jika itu " -"merupakan area yang relatif kosong (tidak banyak yang dipetakan), Anda " -"mungkin bisa memetakan terlebih dahulu dan memperbaikinya nanti. Akan lebih " -"baik untuk memetakan sebuah dengan offset area 20 atau 30 meter daripada " -"tidak memetakan sama sekali." - -# 33e4ddca54cc48588e6c3adaa85300bb -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:206 -msgid "" -"If you can positively identify the latitude and longitude of one object on " -"the ground, you can ensure the imagery is correctly placed by following " -"these steps:" -msgstr "" -"Jika Anda yakin koordinat posisi dari suatu objek di permukaan tanah, Anda " -"dapat memastikan bahwa citra satelit tersebut terposisikan sempurna dengan " -"melakukan tahap ini:" - -# a3f57ade5dd24150add0688cf0f0525c -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:210 -msgid "First, identify the object whose position you know on the imagery." -msgstr "Pertama, identifikasikan posisi objek yang Anda ketahui di citra." - -# 7474f89ad0654f69a6a095d8f3ea2703 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:212 -msgid "Click on the latitude and longitude in the bottom left corner of JOSM." -msgstr "Klik pada garis lintang dan bujur pada bagian kiri bawah JOSM." - -# 9144ded3c59d42f1a053ac559c33e6ad -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:217 -msgid "" -"In the dialog that opens, enter the latitude and longitude of the place that " -"you know, and enter a small number for :guilabel:`Zoom`, about five or 10." -msgstr "" -"Pada kotak dialog yang muncul, masukkan koordinat lintang dan bujur dari " -"sebuah tempat yang Anda ketahui dan masukkan angka untuk :guilabel:" -"`Perbesar`, sekitar lima atau 10." - -# 7929310a4aa643729a36f8f04438cb2b -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:224 -msgid "" -"This will zoom and centre the map to your longitude and latitude. Now you " -"can move the imagery as you did previously so that the feature you know is " -"centred at the correct position." -msgstr "" -"Ini akan memperbesar dan menuju pusat peta dimana Anda memasukkan koordinat " -"lintang dan bujurnya. Sekarang Anda dapat memposisikan citra ke tempat yang " -"Anda ketahui sebagai posisi yang tepat." - -# c4b37a7f6a1540d29a10a7851e1ba474 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:228 -msgid "" -"If, on the other hand, the area has already been extensively mapped, then " -"hopefully the previous mappers have drawn objects in their correct " -"locations. In this case, you can align the imagery to the OSM map, but " -"beware! Other mappers may not be aware of imagery offset, and they may have " -"made mistakes when they mapped." -msgstr "" -"Jika pada salah satu kasus, area tersebut sudah dipetakan dan semoga " -"pengguna sebelumnya telah menggambar dengan tepat. Pada kasus ini Anda dapat " -"menggeser citra satelit ke tempat yang sesuai dengan data OSM. Tetapi harap " -"diingat! Pengguna OSM lain mungkin tidak menyadari pergeseran citra satelit " -"dan mereka mungkin telah membuat kesalahan ketika mereka memetakannya. " - -# a5abaa46d7764f56b540d48b610996f1 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:235 -msgid "3.1. The imagery offset database" -msgstr "3.1 Database pergeseran citra satelit" - -# 963ab361022544428f28317b57298858 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:237 -msgid "" -"Now you know how to watch out for and correct imagery offset, but there is " -"one major problem with this approach that we have overlooked thus far. If " -"every OSM user adjusts the imagery differently, everybody will be mapping " -"with slightly different backgrounds." -msgstr "" -"Sekarang Anda mengetahui bagaimana cara untuk melihat dan memperbaiki citra " -"satelit, tetapi disini ada sedikit masalah dengan pendekatan yang telah kita " -"tahu sampai saat ini. Jika setiap pengguna OSM mengatur citra satelit " -"berbeda, setiap orang akan memetakan dengan background yang berbeda." - -# bf27679f8e38486b8cf662713ab87238 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:242 -msgid "" -"Imagine that you are mapping a small town, and you realise that Bing imagery " -"is offset by 15 metres to the north. So you adjust the imagery and then use " -"it to map the whole town accurately. But then somebody else wants to add " -"something to the map, so they download the data and load Bing imagery, but " -"they don’t know about the imagery offset you discovered! They will think " -"that something is wrong and all of the objects in town are misplaced by 15 " -"metres, and they will start to move them, which is not correct! This can be " -"disastrous for the town’s map data." -msgstr "" -"Bayangkan jika Anda memetakan kota kecil dan Anda menyadari bahwa terjadi " -"pergeseran satelit 15 meter ke Utara. Anda tentunya akan memperbaiki dan " -"memetakan kota tersebut dengan akurat. Tetapi ketika seseorang ingin " -"memetakan sesuatu dan mereka download data OSM dan memunculkan citra satelit " -"Bing, dan mereka tidak mengetahui pergeseran citra satelit yang Anda " -"ketahui! Mereka akan mengira bahwa terjadi hal yang aneh dan semua objek " -"bergeser 15 meter ke utara dan akhirnya mereka akan memulai memindahkan " -"kembali, dimana yang hal demikian itu adalah salah! Ini akan merusak semua " -"data yang ada." - -# 4eaaa85549174eb1bd894c41f65350ee -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:251 -msgid "" -"For this reason it is important that all users are aware of imagery offset, " -"and should always check for it before mapping an area. To help with this " -"problem, some smart people created a plugin that allows users to save offset " -"information in a database and share it with others. Let’s see how this works:" -msgstr "" -"Untuk masalah ini, sangat penting agar semua pengguna sadar akan pergeseran " -"citra satelit dan selalu memeriksa terkait hal itu sebelum memetakan area. " -"Untuk membantu mengatasi masalah ini, beberapa orang telah membuat plugin " -"yang membantu pengguna untuk menyimpan informasi pergeseran satelit di " -"database dan menyimpannya dengan yang lain. Mari lihat bagaimana kerjanya:" - -# b00065a860cf4272a1f27b5cd2e9ff0d -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:256 -msgid "" -"Open the :guilabel:`Preferences` menu in JOSM, and click on the :guilabel:" -"`Plugins` tab." -msgstr "" -"Buka :guilabel:`Preferences` menu di JOSM, dan klik pada :guilabel:`Plugins`" - -# f246d83da0d547f3bcef4186a3dc5b9d -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:262 -msgid "Find the plugin named *imagery_offset_db* and check the box next to it." -msgstr "" -"Cari plugin bernama *imagery_offset_db* dan centang kotak disamping plugin " -"tersebut." - -# e5f0c4d73ce949cc89c1b80a30dded75 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:267 -msgid "" -"Click :guilabel:`OK`. You will need to restart JOSM to finish the plugin " -"installation." -msgstr "" -"Klik :guilabel:`OK`. Anda harus merestart JOSM agar bisa menggunakan plugin " -"ini." - -# 7d97caa2d02547b5a766fdf04bbed980 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:270 -msgid "" -"In the same way that you are able to save offsets as bookmarks, this plugin " -"allows you to save offsets to a central database, and to access the offsets " -"that other users have created. Hence, if one mapper creates an imagery " -"offset in an area, other users can use the exact same offset to map with." -msgstr "" -"Sama seperti Anda menyimpan bookmark pergeseran citra satelit Anda, plugin " -"ini memperbolehkan Anda untuk menyimpan pergeseran citra satelit di database " -"pusat dan mengakses nilai pergeseran citra satelit yang telah dibuat oleh " -"pengguna lain. Jadi, jika terdapat pengguna yang menyimpan nilai persegeran " -"di suatu area, pengguna lain juga bisa menggunakannya." - -# 020cd88f492b44c68952bf8bd3f12cee -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:276 -msgid "" -"When using aerial imagery layers, you should ALWAYS check for existing " -"offsets, and when you create your own offset, you should ALWAYS save it to " -"this database." -msgstr "" -"Ketika Anda menggunakan citra satelit, Anda HARUS SELALU mengecek offset " -"yang ada, dan ketika anda sudah membuat nilai pergeseran citra satelit, Anda " -"HARUS SELALU menyimpannya di database yang ada." - -# ea567f709aa74b99a4344da266e9d1fe -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:281 -msgid "3.2. Add imagery offset from the database" -msgstr "3.2 Menambahkan pergeseran citra satelit dari database" - -# 762f79c4e24448eea05efebbd532e0c5 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:283 -msgid "" -"When you add an imagery layer, the new plugin will alert you that you should " -"check the imagery database for an existing offset. You will see an icon with " -"a red exclamation point on it at the top of JOSM, like this:" -msgstr "" -"Ketika Anda memasukkan layer citra satelit, plugin baru akan memberi tahu " -"Anda bahwa Anda harus mengecek database untuk melihat pergeseran citra " -"satelit yang ada. Anda akan melihat ikon dengan tanda seru merah pada bagian " -"atas JOSM seperti ini:" - -# ae81266570ae4740a0d673efd96d4528 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:290 -msgid "" -"Click on the button and the plugin will communicate with the database to see " -"if there are existing offsets in this area." -msgstr "" -"Klik pada tombol tersebut dan plugin akan berkomunikasi dengan database " -"untuk melihat apakah ada yang menyimpan nilai pergeseran citra satelit pada " -"area tersebut." - -# e0a8ba3ca07242e1b3281139d10974c6 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:293 -msgid "" -"Here we have downloaded OSM data and GPS tracks in Kuta, Bali, Indonesia. In " -"this case, we have found one existing offset. Click on it to apply to the " -"map." -msgstr "" -"Disini kita sudah mengunduh data OSM dan trek GPS di Kuta, Bali, Indonesia. " -"Pada kasus ini kita menemukan salah satu nilai pergeseran citra satelit. " -"Klik pada nilai tersebut untuk memakainya." - -# 0d86190a5c294bf7bb14259ef1333684 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:300 -msgid "" -"This causes the imagery layer to shift. However, when we add someone else’s " -"offset like this, we should check that it is valid by comparing it to GPS " -"tracks." -msgstr "" -"Ini akan membuat citra bergeser. Akan tetapi, ketika kita menambahkan nilai " -"offset dari pengguna lain, kita harus mengecek melalui trek GPS." - -# 95c21ccfe80d4f3d8e63352dc689715f -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:307 -msgid "" -"We can see that the imagery layer is in fact misaligned. We don’t want other " -"users to use this offset, so we should mark it as incorrect in the database. " -"Click on the :guilabel:`Offsets` button again (it won’t have a red " -"exclamation mark anymore)." -msgstr "" -"Kita bisa melihat bahwa citra satelit masih belum bergeser dengan benar. " -"Kita tidak menginginkan untuk menggunakan data ini, sehingga kita harus " -"menandai sebagai salah di database. Klik tombol Offset sekali lagi (sekarang " -"tidak ada tanda seru di tombolnya)." - -# 6b057c35166e4d4bb769a85f45fde09e -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:315 -msgid "" -"This time when the dialog opens, right-click on the offset and click :" -"guilabel:`Deprecate Offset`." -msgstr "" -"Kali ini ketika muncul jendela dialog, klik kanan dan klik :guilabel:" -"`Pergeseran yang sudah tidak digunakan`." - -# e5b5ce6f7b60413ab769fa24cb4242c2 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:321 -msgid "Click :guilabel:`Yes` to confirm." -msgstr "Klik :guilabel:`Ya` untuk konfirmasi." - -# 458f6770105c4bc5818d6da575eca521 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:323 -msgid "Enter a reason for deprecating this offset." -msgstr "" -"Berikan alasan untuk menandakan bahwa nilai offset ini sudah tidak bisa " -"digunakan lagi." - -# 175e74d96d9f4ceb88ddcb4cdc8984f2 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:329 -msgid "3.3. Add imagery offset to the database" -msgstr "3.3 Menambahkan nilai pergeseran citra satelit ke database" - -# 6aeac858e18743eaa8c198ed82bcffea -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:331 -msgid "" -"Now that we have marked this user’s offset as \"deprecated\", we should add " -"an improved offset to the database." -msgstr "" -"Sekarang Anda sudah memberi tanda data offset pengguna lain sebagai data " -"yang lama, kita harus menambahkan data offset ke dalam database." - -# 30cc22ec2ecd4446bc989a9e8aefe5bb -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:334 -msgid "Click on the :guilabel:`Adjust imagery offset` button." -msgstr "Klik tombol :guilabel:`Atur offset citra`." - -# eb1935ad3ca14662b2f4c350faadf83a -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:335 -msgid "" -"Adjust the imagery to match the GPS tracks. Click :guilabel:`OK` in the box." -msgstr "Atur citra satelit agar sesuai dengan track GPS. Klik :guilabel:`OK`." - -# 9e4b0ce1389a4184860d2a860ca5cb7e -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:336 -msgid "Now go to :menuselection:`Offset ‣ Store Imagery Offset...`" -msgstr "" -"Pergi ke :menuselection:`Citra Satelit ‣ Menyimpan Pergeseran Citra " -"Satelit...`" - -# 13621c15dd1a4febb7fd6b822c8fbd79 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:341 -msgid "Enter a description of the offset in the box that opens." -msgstr "Beri deskripsi dari data offset yang akan Anda masukkan." - -# 24595d5d237449b9b6ff59a036ced71f -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:346 -msgid "Click :guilabel:`OK`. Your offset will be saved to the database." -msgstr "Klik :guilabel:`OK`. Data offset Anda akan tersimpan di database." - -# 1892ff4efad2459389a69d435c3ca087 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:348 -msgid "" -"Now let’s hide the GPS layer and look at the OSM data against the correctly " -"placed imagery." -msgstr "" -"Sekarang hilangkan layer GPS dan lihat data OSM yang posisinya menjadi tepat " -"dengan citra satelit." - -# b3c89b13fa15400bb10cef63826b7d50 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:354 -msgid "" -"Oh No! Somebody mapped this area with misaligned imagery, so the area is " -"not correctly mapped. This will take some time to fix." -msgstr "" -"Tidak! Seseorang telah memetakan area ini dengan data yang salah. Ini akan " -"membutuhkan waktu untuk memperbaikinya." - -# 5bfbdf2ce20b4b4999cc4288f2cd72b3 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:358 -msgid "3.4. Imagery offset database website" -msgstr "3.4 Situs database pergeseran citra satelit" - -# 95c3e682ee9a466492b544988d94a0f0 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:360 -msgid "" -"For more information on the offset database, you can visit the website at " -"http://offsets.textual.ru/. This lists all the offsets that have been " -"uploaded to the database, and it also has a map feature that visualises " -"where the offsets are located, as you can see here:" -msgstr "" -"Untuk informasi di database pergeseran satelit, Anda bisa pergi ke situs " -"http://offsets.textual.ru/. Ini akan menunjukkan daftar pergeseran satelit " -"yang telah diupload oleh pengguna dan juga tampilan yang bagus yang " -"menunjukkan dimana pergeseran satelit ada, seperti yang Anda lihat disini:" - -# 950d911cbc594246b85178c8af5c60ca -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:368 -msgid "" -"One last thing to remember is that the imagery may not be offset the same " -"distance everywhere! This is especially true in regions where there are lots " -"of hills and mountains. So if the imagery seems to be offset differently in " -"different areas, you’ll need to move it again." -msgstr "" -"Satu hal yang perlu diingat adalah jarak pergeseran satelit tidak sama " -"dengan daerah lain! Hal ini terutama di daerah yang memiliki banyak gunung " -"dan bukit. Jadi, jika citra satelit bergeser berbeda di area yang lain, Anda " -"harus menggesernya kembali." - -# a4bd907ad7104dbdbda6a98f27a61c93 -#: ../../source/training/old-training/beginner/osm/107-imagery-offset.rst:374 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Lanjutkan ke modul berikutnya -->`" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/108-getting-osm-data.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/108-getting-osm-data.po deleted file mode 100644 index 1de42252..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/108-getting-osm-data.po +++ /dev/null @@ -1,253 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# mahardika fadmastuti , 2013 -# Wulansari Khairunisa , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:56+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 104892b231f4499589f91209714e4a33 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:6 -msgid "Module 8: Getting OSM Data" -msgstr "Bab 8: Memperoleh Data *OSM*" - -# 2a146bf6b5a846c2b5419b9126560ad4 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# d9fc245e71aa43a8888d78b6d447e590 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:10 -msgid "" -"Download OpenStreetMap data from the `Geofabrik website `_" -msgstr "" -"Mendownload data OpenStreetMap dari `Situs Geofabrik `_" - -# c8b5a9bb86b64ea3b81d1a98049ca8cf -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:12 -msgid "Download customised OpenStreetMap data using HOT Exports" -msgstr "Mendownload data OpenStreetMap menggunakan HOT Exports" - -# 5b7cd98c3fb64835ab70a9a7c67307e6 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:14 -msgid "" -"Now that we have learned how to contribute data to the OpenStreetMap " -"database, let's see how we can access data for download in different " -"formats. You may want to download OSM data as a backup or for use in " -"Geographic Information System software such as |QGIS|." -msgstr "" -"Saat ini kita telah belajar bagaimana menambahkan data ke database " -"OpenStreetMap, mari kita lihat bagaimana kita dapat mengakses data untuk " -"mendownload dalam format yang berbeda. Anda mungkin ingin mendownload data " -"OSM sebagai cadangan atau digunakan dalam software Sistem Informasi Geografi " -"seperti |QGIS|." - -# 2eb53388f7f74780b75ee4356904c123 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:20 -msgid "1. Getting OSM data on Geofabrik website" -msgstr "1. Memperoleh data OSM melalui situs Geofabrik" - -# eff0da77d72f495c91466e87d7cb5b11 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:22 -msgid "" -"The easiest way to get OSM data is to download a pre-processed data extract " -"from one of the various websites which offers up-to-date downloads. In this " -"section we will see how to download data from Geofabrik, a company which " -"offers free OSM downloads at the link below:" -msgstr "" -"Cara termudah untuk memperoleh data OSM adalah untuk mendownload ekstrak " -"data sebelum diproses dari salah satu berbagai situs yang menawarkan " -"download terbaru. Pada bagian ini kita akan melihat bagaimana untuk " -"mendownload data dari Geofabrik, sebuah perusahaan yang menawarkan download " -"OSM secara gratis pada link di bawah ini: " - -# a8edc184b0c0437c9a721b02e5dbf14e -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:27 -msgid "http://download.geofabrik.de/openstreetmap/" -msgstr "http://download.geofabrik.de/openstreetmap/" - -# 0204110550f54adf91f51132e2e5e6a7 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:32 -msgid "" -"The data is divided into several regions. To access the data for Indonesia, " -"click on the :guilabel:`Asia` region in the table." -msgstr "" -"Data dibagi ke dalam beberapa wilayah. Untuk mengakses data di Indonesia, " -"klik pada bagian :guilabel:`Asia` dalam tabel wilayah." - -# 678bafd1597f4736887ef2ff5a2cdad6 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:38 -msgid "Then click on :guilabel:`Indonesia`." -msgstr "Kemudian klik pada :guilabel:`Indonesia`." - -# db3e456d740c4c27834ebe9b58b586c3 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:43 -msgid "" -"To obtain the Indonesian data in shapefile (.shp) format, click on :guilabel:" -"`indonesia-latest.shp.zip` and the file will be downloaded. Several file " -"formats are available - shapefiles are a popular GIS format which contain " -"several different files with point, line and polygon data." -msgstr "" -"Untuk mendapatkan data Indonesia dalam format shapefile (.shp), klik pada :" -"guilabel:`indonesia-latest.shp.zip` dan file akan terdownload. Beberapa " -"format file yang tersedia - shapefile adalah format umum dalam SIG yang " -"berisi beberapa file yang berbeda terdiri dari titik, garis, dan data " -"poligon. " - -# c680565588874252a581a01467d5cfe8 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:49 -msgid "" -"The website indicates the most recent time that the data was updated. Note " -"that the server usually updates the data once every 24 hours, so if you have " -"just made changes to OSM, don't expect them to appear in this data " -"immediately." -msgstr "" -"Situs menunjukkan waktu terbaru bahwa data telah diperbaharui. Perlu " -"diperhatikan, server biasanya memperbaharui data setiap 24 jam sekali, jadi " -"jika Anda baru saja mengupload data ke OSM, jangan mengharapkan data akan " -"langsung terihat." - -# 4fe71e37f37949fabd9a129ba486e628 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:55 -msgid "2. Getting OSM data from HOT Exports" -msgstr "2. Memperoleh data OSM dari HOT Exports" - -# 9fefecdf135e4912bba25f50022bc6a6 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:57 -msgid "" -"To download a specific area with a specific data attributes that you define, " -"HOT Exports is a more convenient tool for downloading data." -msgstr "" -"Untuk mendownload area dengan atribut data yang spesifik yang Anda tetapkan, " -"Hot Exports adalah *tool* yang lebih sesuai untuk mendownload data." - -# c674023e420b4a4285dee0d713eb94c8 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:60 -msgid "In your web browser, go to http://export.hotosm.org" -msgstr "Pada browser internet, pergi ke http://export.hotosm.org" - -# 1f217649c89341ddaf77e8d8e66c8ee5 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:65 -msgid "" -"To create a data processing job you must have an account. Click :guilabel:" -"`Create Account` in the bottom left corner and enter your email address, a " -"new password and password confirmation. Complete the registration by " -"clicking :guilabel:`Create Account`. Open your email and click on the link " -"that has been sent in order to activate your account." -msgstr "" -"Untuk membuat pekerjaan dalam proses data, Anda harus memiliki akun. Klik :" -"guilabel:`Create Account` pada tombol di sudut kiri bawah dan masukkan " -"alamat email Anda, kata sandi baru dan konfirmasi kata sandi. Registrasi " -"telah lengkap klik :guilabel:`Create Account`. Buka email Anda dan klik pada " -"link yang telah dikirim untuk mengaktifkan akun Anda. " - -# 0c05b571715a478b973e54af32938b29 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:74 -msgid "Log in using the account that you have created." -msgstr "Masuk dengan menggunakan akun yang telah dibuat." - -# 653b77f90e17471990704ddbc7532685 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:79 -msgid "" -"When you are successfully logged in, click :guilabel:`New Job` in the upper " -"right corner." -msgstr "" -"Ketika Anda berhasil masuk, klik :guilabel:`New Job` di sudut kanan atas," - -# 5ffc8ad53abe435e8a4f774ef481a815 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:82 -msgid "" -"Enter a name for the job (such as the name of the area you are downloading). " -"Enter a description as well." -msgstr "" -"Masukkan nama untuk pekerjaan (seperti nama dari area yang Anda download). " -"Masukkan deskripsi akan lebih baik." - -# 433fb2286f8d4258b8797793b789c16a -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:85 -msgid "" -"Zoom in on the map to the area that you want to download. Click :guilabel:" -"`Select Area` and draw a box around the area that you want. The box can be " -"manipulated by dragging its corners and centre. When you finish, click :" -"guilabel:`Create Job`." -msgstr "" -"Perbesar peta untuk area yang ingin Anda *download*. Klik :guilabel:`Select " -"Area` dan gambar sebuah kotak disekitar area yang Anda inginkan. Kotak dapat " -"dimodifikasi dengan menggeser sudut kotak dan bagian tengah. Ketika Anda " -"selesai, klik :guilabel:`Create Job`. " - -# ab11d9de9c894e1ab7d54a835654150b -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:93 -msgid "" -"Next, you may optionally select a presets file to include in your data " -"extract. Presets files are the same as those used in JOSM, and instruct HOT " -"Exports to extract specific data attributes in your custom download. This is " -"useful if the data you are accessing contains non-standard tags that are not " -"typically included in data extracts." -msgstr "" -"Selanjutnya, Anda dapat memilih file presets yang termasuk dalam data " -"ekstrak Anda. File Presets sama dengan yang digunakan didalam JOSM, dan HOT " -"Export memerintahkan untuk ekstrak data atribut yang spesifik dengan " -"*download* sesuai keinginan sendiri. Ini berguna jika data yang Anda akses " -"berisi tag yang tidak standart yang tidak biasa termasuk dalam data ekstrak." - -# 7c5352dcd9d04cb796f69694edfd68c3 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:99 -msgid "" -"To add a presets file, click the drop-down menu next to :guilabel:`Select " -"Preset File` and choose one of the available options. Check the box next to :" -"guilabel:`Add Default Tags?` to include the default attributes in the data " -"extract." -msgstr "" -"Untuk menambahkan file presets, klik menu daftar pilihan kemudian :guilabel:" -"`Select Preset File` dan pilih satu dari pilihan yang tersedia. Berikan " -"tanda centang pada kotak :guilabel:`Add Default Tags?` termasuk pengaturan " -"bawaan atribut dalam ekstrak data." - -# 649691ff5a5044fbb10eab228e4d1cf5 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:107 -msgid "" -"Click :guilabel:`Save` and the server will begin to process your request. " -"The length of the process depends on the area you choose and server capacity." -msgstr "" -"Klik :guilabel:`Save` dan server akan mulai memproses permintaan Anda. " -"Panjang proses tergantung pada area yang Anda pilih dan kapasitas server." - -# 626f31753f7c4eab9b2d2fe808d72149 -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:111 -msgid "" -"When the process is complete, the data can be downloaded in a variety of " -"formats, including shapefiles, KML and database formats." -msgstr "" -"Ketika proses selesai, data dapat didownload dalam berbagai format, termasuk " -"shapefile, KML dan format database. " - -# 20c21953d50a438a8931fff935d5e01c -#: ../../source/training/old-training/beginner/osm/108-getting-osm-data.rst:117 -msgid "" -"All jobs you create will appear in the list on the :guilabel:`Jobs` page. If " -"any time you want to download the same area with up-to-date data, find the " -"job on this page. Click :guilabel:`Start new run` to process the same " -"extract again but with the most recent OSM data." -msgstr "" -"Semua pekerjaan yang Anda buat akan muncul dalam daftar dalam halaman :" -"guilabel:`Jobs`. Jika suatu saat Anda ingin *download* area yang sama dengan " -"data terbaru, temukan pekerjaan dalam halaman ini. Klik :guilabel:`Start new " -"run` untuk memproses ekstrak yang sama lagi tapi dengan data OSM terbaru." diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/index.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/index.po deleted file mode 100644 index 0486d97b..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/osm/index.po +++ /dev/null @@ -1,25 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 0248cd79631f46c4a67e7fdc49ac94e2 -#: ../../source/training/old-training/beginner/osm/index.rst:4 -msgid "Unit 1: Data Collection Using OpenStreetMap Beginner Level" -msgstr "**Unit 1: Pengumpulan Data dengan menggunakan OSM Tingkat Dasar**" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/200-introduction.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/200-introduction.po deleted file mode 100644 index 68ba3978..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/200-introduction.po +++ /dev/null @@ -1,317 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2014 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2014 -# Yantisa Akhadi , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 08:37+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 7344507bc71a4b5ab0e20ee438371bc7 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:6 -msgid "Introduction" -msgstr "Pengantar" - -# 71d29bdbcfd5460d8967e5e560dbef2a -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:9 -msgid "Disclaimer" -msgstr "Ketentuan" - -# 4fd1d90c43fe43e097887aa3a9347602 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:11 -msgid "" -"This document is initial draft and still in reviewing phase by these parties:" -msgstr "" -"Dokumen ini merupakan rancangan awal dan masih dalam tahap peninjauan oleh " -"pihak-pihak sebagai berikut:" - -# 544a369f7a6b4c72b8c10bd66c3e2f0a -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:13 -msgid "Badan Nasional Penanggulangan Bencana (|BNPB|)" -msgstr "Badan Nasional Penanggulangan Bencana (|BNPB|)" - -# 9ea462299f0f47f38967fd9b347094b4 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:14 -msgid "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" -msgstr "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" - -# 3230f6ccdd3244b5a05281feff714ce9 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:15 -msgid "Humanitarian OpenStreetMap Team (|HOT|)" -msgstr "Humanitarian OpenStreetMap Team (|HOT|)" - -# 7c895933cc5f4d32b0e3e3be9ef45f85 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:17 -msgid "" -"All contents and materials in this document may be changed without public " -"notice." -msgstr "" -"Seluruh isi dan materi dalam dokumen ini kemungkinan masih dapat mengalami " -"perubahan tanpa pemberitahuan publik." - -# 385c76a44fb445618f495331c02c2660 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:21 -msgid "Licence" -msgstr "Lisensi" - -# 837a37e639974938b57c5b7e0a5abe18 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:25 -msgid "" -"All contents and materials in this document are licensed as Creative Commons " -"Attribution Australia (CCbyA)." -msgstr "" -"Seluruh isi dan materi pada dokumen ini berlisensikan Creative Commons " -"Attribution Australia (CCbyA)." - -# 48f3501557324bc5a6ddf4fba46f0bf9 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:28 -msgid "You are free:" -msgstr "Anda dapat secara bebas:" - -# be1af29f684a44808fadfb9ae1135422 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:30 -msgid "to copy, distribute, display, and perform the work" -msgstr "menyalin, mendistribusikan, menampilkan, dan melakukan pekerjaan" - -# 93d0ed1fb767496ba5eab54d6cee40fa -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:31 -msgid "to make derivative works" -msgstr "membuat karya-karya turunan" - -# 2e74246dcbf34c69b4a0374c0ae40b18 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:32 -msgid "to make commercial use of the work" -msgstr "membuat penggunaan komersial dari karya tersebut" - -# 53e98b7bcdd749e8a0077b686e077380 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:34 -msgid "You must give the original author credit." -msgstr "Anda harus mencantumkan kredit penulis asli." - -# 0c1be603560948eba7d6b59a7bd596b7 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:36 -msgid "" -"More information about CCbyA License: http://creativecommons.org/licenses/" -"by/3.0/au/deed.en_GB" -msgstr "" -"Keterangan lebih lanjut mengenai Lisensi CCbyA: http://creativecommons.org/" -"licenses/by/3.0/au/deed.en_GB" - -# 888507da4b6d4bddb0f3cb25646cc8b3 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:40 -msgid "About Us" -msgstr "Tentang Kami" - -# 9c440d5e3856482b8353240e377985ea -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:42 -msgid "Badan Nasional Penanggulangan Bencana (BNPB)" -msgstr "Badan Nasional Penanggulangan Bencana (BNPB)" - -# a9738955ee0647d7b50fcc8361564382 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:46 -msgid "" -"BNPB is Indonesia’s National Disaster Management Agency. |BNPB| is a non-" -"departmental ministerial-level government agency, tasked with providing " -"guidance and direction to the efforts of disaster management that includes " -"disaster prevention, emergency response, rehabilitation and reconstruction " -"in a fair and equal way. |BNPB| functions as a policy maker regarding " -"refugee/IDP management for effective and efficient response. It coordinates " -"the implementation of disaster management activities in a planned, " -"integrated and comprehensive way." -msgstr "" -"BNPB adalah Badan Nasional Penanggulangan Bencana Indonesia. |BNPB| " -"merupakan lembaga pemerintah non-departemen di tingkat kementrian yang " -"bertugas untuk menyediakan panduan dan pengarahan di bidang manajemen " -"bencana, termasuk pencegahan bencana, respon keadaan darurat, rehabilitasi, " -"dan rekonstruksi secara adil dan merata. BNPB memiliki fungsi sebagai " -"pembuat kebijakan terkait manajemen pengungsi (IDP) untuk bertindak secara " -"cepat dan merespon secara efisien. BNPB juga mengkoordinasikan implementasi " -"dari aktifitas manajemen bencana secara terencana, terintegrasi, dan " -"komprehensif." - -# f68e6d360a9e4fa694eb51afcf787e61 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:56 -msgid "http://bnpb.go.id" -msgstr "http://bnpb.go.id" - -# a6c01f037ab34c4fbaf4d6a48f803984 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:59 -msgid "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" -msgstr "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" - -# 3925c430d6504c4a9d68a4e3456a6637 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:63 -msgid "" -"The Australia-Indonesia Facility for Disaster Reduction (|AIFDR|) is a joint " -"initiative between the governments of Australia and Indonesia. They work to " -"strengthen Indonesia's ability to reduce the impact of disasters. The " -"Australian and Indonesian governments at a special ceremony on 15 July 2010 " -"launched the Australia-Indonesia facility. The launch marks an important " -"event in the strong relationship now shared by both countries and their " -"united commitment to better prepare for and respond to natural disasters in " -"Indonesia." -msgstr "" -"Australia-Indonesia Facility for Disaster Reduction (AIFDR, Fasilitas " -"Australia-Indonesia untuk pengurangan bencana) merupakan inisiatif gabungan " -"antara pemerintah Australia dengan pemerintahIndonesia. AIFDR bekerja untuk " -"memperkuat kemampuan Indonesia untuk mengurangi dampak bencana. AIFDR " -"diluncurkan oleh pemerintah Australia dan pemerintah Indonesia dalam sebuah " -"seremoni khusus pada tanggal 15 Juli 2010. Peluncuran ini menandakan sebuah " -"kejadian penting dalam hubungan kuat yang saat ini terjalin antara kedua " -"negara dan komitmen mereka untuk mempersiakan dan merespon bencana alam di " -"Indonesia lebih baik." - -# ff0ca3bdd70c4c9f8b2e25f60b2fa245 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:72 -msgid "http://aifdr.org" -msgstr "http://aifdr.org" - -# d2bf989b83eb4a96a77f0c99b80bd024 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:75 -msgid "Humanitarian OpenStreetMap Team (HOT)" -msgstr "Humanitarian OpenStreetMap Team (HOT)" - -# fab017c38d1d4e6882e7fa3a80ef955c -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:79 -msgid "" -"Free, collaborative maps are uniquely valuable to humanitarian work, " -"especially in places where base map data is often scarce, out-of-date, or " -"rapidly changing. OpenStreetMap is a web project to create a free and open " -"map of the entire world, built entirely by volunteers surveying with GPS, " -"digitising aerial imagery, and collecting and liberating existing public " -"sources of geographic data. The Humanitarian OpenStreetMap Team (|HOT|) is " -"an initiative to apply the principles and activities of open source and open " -"data sharing towards humanitarian response and economic development." -msgstr "" -"Peta gratis dan kolaboratif mempunyai keunikan yang berharga untuk pekerjaan " -"kemanusiaan, terutama di tempat-tempat dimana peta dasar sangat jarang " -"ditemukan, datanya sudah lama, atau seringkali berubah. OpenStreetMap " -"merupakan proyek berbasis website untuk membuat peta dunia yang gratis dan " -"terbuka, dibangun oleh volunteer yang melakukan survei dengan GPS, " -"mendigitasi citra satelit, dan mengumpulkan juga membebaskan sumber data " -"geografis publik yang sudah ada . Tim Kemanusiaan OpenStreetMap (HOT) " -"merupakan sebuah inisiatif yang baru untuk mengaplikasikan prinsip dan " -"aktifitas dari sumber terbuka dan berbagi data terbuka untuk menuju respon " -"kemanusiaan dan pembangunan ekonomi." - -# e9a9b78697b245b996aefeb25efa0f98 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:88 -msgid "http://hot.openstreetmap.org" -msgstr "http://hot.openstreetmap.org" - -# 3ff955ece7ba43e4b3ddc8f9ca412ce8 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:91 -msgid "Universitas Gadjah Mada" -msgstr "Universitas Gadjah Mada" - -# 08ccb2d1f7c7454a8957359b416f70a8 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:95 -msgid "" -"Universitas Gadjah Mada (internationally known as Gadjah Mada University, or " -"UGM) is a top research university located in Yogyakarta, Indonesia. The " -"Department of Geodetic Engineering and Faculty of Engineering focuses on " -"education, research, and community services related to geodesy and geomatics " -"engineering, including acquisition, analysis, and uses of detailed and " -"accurate geospatial data and large-scale maps using open source geospatial " -"software for disaster management." -msgstr "" -"Universitas Gadjah Mada (secara internasional dikenal sebagai Gadjah Mada " -"University ; Disingkat : UGM) adalah salah satu pusat penelitian tingkat " -"universitas yang bertempat di Yogyakarta, Indonesia. Departemen Teknik " -"Geodesi, Fakultas Teknik khususnya fokus dalam kegiatan pengajaran, " -"penelitian, dan pengabdian kelompok yang berkaitan dengan geodesi dan teknik " -"geomatik, termasuk akuisisi, analisis, dan penggunaan dari geospasial data " -"yang detil dan akurat serta dengan peta berskala besar menggunakan software " -"geospasial bersifat open source dalam manajemen bencana." - -# d4eea4cf7dbe4102b766246077056ffc -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:103 -msgid "http://ugm.ac.id" -msgstr "http://ugm.ac.id" - -# 9378e3190167428d8b17df1100325021 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:106 -msgid "Preface" -msgstr "Pengantar" - -# 85b4e49add414e44b456321183c13d0f -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:107 -msgid "" -"A Geographic Information System (GIS) is a system designed to enable people " -"to work with data related to places on Earth. A GIS allows the creation, " -"storage, manipulation and analysis of geographic data. GIS is a very broad " -"concept and can involve complex hardware and software. But for most people’s " -"purposes, a simple GIS software application is all that is required." -msgstr "" -"Sistem Informasi Geografis (SIG) adalah sebuah sistem yang dirancang untuk " -"memungkinkan orang-orang bekerja dengan data yang berhubungan dengan " -"keberadaan suatu tempat di bumi. SIG memungkinkan pembuatan, penyimpanan, " -"manipulasi, dan analisis data geografis. SIG merupakan konsep yang sangat " -"luas dan dapat melibatkan perangkat lunak dan perangkat keras yang rumit. " -"Tetapi, untuk memenuhi tujuan dari kebanyakan orang, maka yang dibutuhkan " -"adalah sebuah aplikasi perangkat lunak SIG sederhana." - -# c51a6e4cfab64da7834c5be2721ad72d -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:115 -msgid "" -"GIS can be used in a variety of fields, including disaster management. In " -"this training we use GIS software that is free and open, which includes " -"special functionality for the preparation of contingency plans." -msgstr "" -"SIG secara umum dapat digunakan untuk berbagai macam bidang, termasuk dalam " -"manajemen kebencanaan. Pada pelatihan ini kita menggunakan perangkat lunak " -"SIG, yang mana perangkat lunak tersebut gratis dan terbuka untuk tujuan " -"manajemen kebencanaan, khususnya dalam persiapan rencana kontinjensi." - -# 1787c51490c04539ac14fd6b3c8f7b53 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:120 -msgid "" -"The software, called |QGIS|, is a Geographic Information System (GIS) that " -"is user-friendly and open-source. |project_name| is a QGIS plugin, which is " -"also free and open-source. It can create realistic scenarios of natural " -"disaster impact for planning, preparation and better response. |" -"project_name| is developed by |AIFDR| through consultation with |BNPB|." -msgstr "" -"Perangkat lunak bernama QGIS ini merupakan Sistem Informasi Geografis (SIG) " -"yang sangat mudah digunakan dan bersifat open-source. |project_name| adalah " -"sebuah perangkat lunak bebas dan bersifat open-source, yang dapat membuat " -"skenario realistis dari dampak bencana alam untuk perencanaan, persiapan, " -"dan respon bencana yang lebih baik. |project_name| dikembangkan oleh |AIFDR| " -"melalui konsultasi dengan |BNPB|." - -# 087085d2dcc042d3a6a58cfb958d911a -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:126 -msgid "" -"Data Analysis using QGIS and |project_name| covers different material from " -"the previous unit, complementing and building on top of it. Unit One was " -"about the collection of relevant data using OSM. In this unit we will " -"explore how to use geographic data to better understand disaster impact and " -"to help develop contingency plans." -msgstr "" -"Menganalisis data menggunakan QGIS dan |project_name| mencakup materi " -"berbeda dari unit sebelumnya, melengkapi dan membangun di materi " -"selanjutnya. Salah satu unit tentang pengumpulan data yang relevan " -"menggunakan OSM. Pada unit ini kita akan membahas bagaimana menggunakan data " -"geografis untuk lebih memahami dampak bencana dan membantu mengembangkan " -"rencana kontinjensi." - -# df5816de6b254c7687921aaf2e773c34 -#: ../../source/training/old-training/beginner/qgis-inasafe/200-introduction.rst:132 -msgid ":ref:`Go to first module --> `" -msgstr "" -":ref:`Pergi ke modul pertama --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.po deleted file mode 100644 index 6874bf21..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2018 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Wulansari Khairunisa , 2013 -# Yantisa Akhadi , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:48+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# a6db799e425f42ce88be02c4313fb856 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:6 -msgid "Module 1: GIS for Developing Contingency Plan" -msgstr "Modul 1: SIG untuk Pengembangan Rencana Kontinjensi" - -# 7a14d599404d4931bc4d7450ddc58fb7 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 07a891f399b644f784240165c4ad9004 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:10 -msgid "Distinguish between data and information" -msgstr "Membedakan antara data dan informasi" - -# f4121fa94b5c4eb388ef4152f00244fc -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:11 -msgid "Understand the concept of GIS" -msgstr "Memahami konsep SIG" - -# 5df587301cf0489cb1ea1e6d289143b7 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:14 -msgid "Difference between data and information" -msgstr "Perbedaan antara data dan informasi" - -# 55fc9eff258d432fb510b0174943c57f -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:16 -msgid "" -"In the first unit, we looked at OpenStreetMap and how to collect data and " -"add it to the worldwide map. But what do we mean when we say that we collect " -"data? Is this the same as collecting information? Well, not exactly." -msgstr "" -"Pada unit pertama, kita melihat OpenStreetMap dan bagaimana cara pengumpulan " -"data dengannya serta menambahkannya ke dalam peta dunia. Tapi apa yang kita " -"maksudkan ketika kita mengatakan bahwa kita mengumpulkan data? Apakah ini " -"sama dengan mengumpulkan informasi? Jawabanya, tidaklah sama." - -# 1d6df95a09624755b081d5c341a88794 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:20 -msgid "" -"Data are raw facts. Information is data that is organised and presented in " -"such a way as to be useful. In other words, when we go mapping to collect " -"locations and facts about those locations, we have collected data - we have " -"collected facts. To turn this data into information, we must make sense of " -"it. We must present the data in such a way that it can be easily understood." -msgstr "" -"Data adalah fakta yang belum diolah. Informasi adalah data yang " -"diorganisasikan dan disajikan sedemikian rupa agar lebih berguna. Dengan " -"kata lain, ketika kita melakukan pemetaan untuk mengumpulkan lokasi dan " -"fakta tentang lokasi tersebut, kita telah mengumpulkan data - kita telah " -"mengumpulkan fakta. Untuk mengubah data tersebut menjadi informasi, kita " -"harus memahami hal ini. Kita harus menyajikan data sedemikian rupa sehingga " -"dapat dipahami dengan mudah ." - -# d1964df3f5c94a57887521ad76bc4ee8 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:26 -msgid "" -"OSM data is already made informative in an obvious way. The map that you see " -"when you visit the OSM website is there because a computer has processed all " -"of the OSM data and used it to paint a nice looking map. The map is " -"informative, and useful for us to see where places are in relation to us." -msgstr "" -"Data OSM telah dibuat secara einformatif dengan cara yang jelas. Peta yang " -"Anda lihat ketika Anda mengunjungi situs OSM dapat ditampilkan karena " -"komputer telah memproses semua data OSM dan menggunakannya untuk membuat " -"peta yang terlihat lebih baik. Peta OSM menjadi terlihat lebih informatif, " -"dan berguna bagi kita untuk melihat tempat yang berkaitan dengan kita." - -# 838d08aa2cbf4b23890943aad39f004d -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:31 -msgid "" -"In this unit we will take this even further. We will learn how to perform " -"geographic data analysis, and thereby learn how to make our data more " -"useful, informative and effective." -msgstr "" -"Pada unit ini, kita akan belajar lebih jauh. Kita akan belajar bagaimana " -"melakukan analisis data geografis, dan dengan demikian kita belajar " -"bagaimana membuat data kita lebih berguna, informatif, dan efektif." - -# ba789d8903ec4bfeb218b97ee34df790 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:36 -msgid "Terminology of Geographic Information Systems (GIS)" -msgstr "Pengertian Sistem Informasi Geografis (SIG)" - -# 1905e1ad30914f97ab740cb8c1c39502 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:38 -msgid "" -"A Geographic Information System (GIS) is a system designed to enable people " -"to work with data related to places on the Earth. A GIS allows the creation, " -"storage, manipulation and analysis of geographic data. GIS is a very broad " -"concept and can involve complex hardware and software. But for most people’s " -"purposes, a simple GIS software application is all that is required, and in " -"this unit we will learn how to use the excellent open-source application, " -"QGIS." -msgstr "" -"Sistem Informasi Geografis (SIG) adalah sebuah sistem yang dirancang untuk " -"memungkinkan orang-orang bekerja dengan data yang berkaitan dengan suatu " -"tempat di bumi. SIG memungkinkan pembuatan, penyimpanan, manipulasi, dan " -"analisis data geografis. SIG merupakan konsep yang sangat luas dan dapat " -"melibatkan perangkat keras dan perangkat lunak yang rumit. Tetapi, untuk " -"memenuhi tujuan kebanyakan orang, yang dibutuhkan adalah sebuah perangkat " -"lunak SIG yang sederhana, dan pada unit ini kita akan mempelajari bagaimana " -"menggunakan aplikasi *open-source* yang unggul, QGIS. " - -# 6d7069e2eedb4bdc80aef79e3212c152 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:45 -msgid "" -"GIS provides different ways of analysing data. It enables us to ask complex " -"questions, such as:" -msgstr "" -"SIG menyediakan berbagai macam cara untuk menganalisis data. SIG " -"memungkinkan kita untuk menjawab pertanyaan-pertanyaan yang rumit, seperti: " - -# 07149ab44b394058b93b052b3b71f3c0 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:48 -msgid "Where are all schools with more than 100 students?" -msgstr "Di mana sekolah-sekolah yang memiliki lebih dari 100 siswa?" - -# 574a5dc16ab34ee3bf8cc9f57c2717f2 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:49 -msgid "How many children live in a certain district?" -msgstr "Berapa banyak anak-anak yang tinggal di suatu kecamatan?" - -# decffb28de734499b69037e970e52e7b -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:50 -msgid "How many women live within 500 metres of a certain hospital?" -msgstr "" -"Berapa banyak perempuan yang tinggal dalam jangkauan 500 meter dari suatu " -"rumah sakit?" - -# 55b072694ab14602af1a241feb1acc0a -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:51 -msgid "What is the shortest walking path from a given point to a hospital?" -msgstr "" -"Manakah rute jalan kaki terdekat dari suatu titik menuju suatu rumah sakit?" - -# 43b12bd168624429b950e083cf38d90c -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:53 -msgid "" -"GIS helps us to answer these sorts of questions. In the previous unit we " -"learned how to collect data, and in this unit we will see how to analyse it." -msgstr "" -"SIG membantu kita untuk menjawab pertanyaan-pertanyaan semacam ini. Pada " -"unit sebelumnya kita belajar bagaimana mengumpulkan data, dan pada unit ini " -"kita akan melihat bagaimana untuk menganalisanya." - -# a511f08268354e76b676363cfba4ab81 -#: ../../source/training/old-training/beginner/qgis-inasafe/201-gis-for-developing-contingency-plan.rst:56 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.po deleted file mode 100644 index a76b6eed..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.po +++ /dev/null @@ -1,277 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2018 -# Wulansari Khairunisa , 2013 -# Yantisa Akhadi , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:45+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 4c3d7f770afd4d03aa7969fbc02c7b6b -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:6 -msgid "Module 2: QGIS and |project_name| in Contingency Planning" -msgstr "Modul 2: QGIS dan |project_name| dalam Rencana Kontinjensi" - -# 8cbe7f06be2b49ad923e3d19f36a4bae -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# aaa40ad22d09477cb8fe01ddabab2e33 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:10 -msgid "Understand the role of GIS in contingency plan preparation" -msgstr "Memahami peran SIG dalam mempersiapkan rencana kontinjensi" - -# 952e9ebcc21049e8a0797a81c3d67470 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:11 -msgid "Understand the importance of data" -msgstr "Memahami pentingnya data" - -# 578c8f896c5344bfa1d26a929e336623 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:12 -msgid "" -"Understand the benefits of QGIS/|project_name| in the development of " -"scenarios for contingency planning" -msgstr "" -"Memahami manfaat QGIS/|project_name| dalam pengembangan skenario untuk " -"rencana kontinjensi" - -# 5e50ca14488f4098987ce4a0cf647f26 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:16 -msgid "GIS for preparing contingency plans" -msgstr "SIG untuk mempersiapkan rencana kontinjensi" - -# 59c075b098a8476ca457e8c9d2246f08 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:17 -msgid "" -"GIS has an important role in contingency planning. A contingency plan is " -"intended to support community preparedness to anticipate the arrival of a " -"potentially hazardous event, such as an earthquake or tsunami. The purpose " -"of such a plan is to minimise casualties and losses in case of such an event." -msgstr "" -"SIG mempunyai peran yang penting dalam perencanaan kontinjensi. Sebuah " -"rencana kontinjensi dibuat untuk mendukung kesiapsiagaan masyarakat untuk " -"mengantisipasi datangnya suatu kejadian berbahaya yang mungkin terjadi, " -"misalnya gempa bumi atau tsunami. Tujuan dari rencana tersebut adalah untuk " -"meminimalisir korban dan kerugian jika kejadian tersebut terjadi." - -# df2470d3045f4064b8737cea416e6995 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:24 -msgid "" -"Before contemplating a contingency plan, one must first consider potential " -"disaster scenarios. A good plan will likely answer questions such as:" -msgstr "" -"Sebelum memikirkan sebuah rencana kontinjensi, satu hal yang harus pertama " -"kali dipertimbangkan adalah potensi skenario bencana. Rencana yang baik " -"kurang lebih akan menjawab pertanyaan-pertanyaan seperti:" - -# f68597283ec64d5b90614a9a1404e020 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:28 -msgid "what sort of disaster is likely to happen?" -msgstr "bencana macam apa yang akan terjadi?" - -# 3a2ea0668f9244ccb6db5a967a016eb9 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:29 -msgid "how widespread might the impact be?" -msgstr "bagaimana persebaran dampak dari bencana tersebut?" - -# 1a26beb28cc84ca8bc278f9525d4d0d0 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:30 -msgid "who is responsible for helping?" -msgstr "siapa yang bertanggung jawab untuk membantu?" - -# 5c4dff0dabf04fa2ae97c636992402e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:31 -msgid "what should be given as aid?" -msgstr "apa yang dapat diberikan sebagai bantuan?" - -# a6137b9cfe91454b936da5fc5d000e56 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:32 -msgid "where are the priority areas?" -msgstr "dimana area prioritas?" - -# 75f7b703ca9d40fdacfbeb63d0596067 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:34 -msgid "" -"In other words, a contingency plan answers the question, who does what, " -"where and when?" -msgstr "" -"Dengan kata lain, sebuah rencana kontinjensi menjawab pertanyaan, siapa " -"melakukan apa, dimana, dan kapan?" - -# 2a3ca5c1053b42518511e23d234437af -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:37 -msgid "" -"A Geographic Information System is able to help planners answer these " -"questions, especially the important spatial elements of contingency " -"planning. GIS may be used to model hazardous events so that they can be " -"better predicted. It may be used to plan evacuation routes prior to a " -"disaster. When a disaster occurs, GIS may also play a role in the emergency " -"response phase. It can be used to map the area affected and position of " -"refugee camps, so that helpers can be directed to the most useful locations " -"to aid those affected. After a disaster, GIS may also be used to plan for " -"rehabilitation and reconstruction. Overall, GIS helps to perform analysis of " -"a disaster, damage and losses caused, and opportunities for reducing risk." -msgstr "" -"Sebuah Sistem Informasi Geografis dapat membantu perencana untuk menjawab " -"pertanyaan tersebut, terutama elemen-elemen spasial yang penting dari " -"rencana kontinjesi. SIG dapat digunakan untuk model kejadian bencana " -"sehingga mereka dapat memprediksi lebih baik dan mengurangi resiko. SIG juga " -"dapat digunakan untuk menentukan rencana rute evakuasi pada saat kejadian " -"sebuah bencana. Ketika bencana terjadi, SIG juga dapat berperan penting " -"dalam tahap respon tanggap darurat. SIG dapat digunakan untuk memetakan area " -"terdampak dan posisi tenda pengungsi, sehingga relawan dapat diarahkan untuk " -"menuju lokasi yang paling berguna untuk membantu mereka yang terdampak. " -"Setelah bencana, SIG juga akan berguna untuk merencanakan rehabilitasi dan " -"rekonstruksi. Kesimpulannya, SIG dapat membantu untuk melakukan analisis " -"sebuah bencana, kerusakan dan kerugian yang disebabkannya, serta kesempatan " -"untuk mengurangi resiko." - -# 25a5170ae891409eb1367229bbb681d3 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:52 -msgid "The importance of data" -msgstr "Pentingnya Data" - -# 0708e1d922bf4d94bcbc9c722772cab3 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:53 -msgid "" -"We previously learned how to start collecting exposure data. When thinking " -"about GIS it is important to remember that if your data is bad, your " -"analysis will be bad also. Hence the more detailed and accurate your data " -"is, the better your analysis and action may be during a disaster." -msgstr "" -"Sebelumnya kita telah mengetahui bagaimana untuk mulai mengumpulkan data " -"keterpaparan. Ketika berpikir tentang SIG, sangat penting untuk diingat " -"bahwa jika data Anda tidak lengkap, maka hasil analisisnya juga akan buruk. " -"Sebaliknya semakin detail dan akurat data Anda, maka analisis dan tindakan " -"Anda pada saat terjadi bencana yang sesungguhnya juga akan lebih baik." - -# 4f27ff0f9d90445490a7507b0d297227 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:59 -msgid "" -"As we shall see in this unit, some data may be obtained from various " -"agencies that specialise in certain kinds of data. For example, we will " -"obtain our hazard models (hazard data) from various organisations that " -"specialise in this. As for exposure data, some data we may find through " -"agencies, such as population data. For infrastructure data, collecting data " -"at a community level is key, which is why in the previous unit we learned " -"how to utilise the crowd-sourced OpenStreetMap platform." -msgstr "" -"Seperti yang akan kita lihat dalam unit ini, beberapa data mungkin " -"didapatkan dari berbagai lembaga yang ahli dalam berbagai jenis data. " -"Sebagai contoh, kita akan memperoleh model data ancaman (data ancaman) dari " -"berbagai organisasi yang ahli dalam bidangnya. Untuk data keterpaparan atau " -"data eksposur, beberapa data mungkin kita dapat temukan melalui lembaga, " -"misalnya data populasi. Untuk data infrastruktur penting, mengumpulkan data " -"di tingkat komunitas merupakan kunci, dimana mengapa kita pada unit " -"sebelumnya telah mempelajari bagaimana memanfaatkan pemetaan berbasis " -"partisipatif dalam platform OpenStreetMap." - -# b3d3b9fa789f4998a5ae868b30edf0cf -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:70 -msgid "QGIS and |project_name|" -msgstr "QGIS dan |project_name|" - -# d8e60456200c431e9068a86de8f6a4e9 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:71 -msgid "" -"QGIS is a user-friendly open-source Geographic Information System (GIS). It " -"runs on Windows, Mac OSX, and Linux. QGIS provides a continually growing " -"number of capabilities provided by core functions and plugins. You can " -"visualise, manage, edit, analyse data and compose printable maps. QGIS is " -"great because:" -msgstr "" -"QGIS merupakan sebuah Sistem Informasi Geografis (SIG) yang mudah terhadap " -"pengguna dan *open-source*. QGIS dapat dijalankan pada Windows, Mac OSX, dan " -"Linux. QGIS menyediakan berbagai kemampuan yang jumlahnya terus berkembang " -"dengan fungsi dan plugin utama. Anda dapat melakukan visualisasi, mengatur, " -"mengedit, menganalisis data, dan membuat peta yang dapat dicetak. QGIS luar " -"biasa karena:" - -# 175fcf9d6c9940d48459424b3a5cacd6 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:78 -msgid "It’s completely free. It doesn’t cost anything." -msgstr "Gratis sepenuhnya. Tidak membutuhkan biaya apapun." - -# 2fb637188c17439b9ae484e36c604466 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:79 -msgid "" -"It’s free, as in liberty. If you think a feature is missing, you can sponsor " -"the development of a feature, or add it yourself if you are familiar with " -"programming." -msgstr "" -"Bebas, dalam arti kebebasan. Jika Anda berpikir ada sebuah fitur yang " -"hilang, Anda dapat mendukung pengembangan sebuah fitur, atau menambahkannya " -"sendiri jika Anda sudah terbiasa dengan pembuatan program." - -# ca7bf1b9ee784f73bf68b795aa95cfd0 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:82 -msgid "" -"It’s constantly developing and improving. Because many people continue " -"adding features, it keeps getting better." -msgstr "" -"Dikembangkan dan ditingkatkan secara berkala. Karena banyak orang yang " -"menambahkan fitur, sehingga QGIS semakin lebih baik." - -# 0b95b456bdd24daf9fc6d5d3c4c2b4b9 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:84 -msgid "" -"Extensive help and documentation is available. If you have problems you can " -"always turn to the software documentation, other QGIS users, or even the " -"developers." -msgstr "" -"Tersedia bantuan dan dokumentasi yang lengkap. Jika Anda memiliki masalah, " -"anda selalu dapat melihat pada dokumentasi perangkat lunak, menghubungi " -"pengguna QGIS lain atau bahkan pengembangnya." - -# 22cc3a470f724c26ab18fdd4784b86a8 -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:88 -msgid "" -"QGIS has many plugins which extend the core functionality of the software. " -"One of these plugins is |project_name|, which can be used to analyse the " -"impact of a disaster and create a list of actions needed to be taken when a " -"disaster occurs. QGIS and |project_name| can also help to determine the " -"location of ideal places of refuge, evacuation routes, areas likely to be " -"damaged and more." -msgstr "" -"QGIS memiliki banyak *plugin* dimana memperluas fungsi utama dari perangkat " -"lunak. Salah satu plugin ini adalah |project_name|, dimana dapat digunakan " -"untuk menganalisis dampak dari kejadian sebuah bencana dan membuat daftar " -"aksi yang perlu ditindak lanjuti ketika bencana tersebut terjadi. QGIS dan |" -"project_name| juga dapat menentukan lokasi ideal untuk penempatan lokasi " -"pengungsi, rute evakuasi, area yang kemungkinan akan terdampak, dan lebih " -"banyak lagi." - -# a8900149e20c4b429b3e2fd05bc9529c -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:98 -msgid "" -"|project_name| provides overviews of potential disaster scenarios and their " -"outcomes, as well as maps which can aid decision-makers when disaster " -"strikes. Maps are an effective way of communicating disaster impact, by " -"showing in a simple way the areas of damage, such as the extent of flood-" -"affected areas and buildings affected by a flood." -msgstr "" -"|project_name| menampilkan gambaran dari skenario potensi bencana, hasilnya, " -"seperti peta yang dapat membantu sebagai pengambil keputusan ketika terjadi " -"bencana. Peta adalah cara yang efektif untuk mengkomunikasikan dampak " -"bencana, tetapi menunjukkan cara sederhana untuk area yang rusak, seperti " -"luasnya daerah yang terkena banjir dan bangunan yang terkena dampak banjir." - -# 9c87be1dbe7845e295fa745508860d9d -#: ../../source/training/old-training/beginner/qgis-inasafe/202-qgis-and-inasafe-in-contingency-plan.rst:105 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.po deleted file mode 100644 index b32e33ec..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.po +++ /dev/null @@ -1,751 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2018 -# mahardika fadmastuti , 2013 -# Wulansari Khairunisa , 2013 -# Yantisa Akhadi , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-13 09:14+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# c8c9d2c189924d0d91fd33a9720312c0 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:6 -msgid "Module 3: The Basics of QGIS" -msgstr "Modul 3: Dasar-dasar QGIS" - -# ffe076e4ed1646b19c9875e44585c40b -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 5e2f4d9498074c78a9c9041c7fc76433 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:10 -msgid "Download QGIS" -msgstr "Men-*download* QGIS" - -# 71fe85a764634c01bc4e19e9d119ffc7 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:11 -msgid "Install QGIS" -msgstr "Meng-*install* QGIS" - -# f1dd3cabfca14bf8b960b44fc656f59e -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:12 -msgid "Open a previously created QGIS project" -msgstr "Membuka proyek QGIS yang telah disimpan sebelumnya" - -# 8c906eb50a7049588b0849cf1bb004d7 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:13 -msgid "Understand the layers panel" -msgstr "Memahami panel *layer*" - -# d128a2ddbb5949e4a9c15ff08be7dac5 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:14 -msgid "Access basic tools through the toolbar" -msgstr "Mengakses tool dasar melalui toolbar" - -# ce9a819f0b1b457c81fdafaab8d845e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:15 -msgid "Clean up the toolbar" -msgstr "Membersihkan *toolbar*" - -# 0e0d0bc7c8c848769050b918738f047c -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:16 -msgid "Show a map in the map window" -msgstr "Menampilkan peta melalui jendela peta" - -# 720c7364075f4a3d84b38f2b0b084236 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:17 -msgid "Get information on an active map through the status bar" -msgstr "Mengambil informasi pada peta melalui *status bar*" - -# e2d8a6c7e52b44d9b3500d86e8b733f1 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:19 -msgid "" -"In this module we begin using QGIS. We’ll see how to install the software " -"and understand the layout, interface and core functions of the software. By " -"the end of this module, you’ll be on your way to becoming a competent GIS " -"user!" -msgstr "" -"Pada modul ini, kita akan memulai menggunakan QGIS. Anda akan melihat " -"bagaimana cara menginstall software, mempelajari dan mengerti mengenai " -"*layout* dan tampilan antar muka, dan beberapa fungsi penting pada software " -"ini. Pada akhir modul, Anda akan menuju jalan Anda menjadi pengguna GIS yang " -"kompeten!" - -# 639d23d590064db1ac062e67b3b3b3ad -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:25 -msgid "" -"Note that if you have previously installed QGIS, feel free to skip ahead to :" -"ref:`section three `. Otherwise, let’s start here and " -"get QGIS installed." -msgstr "" -"Perhatian jika Anda telah menginstall QGIS sebelumnya, lewati bagian :ref:" -"`section three `. Sebaiknya, mari mulai dan dapatkan " -"QGIS install." - -# f95373723ebd4e319d1dbbd5ea8af112 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:30 -msgid "1. Getting QGIS" -msgstr "1. Mendapatkan QGIS" - -# 1d396b8daa874029ad5e204904943cb8 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:31 -msgid "" -"Open your web browser and in the address bar at the top of the window, type :" -"kbd:`qgis.org`. Press :guilabel:`Enter`." -msgstr "" -"Buka browser internet Anda dan ketikkan pada bagian atas jendela browser " -"Anda dengan tulisan :kbd:`qgis.org`. Kemudian tekan :guilabel:`Enter`." - -# fc748fcaa2224f2da7f5c085abc119cb -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:38 -msgid "The QGIS website will look something like this:" -msgstr "Situs resmi QGIS akan terlihat seperti ini:" - -# a9b658701f9f4f1f8af76ec6ed607293 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:43 -msgid "Click :guilabel:`Download Now`." -msgstr "Klik :guilabel:`Download Now!`" - -# 88c5c5c788ca44c2b70a4b3f2c195175 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:48 -msgid "" -"If you are using Windows click :guilabel:`QGIS Standalone Installer Version " -"2.8 (32 bit)`. Your exact version number may be different." -msgstr "" -"Jika Anda menggunakan Windows, klik pada :guilabel:`QGIS Standalone " -"Installer Version 2.8 (32 bit)`. Nomor versi komputer Anda mungkin berbeda." - -# bb1f5dc80ebc4d9db573632de5a85737 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:55 -msgid "" -"If you are not using Windows, select your operating system from the menu. " -"Follow the installation instructions." -msgstr "" -"Jika Anda tidak menggunakan Windows, pilih Sistem Operasi Anda dari menu " -"yang tersedia. Ikuti intruksi instalasi." - -# 3e2450dd47a54af5ac0686a075a416ba -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:61 -msgid "" -"When the file is downloaded, run it and follow the instructions to install " -"QGIS." -msgstr "" -"Ketika file selesai didownload, jalankan dan ikuti perintah untuk " -"menginstall QGIS." - -# cf7c7ab173004de0848a7941060d9f2f -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:65 -msgid "2. Installing QGIS" -msgstr "2. Installasi QGIS " - -# ed8c1592680d40af8fb98933a3808a7f -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:67 -msgid "Open the folder where you have the QGIS installation file." -msgstr "Buka folder dimana anda menyimpan file instalasi QGIS." - -# 89a93a248e0d49f7abe0b167cb40e71c -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:72 -msgid "" -"Run the installation file. If you are installing QGIS version 2.x, it should " -"look like this:" -msgstr "" -"Jalankan file instalasi tersebut. Jika Anda menginstal QGIS versi 2.x, akan " -"terlihat seperti ini:" - -# d19eef3eed54448eb0f37c72d6247371 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:78 -msgid "Click :guilabel:`Next`." -msgstr "Klik :guilabel:`Next`." - -# 4a675d05397343a39c9bcdfd77f9cec3 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:80 -msgid "" -"Click :guilabel:`I Agree` to agree with the conditions in the licence " -"agreement." -msgstr "" -"Klik :guilabel:`I Agree` untuk setuju dengan syarat dan ketentuan yang " -"berlaku." - -# 9d16aedc085546e8a8b0354095eeee80 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:86 -msgid "" -"The next window asks where you would like to install QGIS. In most cases, " -"the default should be fine. Click :guilabel:`Next`." -msgstr "" -"Pada jendela berikutnya Anda akan ditanyakan dimana Anda akan menginstall " -"QGIS. Pada kasus umum, pengaturan bawaan yang ada sudah dapat digunakan. " -"Klik :guilabel:`Next`." - -# f9afa424d66f450ea3738fbd045d04df -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:93 -msgid "" -"In the next window, Click :guilabel:`Install` without checking any of the " -"boxes." -msgstr "" -"Pada jendela berikutnya, klik :guilabel:`Install` tanpa mencentang apapun " -"yang ada di dalam kotak." - -# d95490e506e0442e9e6cddba24123439 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:99 -msgid "QGIS will begin to install. It may take a few minutes to complete." -msgstr "" -"QGIS akan memulai untuk menginstall. Ini mungkin akan membutuhkan beberapa " -"waktu untuk selesai." - -# 762a723842d74729b417ecc4bc6257e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:104 -msgid "" -"Click :guilabel:`Finish` to complete the installation. Your computer will " -"automatically reboot." -msgstr "" -"Klik :guilabel:`Finish` untuk melengkapi instalasi. Kemudian komputer Anda " -"akan me-reboot secara otomatis." - -# 2a88dbe736f3485a9a851c4ddae52c27 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:110 -msgid "Now open QGIS from the Start Menu." -msgstr "Sekarang buka QGIS dari Start Menu." - -# 9ee2c33b38fc4bcea1e1bc564e0f90fc -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:115 -msgid "QGIS will look something like this:" -msgstr "Tampilan QGIS akan terlihat seperti ini:" - -# f76e4988579d482aa3b01eb2a749585b -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:123 -msgid "3. Terminology of Geographic Information Systems (GIS)" -msgstr "3. Pengertian Sistem Informasi Geografi (SIG)" - -# 56a6a19bfe6b489dbf64a6f9975c4d65 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:125 -msgid "" -"Next we will open up a QGIS project, and take a look at the different pieces " -"of the QGIS interface. If you installed |project_name| previously, make sure " -"it is closed by clicking on the X in the upper right corner of the |" -"project_name| panel. If it isn’t open or you haven’t installed it yet, carry " -"on. We will come back to this later." -msgstr "" -"Selanjutnya kita akan membuka sebuah proyek QGIS dan melihat beberapa " -"perbedaan dari tampilan antar muka QGIS. Jika Anda sudah menginstal |" -"project_name| sebelumnya, pastikan tertutup dengan mengklik tombol :guilabel:" -"`X` pada bagian kanan atas dari panel |project_name|. Jika tidak, " -"teruskanlah. Kita akan kembali lagi pada masalah ini nantinya." - -# c47f96e729fe4c79a2c6ae78bfc95597 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:132 -msgid "" -"Click on the folder icon on the upper toolbar or go to :menuselection:" -"`Project ‣ Open...`" -msgstr "" -"Klik ikon *Folder* pada toolbar paling atas atau pergi ke :menuselection:" -"`Project ‣ Buka...`" - -# bca88f68ddd54ddc826a1d83d30e77b2 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:138 -msgid "" -"Navigate to the tutorial files and go into the :file:`qgis/` directory. Open " -"the file named :file:`sleman_2_2.qgs`." -msgstr "" -"Pergilah menuju *file* tutorial dan pergi ke direktori :file:`qgis/`. Buka " -"*file* bernama :file:`sleman_2_2.qgs`." - -# fa20ed97c7c74f3e97bb4fb220d249a3 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:141 -msgid "" -"QGIS should now look something like the following image. Let’s pause for a " -"moment and go over the various components of the QGIS interface." -msgstr "" -"QGIS akan terlihat seperti gambar dibawah ini. Mari kita berhenti sejenak " -"dan pergi ke beberapa jenis komponen yang terdapat pada tampilan antar muka " -"QGIS." - -# c9df07e1e7714da98a2c835717b6cb50 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:149 -msgid "Map canvas" -msgstr "Kanvas peta" - -# a328af8ad900416fa435b68fbc69d853 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:150 -msgid "" -"This is the window where the map is shown. Our project has two different " -"files open, one which shows districts of the Sleman regency, and another " -"that shows the railway line running through the area. Both of these files " -"are drawn together in the map canvas." -msgstr "" -"Ini akan membuka jendela dimana peta yang kita buat ditampilkan. Proyek kita " -"terdiri dari dua file yang berbeda, satu yang menggambarkan kecamatan dari " -"kabupaten Sleman, dan satu lagi menjelaskan bahwa terdapat rel kereta yang " -"melintas melalui area. Anda dapat melihat kedua file ini akan digambar pada " -"area yang sama di Map Canvas." - -# 0f4c83d1b4de4e919b451f11c74d3a4d -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:157 -msgid "Layers panel" -msgstr "Panel Daftar Layer" - -# 1c03954d3cca47d7ab5ef6a9f7d47944 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:158 -msgid "" -"On the left side of QGIS is the layers panel. This lists the layers, or " -"files, that are loaded into our QGIS project. In this project, we have two " -"layers, :file:`Kecamatan_Sleman` and :file:`railway_Sleman_OSM`." -msgstr "" -"Pada bagian kiri QGIS terdapat panel daftar layer. Daftar layer-layer ini, " -"atau file, yang dimasukkan ke dalam proyek QGIS. Pada proyek ini, kita " -"memliki dua layer, :file:`Kecamatan_Sleman` dan :file:`railway_Sleman_OSM`." - -# f91889bed666449e8025f0062c75245d -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:163 -msgid "" -"The layers panel not only shows all the files that are currently open, it " -"also determines the order that they will be drawn on the map canvas. A layer " -"that is at the bottom of the list will be drawn first, and any layers above " -"it will be drawn on top." -msgstr "" -"Panel layer tidak hanya menunjukkan semua file yang kita buka, tetapi juga " -"menjelaskan susunan urutan yang akan kita gambar pada map canvas. Sebuah " -"layer yang terdapat di posisi paling bawah akan tergambar pertama kali dan " -"beberapa layer yang terdapat diatasnya akan digambar pada posisi paling atas." - -# 0b4bd9415c25401aa04cb77f494aa1bc -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:168 -msgid "" -"Click on the layer :guilabel:`railway_Sleman_OSM` and drag it below the " -"layer named :guilabel:`Kecamatan_Sleman`." -msgstr "" -"Klik pada layer :guilabel:`railway_Sleman_OSM` dan geser ke bawah layer yang " -"bernama :guilabel:`Kecamatan_Sleman`." - -# 81d662e981f241dd8918aaecb0056b0a -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:174 -msgid "" -"Notice how the map canvas changes. The railway layer is now shown below the " -"district layer, and part of the railway is now obscured. A map should never " -"show railway hidden beneath district areas, so go ahead and move the layers " -"back." -msgstr "" -"Perhatikan bahwa tampilan peta berubah. Layer rel kereta api sekarang " -"terlihat di bawah layer kecamatan dan bagian dari rel kereta sekarang " -"diburamkan. Peta tidak akan menampilkan rel kereta yang terletak tersembunyi " -"di bawah area kecamatan. Sekarang kembalikan layer tersebut ke posisi semua." - -# 0a7f619f06b44f298dae8e7fe3a6bd19 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:180 -msgid "" -"Uncheck the box next to a layer’s name. It will be hidden from the map " -"canvas." -msgstr "" -"Hilangkan semua tanda centang pada layer yang ada. Hal tersebut akan " -"menyembunyikan layer dari map canvas." - -# 24eb6f801d784812abb326794e50f305 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:183 -msgid "" -"Expand collapsed items by clicking the arrow or plus symbol beside them. " -"This will provide you with more information on the layer’s current " -"appearance." -msgstr "" -"Anda dapat menampilkan detail dari layer dengan meng-klik tombol panah atau " -"simbol plus di samping layer Anda. Hal ini akan memberikan Anda infomasi " -"lebih lanjut mengenai tampilan layer saat ini." - -# 6b2ee8eb4b5f4dc7891cdfeb20970329 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:190 -msgid "" -"Right-click on a layer to view a menu with extra options. You’ll be using " -"some of them before long, so take a look around!" -msgstr "" -"Klik kanan pada layer untuk melihat menu dengan tampilan pilihan tambahan. " -"Nantinya Anda akan menggunakan beberapa menu tersebut, jadi sekarang saatnya " -"Anda mengeksplorasi sejenak. " - -# 0c57c9fa0f5c40b3bc55d0cb7d402afb -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:194 -msgid "Toolbars" -msgstr "Toolbar" - -# 14226ecfe3af4fe7a341590ded291db8 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:195 -msgid "" -"At the top of QGIS are a large number of tools, which are contained within " -"various “toolbars”. For example, the :guilabel:`File` toolbar allows you to " -"save, load, print and start a new project. We already used one of these " -"tools when we opened this project." -msgstr "" -"Pada bagian atas dari tampilan QGIS terdapat banyak sekali tool, dimana " -"masing-masing tool tersebut masuk ke dalam beberapa kategori “toolbar”. " -"Sebagai contoh, :guilabel:`File` mengizinkan Anda untuk menyimpan, membuka, " -"mencetak dan memulai proyek baru. Kita telah menggunakan salah satu alat " -"dari toolbar file ketika kita membuka proyek baru." - -# c30ece788bd7489797791d42637b69fe -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:204 -msgid "" -"By hovering your mouse over an icon, the name of the tool will appear to " -"help you identify each tool. The number of tools (buttons) can seem a bit " -"overwhelming at first, but you will gradually get to know them. The tools " -"are grouped into related functions on toolbars. If you look closely you can " -"see a vertical array of ten dots to the left of each toolbar. By grabbing " -"these with your mouse, you can move the toolbar to a more convenient " -"location, or separate it so that it sits on its own." -msgstr "" -"Dengan menggerakkan mouse Anda ke atas ikon, nama tool akan muncul untuk " -"membantu Anda mengidentifikasi setiap tool. Jumlah tool yang ada (tombol) " -"akan tampak sangat banyak pada awalnya, tapi Anda perlahan akan mengenalnya. " -"Tool yang ada dikelompokkan sesuai dengan fungsi pada toolbars. Jika Anda " -"melihat lebih dekat, Anda akan melihat titik-titik vertikal sejumlah sepuluh " -"titik pada bagian kiri dari setiap toolbar. Jika Anda meng-klik dan " -"menahannya dengan menggunakan mouse Anda, Anda dapat menggerakkan toolbar ke " -"tempat yang lebih sesuai atau memisahkannnya sesuai dengan keinginan Anda." - -# fd8c644beea54830a298c181470d6f20 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:217 -msgid "" -"If you feel overwhelmed by the number of toolbars, you can customise the " -"interface to see only the tools you use most often, adding or removing " -"toolbars as necessary." -msgstr "" -"Jika Anda merasa terganggu dengan jumlah toolbar yang ada, Anda dapat " -"mengubah tampilannya dengan menampilkan tool yang Anda sering gunakan saja, " -"menambahkan atau menghapus toolbar sesuai keperluan." - -# 4dec85f6ae7c4e8bb57c45a2865e1e79 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:221 -msgid "" -"To add or remove a toolbar, right-click on any of the toolbars, or go to :" -"menuselection:`View ‣ Toolbars`." -msgstr "" -"Untuk menambahkan atau menghapus toolbar, klik kanan pada toolbar atau " -"silahkan ke :menuselection:`Tampilan ‣ Panel alat-alat`." - -# a9ef003243194568a26ca6473a16c740 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:227 -msgid "" -"Let’s remove some of the toolbars that we will not be using in this " -"training, to make the interface a bit cleaner. Right-click on the toolbar, " -"and uncheck the boxes next to the following toolbars:" -msgstr "" -"Mari sekarang kita hilangkan beberapa toolbar yang kita rasa tidak digunakan " -"pada pelatihan ini, untuk membuat tampilan lebih bersih. Klik kanan pada " -"toolbar, dan hilangkan tanda centang kotak yang berada di toolbar berikut " -"ini:" - -# 76c25d46182d45988c5f1f4975cc6ccd -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:232 -msgid "Advanced Digitising" -msgstr "Dijitasi tahap lanjut" - -# a6a950c6249e460f858f14c21609fa7b -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:233 -msgid "Database" -msgstr "Database" - -# 69dbac66b6da48aca073a43e3b11e60a -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:234 -msgid "GRASS" -msgstr "GRASS" - -# 9b8bf899d32a469781a6c1c35ad9f9cf -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:235 -msgid "Label" -msgstr "Label" - -# 2ab5c73bc50144fc80317dc6e31117fd -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:236 -msgid "Raster" -msgstr "Raster" - -# c98f6e42dda24e52805e4b4c5ba59dd4 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:237 -msgid "Vector" -msgstr "Vektor" - -# a4d4a9717fdf4856ae29d20c05dec178 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:239 -msgid "" -"After removing these toolbars and moving them around, your tools should look " -"like this:" -msgstr "" -"Setelah menghilangkan beberapa *toolbar*, tampilan *tools* Anda mungkin akan " -"terlihat seperti ini:" - -# 20c9881abeee41028de414630c3a7c22 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:245 -msgid "" -"Even if they are not visible in a toolbar, all of your tools will remain " -"accessible via the menus. For example, if you remove the :guilabel:`File` " -"toolbar (which contains the :guilabel:`Save` button), you can still save " -"your map by going to :menuselection:`Project ‣ Save`." -msgstr "" -"Meskipun toolbar tersebut tidak terlihat, tool yang akan Anda gunakan masih " -"bisa diakses melalui Menu. Sebagai contoh, jika Anda menghilangkan toolbar :" -"guilabel:`File` (yang terdapat tombol :guilabel:`Simpan`), Anda masih dapat " -"menyimpan peta Anda dengan pergi ke :menuselection:`Project ‣ Simpan`." - -# 3420067df7ab40ad994fb83e7376e533 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:252 -msgid "Status Bar" -msgstr "Status bar" - -# 19af154b91a548ec959c72bf311baa3d -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:253 -msgid "" -"The status bar shows information about the current map. It allows you to " -"adjust the map scale and see the mouse cursor’s coordinates on the map." -msgstr "" -"Status bar akan menampilkan informasi mengenai peta Anda. Ini juga " -"memperbolehkan Anda untuk mengatur skala peta dan melihat koordinat yang " -"mouse Anda arahkan pada peta." - -# c4cca2545fc3496aae50c57df153950f -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:260 -msgid "" -"The coordinates of this map are the same type of coordinates that are " -"recorded by GPS devices. The status bar shows the longitude and latitude of " -"your mouse cursor." -msgstr "" -"Koordinat peta ini sama dengan tipe koordinat yang telah Anda pelajari " -"ketika Anda belajar mengenai GPS. Status bar ini akan menunjukkan posisi " -"lintang dan bujur dari kursor mouse Anda." - -# a7d5ee309ae040b4b127235afedae28a -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:264 -msgid "" -"This may not all be clear right now, but as you progress in your knowledge " -"of GIS, this will make more and more sense." -msgstr "" -"Mungkin hal ini masih belum terlalu jelas untuk Anda, tapi seiring dengan " -"meningkatnya kemampuan Anda di SIG, hal ini nantinya akan terlihat masuk " -"akal." - -# fa19fa0dac98440fa65edebfb79a1346 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:270 -msgid "4. Adding a vector layer" -msgstr "4. Menambahkan layer vektor" - -# 7272b8f91da64376911aae8e75e6bdde -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:271 -msgid "Now we will add an additional layer containing roads to our project." -msgstr "" -"Sekarang kita akan menambahkan layer tambahan yang terdiri dari jaringan " -"jalan ke dalam proyek kita." - -# b9d8b7b711824b9eb8902550de9f7cce -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:273 -msgid "Click on the :guilabel:`Add Vector Layer` button on the toolbar." -msgstr "Klik pada tombol :guilabel:`Add Vector Layer` pada toolbar." - -# 02f418d8526247a7ba3248bf1cb6ba8d -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:278 -msgid "A dialog box will open. Click the :guilabel:`Browse` button." -msgstr "Sebuah kotak dialog akan muncul. Klik tombol :guilabel:`Navigasi`." - -# fdfecea7f3f24995b4cf649aeecf0020 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:283 -msgid "" -"Navigate to the file :file:`qgis/Sleman/Jalan_Sleman_OSM.shp` (you may need " -"to unzip the file :file:`Sleman.zip` first). Select the file and click :" -"guilabel:`Open`." -msgstr "" -"Arahkan menuju file :file:`qgis/Sleman/Jalan_Sleman_OSM.shp` (Pertama kali " -"Anda perlu unzip file :file:`Sleman.zip`). Pilih file dan klik :guilabel:" -"`Buka`." - -# 3be32d45d03a498785fafabdd7f1c28b -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:288 -msgid "" -"One of the most common file formats are shapefiles, which end with the " -"extension :file:`.shp`. Shapefiles are often used to save geodata, and are " -"commonly used with GIS applications like QGIS." -msgstr "" -"Salah satu format file umum adalah shapefiles, dengan ekstensi akhir dari " -"nama file tersebut bertuliskan :file:`.shp`. Shapefiles sering digunakan " -"untuk menyimpan geodata, dan umumnya digunakan pada aplikasi SIG seperti " -"QGIS." - -# ae69218463e84c3b9b2a43c27911835b -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:293 -msgid "" -"You should now see your new layer appear both in the map canvas and in the " -"layers panel. It should be drawn above both the district and railway layers." -msgstr "" -"Anda sekarang dapat melihat layer baru pada map canvas dan di daftar layer. " -"Layer baru tersebut muncul di atas layer kecamatan dan layer rel kereta api." - -# d17070fb73994647b02f9ecd9d09d246 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:301 -msgid "5. Basic QGIS tools" -msgstr "5. Tools Dasar QGIS" - -# 4edb89c58e0741fdabec72d2edb475cf -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:302 -msgid "" -"We’ve already taken a look at the QGIS toolbar and seen the tools for " -"opening a project and adding a new layer. Here’s a list of some other " -"commonly used tools. Feel free to play around with them if you like. The " -"important thing for now is to start getting familiar with QGIS." -msgstr "" -"Kita telah melihat pada toolbar QGIS dan melihat tool untuk membuka proyek " -"dan menambahkan layer baru. Di bawah ini akan ditampilkan beberapa daftar " -"tool yang sering digunakan. Silahkan jika Anda ingin mengeksplorasi tools " -"tersebut. Hal ini bertujuan untuk membuat kita merasa familiar dan terbiasa " -"dengan QGIS." - -# 230c9050bdc74ef0b1df54b8fffee54d -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:309 -msgid "Toggle Editing" -msgstr "Toggle Editing" - -# a78abb11b48345cd9c184a4424c067b3 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:309 -msgid "Edit features in a layer" -msgstr "Mengedit suatu fitur pada layer" - -# 4f35ef8b707d48cc99d841213b928f3b -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:311 -msgid "Pan Map" -msgstr "Geser Peta" - -# 691d514271c4451985ac026b02323c0f -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:311 -msgid "Drag the map into new location" -msgstr "Menggeser peta ke lokasi yang kita inginkan" - -# 61feac568abe4d7290ce72104007c641 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:313 -msgid "Zoom In" -msgstr "Perbesar" - -# b409910e78b148748be27e7f1e21b1c1 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:313 -msgid "Zoom in on the map" -msgstr "Perbesar peta" - -# 6622e68e70034362abf5686629f89e8c -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:315 -msgid "Zoom Out" -msgstr "Perkecil" - -# 9ea0288b1a354b9eba3fe8ade2077dd6 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:315 -msgid "Zoom out on the map" -msgstr "Perkecil peta" - -# 6f75b55b51244a3b9fdc8bab851b0d6a -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:317 -msgid "Zoom Full" -msgstr "Perbesar keseluruhan" - -# 7ded18e6a3b6425db7cc7b7a90078730 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:317 -msgid "Zoom so that all layers fit in the map window" -msgstr "Perbesar agar semua layer tampak pada jendela peta" - -# 4347a01e3b1342739e608be3bf0d486f -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:320 -msgid "Open Attribute Table" -msgstr "Buka Tabel Attribut" - -# 75fd24ab17bb41b781d41a8b889a2a02 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:320 -msgid "Open a layer's attribute table" -msgstr "Membuka tabel atribut dari sebuah layer" - -# 0e78d38c60d44b80ab7dc540fd985540 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:322 -msgid "Select Single Feature" -msgstr "Memilih satu fitur" - -# 298ce437dd4b4e078ba5da64d73ec4a1 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:322 -msgid "Select a feature in selected layer" -msgstr "Memilih fitur dari layer yang dipilih" - -# 6695f95498b24b369e0e6200c997979e -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:327 -msgid "6. Navigating the map" -msgstr "6. Navigasi Peta" - -# 9983e1f5ecac45dfa1a1a9d9be37ad48 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:328 -msgid "" -"Before we examine the attributes of individual features, let’s take a quick " -"look at how to navigate the map. The main controls for moving the map around " -"and zooming in and out are by default on the panels at the top of QGIS." -msgstr "" -"Sebelum kita melihat atribut dari fitur secara individual, mari kita lihat " -"bagaimana menggerakkan peta. Kontrol utama untuk menggerakkan peta dan " -"memperbesar atau memperkecil secara pengaturan bawaan pada panel di bagian " -"atas QGIS." - -# b95fa42059f24bddb1228c1083378e0d -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:336 -msgid "" -"When you click on one of these buttons, it changes what you can do with your " -"mouse in the main map window." -msgstr "" -"Ketika Anda meng-klik salah satu tombol tersebut, hal ini akan mengubah " -"kursor mouse Anda sesuai dengan apa yang Anda lakukan pada jendela peta." - -# eec3ebefa39c4dbf990f882899fe7624 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:339 -msgid "" -"Select the first button that looks like a hand. Now hold the left mouse " -"button down and drag the mouse in the map window. This allows you to pan the " -"map, or move it around." -msgstr "" -"Pilih tombol pertama yang terlihat seperti gambar tangan. Sekarang klik kiri " -"mouse Anda dan tahan kemudian geser pada jendela peta. Ini memungkinkan Anda " -"dapat menggerakkan peta ke arah yang Anda inginkan." - -# d05c5ca6e3f045b3860c39118106c6cd -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:343 -msgid "" -"The button that has a plus sign below a magnifying glass allows you to zoom " -"in on the map. Select this button. Using your mouse, draw a box around an " -"area where you want to zoom in, and release your mouse." -msgstr "" -"Tombol yang berbentuk kaca pembesar dengan tanda tambah membuat Anda dapat " -"memperbesar peta. Pilih tombol ini dan buatlah kotak di sekitar area yang " -"ingin Anda perbesar dan lepaslah mouse Anda." - -# 1aff1e88c0154670a90eab7d18348516 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:349 -msgid "" -"The button that has a minus sign below a magnifying glass allows you to zoom " -"out on the map. Select this button and click on the map." -msgstr "" -"Tombol yang berbentuk kaca pembesar dengan tanda minus membuat Anda dapat " -"memperkecil peta. Pilih tombol ini dan klik pada peta." - -# 8b173d3cff8f45acad87aba80deb6222 -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:353 -msgid "" -"The button that looks like a magnifying glass with red arrows pointing away " -"from it lets you zoom to the full extent of your map. Click this button to " -"see all of the data that is loaded in the project fit into the map canvas." -msgstr "" -"Tombol yang berbentuk kaca pembesar dengan tanda panah berwarna merah " -"mengarahkan Anda menuju tampilan peta secara keseluruhan. Ketika Anda meng-" -"klik tombol ini, Anda dapat melihat semua data yang Anda masukkan pada map " -"canvas." - -# b1eda9b02fd549738a63526cb0d6b5af -#: ../../source/training/old-training/beginner/qgis-inasafe/203-the-basics-of-qgis.rst:359 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.po deleted file mode 100644 index 4a859108..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.po +++ /dev/null @@ -1,355 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2014,2018 -# elida nurrohmah , 2014 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2014 -# Werner Macho , 2015 -# Wulansari Khairunisa , 2013,2015 -# Yantisa Akhadi , 2013-2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 06:16+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 598218c2f02e49bdb243b55c17b49a8a -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:6 -msgid "Module 4: QGIS Plugins" -msgstr "Modul 4: Plugin QGIS" - -# 44cdc173726c47ed9a72c429e8ad1bc6 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 86305682140746d8a5af01287fcc44d6 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:10 -msgid "Understand the concept of plugins" -msgstr "Memahami konsep plugin" - -# c82dbec74bfb420d82d4535e59f011f2 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:11 -msgid "Install QGIS plugins" -msgstr "Instalasi Plugin QGIS" - -# 98c824fe001f47e4a37a6f4b754a0893 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:12 -msgid "Add satellite imagery via OpenLayers" -msgstr "Penambahan imagery dari citra satelit menggunakan OpenLayers" - -# 672cb69772244bea9fd510d437097403 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:14 -msgid "" -"QGIS has core functionality, which we will continue to explore in this " -"guide, but it also allows the use of plugins, which add functionality to the " -"software. Again, these plugins are free. To use them, we simply need to " -"connect to the internet and install. In this module we will learn how to " -"install QGIS plugins, using one plugin to add a satellite imagery layer to " -"our QGIS project." -msgstr "" -"QGIS mempunyai menu utama, dimana kita akan melanjutkan eksplorasi lebih " -"jauh pada panduan ini, tapi pada QGIS juga memungkinkan untuk menggunakan " -"plugin, sehingga menambah fungsi dari perangkat lunak ini. Dan lagi, plugin " -"ini tidak berbayar. Untuk menggunakannya, Anda hanya butuh terhubung dengan " -"internet dan menginstallnya. Pada modul ini kita akan belajar bagaimana " -"menginstall plugin QGIS, menggunakan salah satu plugin QGIS untuk " -"menambahkan citra satelit di proyek QGIS kita." - -# 1d123d549b104996a430487ebfbdce3c -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:22 -msgid "" -"If you have closed QGIS since completing the previous module, start QGIS and " -"open the project :file:`named sleman_2_3.qgs` in the :file:`qgis/` folder." -msgstr "" -"Jika Anda telah menutup QGIS setelah menyelesaikan modul sebelumnya, buka " -"kembali QGIS dan buka project :file:`named sleman_2_3.qgs` pada folder :file:" -"`qgis/`." - -# be7ca4579d96460d897b23ecec191036 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:25 -msgid "" -"Note that you must be connected to the internet to follow the exercises in " -"this module." -msgstr "" -"Perhatikan bahwa Anda harus terhubung dengan internet untuk mengikuti " -"latihan dalam modul ini." - -# 31efac76dc02416b96fe08d0b65d540a -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:29 -msgid "1. Managing plugins" -msgstr "1. Mengatur Plugin" - -# cf97d74458e6470da788c6657798aaad -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:30 -msgid "" -"To install new plugins, they first need to be downloaded and activated. Some " -"plugins are already downloaded and available." -msgstr "" -"Untuk menginstal plugin-plugin baru, mereka harus didownload terlebih " -"dahulu, dan kemudian diaktifkan. Beberapa plugin telah terdownload dan " -"tersedia." - -# 14838ccd9dcd428491dc1edfb2640d45 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:33 -msgid "" -"Go to :menuselection:`Plugins ‣ Manage and Install Plugins...` to view them." -msgstr "" -"Pergi ke :menuselection:`Plugins ‣ Kelola dan install plugin...` untuk " -"melihatnya." - -# cbf764c40c9e4001b0ef0a076e417e14 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:38 -msgid "" -"This displays a list of plugins that have already been downloaded and can be " -"activated. To enable a plugin, check the box next to it in this menu. For " -"now, let’s leave all the plugins as they are. We’re going to download and " -"activate a new plugin in the next section." -msgstr "" -"Jendela ini menampilkan daftar plugin yang telah terdownload dan dapat " -"diaktifkan. Untuk mengaktifkan sebuah plugin, centanglah kotak disampingnya " -"pada menu ini. Untuk sekarang, mari kita biarkan dahulu plugin-plugin ini " -"apa adanya. Kita akan mencoba mendownload dan mengaktifkan plugin baru di " -"sesi berikutnya." - -# 38f0e55904524aadbe0481fd3df10b60 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:49 -msgid "2. Installing plugins" -msgstr "2. Menginstall Plugin" - -# d05b260f981a4a32af4c8daa5e22128f -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:50 -msgid "" -"There are many more plugins, but they must first be downloaded. To download " -"a plugin, click the :guilabel:`Not installed` tab. This will load available " -"plugin repositories, and you will see a list of all available plugins for " -"download." -msgstr "" -"Terdapat lebih banyak lagi plugin, tetapi mereka harus didownload terlebih " -"dahulu. Untuk mendownload sebuah plugin, pergilah ke tab guilabel:`Tidak " -"terpasang`. Langkah ini akan menampilkan plugin yang tersedia di dalam " -"repositori, dan Anda akan melihat daftar plugin yang dapat didownload." - -# 50e1a007a7144b99a1a683e4b35f5b2b -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:58 -msgid "" -"Note that plugins, which have already been downloaded can be activated or " -"deactivated from the :guilabel:`Installed` tab. If it has not yet been " -"downloaded, downloading a plugin from the :guilabel:`Not installed` tab will " -"automatically activate it." -msgstr "" -"perlu diingat bahwa plugin yang telah didownload dapat diaktifkan atau dinon-" -"aktifkan dari tab :guilabel:`Terinstall`. Jika belum terdownload, ketika " -"mendownload sebuah plugin dari tab :guilabel:`Tidak terpasang`, plugin " -"tersebut akan secara otomatis aktif." - -# 02d12f0c67214830a720cf0694f79d5f -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:64 -msgid "3. The OpenLayers plugin" -msgstr "3. Plugin OpenLayers" - -# 4c4dd5a410284cf1bf73f5001e42ab90 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:65 -msgid "" -"The OpenLayers plugin allows you to view various web maps as a layer in " -"QGIS. This means that you can access the OSM slippy map, Google Maps and " -"Bing Maps from within QGIS. Follow along and we’ll see how this works." -msgstr "" -"Plugin OpenLayer akan memperkenankan Anda untuk melihat berbagai variasi " -"peta berbasis web sebagai sebuah layer di dalam QGIS. Ini artinya Anda dapat " -"mengakses peta OSM, Google Maps, dan Bing Maps, dari QGIS. Ikutilah langkah " -"ini dan kita akan memahami bagaimana cara kerjanya." - -# f99d2ad9c74646cea4831478d07811c2 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:69 -msgid "" -"Go to :menuselection:`Plugins ‣ Manage and Install Plugins` and click on " -"the :guilabel:`Not installed` tab. Type :kbd:`openlayers` into the Search " -"box." -msgstr "" -"Pergilah ke :menuselection:`Plugins ‣ Kelola dan Install Plugins` dan klik " -"pada tab :guilabel:`Tidak terpasang`. Ketik :kbd:`openlayers` di dalam kotak " -"pencarian." - -# 97d9c7ad15f64363978b9e1f059ace59 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:75 -msgid "" -"Select :guilabel:`OpenLayers Plugin` from the list and click :guilabel:" -"`Install plugin`." -msgstr "" -"Pilih :guilabel:`OpenLayers Plugin` dari list yang tersedia dan klik :" -"guilabel:`Install plugin`." - -# 35a19739e59c439cba9eca12519b79d6 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:81 -msgid "It may take a few minutes to download." -msgstr "Ini mungkin akan memakan beberapa menit untuk mendownload." - -# 1248eeebdaa0470a8f3db731e947283c -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:86 -msgid "When the download finishes click :guilabel:`OK`." -msgstr "Ketika proses download selesai, klik :guilabel:`OK`." - -# 479e3110b5884efc8651df446ab36e85 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:91 -msgid "" -"Now the OpenLayers plugin is installed and activated. Click the :guilabel:" -"`Installed` tab to see it in your list of active plugins. Click :guilabel:" -"`Close` when you are finished." -msgstr "" -"Sekarang plugin OpenLayers telah terinstal dan diaktifkan. Klik pada tab :" -"guilabel:`Terinstall` untuk melihatnya di daftar plugin aktif. Klik :" -"guilabel:`Close` jika anda sudah selesai." - -# 9b4b212c69034d9da99b8d41fc3e469b -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:98 -msgid "" -"The new plugin provides a menu which offers extra functionality. Go to :" -"menuselection:`Web ‣ OpenLayers plugin` to see various map layers that can " -"be loaded." -msgstr "" -"Plugin OpenLayers ini menyediakan menu yang memberikan fungsi ekstra. Pergi " -"ke :menuselection:`Web ‣ OpenLayers plugin` untuk melihat berbagai layer " -"peta yang dapat ditampilkan." - -# 98d511939cac4966a6b60b0ae073abbe -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:105 -msgid "" -"Go to :menuselection:`Web ‣ OpenLayers plugin ‣ Bing Maps ‣ Bing Aerial`. A " -"new layer called “Bing Aerial” will be added to the Layers panel, and the " -"imagery will load in the map canvas. If the layer is above your other " -"layers, drag it to the bottom of the layers list." -msgstr "" -"Pergi ke :menuselection:`Web ‣ OpenLayers plugin ‣ Bing Maps ‣ Bing Aerial`. " -"Sebuah layer baru bernama “Bing Aerial” akan ditambahkan di panel layer, dan " -"citranya akan muncul di canvas peta Anda. Jika layer tersebut berada di atas " -"layer-layer Anda yang lain, drag layer Bing tersebut ke urutan paling bawah " -"dari daftar layer." - -# 9c662893ae7f4a3ea902735b5a80ab41 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:113 -msgid "Your project should now look like this:" -msgstr "" -"Proyek yang Anda kerjakan seharusnya sekarang terlihat seperti berikut ini:" - -# 0e380b1fbfb446ecb70531abdf183468 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:118 -msgid "" -"If you pay attention, there is something wrong with the map. Can you guess " -"what it is? All three layers above Bing Aerial layers should be shown on the " -"map." -msgstr "" -"Jika Anda perhatikan, ada sesuatu yang salah dengan petanya. Dapatkah Anda " -"menebak apa itu? Semua tiga layer di atas layer Bing Aerial harus " -"ditampilkan di dalam peta." - -# ea62c94244de4ec890b991fc843fee5b -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:122 -msgid "" -"To fix this, go to :menuselection:`View ‣ Panels` and check the box next to :" -"menuselection:`Layer order`." -msgstr "" -"Untuk memperbaikinya, pergilah ke :menuselection:`Tampilan ‣ Panel-panel`, " -"dan aktifkan panel :menuselection:`Urutan Layer`." - -# 4eb7081750e549e9be55cfd5641e8183 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:128 -msgid "" -"The Layer order panel will appear next to the Layers panel (1). Click it and " -"uncheck :guilabel:`Control Rendering Order` (2)." -msgstr "" -"Kemudian, panel urutan layer akan ditampilkan disebelah panel Layer (1). " -"Klik panel tersebut dan non aktifkan tanda centang pada :guilabel:`Control " -"Rendering Order` untuk memperbaiki masalah (2)." - -# 5bdc634e235a461fb860861453b379c4 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:134 -msgid "" -"Return to the Layers panel. The map layers should now appear in the correct " -"order. All layers above Bing Aerial will show up on the map canvas as in the " -"image below." -msgstr "" -"Kembali ke panel Layer. Sekarang Anda dapat melihat peta yang ditampilkan " -"berada pada urutan yang benar. Semua layer di atas Bing Aerial akan " -"ditampilkan di dalam map canvas seperti gambar di bawah." - -# 861adf5b70364f81b0782049782a06f9 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:141 -msgid "" -"Adding a layer such as Bing Aerial will change the Coordinate Reference " -"System, or CRS, of your project. Essentially this means that your project is " -"not using longitude and latitude coordinates anymore. This shouldn’t affect " -"you right now, but it will make sense later when we cover CRSes." -msgstr "" -"Menambahkan sebuah layer seperi imagery dari Bing Aerial akan mengubah " -"Sistem Referensi Koordinat, atau CRS, proyek Anda. Artinya, proyek Anda " -"tidak lagi menggunakan koordinat garis lintang dan bujur. Ini mungkin tidak " -"banyak mempengaruhi projek Anda sekarang, tapi ini akan terasa nanti ketika " -"kita mempelajari mengenai CRS." - -# f24e0f942cc34e7eae3f6fb8a9036b4c -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:147 -msgid "" -"If the map data does not appear to match up correctly with the aerial " -"imagery, it may be due to different CRSes. You can fix this problem by going " -"to :menuselection:`Project ‣ Project Properties` and checking the box next " -"to :guilabel:`Enable ‘on the fly’ CRS transformation`." -msgstr "" -"Jika data pada peta tidak sesuai dengan citra satelitnya, hal ini mungkin " -"karena perbedaan CRS-nya. Anda dapat memperbaiki masalah ini dengan menuju " -"ke :menuselection:`Proyek ‣ Properti Proyek` dan periksalah kotak di " -"sebelah :guilabel:`Aktifkan transformasi CRS ‘on the fly’`." - -# de631f68a62b4c5db7b0f2940e960242 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:158 -msgid "" -"Great! Now we can see our map data on top of an aerial photograph of the " -"Earth. Note that this is the same imagery provided by Microsoft Bing that " -"you would load for editing in JOSM. Try unchecking the box next to the " -"layer :guilabel:`Kecamatan_Sleman` so that you can see the area better. Zoom " -"in close to see detailed imagery with our street and railway layers " -"displayed on top." -msgstr "" -"Sekarang kita bisa melihat data pada peta kita berada di atas citra satelit. " -"Perhatikan bahwa ini merupakan imagery yang sama yang disediakan oleh Bing " -"Microsoft yang Anda tampilkan untuk mengedit data menggunakan JOSM. Cobalah " -"untuk tidak mencentang kotak di sebelah layer :guilabel:`Kecamatan_Sleman` " -"sehingga Anda akan dapat melihat tampilan area lebih baik lagi. Bila Anda " -"memperbesar lagi lebih dekat, Anda dapat melihat imagery yang lebih detil " -"dengan data jaringan jalan dan jalur kereta yang kita masukkan terpampang di " -"atas." - -# 163344e2b260491f9e28dd9dc49fd5cf -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:168 -msgid "" -"Remove the Bing Aerial layer by right-clicking it in the Layers panel and " -"clicking :guilabel:`Remove`." -msgstr "" -"Hapuslah layer Bing Aerial dengan cara klik kanan pada layer tersebut dan " -"pilih :guilabel:`Buang`." - -# d46918117d574a1b93426c8761ab3953 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:171 -msgid "" -"Try out other layers that are available from the :menuselection:`Web ‣ " -"OpenLayers plugin` menu." -msgstr "" -"Cobalah terapkan untuk layer-layer lainnya yang tersedia di menu :" -"menuselection:`Web ‣ OpenLayers plugin`." - -# f614a8f583da438cb6a55626646a5e63 -#: ../../source/training/old-training/beginner/qgis-inasafe/204-qgis-plugin.rst:175 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Lanjutkan ke modul berikutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.po deleted file mode 100644 index 1c55a66d..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.po +++ /dev/null @@ -1,598 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2014,2018 -# elida nurrohmah , 2014 -# Emir Hartato , 2014 -# mahardika fadmastuti , 2013-2014 -# Ranie Dwi Anugrah , 2013 -# Vasanthi Hargyono , 2014 -# Werner Macho , 2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 07:51+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# e3f54aaca4d84bdd955a43d877c6d834 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:6 -msgid "Module 5: Map Projection Basics" -msgstr "Modul 5 : Dasar Proyeksi Peta" - -# 2409d58b7c8d4d76b2568310f8d42427 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 6520fa72a5b840ca8bc41d929df0e9e8 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:10 -msgid "Understand Coordinate Reference Systems (CRS)" -msgstr "" -"Pemahaman Sistem Referensi Koordinat (Coordinate Reference System - CRS)" - -# 6429d89dccef4eddb79df15823a4cf51 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:11 -msgid "Identify the CRS of a vector dataset" -msgstr "Identifikasi CRS pada dataset vektor" - -# 755ed0eee0a74bd59a1f0f020ead7d11 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:12 -msgid "Do 'on the fly' reprojection" -msgstr "Melakukan proyeksi ulang 'on the fly'" - -# 97228f4aa33644eea3240f8b427b3cc6 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:13 -msgid "Save dataset with a different CRS" -msgstr "Simpan dataset dalam CRS yang berbeda" - -# 1ac06164e2a04ad18bacc7051254d169 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:14 -msgid "Create a custom projection" -msgstr "Membuat proyeksi sendiri" - -# 0a4b63e5a4414a12b1b776f43b7556df -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:16 -msgid "" -"We’ve talked a little bit about Coordinate Reference Systems (CRSs) " -"previously, but haven’t covered it in depth. In this module, we’ll look more " -"at what a CRS means practically, and how it affects our work in QGIS." -msgstr "" -"Kita telah berbicara sedikit tentang Sistem Referensi Koordinat (CRS) " -"sebelumnya, tetapi belum mendalaminya lebih jauh. Pada modul ini, kita akan " -"melihat lebih jauh pada apa yang dimaksud dengan CRS secara praktis, dan " -"bagaimana pengaruhnya terhadap pekerjaan kita di QGIS." - -# 4f0ac1de34c54cf68259d7d6a9709da7 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:22 -msgid "1. Coordinate Reference Systems (CRS)" -msgstr "1. Sistem Referensi Koordinat (Coordinate Reference System - CRS)" - -# 2cd01e8369ef4f3eb7ea2d857a98a02c -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:24 -msgid "" -"The CRS that all the data, as well as the map itself are in right now is " -"called WGS84. This is a very common Geographic Coordinate System (GCS) for " -"representing data. But there’s a problem, as we will see." -msgstr "" -"CRS yang semua data maupun peta itu sendiri sekarang disebut WGS84. Sistem " -"Koordinat Geografis (GCS) ini sangat umum untuk mempresentasikan data. " -"Tetapi ada masalah, seperti yang akan kita lihat." - -# c495b75350234825adc932da17f923ac -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:30 -msgid "" -"Open the project :file:`world.qgs`, located in the :file:`qgis/` folder. " -"Zoom in to Indonesia by using the :guilabel:`Zoom In` tool." -msgstr "" -"Buka proyek :file:`world.qgs`, yang berlokasi pada folder :file:`qgis/`. " -"Perbesar ke Indonesia dengan menggunakan alat :guilabel:`Perbesar`." - -# 67c17de30ceb4c899119e24b5f67a2cc -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:36 -msgid "" -"Set the scale in the :guilabel:`Scale` field, which is in the status bar " -"along the bottom of the screen. While over Indonesia, set this value to " -"1:20000000 (one to twenty million)." -msgstr "" -"Atur skala di field :guilabel:`Skala`, yang berada di Status Bar di bagian " -"bawah layar. Untuk skala yang akan digunakan di Indonesia, tetapkan nilai 1: " -"20000000 (satu banding dua puluh juta)." - -# 74b9ea70ebb04beab0e7a2a62aef04f6 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:43 -msgid "Now pan around the map while keeping an eye on the Scale field." -msgstr "Sekarang arahkan ke sekitar peta sembari tetap memperhatikan skalanya." - -# a2ef23f8f2034097871d268a6cf4bd3c -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:45 -msgid "" -"Do you notice the scale changing? This is because you’re moving away from " -"the one point that you zoomed into at 1:20000000, which was at the centre of " -"your screen. All around that point, the scale is different." -msgstr "" -"Sadarkah bahwa skalanya berubah? Itu karena Anda beralih terlalu jauh dari " -"poin yang telah Anda perbesar hingga 1:20000000 sebelumnya, yang mana telah " -"menjadi pusat dari tampilan layar komputer Anda. Pada intinya, skalanya " -"telah berubah." - -# f6d2bd5b3d974a7f88bea713d693b256 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:50 -msgid "" -"To understand why, think about a globe of the Earth. It has lines running " -"vertically along it from North to South. These longitude lines are far apart " -"at the equator, but they meet at the poles. In a GCS, you’re working on this " -"sphere, but your screen is flat. When you try to represent the sphere of the " -"earth on a flat surface, it becomes distorted, as if you took an orange peel " -"and tried to flatten it. What this means on a map is that the longitude " -"lines stay equally far apart from each other, even at the poles (where they " -"are supposed to meet). This means that, as you travel away from the equator " -"on your map, the scale of the objects that you see gets larger and larger. " -"What this means for us, practically, is that there is no constant scale on " -"our map!" -msgstr "" -"Untuk memahami alasannya, pikirkanlah sebuah globe Bumi. Disana terdapat " -"garis-garis yang melintang dari utara hingga selatan. Garis-garis melintang " -"tersebut saling berjauhan dari garis khatulistiwa, tetapi mereka akan " -"bertemu di kedua kutub. Dalam sebuah GCS, Anda bekerja dalam bentuk bidang " -"ini, tetapi layar Anda datar. Ketika Anda mencoba untuk merepresentasikan " -"bentuk bidang dari bumi dalam suatu bidang datar, itu akan terdistorsi, sama " -"seperti bila Anda mengupas kulit jeruk dan meratakannya. Apa artinya ini, " -"alam sebuah peta ialah bahwa garis lintang tetap saling berjauhan satu sama " -"lain, bahkan di kutub sekali pun (dimana mereka seharusnya saling " -"berimpitan). Hal ini diartikan bahwa saat Anda melakukan perjalanan jauh " -"dari garis khatulistiwa di dalam peta Anda, skala objek yang Anda lihat akan " -"lebih besar dan lebih besar. Apa artinya ini untuk kita, secara praktis, " -"bahwa tidak ada skala konstan di dalam peta kita!" - -# 139d9861c60849b8a7081f9062f619a5 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:64 -msgid "" -"To solve this, we’ll use a Projected Coordinate System (PCS) instead. A PCS " -"projects or converts the data in a way that makes allowance for the scale " -"change and corrects it. Therefore, to keep the scale constant, we should re-" -"project our data to use a PCS." -msgstr "" -"Untuk menyelesaikan ini, kita akan menggunakan Sistem Koordinat yang telah " -"Terproyeksi (PCS). Sebuah proyek PCS atau konvert data menggunakan cara yang " -"dapat membuat perubahan skala dan harus dikoreksi. Oleh karena itu, untuk " -"mempertahankan skalanya, kita harus proyeksi ulang data kita menggunakan PCS." - -# 1e73572d542c474682c36ac273df28c3 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:70 -msgid "" -"Projection is the act of taking coordinates on a sphere (like the earth), " -"and manipulating them so that they can be displayed on a flat surface." -msgstr "" -"Proyeksi adalah tindakan untuk mengambil koordinat dari sebuah bidang bulat " -"(misalnya bumi), dan memanipulasinya juga sehingga dapat ditampilkan dalam " -"sebuah bidang datar." - -# b77ded0edd4442a1a6e36d05cafea8f9 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:75 -msgid "2. “On the fly” reprojection" -msgstr "2. Proyeksi ulang \"On the Fly\"" - -# eac3294d4f864246bc039392f97dec1e -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:77 -msgid "" -"Every QGIS project has a CRS, and each of the data layers has a CRS too. " -"Often these are the same. Your project may be in WGS84, and the layers too. " -"But sometimes you will add a layer that is not in the same CRS as the " -"project, and you need QGIS to convert it so that it can be displayed along " -"with the rest of the data. The term that we use for this is reprojecting 'on " -"the fly'." -msgstr "" -"Setiap proyek QGIS memiliki sebuah CRS dan setiap layer data memiliki CRS " -"juga. Sering kali memiliki CRS yang sama. Proyek Anda mungkin dalam WGS84, " -"dan layernya juga. Tetapi kadang Anda akan menambah layer tersebut tidak " -"pada CRS yang sama dengan proyek ini, dan Anda butuh QGIS untuk mengubahnya " -"sehingga dapat ditampilkan bersama dengan data lainnya. Istilah yang kita " -"gunakan untuk hal ini adalah proyeksi ulang ‘on the fly’." - -# b57a50b814c14ac782f1e22582240abe -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:85 -msgid "" -"To enable 'on the fly' projection, click on the :guilabel:`CRS Status` " -"button in the status bar along the bottom of the QGIS window:" -msgstr "" -"Untuk mengaktifkan proyeksi ‘on the fly’, klik pada tombol :guilabel:`Status " -"CRS` di bawah Status Bar pada jendela QGIS:" - -# 8ad334e993bf48bc832ae5e7e731a471 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:91 -msgid "" -"In the dialog that appears, check the box next to :guilabel:`Enable ‘on the " -"fly’ CRS transformation`." -msgstr "" -"Pada kotak dialog yang muncul, centang kotak di sebelah :guilabel:`Enable " -"‘on the fly’ CRS transformation`." - -# 002443cb43124bf8b8888b608ce0a970 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:97 -msgid "" -"Type :kbd:`NSIDC` into the Filter field. One CRS (\"NSIDC EASE-Grid " -"Global\") will appear in the list below." -msgstr "" -"Ketikan :kbd:`NSIDC` di dalam filed Saring. Satu CRS (\"NSIDC EASE-Grid " -"Global\") akan muncul di daftar bagian bawah." - -# 07995583b80049b38716de1d8b6bb8d3 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:103 -msgid "Click on it to select it, and then click :guilabel:`OK`." -msgstr "Klik pada CRS tersebut untuk memilihnya, kemudian klik :guilabel:`OK`." - -# f5cc52c7bb434bbc9df3d77cfc210b13 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:105 -msgid "" -"Notice how the shape of Indonesia changes. All projections work by changing " -"the apparent shapes of objects on Earth." -msgstr "" -"Perhatikan bagaimana bentuk Indonesia berubah. Semua proyeksi bekerja dengan " -"mengubah bentuk nyata objek di permukaan Bumi." - -# 984ab1c6d6d3404e8a625f01c9fc1fae -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:108 -msgid "Zoom in to a scale of 1:20000000 again, as before." -msgstr "Perbesar ke skala 1: 20000000 lagi seperti sebelumnya." - -# 5ba6465542d34590b18a33bab773ca2c -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:110 -msgid "Pan around the map." -msgstr "Geser sekitar peta." - -# 5005898e3f2241bbab94faf7b7ba63a4 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:112 -msgid "" -"Notice that the scale stays the same! 'On the fly' reprojection is useful " -"for combining datasets that are in different CRSes." -msgstr "" -"Perhatikan bahwa skalanya tetap sama! Proyeksi ulang 'On the fly' berguna " -"untuk menggabungkan dataset yang memiliki CRS yang berbeda." - -# 0195f6490f0944fd94d520ef6a14c4e8 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:115 -msgid "" -"Deactivate 'on the fly' reprojection again, by unchecking the box next to :" -"guilabel:`Enable ‘on the fly’ CRS transformation`." -msgstr "" -"Non aktifkan transformasi 'on the fly' kembali, dengan menonaktifkan centang " -"pada kotak di sebelah :guilabel:`Aktifkan transformasi CRS ‘on the fly’`. " - -# db99a6232a174a2f9d5bec9a1a8ba34e -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:118 -msgid "" -"Load the vector layer :file:`Indonesia.shp` located in :file:`qgis/" -"peta_dunia/`." -msgstr "" -"Tambahkan layer vektor lain yaitu :file:`Indonesia.shp` yang berada di :file:" -"`qgis/peta_dunia/`." - -# debf1bf5e42146ac814fd7500ac5100b -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:121 -msgid "" -"You may need to unzip :file:`peta_dunia.zip` first in order to open the " -"shapefile." -msgstr "" -"Anda mungkin butuh mengekstrak :file:`peta_dunia.zip` terlebih dahulu agar " -"dapat memasukkan shapefile tersebut." - -# 49e261d3013d47808eb87f108948e178 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:124 -msgid "" -"What do you notice? The layer is not visible! But that’s easy to fix, right?" -msgstr "" -"Apa yang Anda lihat? Layer tidak terlihat! Tetapi itu mudah untuk " -"diperbaikinya" - -# be0ed0e18d11428ebeb03d4a3f0a6ac4 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:128 -msgid "Right-click on the new layer in the Layers panel." -msgstr "Klik kanan pada layer baru di daftar layer." - -# 6a4b1ef8d2b742f0b04f3a4b0613454c -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:130 -msgid "Click :guilabel:`Zoom to Layer Extent`." -msgstr "Klik :guilabel:`Perbesar ke Layer`." - -# 23ab7f19e398478cb781e3375f44d22e -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:132 -msgid "OK, so now we see Indonesia... but where is the rest of the world?" -msgstr "" -"OK, jadi sekarang kita melihat wilayah Indonesia... Tapi dimana area lainnya " -"di muka bumi?" - -# 2e2345012e2f4727acd7f9f926626e8e -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:134 -msgid "" -"It turns out that we can zoom between these two layers, but we can’t ever " -"see them at the same time. That is because their Coordinate Reference " -"Systems are so different. The continents layer is in degrees, but the " -"Indonesia layer is in metres. In other words, one feature in the continents " -"layer might be 8.5 degrees away from the equator, but the same feature in " -"the Indonesia layer might be 900000 metres away from the equator." -msgstr "" -"Ternyata kita masih dapat melihat dua layer tersebut, tetapi kita tidak " -"dapat melihat mereka pada posisi yang sama. Hal ini karena sistem referensi " -"koordinat mereka berbeda. Layer continent dalam derajat, tetapi layer " -"Indonesia dalam meter. Dengan demikian, satu fitur di layer continent " -"mungkin 8,5 derajat dari khatulistiwa, tetapi fitur yang sama di layer " -"Indonesia mungkin 900000 meter dari khatulistiwa." - -# f4d0d87e30ce4126a52249b9c4efa5b1 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:143 -msgid "" -"8.5 degrees and 900000 metres is about the same distance, but QGIS does not " -"know that! One of our layers must be reprojected to match the other layer. " -"To correct this, again enable tranformation:" -msgstr "" -"8,5 derajat dan 900000 meter adalah jarak yang sama, tetapi QGIS tidak " -"mengetahui itu! Salah satu dari layer harus diproyeksi ulang untuk " -"menyesuaikan dengan layer lainnya. Untuk memperbaiki ini, aktifkan kembali " -"transformasi:" - -# 389cb250bdad4e4ba2524902b79f11b0 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:148 -msgid "Activate :guilabel:`Enable ‘on the fly’ CRS transformation` as before." -msgstr "" -"Aktifkan :guilabel:`Aktifkan transformasi CRS 'on the fly'` sama seperti " -"sebelumnya." - -# a08aff09c67943c1a8ca6c7b51117ea0 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:150 -msgid "Again click :guilabel:`Zoom to Layer extent` on the Indonesia dataset." -msgstr "" -"Kemudian sekali lagi, klik :guilabel:`Perbesar ke layer` pada dataset " -"Indonesia." - -# 5c64874c3c394af28eb0b3675f299b6d -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:152 -msgid "" -"Now, because they’re made to project in the same CRS, the two datasets fit " -"perfectly:" -msgstr "" -"Sekarang, karena mereka membuat proyek dengan CRS yang sama, kedua dataset " -"akan saling bertampalan dengan sempurna:" - -# 4d513d22c81b487a82fd1dada8b4741a -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:158 -msgid "" -"When combining data from different sources, it’s important to remember that " -"they might not be in the same CRS. 'On the fly' reprojection helps you to " -"display them together." -msgstr "" -"Ketika menggabungkan data dari sumber yang berbeda, ini sangat penting untuk " -"diingat bahwa mereka mungkin tidak memiliki CRS yang sama. Proyeksi ulang " -"'on the fly' membantu Anda untuk menampilkan mereka secara bersamaan." - -# a0f9539d7d3540d2b9da2fbb447e2e1f -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:163 -msgid "3. Datasets with different CRSes" -msgstr "3. Dataset dengan CRS yang berbeda" - -# e1c10cb576ce4709bf35e99b20906273 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:165 -msgid "" -"It’s great that QGIS can reproject layers on the fly so that we can work " -"with them in the same project. But this requires more time for our computer " -"to reproject the layers, and can slow down our work. For this, or for other " -"reasons, we might want to be able to reproject a dataset one time, and save " -"it with the new projection." -msgstr "" -"QGIS dapat memproyeksi ulang layer sehingga kita dapat bekerja dengan layer " -"tersebut dalam satu proyek yang sama. Tetapi ini membutuhkan banyak waktu " -"untuk komputer kita dalam memproyeksi ulang layer, dan dapat memperlamban " -"pekerjaan kita. Untuk ini, atau untuk alasan lain, kita mungkin ingin " -"memproyeksi ulang dataset, dan menyimpannya dengan proyeksi baru." - -# 03b625e09acd46faa75ea7aeff019bdd -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:172 -msgid "" -"Let’s reproject the Indonesia layer so that it is in the same CRS as the " -"project. To do this, we will need to export the data to a new file using a " -"new projection." -msgstr "" -"Mari memproyeksi ulang layer Indonesia sehingga layer ini memiliki CRS yang " -"sama seperti proyeknya. Untuk melakukan ini, kita akan mengeksport data ke " -"file baru menggunakan proyeksi baru." - -# fa8cb003600e4e90965120fee03a7f3d -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:177 -msgid "Right-click on the :guilabel:`Indonesia` layer in the Layers panel." -msgstr "Klik kanan pada layer :guilabel:`Indonesia` di panel Daftar Layer. " - -# 810e700a7dee442cb09421a76b9dd08d -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:179 -msgid "" -"Select :guilabel:`Save As...` in the menu that appears. You will be shown " -"the :guilabel:`Save vector layer as...` dialog." -msgstr "" -"Pilih :guilabel:`Simpan sebagai...` pada menu yang muncul. Anda akan melihat " -"kotak dialog :guilabel:`Simpan layer vektor sebagai...`" - -# bced811e3a0f482da0b10e209eab45cc -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:182 -msgid "" -"Click the :guilabel:`Browse` button next to the :guilabel:`Save as` field." -msgstr "" -"Klik tombol :guilabel:`Navigasi` di sebelah field :guilabel:`Simpan sebagai`." - -# 5f60641dcf4e47018547dad35c2567c1 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:184 -msgid "" -"Navigate to :file:`qgis/peta_dunia/` and specify the name of the new layer " -"as :kbd:`Indonesia_terproyeksi.shp`." -msgstr "" -"Navigasikan ke :file:`qgis/peta_dunia/` dan tentukan nama layer baru " -"sebagai :kbd:`Indonesia_terproyeksi.shp`. " - -# 2012f4648993441191083b54abfaaecc -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:187 -msgid "Leave the encoding unchanged." -msgstr "Encoding tidak perlu diubah." - -# 6d71524788724f6bbff5b25859b410a8 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:189 -msgid "" -"Change the value of the CRS in drop-down box to :guilabel:`Project CRS`." -msgstr "Ubah nilai CRS pada kotak pilihan di :guilabel:`Project CRS`. " - -# a11d34b9dc384a67ae3a6b1fbc8ef0eb -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:191 -msgid "Check the box next to :guilabel:`Add saved file to map`." -msgstr "Centang kotak disebelah :guilabel:`Add saved file to map`." - -# e4d0c8c9054b4bef8bb3d75dc1c2eac1 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:193 -msgid "The :guilabel:`Save vector layer as...` dialog now looks like this:" -msgstr "" -"Kotak dialog :guilabel:`Simpan lapisan vektor sebagai...` sekarang terlihat " -"seperti ini:" - -# 4aecaa4fbfaf4f4485dcc89313937e57 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:198 -msgid "" -"Click :guilabel:`OK` and after a minute, above your map extent you should be " -"presented with:" -msgstr "" -"Klik :guilabel:`OK` dan setelah beberapa menit, di atas peta Anda akan " -"melihat ini:" - -# 6949592c51a642d6a3bc21113c7fa8f7 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:203 -msgid "Wait until the notification disappear." -msgstr "Tunggu hingga notifikasi muncul." - -# ed489b1c758a4c5a81d119fc7b7c70c7 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:205 -msgid "" -"Now your new layer, :guilabel:`Indonesia_terproyeksi`, will be shown in the " -"layers panel. If you turn off 'on the fly' reprojection, this layer will " -"still be shown correctly, because it has been reprojected into the same CRS " -"as the project (and the continents layer)." -msgstr "" -"Sekarang layer baru Anda, :guilabel:`Indonesia_terproyeksi`, akan terlihat " -"di panel layer. Jika Anda mematikan proyeksi ulang “on the fly”, layer ini " -"akan tetap muncul, karena hal ini telah diproyeksi ulang ke dalam CRS yang " -"sama sebagai proyek (dan layer continent)." - -# 5c0e1c9876c3429693c7082950908433 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:211 -msgid "4. Creating a custom projection" -msgstr "4. Membuat proyeksi Anda sendiri" - -# 088d2a769a8748dab473ba98c6bd58d0 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:213 -msgid "" -"There are many more projections than just those included in QGIS by default. " -"You can even create your own projections. Let’s see how this works." -msgstr "" -"QGIS memiliki banyak proyeksi yang tersedia di dalamnya sesuai standar. Anda " -"dapat membuat proyeksi Anda sendiri. Kita lihat bagaimana hal itu bekerja." - -# 4dd459c7863b4416864df00703383cb0 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:217 -msgid "Start a new project." -msgstr "Memulai proyek baru." - -# 6f7a52b8ecb941bbb5997564a193ddb6 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:219 -msgid "" -"Load the vector layer :file:`oceans.shp` located in :file:`qgis/peta_dunia/`." -msgstr "" -"Masukkan layer vektor :file:`oceans.shp` yang terletak di :file:`qgis/" -"peta_dunia/`." - -# 9cc52fcd89554530bced559a45648822 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:222 -msgid "" -"Go to :menuselection:`Settings ‣ Custom CRS...` and you’ll see this dialog:" -msgstr "" -"Klik :menuselection:`Settings ‣ Custom CRS...` dan Anda akan melihat kotak " -"dialog ini:" - -# 648cbabc22e1414dab3fa960bc61d21d -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:227 -msgid "" -"We will create a projection known as Van der Grinten I. This interesting " -"projection represents the earth on a circular field instead of a rectangular " -"field, as most projections do." -msgstr "" -"Kita akan membuat proyeksi yang dikenal sebagai Van der Griten I. Proyeksi " -"ini menarik untuk menampilkan Bumi ke dalam bidang lingkaran bukan bidang " -"persegi panjang, seperti proyeksi yang biasanya." - -# b7cc3ace4f0740e794eaf19a63c8df55 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:231 -msgid "Enter :kbd:`Van der Grinten I` in the :guilabel:`Name` field." -msgstr "Masukan :kbd:`Van der Grinten I` ke dalam kolom :guilabel:`Nama`." - -# da51c430c3504826bac90bc65cfb7ffd -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:233 -msgid "In the Parameters field, enter the following string:" -msgstr "Di kolom Parameter, masukan string berikut ini:" - -# c9bed4b230b7489fab6ebb0455bc71e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:235 -msgid "" -":kbd:`+proj=vandg +lon_0=0 +x_0=0 +y_0=0 +R_A +a=6371000 +b=6371000 +units=m " -"+no_defs`" -msgstr "" -":kbd:`+proj=vandg +lon_0=0 +x_0=0 +y_0=0 +R_A +a=6371000 +b=6371000 +units=m " -"+no_defs`" - -# a48bb981a6084437ab55a184d2180ee7 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:237 -msgid "Click :guilabel:`OK`." -msgstr "Klik :guilabel:`OK`." - -# 0f56e9d928bc4417aaeff1c3c0a37700 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:239 -msgid "Go to :menuselection:`Project ‣ Project Properties`." -msgstr "Pergilah ke :menuselection:`Project ‣ Project Properties`." - -# 977ba28df1cb4fef8eadcc6afb84f1e7 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:241 -msgid "Enable 'on the fly' reprojection." -msgstr "Aktifkan proyeksi 'on the fly'." - -# 6086d6480da144b6b9e8094a4361354e -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:246 -msgid "" -"Search for your newly defined projection by typing it into the :guilabel:" -"`Filter` box:" -msgstr "" -"Cari proyeksi yang baru Anda buat dengan mengetikkan nama proyeksinya di " -"kotak :guilabel:`Saring`:" - -# b8832181699b48eb94b16894c23e1a00 -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:252 -msgid "" -"You should see it appear in the box at the bottom. Select it, and click :" -"guilabel:`OK`." -msgstr "" -"Anda akan melihatnya muncul di kotak bawah. Pilih dan klik :guilabel:`OK`." - -# 0f8d89555d304db181bede19f54ef74a -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:255 -msgid "" -"Once you’ve applied the new projection, the map will be reprojected like " -"this:" -msgstr "" -"Setelah Anda menerapkan proyeksi baru, peta akan memproyeksi ulang seperti " -"ini: " - -# b877a9ea8a1546a19f6f8c3319ac94bb -#: ../../source/training/old-training/beginner/qgis-inasafe/205-map-projection-basics.rst:261 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Pergi ke modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.po deleted file mode 100644 index 8e8bb12e..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.po +++ /dev/null @@ -1,1118 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2014,2018 -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# elida nurrohmah , 2014 -# harry mahardhika , 2015 -# mahardika fadmastuti , 2014 -# Ranie Dwi Anugrah , 2013-2014 -# Werner Macho , 2014-2015 -# Wulansari Khairunisa , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-13 09:31+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 37540e785a3d4078869e17d9ebffc6a5 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:6 -msgid "Module 6: Working with Vector Data" -msgstr "Modul 6: Bekerja dengan Data Vektor" - -# 1572daa245454d21bf21760d7743ca67 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 68a8dddc16af459daa069f710a7e2806 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:10 -msgid "Understand vector data" -msgstr "Memahami data vektor" - -# cb1b83444d924949b031e1b6e0330db9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:11 -msgid "Identify attributes of vector data" -msgstr "Mengidentifikasi atribut data vektor" - -# c43c8e6ce6c942c1904fc471b3a55472 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:12 -msgid "Add vector layers" -msgstr "Menambah layer vektor" - -# 10eb9c2d29e54b0b8660a25b09ed72ff -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:13 -msgid "Symbolise vector layers" -msgstr "Simbolisasi layer vektor" - -# 666870e255e34172b174aa9e633913a3 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:15 -msgid "" -"In this module, we will learn what is meant by vector data. We will practise " -"adding it to our QGIS projects, and we will learn how to style the data in " -"different ways." -msgstr "" -"Pada modul ini, kita akan mempelajari apa itu data vektor. Kita akan " -"melakukan praktek untuk menambahkan data vektor pada proyek QGIS, dan kita " -"juga akan mempelajari bagaimana untuk menampilkan data dengan berbagai cara." - -# bca8c07185dd40e0b7e01cfbb6f23ed9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:21 -msgid "1. Vector data" -msgstr "1. Data vektor" - -# b1ba1ef327f24adcb9f7fb29fcfba43c -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:23 -msgid "" -"Vector data is the most common type of data found in GIS. A vector is " -"essentially something made up of single points, or lines connecting those " -"points. In other words, points, lines and polygons are all vectors (curved " -"lines are vectors too, but we won’t worry about that for now). We are " -"already quite familiar with vector data because in the previous unit, we " -"used JOSM to create it!" -msgstr "" -"Data vektor merupakan tipe data yang umum ditemukan dalam SIG. Sebuah vektor " -"pada intinya merupakan sesuatu yang berbentuk sebuah titik, atau garis yang " -"menghubungkan titik-titik tersebut. Dengan kata lain, titik, garis, dan " -"poligon merupakan vektor (garis lengkung merupakan vektor juga, tetapi kita " -"tidak akan mengkhawatirkan hal tersebut sekarang). Kita sudah paham dengan " -"data vektor karena di unit sebelumnya, kita sudah menggunakan JOSM untuk " -"membuatnya!" - -# 9a0c52cb628547869107e97d84b94a42 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:31 -msgid "" -"Each object in a vector dataset is referred to as a feature. In JOSM we " -"often refer to them as objects, but in traditional GIS terminology they are " -"features. A polygon that represents a building is a feature, as is a line " -"that represents a river. Each feature has a geographic location and is " -"attached to other data that describe the feature." -msgstr "" -"Setiap objek dalam sebuah set data vektor direferensikan sebagai sebuah " -"fitur. Ketika kita menggunakan JOSM kita seringkali mereferensikannya " -"sebagai sebuah objek, tetapi pada terminologi SIG tradisional, mereka " -"direferensikan sebagai fitur. Sebuah poligon yang merepresentasikan sebuah " -"bangunan adalah sebuah fitur, sebagaimana garis yang merepresentasikan " -"sungai. Setiap fitur memiliki lokasi geografis, dan terlampirkan pada data " -"lain yang mendeskripsikan fitur." - -# 94ddbd49cd2747119c4daec772a6a827 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:39 -msgid "" -"One important thing to note is that QGIS layers can only contain one type of " -"feature. That is, one layer can’t contain both point features and line " -"features, because they are different types of data. Hence if you have a file " -"that contains school polygons and another file that contains school points, " -"you would add them as two separate layers." -msgstr "" -"Salah satu hal yang penting untuk dicatat adalah *layer* QGIS hanya " -"mengandung satu tipe fitur. Artinya, satu layer tidak dapat mengandung fitur " -"titik dan fitur graris, karena mereka merupakan tipe data yang berbeda. " -"Namun apabila anda ingin memiliki sebuah file yang memiliki poligon sekolah " -"dan file lain yang memiliki titik-titik sekolah, anda dapat menambahkan " -"mereka sebagai dua layer yang terpisah." - -# 770aee1d19a24f959b1d82ccfceccd94 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:46 -msgid "" -"Almost always, polygon layers will be at the bottom of your layers list, " -"line layers in the middle and point layers at the top. You don’t generally " -"want your polygons overlapping your lines and points." -msgstr "" -"Perhatikan selalu, layer poligon sebaiknya ada di daftar layer paling bawah, " -"layer garis di tengah, dan layer titik di atas. Pada umumnya Anda tidak " -"ingin poligon Anda menimpa garis dan titik." - -# cb1233ea780b47b88e6acf51488dd127 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:51 -msgid "2. Attribute data" -msgstr "2. Data Atribut" - -# e18cecab87b44f0d9d5d5c108d736017 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:53 -msgid "" -"It’s important to know that the data you will be working with does not only " -"represent where objects are in space, but also tells you what those objects " -"are." -msgstr "" -"Sangat penting bahwa data yang akan Anda kerjakan tidak hanya " -"merepresentasikan obyek yang ada di lapangan, tetapi juga memberi tahu objek " -"apakah itu." - -# 44525e30060a4f0d8c5568ba5e220992 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:56 -msgid "" -"Open the project :file:`sleman_2_5.qgs`. This is the same project that you " -"worked with previously." -msgstr "" -"Buka proyek :file:`sleman_2_5.qgs`. Ini merupakan proyek yang sama yang " -"telah Anda kerjakan sebelumnya." - -# 684a9ead683740d58d61687c43de7608 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:59 -msgid "" -"In the project we see the position of Sleman districts, the railway, and " -"some roads, but we can’t see all of the data contained in those layers." -msgstr "" -"Pada proyek yang kita lihat lokasi Kabupaten Sleman, jalur kereta, dan " -"beberapa jalan, tetapi kita tidak dapat melihat seluruh data yang terkandung " -"dalam layer-layer tersebut." - -# a5ada67aa8034b6ca381bb288600e2ed -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:62 -msgid "Select :guilabel:`Jalan_Sleman_OSM` in the Layers panel." -msgstr "Pilih :guilabel:`Jalan_Sleman_OSM` pada panel daftar Layer." - -# c718614f073640278d1c404fedcbd09f -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:67 -msgid "Click the :guilabel:`Open Attribute Table` button:" -msgstr "Klik kanan, dan klik tombol :guilabel:`Open Attribute Table` :" - -# 38c9d4f5dbc74f97b430063cab990737 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:72 -msgid "" -"You will see a table with more data about the streets layer. This extra data " -"is called **attribute data**. The lines that you can see on your map, which " -"represent the location of the streets is called **spatial data**. Remember " -"in JOSM there was the same division. The points, lines and shapes we draw " -"tell us **where**, but the tags, or attributes, tell us **what**. These " -"definitions are commonly used in GIS, so it’s essential to remember them!" -msgstr "" -"Anda akan melihat tabel dengan data yang lebih banyak tentang layer jalan. " -"Data ekstra tersebut disebut **data atribut**. Garis-garis yang Anda dapat " -"lihat pada peta Anda menggambarkan kemana garis tersebut menuju – ini " -"merupakan **data spatial**. Anda akan mengingat pada JOSM dimana terdapat " -"bagian yang sama. Titik, garis, dan bentuk yang Anda gambar memberitahu kita " -"**dimana**, tetapi tags, atau atribut, memberitahukan kita **apa**. Definisi " -"tersebut sangat umum digunakan di SIG, jadi sangat penting untuk diingat!" - -# 5bcd966878804e80b8bb607f3bb51214 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:85 -msgid "" -"Take a look at the attribute table. Each row in the table is associated with " -"one feature in the streets layer. Each column contains one of the " -"attributes. If you select other layers and click on the :guilabel:`Open " -"Attribute Table` button, you’ll see different tables." -msgstr "" -"Lihatlah pada tabel atribut. Setiap baris tabel menghubungkan satu fitur " -"pada layer jalan. Setiap kolom mengandung satu atribut. Jika Anda memilih " -"layer lain dan mengklik tombol :guilabel:`Open Attribute Table`, maka Anda " -"akan melihat tabel yang berbeda." - -# 5b9c335ddd434f7fa50e4568619acd00 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:91 -msgid "Close the attribute table." -msgstr "Tutup tabel atribut." - -# 4d6a8e73ad4748458255f097524c9a8e -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:94 -msgid "3. Adding vector data" -msgstr "3. Menambahkan Data Vektor" - -# e4b4d835e8c841ee939f35f45c8cb5ae -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:97 -msgid "3.1 Shapefiles" -msgstr "3.1 Shapefiles" - -# 65e7089282844e8c974ec5f46589d19c -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:99 -msgid "" -"You’ve already added vector data to a project in the form of a shapefile. As " -"we mentioned previously, a shapefile is a commonly used geographic file " -"format. It can easily be converted into other formats, and most GIS software " -"can read this type of file. You may notice when adding a shapefile that " -"there are numerous files in your shapefile directory with the same name. " -"This is because a shapefile actually relies on a collection of several other " -"files to store the data and keep various settings. When you add a shapefile " -"to your project, you should always add the one that ends in :file:`.shp`, " -"but the rest of the files are important too!" -msgstr "" -"Anda sudah menambahkan data vektor pada sebuah proyek, dalam format sebuah " -"shapefile. Sebagaimana yang kami jelaskan sebelumnya, sebuah shapefile " -"merupakan format yang umum digunakan untuk format file geografi. Shapefile " -"dapat dengan mudah dikonversikan ke dalam berbagai macam format lain, dan " -"kebanyakan perangkat lunak SIG dapat membaca jenis file ini. Anda mungkin " -"akan menyadari bahwa ketika menambahkan sebuah shapefile, terdapat sejumlah " -"file pada folder shapefile anda dengan nama yang sama. Ini karena sebuah " -"shapefile sebenarnya bergantung pada sekumpulan beberapa file untuk " -"menyimpan data dan menetapkan berbagai pengaturan. Ketika anda menambahkan " -"sebuah shapefile ke proyek anda, anda harus menambahkan satu yang " -"berakhiran :file:`.shp`, tetapi file yang lain juga sangat penting!" - -# cbf6b112869d4a9cb3f934621dbc4318 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:111 -msgid "" -"Do you remember how to add a shapefile to a project? Try adding the layer :" -"file:`POI_Sleman_OSM`, from the shapefile located in the tutorial directory. " -"If you don’t remember how to add a new vector layer, refer to the " -"instructions :ref:`module 3 `." -msgstr "" -"Apakah Anda ingat cara menambahkan shapefile? Cobalah untuk menambahkan " -"layer :file:`POI_Sleman_OSM`, dari shapefile yang terletak di folder " -"tutorial. Jika Anda tidak ingat bagaimana menambahkan layer vektor, bukalah " -"kembali petunjuknya di :ref:`modul 3 `." - -# a4252f0570614478b76e1358728ae020 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:117 -msgid "Your project should look like this after the new layer has been added:" -msgstr "" -"Proyek Anda seharusnya akan terlihat seperti ini setelah Anda menambahkan " -"layer yang baru:" - -# 48af3d0563484105a106c2deae8b26a2 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:123 -msgid "3.2 Databases" -msgstr "3.2 Database" - -# 89e2611fcead4777947927657dd384aa -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:125 -msgid "" -"Shapefiles (and other types of files) are one way to store geographic data. " -"You can also load a vector layer into QGIS from a database. You may already " -"be familiar with Database Management Systems (DBMS) such as Microsoft " -"Access. GIS applications also make use of databases to store geographic " -"data. Databases can be hosted and used locally on your computer, or could be " -"shared between users over a network or the internet." -msgstr "" -"Shapefiles (dan tipe file lainnya) merupakan sebuah cara untuk menyimpan " -"data geografis. Anda juga dapat memuat layer vektor pada QGIS dari sebuah " -"database. Anda mungkin paham dengan Sistem Manajemen Database (Database " -"Management System/DBMS) seperti Microsoft Access. Aplikasi SIG juga dapat " -"memanfaatkan database untuk menyimpan data geografi. Database dapat disimpan " -"dan digunakan secara lokal pada komputer anda, atau dapat dibagikan kepada " -"pengguna lain di sebuah jaringan atau bahkan internet." - -# 277f4734fd524997a4f8f946e0b4709d -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:133 -msgid "" -"Let’s try adding a layer from a database. Click the :guilabel:`Add " -"SpatiaLite Layer` button. If you can’t find it, right-click on the toolbar " -"and make sure that the :guilabel:`Manage Layers` toolbar is enabled." -msgstr "" -"Mari mencoba menambahkan sebuah layer dari sebuah database. Klik pada " -"tombol :guilabel:`Add SpatiaLite Layer`. Jika Anda tidak dapat menemukannya, " -"klik kanan pada toolbar dan pastikan toolbar :guilabel:`Manage Layers` " -"diaktifkan." - -# d3b4376dfdd442b6bcf2782e09a2b753 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:141 -msgid "You will see a dialog box. Click :guilabel:`New`." -msgstr "Anda akan melihat sebuah kotak dialog. Klik :guilabel:`New`." - -# 81f5f5f7780b46d6a751f95453e3ec58 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:147 -msgid "" -"Navigate to the :file:`qgis_data/Sleman/` folder and find :file:`guna_lahan." -"db`. Select the file and click :guilabel:`Open`." -msgstr "" -"Arahkan ke folder :file:`qgis_data/Sleman/` dan carilah file :file:" -"`guna_lahan.db`. . Pilih file tersebut dan klik :guilabel:`Open`." - -# 04d578b07e1c418e91ade0735094088a -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:151 -msgid "" -"Now in the original dialog box, notice that the drop-down button contains " -"*“guna_lahan.db @ ...”*, followed by the path of the database file on your " -"computer." -msgstr "" -"Sekarang di kotak dialog sebelumnya, anda dapat melihat sebuah tombol klik " -"bawah yang mengandung *“guna_lahan.db @ ...”*, diikuti dengan lokasi file " -"database pada komputer anda." - -# 3ebea78a589c4816931ad469126116a0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:155 -msgid "Click :guilabel:`Connect`. You will see the following in the box:" -msgstr "" -"Klik :guilabel:`Connect`. Anda akan melihat kotak seperti pada gambar " -"berikut:" - -# f99f921adb0d4267ae178c20b7f14c63 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:161 -msgid "" -"This database actually has three different layers available, all saved in " -"the database. Click on the first layer to select it, then hold :kbd:`SHIFT` " -"and click the last layer to select them all." -msgstr "" -"Database ini sebenarnya memiliki tiga layer berbeda, semua tersimpan pada " -"database. Klik pada layer pertama untuk memilihnya, kemudian tahan :kbd:" -"`SHIFT` dan klik layer terakhir untu memilih seluruh layer. " - -# 1640bd9dfc774855ba1d755af6c12f6f -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:166 -msgid "Click :guilabel:`Add`. This will add all three layers to our project." -msgstr "" -"Klik :guilabel:`Add`. Nantinya semua layer akan termuat pada proyek kita. " - -# 704dace1b0b24201835439da245bbf42 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:169 -msgid "" -"Remember frequently to save your map! Your QGIS project file does not save " -"the data (data is saved in a shapefile or a database), but it does remember " -"the layers that you have added to the project, their order and any settings " -"that you adjust." -msgstr "" -"Ingatlah untuk menyimpan peta Anda secara rutin! File proyek QGIS Anda tidak " -"menyimpan data (data disimpan ke dalam sebuah shapefile atau sebuah " -"database), tetapi hanya mengingat layer-layer yang Anda tambahkan ke proyek, " -"urutannya, dan pengaturan yang telah Anda lakukan." - -# 53df3c246ac24f6ab4d1b7d3b0e149d6 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:174 -msgid "" -"The layers you have just added are all polygon layers, so you will want to " -"drag them down below the line and point layers. If you have a checkbox " -"beneath your layers list that reads :guilabel:`Control rendering order`, go " -"ahead and check it." -msgstr "" -"*Layer-layer* yang telah anda tambahkan adalah layer poligon, jadi anda akan " -"menggesernya di bawah *layer* garis dan titik. Jika anda mempunyai sebuah " -"kotak centang di bawah daftar lain yang terbaca :guilabel:`Control rendering " -"order` silahkan berikan tanda centang pada kotak tersebut." - -# bdeb2962114a4221bc7db71427f4cbc0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:179 -msgid "" -"Let’s remove a couple of layers to make it easier to deal with our data. " -"Right-click on the :guilabel:`railway` and :guilabel:`district` layers and " -"click :guilabel:`Remove`. Then order your layers like this:" -msgstr "" -"Mari kita hilangkan beberapa layer untuk membuatnya semakin mudah dalam " -"mengatur data kita. Klik kanan pada layer :guilabel:`railway` dan layer :" -"guilabel:`kecamatan` kemudian klik :guilabel:`Remove`. Kemudian urutkan " -"layer Anda seperti ini:" - -# 32d98bc2960d49f8be30e9eed9b55b41 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:188 -msgid "4. Symbology" -msgstr "4. Simbologi" - -# b52ab4c761cd4a939506cf27f4a8a344 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:190 -msgid "" -"The symbology of a layer is its visual appearance on the map. One of the " -"basic strengths of GIS is that you have a dynamic visual representation of " -"the data you are working with. Therefore, the visual appearance of the map " -"(which depends on the symbology of the individual layers) is very important. " -"The end user of the maps you produce, will need to be able to easily see " -"what the map represents. Equally as important, you need to be able to " -"explore the data as you’re working with it, and good symbology helps a lot." -msgstr "" -"Simbologi layer merupakan visualisasi tampilan pada peta. Salah satu " -"kekuatan dasar SIG adalah anda dapat memiliki suatu representasi visual yang " -"dinamis terhadap data yang anda kerjakan. Kemudian, penampilan visual dari " -"suatu peta (dimana bergantung dari simbologi di setiap layernya) sangat " -"penting. Pengguna peta dari peta yang anda hasilkan akan membutuhkan " -"kemudahan dalam melihat apa yang direpresentasikan dalam peta. Keseimbangan " -"sangat penting, anda perlu mendalami data anda saat anda bekerja dengannya, " -"dan simbologi yang bagus akan sangat membantu." - -# d7aa88aa120640f2966963a694e71b81 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:200 -msgid "" -"In other words, having proper symbology is not a luxury or just nice to " -"have. In fact, it’s essential for you to use a GIS properly and produce maps " -"and information that people will understand and be able to use." -msgstr "" -"Dengan kata lain, memiliki simbologi yang sesuai bukan merupakan suatu " -"kemewahan atau hanya sekedar polesan semata. Faktanya, sangat penting bagi " -"anda untuk menggunakan SIG dengan baik serta menghasilkan peta dan informasi " -"yang mudah dimengerti dan digunakan oleh orang lain. " - -# fd9c9f0631dc4a6ea2f4a545b1993600 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:205 -msgid "4.1 Changing colours" -msgstr "4.1 Merubah warna" - -# 5afb5c3653954aad83a06e2638949c69 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:207 -msgid "" -"To change a layer’s symbology, we will open its properties. Let’s begin by " -"changing the colour of the :guilabel:`pemukiman` layer." -msgstr "" -"Untuk merubah simbologi pada sebuah layer, kita perlu membuka menu " -"Properties. Mari kita mulai dengan merubah warna pada layer :guilabel:" -"`pemukiman`." - -# c62129212991473693327b4e8eb91e01 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:210 -msgid "Right-click on the :guilabel:`pemukiman` layer in the Layers panel." -msgstr "Klik kanan pada layer :guilabel:`pemukiman` di panel daftar Layer." - -# 4b2f796099604c52a976b4e5df84d202 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:212 -msgid "Select :guilabel:`Properties` in the menu that appears." -msgstr "Pilih :guilabel:`Properties` di menu yang muncul." - -# aa215d1042b54519a261acacb43f8a9e -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:214 -msgid "" -"By default you can also access the Properties menu by double-clicking on the " -"name of the layer." -msgstr "" -"Secara standar, anda juga dapat mengakses menu Properties dengan mengklik " -"dua kali pada nama layer." - -# 1a3de3b37ff24822a79622e891e7a2f4 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:217 -msgid "In the Properties window select the :guilabel:`Style` tab." -msgstr "Pada jendela Properti, pilih tab :guilabel:`Style`." - -# 9a78a0fd1be242efb663f67dc26cae6a -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:222 -msgid "Click the :guilabel:`Color` button to change the colour." -msgstr "Klik tombol :guilabel:`Warna` untuk mengubah warna." - -# ad508e5661d24ddba215f4c7e112013e -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:227 -msgid "" -"A standard colour dialog will appear. Choose a pink colour and click :" -"guilabel:`OK`." -msgstr "" -"Sebuah kotak dialog pewarnaan standar akan muncul. Pilih warna merah muda " -"dan klik :guilabel:`OK`." - -# 98ba506482cc43d39bd8f5bba46d3e10 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:233 -msgid "" -"If you succeed at changing the colour of the :guilabel:`pemukiman`layer then " -"you can try to change the colour of the :guilabel:`vegetasi` layer and the :" -"guilabel:`tubuh_air` layer too. You can use a green colour for the :guilabel:" -"`vegetasi` layer and a blue colour for the :guilabel:`tubuh_air` layer." -msgstr "" -"Jika anda berhasil mengubah warna dari layer :guilabel:`pemukiman` lalu anda " -"silahkan mencoba mengubah juga warna dari layer :guilabel:`vegetasi` dan " -"layer :guilabel:`tubuh_air`. Anda dapat menggunakan warna hijau untuk layer :" -"guilabel:`vegetasi` dan biru untuk layer :guilabel:`tubuh_air`" - -# 114368c3e0b34cf39a0dfbbf5b8258a4 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:238 -msgid "" -"Click :guilabel:`OK` again in the Layer Properties window, and you will see " -"the colour change being applied to the layer." -msgstr "" -"Klik :guilabel:`OK` lagi pada jendela Properti Lapisan, dan Anda akan dapat " -"melihat perubahan warna yang telah diaplikasikan pada layer." - -# c79f6965d9e2444b9cb7cce5f080cfea -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:245 -msgid "4.2 Changing symbol structure" -msgstr "4.2 Merubah struktur simbol" - -# 0ffba8c92e204268be2e729dcf2071d9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:247 -msgid "" -"There’s more to a layer’s symbology than just its colour. Next we want to " -"change the colour of the vegetation, but we also want to eliminate the lines " -"between the different types of vegetation, so as to make the map less " -"visually cluttered." -msgstr "" -"Ini merupakan hal yang menarik sejauh ini, tetapi terdapat hal lebih menarik " -"dari simbologi layer daripada hanya merubah warnanya saja. Selanjutnya kita " -"akan merubah warna vegetasi, tetapi kita juga akan menghilangkan garis " -"diantara tipe vegetasi yang berbeda sehingga peta kita tidak tergambarkan " -"secara mengelompok." - -# 49a7a2a59e1e453cad2faf56f9513b30 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:253 -msgid "" -"Open the :guilabel:`Layer Properties` window for the :guilabel:`vegetasi` " -"layer. Under the :guilabel:`Style` tab, you will see the same kind of dialog " -"as before. This time, however, we will do more than just change the colour." -msgstr "" -"Buka jendela :guilabel:`Properti Lapisan` untuk layer :guilabel:`vegetasi`. " -"Di bawah tab :guilabel:`Style`, Anda akan dapat melihat dialog yang sama " -"seperti sebelumnya. Kali ini bagaimana pun, kita akan melakukan lebih " -"daripada hanya mengubah warnanya saja." - -# 8c82a744410a42b1aa71c36448d73495 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:258 -msgid "" -"Click on :guilabel:`Simple Fill` under :guilabel:`Symbol layers`. The Symbol " -"layer dialog will appear on the right side of the panel." -msgstr "" -"Klik pada :guilabel:`Pengisian Sederhana` di bawah :guilabel:`Lapisan " -"Simbol`. Kotak dialog layer Simbol akan muncul di sisi sebelah kanan panel." - -# 091589ead77f40819860734b4da1cd16 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:264 -msgid "" -"Change the colour inside the polygons in the layer by clicking the button " -"next to the :guilabel:`Fill` label:" -msgstr "" -"Ubah warna di dalam poligon pada layer dengan mengklik tombol di sebelah " -"label :guilabel:`Fill`:" - -# 85cbbdfaa4734326b6b5d8fd20e2c00a -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:270 -msgid "" -"In the dialog that appears, choose a new colour (one that suits vegetation)." -msgstr "" -"Pada dialog yang muncul, pilihlah sebuah warna yang baru (yang terlihat " -"sesuai untuk vegetasi)." - -# d34012010ab94148988efefaf3a454e9 -# 29cf0cdee3104a57b962f68eceff8a74 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:273 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:335 -msgid "Click :guilabel:`OK`." -msgstr "Klik :guilabel:`OK`." - -# d66eb630228a4bbfafcad4bb464b6a0b -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:275 -msgid "Next, we want to get rid of the lines between all the farms." -msgstr "Selanjutnya, kita akan menghapus garis diantara seluruh ladang." - -# 3595c7b9ef0b49f0945e12006076c253 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:277 -msgid "" -"Click on the :guilabel:`Border style` drop-down box. At the moment, it " -"should be showing a short line and the words :guilabel:`Solid Line`." -msgstr "" -"Klik pada tombol bawah :guilabel:`Style Tepi`. Saat ini, seharusnya " -"menunjukan sebuah gambar garis pendek dan tertulis :guilabel:`Garis Padat`." - -# b483a071ba414fb095c00d6a63495bd2 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:281 -msgid "Change this to :guilabel:`No Pen`." -msgstr "Ubah ini ke :guilabel:`No Pen`." - -# 648177f825f5498bbec18b0c4889322f -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:286 -msgid "" -"Click :guilabel:`OK`, and then :guilabel:`OK` again. Now when we look at our " -"map, the vegetasi layer will have a new colour and no lines between polygons." -msgstr "" -"Klik :guilabel:`OK`, dan kemudian :guilabel:`OK` kembali. Sekarang ketika " -"kita melihat pada peta kita, layer peta akan memiliki warna baru dan tidak " -"ada garis antar poligon." - -# 565604b5653f4c3e910edf18faf2fc2a -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:290 -msgid "" -"Try changing the symbology of the :guilabel:`pemukiman` layer so that it " -"also does not have outlines." -msgstr "" -"Cobalah untuk merubah warna pada layer :guilabel:`pemukiman` sehingga layer " -"tersebut tidak memiliki garis luar." - -# 4625a8c7f429475693e11ed9f1cf6ad0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:297 -msgid "4.3 Scale-based visibility" -msgstr "4.3 Penampakan Berdasarkan Skala" - -# e8d4166e1ca34a4588435569b27d948e -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:299 -msgid "" -"Sometimes you will find that one of your layers is not suitable for a given " -"scale. For example, if you have a layer which shows the earth’s continents " -"but not with very much detail, the continent lines may not be very accurate " -"when you are zoomed in very far." -msgstr "" -"Terkadang Anda akan menemukan bahwa salah satu layer Anda tidak sesuai untuk " -"sebuah ukuran skala tertentu. Sebagai contoh, jika Anda memiliki sebuah " -"layer yang menunjukan benua di permukaan bumi tetapi tidak menunjukan banyak " -"detail, garis benua mungkin tidak akan akurat ketika Anda melakukan " -"perbesaran sangat jauh untuk melihat jalan." - -# d8e0da20f4a14f93a175a400d8393188 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:305 -msgid "" -"Scale is a reference to how your map references what is actually on the " -"ground in terms of size. Scale is usually given in terms like 1:10000, which " -"means that one centimetre of length on your map is equal to 10000 " -"centimetres in the real world. When you zoom in or out on a map, the scale " -"changes, as you can see in the status bar at the bottom of QGIS." -msgstr "" -"Skala adalah referensi bagaimana peta Anda terlihat sebenarnya di permukaan " -"bumi dalam suatu besaran. Skala biasanya diberikan misalnya 1:10000 artinya " -"satu sentimeter di peta Asama dengan 10000 sentimeter di dunia nyata. Ketika " -"Anda melakukan perbesaran atau pengecilan tampilan, skalanya berubah, dan " -"Anda dapat meilhat perubahannya pada status bar di bawah QGIS." - -# 8d2a736ed31e49af84483bd8d32a2c33 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:313 -msgid "" -"In our case, we may decide to hide our streets layer when we are zoomed out " -"very far (a small scale). For example, the streets layer is not very useful " -"when we are zoomed out far and it looks like a blob." -msgstr "" -"Pada kasus kita, kita mungkin ingin menyembunyikan layer jalan ketika kita " -"melakukan pengecilan sangat jauh (untuk skala kecil). Sebagai contoh, layer " -"jalan tidak akan sangat berguna ketika kita memperkecil tampilan peta sangat " -"jauh dan akan terlihat aneh. " - -# 390c10459ec240d7b711d7bd57112c52 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:318 -msgid "Let’s enable scale-based rendering:" -msgstr "Mari kita atur penggambaran berdasarkan skala: " - -# c420db572b624967a6991d4b29e29e97 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:320 -msgid "" -"Open the :guilabel:`Layer Properties` dialog for the :guilabel:" -"`Jalan_Sleman_OSM` layer." -msgstr "" -"Buka kotak dialog :guilabel:`Properti Lapisan` untuk layer :guilabel:" -"`Jalan_Sleman_OSM`" - -# 314c4a5ae0484b47a0365a902ef9197a -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:323 -msgid "Click the :guilabel:`General` tab." -msgstr "Klik tab :guilabel:`Umum`" - -# f8712d1b9b124deeb2bd99907fb7a590 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:328 -msgid "" -"Enable scale-based rendering by clicking on the checkbox :guilabel:`Scale " -"dependent visibility` then change the value in :guilabel:`Maximum` to 1:10 " -"and :guilabel:`Minimum` to 1:100000." -msgstr "" -"Aktifkan rendering berdasarkan skala dengan mengklik pada kotak centang yang " -"bertuliskan :guilabel:`Visibilitas Berdasarkan Skala` kemudian ubah nilai :" -"guilabel:`Maximum` menjadi 1:10 dan :guilabel:`Minimum` menjadi 1:100000." - -# 5f2ac087054540e1af1083be69acbc41 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:337 -msgid "" -"Look at your map and see what happens when you zoom in and out. The streets " -"layer should appear when you are at a large scale and disappear at small " -"scales." -msgstr "" -"Sekarang lihat pada peta Anda dan lihat apa yang terjadi ketika Anda " -"melakukan perbesaran dan pengecilan tampilan. Layer jalan seharusnya muncul " -"ketika Anda berada pada skala besar dan menghilang pada skala kecil." - -# f4bd067f8279410a8be8028751efd02a -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:341 -msgid "" -"You can use your mouse wheel to zoom in increments. Alternatively, use the " -"zoom tools to draw a box and zoom to it:" -msgstr "" -"Anda dapat menggunakan roda gulir pada mouse anda untuk melakukan " -"perbesaran. Alternatifnya, anda dapat menggunakan tool perbesaran untuk " -"menggambar sebuah kotak dan memperbesar pada tampilan kotak tersebut:" - -# 9fbab652390d409a8d08397c36b6a291 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:348 -msgid "4.4 Adding symbol layers" -msgstr "4.4 Menambahkan layer simbol" - -# 5de416042888455395b1ffec15990f20 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:350 -msgid "" -"Now that we know how to change simple symbology for layers, the next step is " -"to create more complex symbology. QGIS allows us to do this using symbol " -"layers." -msgstr "" -"Sekarang Anda telah mengetahui bagaimana untuk mengubah simbol secara " -"sederhana pada layer, langkah selanjutnya adalah membuat simbologi yang " -"lebih kompleks. QGIS memperbolehkan Anda untuk melakukan ini dengan " -"menggunakan layer simbol." - -# f369f51e07634bcba6e2011535e8aac1 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:354 -msgid "" -"Open the :guilabel:`vegetasi` layer’s Symbol properties dialog as before." -msgstr "" -"Buka layer :guilabel:`vegetasi` kemudian pergilah ke kotak dialog Symbol " -"properties seperti sebelumnya." - -# 25f5ea95246642b7a0673de32a708485 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:356 -msgid "" -"In this example, the current symbology has no outline (i.e., it uses the :" -"guilabel:`No Pen` border style)." -msgstr "" -"Pada contoh ini, simbol saat ini tidak memiliki garis terluar (dikarenakan " -"ia menggunakan style batas garis :guilabel:`Tidak Ada Pena`)" - -# e1173a1a41ca478aa8dbc3113d4b4df0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:362 -msgid "Select :guilabel:`Fill` and Click the :guilabel:`+` button on the left." -msgstr "Pilih :guilabel:`Fill` dan Klik tombol :guilabel:`+` di sebelah kiri. " - -# 835f6c47ec8948b5aeaea063a33056c0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:367 -msgid "Another symbol layer will be added to the list:" -msgstr "Layer simbol lain yang akan ditambahkan pada daftar:" - -# 54d384f1016b4041bad3ffa3e88741e9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:372 -msgid "" -"The symbol layers may appear different in colour, but don't worry, we’re " -"going to customise it anyway." -msgstr "" -"Layer simbol akan muncul dengan warna yang berbeda, tetapi kita akan mencoba " -"untuk merubahnya." - -# 34736a6d47814222af18282ab56c56e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:375 -msgid "" -"Now this layer has two different symbologies. In other words, both the blue " -"colour AND the green colour will be drawn. However, the green colour will be " -"drawn above the blue, and since it is a solid colour, it will completely " -"hide the blue colour. Let’s change it." -msgstr "" -"Sekarang layer ini memiliki dua simbologi yang berbeda. Dengan kata lain, " -"warna hijau dan warna biru keduanya akan digambarkan. Bagaimana pun, warna " -"biru akan tergambarkan di atas warna hijau, dan karena warna biru merupakan " -"warna yang solid, maka ia akan menutupi warna hijau. Mari kita ubah." - -# fd228d54cd284a7d8e3538bbd15d0cf3 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:381 -msgid "" -"It’s important not to get confused between a map layer and a symbol layer. A " -"map layer is a vector (or raster) that has been loaded into the map. A " -"symbol layer is only the symbology used to represent a map layer. This " -"course will usually refer to a map layer as just a layer, but a symbol layer " -"will always be called a symbol layer, to prevent confusion." -msgstr "" -"Sangat penting untuk tidak bingung dalam membedakan antara layer peta dan " -"layer simbol. Sebuah layer peta merupakan vektor (atau raster) yang telah " -"dimuat dalam peta. Sebuah layer simbol merupakan bagian dari simbol yang " -"digunakan untuk menggambarkan sebuah layer peta. Latihan ini biasanya akan " -"menggambarkan sebuah layer peta sebagai sebuah layer, tetapi sebuah layer " -"simbol akan selalu disebut layer simbol, untuk menghindari kebingungan." - -# 3b0396784195412db2939a49ddc4f495 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:387 -msgid "Set the :guilabel:`Border style` to :guilabel:`No Pen` as before." -msgstr "" -"Pilih :guilabel:`Border style` ke :guilabel:`Tidak Ada Pena` seperti " -"sebelumnya." - -# 19a6d0ca4c744e03af7825b2a629ecba -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:389 -msgid "" -"Change the fill style to something other than :guilabel:`Solid` or :guilabel:" -"`No brush`. For example, :guilabel:`Dense 7`:" -msgstr "" -"Ubah fill style menjadi sesuatu yang lain dari :guilabel:`Solid` atau :" -"guilabel:`No brush`. Sebagai contoh, :guilabel:`Dense 7`:" - -# 1982b7d27eca4f6eb9e8e2db04056ef6 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:395 -msgid "" -"Click :guilabel:`OK` and then :guilabel:`OK` and take a look at your layer's " -"new symbology." -msgstr "" -"Klik :guilabel:`OK` dan kemudian :guilabel:`OK` dan lihatlah hasilnya pada " -"layer simbologi Anda yang baru" - -# fd1591d1e02d4a6684c7e404e9c85f70 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:401 -msgid "" -"Now try it yourself. Add an additional symbology layer to the :guilabel:" -"`Jalan_Sleman_OSM` layer." -msgstr "" -"Sekarang cobalah. Tambahkan beberapa simbologi tambahan pada layer :guilabel:" -"`Jalan_Sleman_OSM`." - -# daf0bae2376442f3927102ae0aa15700 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:404 -msgid "Give the thickness of the original layer a value of 2.0" -msgstr "Berikan ketebalan layer simbologi asli menjadi 2.0 " - -# 66dd849f44704e398e37c04e6ea2d3ec -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:405 -msgid "Give the thickness of the new symbology layer a value of 1.0" -msgstr "Berikan ketebalan dari layer simbologi yang baru menjadi 1.0" - -# 2ae9f7ef8add4dfa918c1f09965a7a80 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:407 -msgid "This will result in your roads looking something like this:" -msgstr "Hasilnya, jalan raya anda akan terlihat seperti ini: " - -# a912abe6c3244a56a230503b42a65f0b -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:412 -msgid "" -"Our streets now appear to have an outline, but they seem disjointed, as if " -"they don’t connect with each other. To prevent this from happening, we can " -"enable symbol levels, which will control the order in which the different " -"symbol layers are rendered." -msgstr "" -"Layer jalan kita sekarang sudah muncul dan memiliki garis luar, tetapi " -"mereka terlihat tidak tersambung, seolah-olah mereka terlihat tidak " -"menyambung satu sama lain. Untuk mencegah hal ini terjadi, Anda dapat " -"mengaktifkan simbol level, dimana kita akan mengontrol urutan dari layer " -"simbol berbeda yang akan diproses." - -# c7dbcc52ca8442f3ae1efc3f36542d54 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:418 -msgid "" -"In the Layer Properties dialog, go to :menuselection:`Advanced ‣ Symbol " -"levels...`:" -msgstr "" -"Pada dialog Properti Layer, pergi ke :menuselection:`Lanjutan ‣ Level " -"Simbol...`:" - -# a7124069e0a9467daab153f64fd6d122 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:424 -msgid "" -"The Symbol Levels dialog will appear. Check the box next to :guilabel:" -"`Enable symbol levels`." -msgstr "" -"Dialog Symbol Level akan muncul. Beri tanda centang pada kotak bertuliskan :" -"guilabel:`Enable symbol levels`." - -# 31728eefe4b94ad99defa4b22a193f51 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:430 -msgid "Your map will now look like this:" -msgstr "Peta anda sekarang akan terlihat seperti ini: " - -# 6235548687af43b9b522f60966e02cd0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:435 -msgid "" -"When you’re done, you can save the symbol itself in QGIS so that you won’t " -"have to do all this work again if you want to use the symbol in the future. " -"Save your current symbol style by clicking the :guilabel:`Save Style...` " -"button under the Style tab of the Layer Properties dialog." -msgstr "" -"Jika Anda sudah selesai, Anda dapat menyimpan simbol Anda sendiri pada QGIS " -"sehingga Anda tidak harus mengatur ulang seperti ini lagi jika Anda ingin " -"menggunakan kembali simbol yang sama ke depannya. Simpan simbol Anda dengan " -"mengklik tombol :guilabel:`Simpan Style...`... di bawah tab Style dari " -"dialog Properti Layer." - -# 71e318425a274bb2b48967c2c79a0b7f -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:441 -msgid "" -"Give your style file a name and save. You can load a previously saved style " -"at any time by clicking the :guilabel:`Load Style ...` button. Before you " -"change a style, keep in mind that any unsaved style you are replacing will " -"be lost." -msgstr "" -"Berikan style anda sebuah nama dan simpan. Anda dapat memuat ulang style " -"yang disimpan sebelumnya dengan mengklik tombol:guilabel:`Load Style ...` " -"Sebelum anda merubah sebuah style, perhatikan bahwa semua style yang anda " -"ganti akan hilang. " - -# 05268d7dc5044de4a8ea69ea485b4b9e -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:450 -msgid "" -"Try to change the appearance of the streets layer again, so that the roads " -"are dark grey or black, with a thin yellow outline and a dashed white line " -"running in the middle." -msgstr "" -"Cobalah untuk mengubah tampilan dari layer jalan kembali sehingga jalan " -"berwarna abu-abu atau hitam, dengan sebuah garis luar tipis berwarna kuning, " -"dan sebuah garis putih putus-putus di tengahnya." - -# f868039d754d4b60bb70965f3ffe4fe9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:458 -msgid "4.5 Classified symbology" -msgstr "4.5 Klasifikasi Simbologi" - -# 97c54c9861564d87a4850a607af026d0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:460 -msgid "" -"Symbol levels also work for classified layers (i.e., layers having multiple " -"symbols). We will cover classification in the next module, but you can see " -"how it works here with roads. By classifying various streets according to " -"their type, we can give them different symbologies and they will still " -"appear to flow into each other." -msgstr "" -"Simbol level juga berguna untuk layer yang memiliki kelas (misalnya, layer " -"yang memiliki berbagai macam simbol). Kita akan membahas klasifikasi ini di " -"bab selanjutnya, tetapi anda dapat melihat bagaimana caranya klasifikasi " -"simbol bekerja dengan objek jalan. Dengan mengkelaskan berbagai macam jalan " -"sesuai dengan tipe mereka masing-masing, kita dapat memberikan mereka simbol " -"yang berbeda-beda dan mereka akan muncul satu sama lain." - -# aec2f700916b4795bf453a1f69d28dcb -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:472 -msgid "4.6 Symbol layer types" -msgstr "4.6 Tipe Layer Simbol" - -# 1accd0191c2f44cb881a27d8495b58d2 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:474 -msgid "" -"In addition to setting fill colours and using predefined patterns, you can " -"use different symbol layer types entirely. The only type we’ve been using up " -"to now was the Simple Fill type. The more advanced symbol layer types allow " -"you to customise your symbols even further." -msgstr "" -"Sebagai tambahan untuk mengatur isi warna dan menggunakan pola yang sudah " -"tersedia, Anda dapat menggunakan tipe simbol layer yang berbeda. Tipe yang " -"hanya kita gunakan hingga saat ini adalah tipe Simple Fill. Semakin mahir " -"tentang tipe layer simbol maka Anda dapat mengatur simbol-simbol anda lebih " -"jauh lagi." - -# 897cc09b8ef54103b3f0f352346a719b -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:480 -msgid "" -"Each type of vector (point, line and polygon) has its own set of symbol " -"layer types." -msgstr "" -"Setiap tipe vektor (titik, garis, dan poligon) memiliki beberapa pengaturan " -"dari tipe layer simbol. " - -# 94feff4bff524e56bc5d145925b3b775 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:484 -msgid "4.6.1 Vector points" -msgstr "4.6.1 Vektor Titik" - -# 9a421190ba6844138ef3b5d2b46434d0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:486 -msgid "Open the symbol properties for the :guilabel:`POI_Sleman_OSM` layer:" -msgstr "Buka simbol properties untuk layer :guilabel:`POI_Sleman_OSM`: " - -# 58ef3d5dcc8b4791a3b48f5f0f4009ab -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:491 -msgid "" -"Access the various symbol layer types by clicking a symbol layer (1) then " -"clicking the drop-down box in the upper right corner (2)" -msgstr "" -"Anda dapat mengakses berbagai macam tipe simbol layer dengan mengklik sebuah " -"simbol lapisan (1) kemudian mengklik daftar pilihan pada pojok kanan atas (2)" - -# f7c240db37e744eaa8bfdcab21aee3a9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:497 -msgid "" -"Investigate the various options available to you, and choose a symbol layer " -"type other than the default Simple Marker." -msgstr "" -"Periksalah berbagai macam pilihan yang tersedia untuk anda, dan pilihlah " -"sebuah tipe simbol selain Simple Marker. " - -# 1e5627c21a614930bae81f602f623252 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:500 -msgid "If in doubt, use an Ellipse Marker." -msgstr "Jika Anda ragu, gunakan *Ellipse Marker*." - -# 1335fe7a893944d990af30a319652dba -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:502 -msgid "" -"Choose a white outline and dark fill, with a symbol width of 2.00 and symbol " -"height of 4.00." -msgstr "" -"Pilihlah sebuah garis luar berwarna putih dan fill warna gelap, dengan " -"menggunakan lebar simbol 2.00 dan panjang simbol 4.00." - -# e265d92356f84c1ea0557d7096c2f168 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:512 -msgid "4.6.2 Vector lines" -msgstr "4.6.2 Vektor Garis" - -# 2fb3c21bf8f2428991d087eda164167e -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:514 -msgid "" -"To see the various symbology options for vector lines, open the Layer " -"Properties for the streets layer, and click on the drop-down box:" -msgstr "" -"Untuk melihat berbagai macam pilihan simbologi pada vektor garis, buka " -"Properti Layer jalan dan klik pada kotak daftar pilihan:" - -# 51c6233424034e9e87a1f8f3aeb8b2b8 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:520 -msgid "Click :guilabel:`Marker line`." -msgstr "Klik :guilabel:`Penanda garis`." - -# 2ef7a9c184f54e1fb012525ad9748e90 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:525 -msgid "Click :guilabel:`Simple Marker` in the Symbol layers panel (1)." -msgstr "Klik :guilabel:`Penanda Sederhana` pada panel Layer Simbol (1):" - -# 138936d02341402785bb8b0bf45a8d39 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:530 -msgid "Change the symbol properties to match this dialog:" -msgstr "Ubahlah simbol properti dengan menyamakan dialog ini: " - -# 92332ed952c7495a8d7665bfa942a399 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:535 -msgid "" -"Click on :guilabel:`Marker line` in the Symbol layers panel, and change the " -"interval to 2.00:" -msgstr "" -"Klik pada :guilabel:`Penanda garis` di panel Layer Simbol, dan ubah interval " -"menjadi 2.00:" - -# 58a786b3aa74441d9f3de29cc22b3919 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:541 -msgid "" -"Once you have applied the style, take a look at its results on the map. As " -"you can see, these symbols change direction along with the road but don’t " -"always bend along with it. This is useful for some purposes, but not for " -"others. If you prefer, you can change the symbol layer in question back to " -"the way it was before." -msgstr "" -"Setelah anda mengaplikasikan style, lihat kembali bagaimana hasilnya pada " -"peta. Sebagaimana yang dapat anda lihat, simbol-simbol ini berubah arahnya " -"sesuai dengan jalan tetapi tidak selalu menikung. Ini sangat berguna untuk " -"beberapa tujuan, tetapi tidak untuk tujuan lain. Sekarang anda yang memilih, " -"anda dapat merubah layer simbol anda kembali seperti sedia kala." - -# 822cd5bfd81c4fbbacf6b84b12c935db -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:552 -msgid "4.6.3 Vector polygons" -msgstr "4.6.3 Vektor Poligon" - -# cc1cd3f8e55f452388427dc66e1c7adf -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:554 -msgid "" -"Now let’s change the symbol layer type for the :guilabel:`pemukiman` layer. " -"Take a look at the drop-down menu as you have done for the point and line " -"layers, and see what the various options can do." -msgstr "" -"Sekarang mari kita ubah jenis layer simbol untuk layer :guilabel:" -"`pemukiman`. Lihat pada menu pilihan seperti yang Anda lakukan pada layer " -"titik dan garis, dan lihat berbagai macam pilihan yang dapat Anda lakukan." - -# 703ecc3f5d3b4b2f9b236094483f7a55 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:561 -msgid "" -"Feel free to play around with the various options. We will use the Point " -"pattern fill with the following settings:" -msgstr "" -"Cobalah untuk menggunakan berbagai pilihan berbeda. Kita akan mencoba " -"mengisi pola titik dengan pengaturan sebagai berikut: " - -# 78498a3660a44ddd9ab09063299e18d9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:567 -msgid "Add a new symbol layer with a normal Simple fill." -msgstr "Tambahkan sebuah layer simbol baru dengan normal *Simple fill*." - -# a2945d8c399b4e8281d77cabfee37a57 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:569 -msgid "Make it grey with no outlines." -msgstr "Ubah warna menjadi abu-abu tanpa garis luar." - -# 87f3d223f648415f84a1a4a08586dac4 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:571 -msgid "" -"Move it underneath the point pattern symbol layer with the :guilabel:`Move " -"down` button:" -msgstr "Ubah posisinya ke bawah dengan tombol :guilabel:`Move down`:" - -# ba8849aedc994a7385e825ed15832a58 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:577 -msgid "The symbol properties should look like this:" -msgstr "Properti simbol seharusnya terlihat seperti ini:" - -# a79f0949c4be44808c44c4f4ddedf1b0 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:582 -msgid "" -"As a result, you have a textured symbol for the urban layer, with the added " -"benefit that you can change the size, shape and distance of the individual " -"dots that make up the texture." -msgstr "" -"Hasilnya, Anda memiliki sebuah simbol tekstur untuk layer pemukiman, dengan " -"tambahan tertentu, Anda dapat merubah besar, bentuk, dan jarak dari setiap " -"titik individu yang membentuk tekstur tersebut." - -# 2a0e741b92694c12a1bdb7cb13aa3ca9 -#: ../../source/training/old-training/beginner/qgis-inasafe/206-working-with-vector-data.rst:587 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Pergi ke modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.po deleted file mode 100644 index 7bda2ac2..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.po +++ /dev/null @@ -1,697 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2014 -# Dewi Sulistioningrum , 2013 -# Wulansari Khairunisa , 2013 -# Yantisa Akhadi , 2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:46+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# a973c5f559e14a4b9ac596153b2024c1 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:6 -msgid "Module 7: Labels and Classification" -msgstr "Modul 7: Label dan Klasifikasi" - -# 8a5c5539d12a40b38e27a4d8b8817c6a -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 5aa5b9a225314ffdb4958c45a0673e53 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:10 -msgid "" -"Explore attribute data of an object and understand the uses of different " -"types of data" -msgstr "" -"Menelusuri data atribut dari suatu objek dan memahami penggunaan berbagai " -"tipe data yang berbeda" - -# 4821600e65d4486181becb06521ec110 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:12 -msgid "Add labels to vector layers" -msgstr "Menambahkan label ke *layer* vektor" - -# 91816deeba7144b7aeee99337fce7518 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:13 -msgid "Symbolise vector data using categories" -msgstr "Melakukan simbolisasi data vektor dengan kategori" - -# e8af5eb984744a648429dc76e038f5c5 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:15 -msgid "" -"Up to now, none of the changes we have made to the map have been influenced " -"by the objects that are being shown. In other words, every type of " -"vegetation looks alike, and all the roads look alike. When looking at the " -"map, the viewers don’t know anything about the roads they are seeing; only " -"that there is a road of a certain shape in a certain area." -msgstr "" -"Hingga saat ini, belum ada perubahan yang kita buat pada peta yang " -"dipengaruhi oleh objek yang ditunjukkan. Dengan kata lain, setiap tipe " -"vegetasi tampilannya sama, setiap jenis jalan tampilannya sama. Ketika " -"melihat peta tersebut, orang tidak mengetahui jalan apa yang mereka lihat; " -"mereka hanya tahu bahwa ada jalan dengan bentuk tertentu di lokasi tertentu." - -# 7b0c7bdee03b40afa423835ec9f9d1f5 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:21 -msgid "" -"But the whole strength of GIS is that all the objects that are visible on " -"the map also have attributes. Maps in a GIS aren’t just pictures. They " -"represent not only objects in locations, but also information about those " -"objects. In this lesson we will explore the attribute data of an object and " -"understand what the various data can be useful for." -msgstr "" -"Namun kelebihan dari SIG adalah bahwa seluruh objek yang tampak pada peta " -"juga memiliki data atribut. Peta dalam SIG bukan sekedar gambar. Mereka " -"tidak hanya merepresentasikan lokasi objek, tetapi juga informasi tentang " -"objek tersebut. Pada pelajaran ini kita akan menelusuri data atribut dari " -"suatu objek dan memahami kegunaan dari berbagai data tersebut." - -# 266b98bc64ec4cbdbad3c9428ea13dd3 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:27 -msgid "" -"If you would like to start with the examples used in this module, begin by " -"opening the QGIS project :file:`sleman_2_6.qgs`." -msgstr "" -"Jika Anda ingin memulai dengan menggunakan contoh data yang digunakan pada " -"modul ini, mulailah dengan membuka proyek QGIS :file:`sleman_2_6.qgs`." - -# 96fed2611466438ba21e1959774f99c3 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:31 -msgid "1. Attribute data" -msgstr "1. Data atribut" - -# 05f8cdf1e1534490a187f5fa9a0e6094 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:33 -msgid "" -"Open the attribute table for the :guilabel:`POI_Sleman_OSM` layer by " -"selecting it in the Layers panel and clicking the :guilabel:`Open Attribute " -"Table` button (or right-click on the layer and select :menuselection:`Open " -"Attribute Table`)." -msgstr "" -"Buka tabel atribut dari *layer* :guilabel:`POI_Sleman_OSM` dengan memilih " -"layer tersebut pada panel Daftar Layer lalu klik tombol :guilabel:`Open " -"Attribute Table` (Anda juga dapat melakukan klik kanan pada layer tersebut " -"dan pilih :menuselection:`Open Attribute Table`)." - -# 65fccc3d38674b82a7edb44e3427bd51 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:42 -msgid "Which field would be the most useful to use as a label?" -msgstr "*Field* manakah yang paling berguna untuk dijadikan label?" - -# c1338f50d5ba4c509080e21a512b85a1 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:47 -msgid "" -"You now know how to use the attribute table to see what is actually in the " -"data you’re using. A dataset will only be useful to you if it has the " -"attributes that you care about. If you know which attributes you need, you " -"can quickly decide if you’re able to use a given dataset, or if you need to " -"look for another one that has the required attribute data." -msgstr "" -"Anda sekarang tahu bagaimana menggunakan tabel atribut untuk melihat apa " -"yang sebenarnya ada di dalam data yang Anda gunakan. Sebuah dataset hanya " -"akan berguna bagi Anda bila didalamnya terdapat atribut yang Anda inginkan " -"atau butuhkan, Jika Anda tahu atribut yang anda butuhkan, Anda dapat dengan " -"cepat memutuskan apakah Anda dapat menggunakan dataset tersebut, atau Anda " -"perlu melihat dataset lainnya yang memiliki data atribut yang dibutuhkan." - -# 878806b87bf54a4ebc07745c2d5825f1 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:53 -msgid "" -"Different attributes are useful for different purposes. Some of them can be " -"represented directly as text for the map user to see. Next we’ll see how to " -"use attributes as labels, so that users can see the text on your map." -msgstr "" -"Data atribut yang berbeda akan berguna untuk tujuan yang berbeda pula. " -"Beberapa diantaranya dapat direpresentasikan langsung sebagai teks agar " -"dapat dilihat oleh pengguna peta. Berikutnya kita akan melihat bagaimana " -"menggunakan data atribut sebagai label, sehingga pengguna dapat melihat teks " -"pada peta." - -# b01c0efc5b694db4b5b802100b5d4d12 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:58 -msgid "2. Label tool" -msgstr "2. Tool label" - -# 4e904a6525634dba9d6527e8a817763b -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:60 -msgid "" -"Labels can be added to a map to show any information about an object. Any " -"vector layer can have labels associated with it. Labels rely on the " -"attribute data of a layer for their content." -msgstr "" -"Label dapat ditambahkan ke dalam peta untuk menunjukkan informasi tentang " -"objek. Suatu *layer* vektor dapat memiliki label yang berkaitan dengan layer " -"tersebut. Label bergantung pada data atribut dari *layer* terkait." - -# 1ef969ea5c974af6a2e42d3710e64547 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:64 -msgid "" -"There are several ways to add labels in QGIS, but some are better than " -"others. You may notice that when you open the Layer Properties window for a " -"layer, there is a tab called “Labels.” While this tab is designed to put " -"labels on your map, it is not nearly as good as the so-called “Label Tool,” " -"which we will learn in this section. Before being able to access the Label " -"tool, you will need to ensure that it has been activated." -msgstr "" -"Ada beberapa cara untuk menambahkan label pada QGIS, tetapi beberapa cara " -"lebih baik dibandingkan yang lain. Anda mungkin memperhatikan bahwa ketika " -"Anda membuka jendela Properti dari sebuah layer, terdapat tab yang " -"bertuliskan “Labels.” Walaupun tab ini dirancang untuk memberikan label " -"dalam peta Anda, tab ini fungsinya tidak sebaik “Tool Label,” yang mana akan " -"kita pelajari pada bagian ini. Sebelum kita dapat mengakses tool Label, Anda " -"harus memastikan bahwa fitur ini telah diaktifkan." - -# f568e5082b4c496a81a14e037f1e79cb -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:71 -msgid "Go to the menu item :menuselection:`View ‣ Toolbars`." -msgstr "Pergi ke menu item :menuselection:`View ‣ Toolbars`." - -# c86d5aa197974cc4ad68e2dcd6b51c96 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:73 -msgid "" -"Ensure that the Label item has a checkmark next to it. If it doesn’t, click " -"on the Label item, and it will be activated. The Label toolbar looks like " -"this:" -msgstr "" -"Pastikan bahwa item Label telah memiliki tanda centang di sebelahnya. Jika " -"belum, klik pada item Label, dan fitur ini akan diaktifkan. Toolbar Label " -"tampak seperti ini:" - -# 9f4a1b6044004d1ab672c385e8eefc11 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:79 -msgid "" -"Click on the :guilabel:`POI_Sleman_OSM` layer in the Layers panel, so that " -"it is highlighted." -msgstr "" -"Klik layer :guilabel:`POI_Sleman_OSM` yang terdapat pada panel Daftar Layer, " -"sehingga layer tersebut tersorot." - -# eff10cab1d5b4b23b2dc7e30597250cf -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:82 -msgid "Click on the :guilabel:`Layer Labeling Options` button:" -msgstr "Klik tombol :guilabel:`Layer Labeling Options`:" - -# bc2086ee356d48738c8f82bce7b3f4ae -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:87 -msgid "This gives you the Layer labeling settings dialog." -msgstr "" -"Ketika Anda klik tombol tersebut, maka akan muncul halaman pengaturan Layer " -"Labelling." - -# 0d29d8994d7a4482a9082d5192533af0 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:89 -msgid "Check the box next to :guilabel:`Label this layer with...`" -msgstr "Centang kotak dengan tulisan :guilabel:`Label this layer with...`" - -# ff0611d4053749858b2b91cfe036a432 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:94 -msgid "" -"We must indicate which of the attribute fields we want to use for the " -"labels. The **NAME** field is the mostly likely candidate for a label, so " -"select NAME from the drop-down box:" -msgstr "" -"Kita harus menentukan field mana yang ingin kita gunakan untuk pemberian " -"label. Field **NAME** tampaknya merupakan field yang tepat untuk mewakili " -"objek dan dijadikan label, jadi mari kita pilih NAME dari daftar tersebut:" - -# fe90e8fc546e4fa6b1b95de9becb035a -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:101 -msgid "Click :guilabel:`OK`. The map should now have labels like this:" -msgstr "" -"Klik :guilabel:`OK`. Sekarang peta tersebut sudah muncul dengan label di " -"dalamnya seperti ini:" - -# 3d092562f7924387834417c496707b84 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:106 -msgid "" -"This is good, but as you can see, the labels are overlapping the points that " -"they are associated with. That doesn’t look very nice. The text is also a " -"bit larger than it needs to be. Let’s fix these problems!" -msgstr "" -"Apa yang ada saat ini tampak cukup baik, namun seperti yang dapat Anda " -"lihat, labelnya masih tumpang tindih dengan fitur titik dari objek tersebut. " -"Hal tersebut tidak tampak baik. Teksnya pun sedikit lebih besar daripada " -"yang seharusnya. Mari kita perbaiki permasalahan tersebut tersebut!" - -# 24c7e0e2d2d0409499ec76496516e708 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:110 -msgid "" -"Open the :guilabel:`Layer Labeling Options` again by clicking on its button." -msgstr "" -"Buka kembali :guilabel:`Opsi Pelabelan Lapisan` dengan klik pada tombolnya." - -# 7d344989406b46cba133e5cec06a9108 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:112 -msgid "Click on the :guilabel:`Text` tab to change the text properties:" -msgstr "Klik pada tab :guilabel:`Teks` untuk mengubah pengaturan teks: " - -# 0250207084f649b79ef4a10a20918384 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:117 -msgid "" -"A standard text change dialog appears, similar to those in many other " -"programs. Change the font to :kbd:`Arial` and size to :kbd:`9`." -msgstr "" -"Sebuah kotak dialog untuk mengubah teks akan muncul, serupa dengan yang " -"tampil di berbagai program lainnya. Ubah jenis huruf menjadi :kbd:`Arial` " -"dan ubah ukuran huruf menjadi :kbd:`9`. " - -# 6c99a71883e445e68e863e25a532252a -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:120 -msgid "" -"Now click on the :guilabel:`Buffer` tab to add a buffer space around the " -"text. Check the box labelled :guilabel:`Draw text buffer`." -msgstr "" -"Sekarang klik pada tab :guilabel: `Penyangga`untuk menambah efek penyangga " -"di sekitar teks. Beri tanda centang kotak yang bertulisakan :guilabel:" -"`Gambar penyangga teks`." - -# a8de625fb4204e3bbb530aab7f256a36 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:126 -msgid "Your labels will look like this:" -msgstr "Label Anda akan tampak seperti ini:" - -# 2eda5dea556043d49723d8518d5a4497 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:131 -msgid "" -"That’s the font problem solved! Now let’s look at the problem of the labels " -"overlapping the points." -msgstr "" -"Begitulah caranya mengatur tampilan huruf! Sekarang mari kita lihat " -"permasalahan label yang tumpang tindih dengan titik." - -# 04f13fd9482540e198454560544c2ac9 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:134 -msgid "In the Label window dialog, go to the :guilabel:`Placement` tab." -msgstr "Pada kotak dialog pengaturan label, klik tab :guilabel:`Penempatan`." - -# 09d5239d04fc4eb696310bb427fe46e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:136 -msgid "Change the value of :guilabel:`Distance` to :kbd:`2`." -msgstr "Ubah nilai dari :guilabel:`Jarak` menjadi :kbd:`2`." - -# 876b8ddd48114f54bd945d9c29a731cf -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:141 -msgid "" -"Click :guilabel:`OK`. The labels no longer hover over the icons, but are " -"“buffered” a short distance away:" -msgstr "" -"Klik :guilabel:`OK`. Dapat kita lihat, label tidak lagi berada di atas ikon " -"nya, namun sudah diberi sedikit jarak:" - -# 6caa338d934740b4b7fe296c8adb21c9 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:148 -msgid "Labelling lines" -msgstr "Memberi label pada objek garis" - -# 324135ff30e34e779d6a0b132be1e4c1 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:150 -msgid "" -"Now that you know how labelling works, there’s an additional problem. Points " -"and polygons are easy to label, but what about lines? If you label them the " -"same way as the points, they will look funny. Street name labels, for " -"example, should be parallel to the street lines, not hovering horizontally " -"above them. To make lines behave, we’ll need to edit some options." -msgstr "" -"Sekarang Anda telah mengetahui bagaimana cara kerja label, namun ada masalah " -"lainnya. Titik dan poligon mudah untuk diberi label, namun bagaimana dengan " -"garis? Jika Anda memberikan label pada garis dengan cara yang sama seperti " -"Anda melabeli titik, maka hasilnya akan tampak kurang bagus. Misalnya label " -"nama jalan, seharusnya sejajar dengan garis jalan, bukan dalam posisi " -"mendatar di garis jalan. Untuk memperbaikinya, kita perlu *edit* beberapa " -"pilihan." - -# b2aa414914b140b6a9a78e176d153195 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:156 -msgid "" -"Hide the :guilabel:`POI_Sleman_OSM` layer so that it doesn’t distract you." -msgstr "" -"Sembunyikan layer :guilabel:`POI_Sleman_OSM` sehingga tidak mengganggu " -"penglihatan Anda. " - -# af482234444648b68f1c6b44f2de9333 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:158 -msgid "" -"Activate labels for the :guilabel:`Jalan_Sleman_OSM` layer as before. " -"(Remember to use the Label tool on the toolbar, not the one in Label " -"Properties!)" -msgstr "" -"Aktifkan label untuk layer :guilabel:`Jalan_Sleman_OSM` seperti sebelumnya. " -"(Ingatlah untuk menggunakan tool *Label* pada *toolbar*, bukan yang ada pada " -"Properti Label!)" - -# 14fb62f99a2c413b81b8bba71d9ea6f4 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:162 -msgid "Set the font size to :kbd:`9` so that you can see more labels." -msgstr "" -"Aturlah ukuran huruf menjadi :kbd:`9` sehingga Anda dapat melihat lebih " -"banyak label. " - -# d4f05cf785604cbb866240eed1abc460 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:164 -msgid "Zoom in so that the scale is near 1:10000." -msgstr "Perbesar peta hingga skalanya sekitar 1: 10000." - -# 7c3cc432b52d48a483614f61f97dc13b -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:166 -msgid "" -"On the Label window’s :guilabel:`Placement` tab, choose the following " -"settings:" -msgstr "" -"Pada tab :guilabel:`Penempatan` pada kotak dialog Label, pilihlah pengaturan " -"seperti ini: " - -# 299bc482a7024612ad9e0390e021a3af -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:172 -msgid "The map will look somewhat like this, depending on scale:" -msgstr "Peta akan tampak seperti ini, tergantung pada skala:" - -# 2f66f19ee9b34c478ea6a2615c8b2d38 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:177 -msgid "" -"It’s good but still not ideal. For starters, some of the names appear more " -"than once, and that’s not always necessary. To prevent that from happening:" -msgstr "" -"Ini sudah tampak lebih baik daripada sebelumnya, namun masih belum ideal. " -"Beberapa nama jalan muncul lebih dari sekali, dan hal tersebut tidak " -"diperlukan. Untuk mencegah hal tersebut terjadi:" - -# 0538ec4debb444c1b0f226dc89adc8fb -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:181 -msgid "" -"Enable the option :guilabel:`Merge connected lines to avoid duplicate " -"labels` which is located on the :guilabel:`Rendering` tab." -msgstr "" -"Aktifkan pilihan :guilabel:`Gabungkan garis yang terhubung untuk menghindari " -"label ganda` yang berada pada tab :guilabel:`Merender`. " - -# c9d3ca3e33a740e1ac96d795e1b5e3e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:184 -msgid "" -"Another useful function is to prevent labels being drawn for features too " -"short to be of notice." -msgstr "" -"Fungsi lainnya yang berguna untuk mencegah label digambar untuk fitur-fitur " -"yang terlalu pendek untuk digambarkan." - -# b61962d7354a4e08810200550f127456 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:187 -msgid "" -"Also on the :guilabel:`Rendering` tab, set the value of :guilabel:`Suppress " -"labeling of features smaller than ...` to :kbd:`5.0 mm`. Observe the results " -"after you click :guilabel:`Apply`." -msgstr "" -"Pada tab :guilabel:`Merender`, atur pula nilai :guilabel:`Sembunyikan " -"labeling untuk fitur yang lebih kecil dari` menjadi :kbd:`5.0 mm`. " -"Perhatikan hasilnya setelah Anda klik :guilabel:`Apply`." - -# b9464bb94ae74e37973dc9f62fd138e2 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:194 -msgid "" -"Try out different settings on the :guilabel:`Placement` tab as well. As we " -"mentioned before, the horizontal option is not a good idea for roads in this " -"case, so let’s try the curved option instead!" -msgstr "" -"Cobalah berbagai pengaturan yang berbeda pada tab :guilabel:`Pengaturan " -"penempatan`. Seperti yang kita lihat sebelumnya, penempatan label secara " -"horizontal bukanlah ide yang baik untuk kasus ini, mari kita coba pilihan " -"melingkar! " - -# d0d76e17261a4fd19a8a5122e4bc3c10 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:201 -msgid "" -"Select :guilabel:`Curved` under :guilabel:`Placement`. Here’s the result:" -msgstr "" -"Pilih :guilabel:`Melingkar` yang berada pada tab :guilabel:`Penempatan`. " -"Hasilnya akan tampak seperti ini:" - -# a0c270869a074aba8536b8baa95d7282 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:206 -msgid "" -"As you can see, this hides a lot of the labels that were previously visible, " -"because of the difficulty of making some of them follow twisting street " -"lines and still be legible. You can decide which of these options to use, " -"depending on what you think seems more useful or what looks better." -msgstr "" -"Seperti yang Anda lihat, ada banyak label yang sebelumnya tampak namun kini " -"tersembunyi, karena karena kesulitan membuat beberapa dari mereka mengikuti " -"garis jalan memutar dan masih dapat dibaca. Anda dapat memutuskan mana dari " -"pilihan ini yang akan Anda gunakan, tergantung dari mana yang menurut Anda " -"berguna." - -# f6ab2f1656db41f7aba2f17711de31b1 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:211 -msgid "" -"Now that you know how attributes can make a visual difference for your map, " -"how about using them to change the symbology of objects themselves? That’s " -"the topic for the next section!" -msgstr "" -"Sekarang Anda tahu bagaimana atribut dapat membuat perbedaan tampilan visual " -"pada peta Anda, bagaimana menggunakannya untuk mengubah simbologi dari objek-" -"objek itu sendiri? Itulah topik yang akan kita bahas pada bagian berikutnya!" - -# b647c45cc95e42999c9bf04d9578153d -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:216 -msgid "3. Classification" -msgstr "3. Klasifikasi" - -# 17de942653034c40acfcb339edb10575 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:218 -msgid "" -"Labels are a good way to communicate information such as the names of " -"individual places, but they can’t be used for everything. For example, let’s " -"say that we want to show which district each feature in our vegetation layer " -"is in. Using labels, it would look like this:" -msgstr "" -"Pemberian label adalah cara yang baik untuk mengkomunikasikan informasi " -"seperti nama dari suatu tempat, namun label tidak dapat digunakan untuk " -"semua hal. Sebagai contoh, misalnya kita ingin menunjukkan tiap jenis " -"vegetasi tersebut berada di kecamatan mana. Dengan menggunakan label, akan " -"tampak seperti ini: " - -# 4d6be07aec4741a9aa8c0fb2807dbf6c -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:226 -msgid "" -"Obviously this is not ideal, so we need another solution. That’s what this " -"lesson is about! In this section, we will learn how to classify vector data " -"effectively." -msgstr "" -"Bisa kita lihat, hal tersebut tampak tidak ideal, jadi kita membutuhkan " -"solusi yang lain. Itulah yang akan kita pelajari pada bagian ini! Pada " -"bagian ini, kita akan mempelajari bagaimana melakukan klasifikasi data " -"vektor dengan efektif." - -# 450b6fa5ab7f45329100d74ffab7a5c8 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:231 -msgid "3.1 Classifying nominal data" -msgstr "3.1 Mengklasifikasikan data nominal" - -# 4c7b6cb381ad4f57a4b8e525ffa6d14f -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:233 -msgid "Open Layer Properties for the :guilabel:`vegetasi` layer." -msgstr "Buka Properti Layer dari layer :guilabel:`vegetasi`." - -# 3cdaa89c4c1a43dbb842b6de486ddf76 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:235 -msgid "Go to the :guilabel:`Style` tab." -msgstr "Pilih tab :guilabel:`Style`." - -# b2ff2ecb292347a492bde9e6d7dc0f32 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:237 -msgid "Click on the drop-down box that says :guilabel:`Single Symbol`." -msgstr "Klik pada kotak pilihan yang bertuliskan :guilabel:`Simbol Tunggal`." - -# 91b9367435e745e08ac72ceed8400bc1 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:242 -msgid "Change it to :guilabel:`Categorized`. The interface will change:" -msgstr "Ubah menjadi :guilabel:`Dikategorikan`. Tampilannya akan berubah: " - -# 01e5b481a413494a80f08bb81b4c92ce -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:247 -msgid "" -"Change the :guilabel:`Column` field to :guilabel:`guna_lahan` and the :" -"guilabel:`Color ramp` to :guilabel:`Spectral`:" -msgstr "" -"Ubah isian :guilabel:`Kolom` menjadi :guilabel:`guna_lahan` dan :guilabel:" -"`Degradasi warna` menjadi :guilabel:`Spectral`:" - -# ec06ebac54a342eea34c239b9dbd3ce7 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:253 -msgid "Click the button labelled :guilabel:`Classify`:" -msgstr "Klik pada tombol bertuliskan :guilabel:`Klasifikasi`:" - -# 538fbfe591e643bc9c4628656679820e -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:258 -msgid "Click :guilabel:`OK`. You’ll see something like this:" -msgstr "Klik :guilabel:`OK`. Anda akan melihat seperti ini:" - -# 83d00dbf62384b2f9c89861b5d0394ab -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:263 -msgid "" -"In the Layers panel, click the plus sign next to the :guilabel:`vegetasi` " -"layer. This will show more information about the layer classification and " -"styles." -msgstr "" -"Pada panel Layer, klik tanda plus di samping layer :guilabel:`vegetasi`. " -"Maka akan mucul lebih banyak informasi tentang klasifikasi pada layer " -"tersebut berikut simbolnya." - -# b3b5c6deab374e5792e4c7364f2010e4 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:270 -msgid "" -"So, this is useful! But it hurts your eyes to look at it, so let’s see what " -"we can do about that." -msgstr "" -"Lihatlah, ini sangat berguna! Namun agak mengganggu bagi mata untuk dilihat, " -"jadi mari kita lihat apa yang dapat kita lakukan. " - -# a3e32d3fa434405aa55763f68ed44961 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:273 -msgid "" -"Open :guilabel:`Layer Properties` and go to the :guilabel:`Style` tab again." -msgstr "" -"Buka :guilabel:`Layer Properties`dan pergi ke tab :guilabel:`Style` lagi. " - -# 507fbf02041a4d6fa71c8244cd1e8f2f -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:275 -msgid "Click the :guilabel:`Change` button next to :guilabel:`Symbol`." -msgstr "Klik tombol :guilabel:`Ubah...` di sebelah :guilabel:`Simbol`." - -# fab75d13bdc9441fa35dc8ea68865e07 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:280 -msgid "" -"Remove the outline as you did in the previous module (change the border " -"style to “No Pen”)." -msgstr "" -"Hilangkan garis tepi seperti yang Anda lakukan pada modul sebelumnya (Ubah " -"style tepi menjadi “Tidak ada pena”)." - -# a5a5fe87c1814168af3d8ed3978660b4 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:283 -msgid "Click the :guilabel:`Delete all` button." -msgstr "Klik tombol :guilabel:`Hapus semuanya`." - -# dbae775e71f64abd828126b244d8d635 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:288 -msgid "Now click :guilabel:`Classify` again, and new symbols will appear." -msgstr "" -"Sekarang klik lagi :guilabel:`Klasifikasi`, maka simbol baru akan muncul. " - -# 8c00083a23dd4d57bc85b8c4c9d96a92 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:290 -msgid "" -"Change the colour for each type of vegetation by double-clicking on the " -"coloured block next to its name. You can change the colour for each type of " -"vegetation to something that you think is more applicable." -msgstr "" -"Ubah warna untuk tiap jenis vegetasi dengan melakukan klik dua kali pada " -"kotak warna yang terletak di samping nama vegetasi. Anda dapat mengubah " -"warna untuk tiap jenis vegetasi sesuai dengan yang Anda inginkan. " - -# 6b5cdfd8e8dc46f2833a0832c2da3ace -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:297 -msgid "" -"Notice that the category on the bottom is empty. Select it, and click the :" -"guilabel:`Delete` button." -msgstr "" -"Perhatikan bahwa kategori yang paling bawah kosong. Pilihlah kategori yang " -"kosong tersebut, dan klik tombol :guilabel:`Hapus`." - -# d2a04fb67da84ea1b0a48f9ebb5d2194 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:300 -msgid "When we click :guilabel:`OK` our map looks like this:" -msgstr "Ketika kita klik :guilabel:`OK`, peta kita akan tampak seperti ini: " - -# 105372a32cc0482a83623381ea49b264 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:305 -msgid "" -"If you feel confident in your new classification skills, try to classify the " -"residential layer yourself. Use darker colours to distinguish it from " -"vegetation." -msgstr "" -"Jika Anda sudah cukup puas dengan kemampuan klasifikasi ini, cobalah untuk " -"melakukan klasifikasi layer permukiman. Gunakan warna yang lebih gelap untuk " -"membedakannya dengan layer vegetasi. " - -# dedcf745ce6e4800ba7a45ad8fb0e0a6 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:310 -msgid "3.2 Ratio classification" -msgstr "3.2 Klasifikasi data rasio" - -# 4a7dca283b084a9bad235e734f0731af -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:312 -msgid "" -"In the previous example, we classified the :guilabel:`vegetasi` layer by " -"what is known as nominal classification. This type of classification is when " -"categories are defined based on names. Next we will classify the :guilabel:" -"`pemukiman` layer based on the size of each feature. Classifying with " -"attributes that contain only positive numbers, such as land area, is known " -"as ratio classification." -msgstr "" -"Pada contoh sebelumnya, kita mengklasifikasikan layer :guilabel:`vegetasi` " -"dengan cara yang dikenal sebagai klasifikasi nominal. Tipe klasifikasi ini " -"digunakan ketika kategori dibuat berdasarkan nama. Berikutnya kita akan " -"melakukan klasifikasi terhadap layer :guilabel:`permukiman` berdasarkan luas " -"tiap fitur. Melakukan klasifikasi data atribut yang hanya memuat angka " -"positif, seperti lahan, disebut sebagai klasifikasi rasio. " - -# 7397f0910eff46a3a444f3fc5b1ccd03 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:319 -msgid "" -"Open the Attribute Table for the :guilabel:`pemukiman` layer. Notice the " -"final column, :guilabel:`luas_ha`. This attribute contains the size of the " -"land area contained within that feature polygon." -msgstr "" -"Buka Tabel Atribut dari layer :guilabel:`pemukiman`. Perhatikan kolom " -"terakhir, :guilabel:`luas_ha`. Kolom ini berisi luas lahan pada fitur " -"poligon tersebut. " - -# 6b2727653d354808b01cae1b7a4e1559 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:326 -msgid "Open the Layer Properties for :guilabel:`pemukiman`." -msgstr "Buka Properti Layer dari layer :guilabel:`permukiman`." - -# 2dd4a5a3ce224a8dafcfa95cc262242d -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:328 -msgid "" -"Change the style type to :guilabel:`Graduated` and use :guilabel:`luas_ha` " -"as the :guilabel:`Column`." -msgstr "" -"Ubah tipe simbologi menjadi :guilabel:`Graduated` dan gunakan :guilabel:" -"`luas_ha` sebagai :guilabel:`Kolom`." - -# 0dde8bd87cc14aceb0fe1fa9cf09abf0 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:334 -msgid "" -"Because we are categorising with numbers this time, a colour gradient will " -"be useful for representing our categories. Click on :guilabel:`Oranges` next " -"to :guilabel:`Color ramp` and then click :guilabel:`Classify`." -msgstr "" -"Karena kali ini kita melakukan kategorisasi berdasarkan angka, gradasi warna " -"akan lebih baik untuk merepresentasikan kategorinya. Klik pada :guilabel:" -"`Oranges` pada :guilabel:`Degradasi warna`, lalu klik :guilabel:" -"`Klasifikasi`. " - -# 3a6fe4d0a9134b10adcdac47ab3a2f1d -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:341 -msgid "Now you’ll have something like this:" -msgstr "Sekarang Anda akan melihat seperti ini: " - -# bf5773a26cd344c797ff4bed8740cde9 -#: ../../source/training/old-training/beginner/qgis-inasafe/207-labels-and-classification.rst:347 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.po deleted file mode 100644 index 2bc32053..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.po +++ /dev/null @@ -1,750 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2014 -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# elida nurrohmah , 2014 -# Emir Hartato , 2014 -# mahardika fadmastuti , 2014 -# Werner Macho , 2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:49+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 9f15568ef0d74a758c59de34d22931aa -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:6 -msgid "Module 8: Working with Raster Data" -msgstr "Modul 8 : Bekerja dengan Data Raster" - -# 40d6ccf2c7b24b2aab00c7b52db759ce -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# bfa6bccb8e334977a552f7fd466b6bd7 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:10 -msgid "Create raster data" -msgstr "Membuat data raster" - -# b041ef844873499895b064e66c70b00f -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:11 -msgid "Change raster symbology" -msgstr "Mengubah simbologi raster" - -# 442bec90bac94e989f4cc03e423e8340 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:12 -msgid "Perform terrain analysis" -msgstr "Melakukan analisis medan" - -# faa171497dea4fff81db1d35badf7365 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:14 -msgid "" -"Thus far we’ve worked mostly with vector data, which consists of features, " -"and these features are themselves made up of points and lines. In this " -"module we will learn about raster data. Remember when you were editing " -"OpenStreetMap in JOSM? The points, lines and shapes that you drew were " -"vector data. But when you loaded Bing aerial imagery in the background, that " -"was raster data. So what’s the difference?" -msgstr "" -"Sampai saat ini, sebagian besar kita bekerja dengan data vektor, yang " -"terdiri dari fitur-fitur, dan setiap fitur tersebut terdiri dari titik dan " -"garis. Dalam modul ini, kita akan belajar tentang data raster. Masih ingat " -"ketika Anda mengedit data OpenStreetMap pada JOSM? Titik, garis, dan bentuk " -"yang Anda gambar adalah data vektor. Tetapi, ketika Anda menambahkan citra " -"satelit Bing sebagai latar belakang, itu adalah data raster. Jadi apa " -"perbedaannya ?" - -# 93b78af50eda470b863db9c93f225ee4 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:21 -msgid "" -"Raster data essentially comes in the form of an image. It is made up of " -"pixels, like a photograph, and a raster image will always be some number of " -"pixels wide and some number of pixels high. If you zoom in far enough on a " -"raster image, it will start to become blurry, just as if you opened a photo " -"on your computer and zoomed in very close. As we’ll see in this module, " -"however, a raster image can mean more than just a photograph from the sky. " -"Follow along and we’ll learn all about rasters!" -msgstr "" -"Data raster pada dasarnya berupa gambar. Data raster terdiri dari piksel, " -"seperti halnya foto, dan sebuah data raster selalu tersusun dari sejumlah " -"piksel lebar dan sejumlah piksel tinggi. Jika Anda memperbesar sampai cukup " -"jauh pada data raster, tampilan dari data raster tersebut akan menjadi tidak " -"jelas, seperti jika Anda membuka sebuah foto di komputer Anda dan diperbesar " -"sampai cukup jauh. Sebagaimana kita akan melihat dalam modul ini, sebuah " -"data raster lebih dari sekedar fotografi dari udara. Ikuti bersama dan kita " -"akan mempelajari semua tentang raster!" - -# 0e456197d0f64feda17ab4cb286be71e -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:30 -msgid "1. Loading raster data" -msgstr "1. Memuat data raster " - -# 6ca5f4837d644deca4b51e721b97b9cc -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:32 -msgid "" -"Open the project named :file:`sleman_2_7.qgs` in the directory :file:`qgis/" -"`. We’ve simplified the project since the last module to make it easier to " -"follow along, and so that our layers load a bit faster. However, if you are " -"comfortable you can easily carry on with your project from the previous " -"module." -msgstr "" -"Buka proyek dengan nama :file:`sleman_2_7.qgs` dalam direktori :file:`qgis/" -"`. Kami telah menyederhanakan proyek tersebut dengan bab terakhir kami, " -"untuk membuatnya lebih mudah untuk diikuti, dan agar layer tersebut bekerja " -"lebih cepat. Namun, jika Anda merasa nyaman, Anda dapat melanjutkan proyek " -"Anda dari modul sebelumnya." - -# de634aea15f24f1098d340f46eae8d80 -# eefa291ffbca4373a60a7f3af152d07c -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:38 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:86 -msgid "Click on the :guilabel:`Load Raster Layer` button:" -msgstr "Klik pada tombol :guilabel:`Tambahkan Layer Raster`:" - -# ff91d1fa979242e7855f912926727e09 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:43 -msgid "" -"The Load Raster Layer dialog will open. Find the file in the directory :file:" -"`Sleman/` named :file:`Sleman.tif`. Open it." -msgstr "" -"Kotak dialog Memuat Layer Raster akan terbuka. Temukan file :file:`Sleman." -"tif` pada direktori :file:`Sleman/`. Buka file tersebut." - -# 7f6a086eeb3c49b1a2a23ade6830308c -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:46 -msgid "" -"QGIS will open a dialog which explains that the new layer does not have a " -"CRS assigned. In the box at the bottom, scroll down until you find **WGS " -"84 / UTM zone 49S**. Select it and click :guilabel:`OK`." -msgstr "" -"QGIS akan membuka kotak dialog yang menjelaskan bahwa layer baru tidak " -"mempunyai CRS. Dalam kotak di bagian bawah, temukan **WGS 84 / UTM zone " -"49S**. Pilih itu dan klik :guilabel:`OK`." - -# 98a7c62ac5944ff5834a1c86dc177957 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:53 -msgid "" -"When the raster layer loads, be sure to drag it to the bottom of the list in " -"the Layers panel." -msgstr "Ketika layer raster termuat, pastikan ada di daftar layer Anda. " - -# 3b9a53f3af274860ad0030d0f04ea050 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:56 -msgid "" -"If you can’t see the raster layer, you may need to enable 'on the fly' " -"transformations. To do so:" -msgstr "" -"Jika Anda tidak dapat menemukan layer raster, Anda mungkin harus " -"mengaktifkan transformasi 'on the fly'. Langkah yang harus dilakukan:" - -# d65f727848454847957216f4d6eadd4d -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:59 -msgid "Go to :menuselection:`Project ‣ Project Properties...`" -msgstr "Pergi ke :menuselection:`Proyek ‣ Properti Proyek...`" - -# 28baebc695d84209b0c885a260a9f4dc -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:60 -msgid "" -"Check the box next to :guilabel:`Enable 'on the fly' CRS transformation`." -msgstr "" -"Beri tanda centang pada kotak di samping :guilabel:`Enable 'on the fly' CRS " -"transformation`." - -# e0ad13629b6e42b2a1276675c5493d9f -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:61 -msgid "Click :guilabel:`OK`." -msgstr "Klik :guilabel:`OK`." - -# b9c33743877c4e90b391085216191127 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:66 -msgid "The raster should display nicely underneath your vector data layers." -msgstr "Raster seharusnya ditampilkan dibawah layer data vektor. " - -# 9b9a67a3d8124f9e96a9cb7c951605a7 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:74 -msgid "2. Changing raster symbology" -msgstr "2. Mengubah simbologi raster" - -# 8c51673663994c8a89190530d884797d -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:76 -msgid "" -"Not all raster data consists of aerial photographs. There are many other " -"forms of raster data, and in many of those cases, it’s essential to " -"symbolise the data so that it becomes properly visible and useful. In this " -"section we’ll add a new kind of raster and see how to change it’s symbology." -msgstr "" -"Tidak semua data raster terdiri dari foto udara. Ada banyak bentuk lain dari " -"data raster, dan dalam banyak kasus, sangat penting untuk melakukan " -"simbolisasi data sehingga data raster tersebut menjadi lebih terlihat dengan " -"baik dan lebih berguna. Pada bagian ini kita akan menambahkan jenis data " -"raster yang baru dan melihat bagaimana mengubah simbologinya." - -# 1a5feb21a4794919b8496df0925bd3ce -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:82 -msgid "" -"First let’s remove our previous raster image so that our project will load " -"faster. Right-click on the :guilabel:`Sleman` layer and click :guilabel:" -"`Remove`." -msgstr "" -"Pertama, mari kita hilangkan data raster sebelumnya sehingga proyek kita " -"dapat bekerja dengan lebih cepat. Klik kanan pada layer :guilabel:`Sleman` " -"dan klik :guilabel:`Remove`. " - -# 78c89ec577ff4fef8336d1216613a61c -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:91 -msgid "" -"Open the file named :file:`SRTM_Sleman.tif`, which is located in :file:" -"`Sleman/SRTM/`." -msgstr "" -"Buka file dengan nama :file:`SRTM_Sleman.tif`, yang berada pada folder :file:" -"`Sleman/SRTM`." - -# 56be720d571d40dcadcb9ae4c06af03c -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:94 -msgid "" -"When it appears in the Layers panel, right-click on it and click :guilabel:" -"`Rename`. Give it the name :kbd:`DEM`." -msgstr "" -"Ketika muncul pada panel Daftar Layer, klik kanan pada nama layer dan klik :" -"guilabel:`Rename`. Beri nama :kbd:`DEM`." - -# 7adb61bcb5904bf596c71659ee11f71f -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:97 -msgid "" -"This dataset is a Digital Elevation Model (DEM). It’s a map of the elevation " -"(altitude) of the terrain, showing us where the mountains and valleys are. " -"In an aerial photograph, each pixel in the image is a colour. When we view " -"all of these different coloured pixels together, they show us something we " -"can understand - the Earth as viewed from above. In a DEM, each pixel has a " -"different value instead of colour. The value of each pixel represents " -"elevation." -msgstr "" -"Dataset ini adalah suatu Model Elevasi Digital (DEM). DEM merupakan peta " -"ketinggian (altitude) dari suatu medan, yang menunjukkan pada kita gunung " -"dan lembah. Dalam foto udara, sebuah piksel dalam gambar adalah warna. " -"Ketika kita melihat perbedaan warna untuk setiap piksel, mereka menunjukkan " -"sesuatu yang dapat dimengerti – keadaan rupa bumi yang terlihat dari atas. " -"Dalam DEM, setiap piksel memiliki nilai yang berbeda untuk setiap warna. " -"Nilai dari setiap piksel merepresentasikan ketinggian." - -# 5c6ca1b12ea449d1bc8337375b877776 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:105 -msgid "" -"When it loads, you’ll notice that the new raster image appears as a grey " -"rectangle. It’s seen here with the roads layers on top:" -msgstr "" -"Ketika layer dimuat, Anda akan mendapatkan tampilan dari data raster " -"tersebut muncul sebagai kotak yang berwarna abu-abu. Jalan akan terlihat " -"bila diletakkan diatas raster:" - -# 2dc8394444194ca2b6c8087b0962baac -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:111 -msgid "" -"The layer appears grey (and doesn’t give us any information) because its " -"symbology hasn’t been customised yet. In the colour aerial photograph we " -"loaded previously, everything is already defined. But if you load a raster " -"image and it’s just a grey rectangle, then you know there’s no symbology for " -"it yet. It still needs to be defined. That’s what we will do next." -msgstr "" -"Layer mucul dengan warna abu-abu (dan tidak memberikan informasi apapun) " -"karena simbologinya belum diatur. Dalam warna foto udara yang dimuat " -"sebelumnya, semuanya sudah ditentukan. Tetapi jika Anda memuat data raster " -"dan tampilannya hanya abu-abu, Anda mengetahui bahwa belum ada simbologi " -"untuk layer ini. Simbologi untuk layer ini perlu didefinisikan. Itulah yang " -"akan kita lakukan sekarang. " - -# 7bf5033f7adb4cf38ee1e0979b07185a -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:117 -msgid "" -"Open the Layer Properties dialog for the SRTM layer, which is now named :" -"guilabel:`DEM`." -msgstr "" -"Buka kotak dialog Properti Layer pada layer SRTM, yang sekarang diberi nama :" -"guilabel:`DEM`." - -# 055c6268aa9140ec9d510246a674fa46 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:120 -msgid "" -"Switch to the :guilabel:`Style` tab. This shows the current symbology " -"settings, and as we’ve seen, they don’t give us much information on the " -"layer. Let’s make sure the layer has data in it." -msgstr "" -"Arahkan ke tab :guilabel:`Style`. Tab ini menunjukkan pengaturan simbologi " -"yang saat ini diterapkan pada layer, dan seperti yang kita lihat, simbologi " -"tersebut tidak memberi kita banyak informasi pada layer. Mari kita pastikan " -"layer ini memiliki data di dalamnya." - -# 31418127e89340189ce6dc18583f043f -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:124 -msgid "" -"Change the :guilabel:`Render type` to :guilabel:`Singleband pseudocolor`." -msgstr "" -"Ubah :guilabel:`Render type` menjadi :guilabel:`Singleband pseudocolor`." - -# ede92d29ceae46d081d2087d34f26675 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:129 -msgid "Click :guilabel:`OK`. The raster should look like this:" -msgstr "Klik :guilabel:`OK`. Layer raster akan terlihat seperti ini:" - -# 428f03d75a9d489a90da204906297982 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:134 -msgid "" -"Good! This tells us that there is data in this layer. And by looking at it " -"we can get an idea of where the elevation gets higher. In the north we can " -"see the location of Mount Merapi." -msgstr "" -"Ini memberitahu kita bahwa ada data dalam layer ini dan dengan melihat itu " -"kita bisa mendapatkan ide dari mana ketinggian semakin tinggi. Di utara kita " -"bisa melihat lokasi Gunung Merapi." - -# 0eb5043c1cfa4c0cad762255e918c8cc -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:138 -msgid "" -"Let’s stop for a minute and understand what is happening here. Remember that " -"an image is made up of pixels, individual cells that contain a value, which " -"is usually a colour value. For example, if you zoom in very closely on a " -"photograph you can see those individual pixels, like this:" -msgstr "" -"Mari berhenti beberapa menit dan memahami apa yang terjadi. Ingatlah bahwa " -"data raster terdiri dari piksel, dimana setiap piksel memiliki sebuah nilai, " -"yang biasanya digambarkan dengan nilai warna. Sebagai contoh, jika Anda " -"memperbesar sebuah foto hingga sangat dekat, Anda dapat melihat setiap " -"piksel-piksel tersebut, seperti ini:" - -# 491fe850ef9b412fa921f8024f648d26 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:146 -msgid "" -"The value of each cell is saved in the file. Imagine the file being saved " -"something like this, where each square is a pixel:" -msgstr "" -"Nilai dari setiap sel disimpan dalam file. Bayangkan file disimpan dalam " -"sesuatu seperti ini, dimana setiap persegi adalah sebuah piksel:" - -# 97125d6a94f94d8489882028ea94314f -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:152 -msgid "" -"Of course the computer doesn’t understand words for colours. In fact the " -"value of each cell would be a number, which the computer then associates " -"with a certain colour. For our aerial image, this is already defined. Since " -"it is a normal image, it knows to associate the numbers for each pixel in " -"the file with the common colours that we see every day. But this new raster " -"image is different, because the values of each pixel don’t represent " -"colours, but rather altitude, and QGIS doesn’t know automatically how to " -"display it. Hence it shows every pixel in the image as grey, even if the " -"values in each pixel are different. When we change the symbology to " -"Psuedocolor, we can see all the different pixel values shown with various " -"colours." -msgstr "" -"Tentunya komputer tidak mengerti kata untuk warna. Pada kenyetaannya nilai " -"dari setiap sel memiliki angka, yang mana komputer kemudian " -"mengasosiasikannya dengan warna tertentu. Untuk citra satelit, angka-angka " -"tersebut sudah didefinisikan. Jika gambar kita adalah gambar yang normal " -"sebagaimana gambar pada umumnya, komputer dapat mengasosiasikan angka-angka " -"pada setiap piksel dalam file dengan warna-warna pada umumnya yang kita " -"lihat setiap hari. Tapi, data raster baru ini berbeda, karena nilai-nilai " -"dari setiap piksel tidak merepresentasikan warna, melainkan ketinggian, dan " -"QGIS tidak tahu bagaimana untuk secara otomatis menampilkannya. Oleh karena " -"itu, QGIS merepresentasikan setiap piksel dalam layer raster dengan warna " -"abu-abu, bahkan jika nilai dalam setiap piksel berbeda. Ketika kita mengubah " -"simbologi menjadi Psuedocolor, kita dapat melihat semua nilai piksel yang " -"berbeda yang ditunjukkan dengan warna yang berbeda-beda pula." - -# 6ab3c0febe8a496eb12e1a9dcb4767aa -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:163 -msgid "" -"It would be nice to represent our DEM layer as a greyscale spectrum, rather " -"than a variety of bright colours.. Next we will tell QGIS to symbolise the " -"layer with colours in a spectrum, beginning at the lowest pixel value in the " -"file and ending at the highest pixel value. In other words, if the pixel " -"values looked like this:" -msgstr "" -"Akan lebih tepat untuk menampilkan layer DEM sebagai spektrum abu-abu " -"daripada menggunakan variasi warna yang terang. Selanjutnya kita akan " -"mempelajari QGIS untuk melakukan simbolisasi layer dengan warna dalam " -"spektrum, dimulai dari nilai piksel terendah dalam file dan diakhiri dengan " -"nilai piksel tertinggi. Dengan kata lain, piksel akan terlihat seperti ini:" - -# bc1a13845bc8454d98bc439a04c65482 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:172 -msgid "QGIS would create a spectrum equating numbers to colours like this:" -msgstr "" -"QGIS akan membuat spektrum dengan menyamakan angka-angka untuk warna " -"tertentu seperti ini:" - -# 6bacca0798bb4e76a6de1b9cb8758beb -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:177 -msgid "And render the image like this:" -msgstr "Dan citra akan terlihat seperti ini:" - -# a190cae558864258b6f912fecd878486 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:182 -msgid "Open the Layer Properties again." -msgstr "Buka Properti Layer lagi." - -# 9e0f2d36adb84849906d047147b76fa7 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:184 -msgid "Switch the render type back to :guilabel:`Singleband gray` (1)." -msgstr "Ubah kembali tipe render menjadi :guilabel:`Pitatunggal abu-abu` (1)." - -# cdfa4d15a6b143bea10da9f36287b3ce -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:186 -msgid "Check the box next to :guilabel:`Min / max` (2)." -msgstr "Beri tanda centang pada kotak di samping :guilabel:`Min / max` (2)." - -# d426cafdbd3e46c8a1b3f3ffa893cc40 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:188 -msgid "" -"Next to :guilabel:`Contrast enhancement`, select :guilabel:`Stretch to " -"MinMax` (3)." -msgstr "" -"Di samping :guilabel:`Perbaikan Kontras`, pilih :guilabel:`Stretch to " -"MinMax` (3)." - -# af53a409ad154011be19811d785ad03d -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:194 -msgid "" -"But what are the minimum and maximum values that should be used? The " -"current values are those that just gave us a grey rectangle. Instead, we " -"should be using the minimum and maximum pixel values that are actually in " -"the image. You can determine those values easily by loading the minimum and " -"maximum values of the raster." -msgstr "" -"Tetapi, berapa nilai minimum dan maksimum yang harus digunakan ? Kita harus " -"menggunakan nilai piksel minimum dan maksimum sebenarnya yang ada dalam " -"gambar. Anda dapat menentukan nilai-nilai tersebut dengan mudah dengan cara " -"memuat nilai-nilai minimum dan maksimum dari data raster tersebut." - -# 335946ce682544f1ac034d4bfc37309e -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:201 -msgid "" -"Under :guilabel:`Load min / max values`, select :guilabel:`Estimate " -"(faster)`." -msgstr "" -"Di bawah :guilabel:`Panggil nilai min/maks`, piilih :guilabel:`Estimasi " -"(lebih cepat)`." - -# a09a184e884d4f4a81fc1b7bf3fc4fb4 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:204 -msgid "Click the :guilabel:`Load` button:" -msgstr "Klik tombol :guilabel:`Muat`:" - -# 37ef34ce8c2d4f3db08e19b76f0d5982 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:209 -msgid "" -"Notice how the custom :guilabel:`Min` and :guilabel:`Max` values have " -"changed. The lowest pixel value in this image file is 0 and the highest is " -"about 3294." -msgstr "" -"Lihat bagaimana nilai :guilabel:`Min` dan :guilabel:`Max` yang telah " -"berubah. Nilai piksel terendah dalam gambar tersebut adalah 0 dan nilai " -"tertinggi adalah 3294." - -# a20d34d6cf3d4974819ee2ecd8020fb5 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:215 -msgid "" -"Click :guilabel:`OK`. You should see the values of the raster properly " -"displayed, with the darker colours representing valleys and the lighter " -"ones, mountains:" -msgstr "" -"Klik :guilabel:`OK`. Anda akan melihat nilai dari layer raster kini " -"tertampilkan, dengan warna yang lebih gelap merepresentasikan lembah dan " -"warna yang lebih terang merepresentasikan pegunungan:" - -# d70b7a303abf414f81dac5447f234fc7 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:222 -msgid "" -"We’ve learned to do this the tricky way, but can we do it faster? Of course! " -"Now that you understand what needs to be done, you’ll be glad to know that " -"there’s a tool for doing all of this more easily." -msgstr "" -"Kita telah belajar untuk melakukan hal ini dengan cara yang sulit, namun " -"bisakah kita melakukannya dengan lebih cepat. Tentu saja! Sekarang bahwa " -"Anda telah memahami apa yang perlu dilakukan, Anda akan senang mengetahui " -"bahwa ada alat untuk melakukan semua ini dengan mudah." - -# 095e710dc20849718c89d7b931d61e6b -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:226 -msgid "" -"Remove :guilabel:`DEM` from the Layers panel, by right-clicking it and " -"clicking :menuselection:`Remove`." -msgstr "" -"Hapus :guilabel:`DEM` dari panel Daftar Layer, dengan cara klik kanan pada " -"nama layer dan klik :menuselection:`Remove`." - -# f913b1bea764417a80f1f11cafb323d7 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:229 -msgid "" -"Load the raster image again, renaming it to :guilabel:`DEM` as before. It " -"will be a grey rectangle again." -msgstr "" -"Muat kembali data raster, dan ubah nama layernya menjadi :guilabel:`DEM` " -"seperti sebelumnya. Layer tersebut akan tertampilkan dalam bentuk persegi " -"abu-abu kembali. " - -# c18223efafa4427fab21c90b93057afb -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:232 -msgid "" -"Enable the tool you’ll need by enabling :menuselection:`View ‣ Toolbars ‣ " -"Raster`. These icons will appear in the interface:" -msgstr "" -"Tool yang digunakan untuk mengubahnya yaitu klik :menuselection:`View ‣ " -"Toolbars ‣ Raster`. Gambar icon seperti dibawah ini: " - -# bcf094b600134b28abf3cc19e4047ef5 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:239 -msgid "" -"The button on the right will stretch the minimum and maximum values to give " -"you the best contrast in the local area that you’re zoomed into. It’s useful " -"for large datasets. The button on the left will stretch the minimum and " -"maximum values to constant values across the whole image." -msgstr "" -"Tombol di sebelah kanan akan meregangkan nilai minimum dan maksimum untuk " -"memberikan kontras terbaik di daerah setempat yang diperbesar. Ini berguna " -"untuk dataset yang berukuran besar. Tombol di sebelah kiri akan meregangkan " -"nilai minimum dan maksimum nilai konstan di seluruh gambar." - -# 90ae6499e286442eb3ca5509fcbad160 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:244 -msgid "" -"Click the left button labelled :guilabel:`(Stretch Histogram to Full " -"Dataset)`. You’ll see the data is now correctly represented as before! Easy!" -msgstr "" -"Klik tombol yang berada di sebelah kiri dengan tulisan :guilabel:`(Stretch " -"Histogram to Full Dataset)`. Anda akan melihat data raster kini tampil lebih " -"baik daripada sebelumnya. " - -# 77ce37b07ac04b35a11e856027da6a89 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:249 -msgid "3. Terrain analysis" -msgstr "3. Analisis medan" - -# 66a1ab204aee49a79250ce90ef9e48b1 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:251 -msgid "" -"Certain types of rasters allow you to gain more insight into the terrain " -"that they represent. Digital Elevation Models (DEMs) are particularly useful " -"in this regard. In this section we’ll do a little bit more with our DEM " -"raster, in order to try to extract more information from it." -msgstr "" -"Beberapa jenis raster memungkinkan Anda untuk mendapatkan wawasan yang lebih " -"mendalam tentang medan yang mereka representasikan. Model Elevasi Digital " -"(DEM) sangat berguna dalam hal ini. Pada bagian ini, kita akan melakukan " -"praktek yang lebih banyak dengan raster DEM untuk mendapatkan informasi yang " -"lebih banyak dari data raster tersebut. " - -# ce6994a135b94e3bb8391b342bb98bc2 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:257 -msgid "3.1 Calculating a hillshade" -msgstr "3.1 Menghitung hillshade" - -# cf0ebd1e5ece48aa91bdb5fb81ab98c4 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:259 -msgid "" -"The DEM you have on your map right now does show you the elevation of the " -"terrain, but it can sometimes seem a little abstract. It contains all the 3D " -"elevation information about the terrain that you need, but it doesn’t really " -"look 3-Dimensional. To get a better look at the terrain, it is possible to " -"calculate a hillshade, which is a raster that maps the terrain using light " -"and shadow to create a 3D-looking image." -msgstr "" -"DEM yang Anda miliki di peta sekarang tidak menunjukkan ketinggian medan, " -"tetapi kadang-kadang tampak sedikit abstrak. Ini berisi semua informasi " -"elevasi 3D tentang medan yang Anda butuhkan, tetapi tidak benar-benar " -"melihat 3-Dimensi. Untuk mendapatkan lebih baik untuk melihat medan, adalah " -"dengan menghitung hillshade, yang merupakan raster untuk memetakan medan " -"menggunakan cahaya dan bayangan untuk menciptakan gambar 3D yang tampak." - -# f7d99f56bc37486295e7c329f2141ceb -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:266 -msgid "" -"To work with DEMs, we will use the all-in-one DEM (Terrain models) analysis " -"tool." -msgstr "" -"Untuk bekerja dengan DEM, kita akan menggunakan tool analisis all-in-one DEM " -"(Terrain models)." - -# 61d41ff44bef4826bcc37ab997e46c9a -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:269 -msgid "Go to :menuselection:`Raster ‣ Analysis ‣ DEM (Terrain models)`." -msgstr "Klik pada :menuselection:`Raster ‣ Analysis ‣ DEM (Terrain models)`." - -# 89bc7be51cab4a1997889e0aebea1330 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:274 -msgid "" -"In the dialog that appears, ensure that the input file is the :kbd:`DEM` " -"layer." -msgstr "" -"Pada kotak dialog yang muncul, pastikan input filenya adalah :kbd:`DEM` " -"layer. " - -# 1db56771cbaf4caa8944ddc89d3a1636 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:277 -msgid "" -"Set the output file to :kbd:`hillshade.tif` in the directory :file:`qgis/" -"Sleman/`." -msgstr "" -"Atur file output dengan dinamai :kbd:`hillshade.tif` dan disimpan dalam " -"direktori :file:`qgis/Sleman/`." - -# d7d58dd4244b4d948c67d28472fd891f -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:283 -msgid "Check the box next to :guilabel:`Load into canvas when finished`." -msgstr "" -"Beri tanda centang pada kotak di samping :guilabel:`Load into canvas when " -"finished`." - -# f94aa884afd84fedad08d8e3996459cb -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:288 -msgid "Leave all the other options unchanged." -msgstr "Biarkan pengaturan yang lain tidak perlu diubah. " - -# d406ea15e934456797e4205fc1a64730 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:290 -msgid "Click :guilabel:`OK` to generate the hillshade." -msgstr "Klik :guilabel:`OK` untuk memproses hillshade." - -# 58d6e5c5ec4f463aad092131d1acb9cd -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:292 -msgid "" -"When the processing is complete, click :guilabel:`OK` on the notification." -msgstr "" -"Ketika proses selesai, klik :guilabel:`OK` pada pesan pemberitahuan yang " -"muncul. " - -# e8f869b420394683ad1480e80af20809 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:294 -msgid "Click :guilabel:`Close` in the dialog." -msgstr "Klik :guilabel:`Close` pada kotak dialog." - -# 9e47c28edd9b4aadae0c738d8a42f5e5 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:296 -msgid "" -"There should now be a new layer called :guilabel:`hillshade` that looks like " -"this:" -msgstr "" -"Anda sekarang seharusnya memiliki layer baru yang disebut :guilabel:" -"`hillshade` yang terlihat seperti ini:" - -# 2c21e1d2ff85420eacc6da94578cbf52 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:302 -msgid "" -"This looks more Three-Dimensional, but can we improve on this? On its own, " -"the hillshade looks like a plaster cast. It will look better if we can " -"combine it with our more colourful DEM. We can do this by making the " -"hillshade layer an overlay." -msgstr "" -"Layer ini terlihat lebih 3D, tetapi bisakah Anda memperbaikinya? Hillshade " -"tampak seperti gips. Hillshade akan terlihat lebih baik jika kita " -"mengombinasikannya dengan DEM yang lebih berwarna. Kita dapat melakukan ini " -"dengan menumpangsusunkan layer hillshade ini." - -# 75fe4317f21f4089976593bb622099fc -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:308 -msgid "3.2 Using a hillshade as an overlay" -msgstr "3.2 Menggunakan hillshade sebagai overlay" - -# 3d2872ec5ac241a28c49205f6dbf5aba -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:310 -msgid "" -"A hillshade can provide very useful information about the sunlight at a " -"given time of day. But it can also be used for aesthetic purposes, to make " -"the map look better. The key to this is setting the hillshade to being " -"mostly transparent." -msgstr "" -"Hillshade dapat memberikan informasi yang sangat berguna mengenai sinar " -"matahari pada waktu tertentu. Tetapi itu dapat juga digunakan untuk tujuan " -"estetika, untuk membuat peta terlihat tampak lebih baik. Kunci untuk " -"melakukan itu dengan pengaturan pada hillshade menjadi transparan. " - -# 6c2ce059e7744773a18e6122ff7902f0 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:315 -msgid "" -"Change the symbology of the original :guilabel:`DEM` layer to use the :" -"guilabel:`Pseudocolor` scheme." -msgstr "" -"Ubah simbologi layer :guilabel:`DEM` asli menjadi :guilabel:`Pseudocolor` " - -# 3508bc7f59324139a224655cd3b73ab0 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:318 -msgid "Hide all the layers except the DEM and hillshade layers." -msgstr "Sembunyikan layer kecuali layer DEM dan hillshade." - -# 9d8f7d75b8eb4ab8a2a51cf35a3f015e -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:320 -msgid "" -"Click and drag the :guilabel:`DEM` layer beneath the :guilabel:`hillshade` " -"layer in the Layers panel." -msgstr "" -"Klik dan pindahkan layer :guilabel:`DEM` dibawah layer :guilabel:`hillshade` " -"pada panel Daftar Layer." - -# 0660f082b0db4e9abfac6409b20f9bf5 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:326 -msgid "Ensure that :guilabel:`Control rendering order` is checked." -msgstr "Pastikan bahwa :guilabel:`Kontrol urutan render` diaktifkan." - -# 918eb294348b4f48aac2069bf0bf6bd2 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:331 -msgid "" -"Now we will make the hillshade layer somewhat transparent. Open its Layer " -"Properties and go to the :guilabel:`Transparency` tab." -msgstr "" -"Sekarang kita akan membuat layer hillshade menjadi transparan. Buka Properti " -"Layer untuk layer hillshade dan carilah tab :guilabel:`Transparency`." - -# 265ee4fdcacd40aeb406b9729c9b995c -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:334 -msgid "Set the :guilabel:`Global transparency` to 50%:" -msgstr "Aturlah :guilabel:`Transparansi umum` menjadi 50%:" - -# 471bff17d7b84332971579a779df5a2e -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:339 -msgid "" -"Click :guilabel:`OK` in the Layer Properties dialog. You should get a result " -"similar to this:" -msgstr "" -"Klik :guilabel:`OK` pada kotak dialog Properti Layer. Anda akan mendapatkan " -"hasil seperti ini:" - -# 6b0fa03fd2794fefa51b08bbb17547a4 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:345 -msgid "" -"Switch the :guilabel:`hillshade` layer off and on in the Layers panel to see " -"the difference it makes." -msgstr "" -"Nonaktifkan layer :guilabel:`hillshade` menjadi dan aktifkan kembali layer " -"tersebut pada panel Daftar Layer untuk melihat perbedaannya. " - -# 7fa9c1af0d8849e2ada5676c8fa5d510 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:348 -msgid "" -"Using a hillshade in this way, it’s possible to enhance the topography of " -"the landscape. If the effect doesn’t seem strong enough to you, you can " -"change the transparency of the hillshade layer; but of course, the brighter " -"the hillshade becomes, the dimmer the colours behind it will be. You will " -"need to find a balance that works for you." -msgstr "" -"Menggunakan hillshade dengan cara ini, memungkinkan kita untuk menajamkan " -"tampilan topografi muka bumi. Jika efek yang tampak tidak cukup kuat bagi " -"Anda, Anda dapat mengubah transparansi dari layer hillshade tersebut; namun " -"tentu semakin terang hillshade, semakin suram warna dibelakangnya. Anda " -"perlu menemukan keseimbangan yang sesuai untuk Anda." - -# 582ace51d1294ee0af1ecb28f52c6cc0 -#: ../../source/training/old-training/beginner/qgis-inasafe/208-working-with-raster-data.rst:354 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.po deleted file mode 100644 index 185dad3b..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.po +++ /dev/null @@ -1,890 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -# Werner Macho , 2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:52+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 0a384e75ea674adfb393bde459ab786b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:6 -msgid "Module 9: Creating Vector Layers" -msgstr "Modul 9: Membuat Layer Vektor Baru" - -# 4bb9a044a45147079c130c60d2591f25 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# e55a5d4e9f3840a487fb435ddb76c17d -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:10 -msgid "Add a raster layer for digitising" -msgstr "Menambah layer raster untuk dijitasi " - -# 129acf84a7a2415faad6eaa08fb83048 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:11 -msgid "Create new vector features (polygons, lines and points)" -msgstr "Membuat fitur vektor baru (polygon, garis, dan titik) " - -# 83494bc3ccaf40fbb307dc7744a280a2 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:12 -msgid "Digitise new vectors by tracing a raster layer, considering topology" -msgstr "" -"Digitalisasi layer vektor baru dengan menggambar di atas layer raster dan " -"mempertimbangkan topologi" - -# ce713753300341db840725b8f4fb9892 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:13 -msgid "Georeference an image" -msgstr "Melakukan Georeferensi" - -# 7504d6ff410247219ff210b1c2ebbdce -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:15 -msgid "" -"Creating a map using data that already exists is only the beginning. We have " -"already learned how to edit and add features to OpenStreetMap using JOSM. In " -"this module, we will discuss how to edit existing vector layers in QGIS, and " -"how to create an entirely new dataset." -msgstr "" -"Membuat peta menggunakan data yang sudah ada hanyalah permulaan. Kita telah " -"mempelajari bagaimana mengedit dan menambahkan suatu objek ke OpenStreetMap " -"menggunakan JOSM. Pada modul ini, kita akan mendiskusikan bagaimana mengedit " -"layer vektor yang sudah ada pada QGIS, dan bagaimana membuat dataset baru." - -# 8f3ef9d4d84448329125e49aaa9f3a27 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:22 -msgid "1. The layer creation dialog" -msgstr "1. Kotak dialog pembuatan layer baru" - -# 04d5e71ba94441979b9c766d7d30a1c1 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:24 -msgid "" -"Before you can add new vector data, you need a vector dataset (a layer) to " -"add it to. In our case, we’ll begin by creating a new data layer, and then " -"we’ll add features to it. First, we must define our dataset." -msgstr "" -"Sebelum Anda menambahkan data vektor baru, Anda perlu dataset (*layer*) " -"vektor untuk menambahkannya. Dalam hal ini, kita akan memulai dengan membuat " -"*layer* data baru, dan kemudian kita akan menambah fiturnya. Pertama, kita " -"harus mendefinisikan dataset kita." - -# 9801b3765fda401398019e7ff79c0b58 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:30 -msgid "" -"Create a new project in QGIS by clicking on the :guilabel:`New Project` icon." -msgstr "" -"Membuat proyek baru di QGIS, dengan mengklik di ikon :guilabel:`New Project`." - -# f0c954944a4542dc8faeacfd6992631d -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:36 -msgid "" -"Go to :menuselection:`Layer ‣ Create Layer ‣ New Shapefile Layer`. You’ll be " -"presented with the following dialog:" -msgstr "" -"Pergi ke :menuselection:`Layer ‣ Buat Lapisan ‣ Layer Shapefile Baru`. Anda " -"akan disajikan dengan dialog berikut ini:" - -# aa4db0702c9040deb5a50747e14a072f -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:42 -msgid "" -"At this point we must decide what kind of dataset we want to create. " -"Remember that a data layer can only contain features of points, lines or " -"polygons - never a mix. When we create the layer, we must define what type " -"of data it will contain." -msgstr "" -"Pada intinya kita harus memutuskan jenis dataset apa yang ingin kita buat. " -"Ingat bahwa layer data hanya dapat mengandung fitur titik, garis, atau " -"poligon – tidak pernah bercampur. Jadi kita harus mendefinisikan disini, " -"ketika kita membuat *layer*, jenis data apa yang akan kita inginkan." - -# bad6cc59e7e54327a32e970fc47d096d -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:48 -msgid "" -"Since polygons are made up of points and lines, let’s jump into polygons. " -"Once you’ve mastered this, creating a point or a line layer should be easy!" -msgstr "" -"Karena polygon terdiri dari titik dan garis, mari kita coba dengan polygon. " -"Setelah Anda menguasai ini, membuat layer titik atau garis seharusnya " -"mudah! " - -# b210a2c51aab41fbb8256e16b14b8369 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:51 -msgid "Check the box next to :guilabel:`Polygon`." -msgstr "Beri tanda centang pada kotak :guilabel:`Poligon`." - -# e6dda01422404aacb098283d70a85c14 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:56 -msgid "" -"We’ll specify the Coordinate Reference System (CRS) in the next box. By " -"default the box will contain the CRS of the project, which for us will be " -"WGS84. This is a widely used and very useful CRS, so let’s stick with it!" -msgstr "" -"Kita akan menentukan Sistem Referensi Koordinat (CRS) di kotak sebelah. " -"Secara standar kotak akan berisi project CRS, kita akan gunakan WGS 84. Ini " -"adalah CRS yang banyak digunakan dan sangat berguna, jadi mari kita gunakan " -"itu! " - -# 7294009f2b934a468ff72542c68da165 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:64 -msgid "" -"When we create our new layer, the attribute table will only have one column " -"by default - **id**. This attribute contains a unique id number for every " -"feature. We can add additional fields to the attribute table now, when we " -"create the layer. Let’s add a name field." -msgstr "" -"Ketika kita membuat *layer* baru, tabel atribut hanya akan memiliki satu " -"kolom standar - **id**. Atribut ini berisi nomor id unik untuk setiap " -"fiturnya. Kita dapat menambah *field* baru ke tabel atribut sekarang, ketika " -"kita membuat layer. Mari tambahkan nama field." - -# 0bef3f030fcd45b58275199ffe42ba11 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:71 -msgid "" -"Type :kbd:`nama` into the box next to Name. The settings should match those " -"shown here:" -msgstr "" -"Ketik :kbd:`nama` di dalam kotak disebelah Name. Pengaturan harus sesuai " -"dengan yang ditampilkan disini:" - -# 4f5de6fb19044579b96ae673dd775c92 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:77 -msgid "Click the :guilabel:`Add to attributes list` button." -msgstr "Klik tombol :guilabel:`Tambahkan ke daftar atribut`." - -# 23dfbd3ed69f417e8ed6ca74776ce949 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:79 -msgid "Your attributes list should now look like this." -msgstr "Daftar atribut Anda harus terlihat seperti ini. " - -# 8ada7ac3c66d4684a4b811d9541b6052 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:84 -msgid "Click :guilabel:`OK`. A save dialog will appear." -msgstr "Klik :guilabel:`OK`. Simpan dialog yang akan muncul. " - -# 82499f346e334ac19e3b181e090567da -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:87 -msgid "Navigate to a directory of your choosing." -msgstr "Navigasikan ke direktori yang Anda pilih." - -# 700bcd1668c94416b8229448ee3a0950 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:89 -msgid "Save the new layer as :kbd:`gedung_kampus.shp`." -msgstr "Simpan layer baru Anda sebagai :kbd:`gedung_kampus.shp`." - -# a23f7a4203f443de94e9644123886bfa -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:91 -msgid "The new layer should appear in your Layers panel." -msgstr "Layer baru seharusnya muncul di daftar Layers Anda. " - -# 50a5f1fb04e048228f414d857392e61c -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:94 -msgid "2. Data sources" -msgstr "2. Sumber Data" - -# b21c5dd645fc416391f585555848472a -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:96 -msgid "" -"When you create new data, it should represent objects that really exist on " -"the ground. We have already learned of numerous ways to collect data using " -"OSM tools. We learned about GPS to record locations, Field Papers and of " -"course, aerial imagery. These are all tools that we can use to identify real-" -"life locations and record them in a digital data layer." -msgstr "" -"Ketika Anda membuat data baru, ini jelas harus mewakili objek yang benar-" -"benar ada di permukaan. Kita sudah mempelajari dari banyak cara untuk " -"mengumpulkan data menggunakan tool OSM. Kita belajar mengenai GPS untuk " -"merekam lokasi, Field Papers, dan tentu, citra satelit. Ini semua adalah " -"alat yang kita dapat gunakan untuk mengidentifikasi lokasi dikehidupan nyata " -"dan merekam mereka ke dalam *layer* data digital." - -# 976b7383d16543c095495686f1b766c6 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:105 -msgid "" -"In QGIS, we can use the same types of sources to get information about the " -"ground. In this example, we will once again turn to aerial imagery, but " -"instead of using Bing, we will use a raster image provided in the tutorial " -"directory." -msgstr "" -"Di QGIS, kita dapat menggunakan jenis sumber yang sama untuk mendapatkan " -"informasi mengenai permukaan bumi. Pada contoh ini, kita sekali lagi akan " -"beralih ke citra satelit, tetapi bukannya menggunakan Bing, kita akan " -"menggunakan gambar raster yang disediakan di direktori tutorial." - -# 4e37532235ca404387cc93a5b9980cde -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:111 -msgid "Click on the :guilabel:`Add Raster Layer` button:" -msgstr "Klik di tombol :guilabel:`Add Raster Layer`:" - -# f4d45f4bdf2b4933826ec40836f98c2f -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:116 -msgid "Navigate to :file:`/qgis/Sleman/`." -msgstr "Arahkan ke :file:`../qgis/Sleman/`." - -# cdbc40ef7f1a4446b0084cac8abfab40 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:118 -msgid "Select the file :file:`UGM.tif`." -msgstr "Pilih file :file:`UGM.tif`." - -# 096af0855a644fe8b65a01dd45ff6a6b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:120 -msgid "Click :guilabel:`Open`. An image will load into your map." -msgstr "Klik :guilabel:`Open`. Gambar akan dimuat ke dalam peta Anda. " - -# 47068acf477748be84a2c61b82df6da0 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:123 -msgid "Find the new entry in the Layers panel." -msgstr "Cari gambar baru di daftar Layers." - -# 58d7a39f3af24162a61d09399ac1ad8a -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:125 -msgid "" -"Drag it to the bottom of the list so that it is below the vector layer you " -"created in the previous section." -msgstr "" -"Klik dan tarik ke bawah daftar sehingga di bawah layer vektor yang Anda buat " -"di bagian sebelumnya. " - -# addb511bc65649b791a623b972d75b9b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:131 -msgid "" -"Go to :menuselection:`Project ‣ Project Properties` and enable 'on the fly' " -"transformation." -msgstr "" -"Pergi ke :menuselection:`Proyek ‣ Properti Proyek` dan aktifkan :guilabel:" -"`Aktifkan transformasi CRS “on the fly”`" - -# 299f545dcb654e6ab6321f237352f7d2 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:134 -msgid "" -"Make sure that “WGS 84” is selected as the CRS, and click :guilabel:`OK`." -msgstr "Pastikan “WGS 84” terpilih sebagai CRS, dan klik :guilabel:`OK`. " - -# f17fadd7355f4bc0a64ff4e0b5035717 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:139 -msgid "" -"Right-click on the :guilabel:`UGM` layer and click :guilabel:`Zoom to Layer`." -msgstr "" -"Klik kanan pada :guilabel:layer `UGM`, dan klik :guilabel:`Perbesar ke " -"Layer`." - -# f1d184e44693453385456b7b5299f8b6 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:142 -msgid "" -"Zoom in to the centre of the raster image. We will be digitising three areas:" -msgstr "Perbesar ke tengah gambar raster. Kita akan mendijitasi tiga area:" - -# 4e3369321997410189c431b8c5652b50 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:149 -msgid "3. Digitising" -msgstr "3. Dijitasi" - -# f937e11a0959429faba63e56cc635328 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:151 -msgid "" -"Digitising, as you might have guessed, is the art (or science) of creating " -"digital vector data from another source, such as a raster image. In order to " -"begin digitising, we must first enter edit mode. GIS software commonly " -"requires a separate mode for editing, to prevent users from accidentally " -"editing or deleting important data. Edit mode is switched on or off " -"individually for each layer." -msgstr "" -"Digitalisasi, yang seperti sudah Anda bisa duga, adalah seni (atau ilmu) " -"untuk membuat data vektor digital dari sumber lain, seperti gambar raster. " -"Untuk memulai dijitasi, kita harus masuk ke mode edit. Perangkat lunak SIG " -"pada umumnya memerlukan mode terpisah untuk mengedit, untuk mencegah " -"pengguna dari kesalahan mengedit atau menghapus data penting. Mode edit " -"diaktifkan atau dimatikan secara individual untuk setiap layernya." - -# 34696af274ab4f148f44eeeae2401f35 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:158 -msgid "Let’s enter edit mode for the :guilabel:`gedung_kampus` layer:" -msgstr "Mari kita masuk ke mode edit untuk :guilabel:layer `gedung_kampus`:" - -# b32d37d58a7742f0b1a910265831608f -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:160 -msgid "Select :guilabel:`gedung_kampus` in the Layers panel." -msgstr "Pilih :guilabel:`gedung_kampus` di panel Daftar Lapisan." - -# 5f9b30f7ae2f47749faed8e9c83bdd03 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:162 -msgid "Click on the :guilabel:`Toggle Editing` button:" -msgstr "Klik pada tombol :guilabel:`Toggle Editing`:" - -# 4b2603370c114266823448dd411430e8 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:167 -msgid "" -"If you can’t find this button, ensure that the Digitising toolbar is " -"enabled. There should be a check mark next to the :menuselection:`View ‣ " -"Toolbars ‣ Digitizing` menu entry." -msgstr "" -"Jika Anda tidak dapat menemukan tombol ini, pastikan bahwa toolbar " -"Digitizing diaktifkan. Harus ada tanda centang di sebelah :menuselection:" -"`Tampilan ‣ Panel-panel ‣ Digitasi` menu entri." - -# 54834f30057d405ba348e899edf8e115 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:172 -msgid "Once you are in edit mode, the digitising tools will become active:" -msgstr "Setelah Anda pada mode edit, alat dijitasi akan aktif:" - -# 3119685eb7ff4710b26c7a7190aa14ea -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:177 -msgid "From left to right on the image above, they are:" -msgstr "Dari kiri ke kanan pada gambar di atas, mereka adalah :" - -# 5efafc260c724a278878448aecfdb269 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:179 -msgid "**Toggle Editing**: activates / deactivates edit mode." -msgstr "**Toggle untuk Mengedit**: mengaktifkan/menonaktifkan mode edit." - -# 316ded114bce4043af52f4c68f625ffd -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:180 -msgid "**Save Layer Edits**: saves changes made to the layer." -msgstr "**Simpan pengeditan layer**: menyimpan perubahan yang dibuat di layer." - -# e32b9e750c1640b793b0b94c1c638e6c -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:181 -msgid "**Add Feature**: start digitising a new feature." -msgstr "**Add Feature**: memulai dijitasi fitur baru." - -# c80a99c4aa10491c9d6d561847c6fc35 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:182 -msgid "**Move Feature(s)**: move an entire feature around." -msgstr "**Move Feature(s)**: memindahkan seluruh fitur ke sekitar." - -# 5c252590f9d44c039810ad65ae06e22b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:183 -msgid "**Node Tool**: move only one part of a feature." -msgstr "**Node Tool**: memindahkan hanya satu bagian fitur. " - -# a8b6b5e21dbe4434aee9b5ab299f3cfd -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:184 -msgid "" -"**Delete Selected**: delete the selected feature (only active if a feature " -"is selected)." -msgstr "" -"**Delete Selected**: menghapus fitur terpilih (hanya aktif jika fitur " -"dipilih)." - -# 44d0528422c844a48daf29e2c9be6f95 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:186 -msgid "" -"**Cut Features**: cut the selected feature (only active if a feature is " -"selected)." -msgstr "" -"**Cut Features**: memotong fitur terpilih (hanya aktif jika fitur dipilih)." - -# ae0cfe5c540c42d197b2291926dd3cbf -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:188 -msgid "" -"**Copy Features**: copy the selected feature (only active if a feature is " -"selected)." -msgstr "" -"**Copy Features**: menyalin fitur terpilih (hanya aktif jika fitur dipilih)." - -# 4a27504b282a4f15bf678aacea12442e -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:190 -msgid "" -"**Paste Features**: paste a cut or copied feature back into the map (only " -"active if a feature has been cut or copied)." -msgstr "" -"**Paste Features**: menyisipkan fitur dipotong atau disalin kembali ke peta " -"(hanya aktif jika fitur sudah dipotong atau disalin)." - -# a54d9ad963554bf2b05863bd821369c3 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:193 -msgid "We want to add a new feature." -msgstr "Kita ingin menambah fitur baru. " - -# 665e62084d0944978e97b3df7936ad15 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:195 -msgid "Click on the :guilabel:`Add Feature` button to start digitising:" -msgstr "Klik pada tombol :guilabel:`Add Feature` untuk memulai dijitasi:" - -# 173ad069dd4d40749db01e13dd34ca55 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:200 -msgid "" -"You’ll notice that your mouse cursor becomes a crosshair. This allows you to " -"more accurately place the points you’ll be digitising. Remember that even as " -"you’re using the digitising tool, you can zoom in and out on your map by " -"rolling the mouse wheel, and you can pan around by holding down the mouse " -"wheel and dragging around in the map." -msgstr "" -"Anda akan melihat bahwa kursor Anda menjadi tanda plus. Hal ini memungkinkan " -"Anda untuk lebih akurat menempatkan titik yang Anda digitasi. Ingat bahwa " -"saat Anda menggunakan alat digitasi, Anda dapat perbesar dan perkecil peta " -"dengan menggulir roda mouse, dan Anda dapat menjelajah sekitar dengan " -"menekan roda mouse dan menarik ke peta sekitar." - -# 5f16205f560b4d048243c10e7b636d5b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:207 -msgid "The first feature you’ll digitise is a field (called \"GSP Field\"):" -msgstr "" -"Fitur pertama yang akan Anda dijitasi adalah sebuah lapangan (dinamakan " -"\"GPS Field\"):" - -# e873f71d8a784d9ca4457b020e7fc9c8 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:212 -msgid "Start by clicking on a point somewhere along the edge of the field." -msgstr "" -"Mulailah dengan mengklik titik di suatu tempat di sepanjang tepi lapangan." - -# cda2685d257f46cb8f48225fa82f87ef -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:214 -msgid "" -"Place more points by clicking further along the edge, until the shape you’re " -"drawing completely covers the field. This is very similar to drawing a " -"polygon in JOSM." -msgstr "" -"Tempatkan titik lebih banyak dengan mengklik sepanjang tepi, sampai bentuk " -"Anda tergambar lengkap menutup lapangan. Ini sangat mirip dengan menggambar " -"polygon di JOSM." - -# 5acb33399a0743599372ebd430b6bba3 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:218 -msgid "" -"To place the last point, right-click where you want it to be. This will " -"finalise the feature and bring up the Attributes dialog." -msgstr "" -"Untuk menempatkan titik terakhir, klik kanan dimana Anda ingin " -"menempatkannya. Ini akan melengkapi fitur dan menunjukkan dialog Attributes." - -# 30bc8379a00e427a9863b416ef81d854 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:221 -msgid "Fill in the values as shown here:" -msgstr "Isi nilai-nilai seperti yang ditampilkan disini: " - -# 912b369841914f34958db215d29d5d77 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:226 -msgid "Click :guilabel:`OK`. You’ve created a new feature!" -msgstr "Klik :guilabel:`OK`. Anda telah membuat fitur baru! " - -# 12459431b0ee4dd68aa037587ed30935 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:228 -msgid "" -"If you make a mistake while digitising a feature, you can always edit it " -"later. Simply finish digitising the feature and then follow these steps:" -msgstr "" -"Jika Anda membuat kesalahan selama mendijitasi fitur, Anda dapat mengeditnya " -"nanti. Selesaikan dijitasi fitur dan kemudian ikuti langkah berikut ini:" - -# 112ad681347540a3bfadb066b77de537 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:232 -msgid "Select the feature with the :guilabel:`Select Feature` tool:" -msgstr "Pilih fitur dengan alat :guilabel:`Pilih Fitur`:" - -# 1dd5b5d8c58b4a829e499d89c9dc5802 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:237 -msgid "Then use one of these tools to edit the feature:" -msgstr "Kemudian gunakan satu dari alat ini untuk mengedit fitur: " - -# fdb913dcb9014378bbfff78322f79cbe -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:240 -msgid "Move feature(s) tools" -msgstr "Move feature(s) tools" - -# 2b548971719a472d8bb45bfeb8b20ffd -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:240 -msgid "Move the entire feature(s)" -msgstr "untuk memindahkan seluruh fitur" - -# 8da3ba58d5ac4294b0c1fd9a3242e7ef -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:242 -msgid "Node tools" -msgstr "Node tools" - -# a23c9175220846398bd7a350936c5f40 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:242 -msgid "move only one point where you may have misclicked" -msgstr "" -"untuk memindahkan hanya satu titik dimana Anda mungkin telah keliru pada " -"saat menempatkan titik tersebut." - -# 8708ae27ba5b4c518a39b95e1cc131c2 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:244 -msgid "Delete selected" -msgstr "Delete selected" - -# 7fd5ce79227e4e478b642a510ae7c225 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:244 -msgid "get rid of the feature entirely so you can try again" -msgstr "" -"untuk menyingkirkan fitur seluruhnya sehingga Anda dapat mencobanya lagi " - -# 74cbb65f6763425ea7022eb5c8e09a2b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:246 -msgid "Go to Edit ‣ Undo or press :kbd:`Ctrl+Z` on keyboard" -msgstr "Pergi ke Edit ‣ Undo atau tekan :kbd:`Ctrl+Z` pada keyboard" - -# 7ae3402554ca4f4ca1ea20fdac6c5757 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:246 -msgid "Undo mistakes" -msgstr "untuk membatalkan kesalahan. " - -# baa9a83ffdb44a80bfd9926105461f57 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:249 -msgid "Now try it on your own:" -msgstr "Sekarang cobalah sendiri: " - -# 1fb213a2efb04bef951ff2acc77a1d50 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:251 -msgid "" -"Digitise the school itself and the upper field. Use this image to assist you:" -msgstr "" -"Digitasi sendiri sekolah dan tanah kosong. Gunakan gambar ini untuk membantu " -"Anda:" - -# 629b69bac5254523a365ea4869b26be6 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:257 -msgid "Remember that each new feature needs to have a unique id value!" -msgstr "Ingat bahwa setiap fitur baru butuh memiliki nilai id unik! " - -# 30a94d011f3c4b04a356429292673527 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:259 -msgid "" -"When you are finished adding features to a layer, you must save the changes " -"to that layer." -msgstr "" -"Ketika Anda menyelesaikan menambah fitur ke layer, Anda harus menyimpan " -"perubahan ke layer tersebut." - -# c5a2aa9a0c2440978b0762a64e7c8f00 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:262 -msgid "Click on the :guilabel:`Toggle Editing` button." -msgstr "Klik pada tombol :guilabel:`Toggle Editing`." - -# b20058fb036b4027b709ef3f1ba1cb89 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:267 -msgid "You will be asked to save your edits. Click :guilabel:`Save`." -msgstr "" -"Anda akan ditanya untuk menyimpan hasil edit Anda. Klik :guilabel:`Simpan`." - -# de98b75cde03471094482fdc9f073783 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:273 -msgid "" -"Now you know how to create polygon features! Creating points and line layers " -"is just as easy - you simply need to define the type of layer when you " -"create it, and of course you can only create points in point layers and " -"lines in line layers." -msgstr "" -"Sekarang Anda mengetahui bagaimana cara untuk membuat fitur poligon! Membuat " -"*layer* titik dan garis juga sama mudahnya - anda hanya butuh untuk " -"menentukan tipe dari *layer* ketika anda membuatnya, dan tentu saja anda " -"hanya bisa membuat titik di *layer* titik dan garis di *layer* garis." - -# 9a104f2dd4b242e5a9bd28d8d02df128 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:279 -msgid "4. Georeferencing" -msgstr "4. Georeferensi" - -# 5b9c7e741def40eb8bfd0a41fafdbb06 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:281 -msgid "" -"In the previous section we digitised a raster image, thus creating vector " -"data. This is essentially the same process as when we use Bing imagery in " -"JOSM to add to OSM. In both of these cases, the imagery that we use is " -"already **georeferenced** - that is, it is correctly placed in its proper " -"location." -msgstr "" -"Pada bagian sebelumnya kita mendigitasi sebuah gambar raster untuk membuat " -"data vektor. Hal ini sama dengan ketika kita akan menggunakan citra Bing ke " -"dalam JOSM untuk menambahkan data OpenStreetMap. Pada dua kasus tersebut, " -"citra yang kita gunakan sudah **tergeoreferensikan** - yang sama artinya " -"dengan telah diletakkan secara tepat sesuai dengan posisi yang ada di " -"permukaan bumi." - -# 33efdbca85f045bb80331fd3e9aaddbc -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:288 -msgid "" -"When an image is georeferenced, it is stretched in different ways so that " -"each pixel in the image corresponds as closely as possible to the area it " -"represents on the spherical Earth. Because it is difficult to perfectly " -"align a flat image on a round object, there are often small georeferencing " -"errors, as we learned previously with imagery offset." -msgstr "" -"Ketika sebuah gambar telah tergeoreferensikan, gambar tersebut telah ditarik " -"diberbagai macam arah sehingga setiap piksel dalam gambar tersebut mempunyai " -"posisi yang sama dengan posisi yang ada di permukaan bumi. Karena terkadang " -"sangatlah susah untuk memposisikan gambar datar ke dalam objek bulat, " -"sehingga seringkali muncul kesalahan pada georeferensi, yang kita kenal " -"dengan pergeseran citra/imagery offset." - -# 712e67631ce24a8a8c1104a7d15ab5db -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:295 -msgid "" -"What if you have a map that is not georeferenced? What if you have a paper " -"map given to you by a government agency? How can you digitise it?" -msgstr "" -"Bagaimana jika Anda mempunyai peta yang belum tergeoreferensikan? Bagaimana " -"jika Anda diberikan oleh pemerintah sebuah peta kertas? Bagaimana Anda " -"mendigitasinya?" - -# 2ada9eb02e444da6b34f4da5f425a251 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:299 -msgid "" -"The first step is to turn your paper map into a digital image that you can " -"manipulate with your computer. You can do this with a scanner (or possibly a " -"digital camera), although doing so is beyond the scope of this module." -msgstr "" -"Langkah pertama yang Anda lakukan adalah mengubah peta kertas tersebut ke " -"dalam format digital sehingga Anda bisa memanipulasinya dengan komputer " -"Anda. Anda dapat melakukan hal ini dengan sebuah scanner (atau sebuah kamera " -"digital), meskipun untuk melakukannya tidak disertakan di dalam bab ini." - -# 1bb13e878ee64680bea2b0350d8c48f5 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:305 -msgid "4.1 Georeferencing an image" -msgstr "4.1 Cara Georeferensi" - -# 84b24fef1b93421f9c38cbe9b56e08b6 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:307 -msgid "" -"Now we will learn how to georeference an image in QGIS so that is correctly " -"located on Earth. We will be using a map provided in the tutorial files, " -"which looks like this:" -msgstr "" -"Sekarang anda akan belajar bagaimana cara meng-georeferensikan sebuah gambar " -"di QGIS sampai terposisikan sempurna sesuai dengan lokasi yang ada di " -"permukaan bumi. Kita akan menggunakan peta yang telah disediakan di dalam " -"tutorial, yang akan terlihat seperti ini:" - -# 4dcb89739eab41f898216666dfdacff9 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:314 -msgid "Start a new QGIS project. Save your previous work if you like." -msgstr "" -"Mulailah membuat proyek QGIS baru. Simpan proyek lama Anda jika Anda " -"menginginkan." - -# 012858d3cf4f4c1c838fa986a63c3316 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:317 -msgid "Go to :menuselection:`Raster ‣ Georeferencer ‣ Georeferencer`." -msgstr "Arahkan ke :menuselection:`Raster ‣ Georeferencer ‣ Georeferencer`." - -# 04b44e31db05460f969fedc27d2db84e -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:322 -msgid "Click the :guilabel:`Open raster` button." -msgstr "Klik tombol :guilabel:`Open raster`." - -# 17b3a5874d374c22986016dd04c4fea6 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:327 -msgid "" -"Find the file :file:`peta_krb_merapi_2002.jpg`, which is located in the the :" -"file:`qgis/Sleman/Merapi/` folder. Click :guilabel:`Open`." -msgstr "" -"Cari file :file:`peta_krb_merapi_2002.jpg`, yang berlokasi di folder :file:" -"`qgis/Sleman/Merapi/` . Klik :guilabel:`Buka`." - -# 0ca1d2bb627949edbed88cbd262a39b3 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:330 -msgid "Select :guilabel:`WGS 84` when prompted and click :guilabel:`OK`." -msgstr "Pilih :guilabel:`WGS 84` jika diminta, kemudian klik OK." - -# 3a4f1b120cd444aa9c60341dd3856027 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:335 -msgid "" -"In order to georeference this image, we need to associate points on the " -"image, to known points on the Earth. Such points are called ground control " -"points (GCPs). Luckily, this map image has latitude and longitude " -"coordinates written on it at every corner. So, to georeference this image, " -"we will create four GCPs, one at each corner of the map, and we will turn " -"our jpeg file into a geotiff, a georeferenced image." -msgstr "" -"Untuk meng-georeferensikan gambar ini, kita membutuhkan titik yang " -"menghubungkan antara gambar dengan lokasi yang diketahui pada permukaan " -"bumi. Titik tersebut dinamakan Ground Control Points (GCP). Untungnya peta " -"ini telah mempunyai koordinat lintang dan bujur yang ditulis disetiap " -"sudutnya. Sehingga, untuk meng-georeferensikan gambar ini, kita akan membuat " -"empat titik kontrol/GCP disetiap sudut pada peta, dan kita akan mengubahnya " -"menjadi geotiff, sebuah gambar yang telah di georeferensikan." - -# ce7da7ed2213448eb568d5a6931e46e4 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:344 -msgid "Zoom in to the upper left corner of the map." -msgstr "Perbesar pada bagian kiri atas dari peta menggunakan tombol perbesar." - -# 486ac103e43a42eb989c15f8a687a61f -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:349 -msgid "Click the :guilabel:`Add point` button." -msgstr "Klik tombol :guilabel:`Add point`." - -# e8ae910746524b198ff48a356f457177 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:354 -msgid "" -"Click on the very top left point of the map, right where the top border of " -"the map meets the left border." -msgstr "" -"Klik pada sudut kiri atas dari peta, tepat dimana garis border bagian atas " -"bertemu dengan garis border bagian kiri." - -# 2366036a80be4824ad9c1d60fc918962 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:357 -msgid "" -"A box will pop up requesting the x and y coordinates of the point you just " -"clicked. The coordinates are written in blue on the map. The longitude (x " -"coordinate) is 110° 15’ 00” E and the latitude (y coordinate) is 7° 29’ 47” " -"S. We can enter the coordinates in the box as follows. Remember that south " -"and west coordinates will be negative numbers." -msgstr "" -"Sebuah kotak akan muncul meminta koordinat X dan Y pada titik yang telah " -"Anda klik. Koordinat tersebut telah tertulis dengan huruf berwarna biru pada " -"peta. Titik koordinat bujur (koordinat X) adalah 110° 15’ 00” E dan titik " -"koordinat lintang (koordinat Y) adalah 7° 29’ 47” S. Kita bisa memasukkan " -"koordinat pada kotak tersebut sesuai dengan apa yang telah kita lihat. Harap " -"diingat bahwa nilai koordinat Lintang Selatan bernilai negatif." - -# 3bd4cfc89eb94983b3a2ab9ea2796cb4 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:368 -msgid "Click :guilabel:`OK`." -msgstr "Klik :guilabel:`OK`." - -# 466dc58a95b640fc91918ca1cafdea2f -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:370 -msgid "" -"You will see a red point appear showing the location of your control point, " -"and an entry in the table at the bottom." -msgstr "" -"Anda akan melihat titik berwarna merah muncul pada lokasi titik kontrol/GCP " -"Anda, dan sebuah tabel akan muncul pada bagian bawah." - -# 3b647c63370f4d27b94b2cc591ffb384 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:373 -msgid "" -"Repeat this process, creating ground control points at each of the four " -"corners of the map. Remember to enter the longitude and latitude that is " -"written at each corner. When you are finished, you should have four GCPs and " -"your table will look like this:" -msgstr "" -"Ulangi proses ini, membuat titik kontrol pada setiap sudut dari peta. Harap " -"dingat untuk memasukkan nilai koordinat lintang dan bujur sesuai dengan apa " -"yang tertulis di setiap sudut. Ketika anda sudah selesai, anda akan " -"mempunyai 4 titik kontrol dan table anda akan terlihat seperti ini:" - -# 2f14d0a52d324e86a8cd7bee53538bd3 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:382 -msgid "Lastly we will adjust the settings and then create our output file." -msgstr "" -"Terakhir, kita akan mengatur dan membuat berkas hasil dari georeferensi kita." - -# d3766afef174434ba04151ec380266e4 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:384 -msgid "Click on the :guilabel:`Transformation settings` button." -msgstr "Klik pada tombol :guilabel:`Transformation settings`." - -# a8a838a90a2a4768b768a667d19b11c2 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:389 -msgid "Next to :guilabel:`Transformation type` select :guilabel:`Linear`." -msgstr "Pada :guilabel:`Jenis transformasi` pilih :guilabel:`Linear`." - -# 21029452e4c44fee9bf0699a47731dfa -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:391 -msgid "" -"Provide a filename for the output raster. The file type will be :file:`.tif`." -msgstr "" -"Berikan nama untuk hasil raster. Jenis file tersebut akan berformat :file:`." -"tif`." - -# a7f5933bf98d4ef1b7e449dda378c190 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:394 -msgid "" -"Check the box next to :guilabel:`Load in QGIS when done`. It should look " -"like this:" -msgstr "" -"Centang kotak disamping tulisan :guilabel:`Muat dalam QGIS ketika selesai`. " -"Tampilan Anda harus terlihat seperti ini:" - -# d53c22c91e0140ad99779ecfe2b06b55 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:400 -msgid "Click :guilabel:`OK` and look at the table." -msgstr "Klik :guilabel:`OK` dan lihat pada tabel." - -# bd26893f5ea24122b40815790e83c044 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:405 -msgid "Make sure the residual value is near zero to improve accuracy." -msgstr "Pastikan nilai sisa mendekati nol untuk meningkatkan akurasi." - -# 7e6b43e3677a45898cd5192d0c3ca589 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:407 -msgid "" -"Now we are ready to produce the georeferenced image file. Click on the :" -"guilabel:`Start georeferencing` button." -msgstr "" -"Sekarang kita telah siap untuk membuat berkas gambar yang telah di " -"georeferensi. Klik pada tombol :guilabel:`Start georeferencing`." - -# fe939131c61641378477b12d0ae55154 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:413 -msgid "" -"If you are asked to select the layer’s coordinate system, choose :guilabel:" -"`WGS 84`." -msgstr "" -"Jika Anda diminta untuk memilih sistem koordinat layer Anda, pilih :guilabel:" -"`WGS 84`." - -# bf736c1c3c944a78b2872f7fee5ee694 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:416 -msgid "" -"Go to :menuselection:`Project ‣ Project Properties` and make sure that on " -"the fly transformation is enabled." -msgstr "" -"Pergi ke :menuselection:`Project ‣ Project Properties` dan pastikan " -"transformasi on the fly telah diaktifkan." - -# 92d7e85d4ea1463eb084c194aafdf29d -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:422 -msgid "" -"The output file will be created and automatically added to your project. If " -"you hover over the image, you should see coordinates at the bottom of QGIS, " -"which are close to the coordinates you entered when placing the GCPs." -msgstr "" -"File hasil akan dibentuk dan secara otomatis ditampilkan pada proyek Anda. " -"Jika Anda mengarahkan kursor Anda ke gambar, Anda melihat koordinat di " -"bagian bawah QGIS dimana koordinat berubah sesuai dengan lokasi titik " -"kontrol yang Anda tempatkan." - -# dbd6355e78824d4b8b133eb3a08b9658 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:430 -msgid "" -"Another way to see that the image is correctly placed, is by adding a layer " -"with the OpenLayers plugin. Here we have added Bing satellite imagery, and " -"made our new geotiff transparent to see Merapi in the background." -msgstr "" -"Salah satu cara untuk melihat apakah gambar tersebut telah terposisikan " -"sempurna adalah dengan menggunakan plugin OpenLayers. Disini kita akan " -"menambahkan citra satelit Bing dan membuat gambar baru kita transparan untuk " -"melihat latar belakang merapi di belakangnya." - -# feacc49d97a44ea58666962d6dca428b -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:438 -msgid "" -"Knowing how to georeference is important when you want to digitise from a " -"paper map or an image that is not already georeferenced. Once you have " -"georeferenced an image like this, you can apply the same digitisation " -"techniques that we learned previously in this module to create vector " -"shapefiles that can be used in QGIS and |project_name|." -msgstr "" -"Mengetahui cara untuk meng-georeferensi itu penting karena ketika Anda ingin " -"mendigitasi dari sebuah peta kertas atau gambar yang belum memiliki " -"informasi spasial. Ketika Anda telah meng-georeferensikan sebuah gambar " -"dengan cara ini, Anda dapat melakukan teknik digitasi sesuai dengan apa yang " -"telah kita pelajari sebelumnya, yang nantinya dapat digunakan di QGIS dan |" -"project_name|." - -# 4e97ae7df0e14c9abc650fd2b7dc7456 -#: ../../source/training/old-training/beginner/qgis-inasafe/209-create-a-new-vector-layer.rst:444 -msgid ":ref:`Go to next module --> `" -msgstr "" -":ref:`Lanjut ke modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.po deleted file mode 100644 index cfb7808b..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.po +++ /dev/null @@ -1,1098 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Dewi Sulistioningrum , 2013 -# Werner Macho , 2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 07:39+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 136176e1dccf4f70b59c9b9a8b9a76f9 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:6 -msgid "Module 10: Vector Analysis for Problem Solving" -msgstr "Modul 10: Analisis Vektor untuk Pemecahan Masalah " - -# 610ae6d9156e4b98908c2144b567823b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 1a343b0ac76444f4bdebd185a83e80ea -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:10 -msgid "Understand the GIS process" -msgstr "Memahami proses SIG" - -# 819a36670e7d43569c2ba8ece095e94e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:11 -msgid "Identify addressable problems" -msgstr "Mengidentifikasi permasalahan" - -# 63a8bc80cfff4d06982a1e3cf33bfaf8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:12 -msgid "Understand data needs" -msgstr "Memahami kebutuhan data" - -# 5f7b3ffcf170431897f17c4be18ec552 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:13 -msgid "Start a QGIS project" -msgstr "Memulai sebuah proyek QGIS baru" - -# d507c32b1d3e49aaa12b0275f87b699b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:14 -msgid "Analyse problems" -msgstr "Menganalisis masalah" - -# ad9bbd8fd6d644278f028d0b332a3a28 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:15 -msgid "Identify hazard zones" -msgstr "Mengidentifikasi zona ancaman" - -# 27b0150c143c4630ae40187b7b52d68f -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:16 -msgid "Look for important roads" -msgstr "Mencari jalan penting" - -# 888f157eba2d48b58630843f6dca15fb -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:17 -msgid "Look for medical facilities" -msgstr "Mencari fasilitas kesehatan" - -# 498e529f1da14f508efe3ba5d1e3de1b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:18 -msgid "Buffer roads and medical facilities" -msgstr "Melakukan buffer fasilitas kesehatan" - -# fb14febf7b474ad7b86908cefbde2bf8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:19 -msgid "Analyse overlapped areas" -msgstr "Menganalisis wilayah yang overlap" - -# 245daca414ca4cd48b5200f67b32cf56 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:21 -msgid "" -"The power of GIS is its ability to help us analyse data. Vector data can be " -"analysed to reveal how different features interact with each other. In this " -"module, we’ll work through the GIS process, attempting to solve a problem, " -"and as we proceed, we will learn about various analysis tools that QGIS " -"provides." -msgstr "" -"Kekuatan SIG adalah kemampuannya untuk membantu kita dalam menganalisis " -"data. Data vektor dapat dianalisis untuk mengungkapkan bagaimana fitur yang " -"berbeda berinteraksi satu sama lain. Pada bab ini, kami akan bekerja melalui " -"proses SIG, berusaha untuk memecahkan masalah, dan seperti yang kita " -"lanjutkan, kita akan belajar mengenai berbagai tool analisis yang disediakan " -"oleh QGIS." - -# cf8fac4cf3f6449c8d82d1315e8b7909 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:27 -msgid "1. The GIS process" -msgstr "1. Proses SIG" - -# d3b38e6cd3eb4c00ab72429fa1cc57c8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:29 -msgid "" -"Before we start, it will be useful to give a brief overview of a process " -"that can be used to solve any GIS problem. The steps are simple:" -msgstr "" -"Sebelum kita mulai, ini akan berguna untuk memberikan gambaran singkat " -"proses yang akan digunakan untuk memecahkan beberapa masalah SIG. Langkah-" -"langkah sederhana sebagai berikut: " - -# 394b8ec05c454c01ba98a32e3376a35a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:32 -msgid "State the problem" -msgstr "Menentukan masalah" - -# 327ab4f6a35c4a18bd78a38ee2d25bb3 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:33 -msgid "Get the data" -msgstr "Memperoleh Data" - -# 92adfed6f44047e883314546a42e806d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:34 -msgid "Analyse the problem" -msgstr "Menganalisis masalah" - -# e738c56da7634befa8846c3732881c4e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:35 -msgid "Present the results" -msgstr "Menyajikan hasil" - -# f5b07d1e511d42c6a8d5e7cfbc46fe71 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:38 -msgid "2. Problem" -msgstr "2. Permasalahan" - -# 2bbf767513b64453838477a7117a2c74 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:40 -msgid "" -"Let’s start off by deciding on a problem to solve. Imagine that you’re a " -"disaster manager, and you need to provide the best locations to place " -"refugees (IDPs) in villages surrounding Mount Merapi when it erupts. You’ve " -"come up with the following criteria for these locations:" -msgstr "" -"Mari kita mulai proses dengan menentukan suatu masalah untuk dipecahkan. " -"Katakanlah Anda sebagai manager bencana, dan Anda perlu menyediakan lokasi " -"terbaik untuk tempat pengungsian (IDP) di desa-desa sekitar Gunung Merapi " -"saat meletus. Anda datang dengan kriteria berikut untuk lokasi ini: " - -# e3c2d9bb44fa4d83bdb78a21703a0528 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:45 -msgid "" -"The area should be a dry field or farm in the districts Ngemplak, Turi or " -"Pakem." -msgstr "" -"Wilayah ini seharusnya berupa lahan kering atau pertanian di Kabupaten " -"Ngemplak, Turi atau Pakem." - -# eee07933dbd849a19193b71433fcca4e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:47 -msgid "The area must be outside of Merapi Eruption Disaster Prone Region III." -msgstr "Wilayah ini seharusnya berada diluar KRB III." - -# 3bfda07503ad4ea0bbf1ff0878c7506c -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:48 -msgid "" -"Access to the site should be easy, so it will not be more than 300 metres " -"from a main road." -msgstr "" -"Wilayah ini seharusnya mudah diakses, jadi tidak boleh berjarak lebih dari " -"300 meter dari jalan utama." - -# 891273bb882c4dd297946a66ff21a07e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:50 -msgid "The site should be close to health facilities." -msgstr "Lokasi ini seharusnya dekat dengan fasilitas kesehatan." - -# 93ab626f53154fe1898ab2fd58e80f01 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:51 -msgid "The land area should be between 50000-150000 m²." -msgstr "Wilayah ini seharusnya memiliki wilayah antara 50000-150000 m²." - -# cbfa9ef0304047788ac363102c591aa6 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:54 -msgid "3. Data" -msgstr "3. Data" - -# f3fb7ddce09e478283a42e0591fa2ae8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:56 -msgid "To answer these questions, we’re going to need the following data:" -msgstr "Untuk menjawab pertanyaan ini, kita membutuhkan data berikut: " - -# 6569bb23e4364e2380ca96c0228af556 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:58 -msgid "Landuse in Sleman regency" -msgstr "Penggunaan Lahan di Kabupaten Sleman" - -# 86a60588003e44b3b6f083637298e6c5 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:59 -msgid "Streets in Sleman" -msgstr "Jalan di Kabupaten Sleman" - -# df93c4f291ee425ab7fe07a51effe98a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:60 -msgid "Location of health facilities" -msgstr "Lokasi fasilitas kesehatan" - -# 38a8437a78ae428f9cd3e33902e4c2e4 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:61 -msgid "" -"KRB Merapi (Merapi Eruption Disaster Prone Region - this is the same data " -"that we learned how to georeference in the previous module)" -msgstr "" -"KRB Merapi (Kawasan Rawan Bencana Merapi - data yang menunjukkan zona bahaya " -"yang dipelajari pada saat bagaimana cara georeferensi di modul sebelumnya) " - -# 4b2c2fda9a2c40f19c9ee1f1af06ab56 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:64 -msgid "" -"For this exercise the data has been provided already, but in a real scenario " -"you may need to find providers for the datasets in question. In Indonesia, " -"the National Land Agency and BNPB Bappeda are good sources for the types of " -"data you will need, and OpenStreetMap can be used as a source for roads and " -"infrastructure." -msgstr "" -"Untuk latihan ini data telah disediakan, tetapi di dalam skenario sebenarnya " -"Anda mungkin perlu mencari penyedia untuk dataset yang bersangkutan. Di " -"Indonesia, Badan Pertanahan Nasional (BPN), Badan Nasional Penanggulangan " -"Bencana (BNPB) dan Bappeda adalah sumber yang baik untuk jenis data yang " -"Anda butuhkan, dan OpenStreetMap dapat digunakan sebagai sumber untuk jalan " -"dan infrastruktur." - -# 70899b3baf2a45c085f6200a76db9870 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:71 -msgid "4. Start a project" -msgstr "4. Memulai proyek" - -# e4eda803768444e6a48db46d3cec3480 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:73 -msgid "Now that we know what we want to do, let’s start doing it!" -msgstr "" -"Sekarang kita tahu apa yang ingin kita kerjakan, mari mulai mengerjakannya! " - -# d6904b9ec5fa40cdabe007e47cc3e924 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:75 -msgid "Start a new QGIS project." -msgstr "Buka proyek QGIS baru." - -# 52202360b0b24cdebabb9d13035c6ec8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:80 -msgid "" -"Start adding the layers we will use. In the :file:`Sleman/Merapi/` folder, " -"add the layers :file:`jalan_sleman_49S`, :file:`tempat_penting_Sleman_49S`, :" -"file:`KRB3_49S` and :file:`vegetasi_49S`. Your Layers panel should look like " -"this:" -msgstr "" -"Tambahkan *layer* yang akan kita gunakan. Pada folder :file:`/Sleman/" -"Merapi`, tambahkan layer :file:`jalan_sleman_49S`, :file:" -"`tempat_penting_Sleman_49S`, :file:`KRB3_49S` dan :file:`vegetasi_49S`. " -"Panel Layer Anda akan terlihat seperti ini:" - -# 35881ca0e6ea401f9d8068c2d7c402f5 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:88 -msgid "" -"Most of the layers are pretty self-explanatory, but what are KRB3, KRB2, and " -"KRB1? These layers show areas of impact when Merapi erupts. KRB3 is the area " -"of worst impact, KRB2 is medium, and KRB1 has little impact. In this " -"scenario we want to find locations that are not within KRB3." -msgstr "" -"Sebagian *layer* sudah cukup jelas, tetapi apakah KRB 3, KRB 2, dan KRB 1? " -"*Layer-layer* ini menunjukkan area terdampak ketika Merapi meletus. KRB 3 " -"adalah area terdampak paling besar, KRB 2 adalah area terdampak menengah, " -"dan KRB 1 adalah area terdampak kecil. Pada skenario ini, kita ingin mencari " -"lokasi yang tidak berada di KRB 3. " - -# fd8acc2796c148c58d5b8e80b488c51c -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:93 -msgid "" -"The data we are working with now is similar to that from previous modules, " -"but now it is in a Projected Coordinate System. The previous data was saved " -"in WGS84 - this meant that the coordinates of our features were stored in " -"degrees, which aren’t very good for measuring size or distance. By using a " -"projected system our coordinates are in metres, which is important for " -"analysis, because we can easily measure distances between and around " -"features." -msgstr "" -"Data yang akan kita gunakan untuk bekerja sekarang sama seperti modul-modul " -"sebelumnya, tetapi sekarang dalam Sistem Koordinat Terproyeksi. Data " -"sebelumnya disimpan dalam WGS 84 – ini berarti bahwa data kita disimpan " -"dalam satuan derajat, yang mana kurang sesuai untuk mengukur luas ataupun " -"jarak. Dengan menggunakan Sistem Koordinat Terproyeksi, data kita disimpan " -"dalam satuan meter, yang mana sangat penting untuk analisis, karena dengan " -"demikian kita dapat mengukur jarak antar dan di sekitar suatu fitur dengan " -"mudah." - -# c29080c1433e4f21a91671af104013ed -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:100 -msgid "" -"Rename the layers by right-clicking on them and selecting :guilabel:`Rename`." -msgstr "Klik kanan pada nama *layer* dan pilih :guilabel:`Rename`." - -# 0b21240463b649c5a1c369945778ae9b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:102 -msgid "" -"Give them the new, simpler names :guilabel:`jalan`, :guilabel:" -"`lokasi_penting`, :guilabel:`KRB III` and :guilabel:`vegetasi`." -msgstr "" -"Beri nama baru yang lebih sederhana untuk *layer-layer* tersebut seperti :" -"guilabel:`jalan`, :guilabel:`lokasi_penting`, :guilabel:`KRB III` dan :" -"guilabel:`vegetasi`." - -# 8bc53dc7f2ec4f69ad28c2b38086fcd7 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:105 -msgid "Save your project as :kbd:`merapi_analisis.qgs`." -msgstr "Simpan proyek Anda sebagai :kbd:`merapi_analisis.qgs`." - -# 6373931b399f4bd18c41aec921b64a30 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:107 -msgid "" -"In your operating system’s file manager, create a new folder under :file:" -"`qgis/Sleman/Merapi/` and call it :file:`evakuasi_bencana`." -msgstr "" -"Pada file manager sistem operasi Anda, buat folder baru di dalam folder :" -"file:`qgis/Sleman/Merapi` dan beri nama folder tersebut :file:" -"`evakuasi_bencana`." - -# 460dd7a54ff64566a7b09a6213d02d05 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:111 -msgid "" -"This is where you’ll save the datasets that we will create during our " -"anaysis." -msgstr "" -"Ini adalah tempat penyimpanan dataset Anda yang akan kita buat selama " -"analisis. " - -# 225214252880499a82a8708601d3936a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:113 -msgid "Now that we’ve got the data, let’s analyse the problem!" -msgstr "" -"Sekarang kita telah memiliki data yang kita butuhkan, mari menganalisis " -"masalah! " - -# 2dc31419419342528c3e6593bb17808b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:116 -msgid "5. Analysing the problem: farms and dry fields" -msgstr "5. Analisis masalah: kebun dan tegalan" - -# 09062df5404e4f04b1039bd1b968b62d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:118 -msgid "" -"The first criteria we’re facing is that the land must be a farm or dry " -"field, and it must be in one of three areas. So let’s tell QGIS to only show " -"us the farms and dry fields that are, in fact, in these sub-districts!" -msgstr "" -"Kriteria pertama yang kita hadapi adalah bahwa lahan tersebut haruslah " -"berupa kebun atau tegalan, dan harus berada di salah satu dari tiga " -"kecamatan. Jadi mari kita tunjukkan di QGIS, kebun dan tegalan di dalam " -"Kecamatan tersebut!" - -# 7282b36ac82f442e996efd9fe6ba9ff2 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:122 -msgid "Right-click on the :guilabel:`vegetasi` layer in the Layers panel." -msgstr "Klik kanan *layer* :guilabel:`vegetasi` pada panel Daftar Layer." - -# 2ae7f06ec20f488387a93e85dfb33fb8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:124 -msgid "Click :guilabel:`Filter...` This opens the Query Builder dialog." -msgstr "" -"Klik :guilabel:`Saring...`, maka akan muncul kotak dialog Pembangunan Kueri." - -# dbda1d5d7a184dd6bb18d764113bad30 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:129 -msgid "" -"Scroll down in the Fields list on the left of this dialog until you see the " -"field :guilabel:`kec`. Click on it once." -msgstr "" -"Gulung ke bawah dalam daftar *Field* di sebelah kiri kotak dialog dan " -"temukan *field* :guilabel:`kec`. Klik satu kali pada nama *field* tersebut." - -# 90fbab0bd50243d5a8e9709e2593d0f8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:132 -msgid "Click the :guilabel:`All` button underneath the Values list:" -msgstr "Klik tombol :guilabel:`All` dibawah daftar Values: " - -# 80d6eb107a1247fb8c8be40fcf5542ec -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:137 -msgid "" -"Next we are going to build a query. A query is a statement that allows us to " -"show only the data that we want from a layer. In this case, we want to " -"instruct QGIS to only show us farms and dry fields, that have a sub-district " -"value equal to Ngemplak, Turi, or Pakem." -msgstr "" -"Selanjutnya kita akan membangun sebuah *query*. *Query* adalah suatu " -"pernyataan yang memungkinkan kita untuk hanya menampilkan data yang kita " -"inginkan dari suatu *layer*. Dalam kasus ini, kita ingin menginstruksikan " -"QGIS untuk hanya menunjukkan kebun dan tegalan yang juga memiliki nilai " -"kecamatan berupa Ngemplak, Turi, atau Pakem." - -# d1fb6ee51bef4fe998dae6a138b67b4d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:142 -msgid "Double-click :guilabel:`kec` in the Fields list." -msgstr "Klik kanan pada nama *field* :guilabel:`kec` pada daftar *Field*." - -# 9e9c8a3081ce4fbe85114d438264ba7e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:144 -msgid "Click the :guilabel:`=` button (under Operators)." -msgstr "Klik tombol :guilabel:`=` (di bawah Operator)." - -# e4161aacd4bd4025a1daa6beea58c4ea -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:149 -msgid "Double-click the value :guilabel:`Ngemplak` in the Values list." -msgstr "Klik dua kali pada nilai :guilabel:`Ngemplak` di daftar Nilai." - -# 41da083c13b64e0990fb7f041b68b20b -# 094e70dcfa1f4f818a5dfdfc369a2a7a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:151 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:168 -msgid "Click :guilabel:`OR`." -msgstr "Klik :guilabel:`OR`." - -# f939fb10ac5149fea6a6d72d8630bfb8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:153 -msgid "" -"Repeat these steps twice more, using the values :guilabel:`Turi` and :" -"guilabel:`Pakem` instead of :guilabel:`Ngemplak`. The query should look like " -"this:" -msgstr "" -"Ulangi langkah ini dua kali lagi, untuk nilai :guilabel:`Turi` dan :guilabel:" -"`Pakem`, bukan :guilabel:`Ngemplak`. Pernyataan *query* akan terlihat " -"seperti ini:" - -# e7bc020964004f70b55bd555c35ab22e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:160 -msgid "Click :guilabel:`AND`." -msgstr "Klik :guilabel:`AND`." - -# e87bd8d7ac6b4ef4b58a51b588dfdda8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:162 -msgid "" -"Now highlight :guilabel:`guna_lahan` in the Fields list, and click the :" -"guilabel:`All` button to load the values." -msgstr "" -"Sekarang sorot :guilabel:`guna_lahan` pada daftar *Field*, dan klik tombol " -"“All” untuk memuat nilai data." - -# 89fb1c8619124eba98b0da16d2d61ccf -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:165 -msgid "" -"Double-click :guilabel:`guna_lahan`. Then click the :guilabel:`=` button. " -"Then double-click the value :guilabel:`KEBUN`." -msgstr "" -"Klik dua kali :guilabel:`guna_lahan` dan klik tombol :guilabel:`=`. Kemudian " -"klik dua kali pada nilai :guilabel:`KEBUN` di daftar Nilai." - -# 20696a65a25840e7890f7659543b7b94 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:170 -msgid "" -"Repeat the previous step but instead of :guilabel:`KEBUN` use :guilabel:" -"`TEGALAN`. Your query should look like this:" -msgstr "" -"Ulangi langkah sebelumnya tetapi bukan untuk :guilabel:`KEBUN` melainkan :" -"guilabel:`TEGALAN`. Pernyataan *query* Anda akan terlihat seperti ini: " - -# 7c062c74c6c346f38e724b1f0ee3d011 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:176 -msgid "" -"The idea is that the query will filter the data layer so that it will only " -"show us the features we want - that is, farms and dry fields in Pakem, Turis " -"and Ngemplak." -msgstr "" -"Idenya adalah *query* akan menyaring *layer* data sehingga *layer* hanya " -"akan menunjukkan kepada kita fitur yang kita inginkan – dalam contoh ini " -"yaitu kebun dan tegalan di Kecamatan Pakem, Turi, dan Ngemplak." - -# 13c98862b00d4295a3f90ff57be08d7c -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:180 -msgid "" -"We need to add one more thing to our query: parentheses. Without these, our " -"query won’t work quite right. Add two pairs of parentheses on each side of " -"the word AND, like so:" -msgstr "" -"Kita harus menambahkan satu hal lagi pada pernyataan, yaitu tanda kurung. " -"Tanpa tanda kurung, *query* kita tidak dapat bekerja dengan baik. Kita perlu " -"menambahkan dua pasang tanda kurung di setiap sisi kata *AND*, seperti ini:" - -# 63561c7e3b0f4828aaf9d95186ca1d82 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:187 -msgid "" -"Click :guilabel:`OK`. The :guilabel:`vegetasi` layer has far fewer features " -"now." -msgstr "" -"Klik :guilabel:`OK`. *Layer* :guilabel:`vegetasi` sekarang memiliki fitur " -"yang lebih sedikit." - -# b5cf8ff7413f4bdba09ebf85f30f36c1 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:193 -msgid "" -"Well done! We’ve applied our first criteria to begin solving the problem!" -msgstr "" -"Kita telah mengaplikasikan kriteria pertama untuk memulai memecahkan " -"masalah! " - -# c49c97e87a9043eeaa1f4b11385a043d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:196 -msgid "6. Danger zone" -msgstr "7. Zona bahaya" - -# 86fd2afd0e7844a4b781973a8dbb51ad -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:198 -msgid "" -"Our next criteria is that our chosen location should be outside of the " -"danger zone, which is defined by the layer :guilabel:`KRB III`. For this we " -"can use the Spatial Query tool." -msgstr "" -"Kriteria selanjutnya adalah memilih lokasi di luar zona bahaya, yang " -"didefinisikan oleh *layer* :guilabel:`KRB III`. Untuk ini, kita dapat " -"menggunakan Kueri Spasial." - -# 8f9abe68e0b547cdb9775640c225f233 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:202 -msgid "Go to :menuselection:`Vector ‣ Spatial Query ‣ Spatial Query`." -msgstr "Klik menu :menuselection:`Vektor ‣ Kueri Spasial ‣ Kueri Spasial`." - -# 01b1eff6701c4670aea30531499767bd -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:207 -msgid "" -"Under :guilabel:`Select source features from` choose :guilabel:`vegetasi`. " -"In the next box choose :guilabel:`Is disjoint`. The third box should be set " -"to :guilabel:`KRB III`. The Spatial Query window should look like this:" -msgstr "" -"Pada :guilabel:`Pilih sumber fitur dari` pilih :guilabel:`vegetasi`. Di " -"kotak selanjutnya pilih :guilabel:`Merupakan Pemisahan`. Kemudian di kotak " -"ketiga atur menjadi :guilabel:`KRB III`. Jendela Kueri Spasial seharus " -"terlihat seperti ini:" - -# 92d4c8d3cab24e01a91bc408fd695877 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:214 -msgid "" -"Click :guilabel:`Apply`. Then click :guilabel:`Close` once the selection has " -"been applied." -msgstr "" -"Klik :guilabel:`Apply`. Kemudian klik :guilabel:`Close` begitu kueri spasial " -"telah diproses/diterapkan." - -# 47236747ef6f4f2789bf0430a3f185b6 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:220 -msgid "" -"Now the vegetasi layer looks like the image below. Notice that all the " -"features have been selected that fall outside the KRB III area." -msgstr "" -"Sekarang *layer* vegetasi terlihat seperti gambar di bawah ini. Perhatikan " -"bahwa semua fitur yang terpilih berada diluar area KRB III." - -# 91a6c7566faa4b97a0f5eb3a240f76a4 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:226 -msgid "" -"The next steps of our analysis will be easier if we save this selection as a " -"separate layer." -msgstr "" -"Langkah selanjutnya analisis kita akan lebih mudah jika kita menyimpan " -"pilihan ini sebagai layer terpisah." - -# 5ac818e47ff147d09eba3438bb73d9c3 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:229 -msgid "" -"Right-click on the :guilabel:`vegetasi` layer and click :guilabel:`Save As..." -"`" -msgstr "" -"Klik kanan pada *layer* :guilabel:`vegetasi` dan klik :guilabel:`Simpan " -"sebagai...`" - -# c1f4fe60cdda4b67bf40b92ccb35d456 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:235 -msgid "" -"Next to the :guilabel:`Save as` field in the dialog that appears, click the :" -"guilabel:`Browse` button." -msgstr "" -"Di samping isian :guilabel:`Simpan sebagai` pada kotak dialog yang muncul, " -"klik tombol :guilabel:`Navigasi`." - -# a95cbfb8888543e8a471855f1b78d774 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:238 -msgid "" -"Save the layer under :file:`evakuasi_bencana/` as :kbd:`kebun_tegalan.shp`." -msgstr "" -"Simpan *layer* dalam folder :file:`evakuasi_bencana/` dan beri nama *layer* " -"tersebut sebagai :kbd:`kebun_tegalan.shp`." - -# a0689db46352434ba0c27e1c3169a8d9 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:240 -msgid "" -"Check the box labelled :guilabel:`Save only selected features` and :guilabel:" -"`Add saved file to map` in the :guilabel:`Save vector layer as...` dialog." -msgstr "" -"Beri tanda centang pada kotak bertuliskan :guilabel:`Simpan hanya fitur yang " -"dipilih` dan :guilabel:`Tambah berkas tersimpan ke dalam peta` pada kotak " -"dialog Simpan layer vektor sebagai..." - -# dcd75d4c9f584745b28391270b957a02 -# 5c9934c4fdd346009a59090ba16d936a -# d9a468534ddf411686c287874a160f1b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:247 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:472 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:497 -msgid "Click :guilabel:`OK`." -msgstr "Klik :guilabel:`OK`." - -# 1279464177f848c59ab79a0155b8626e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:249 -msgid "" -"Rename the layers by right-clicking on new vegetasi layer and selecting :" -"guilabel:`Rename`. Rename with :kbd:`kebun_tegalan`." -msgstr "" -"Ganti nama layer dengan klik kanan pada layer vegetasi yang baru dan pilih :" -"guilabel:`Ubah nama`. Tuliskan nama dengan :kbd:`kebun_tegalan`." - -# eeca04927a1841109d7c7426057e669e -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:252 -msgid "" -":guilabel:`Right-click` on the old vegetation layer and remove it. You " -"should have these layers remaining:" -msgstr "" -":guilabel:`Klik kanan` pada layer vegetasi yang lama dan hapus. Layer yang " -"tersisa seperti ini:" - -# fdc99e101d6b4b3eadf78e01ca0343a1 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:259 -msgid "7. Finding important roads" -msgstr "7. Mencari jalan-jalan yang penting" - -# b57eb01c01114b77b1edff84ebb7ea1a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:261 -msgid "" -"We have a problem with our roads layer, similar to that of our vegetation " -"layer. Our roads layer has too many roads! We only want to use main roads " -"for our analysis, so that we can meet the criteria that our location is " -"within 300 metres of a major road. Once again, we will use the Query Builder." -msgstr "" -"Kita memiliki masalah dengan layer jalan kita, hampir sama dengan layer " -"vegetasi. Layer jalan memiliki begitu banyak jalan! Kita hanya ingin " -"menggunakan jalan utama untuk analisis, sehingga kita dapat memenuhi " -"kriteria lokasi yang terletak dalam jarak 300 meter dari jalan utama. Sekali " -"lagi, kita akan menggunakan Pembangun Query." - -# 65d841d3684b4c98845d3219dadb0b28 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:266 -msgid "" -"Right-click on the :guilabel:`jalan` layer and click :guilabel:`Filter...`" -msgstr "" -"Klik kanan pada layer :guilabel:`jalan` dan klik :guilabel:`Saring...`." - -# b84ce570bb96453ea1ad411617ae4619 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:268 -msgid "" -"Build a query for the roads layer, like you did above for the vegetation " -"layer You want only primary and secondary roads, so you need to build this " -"query:" -msgstr "" -"Buat query untuk layer jalan, seperti yang Anda lakukan pada layer vegetasi. " -"Anda hanya ingin tipe primer dan sekunder, jadi Anda perlu membuat query ini:" - -# 4c52e3f5799440d4867bf8180f0d7c53 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:272 -msgid "*\"TYPE\" = 'primary' OR \"TYPE\" = 'secondary'*" -msgstr "*\"TYPE\" = 'primary' OR \"TYPE\" = 'secondary'*" - -# 110beba9618445ae8f043b40e60b5738 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:274 -msgid "" -"You can use the approach that we learned above, or you can simply type this " -"command into the query box. But be careful that you type it correctly!" -msgstr "" -"Anda dapat menggunakan pendekatan yang kita pelajari di atas, atau Anda " -"cukup ketik perintah ini di dalam kotak pertanyaan. Sekarang ketik query di " -"bawah dengan benar!" - -# f2f20454a5e549168207607f072f9a40 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:282 -msgid "8. Looking for health facilities" -msgstr "8. Mencari fasilitas kesehatan" - -# 350f10dbc31a4c9ab7d312087ed3ec9f -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:284 -msgid "" -"Using the same approach, build a query for the :guilabel:`lokasi_penting` " -"layer as shown:" -msgstr "" -"Menggunakan pendekatan yang sama, buat query untuk layer :guilabel:" -"`lokasi_penting` seperti yang ditampilkan:" - -# 017a5640983e4e5eacd5d6ee31c260fe -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:287 -msgid "*\"Fungsi\" = 'Kesehatan'*" -msgstr "*\"Fungsi\" = 'Kesehatan'*" - -# 5f24d36e1b92435a971cebef4697accd -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:290 -msgid "9. Buffering Roads" -msgstr "9. Buffer Jalan" - -# 3590f6e1eed64508b0a59d36ad4f4b06 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:292 -msgid "" -"Okay, we’ve refined our data a bit so that it shows us the features we are " -"interested in analysing. Remember that according to our criteria our land " -"area should be within 300 metres of a main road and close to a health " -"facility. QGIS allows us to calculate distances from any vector object, and " -"we will use this functionality to help us reach a solution." -msgstr "" -"Kita sudah menyempurnakan data sedikit sehingga dapat menunjukkan fitur yang " -"digunakan dalam menganalisis. Ingat bahwa menurut kriteria area lahan harus " -"berada dalam jarak 300 meter dari jalan utama dan dekat dengan fasilitas " -"kesehatan. QGIS memungkinkan kita untuk menghitung jarak dari setiap objek " -"vektor, dan kita akan menggunakan fungsi ini untuk membantu kita mencapai " -"solusi." - -# 3e5edddc2a2d4b4b91082aab17ad347d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:298 -msgid "" -"Make sure that only the :guilabel:`jalan` and :guilabel:`kebun_tegalan` " -"layers are visible, to simplify the map while you’re working." -msgstr "" -"Pastikan hanya layer :guilabel:`jalan` dan layer :guilabel:`kebun_tegalan` " -"yang terlihat, untuk menyederhanakan peta saat Anda sedang bekerja." - -# 42b5eabdaf094f41938d866ddad49147 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:304 -msgid "Go to :menuselection:`Vector ‣ Geoprocessing Tools ‣ Buffer(s)`." -msgstr "" -"Buka :menuselection:`Vector ‣ Peralatan geoprosesing ‣ Penyangga (Buffer)`." - -# 08b12762da6747c19f460674ca742d3d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:309 -msgid "In the first drop-down box select :guilabel:`jalan`." -msgstr "Pada kotak daftar pilihan pertama pilih :guilabel:`jalan`." - -# 3da096f4ec63448590dbc1ae206e660a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:311 -msgid "Enter :kbd:`300` next to :guilabel:`Buffer distance`." -msgstr "Masukan :kbd:`300` di sebelah :guilabel:`Jarak penyangga`." - -# 1ef27ee637c646319e2f430dbb2e1eb6 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:313 -msgid "Check the box next to :guilabel:`Dissolve buffer results.`" -msgstr "" -"Beri tanda centang pada kotak di sebelah :guilabel:`Hasil dissolve penyangga." -"`" - -# d63139b782c74d50a480a1b75e02f5de -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:315 -msgid "" -"Click :guilabel:`Browse` and type :kbd:`buffer_jalan_300m.shp` for the " -"filename." -msgstr "" -"Klik :guilabel:`Browse` dan ketik :kbd:`buffer_jalan_300m.shp` untuk nama " -"filenya." - -# 90ab1e5643af4e518954663fad886e0a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:321 -msgid "" -"We input the buffer distance in metres. Good thing we used projected data!" -msgstr "" -"Perhatikan bahwa kita memasukan jarak penyangga dalam meter. Hal yang baik " -"kita menggunakan data yang terproyeksi!" - -# b96658d273614fe293a1864fd7d28297 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:324 -msgid "" -"Click :guilabel:`OK`. QGIS will create a buffer around the streets that " -"extends 300 metres." -msgstr "" -"Klik :guilabel:`OK`. QGIS akan membuat buffer disekitar jalan-jalan yang 300 " -"meter." - -# 80153ce85cac450bac437966c120fa09 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:327 -msgid "" -"When the process finish and buffer_jalan_300m.shp appear in the Layers, you " -"can click :guilabel:`Close` the Buffer dialog." -msgstr "" -"Ketika proses selesai dan buffer_jalan_300m.shp telah muncul di Daftar " -"Lapisan, Anda dapat menutup kotak dialog Buffer dengan klik :guilabel:" -"`Close`." - -# c4004880a2c94378aa380e0ddada82ad -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:333 -msgid "Close the Buffer dialog and see your new layer:" -msgstr "Tutup kotak dialog Buffer dan lihat layer baru Anda:" - -# fbf6eb3aaef7465fa8c6c6b9280fbfcd -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:338 -msgid "" -"Those big fat lines are actually areas that are within 300 metres of primary " -"and secondary roads." -msgstr "" -"Garis besar ini adalah dareah yang berada dalam 300 meter dari jalan primer " -"dan sekunder." - -# e868793b1a564c31bf523f9b20f723e8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:342 -msgid "10. Buffering health facilities" -msgstr "10. Buffer Fasilitas Kesehatan" - -# 4dade93d63b24583890ea3350f9199d5 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:344 -msgid "" -"Now try it yourself! Using the same approach, create a new buffer layer " -"around your health facilities. The buffer should be 2.5 km in radius." -msgstr "" -"Sekarang cobalah sendiri! Gunakan pendekatan yang sama, membuat layer buffer " -"baru di sekitar fasilitas kesehatan Anda. Buffer tersebut harus 2,5 km." - -# aeb77ccaf58a409990a2aae03e4bfcc9 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:347 -msgid "" -"Don’t forget to check the box :guilabel:`Dissolve buffer results` so every " -"overlapping buffer will become one feature. Then save the new layer in the " -"same directory as :file:`buffer_fas_kesehatan_2.5km.shp`. Your resulting map " -"will look something like this:" -msgstr "" -"Jangan lupa memberi tanda centang pada kotak :guilabel:`Hasil dissolve " -"buffer` jadi setiap buffer yang overlay akan tergabung menjadi satu fitur. " -"Kemudian simpan layer baru di direktori yang sama sebagai :file:" -"`buffer_fas_kesehatan_2.5km.shp`. Peta hasil Anda akan terlihat seperti ini:" - -# d8e0318f0fc44b9894d508916ec42e8c -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:355 -msgid "" -"Remember that the buffer distance is in metres. Keep this in mind when you " -"want to create a 2.5 km buffer!" -msgstr "" -"Ingat bahwa jarak buffer dalam satuan meter. Ingatlah ini ketika Anda ingin " -"membuat buffer 2,5 km!" - -# 31c715269bfe4ab6ad0bab1f4ab3e2e8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:359 -msgid "11. Overlapping areas" -msgstr "11. Area Overlap" - -# ed1d1f7e1e264d64b29b8f2b62e000e7 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:361 -msgid "" -"Now we can see areas where a main road is 300 metres away and where there is " -"a health facility within 2.5 km. But we only want the areas where both of " -"these criteria are satisfied at once! To do that we will use the Intersect " -"tool." -msgstr "" -"Sekarang kita dapat melihat area dimana jalan utama adalah 300 meter dan ada " -"fasilitas kesehatan dalam jangkauan 2,5 km. Tetapi kita hanya ingin area " -"dimana kedua kriteria ini terpenuhi sekaligus! Untuk melakukannya kita akan " -"menggunakan tool Perpotongan." - -# 98566aece7ec40b28722e22f77e1a9e8 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:365 -msgid "Go to :menuselection:`Vector ‣ Geoprocessing Tools ‣ Intersect`." -msgstr "Buka :menuselection:`Vector ‣ Peralatan Geoprosesing ‣ Perpotongan`." - -# 50ac31b8bd3c439a894d45698a2e4a4b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:370 -msgid "" -"Enter :guilabel:`buffer_fas_kesehatan_2.5km` and :guilabel:" -"`buffer_jalan_300m` as the two input layers. Name the output shapefile :kbd:" -"`intersect_buffer_jalan_kesehatan.shp`." -msgstr "" -"Masukan :guilabel:`buffer_fas_kesehatan_2.5km` dan :guilabel:" -"`buffer_jalan_300m` sebagai dua *layer input*. Nama *output* shapefile-nya :" -"kbd:`intersect_buffer_jalan_kesehatan.shp`." - -# cf5f76e68f4a45b7aeea1ef26a2cdb68 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:377 -msgid "Click :guilabel:`OK` and add the layer to the project when prompted." -msgstr "Klik :guilabel:`OK` dan tambahkan *layer* ke proyek ketika diminta." - -# 894cbcf9ec6a453383a6dd1f008e6617 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:379 -msgid "" -"If we hide the original layers, we can see that our new layer shows us the " -"areas where they intersect. These are the areas where both of these criteria " -"are satisfied." -msgstr "" -"Jika kita menyembunyikan *layer* asli, kita dapat melihat bahwa *layer* baru " -"menunjukkan area dimana mereka berpotongan. Ini adalah area dimana kedua " -"kriteria terpenuhi." - -# 67556b789387488bb8d8f1cf1f7e8801 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:387 -msgid "12. Select farms and dry fields" -msgstr "12. Memilih Kebun dan Tegalan" - -# 9b00ee68eefd46f19fd7115e9e2c2329 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:389 -msgid "" -"Now we have the layer :guilabel:`kebun_tegalan`, which satisfies two of our " -"criteria, and the layer :guilabel:`intersect_buffer_jalan_kesehatan.shp`, " -"which satisfies two other criteria. We need to know where they overlap!" -msgstr "" -"Sekarang kita memiliki layer :guilabel:`kebun_tegalan`, yang memenuhi dua " -"kriteria kita, dan layer :guilabel:`intersect_buffer_jalan_kesehatan.shp`, " -"yang memenuhi dua kriteria lainnya. Kita perlu mengetahui dimana mereka " -"*overlap*!" - -# 22fa2c3f89c24184859f8c6620bdf136 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:393 -msgid "" -"Go to :menuselection:`Vector ‣ Research Tools ‣ Select by location`. A " -"dialog will appear." -msgstr "" -"Buka :menuselection:`Vector ‣ Peralatan Penelitian ‣ Pilih berdasarkan " -"lokasi`. Kotak dialog akan muncul." - -# 3dfe5448ab5c4197a61fd4463aad4963 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:399 -msgid "Set it up like this:" -msgstr "Atur seperti berikut ini:" - -# d2cc11a9a80f49f5a7f43db674c8d52f -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:404 -msgid "" -"Click :guilabel:`OK` and you’ll see the results are selected (they are " -"yellow)." -msgstr "" -"Klik :guilabel:`OK` dan Anda akan melihat hasil yang terpilih (berwarna " -"kuning)." - -# 5c18ab293fe4461db348e211dbfc8f6a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:410 -msgid "Let’s save this selection as a new layer." -msgstr "Mari kita menyimpan pilihan ini sebagai layer baru." - -# 55fac701b92044e0bff542fa2c116a6d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:412 -msgid "Right-click on the :guilabel:`kebun_tegalan` layer in the Layers panel." -msgstr "" -"Klik kanan pada *layer* :guilabel:`kebun_tegalan` di panel daftar *Layer*." - -# ac9dfe4bf17546cdadc79d4acefeaa5b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:414 -msgid "Click :guilabel:`Save As...`." -msgstr "Klik :guilabel:`Simpan sebagai...`." - -# 4ca94fa4769b40e1a9dc6c197284afe5 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:416 -msgid "" -"Name the new file :kbd:`kebun_tegalan_lokasi_terpilih.shp`. Then check the " -"box next to :guilabel:`Save only selected features` and :guilabel:`Add saved " -"file to map`." -msgstr "" -"Beri nama file yang baru dengan :kbd:`kebun_tegalan_lokasi_terpilih.shp`. " -"Kemudian berikan tanda centang pada :guilabel:`Simpan hanya fitur yang " -"dipilih` dan :guilabel:`Tambah berkas tersimpan ke dalam peta`." - -# ca47d69d58be44628e91866c2d1b6d1b -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:423 -msgid "" -"After the process is finish, rename the layers by right-clicking the new " -"kebun_tegalan layer and selecting :guilabel:`Rename`. Rename with :kbd:" -"`kebun_tegalan_lokasi_terpilih`. If we hide all the other layers, we can see " -"the resulting layer:" -msgstr "" -"Setelah proses selesai, ubah nama pada layer dengan klik kanan pada layer " -"kebun_tegalan yang baru dan klik :guilabel:`Ubah nama`, beri nama dengan :" -"kbd:`kebun_tegalan_lokasi_terpilih`. Jika kita ingin menyembunyikan semua " -"layer yang lainnya, kita dapat melihat hasilnya seperti ini:" - -# 4c1121fa120f4da9945be67785040a05 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:431 -msgid "13. Select land areas of the appropriate size" -msgstr "13. Pilih Area Lahan dengan Ukuran Tepat" - -# 789215e610494814884cb7674728500f -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:433 -msgid "" -"Hooray! We have now found land areas that meet four of our five criteria. " -"The only remaining criteria is the size of the land. We need to make sure " -"that our possible locations are between 50000-150000 m²." -msgstr "" -"Kita telah menemukan lahan yang memenuhi empat dari lima kriteria. Kriteria " -"yang tersisa adalah ukuran lahan. Kita perlu memastikan bahwa lokasi kita " -"antara 50000-150000 m²." - -# bf3a9ccd591746eb9a3486cd4f78becb -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:437 -msgid "" -"Open the attribute table for the :guilabel:`kebun_tegalan_lokasi_terpilih` " -"layer. Notice that there is a column named :guilabel:`luas_ha`. This is the " -"size of the area in hectares. We could use this field to answer our " -"question, but let’s add another column that contains the size of the area in " -"square metres." -msgstr "" -"Buka tabel atribut untuk layer :guilabel:`kebun_tegalan_lokasi_terpilih`. " -"Anda akan melihat bahwa ada kolom bernama :guilabel:`luas_ha`. Ini adalah " -"ukuran area dalam hektar. Kita dapat menggunakan field ini untuk menjawab " -"pertanyaan, tapi mari tambahkan kolom lain yang mengandung ukuran area dalam " -"meter persegi." - -# 98e8badd87b74942a3f2d6e79302515a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:443 -msgid "" -"Select the :guilabel:`kebun_tegalan_lokasi_terpilih` layer and open its " -"attribute table:" -msgstr "" -"Pilih layer :guilabel:`kebun_tegalan_lokasi_terpilih` dan buka tabel atribut:" - -# 4edde082e6e146c7b499b7f22ad3502d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:449 -msgid "Enter editing mode by clicking this button:" -msgstr "Masuk ke mode editing dengan megklik tombol berikut:" - -# 7085a21147934ba197992216b6116784 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:454 -msgid "" -"Click the :guilabel:`Start the field calculator` button (located in the " -"Attribute Table window)." -msgstr "" -"Klik tombol :guilabel:`kalkulator field` (terletak di jendela Tabel Atribut)." - -# bf950c47574e410cbc764820d9ea16ee -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:460 -msgid "" -"Check the box next to :guilabel:`Create a new field`. In the box type :kbd:" -"`luas_m2`." -msgstr "" -"Beri centang di kotak sebelah :guilabel:`Membuat field baru`. Di dalam kotak " -"ketikan :kbd:`luas_m2`." - -# 642cec9b7cab447e9910237618d2b55d -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:466 -msgid "" -"Change :guilabel:`Output field type` to :guilabel:`Decimal number (real)`. " -"Then click on :guilabel:`Geometry` and double-click :guilabel:`$area`." -msgstr "" -"Ubah :guilabel:`Type field keluaran` menjadi :guilabel:`Bilangan Desimal " -"(real)`. Kemudian klik pada :guilabel:`Geometri` dan klik dua kali pada :" -"guilabel:`$area`." - -# 73b230aace0241f8b0f830fd894b061a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:474 -msgid "" -"You should now see a new column on your attribute table, named :kbd:" -"`luas_m2`. And QGIS has filled it in for us with square metres!" -msgstr "" -"Sekarang Anda dapat melihat kolom baru di tabel atribut Anda, yang bernama :" -"kbd:`luas_m2`. Dan QGIS sudah terisi dengan meter persegi!" - -# 8aed3d79adc54bf99126963a15572618 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:480 -msgid "Click the edit mode button again, and save your edits." -msgstr "Klik tombol edit mode lagi, dan simpan hasil editan Anda." - -# ac979c1c0a9a483c9c0c897fd6d2ce75 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:485 -msgid "Close the attribute table. Now we can just do a simple query." -msgstr "Tutup tabel atribut. Sekarang kita dapat melakukan query sederhana." - -# b05198a85f6b4918bafd89e2cf8250f3 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:487 -msgid "" -"Right-click on the :guilabel:`kebun_tegalan_lokasi_terpilih` layer and " -"click :guilabel:`Filter...`" -msgstr "" -"Klik kanan pada layer :guilabel:`kebun_tegalan_lokasi_terpilih` dan klik :" -"guilabel:`Saring...`" - -# 0bac35d1386a4757a610126fc6a03c6a -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:490 -msgid "Enter the following:" -msgstr "Ketikan query berikut ini:" - -# a682d11f535c475ca8cc5d14ac935c38 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:492 -msgid "*\"luas_m2\" >= 50000 AND \"luas_m2\" <= 150000*" -msgstr "*\"luas_m2\" >= 50000 AND \"luas_m2\" <= 150000*" - -# 974456136c4b4c01a44df6a6f13e5605 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:502 -msgid "" -"That’s it! We have eight pieces of land that meet ALL of our criteria. Any " -"of these pieces of land might be suitable for a location to place refugees." -msgstr "" -"Lihatlah! Kita memiliki delapan bidang lahan yang memenuhi semua kriteria " -"kita. Setiap bidang lahan mungkin cocok untuk lokasi tempat pengungsi. " - -# 0ede5749fe3f4b4dbec0624cf0c6c9ee -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:505 -msgid "" -"Right-click the :guilabel:`kebun_tegalan_terpilih` layer and click :guilabel:" -"`Save As`. Name the file :file:`refugees_location.shp`." -msgstr "" -"Klik kanan pada layer :guilabel:`kebun_tegalan_terpilih` dan klik :guilabel:" -"`Simpan sebagai`. Berikan nama file tersebut sebagai :file:" -"`refugees_location.shp`." - -# 6de9c3cd55bc42648b81f1f95f2024c9 -#: ../../source/training/old-training/beginner/qgis-inasafe/210-vector-analysis-for-problem-solving.rst:509 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/211-using-map-composer.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/211-using-map-composer.po deleted file mode 100644 index 2fb89b3f..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/211-using-map-composer.po +++ /dev/null @@ -1,702 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013-2014 -# elida nurrohmah , 2014 -# Emir Hartato , 2014 -# mahardika fadmastuti , 2013-2014 -# Ranie Dwi Anugrah , 2013-2014 -# Vasanthi Hargyono , 2014 -# Wulansari Khairunisa , 2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:47+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# e36663a0ac854e29a6d4709585aac785 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:6 -msgid "Module 11: Using Map Composer" -msgstr "Modul 11: Menggunakan Map Composer" - -# 7f9ea90fc273481bb37909f2fe443f8d -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# e31781ebcb264fe8820ee5fd2ec0746f -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:10 -msgid "Arrange map layout" -msgstr "Merancang layout peta " - -# 097d1e28d5f24af3a04fc1ea16de0e9f -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:11 -msgid "Add a new map" -msgstr "Menambahkan sebuah peta baru" - -# 6a0c436327af4d4b976f2b894069579f -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:12 -msgid "Add title to a map" -msgstr "Menambahkan judul pada sebuah peta " - -# 0c72ad5b00c74266afb41035e54ca832 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:13 -msgid "Add graphic and numeric scales" -msgstr "Menambahkan skala grafik dan numerik " - -# 2b27f3bd31d64ea0bacc5a00e44088cd -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:14 -msgid "Add grid to a map" -msgstr "Menambahkan grid pada sebuah peta " - -# 355afe5c33ce4eac8f08481e94b578dc -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:15 -msgid "Add an inset" -msgstr "Menambahkan sebuah inset" - -# a3fc3d321b01430ca04ae61f098d0d2b -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:16 -msgid "Customise the content of the legend" -msgstr "Menyesuaikan isi legenda" - -# 46428c51429d4c189d74e6c0cbf8f948 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:17 -msgid "Export a map to different formats (pdf, jpeg, svg)" -msgstr "" -"Meng-eksport sebuah peta ke dalam format yang berbeda (pdf, jpeg, jpeg, svg)" - -# f3799ea829b84332b8093b81929629be -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:19 -msgid "" -"A map is a means to communicate information (as well as new ideas) to the " -"audience. We use symbology to convey the contents of our data so it can be " -"easily understood. When we create a map layout, we go one step further - we " -"present our map so that it becomes a means of information." -msgstr "" -"Sebuah peta merupakan sarana untuk menyampaikan informasi (serta ide-ide " -"baru) kepada pembaca peta. Kita menggunakan simbologi untuk menyampaikan isi " -"dari data kita sehingga dapat dengan mudah dipahami. Ketika kita membuat " -"layout peta, kita telah satu langkah lebih jauh dalam hal menyajikan peta " -"kita sehingga menjadi sarana informasi." - -# 85ae972f204242c3917e60aa1d6a77a8 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:25 -msgid "" -"No matter what media we plan to distribute our map by (whether it’s printed " -"or sent over the internet), we must pay attention to how the map elements " -"are composed in the layout. In this module we will discuss the presentation " -"of printed maps, and create our very own." -msgstr "" -"Apapun media yang kita gunakan untuk mendistribusikan peta kita (baik versi " -"cetak maupun melalui internet), kita harus memperhatikan bagaimana elemen-" -"elemen yang ada di dalam peta dikemas ke dalam sebuah layout. Pada bab ini " -"kita akan mendiskusikan bagaimana mempresentasikan peta cetak dan membuat " -"layout peta milik kita sendiri." - -# ca6a997fd8ba4ceca168ba9988293606 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:31 -msgid "1. The Map Composer" -msgstr "1. Komposer Peta" - -# 72b158840a714ea1969c4ec3dcfde28f -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:33 -msgid "" -"The QGIS Map Composer allows you to prepare your map for printing. Apart " -"from the map, you are able to add additional information such as images, " -"labels, legends and scalebars." -msgstr "" -"Map Composer pada QGIS memungkinkan Anda untuk mempersiapkan peta hingga " -"siap untuk dicetak. Selain menambahkan peta, Anda juga dapat menambahkan " -"berbagai informasi tambahan seperti gambar, label, legenda, dan skala." - -# 380af1436c17483d8b2861a47e75844b -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:37 -msgid "" -"Let’s start with some data in the Sleman regency that has already been " -"symbolised. Open the project named :file:`print_2_11.qgs` in the :file:`qgis/" -"` directory." -msgstr "" -"Mari kita mulai dengan beberapa data pada Kabupaten Sleman yang telah " -"disimbolisasi. Buka sebuah project dengan nama :file:`print_2_11.qgs` yang " -"terletak di direktori :file:`qgis/` ." - -# cb2e5177be4f4aecb1b5ceec3e7ab029 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:44 -msgid "" -"This map shows some familiar layers from the previous module. We have the " -"roads and vegetation of Sleman, along with the three impact zones from a " -"Merapi eruption model." -msgstr "" -"Peta ini menunjukkan beberapa layer yang telah kita gunakan pada bab-bab " -"sebelumnya. Kita memiliki layer jalan dan vegetasi dari Sleman, begitu pula " -"dengan tiga buah zona dampak dari model erupsi Gunung Merapi." - -# a7f7f274715d4d21b2e8442d1c77f3a9 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:48 -msgid "" -"Let’s see how we can use Map Composer to adjust the layout and prepare this " -"map for printing." -msgstr "" -"Mari kita lihat bagaimana kita dapat menggunakan Map Composer untuk mengatur " -"layout dan mempersiapkan peta ini untuk dicetak." - -# 81e1b71566b74c978ffbccfd5641d6e3 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:51 -msgid "" -"Go to :menuselection:`Project ‣ New Print Composer`. Then, give a unique " -"title name for your layout, such as :kbd:`My Layout 1`. Click :guilabel:" -"`OK`. A new window will load that looks like this:" -msgstr "" -"Pergi ke :menuselection:`Proyek ‣ Print Komposer Baru`. Kemudian, berilah " -"sebuah nama unik untuk layout peta Anda, misalnya :kbd:`Layout Saya 1`. " -"Klik :guilabel:`OK`. Sebuah jendela baru akan terbuka dan tampak seperti ini:" - -# 33e9c080ced94dd9bd1ef8ee4632b753 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:58 -msgid "" -"This is the window where you can compose the layout of a map that you want " -"to print. The blank white area is your “canvas.” It is a model of the paper " -"you are going to print out. You can put various elements onto this canvas, " -"such as your map (obviously), a title, scalebar and legend. These are " -"elements commonly used on printed maps." -msgstr "" -"Ini adalah jendela dimana Anda dapat membuat sebuah layout dari peta yang " -"ingin Anda cetak. Area putih kosong yang tampak adalah “kanvas” Anda. Ini " -"merupakan sebuah model dari kertas yang nantinya akan Anda cetak. Anda dapat " -"menaruh bermacam-macam elemen pada kanvas ini, seperti peta Anda (secara " -"jelas), sebuah judul, skala, legenda, dan sebagainya. Inilah elemen-elemen " -"yang biasa digunakan pada peta cetak." - -# 1b6b7fdd461a45a69e1bf0ce7f6eb7a2 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:64 -msgid "" -"Take a look at the right panel. In the :guilabel:`Composition` tab, you can " -"change paper size, number of pages and quality of output." -msgstr "" -"Lihat pada panel sebelah kanan. Pada tab :guilabel:`Komposisi` , Anda dapat " -"mengubah ukuran kertas, jumlah halaman dan kualitas gambar peta." - -# e5994faeaf4e46b1a36b33fb335b453c -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:70 -msgid "" -"Take a look at the icons across the top of the window. We will use some of " -"these as we lay our map out, so here’s an overview of what they do:" -msgstr "" -"Lihatlah pada ikon-ikon yang ada pada bagian atas jendela. Kita akan " -"menggunakan beberapa dari ikon-ikon tersebut ketika kita melakukan layout " -"peta kita, berikut hal-hal apa saja yang dapat kita lakukan menggunakan ikon-" -"ikon tersebut:" - -# b9ee9834e5b14201a5cc797bad524d81 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:76 -msgid "Display Icon" -msgstr "Tampilan Ikon" - -# 122d769e497244d0b6115cc605a85c91 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:76 -msgid "Function" -msgstr "Fungsi" - -# 27e8cb6df7cc4b70af87154e41652894 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:78 -msgid "" -"**Add New Map** will add a map element. This is what we will use to add the " -"map from our project into our print layout. It should be noted, however, " -"that if we change the map in our QGIS project, it will not update the same " -"map that we have added to our print composer, as we shall see later." -msgstr "" -"**Tambahkan Peta Baru** akan menambahkann elemen peta. Inilah yang akan kita " -"gunakan untuk menambahkan peta dari proyek kita yang akan kita desain hingga " -"layak untuk dicetak. Perlu diingat, bahwa, jika kita mengubah peta pada " -"projek QGIS kita, maka hasil dari perubahan itu tidak akan memperbaharui " -"peta yang telah kita tambahkan pada print komposer kita, nanti akan kita " -"lihat lebih lanjut." - -# 2f291554ea02418ebf4039b9c739e6a7 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:84 -msgid "" -"**Add Image** allows us to add a picture. You can add a company or " -"organisational logo, or simply display images from a particular location. " -"You can also add an image of a compass (to point North)." -msgstr "" -"**Tambahkan Gambar** memungkinkan kita untuk menambahkan gambar. Anda dapat " -"menambahkan logo perusahaan atau organisasi, atau jika Anda hanya ingin " -"menampilkan gambar dari lokasi peta tersebut. Anda juga dapat menampilkan " -"gambar dari sebuah kompas atau arah mata angin (untuk menunjukkan arah " -"Utara)." - -# 533dac2d7bd648acb1186ddb878441d0 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:88 -msgid "" -"**Add New Label** is used for adding text to the layout, such as titles or " -"other information." -msgstr "" -"**Tambahkan Label Baru** digunakan untuk menambahkan teks pada layout, " -"seperti judul atau informasi lainnya. " - -# 47b3e1a74eba47f2841482389be45e35 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:91 -msgid "" -"**Add New Legend** is for adding a legend, which will conform to the active " -"layer in the QGIS window." -msgstr "" -"**Tambahkan Legenda Baru** untuk menambahkan legenda, yang akan dihubungkan " -"dengan layer aktif pada jendela QGIS." - -# 461b960bd46d49a8aa756f983a8aed02 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:94 -msgid "**Add New Scalebar** is used to add a scale to the layout." -msgstr "**Tambahkan Skala Bar Baru** untuk menambahkan skala pada layout." - -# 5b2730ffef8e4f6cab1fdc560ffbfd3b -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:96 -msgid "" -"**Add Ellipse/Triangle/Rectangle** is used to add one of these geometric " -"shapes. For example, this might be used to indicate special areas or " -"highlight things on the map." -msgstr "" -"**Tambahkan Ellips/Segitiga/Persegi Panjang** digunakan untuk menambahkan " -"salah satu dari bentuk geometrik ini. Contohnya, ini bisa digunakan untuk " -"mengindikasikan area-area tertentu atau untuk memberikan *highlight* pada " -"suatu objek pada peta." - -# 6534621b21a64dc7bf62d7b65b26a2c5 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:100 -msgid "**Add Arrow** is used to draw an arrow on the map layout." -msgstr "" -"**Tambah Panah** digunakan untuk menggambar sebuah panah pada layout peta." - -# 28dee0ada94e4983bfa0e371526213dc -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:102 -msgid "" -"**Select / Move Item** allows us to choose and move the elements that are in " -"the map layout. With this tool selected, you can right-click on an element " -"to lock its position." -msgstr "" -"**Pilih / Pindahkan Item** untuk memilih atau memindahkan elemen yang ada " -"pada layout peta. Dangan tool ini, Anda dapat melakukan klik kanan pada " -"sebuah elemen untuk mengunci posisi elemen tersebut." - -# b364a08bdab54a349c1bf81706a1bcb2 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:109 -msgid "2. Adding a new map" -msgstr "2. Menambahkan peta baru" - -# 2078e1ab84824ac088911ae6baad1af7 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:111 -msgid "" -"In the Print Composer window, click on the :guilabel:`Add new map` button." -msgstr "" -"Pada jendela Print Komposer, klik pada ikon :guilabel:`Tambahkan peta baru`." - -# abb1c396ca0f4f3e9710ddfe265d2333 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:116 -msgid "" -"Next, click and drag your mouse across the canvas, creating a box. Your map " -"layout should look similar to this when you are done:" -msgstr "" -"Berikutnya, klik dan geser mouse pada kanvas untuk membuat sebuah kotak. " -"Peta Anda akan nampak mirip seperti ini ketika Anda sudah selesai:" - -# 48ee0373fdbd43c983587b78bc154144 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:122 -msgid "" -"If you are not happy with the placement of your map, you can drag the " -"corners to change the size, or drag the entire element around the canvas." -msgstr "" -"Jika Anda tidak senang dengan penempatan dari peta Anda, Anda dapat " -"menggeser ujung-ujungnya untuk mengubah ukuran, atau geser seluruh elemen di " -"sekitar kanvas." - -# 75ba1784fbe94ba8a56027f1610ed5e2 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:126 -msgid "" -"Once you are happy set the scale of your map by going to the :guilabel:`Item " -"Properties` tab in the right panel." -msgstr "" -"Setelah Anda puas, silahkan atur skala peta Anda dengan pergi ke tab :" -"guilabel:`Properti Item` pada panel sebelah kanan." - -# ab0234b08e6240b08ad8ffbea58f194b -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:132 -msgid "" -"Edit the scale and press :kbd:`Enter`. You’ll see that the scale (zoom " -"level) of the map element changes. A scale of about 200000 should be good " -"for this project." -msgstr "" -"*Edit* skala dan tekan :kbd:`Enter`.. Anda akan lihat skala (tingkat " -"perbesaran) dari peta telah berubah. Skala sebesar 200000 tampaknya sudah " -"cukup untuk proyek ini." - -# 580d3ebde7ef4773a7f422742d4de7b3 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:136 -msgid "" -"Add a frame by clicking the box next to :guilabel:`Frame`. Configure the " -"frame colour and border thickness." -msgstr "" -"Anda juga dapat menambahkan bingkai dengan melakukan klik pada kotak di " -"samping :guilabel:`Frame`. Dan anda dapat mengubah warna bingkai dan juga " -"garis ketebalannya." - -# d198de83ca9d499fb0a2f91cdcb3853c -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:142 -msgid "" -"When you change the scale some parts of your map may become invisible. Click " -"on the “Move item content” button and drag the map so that it is all visible." -msgstr "" -"Ketika Anda mengubah skala peta, beberapa bagian dari peta Anda bisa jadi " -"tidak terlihat lagi. Klik pada tombol \"Pindahkan konten item\" dan geser " -"peta supaya seluruh komponen dapat terlihat. " - -# 53c15dbf0afc4b749da92d463ed9cd72 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:150 -msgid "3. Adding a title" -msgstr "3. Menambahkan Judul" - -# f5f773cd1e3344be9e0b488bc749c5da -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:152 -msgid "" -"Now we’ve got the most important thing added to our map layout - the map! " -"But let’s add some additional elements to make it more informative." -msgstr "" -"Sekarang kita telah memasukkan hal paling penting yang ingin kita tambahkan " -"pada layout peta kita - peta! Tetapi mari kita tambahkan beberapa elemen " -"tambahan untuk membuat peta ini lebih informatif. " - -# 120610193ee444c0b454c53ed0de2f1a -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:155 -msgid "" -"Let’s add a title to our map. Click on the :guilabel:`Add new label` button." -msgstr "" -"Mari menambahkan judul pada peta kita. Klik pada tombol :guilabel:" -"`Tambahkan label baru`" - -# 3bf0af9624494e5485b4cce98d6af86e -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:160 -msgid "" -"Adjust the size of the element. We will edit the text and the text " -"properties in the panel on the right." -msgstr "" -"Sesuaikan ukuran dari elemen. Kita akan mengedit teks dan pengaturan teks " -"terdapat pada panel di sebelah kanan." - -# 9faafaa3fc83499a9832d747f0a0c02a -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:163 -msgid "" -"Click the :guilabel:`Font` button. Change the text size to 18 and make it " -"bold. Change the alignment to :guilabel:`Center`. Lastly, add the following " -"text, or create your own:" -msgstr "" -"Klik pada tombol :guilabel:`Huruf`. Ubah ukuran teks hingga ukuran 18 dan " -"buat menjadi tebal. Ubah deretan teks menjadi :guilabel:`Tengah`. Terakhir, " -"tambahkan teks berikut ini, atau buat teks Anda sendiri:" - -# 152bfeeb1cef46339a1dbe564d70dab3 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:173 -msgid "Your map layout should now look similar to this:" -msgstr "Layout peta Anda akan tampak seperti ini:" - -# b2cb1183cd3545cdaf915938000652a6 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:179 -msgid "4. Adding a scale bar" -msgstr "4. Menambahkan skala bar" - -# 511050f6d7884c4a9085a3fd42639875 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:181 -msgid "" -"Let’s add a scale bar, so that anyone who looks at our map will have an idea " -"what size area this map shows." -msgstr "" -"Mari menambahkan skala bar agar siapapun yang melihat peta kita dapat " -"memperkirakan ukuran area yang ditunjukkan pada peta ini." - -# 146baec50c1b4395bf4e2e7b46eb9fe1 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:184 -msgid "Click on the :guilabel:`Add scale bar` button." -msgstr "Klik pada tombol :guilabel:`Tambahkan skala bar baru`" - -# 97089dcea5a54fea88759421b0ab6bdb -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:189 -msgid "" -"Draw the new scalebar element on your map. A good location for it is in the " -"lower left corner of your map layout." -msgstr "" -"Gambarkan elemen skala bar baru pada peta Anda. Lokasi yang tepat untuk " -"menggambarnya adalah di sebelah pojok kiri dari *layout* peta" - -# d4bbc6f78c984fc5bb02626d41379cb6 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:192 -msgid "" -"Next we need to adjust the scalebar options. Since our project is in a PCS " -"(Projected Coordinate System), our measurements are in metres. Enter the " -"following values in the scalebar options:" -msgstr "" -"Berikutnya, kita perlu menyesuaikan pilihan skala bar. Karena pengaturan " -"proyek kita dalam PCS (*Projected Coordinate System*), maka pengukuran dalam " -"satuan meter. Masukkan nilai-nilai berikut pada pilihan skala bar:" - -# 3d04fbd2d10245929aba7f992b9df9c5 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:199 -msgid "This should result in a scalebar that looks like this:" -msgstr "Nantinya akan muncul sebuah skala bar yang tampak seperti ini:" - -# ca5006a9ca8246258277e5920e6351d8 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:205 -msgid "5. Creating a grid" -msgstr "5. Membuat sebuah grid " - -# 7ebf631805994c9a8071b6b25a059572 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:207 -msgid "Now let’s create a grid for our map." -msgstr "Sekarang mari kita buat sebuah grid untuk peta Anda." - -# c52950c3600a4b5faebbb7de7f5f2012 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:209 -msgid "Choose the :guilabel:`Select` tool and click on the map." -msgstr "Pilih pada tool :guilabel:`Pilih/pindahkan item` dan klik pada peta." - -# 6bd260bbc6644626add09e0da44d4f01 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:214 -msgid "" -"In the panel on the right you should see the word :guilabel:`Grid`. Click on " -"it." -msgstr "" -"Pada panel di sebelah kanan Anda akan melihat :guilabel:`Grid`, kemudian " -"klik." - -# c4836832676447abb0025bc2b1bdd4b1 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:217 -msgid "Check the box :guilabel:`+` and enter the following values:" -msgstr "Klik pada kotak dialog :guilabel:`+` dan masukkan seperti dibawah ini:" - -# ffe635bec0ff425887081731005fd85e -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:222 -msgid "" -"We used coordinate reference systems with UTM (metre) on the project QGIS " -"and all map layers." -msgstr "" -"Kita menggunakan sistem koordinat dengan UTM (meter) pada proyek QGIS dan " -"semua layer peta." - -# 78f024b0189641178f78c9d4129389f5 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:225 -msgid "" -"Scroll down item properties dialog and check the box next to :guilabel:`Draw " -"Coordinates` and enter the following values:" -msgstr "" -"Gulir ke bawah pada Properti Item dan berikan tanda centang pada :guilabel:" -"`Gambar koordinat` dan masukkan nilai seperti dibawah ini:" - -# 1cea0cc9cb954b13ae8afd646a07de30 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:231 -msgid "" -"Your map should now have a grid appear over it, which will look something " -"like this:" -msgstr "" -"Peta Anda saat ini seharusnya sudah memiliki grid yang muncul di atasnya, " -"akan muncul seperti ini:" - -# d3844d107ed448d4bb6208fe27577988 -# cbf0ce84420949c8891cd35c48dc780e -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:238 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:318 -msgid "Tips" -msgstr "Tips" - -# e6299d42719d4e94a5c7fdbbe5c218c8 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:240 -msgid "" -"Play around a little bit with the coordinate format. You can change decimal " -"degrees as the coordinate format or change it into Degree Minute format (DD " -"MM) or Degree Minute Second (DD MM SS)." -msgstr "" -"Coba berlatih dengan format koordinat. Anda dapat mengubah format koordinat " -"*decimal degree* atau mengubahnya menjadi format *Degree Minute* (DD MM) " -"atau *Degree Minute Second* (DD MM SS)." - -# 59501d75d3dc4abe869fd362f56652b5 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:245 -msgid "" -"You can also adjust the coordinate placement. You can place the text inside " -"or outside the frame, and make the orientation either vertical or horizontal." -msgstr "" -"Anda juga dapat menyesuaikan penempatan koordinat. Anda dapat meletakkan " -"teksnya di bagian dalam atau luar dari bingkai, dan mengubah orientasi peta " -"menjadi vertikal atau horizontal." - -# 3fce0adab8064a749f0e78479ae8e1d3 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:249 -msgid "" -"Change the font type and font size by clicking :guilabel:`Font` in the panel." -msgstr "" -"Ubah tipe huruf dan ukurannya dengan cara klik pada :guilabel:`Huruf` pada " -"panel." - -# cb97cb473b2b4c50a66bf6cfa977d926 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:252 -msgid "6. Overview inset" -msgstr "6. Gambaran Inset" - -# 6b40a69a575846bfbf62f7029f2c63a2 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:254 -msgid "" -"Next, let’s add an inset that gives viewers of our map a little more " -"information about what they are looking at." -msgstr "" -"Berikutnya, mari kita tambahkan sebuah inset yang dapat memberi pengguna " -"sedikit informasi mengenai apa yang mereka lihat pada peta." - -# 9da3362c3c39446d8a00534c9f4154e1 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:257 -msgid "Minimise the Print Composer and go back into QGIS." -msgstr "Perkecil jendela Komposer dan kembali pada QGIS." - -# 57544275370c404db9be2999a75507a5 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:259 -msgid "" -"Add the layer :file:`Indonesia.shp`, which is located in :file:`qgis/" -"peta_dunia/`. Click :guilabel:`Zoom Full`." -msgstr "" -"Tambahkan *layer* :file:`Indonesia.shp`, yang terletak pada :file:`qgis/" -"peta_dunia/`. Klik pada :guilabel:`Perbesar Semua`." - -# 05f9941b4fd94dd49d2d3c45796396d1 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:265 -msgid "The new layer will load." -msgstr "Anda akan melihat sebuah layer baru akan dimasukkan." - -# 05345900bb6f4eb2b778f7af3016e03a -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:270 -msgid "" -"Return to the Map Composer and create a new map with the :guilabel:`Add new " -"map` button." -msgstr "" -"Kembali ke Map Composer dan buat sebuah peta baru dengan tombol :guilabel:" -"`Tambahkan Peta Baru`." - -# 134117bcbbe042568ce41901e40afcf8 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:276 -msgid "Draw a small box on the right side of your map layout." -msgstr "Gambar sebuah kotak kecil pada sisi kanan dari layout peta Anda." - -# 20d292abeeb242b5a8ffd8aaafae54e6 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:278 -msgid "" -"The current view of your QGIS project will appear in the new map element " -"(but notice that the old map element doesn’t change!). Add a frame for the " -"inset, so that it looks like this:" -msgstr "" -"Tampilan proyek QGIS Anda saat ini akan muncul pada elemen peta yang baru " -"(namun perhatikan pula pada elemen peta lama yang tidak berubah!) Tambahkan " -"frame untuk inset, sehingga akan tampak seperti ini:" - -# a3943646bf1c4e0aac72e22c30b8840d -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:286 -msgid "7. Adding a legend" -msgstr "7. Menambahkan sebuah Legenda" - -# 5c90396e03a4465c94983eaf0e3f4db8 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:288 -msgid "" -"Now let’s add a legend so that viewers of our map will know what our " -"symbology represents." -msgstr "" -"Sekarang mari kita tambahkan sebuah legenda sehingga pembaca peta Anda akan " -"mengetahui apa saja yang diwakili oleh simbol-simbol tersebut." - -# 58cf192602a2410bac8d689190d12d74 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:291 -msgid "Click on the :guilabel:`Add legend` button." -msgstr "Klik pada tombol :guilabel:`Tambahkan legenda baru`." - -# a5e4f434df97494caa8be9c5069471c2 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:296 -msgid "" -"Draw a box in the remaining empty space on your map layout. You will see a " -"legend with symbologies shown in a list." -msgstr "" -"Gambarkan sebuah kotak pada tempat kosong yang tersisa pada layout peta " -"Anda. Anda akan melihat sebuah legenda dengan simbologinya yang ditampilkan " -"pada sebuah daftar." - -# 2c9a19d1ea31428bb3b527b402de24d8 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:299 -msgid "" -"In the panel on the right, click on :guilabel:`Legend items`. Uncheck :" -"guilabel:`Auto update` and use the edit button to change the names on the " -"legend. Use the :guilabel:`+` and :guilabel:`-` buttons to add or remove " -"items from the legend. Choose which elements are important to include." -msgstr "" -"Pada panel di sebelah kanan, klik pada :guilabel:`Item legenda`. Hilangkan " -"tanda centang pada :guilabel:`Perbarui otomatis` dan gunakan tombol mengedit " -"untuk mengubah nama pada item legenda. Gunakan tombol :guilabel:`+` dan :" -"guilabel:`-` untuk menambahkan atau menghapus item dari legenda. Pilih " -"elemen yang penting untuk dimasukkan." - -# 1c47226007b54973b533adf632972d50 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:307 -msgid "Our legend looks like this:" -msgstr "Legenda yang kita buat akan tampil seperti ini:" - -# 4f325bda8a8e492d84d8228de55f9117 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:312 -msgid "When you are finished, your map layout should look similiar to this:" -msgstr "Ketika Anda sudah selesai, layout peta Anda akan tampak seperti ini:" - -# a8b116fcc2934598a47c8ddcd2afb9d0 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:320 -msgid "" -"To save your map composer that you created, you can click on the :" -"menuselection:`Composer ‣ Save Project`. So if you open the project QGIS and " -"want to use the map composer that you saved, click on :menuselection:" -"`Project ‣ Print Composer ‣ My Layout 1`" -msgstr "" -"Untuk menyimpan komposer peta yang telah dibuat, Anda dapat klik pada :" -"menuselection:`Composer ‣ Simpan Proyek`. Jika Anda buka proyek QGIS dan " -"Anda ingin menggunakan komposer peta yang Anda simpan, klik pada :" -"menuselection:`Project ‣ Print Komposer ‣ Layout Saya 1`" - -# d592e8be8d274173867c73da6065a7b3 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:326 -msgid "8. Printing the map" -msgstr "8. Mencetak Peta" - -# b014ff3a96274b3c99799cdd913834d6 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:328 -msgid "" -"Lastly, you can print your map. Simply click the :guilabel:`Print` button " -"and follow the dialog." -msgstr "" -"Yang terakhir, kita dapat mencetak peta tersebut. Klik pada tombol :guilabel:" -"`Cetak` dan ikuti instruksi selanjutnya." - -# 26fb7f7d18064983873387895a89e1b1 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:334 -msgid "You may also save the map as PNG image." -msgstr "Anda juga dapat menyimpan petanya sebagai gambar PNG." - -# ffa2814c597d481894284baa09d72fb9 -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:339 -msgid "" -"Additionally you can save the map as a PDF, which you can easily send over " -"email or print later when you have a chance." -msgstr "" -"Sebagai tambahan Anda dapat menyimpan peta yang Anda buat dalam format PDF, " -"yang nantinya dapat dengan mudah Anda kirim melalui email atau ingin Anda " -"cetak di kemudian hari." - -# eaa2f0f775ed44dcb53b4708aad854fe -#: ../../source/training/old-training/beginner/qgis-inasafe/211-using-map-composer.rst:346 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Pergi ke modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.po deleted file mode 100644 index a116ce29..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.po +++ /dev/null @@ -1,722 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# harry mahardhika , 2013 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Yantisa Akhadi , 2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:45+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 01af7f625b6741ce803e85c3d676da21 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:6 -msgid "Module 12: Understanding |project_name|" -msgstr "Modul 12: Pemahaman tentang |project_name|" - -# 97c03a66c12443db9d87e60f06d9da35 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# c958ed7d99174d548128a1a53cd0b792 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:10 -msgid "Understand the concept of hazard, exposure and impact data" -msgstr "Menjelaskan konsep dari Ancaman, Keterpaparan, dan Data Dampak Bencana" - -# a109125ad8b84bacb6bce407ad062ae8 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:11 -msgid "Understand how to determine impact" -msgstr "Memahami bagaimana cara menentukan dampak bencana" - -# 0cc28958ef2e418caf545460e33d18a7 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:12 -msgid "Understand the |project_name| interface" -msgstr "Memahami tampilan antarmuka |project_name|" - -# f0fb5062dceb4bdcadcffe50534fcab5 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:13 -msgid "Add hazard data" -msgstr "Menambahkan data ancaman" - -# a5038d2da5bd4b40bf5ede53e9cc8f89 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:14 -msgid "Add unprocessed exposure data (vector and raster)" -msgstr "Menambahkan data keterpaparan (vektor dan raster) yang belum diproses" - -# 5d86c4a550634ad19bda025b4df70b8c -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:15 -msgid "Use the keywords editor" -msgstr "Menggunakan editor kata kunci" - -# b1164b92aad340bba063fcdb6d470421 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:16 -msgid "Analyse impact" -msgstr "Menganalisis Dampak" - -# a7749434f0294a2ea162d9644894b03a -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:17 -msgid "Improve |project_name| output map" -msgstr "Memperbaiki output peta |project_name| " - -# affafb43ac51465aaf818856ce35e263 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:18 -msgid "Save and print scenario results" -msgstr "Menyimpan dan mencetak hasil skenario" - -# 0ca736038ee6453cad6a0d804c20798b -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:22 -msgid "1. Hazards, exposure and impact" -msgstr "1. Ancaman, Keterpaparan, dan Dampak" - -# 3ee19352df4b41b3abe829b05b9d659c -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:24 -msgid "" -"Let’s begin by reviewing the inputs and outputs of |project_name| - " -"**hazard**, **exposure**, and **impact**. These terms are important for you " -"to remember because the analysis process depends on these three things." -msgstr "" -"Mari kita mulai dengan mengingat kembali data yang kita masukkan dan hasil " -"yang dikeluarkan dari |project_name| - **ancaman**, **keterpaparan**, and " -"**dampak**. Ketiga hal ini penting untuk diingat karena proses analisis akan " -"sangat bergantung pada ketiga hal ini." - -# d777ecb2f5e841cc9da41e9a351f1c12 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:29 -msgid "" -"**Hazards** (also called disasters) are what we call the data layers that " -"describe the extent and magnitude of natural events (such as earthquakes, " -"tsunamis and volcanic eruptions) that could potentially cause an event or " -"series of events that threaten and disrupt the lives and livelihoods of " -"people." -msgstr "" -"**Ancaman** (dikenal juga dengan bencana) adalah apa yang kita sebut dari " -"sebuah data layer yang menjelaskan gambaran dan besaran dari suatu kejadian " -"alam (seperti gempa, tsunami, letusan gunung berapi) yang berpotensi " -"menyebabkan suatu kejadian atau rangkaian kejadian yang mengancam dan " -"mengganggu kehidupan manusia." - -# e5c72125171f4d928a7c784c2b73adeb -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:34 -msgid "" -"In general, the hazard data we use in |project_name| represents a single " -"hazard scenario. A scenario means that the hazard:" -msgstr "" -"Secara umum, data ancaman yang kita gunakan dalam |project_name| mewakili " -"skenario ancaman tunggal. Skenario ancaman yang kita buat:" - -# d02dd1588e9b47519a39795ff8edbe22 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:37 -msgid "is at a particular location" -msgstr "berada di lokasi tertentu" - -# 861f35575b8e44b6a4ccc2d9334716fd -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:38 -msgid "has a measured intensity" -msgstr "memiliki intensitas yang bisa diukur" - -# c19c7610fffb4147bab8abdebaf494df -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:39 -msgid "has a measured duration" -msgstr "memiliki durasi yang bisa diukur" - -# 5eaae3a8256c42b8bac33b48a324be2b -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:40 -msgid "has a certain time frame" -msgstr "memiliki kurun waktu tertentu" - -# 4324d4b7f9db4be5ad89a423c1462ada -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:42 -msgid "" -"In this module we will use a dataset modelled from an earthquake in Lembang." -msgstr "" -"Pada bab ini kita akan menggunakan sebuah model data dari gempa di Lembang." - -# 401752bd187e4c4aa9596d396694cdbe -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:44 -msgid "" -"The earthquake modelling was done by experts. |project_name| is not a hazard " -"modelling tool." -msgstr "" -"Pemodelan gempa dibuat oleh para ahli. |project_name| bukan alat pemodelan " -"ancaman." - -# a2edaa7617404f6f9a47d1d6c9a27bac -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:47 -msgid "" -"**Exposure** data represents things that are at risk when faced with a " -"potential hazard. This can be man-made features such as public buildings, " -"houses, roads and bridges, or it can be so-called natural features, such as " -"population, rice paddies and lakes. These exposed elements can be divided " -"into various categories, including physical elements (houses, power lines), " -"economic elements (agricultural land, access to employment), social elements " -"(vulnerable groups, population count), and environmental elements (air, " -"water, plants and animals)." -msgstr "" -"Data **Paparan** menggambarkan sesuatu yang beresiko jika berhadapan dengan " -"potensi ancaman. Ini bisa berupa sebuah hasil karya manusia seperti bangunan " -"umum, rumah, jalan dan jembatan, atau bisa berupa fitur natural seperti " -"populasi, padi dan danau. Elemen yang terpaparkan ini bisa dibagi kedalam " -"beberapa kategori, termasuk elemen fisik (rumah, kabel listrik), elemen " -"ekonomi (kebun, dan akses ke pekerja), elemen sosial (kelompok rentan dan " -"kepadatan populasi) dan elemen lingkungan (air, udara, tanaman dan binatang)." - -# b3fbf17984174dd4abe30c2e31aaf372 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:58 -msgid "" -"**Impact** is the result we get after |project_name| processes the effect of " -"the hazard data upon the exposure data. For example, if there is an " -"earthquake model in Lembang, and we process it against building data in " -"Bandung, our impact layer may show those houses that would be severely " -"damaged, those somewhat damaged, and those mildly damaged. In other words, " -"what goes in to |project_name| are hazards and exposure. What comes out is " -"impact." -msgstr "" -"**Dampak** merupakan hasil yang kita dapatkan setelah |project_name| " -"memproses data ancaman dan paparan. Contoh, jika terdapat model gempa di " -"Lembang dan kita memproses dengan data bangunan di Bandung, hasil *layer* " -"dampak akan menjelaskan rumah yang akan terkena dampak parah, medium dan " -"ringan. Dengan kata lain, apa yang dimasukkan kedalam |project_name| adalah " -"ancaman dan paparan. Apa yang dihasilkan disebut dengan dampak." - -# ae30feb3a3cd4abcbc3f266de640fc73 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:68 -msgid "2. The InaSAFE interface" -msgstr "2. Tampilan Antarmuka InaSAFE" - -# 22116ec9b42047a295564acf227d8e32 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:70 -msgid "" -"Before we run any scenarios, let’s take a closer look at the |project_name| " -"interface." -msgstr "" -"Sebelum kita menjalankan skenario, mari kita lihat lebih dekat tampilan " -"antarmuka dari |project_name|." - -# 619f119e0c604d8d8617541318a91fcb -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:73 -msgid "" -"First make sure that you’ve installed the |project_name| plugin. Follow the " -"plugin instructions in :ref:`module 4 `. Find and " -"install the plugin called |project_name|." -msgstr "" -"Pertama pastikan Anda sudah menginstal plugin |project_name|. Ikuti petunjuk " -"plugin pada :ref:`Modul 4 `. Cari dan instal plugin " -"bernama |project_name|. " - -# 3d8b29d6bdb54380809c5f66c7590935 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:77 -msgid "Open a new project in QGIS." -msgstr "Buka proyek di QGIS." - -# 150c4fa0156e405f9a1712781cd3c5e0 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:79 -msgid "" -"If the |project_name| toolbar is not visible, right-click on the toolbars " -"and make sure that :guilabel:`InaSAFE` plugin is checked. The toolbar looks " -"like this:" -msgstr "" -"Jika toolbar |project_name| tidak terlihat, klik kanan pada toolbar dan " -"pastikan :guilabel:`InaSAFE` telah tercentang. Tampilan toolbar akan " -"terlihat seperti ini:" - -# 807e188eb6b0476695e1fbd4eb2de91d -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:86 -msgid "" -"To show the |project_name| panel, click on the :guilabel:`Toggle InaSAFE " -"dock` button." -msgstr "" -"Untuk menampilkan panel |project_name|, klik pada tombol :guilabel:`Toggle " -"InaSAFE dock`." - -# 403f16b66b664ae88cf4182eb8475419 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:92 -msgid "" -"Just like QGIS toolbars, you can drag and drop the |project_name| dock panel " -"to change its position in the QGIS interface. You can pull it away as a " -"separate window, or place it below the Layers panel. It’s convenient in its " -"location on the right side of QGIS, so we will leave it there." -msgstr "" -"Seperti toolbar QGIS, Anda dapat menggeser jendela panel |project_name| " -"untuk mengganti posisinya dari tampilan antarmuka QGIS. Anda dapat menarik " -"jauh untuk memisahkan jendela, atau meletakkan dibawah daftar layer. " -"Tampilan yang normal adalah pada bagian kanan dari QGIS, jadi jika Anda " -"tidak ingin mengubahnya, biarkan seperti itu." - -# 6d4871866e4346c0a66406643bb2e266 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:102 -msgid "" -"The |project_name| panel consists of three parts: Questions, Results and " -"Buttons. The questions are mixed in with drop-down boxes - this is where we " -"establish our input data and define the scenario that we want |project_name| " -"to process. The purpose of |project_name| is to make your impact analysis " -"very simple and easy to do. The Questions section provides a simple way for " -"you to formulate what you want to know. All questions are created in the " -"following format:" -msgstr "" -"Tampilan jendela panel |project_name| terdiri dari tiga bagian: Pertanyaan, " -"Hasil dan Tombol. Pertanyaan digabung menjadi kotak tombol daftar pilihan – " -"dimana disini kita menentukan input data dan menentukan skenario apa yang " -"kita ingin diproses oleh |project_name|. Tujuan |project_name| untuk membuat " -"analisis dampak menjadi lebih simpel dan mudah digunakan. Bagian pertanyaan " -"menyajikan cara mudah untuk memformulasikan apa yang ingin anda ketahui. " -"Semua pertanyaan dibuat dalam format:" - -# c6257e6e3b974f92b5c3eebbd136025a -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:112 -msgid "*In the event of [hazard] how many [exposure] might [impact]?*" -msgstr "" -"*Pada kejadian [hazard] berapa banyak [exposure] yang mungkin [impact]?*" - -# ee52d34845114445ad78d5ecf7669de1 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:114 -msgid "" -"For example: \"In the event of an earthquake how many buildings might be " -"destroyed?\"" -msgstr "" -"Sebagai contoh:”Pada kejadian gempa bumi berapa banyak bangunan yang mungkin " -"rusak?”" - -# 744593f68dd846bab62689fa7c03d450 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:117 -msgid "" -"The Results section is filled in with information after |project_name| is " -"run, as we shall see. The buttons at the bottom allow us to run a scenario, " -"print and access help." -msgstr "" -"Bagian hasil ini diisi dengan informasi setelah |project_name| dijalankan, " -"seperti yang akan kita lihat. Tombol-tombol di bagian bawah memungkinkan " -"kita untuk menjalankan skenario, mencetak dan mengakses ke bantuan." - -# 622915ea8f604cfc8a1534e59ec0d616 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:122 -msgid "3. Adding hazard data" -msgstr "3. Menambahkan data ancaman" - -# 8f4e6ef46e964bf39599dd47f4d1b602 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:124 -msgid "" -"**Hazards** can be represented by vector layers or by raster layers. " -"Remember that raster layers are like images with many pixels, and each pixel " -"represents some data about an area on the ground. A raster that shows " -"elevation, for example, will contain pixels with different values based on " -"the altitude of the location. Similarly, a raster that represents an " -"earthquake will contain the magnitude of the earthquake at the time of the " -"event in every pixel in the raster." -msgstr "" -"**Bencana** bisa di representasikan oleh *layer* vektor atau raster. Perlu " -"diingat, *layer* raster berbentuk seperti gambar dengan pixel yang banyak " -"dan tiap pixel merepresentasikan beberapa data terkait area yang ada di " -"permukaan tanah. Sebuah raster yang menampilkan ketinggian, sebagai contoh, " -"akan mengandung pixel dengan berbagai nilai yang berbeda tergangung pada " -"ketinggian suatu daerah. Sama seperti itu, sebuah raster yang " -"merepresentasikan gempa akan mengandung magnitudo gempa pada waktu tertentu " -"di setiap pixel dari raster." - -# 5170aef6f09446caa130c4c9f7d66fd5 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:133 -msgid "" -"An earthquake can also be modelled with vector data, although the detail of " -"the data will most likely be lower. In this case vector polygons represent " -"the area where the earthquake occurred, and various polygons may show areas " -"of differing magnitudes." -msgstr "" -"Sebuah gempa juga dapat dimodelkan dengan data vektor, meskipun detail data " -"kemungkinan besar lebih rendah. Pada kasus ini, vektor poligon akan " -"merepresentasikan area dimana gempa muncul dan kemungkinan dari berbagai " -"macam polgion akan menjelaskan magnitude yang berbeda-beda." - -# febfc9f89b7f43bfbb101fbca585989c -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:139 -msgid "" -"Let’s begin by adding our hazard layer to QGIS. It’s a raster model of an " -"earthquake in Lembang." -msgstr "" -"Mari kita mulai dengan menambahkan data ancaman ke dalam QGIS. Ini " -"menggunakan model data raster untuk gempa di Lembang." - -# a24fd48303524e1b8d5d009d95931b72 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:142 -msgid "Click the :guilabel:`Add Raster Layer` button." -msgstr "Klik tombol :guilabel:`Tambah Lapisan Raster`." - -# 7d3df4e7a2524cf78ff481c68d1a4f95 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:147 -msgid "" -"Navigate to the :file:`qgis/Bandung/` folder and add :file:" -"`Lembang_Earthquake_Scenario.asc`. This data is raster data (in ASCII " -"format) which represents the magnitude of the earthquake. The layer will " -"look like this:" -msgstr "" -"Arahkan ke folder :file:`qgis/Bandung/` dan tambahkan :file:" -"`Lembang_Earthquake_Scenario.asc`. Data ini adalah data raster (dalam format " -"ASCII) yang mewakili besaran kekuatan dari gempa. Layer tersebut akan " -"terlihat seperti ini:" - -# 9ffc1352b2764fdaa0e4d49c3c7093e6 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:156 -msgid "" -"Try to change the layer band into Singleband Pseudocolor so that the layer " -"looks like the image below (refer to :ref:`module 8 `, if you forgot how!):" -msgstr "" -"Cobalah untuk merubah simbol raster untuk layer ini menjadi Singelband " -"Pseudocolor sehingga tampilannya berubah menjadi seperti gambar di bawah ini " -"(silahkan merujuk ke :ref:`Modul 8 `, apabila " -"Anda lupa bagaimana melakukannya!):" - -# 4c5921da580e4c13b6e05f8879ab347d -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:163 -msgid "" -"You will notice that the hazard drop-down box has been automatically filled " -"in the |project_name| panel. This is because the data file has already been " -"prepared for us with keyword metadata (fancy words for settings) that tells |" -"project_name| whether it’s a hazard or exposure layer. When we add the " -"exposure data, we will learn how to add these |project_name| keywords " -"ourselves." -msgstr "" -"Anda akan melihat bahwa kotak daftar isian ancaman telah otomatis terisi di " -"panel |project_name|. Hal ini karena file data sudah disiapkan dengan " -"metadata kata kunci (kata lain untuk pengaturan) yang memberitahu |" -"project_name| apakah itu layer ancaman atau layer keterpaparan. Ketika kita " -"menambahkan data keterpaparan, kita akan belajar bagaimana kita bisa " -"memberikan informasi ke |project_name|." - -# 60321721b0124047846bde9f7fb5bf6e -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:172 -msgid "4. Exposure" -msgstr "4. Keterpaparan" - -# bc21617d24aa47a38a29013956f8d739 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:174 -msgid "**Exposure** can also be represented by vectors or rasters." -msgstr "" -"**Keterpaparan** dapat juga direpresentasikan dengan vektor atau raster." - -# 3f9ac789032c4679914c3bd8025eed77 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:176 -msgid "" -"Let’s add our exposure data to QGIS - we will be using buildings obtained " -"from OpenStreetMap." -msgstr "" -"Mari kita menambahkan data keterpaparan kedalam QGIS – sekali lagi kita akan " -"menggunakan bangunan yang diambil dari OpenStreetMap." - -# 2b23520fd9604c04bc657ec327212264 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:179 -msgid "Click on the :guilabel:`Add Vector Layer` button." -msgstr "Klik tombol :guilabel:`Tambah Lapisan Vektor`." - -# 1622296439da40fea82bf06669b4393a -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:184 -msgid "" -"Add the file :file:`Bangunan_Bandung.shp`, which is located in the :file:" -"`qgis/Bandung/` folder." -msgstr "" -"Tambahkan file :file:`Bangunan_Bandung.shp`, yang berlokasi di folder :file:" -"`qgis/Bandung/`" - -# 1269c5faa1d6402a9b45d226c751cb50 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:190 -msgid "" -"Notice that unlike the hazard layer, it does not appear automatically in |" -"project_name|!" -msgstr "" -"Perhatikan bahwa tidak seperti layer ancaman, data bangunan yang kita " -"tambahkan tidak terlihat secara otomatis di dalam |project_name|!" - -# d159b6b201c945598e57b0af6ececb35 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:194 -msgid "5. Adding keyword metadata" -msgstr "5. Menambahkan kata kunci di Metadata" - -# e166bd0e3c8148108230c70ee23f8120 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:196 -msgid "" -"In order for |project_name| to know that our layers are hazard or exposure " -"datasets, we need to assign keywords to the layers using the |project_name| " -"Wizard tool. Let’s take a look at the keywords that have already been " -"created on the hazard layer." -msgstr "" -"Untuk mengatur agar |project_name| mengetahui layer kita merupakan data " -"bencana atau paparan, kita harus menambahkan kata kunci di dalam layer " -"tersebut menggunakan |project_name| *keyword tool*. Mari kita lihat kata " -"kunci yang telah kita buat pada layer bencana." - -# 9f2f20a6899441a9ad7efac4512f6c2b -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:202 -msgid "" -"Select the earthquake layer in the Layers panel, and click on the :guilabel:" -"`InaSAFE Wizard` button." -msgstr "" -"Pilih layer gempa pada panel daftar layer, dan klik pada tombol :guilabel:" -"`InaSAFE Wizard`." - -# 0b716f29d20f4f8892fdc41600980a66 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:208 -msgid "" -"In the InaSAFE Wizard window, we can follow the existing instructions step " -"by step and change several keyword fields." -msgstr "" -"Pada jendela Wizard Keyword InaSAFE, kita dapat mengikuti instruksi-" -"instruksi yang ada langkah demi langkah dan mengubah beberapa Kata Kunci " -"pada isiannya." - -# 8096410d34044f6c92b7371788f6773b -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:215 -msgid "Click :guilabel:`OK`." -msgstr "Klik :guilabel:`OK`." - -# a7770a3ce97346588aab1c2e660b4a18 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:217 -msgid "Select the :guilabel:`Bangunan_Bandung` layer and open the Wizard." -msgstr "Pilih layer :guilabel:`Bangunan_Bandung` dan buka wizard." - -# e27eceddba0e4948913daeda8be780cf -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:222 -msgid "Notice that title and category are set, but not the subcategory." -msgstr "" -"Perhatikan bahwa judul dan kategori sudah ditetapkan, tetapi untuk " -"subkategori, belum ditetapkan." - -# f74734719b384bbaa1ef9cd3da3796d9 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:224 -msgid "" -"Change the subcategory to :guilabel:`structure`, and click :guilabel:`OK`." -msgstr "" -"Ganti subkategori menjadi :guilabel:`structure`, dan klik :guilabel:`OK`." - -# 46be547a1ccf440a94294ddd921d0844 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:226 -msgid "Notice that the layer now appears in the |project_name| panel." -msgstr "" -"Perhatikan bahwa layer kita sekarang sudah muncul pada panel |project_name|." - -# add3967ae0ca46e4924300ad12379a81 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:232 -msgid "6. Impact Analysis" -msgstr "6. Analisis Dampak" - -# 74874b4ed09c40c8b93eb98870e3294f -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:234 -msgid "" -"Now our hazard and exposure data are set in the |project_name| panel, " -"because the appropriate keywords have been added to our layers. Note that if " -"we were to add a second exposure layer to our project, we would be able to " -"choose which exposure layer we wanted from the |project_name| drop-down " -"menu. The same applies to hazard layers." -msgstr "" -"Sekarang data ancaman dan data keterpaparan sudah diatur pada panel |" -"project_name|, karena kata kunci sudah ditambahkan pada layer kita. " -"Perhatikan bahwa jika kita menambahkan layer keterpaparan kedua pada proyek " -"kita, kita akan bisa menentukan layer keterpaparan apa yang kita inginkan " -"melalui menu pilihan |project_name|. Hal ini diaplikasikan sama pada layer " -"bencana." - -# c33794cc51764336bdf5253eaef9e118 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:241 -msgid "" -"The third drop-down box is the impact function (“Might”). This concludes our " -"question, and defines the function that |project_name| will run behind the " -"scenes. |project_name| developers have written many of these functions to " -"analyse all sorts of hazard and exposure layers. The function that is " -"selected for us here will process the hazard and exposure layers spatially " -"to determine how the exposure layer will “be affected.”" -msgstr "" -"Menu pilihan ketiga adalah fungsi dampak (“Might”). Ini termasuk pertanyaan " -"kita dan menentukan fungsi yang akan |project_name| jalankan melalui " -"skenario ini. Pengembang |project_name| telah menulis beberapa fungsi untuk " -"menganalisis layer bencana dan keterpaparan. Fungsi yang telah dipilihkan " -"untuk kita akan memproses layer bencana dan keterpaparan secara spasial " -"untuk menentukan bagaimana layer paparan dapat menjadi terkena dampak " -"bencana (“be affected”)." - -# 199291fa1bd7479b856a5f6fd097eed6 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:250 -msgid "" -"Click the :guilabel:`Run` button at the bottom to start the impact analysis. " -"At the end of the process, the statistics will be displayed in the Results " -"section, and a new layer will be added to the Layers panel that describes " -"the result of the analysis. The map will distinguish between buildings that " -"are affected and those that are not." -msgstr "" -"Klik tombol :guilabel:`Hitung` di bagian bawah untuk menjalankan analisis " -"dampak. Pada akhir proses, statistik akan muncul di bagian hasil dan layer " -"baru akan ditambahkan ke panel Daftar Layer yang menjelaskan hasil dari " -"analisis. Peta tersebut akan membedakan antara bangunan yang terdampak dan " -"bangunan yang tidak terdampak." - -# 0e8242143edf44f191821711d1c7f5ae -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:261 -msgid "7. Improve the InaSAFE output map" -msgstr "7. Mengubah Output Peta InaSAFE" - -# d609bba3dc364aaaaaf98075e7da3b68 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:263 -msgid "" -"We can improve our impact map by editing the symbology in QGIS. Styles can " -"be changed, other relevant layers can be added, and the layout can be " -"changed using the Print Composer." -msgstr "" -"Kita dapat meningkatkan peta terdampak kita dengan mengubah simbologi di " -"QGIS. Style juga bisa kita atur, layer yang relefan dengan proyek kita juga " -"bisa ditambahkan, dan layout bisa kita ubah dengan menggunakan Print " -"Composer pada QGIS." - -# 9caaba140aa24dc6bc10e57427a772f6 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:267 -msgid "Let’s add Bing aerial imagery as a background for our map." -msgstr "" -"Mari kita tambahkan citra satelit Bing sebagai latar belakang untuk peta " -"kita." - -# 661e978a9bc044a798abd75b2d085f59 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:269 -msgid "" -"Go to :menuselection:`Web ‣ OpenLayers plugin ‣ Bing Maps ‣ Bing Aerial`." -msgstr "" -"Pergi ke :menuselection:`Web ‣ OpenLayers plugin ‣ Bing Maps ‣ Bing Aerial`." - -# f354317adb5c4cf9a50bdb787f545f55 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:271 -msgid "" -"Drag the layer below your new impact layer. If the buildings don’t show " -"correctly above the imagery, right-click on the layer and click :guilabel:" -"`Update drawing order`." -msgstr "" -"Geser layer di bawah layer dampak baru Anda. Jika bangunan-bangunan tidak " -"terlihat secara jelas di atas citra satelit, klik kanan pada layer dan klik :" -"guilabel:`Update drawing order`." - -# c9eb9b52a8394c129123f3a29e379063 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:280 -msgid "8. Using the print button" -msgstr "8. Menggunakan Tombol Pencetak" - -# 481befad3c59443fa2ecb00d0a06db73 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:282 -msgid "" -"The data displayed on the screen can be saved to a PDF file by clicking :" -"guilabel:`Print` at the bottom of the |project_name| panel." -msgstr "" -"Data yang diperlihatkan pada layar dapat disimpan ke file PDF dengan " -"mengklik :guilabel:`Cetak` di bagian bawah panel |project_name|." - -# c9dbd968a3604b9da10239c46a5cde7a -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:285 -msgid "" -"Click on the |project_name| result layer and then click :guilabel:`Print`." -msgstr "" -"Klik pada layer hail analisis |project_name| dan kemudian klik :guilabel:" -"`Cetak`." - -# e8656c67feae4d17bb839c46ac0a1fb8 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:287 -msgid "" -"A window will appear, in which you can choose the extent to be printed. " -"Choose :guilabel:`Analysis extent` if you want to print the entire map " -"extent, or choose :guilabel:`Current extent` to print the analysis based on " -"the current view of the map." -msgstr "" -"Sebuah jendela akan muncul dimana Anda dapat memilih cakupan wilayah yang " -"akan dicetak. Pilih :guilabel:`Analysis extent` jika Anda ingin mencetak " -"keseluruhan data yang dianalisis, atau pilih :guilabel:`Current extent` " -"untuk mencetak berdasarkan hasil data yang tampak pada tampilan peta yang " -"ada pada kanvas QGIS." - -# 00c5b43ab9d34b23b96e1123780697a7 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:292 -msgid "" -"You may also choose a custom print template :guilabel:`inasafe-potrait-a4`." -msgstr "" -"Anda juga dapat memilih template pencetakan yang ada: :guilabel:`inasafe-" -"potrait-a4`." - -# d9d7b48d260a4ffa9639f2c53ceeaaf7 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:298 -msgid "" -"If you want to add additional information before printing, click :guilabel:" -"`Open Composer`." -msgstr "" -"Jika Anda ingin menambahkan informasi tambahan sebelum peta dicetak, klik :" -"guilabel:`Buka Composer`." - -# bee16ec37f4f40a0a4218fbe994afd30 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:301 -msgid "To save it in PDF format for printing, click :guilabel:`Open PDF`." -msgstr "Untuk menyimpan ke dalam format PDF, klik :guilabel:`Buka PDF`." - -# 722f2bdbe6cc496db1dd0884605fa4f2 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:303 -msgid "Choose your save location and click :guilabel:`Save`." -msgstr "Tentukan lokasi penyimpanan PDF anda. Dan klik :guilabel:`Save`." - -# eb2da91862564ef8b6ca97b8f5829e56 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:315 -msgid "9. Save your results" -msgstr "9. Menyimpan Hasil Anda" - -# 36166430040f4792b13eba2f319ff603 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:317 -msgid "" -"You can save the impact layer that |project_name| created, and you can save " -"the QGIS project to come back to it later, but note that the |project_name| " -"statistics cannot be saved (except when you save them in a PDF). To get the " -"statistics again in QGIS, you will need to run the analysis again." -msgstr "" -"Anda dapat menyimpan layer dampak yang |project_name| buat dan Anda bisa " -"menyimpan proyek QGIS untuk kembali dibuka nanti, tapi harap perhatikan " -"bahwa statistik hasil InaSAFE tidak dapat disimpan (kecuali Anda menyimpan " -"kedalam PDF). Untuk mendapatkan hasil statistik di QGIS, Anda harus " -"menjalankan kembali analisisnya." - -# 34c48f352a1a4341a2e1b3cdf4fa585c -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:323 -msgid "" -"To save the newly generated layer, right-click on it in the Layers panel. " -"Click :guilabel:`Save As...`" -msgstr "" -"Untuk menyimpan layer yang baru dibuat, klik kanan pada panel Daftar Layer. " -"Klik :guilabel:`Simpan sebagai...`" - -# 68378805ff3444c781d568572d8de606 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:326 -msgid "Select a name and location for the file. Click :guilabel:`OK`." -msgstr "" -"Pilih nama dan lokasi penyimpanan untuk file tersebut. Klik :guilabel:`OK`." - -# 9933c40b95274f1b959311bf8a644899 -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:328 -msgid "" -"To save the project, click on the :guilabel:`Save Project` button at the top " -"of QGIS." -msgstr "" -"Untuk menyimpan proyek, klik pada tombol :guilabel:`Simpan Proyek` di bagian " -"atas QGIS." - -# ddeca0cddfec47368a6f354a33c95eeb -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:334 -msgid "" -"Give a name to the project and put it in the directory where you want to " -"save your work. Then click :guilabel:`Save`." -msgstr "" -"Berilah nama untuk proyek ini dan masukkan kedalam direktori yang Anda " -"inginkan untuk menyimpan pekerjaan Anda. Kemudian klik :guilabel:`Simpan`." - -# 013950d872a04cdaae8581fff91155bf -#: ../../source/training/old-training/beginner/qgis-inasafe/212-understanding-inasafe.rst:342 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Pergilah ke modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/213-getting-support.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/213-getting-support.po deleted file mode 100644 index 3f781715..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/213-getting-support.po +++ /dev/null @@ -1,106 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Yantisa Akhadi , 2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 07:41+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# a031ec24e7e44a528978906697d8dbf4 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:6 -msgid "Module 13: Getting Support" -msgstr "Modul 13: Mendapatkan Dukungan" - -# 23ad8abe10464819bd934372055ec6c3 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 0937bfdddaea49baa669f6b20facb0cf -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:10 -msgid "Use social media to connect with |project_name| community" -msgstr "" -"Menggunakan media sosial untuk berhubungan dengan komunitas |project_name|" - -# 94b66f959a0e4eac855f8c3dda0ce7ff -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:11 -msgid "Access QGIS tutorial website" -msgstr "Mengakses situs panduan QGIS" - -# f49cc3c43efd418f8d3fe6d4c3a863c4 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:15 -msgid "1. Facebook" -msgstr "1. Facebook" - -# 7e3a9218e7e74f08a91906fb17c1ed17 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:17 -msgid "" -"With the development of social media today, it is great that QGIS and |" -"project_name| users can exchange ideas online. One common platform that can " -"be used is Facebook." -msgstr "" -"Dengan perkembangan media sosial saat ini, akan sangat menguntungkan bila " -"para pengguna QGIS dan |project_name| dapat saling bertukar pikiran dengan " -"memanfaatkan media yang ada. Salah satunya yaitu Facebook." - -# 5995fc1df56f469688385bb7283fe0c3 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:21 -msgid "" -"In Indonesia, you can join the community of QGIS users on Facebook in the " -"group **Forum Pengguna QGIS dan InaSAFE Indonesia** to discuss the " -"experiences or difficulties you have using QGIS and |project_name|." -msgstr "" -"Di Indonesia, Anda dapat bergabung dengan komunitas pengguna QGIS pada grup " -"Facebook **Forum Pengguna QGIS dan InaSAFE Indonesia** untuk mendiskusikan " -"pengalaman ataupun kesulitan-kesulitan yang Anda alami dalam menggunakan " -"QGIS dan |project_name|." - -# b46d0fe809324c36967c3dcf40a99b0f -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:26 -msgid "https://www.facebook.com/groups/forumQGISindo/" -msgstr "https://www.facebook.com/groups/forumQGISindo/" - -# b48863dc86584672909d6e881a271646 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:32 -msgid "2. QGIS Tutorials" -msgstr "2. Tutorial QGIS" - -# 723733efd3894df1bdcebd54a169620b -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:34 -msgid "" -"You can also obtain a variety of tutorials and the latest information about " -"QGIS on the web `here `_." -msgstr "" -"Anda juga dapat memperoleh berbagai tutorial dan informasi terbaru mengenai " -"QGIS pada website berikut `_." - -# 4e1799929fd8428b86494f6225389a52 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:37 -msgid "" -"On this page you will also find contact information for the QGIS Indonesia " -"forum, if you need assistance at any time regarding the use of QGIS or |" -"project_name|." -msgstr "" -"Pada halaman ini Anda juga dapat menemukan informasi kontak forum QGIS " -"Indonesia, jika Anda membutuhkan bantuan terkait penggunaan QGIS atau |" -"project_name|." - -# bec166ee5f444497907137a1355a0667 -#: ../../source/training/old-training/beginner/qgis-inasafe/213-getting-support.rst:41 -msgid "Please stop by any time!" -msgstr "Silahkan berkunjung kapanpun!" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/index.po b/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/index.po deleted file mode 100644 index 7d8ef2b2..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/beginner/qgis-inasafe/index.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 0d5fb79c1d7b4405a021c510bb33283d -#: ../../source/training/old-training/beginner/qgis-inasafe/index.rst:4 -msgid "Unit 2: Data Analysis Using QGIS and |project_name| Beginner Level" -msgstr "" -"Unit 2: Analisis Data menggunakan QGIS dan |project_name| Tingkat Pemula" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/index.po b/docs/i18n/id/LC_MESSAGES/training/old-training/index.po deleted file mode 100644 index 52e9ec66..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/index.po +++ /dev/null @@ -1,66 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# d32dd6c9f1f148b5b95cf42559e49d09 -#: ../../source/training/old-training/index.rst:4 -msgid "OSM & QGIS (Old Training Materials)" -msgstr "OSM & QGIS (Materi Pelatihan Lama)" - -# 340ced16f49040bca7a66ff295367cec -#: ../../source/training/old-training/index.rst:6 -msgid "" -"This section of the old documentation contains step-by-step tutorials on " -"using OpenStreetMap and |project_name| with QGIS (using QGIS 2.8 and InaSAFE " -"3.1)." -msgstr "" -"Bagian ini merupakan dokumentasi lama yang terdiri dari tutorial tahapan-" -"tahapan menggunakan OpenStreetMap dan |project_name| dengan QGIS " -"(menggunakan QGIS 2.8 dan InaSAFE 3.1)." - -# a48aba31a5014c3bbd14f332305f59ea -#: ../../source/training/old-training/index.rst:9 -msgid "Training" -msgstr "Pelatihan" - -# 7e973841a1f4490f922ac1d680c0ee5b -#: ../../source/training/old-training/index.rst:9 -msgid "Intended Length" -msgstr "Durasi yang disarankan" - -# db314466e0e34c47b6641ef1e0bf6bc7 -#: ../../source/training/old-training/index.rst:11 -msgid "Beginner" -msgstr "Dasar" - -# 4a57bed1838f44cf8070c6a79b87e94b -#: ../../source/training/old-training/index.rst:11 -msgid "10 Days" -msgstr "10 Hari" - -# d0e1083160004b668db10ecad83fb40d -#: ../../source/training/old-training/index.rst:13 -msgid "Intermediate" -msgstr "Menengah" - -# 7f2f40c2b74b4b0992b241902493ddc6 -#: ../../source/training/old-training/index.rst:13 -msgid "6 Days" -msgstr "6 Hari" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/index.po b/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/index.po deleted file mode 100644 index 82edc076..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/index.po +++ /dev/null @@ -1,53 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 60890807471841eeb0f085b0ceb199b2 -#: ../../source/training/old-training/intermediate/index.rst:4 -msgid "Intermediate Training Module" -msgstr "Modul Pelatihan Menengah" - -# c32ac071262b41049125e8e7cecbaa39 -#: ../../source/training/old-training/intermediate/index.rst:6 -msgid "" -"The intermediate training module has been designed by Badan Nasional " -"Penanggulangan Bencana (BNPB), Humanitarian OpenStreetMap Team (HOT) and " -"Australia-Indonesia Facility for Disaster Reduction (AIFDR) to provide hands-" -"on experience with |project_name| for data collection and data analysis for " -"contingency planning. The course is scheduled to run for six days." -msgstr "" -"Modul pelatihan dasar ini telah didesain oleh Badan Nasional Penanggulangan " -"Bencana (BNPB), Humanitarian OpenStreetMap Team (HOT) dan Australia-" -"Indonesia Facility for Disaster Reduction (AIFDR) yang menyediakan " -"pengalaman pelatihan dengan |project_name| untuk pengumpul data dan " -"penganalisis data untuk rencana kontinjensi. Pelatihan ini di rencanakan " -"untuk enam hari." - -# b81a2a86cf2d47079bc7fe3ee38b5810 -#: ../../source/training/old-training/intermediate/index.rst:12 -msgid "" -"The data used in this course is available for download on `data.inasafe.org " -"`_. Ask your trainer which data you will need to " -"download for the course if they do not provide it to you directly." -msgstr "" -"Data yang digunakan dalam pelatihan ini dapat di*download* pada `data." -"inasafe.org `_. Tanyakan pada pelatih Anda data " -"apa saja yang perlu Anda *download* untuk pelatihan jika mereka tidak " -"memberikan kepada Anda." diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/300-introduction.po b/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/300-introduction.po deleted file mode 100644 index 3dbe86c7..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/300-introduction.po +++ /dev/null @@ -1,285 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# mahardika fadmastuti , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 08:37+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# c8530ff82744479d8ca30d70f932b191 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:6 -msgid "Introduction" -msgstr "Pengantar" - -# 447504542121429b87c9ba69068a3564 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:9 -msgid "Disclaimer" -msgstr "Ketentuan" - -# ab3bce58381342bb9e9d324425526d40 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:11 -msgid "" -"This document is initial draft and still in reviewing phase by these parties:" -msgstr "" -"Dokumen ini merupakan rancangan awal dan masih dalam tahap peninjauan oleh " -"pihak-pihak sebagai berikut:" - -# fe3c705760844b58a6d4cd18db15be0c -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:13 -msgid "Badan Nasional Penanggulangan Bencana (|BNPB|)" -msgstr "Badan Nasional Penanggulangan Bencana (|BNPB|)" - -# d5105695352c47d8abccdee780c9e79d -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:14 -msgid "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" -msgstr "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" - -# b5f6a205e3fb4b579582c0c690e6384e -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:15 -msgid "Humanitarian OpenStreetMap Team (|HOT|)" -msgstr "Humanitarian OpenStreetMap Team (|HOT|)" - -# e7256cd89c524167ab115d80fd3f803a -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:17 -msgid "" -"All contents and materials on this document may be changed without public " -"notice." -msgstr "" -"Seluruh isi dan materi dalam dokumen ini kemungkinan masih dapat mengalami " -"perubahan tanpa pemberitahuan publik." - -# b1648a8fc0ae4487be03af580cbac0fb -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:21 -msgid "Licence" -msgstr "Lisensi" - -# dbf3153cafc5477d86ef0e72a3a58a1c -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:25 -msgid "" -"All contents and materials in this document are licensed as Creative Commons " -"Attribution Australia (CCbyA)." -msgstr "" -"Seluruh isi dan materi pada dokumen ini berlisensikan Creative Commons " -"Attribution Australia (CCbyA)." - -# d64855afbf2043ccafbf5213eba87fc3 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:28 -msgid "You are free:" -msgstr "Anda dapat:" - -# b7201d2874b44b34a36103c4ab016d4c -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:30 -msgid "to copy, distribute, display, and perform the work" -msgstr "menyalin, mendistribusikan, menampilkan dan mengerjakan" - -# 1f3f5cfcf9b84086b5bbfa3318a03a94 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:31 -msgid "to make derivative works" -msgstr "untuk membuat karya turunan" - -# 16ec24bb2b214e208d17b2aca5f0f609 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:32 -msgid "to make commercial use of the work" -msgstr "untuk membuat penggunaan yang komersial" - -# cdb2a8a6e8ca4fa0b8a1eaf6c2854145 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:34 -msgid "You must give the original author credit." -msgstr "Anda harus memberikan kredit penulis asli." - -# 2aa63ba12b3744e18855e6669e0ddaa4 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:36 -msgid "" -"More information about CCbyA License: http://creativecommons.org/licenses/" -"by/3.0/au/deed.en_GB" -msgstr "" -"Keterangan lebih lanjut mengenai Lisensi CCbyA: http://creativecommons.org/" -"licenses/by/3.0/au/deed.en_GB" - -# 792de441d3a34da08e392bd01c6e328c -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:40 -msgid "About Us" -msgstr "Tentang Kami" - -# b7d9e0fbbd0642cdaf57fcbe1730aa94 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:42 -msgid "Badan Nasional Penanggulangan Bencana (BNPB)" -msgstr "Badan Nasional Penanggulangan Bencana (BNPB)" - -# 1661c90aaf0c460da28aeb56b92ffd5b -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:46 -msgid "" -"BNPB is Indonesia’s National Disaster Management Agency. |BNPB| is a non-" -"departmental ministerial-level government agency, tasked with providing " -"guidance and direction to the efforts of disaster management that includes " -"disaster prevention, emergency response, rehabilitation and reconstruction " -"in a fair and equal way. |BNPB| functions as a policy maker regarding " -"refugee/IDP management for effective and efficient response. It coordinates " -"the implementation of disaster management activities in a planned, " -"integrated and comprehensive way." -msgstr "" -"BNPB adalah Badan Nasional Penanggulangan Bencana Indonesia. |BNPB| " -"merupakan lembaga pemerintah non-departemen di tingkat kementrian yang " -"bertugas untuk menyediakan panduan dan pengarahan di bidang manajemen " -"bencana, termasuk pencegahan bencana, respon keadaan darurat, rehabilitasi, " -"dan rekonstruksi secara adil dan merata. BNPB memiliki fungsi sebagai " -"pembuat kebijakan terkait manajemen pengungsi (IDP) untuk bertindak secara " -"cepat dan merespon secara efisien. BNPB juga mengkoordinasikan implementasi " -"dari aktifitas manajemen bencana secara terencana, terintegrasi, dan " -"komprehensif." - -# 574b86e7d76e465297080d5be85d3860 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:56 -msgid "http://bnpb.go.id" -msgstr "http://bnpb.go.id" - -# b48a218a46ea4682bab3e2809e44bcf7 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:59 -msgid "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" -msgstr "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" - -# e0375fd5be164be6b2af18599f266e0d -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:63 -msgid "" -"The Australia-Indonesia Facility for Disaster Reduction (|AIFDR|) is a joint " -"initiative between the governments of Australia and Indonesia. They work to " -"strengthen Indonesia's ability to reduce the impact of disasters. The " -"Australian and Indonesian governments at a special ceremony on 15 July 2010 " -"launched the Australia-Indonesia facility. The launch marks an important " -"event in the strong relationship now shared by both countries and their " -"united commitment to better prepare for and respond to natural disasters in " -"Indonesia." -msgstr "" -"Australia-Indonesia Facility for Disaster Reduction (AIFDR, Fasilitas " -"Australia-Indonesia untuk pengurangan bencana) merupakan inisiatif gabungan " -"antara pemerintah Australia dengan pemerintahIndonesia. AIFDR bekerja untuk " -"memperkuat kemampuan Indonesia untuk mengurangi dampak bencana. AIFDR " -"diluncurkan oleh pemerintah Australia dan pemerintah Indonesia dalam sebuah " -"seremoni khusus pada tanggal 15 Juli 2010. Peluncuran ini menandakan sebuah " -"kejadian penting dalam hubungan kuat yang saat ini terjalin antara kedua " -"negara dan komitmen mereka untuk mempersiakan dan merespon bencana alam di " -"Indonesia lebih baik." - -# 9e06abfe37e44b7097ab0ba64653375c -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:72 -msgid "http://aifdr.org" -msgstr "http://aifdr.org" - -# f5021c6c9271467d9985df436b9b2923 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:75 -msgid "Humanitarian OpenStreetMap Team (HOT)" -msgstr "Humanitarian OpenStreetMap Team (HOT)" - -# 37faed31349b405fba14f877086c3eba -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:79 -msgid "" -"Free, collaborative maps are uniquely valuable to humanitarian work, " -"especially in places where base map data is often scarce, out-of-date, or " -"rapidly changing. OpenStreetMap is a web project to create a free and open " -"map of the entire world, built entirely by volunteers surveying with GPS, " -"digitising aerial imagery, and collecting and liberating existing public " -"sources of geographic data. The Humanitarian OpenStreetMap Team (|HOT|) is " -"an initiative to apply the principles and activities of open source and open " -"data sharing towards humanitarian response and economic development." -msgstr "" -"Peta gratis dan kolaboratif mempunyai keunikan yang berharga untuk pekerjaan " -"kemanusiaan, terutama di tempat-tempat dimana peta dasar sangat jarang " -"ditemukan, datanya sudah lama, atau seringkali berubah. OpenStreetMap " -"merupakan proyek berbasis website untuk membuat peta dunia yang gratis dan " -"terbuka, dibangun oleh volunteer yang melakukan survei dengan GPS, " -"mendigitasi citra satelit, dan mengumpulkan juga membebaskan sumber data " -"geografis publik yang sudah ada . Tim Kemanusiaan OpenStreetMap (HOT) " -"merupakan sebuah inisiatif yang baru untuk mengaplikasikan prinsip dan " -"aktifitas dari sumber terbuka dan berbagi data terbuka untuk menuju respon " -"kemanusiaan dan pembangunan ekonomi." - -# af8809f35a644ccfa6e305b1017a45ba -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:88 -msgid "http://hot.openstreetmap.org" -msgstr "http://hot.openstreetmap.org" - -# 1cb21a6d29c747e3b9526a3caefcdd1a -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:91 -msgid "Universitas Gadjah Mada" -msgstr "Universitas Gadjah Mada" - -# 1fe03e48d7534207aa101dbda7b8ea14 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:95 -msgid "" -"Universitas Gadjah Mada (internationally known as Gadjah Mada University, or " -"UGM) is a top research university located in Yogyakarta, Indonesia. The " -"Department of Geodetic Engineering and Faculty of Engineering focuses on " -"education, research, and commmunity services related to geodesy and " -"geomatics engineering, including acquisition, analysis, and uses of detailed " -"and accurate geospatial data and large-scale maps using open source " -"geospatial software for disaster management." -msgstr "" -"Universitas Gadjah Mada (secara internasional dikenal sebagai Gadjah Mada " -"University ; Disingkat : UGM) adalah salah satu pusat penelitian tingkat " -"universitas yang bertempat di Yogyakarta, Indonesia. Departemen Teknik " -"Geodesi, Fakultas Teknik khususnya fokus dalam kegiatan pengajaran, " -"penelitian, dan pengabdian kelompok yang berkaitan dengan geodesi dan teknik " -"geomatik, termasuk akuisisi, analisis, dan penggunaan dari geospasial data " -"yang detil dan akurat serta dengan peta berskala besar menggunakan software " -"geospasial bersifat open source dalam manajemen bencana." - -# 1956489ff930465993fc11a3c253cc4e -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:103 -msgid "http://ugm.ac.id" -msgstr "http://ugm.ac.id" - -# 814ff5f856cb4df0bdb0a1e1c9036a49 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:107 -msgid "Preface" -msgstr "Pengantar" - -# d3827927ba0246e69988ba3c273418a5 -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:108 -msgid "" -"Every day thousands of people contribute to OSM, a project with the lofty " -"goal of mapping the world. Most OSM software is free and open source, and " -"the data is open for anyone to use. The idea is simple: if you make a map of " -"your town and we make a map of ours, we can share those maps on a common " -"platform. With enough people contributing, we can collect data throughout " -"the world." -msgstr "" -"Setiap hari ribuan orang berkontribusi untuk OpenStreetMap, sebuah proyek " -"dengan tujuan mulia yaitu memetakan seluruh dunia. Kebanyakan software OSM " -"adalah gratis dan open source, dan datanya terbuka bagi siapapun yang " -"menggunakannya. Idenya sangat sederhana: jika anda membuat sebuah peta untuk " -"kota dimana anda tinggal dan saya membuat peta dimana saya tinggal, kita " -"dapat berbagi peta tersebut pada sebuah platform yang sama. Dengan orang " -"yang berkontribusi secukupnya, kita dapat membuat peta dan mengumpulkan data " -"dari seluruh dunia." - -# 1703d2b2559440bcb0d797687f0d473a -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:115 -msgid "" -"Collecting Spatial Data using OSM Intermediate Level is a step-by-step " -"course designed to help those who wish to carry on from the beginner " -"tutorial and explore OSM in more detail. We recommend reviewing Collecting " -"Spatial Data using OSM Beginner Level prior to this unit." -msgstr "" -"Panduan pengumpulan data spasial menggunakan OSM untuk Tingkat Menengah " -"adalah panduan yang dirancang untuk membantu siapa pun yang ingin " -"melanjutkan dari panduan dasar dan mengeksplorasi OSM lebih lanjut. Kami " -"menyarankan untuk membaca panduan pengumpulan data spasial menggunakan OSM " -"tingkat dasar terlebih dahulu." - -# 50822312fe92471588c187b69734a86d -#: ../../source/training/old-training/intermediate/osm/300-introduction.rst:121 -msgid ":ref:`Go to first module --> `" -msgstr ":ref:`Pergi ke modul pertama --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/301-advanced-editing.po b/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/301-advanced-editing.po deleted file mode 100644 index 14ce7428..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/301-advanced-editing.po +++ /dev/null @@ -1,780 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# elida nurrohmah , 2014 -# Emir Hartato , 2014 -# mahardika fadmastuti , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:40+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 00b0abbafbb84270954eb2e7ec1ca599 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:6 -msgid "Module 1: Advanced Editing" -msgstr "Modul 1: Teknik Editing Lebih Lanjut" - -# 91190d5dea424976b38fcf1df8130387 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# cd756b85bb774777b88804462ba73ab4 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:10 -msgid "Use advanced editing tools in JOSM" -msgstr "Menggunakan alat edit di JOSM" - -# 9ef3dc76f9bf45e2bd0316bb9cabe223 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:11 -msgid "Make relations among objects" -msgstr "Membuat relasi antar objek" - -# 1f36555ec81e4e7d9e17d116918aa749 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:13 -msgid "" -"Welcome to the intermediate guide for spatial data collection with " -"OpenStreetMap. In the previous unit you learned how to draw points, lines " -"and shapes in JOSM, how to open your GPS waypoints and tracks in JOSM and " -"how to download, edit and upload your changes on OSM. In this module, we " -"will describe relations, JOSM editing tools and editing techniques in " -"greater detail." -msgstr "" -"Selamat datang pada panduan tingkat lanjut untuk pengumpulan data spasial " -"dengan OpenStreetMap. Pada unit sebelumnya anda telah mempelajari bagaimana " -"menggambar titik, garis, dan bentuk, pada JOSM; bagaimana membuka waypoint " -"dan track GPS anda pada JOSM; dan bagaimana mendownload, mengedit, dan " -"mengupload perubahan anda pada OpenStreetMap. Pada bab ini, kita akan " -"mendeskripsikan relasi, tool editing di JOSM dan teknik editing dalam detail " -"lebih lanjut. " - -# 338f84204e994fc2a178aa79f8e8f2e6 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:20 -msgid "" -"While this module is not extremely advanced, it is a step higher than the " -"previous unit. If you don’t feel like you fully understand the lessons " -"leading up to this, you may wish to practise a little bit more before " -"continuing." -msgstr "" -"Bab ini tidak memerlukan kemahiran tingkat tinggi, namun merupakan selangkah " -"lebih tinggi dari bab-bab sebelumnya. Jika anda merasa tidak mengerti secara " -"penuh mengenai materi lanjutan ini, anda mungkin ingin berlatih sedikit " -"sebelum anda melanjutkan. " - -# fb5118148ffe44659a9e9576db3f5ca3 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:27 -msgid "1. Advanced editing tools" -msgstr "1. Teknik editing lebih lanjut" - -# 11fad8b422d34f7f90ebab3ba2530167 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:29 -msgid "" -"There are a few ways you can access more editing tools in JOSM. We will look " -"more at the default tools, as well as additional tools available through " -"plugins." -msgstr "" -"Terdapat beberapa cara untuk mengakses tools editing dalam JOSM. Kita akan " -"melihat lebih jauh pada tool standar, beberapa plugins dan tombol keyboard " -"untuk akses cepat. " - -# e5370ac5af6f49e98655ad4c10297cc7 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:34 -msgid "1.1 Default drawing tools" -msgstr "1.1 Tools menggambar standar " - -# d06de6bd9ad842b686bdc50df152a4d2 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:36 -msgid "" -"JOSM has some additional tools to make it easier to draw lines and shapes. " -"These tools are found in the :menuselection:`Tools` menu at the top of JOSM." -msgstr "" -"JOSM memiliki tool-tool tambahan untuk membuat proses gambar garis atau " -"bentuk menjadi lebih mudah. Alat-alat ini dapat ditemukan di menu :" -"menuselection:`Alat` pada bagian atas JOSM. " - -# 4421659a78e14435a60e06a2b3546894 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:42 -msgid "" -"In order to apply the functions in this menu, you must first select a point, " -"line or shape in the map window. Some of the most useful functions are " -"described here:" -msgstr "" -"Untuk mengaplikasikan fungsi-fungsi yang ada di dalam menu ini, pertama-tama " -"anda harus memilih sebuah titik, garis, atau area/poligon pada jendela peta. " -"Beberapa fungsi yang paling berguna akan dijelaskan di bawah ini:" - -# f8ef42066e454713a527266b01db2fec -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:47 -msgid "Split Way" -msgstr "Bagi Jalur" - -# 5fb8d37e05fc49f29d88f1ff3c41790f -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:48 -msgid "" -"This allows you to divide a line into two separate lines. This is useful if " -"you want to add different attributes to different parts of a road, such as a " -"bridge. To use this function, select a point in the middle of the line that " -"you want to split, go to :menuselection:`Tools ‣ Split Way` and your line " -"should be split in two." -msgstr "" -"**Bagi Jalur:** Tool ini dapat anda gunakan untuk membagi sebuah garis " -"menjadi dua bagian. Ini sangat berguna jika anda ingin menambahkan atribut " -"pada bagian jalan tertentu. Untuk menggunakan fungsi ini, pilihlah sebuah " -"titik pada garis yang ingin anda bagi, pilih :menuselection:`Bagi Jalur` " -"dari menu :menuselection:`Alat` , dan garis anda seharusnya sudah terbagi " -"menjadi dua bagian." - -# 80514dd1e2e5475399572a81d4141100 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:58 -msgid "Combine Way" -msgstr "Menggabungkan Jalan" - -# 38cc9e06123d4ce4a52613b565c105a3 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:59 -msgid "" -"This does the opposite of :guilabel:`Split Way`. To combine two lines into a " -"single line, they must share a single point. To use this function, select " -"both lines that you want to combine. You can select more than one object by " -"holding the :kbd:`SHIFT` key on your keyboard and clicking on each line. " -"When you have selected both lines, go to :menuselection:`Tools ‣ Combine " -"Way`." -msgstr "" -"**Menggabungkan Jalan:** Merupakan fungsi yang berlawanan dengan :guilabel:" -"`Bagi Jalur`. Untuk menggabungkan dua garis menjadi sebuah garis, garis-" -"garis tersebut harus berbagi dengan sebuah titik. Untuk menggunakan fungsi " -"ini, pilih kedua garis yang ingin anda gabung. Anda dapat memilih lebih dari " -"satu objek dengan menahan tombol :kbd:`SHIFT` pada keyboard anda dan " -"mengklik pada setiap garis. Ketika anda telah memilih kedua garisnya, pilih :" -"menuselection:`Menggabungkan Jalan` dari menu alat." - -# dd608ae04fe24a80b32b98dc0b4590f9 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:69 -msgid "" -"Note that you if are combining roads that have different directions, you " -"might get this warning:" -msgstr "" -"Catatan Jika anda menggabungkan jalan yang memiliki arah yang berbeda, anda " -"akan mendapatkan peringatan seperti ini: " - -# b7922972b69d4f409f6a3f365aea97b4 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:75 -msgid "" -"If the roads are connected and go in the same direction, click :guilabel:" -"`Reverse and Combine`." -msgstr "" -"Jika jalan tersebut sudah terhubung dan menuju kearah yang sama, klik :" -"guilabel:`Balik dan Gabungkan`" - -# b6e8f61500fc48fb84817244c233ceda -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:79 -msgid "Reverse Way" -msgstr "Membalikan Jalur" - -# 0df8719ee7b84700a98e557dba4978f7 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:80 -msgid "" -"This will change the direction of the line. If the line incorrectly " -"represents a road or river that is one-way, you may want to change its " -"direction. Unless someone has intentionally created a way to be one way you " -"do not usually have to worry about altering the direction because ways in " -"OSM default to represent both directions." -msgstr "" -"Fungsi ini akan merubah arah dari suatu garis. Jika garis anda menggambarkan " -"sebuah jalan satu arah atau anda ingin menggambarkan arah sungai, anda " -"mungkin ingin mengganti arahnya. Kasus lain, arah tidak begitu penting. " - -# 7668f00c359a422a8dcbd729b62e2d89 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:90 -msgid "Simplify Way" -msgstr "Sederhanakan Jalur" - -# be876ce29fb6482e916d6f13afcb2493 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:91 -msgid "" -"If your line has too many nodes in it and you’d like to make it simpler, " -"this will remove some of the points from a line." -msgstr "" -"Jika garis anda memiliki terlalu banyak titik dan anda ingin membuatnya " -"sederhana, ini akan mengurangi beberapa titik dari sebuah garis." - -# 10cca37263004235a6db0dea5feedcf4 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:98 -msgid "Create Circle OR Align Nodes in Circle" -msgstr "Buat Lingkaran atau Sejajarkan Node Membentuk Lingkaran" - -# 185336140346447aaced40cac36fbea6 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:99 -msgid "" -"If you are trying to make a circular shape, draw the circle as best you can " -"and then select three nodes and the function. It will help arrange your " -"points in a circle." -msgstr "" -"Jika anda ingin membuat bentuk melingkar, gambar sebuah lingkaran sesuai " -"kemampuan anda dan kemudian pilih fungsi ini. Fungsi ini akan membantu untuk " -"menyusun titik-titik anda menjadi sebuah lingkaran. " - -# d03dd8ccbcd4465a90dc563387cf0f2a -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:107 -msgid "Align Nodes in Line" -msgstr "Sejajarkan Node dalam Garis" - -# 7d273ead1e0144e9a2bc6cb947a75fb5 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:108 -msgid "" -"This function will align a series of points into a straight line. With long " -"lines it is best to select sections of the line to straighten. Be careful as " -"this does have the tendency to shift the line a little." -msgstr "" -"garis lurus. Dengan garis panjang yang terbaik adalah untuk memilih bagian " -"dari garis untuk meluruskan. Hati-hati karena hal ini memang memiliki " -"kecenderungan untuk menggeser garis sedikit." - -# 4a1a217e99a54136925afe722302cddc -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:117 -msgid "Orthogonalize Shape" -msgstr "Ortogonalisasi Bentuk (membuat sebuah persegi)" - -# 9a0fdc9742a0445ab690aac632d2d0ee -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:118 -msgid "" -"This function is very useful for drawing regular shapes such as buildings. " -"After you draw an area, this function will reshape it to have square " -"corners. This feature is most useful for other regularly shaped features, " -"such as tennis courts or landuse areas (Using the Building Plugin, which is " -"explained below, might be easier for buildings)." -msgstr "" -"Fungsi ini sangat berguna untuk menggambar bentuk sederhana seperti " -"bangunan. Setelah anda menggambar sebuah area. Fungsi ini akan membentuk " -"ulang menjadi sebuah persegi. Plugin buildings, bagaimanapun, menandakan " -"bahwa fitur ini adalah fitur yang paling berguna untuk fitur sederhana " -"lainnya, seperti lapangan tenis, atau wilayah penggunaan tanah. (Gunakan :" -"guilabel:`Building Plugin`, yang akan dijelaskan di bawah ini, mungkin lebih " -"mudah)." - -# e6709b176d094decb7bd49b139e5506d -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:129 -msgid "Unglue Ways" -msgstr "Lepas Jalur " - -# 194bc88bdf034c93bdfb87b431d65dc6 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:130 -msgid "This tool allows you to detach nodes that are connected." -msgstr "Tool ini berguna untuk memisahkan titik yang terhubung. " - -# ab7fc9fa9b084fbcb7a93345bd819800 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:135 -msgid "" -"The line and node will not actually appear separate as the last screenshot " -"implies." -msgstr "" -"Garis dan titik sebenarnya tidak akan muncul terpisah seperti dicontohkan " -"gambar terakhir dibawah" - -# 5af6f1b0ab434000b4c2a4be53b26874 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:139 -msgid "1.2 Plugins" -msgstr "1.2 Plugins" - -# fb6a4fce9e0647ed88548f8913bb55d4 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:142 -msgid "Building Plugin" -msgstr "Building Plugin" - -# 31b716e1f90244d08143cbdbfe95901e -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:146 -msgid "" -"This plugin is by far one of the most useful tools for editing (digitising). " -"Install it as with any other plugin. It will appear as an icon on the left " -"hand toolbar. The functionality of this tool is explained here:" -msgstr "" -"Sejauh ini merupakan tool tambahan yang paling berguna untuk editing " -"(digitasi). Instal dengan beberapa plugin lain. Itu akan muncul dengan ikon " -"di sebelah kiri toolbar. Fungsi dari alat ini akan dijelaskan:" - -# c6dd3ae02a794c11be342e4cb82d096e -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:150 -msgid "" -"The Building tool allows you to create shapes with 90 degree corners with " -"just three clicks. First, trace the edge of the building and then drag out " -"the line to make it a polygon." -msgstr "" -"Building Tool dapat membantu anda untuk membuat persegi dengan sudut 90 " -"derajat hanya dengan tiga kali klik. Pertama, anda digit bagian pojok " -"bangunan anda, kemudian anda geser untuk menjadikannya sebuah poligon. " - -# e2e890a7ef9f4825a2ac67b589ced271 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:160 -msgid "" -"You can also create more complicated buildings by using the merge option. " -"Create your building outline, select all of the polygons (press :kbd:`SHIFT` " -"to highlight them all) and then press :kbd:`SHIFT + J` to merge the objects." -msgstr "" -"Anda juga dapat membuat bangunan yang rumit dengan menggunakan pilihan " -"merge . Buatlah garis bangunan anda, kemudian pilih semua poligon (tahan :" -"kbd:`SHIFT` untuk memilih semua poligon) kemudian tekan :kbd:`SHIFT + J` " -"untuk menggabungkan seluruh objek. " - -# 308d219b3bc74a08844c3ad936a9995c -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:167 -msgid "" -"Furthermore, you can also change the default settings (size of building and " -"default tags) by going to :menuselection:`Data ‣ Set building size`." -msgstr "" -"Selain itu, Anda juga dapat mengubah pengaturan standar (ukuran dan tagging) " -"pada :menuselection:`Data > Set building size`" - -# df9c57b5c8fc4b08b6fd00bee8935ca6 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:173 -msgid "" -"This is useful if you are drawing many buildings of a known dimension (such " -"as five by six metres). If you are mapping infrastructure which requires " -"tags other than **building=yes**, you can set the desired default tags by " -"going to :guilabel:`Advanced...`." -msgstr "" -"Ini akan sangat membantu apabila Anda menggambar bangunan dalam jumlah " -"banyak dengan dimensi yang sudah diketahui sebelumnya (misal lima hingga " -"enam meter). Jika Anda memetakan infrastruktur yang membutuhkan tag selain " -"**building=yes**, Anda dapat mengatur tag standar dengan menuju pengaturan :" -"guilabel:`Advanced...`." - -# bfbea6b57797449795fbcb82ad8cdecc -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:183 -msgid "Utilsplugin2 (More Tools)" -msgstr "**Utilsplugin2 (Lebih Banyak Alat):**" - -# a4177d1286ad445dae9df21e33c5ec13 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:185 -msgid "" -"The plugin utilsplugin2 has several features that are also useful for " -"editing." -msgstr "" -"Tool utilsplugin2 tambahan ini memiliki beberapa fitur yang mungkin berguna " -"untuk editing. " - -# 8351cdad189b444daa66d5a8465d1645 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:190 -msgid "" -"After you install this plugin, a new menu will appear called :menuselection:" -"`More Tools`." -msgstr "" -"Setelah anda me-restart JOSM, anda akan mendapati sebuah tab bernama :" -"menuselection:`Lebih Banyak Alat`: " - -# a7f059f3c9154ae7ae11976e8de86ea6 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:196 -msgid "The following tools are some of the most useful:" -msgstr "Tool-tool ini telah terbukti paling berguna: " - -# dea3a4076f36451f9596f4bf06284129 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:199 -msgid "Add Nodes at Intersections" -msgstr "Tambah Node/Titik di Persimpangan" - -# 3d32a1977c9d48e6a2c41a224adf8136 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:200 -msgid "" -"This tool is helpful for adding missing nodes in intersections of selected " -"ways. It is good practice that roads and rivers should always have common " -"nodes where they intersect." -msgstr "" -"Tool ini sangat berguna untuk menambah titik yang hilang pada perpotongan " -"jalur yang terpilih. Memiliki node pada perpotongan akan membuatnya semakin " -"mudah untuk mengedit perpotongan." - -# 31bfed3e07e74fb8881dddf69a58034b -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:208 -msgid "Copy Tags from Previous Selection" -msgstr "Salin tag dari pilihan sebelumnya" - -# b1f4c7986a6d49189e823c5be4f7227a -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:209 -msgid "" -"This function makes copying tags easier. If you want to create many objects " -"with the same tags, first draw the objects. Then add the tags to one object. " -"Click on another object and press :kbd:`Shift + R` to copy the tags from the " -"previously selected object. You can do this for all objects that you want to " -"tag. Remember that the tags will be copied from the previously selected " -"object, so if you click on an untagged object and then another untagged " -"object, you will not be able to copy any tags." -msgstr "" -"Fungsi ini dapat menyalin tag dari objek yang sebelumnya telah terpilih pada " -"satu objek baru yang dipilih. Tool ini mengingat tag mana saja yang dimiliki " -"pada objek terakhir yang dipilih, dan menyalinnya pada pilihan objek " -"selanjutnya. Jadi, untuk menyalin tag dari satu objek ke objek lainnya, anda " -"tidak perlu menekan dua tombol cepat – tapi pilih satu objek, kemudian pilih " -"objek yang diingankan dan tekan :kbd:`Shift+R`. " - -# 6ac31fea88a9488190bd386a997b2323 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:222 -msgid "Add Source Tag" -msgstr "Tambahkan Tag Sumber" - -# 8e44f26eebd542a1a45b37d09f8fc5b5 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:223 -msgid "" -"This tool simplifies adding a source tag. It remembers the source that was " -"specified last and adds it as remembered source tag to your objects. You can " -"insert the source with just one click." -msgstr "" -"Tool ini menambahkan tag sumber. Itu mengingatkan pada sumber yang spesifik " -"dan menambahkan tag sumber pada objek. Anda dapat memasukkan sumber dengan " -"satu kali klik." - -# 298c6a636110441688a8275fac489d08 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:228 -msgid "Replace Geometry" -msgstr "Ganti Geometri" - -# 42fcfac451b74d2f831b314aaa263871 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:229 -msgid "" -"This tool is great if you want to redraw a poorly shaped object, but want to " -"keep the history, attributes and ID number of that object. For example, if " -"you come across a building that is complicated and drawn in a poor fashion, " -"then instead of painfully changing each node, you can (2) just draw the " -"object again (3) select the old and new object (4) press :guilabel:`Replace " -"Geometry` to transfer all the information over." -msgstr "" -"Alat ini berguna jika anda ingin menggambar kembali objek yang tidak " -"tergambar dengan baik, akan tetapi anda ingin untuk tetap menyimpan history, " -"attribut, dan nomor ID dari objek tersebut. Contohnya adalah jika anda " -"menemukan objek bangunan yang sangat rumit yang tergambar dengan tidak baik, " -"daripada anda memindahkan titik satu persatu pada setiap sudutnya, anda bisa " -"(2) gambar objek tersebut kembali (3) pilih objek baru dan objek lama (4) " -"Klik :guilabel:`Ganti Geometri` untuk memindahkan semua informasi termasuk " -"history, atrribut, dan nomor ID dari objek yang lama." - -# c0734cd19b054ae4b946a9047a4a3359 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:240 -msgid "" -"Utilsplugin2 also provides a new selection menu that provides more tools:" -msgstr "" -"Utilsplugin2 Juga menyediakan menu seleksi baru yang memberikan alat " -"tambahan:" - -# ed930c70cd434d0e914b6bb4104ebf8a -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:245 -msgid "These tools are some of the most useful:" -msgstr "Tool-tool yang dinilai paling berguna: " - -# d76a98049b68447ebe1a56eaa6749fc4 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:248 -msgid "Unselect Nodes" -msgstr "Membatalkan pilihan titik " - -# b3bf3971f9904132a10e9f8a6b34bcf2 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:249 -msgid "" -"This tool allows you to deselect nodes, which makes it useful for tagging " -"the objects selected. This tool is necessary if you have mapped several " -"polygon objects with similar attributes and would like to tag the objects " -"without tagging the nodes. To do so, select all of the objects - polygons, " -"ways and relations. Then unselect the nodes and tag appropriately." -msgstr "" -"Anda dapat membatalkan pilihan dari titik-titik pada jalur atau objek yang " -"telah dipilih dimana akan sangat berguna untuk memberikan tag pada objek " -"yang anda pilih. Tool ini sangat penting jika anda telah memetakan beberapa " -"poligon dengan atribut yang sama dan anda ingin memasukan tag yang sama " -"tanpa memberikan tag pada titik. Untuk itu, pilih seluruh objek" - -# 4401e9be91e340388582f4ff840bf6d5 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:259 -msgid "Select Last Modified Nodes" -msgstr "Pilih node/titik yang terakhir dimodifikasi" - -# e5fcd4ed66ef40f8820f4d87d56be432 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:260 -msgid "" -"This tool permits you to go back to the nodes that you most recently changed." -msgstr "" -"Tool ini memperbolehkan anda untuk kembali pada titik yang baru saja anda " -"ubah. Itu seperti mengembalikan seperti semula: model titik." - -# 2afb87db485343dc8997762dc9c5f531 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:264 -msgid "2. Relations" -msgstr "2. Relasi" - -# 8482b590623547b2ae7602b43a680a74 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:266 -msgid "" -"In the first unit we learned that there are three types of objects that can " -"be drawn in OSM - points (nodes), lines (ways) and polygons. Lines contain " -"numerous points, and the line itself carries the attributes that define what " -"it represents. Polygons are the same as lines, except that the the line must " -"finish where it begins in order to form a shape." -msgstr "" -"Pada Panduan Pemula kita telah mempelajari bahwa terdapat tiga objek yang " -"dapat digambar dalam OpenStreetMap – titik (node), garis (ways), dan " -"poligon. Garis terdiri dari sejumlah titik, dan garis itu sendiri membawa " -"beberapa atribut yang mendefinisikan objek tersebut di lapangan. Poligon " -"sama seperti garis, kecuali garis tersebut harus menutup pada titik awalnya " -"untuk membentuk suatu bentukan. " - -# 07ef32832ee548dcba34811517ce7faf -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:272 -msgid "" -"In fact, there is one other type of object in OSM, and these are called " -"relations. In the same way that a line consists of other points, a relation " -"contains a group of other objects, be they points, lines or polygons. If you " -"are looking to obtain advanced editing skills, then understanding and " -"knowing how to properly edit relations is important." -msgstr "" -"Faktanya adalah, terdapat salah satu tipe di OpenStreetMap yang disebut " -"relasi. Sama halnya dengan garis yang terdiri dari titik-titik, sebuah " -"relasi mengandung beberapa kelompok dari objek lain, mereka bias berupa " -"titik-titik, garis-garis, atau poligon-poligon. Jika anda ingin meningkatkan " -"kemampuan editing anda lebih lanjut, maka memahami dan mengetahui bagaimana " -"untuk mengedit suatu relasi sangat penting. " - -# cec7e2f1f1914e2e974b3555bd028e04 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:278 -msgid "" -"For example, imagine that you want to map a building that has courtyards in " -"the centre. You would need to draw a polygon around the outside of the " -"building, and you would need other polygons around the courtyards to " -"indicate that they are not part of the building. This is an example of a " -"relation. The relation would contain several polygons - and the attributes " -"of the building would be attached to the relation, not the polygons." -msgstr "" -"Sebagai contohnya, bayangkan anda ingin memetakan sebuah bangunan yang " -"memiliki halaman di tengahnya. Anda perlu menggambar sebuah poligon dari " -"bangunannya, dan anda mungkin ingin menambahkan poligon di sekitar halaman " -"bangunan tetapi mengindikasikan poligon tersebut bukanlah bangian dari " -"bangunan. Ini merupakan salah satu contoh relasi. Relasi dapat mengandung " -"beberapa poligon- dan atribut dari bangunan dapat dilampirkan pada " -"relasinya, bukan pada poligon. " - -# a95470c5123c4316a7caf101fcc15a20 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:288 -msgid "" -"Relations are used to represent anything that requires a collection of " -"objects to define. Other examples are bus routes (a collections of lines), " -"long and complex objects (rivers or roads), or multiple polygons that are " -"all part of one location (like buildings in a university)." -msgstr "" -"Relasi digunakan untuk menggambarkan apapun yang membutuhkan sekelompok dari " -"suatu objek untuk didefinisikan. Contoh lain adalah rute bus (sekelompok " -"garis), objek yang panjang dan kompleks (sungai atau jalan raya), atau " -"beberapa poligon yang merupakan bagian dari suatu lokasi (seperti bangunan " -"di sebuah universitas). " - -# c78c4d295d9246f499c506462cc8f621 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:293 -msgid "" -"There are mainly four types of relations you will encounter in OSM: " -"**Multipolygons, Routes, Boundaries and Restrictions**. In this section we " -"will go over Multipolygons and Routes." -msgstr "" -"Terdapat empat tipe relasi yang akan anda temukan di OSM: **Multipoligon, " -"Rute, Batas Wilayah dan Larangan**. Pada bagian ini, kita akan membahas " -"Multipoligon dan Rute. " - -# b599b4f5d70b432c9efecc198705372a -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:298 -msgid "2.1 Editing relations" -msgstr "2.1 Mengedit Relasi" - -# 2e473b24660c4f80b431856b93becc90 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:300 -msgid "" -"The multipolygon above contains a polygon for the outer limits of the " -"building and two more to mark the inner courtyards. To create a relation " -"from these three polygons we need to:" -msgstr "" -"Multipoligon berikut ini memiliki sebuah poligon untuk luar bangunan dan dua " -"poligon lagi untuk menandai halaman di bagian dalam. Untuk membuat relasi " -"dari ketiga tipe poligon ini anda butuh: " - -# 5648217a26fb48a4bbb07372cd9266d8 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:304 -msgid "Select all of the polygons." -msgstr "Memilih seluruh poligon" - -# 8a46743fe2b64cb3a1d15e830b18936b -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:306 -msgid "Go to :menuselection:`Tools ‣ Create multipolygon`" -msgstr "Pergi ke :menuselection:`Alat ‣ Buat Multipoligon`" - -# 3f9608b651624f13bb9b6b1346dadf54 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:311 -msgid "The polygons should automatically be created as a multi-polygon." -msgstr "Poligon harusnya sudah dibuat sebagai multipoligon secara otomatis." - -# 3365acb4849b4f7182bac603c125aacf -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:316 -msgid "Click the :guilabel:`Edit` button in the :guilabel:`Tags` tab." -msgstr "Klik tombol :guilabel:`Edit` pada tab :guilabel:`Tags`" - -# d1026497d1f34acd8805bbe12fd5f121 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:318 -msgid "" -"This opens the relation editor. Notice that in the lower-left corner is a " -"list of the members of the relation. One has been automatically defined with " -"the role of \"outer\" (the outer polygon), and the other carries the role of " -"\"inner.\"" -msgstr "" -"Hal tersebut akan membuka editor relasi. Perhatikan bahwa pada pojok kiri " -"bawah terdapat sebuah daftar relasi. Salah satunya telah terdefinisikan " -"secara otomatis dengan role \"outer\" (bagian luar poligon) sedangkan yang " -"lainnya memiliki role \"inner\"." - -# c5fbc2b9f89d47feb8c836e1247b130b -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:322 -msgid "" -"At the top are a list of the tags applied to this relation. Right now only " -"one tag exists, **type=multipolygon**. This tag indicates what type of " -"relation the object is." -msgstr "" -"Pada bagian atas merupakan sebuah daftar tag yang diterapkan pada relasi " -"tersebut. Sekarang, hanya sebuah tag yang tersisa, **type=multipolygon**. " -"Tag ini menandakan jenis dari relasi objek tersebut." - -# bb971a503ce543988b3244e4f5e95c4b -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:326 -msgid "Click beneath it and add one more tag: **building=yes**." -msgstr "Klik di bawahnya dan tambahkan sebuah tag: **building=yes**." - -# 60ad4b1466a74509bcdcf972e75796b8 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:331 -msgid "" -"Click :guilabel:`OK`. The object will change colours and will now appear as " -"a building, but with a courtyard." -msgstr "" -"Klik :guilabel:`OK`. Obyek tersebut akan berubah warnanya dan akan muncul " -"sebagai sebuah bangunan, tetapi dengan sebuah halaman." - -# 66baf6345e6d486ab09a3ac991e8dd04 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:334 -msgid "" -"The data behind the relation in our example is visible on OSM: You can see " -"this multipolygon on OSM by going to http://www.openstreetmap.org/browse/" -"relation/2435797. It will appear on OSM like this:" -msgstr "" -"Anda akan melihat bangunan anda sebagai bentuk yang solid dengan poligon " -"bagian dalam yang direpresentasikan dengan lubang. Data di balik relasi ini " -"terlihat dalam OpenStreetMap: http://www.openstreetmap.org/browse/" -"relation/2435797. Bangunan ini diproses oleh Mapnik seperti pada gambar " -"berikut: " - -# 4801a6d8495349e38917c9768fc32740 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:343 -msgid "2.2 Another multipolygon" -msgstr "2.2 Contoh Multipoligon Lainnya" - -# 92845e3da7c54342b1665ed73ee6e584 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:345 -msgid "" -"The river below is another example of a multipolygon. Effectively it is the " -"same as the building example, but with a greater number of members and " -"covering a much larger area. It can be viewed on OSM here: http://www." -"openstreetmap.org/browse/relation/1046961." -msgstr "" -"Sungai ini merupakan salah satu contoh lain dari sebuah multipoligon. Pada " -"dasarnya sama saja seperti contoh bangunan, tetapi dengan sejumlah member " -"dan area yang lebih besar. Contoh tersebut dapat dilihat di situs " -"OpenStreetMap ini: http://www.openstreetmap.org/browse/relation/1046961." - -# fa35d81774454b1dae1462897b8a71f2 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:357 -msgid "This river contains ten ways that are connected like a long polygon." -msgstr "" -"Sungai ini terdiri dari sepuluh garis yang dikoneksikan seperti sebuah " -"poligon yang panjang." - -# 193fccb2c3184bd1b450323be80946ab -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:360 -msgid "2.3 Linestring relations" -msgstr "2.3 Relasi dari Kumpulan Garis" - -# d2107911cbde4bfb9883f56ad38628eb -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:362 -msgid "" -"Relations are also very useful for creating, labeling and editing large " -"linestrings; for example, bus routes, hiking trails, bicycle paths, etc. " -"These differ from multipolygons because they are relations with members, as " -"supposed to complex areas. A linestring could simply be one line with " -"multiple members. Additional features, such as bus stops represented by " -"separate nodes can also be tagged as relation members." -msgstr "" -"Relasi juga sangat berguna untuk membuat, memberikan teks, dan mengedit " -"banyak linestrings/garis-garis; contoh, sebuah rute bus. Jika linestring " -"adalah satu garis dengan beberapa anggota, linestring ini dapat diberikan " -"tag. Fitur-fitur tambahan, seperti tempat pemberhentian bus yang dapat " -"digambarkan oleh titik terpisah juga dapat ditag sebagai anggota dari relasi." - -# 05651650c3684f36a69f20579ce1ccee -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:374 -msgid "To create a linestring relation:" -msgstr "Untuk membuat sebuah relasi dari kumpulan garis:" - -# ed3a68e40d4a45e1a988595d1256a56c -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:376 -msgid "" -"Make sure that all of the ways in which the route runs along are " -"appropriately tagged. For example, **highway=footway**." -msgstr "" -"Pastikan anda yakin bahwa seluruh garis yang akan anda gambarkan sebagai " -"rute telah diberikan tag dengan baik. Sebagai contoh, **highway= footway**." - -# 82e7808037b547cf9c1c6ba2f9d387d4 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:379 -msgid "" -"Select all of the highways or ways that are part of the bus route. If you " -"would only like to select certain parts of a way, then you must divide the " -"way into sections. This creates more work, but you can easily do it with " -"the :guilabel:`Split Way` tool." -msgstr "" -"Pilih seluruh jalan atau garis yang merupakan rute dari sebuah bus. Jika " -"anda hanya ingin memilih bagian dari suatu garis tertentu, kemudian, " -"sayangnya anda harus membagi garis-garis tersebut menjadi beberapa bagian. " -"Ini akan menambah pekerjaan anda, tetapi anda dapat melakukannya dengan " -"mudah yaitu memanfaatkan tool :guilabel:`Bagi Jalur`. " - -# c442132aa2484c48a5c9e1d22b450b66 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:385 -msgid "" -"Go to :menuselection:`Presets ‣ Transport Public Transport ‣ Route master`." -msgstr "" -"Pilih :menuselection:`Presets ‣ Transport Public Transport ‣ Route master`." - -# b83e9aeab86547cf84114b68b7eb7e8e -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:390 -msgid "" -"Fill in the information about the bus route and click :guilabel:`New " -"relation`." -msgstr "" -"Isilah informasi yang ada tentang rute bus tersebut dan klik :guilabel:" -"`Relasi baru`." - -# bd9191f4560a417e886c723da9bb7804 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:396 -msgid "" -"Relations are difficult to understand and do not have to be used often, but " -"they are necessary to know about. As you get more developed with your OSM " -"skills and want to create more complex buildings, rivers and routes, " -"relations will be useful." -msgstr "" -"Relasi sangat sukar untuk dipahami dan tidak harus digunakan secara rutin, " -"tetapi mereka penting untuk diketahui. Jika anda ingin lebih mengembangkan " -"kemampuan OSM anda, anda mungkin ingin membuat bangunan yang lebih kompleks, " -"sungai atau rute, maka relasi akan sangat berguna." - -# ef7b701e2efe48f2bc54ae3d5b8b1b63 -#: ../../source/training/old-training/intermediate/osm/301-advanced-editing.rst:402 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/302-quality-assurance.po b/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/302-quality-assurance.po deleted file mode 100644 index 98cb4ff8..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/302-quality-assurance.po +++ /dev/null @@ -1,870 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:42+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# a7511c06d52646df9c0d9641a19cc927 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:6 -msgid "Module 2: Quality Assurance" -msgstr "Modul 2: Penjaminan Kualitas" - -# f6803454f69f4106a37b5d02a51424c9 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 3d9c390988694ee58317ed926f5d8716 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:10 -msgid "Use validation tools in JOSM" -msgstr "Menggunakan *tool* validasi pada JOSM" - -# 7c7ae34fda4948da9e1fb411e7d2dd77 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:11 -msgid "Use online validation tools" -msgstr "Menggunakan tool validasi secara online" - -# 712ac291fd7c4e7f8e8c55f363dd5cea -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:13 -msgid "" -"Contributing to OpenStreetMap is easy to learn, but difficult to master. " -"Everybody makes mistakes, but the system works because even when one person " -"does something the “wrong” way, there are always other mappers ready to help " -"and fix errors. As you map more and more it will continue to get easier, and " -"you will learn the “proper” way to do things. In this module we will take a " -"look at the JOSM validation tool, which is an automated tool to search for " -"errors and warnings in your data. We will also take a look at one of the " -"online validation tools, which can aid us further in identifying mistakes on " -"OSM." -msgstr "" -"Berkontribusi di OpenStreetMap merupakan hal yang mudah untuk dipelajari, " -"namun sulit untuk dikuasai. Setiap orang dapat melakukan kesalahan, akan " -"tetapi sebuah sistem bekerja karena ketika seseorang melakukan sebuah " -"kesalahan, akan selalu ada orang lain yang siap membantu untuk menyelesaikan " -"kesalahan tersebut. Seiring Anda melakukan pemetaan secara terus menerus, " -"hal tersebut akan menjadi lebih mudah dan Anda akan mengerti cara yang tepat " -"untuk melakukan pemetaan. Modul ini ditujukan untuk membantu Anda memberikan " -"kontribusi yang lebih baik. Kita akan memulai dari mendiskusikan berbagai " -"macam teknik mengedit di JOSM yang akan membuat Anda bekerja lebih baik dan " -"mengerti kesalahan umum yang sering dibuat pada awal pemetaan. Kita akan " -"mendiskusikan tool validasi JOSM dimana merupakan cara otomatis untuk " -"mengecek kesalahan pada data OpenStreetMap." - -# 87370b2f5ecb478cbc577025bb22db19 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:25 -msgid "1. Errors and warnings" -msgstr "1. Kesalahan dan Peringatan" - -# 9fcfca67e974465aa942f017231dd511 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:27 -msgid "" -"Sometimes when you go to upload your edits in JOSM you get a pop-up window " -"like this:" -msgstr "" -"Ada kalanya ketika Anda ingin meng-*upload* data OpenStreetMap yang sudah " -"dimodifikasi melalui JOSM Anda akan mendapatkan jendela seperti dibawah ini:" - -# 9369686abca54d7ab8bb02dfec1e225f -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:33 -msgid "" -"This is JOSM’s way of telling you that there is suspicious data and that you " -"might want to review the errors and warnings before uploading to OSM." -msgstr "" -"Ini adalah cara JOSM memberitahu bahwa ada data yang salah dan harus " -"diperbaiki atau ditinjau sebelum mengupload ke server OSM." - -# dbed1c0b98bb4304b337c3a195ec6ddd -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:36 -msgid "" -"JOSM comes with a tool that does an automated analysis of possible mistakes. " -"This is useful for finding errors that you may have overlooked. When you run " -"the validation tool, it returns two lists of problems:" -msgstr "" -"JOSM hadir dengan *tool* yang berfungsi untuk menganalisis secara otomatis " -"kesalahan yang ada. Hal ini sangat membantu untuk menemukan kesalahan yang " -"tidak terlihat oleh Anda. Ketika Anda menjalankan alat validasi ini, alat " -"ini akan menghasilkan 2 jenis masalah:" - -# fb7c0c19035a4d0f926877078f21a8d4 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:40 -msgid "" -"**Errors:** These are important to fix, and therefore usually you should not " -"ignore these. Examples of errors include duplicated objects or overlapping " -"lines and polygons." -msgstr "" -"**Kesalahan:** Kesalahan penting untuk diperbaiki dan oleh karena itu Anda " -"seharusnya tidak mengabaikan. Salah satu contoh dari error ini adalah objek " -"yang terduplikasi atau garis dan poligon yang saling overlay." - -# efbda5e64ac04a92957aca6d742f816a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:44 -msgid "" -"**Warnings:** These are problems that are important to fix, but in some " -"cases, they are tolerable." -msgstr "" -"**Peringatan:** Kesalahan jenis ini merupakan kesalahan yang penting untuk " -"diperbaiki namun pada beberapa kasus hal tersebut bisa ditoleransi." - -# bafe24f545f44d688338a5b41f665e31 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:47 -msgid "" -"One thing to note is that if you download a large area of the map and run " -"the validation tool, you may get a very long list of errors and warnings. " -"This is because the validation tool works on the whole map, not only the " -"changes that you have made. You may see mistakes that other mappers have " -"made, and you can fix them, or ignore them. The validation tool gives you " -"the opportunity to look at the mistakes one by one." -msgstr "" -"Satu hal yang perlu diperhatikan jika Anda mendownload area yang besar dan " -"menjalankan *tool* validasi, Anda mungkin akan mendapatkan daftar kesalahan " -"dan peringatan yang sangat panjang. Hal ini dikarenakan *tool* validasi ini " -"bekerja pada seluruh peta, tidak hanya perubahan yang telah Anda buat. " -"Sehingga Anda mungkin akan melihat kesalahan yang dibuat oleh orang lain dan " -"Anda bisa memperbaikinya atau menghiraukannya. Akan tetapi alat validasi " -"memberikan Anda kesempatan untuk melihat kesalahan satu persatu." - -# ef81ed5f50e447399e63c337ec34a454 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:57 -msgid "2. Using the validation tool" -msgstr "2. Menggunakan *Tool* Validasi" - -# 3b54c29f4a3341e39fd2e85c9329852e -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:59 -msgid "Let’s see how to use the validation tool:" -msgstr "Mari kita lihat bagaimana cara menggunakan tool validasi:" - -# 500bc27b20dd42e890b9a6b6949fb633 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:61 -msgid "" -"In JOSM, download a section of the map. If you don’t see the :guilabel:" -"`Validation Results` window in the right panel, click on the blue checkmark " -"on the left to show it." -msgstr "" -"Pada JOSM, download satu daerah pada peta. Jika Anda tidak melihat :guilabel:" -"`Validation Results` pada jendela di panel bagian kanan, klik pada tanda " -"centang berwarna biru pada bagian kiri untuk memunculkannya." - -# 8018b117d11b403cba7e55876eb8fdd6 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:68 -msgid "" -"Ensure that nothing on the map is selected. If you run the validation tool " -"with anything selected, it will only validate what you have selected, and " -"not the whole map. Hover your mouse in the validation window and click :" -"guilabel:`Validation`." -msgstr "" -"Pastikan bahwa tidak ada bagian pada peta yang dipilih. Jika Anda " -"menjalankan tool validasi dengan sesuatu yang dipilih, hal tersebut hanya " -"akan memvalidasi daerah yang Anda pilih, dan tidak seluruh peta. Arahkan " -"mouse anda pada jendela validasi dan klik :guilabel:`Validasi`." - -# 63c6959d56f44e1f8fb6780ee4c5aa81 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:76 -msgid "" -"The map will change and any warnings will be circled in yellow, errors in " -"red. In the :guilabel:`Validation Results` window you will see a list of " -"warnings and errors, if there are any." -msgstr "" -"Peta tersebut akan berubah dan segala macam peringatan akan terlihat " -"berwarna kuning dan untuk kesalahan berwarna merah. Pada jendela :guilabel:" -"`Hasil Validasi` Anda akan melihat daftar peringatan dan kesalahan, jika ada." - -# 4c07ae7d313a45b389fcb34b80ca8d1a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:83 -msgid "" -"Errors should almost always be fixed. Zoom to an error by right-clicking on " -"it in the window and selecting :guilabel:`Zoom to Problem`. Then fix the " -"mistake manually." -msgstr "" -"Kesalahan harus seluruhnya diperbaiki. Anda dapat memperbesar di daerah yang " -"terdapat kesalahan dengan cara klik kanan pada kesalahan pada jendela " -"tersebut dan kemudian pilih :guilabel:`Perbesar ke Masalah`. Setelah itu " -"Anda bisa memperbaiki kesalahan tersebut secara manual. " - -# f6057ba5572046f1bee558a6c88c0807 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:88 -msgid "" -"Some errors can be automatically fixed, such as \"Duplicated nodes” errors. " -"Click on the folder for these types of errors and click the :guilabel:`Fix` " -"button in the window. Many errors, however, need to be corrected manually." -msgstr "" -"Beberapa kesalahan dapat diperbaiki secara otomatis, seperti “Titik yang " -"terduplikasi”. Anda dapat melihat pada folder untuk beberapa tipe kesalahan " -"dan memilih tombol :guilabel:`Perbaiki` pada jendela tersebut. Beberapa " -"kesalahan membutuhkan untuk diperiksa secara manual." - -# 96551e7da2d74a80a149064907579201 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:96 -msgid "" -"Usually there are many more warnings than errors. By giving you a warning, " -"JOSM is telling you that it is probably a mistake, but not always. Use your " -"judgement to see if it is an important error or not." -msgstr "" -"Biasanya terdapat lebih banyak peringatan daripada kesalahan. Dengan " -"memberikan peringatan, JOSM memberitahukan Anda bahwa hal tersebut " -"kemungkinan adalah sebuah kesalahan, tetapi tidak selalu. Sehingga Anda akan " -"menggunakan keputusan Anda untuk melihat apakah hal tersebut merupakan " -"sebuah kesalahan atau tidak." - -# 093e8c3308314fc6b03fa35cb88a87a2 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:101 -msgid "" -"If you select a warning from the list and decide that it is not a problem, " -"click :guilabel:`Ignore` and it will be removed from the list." -msgstr "" -"Jika Anda memilih salah satu warning dari daftar dan memutuskan bahwa hal " -"tersebut bukanlah masalah, klik :guilabel:`abaikan` dan warning tersebut " -"akan di hapus dari daftar." - -# c61442b319f74850a7766a9a6d71cca3 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:104 -msgid "" -"Re-run the validation tool at any time by clicking the :guilabel:" -"`Validation` button." -msgstr "" -"Anda dapat menjalankan ulang *tool* validasi sewaktu-waktu dengan mengklik " -"tombol :guilabel:`Validasi`" - -# a8a71245b2d4427a81a54a4be254a9e0 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:108 -msgid "3. Common validation warnings" -msgstr "3. Peringatan Umum" - -# c83e2c12a4974f7f8f9afcba30c55bdc -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:111 -msgid "Ways that are not closed" -msgstr "Garis yang tidak tertutup" - -# c3122e4bc740459e978bf7f0b89a56c3 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:112 -msgid "" -"This is usually a line that does not form a polygon. Common examples are " -"buildings where the first node does not meet the last node." -msgstr "" -"Biasanya merupakan garis yang tidak membentuk sebuah poligon. Contoh umumnya " -"adalah gedung dimana titik pertama tidak bertemu dengan titik akhir." - -# a5197d3fb75045d7bbc55d2794ab1cd9 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:118 -msgid "" -"To fix this, select both nodes and go to :menuselection:`Tools ‣ Merge " -"Nodes` to connect them." -msgstr "" -"Untuk menyelesaikan masalah ini, pilih kedua titik dan pilih :menuselection:" -"`Alat ‣ Gabungkan Node` untuk menyambung kedua titik tersebut." - -# 5dc288b4ebfd4654818a0fead08889ca -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:122 -msgid "Crossing buildings (overlapping buildings)" -msgstr "Bangunan yang bertampalan" - -# 42e42d97072e48158c79aa149ebf2bd7 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:124 -msgid "This means that buildings are overlapping each other." -msgstr "" -"Biasanya merupakan bangunan yang saling bertumpang tindih satu sama lain." - -# 68af1ce1137f4ec6879c01bf7af23e54 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:129 -msgid "" -"To fix this, move the nodes of one of the buildings outside of the other " -"building. It is possible for two buildings to share nodes, if the buildings " -"share a common wall. But two buildings cannot overlap with one another." -msgstr "" -"Untuk menyelesaikan masalah ini, geser titik dari salah satu gedung ke arah " -"luar dari gedung lain. Alternatif lain adalah kedua bangunan tersebut saling " -"berbagi titik, jika bangunan tersebut saling berbagi dinding. Tetapi kedua " -"bangunan tidak boleh saling bertampalan satu sama lain." - -# 1b8b281a76e942a1abefe38753523d75 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:134 -msgid "Untagged nodes or ways" -msgstr "Node atau garis yang belum memiliki tag" - -# f94920b3922b4b719a49a85310138928 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:136 -msgid "" -"If someone draws a point or a line but forgets to give it any tags, then it " -"is useless, because it does not mean anything." -msgstr "" -"Jika seseorang menggambar titik atau garis tetapi lupa untuk memberikan " -"beberapa *tag*, kemudian titik atau garis yang digambar menjadi tidak " -"berguna, karena bila objek yang digambar namun tidak memiliki *tag* maka " -"objek tersebut tidak bisa ditampilkan karena tidak memiliki identitas." - -# 48763246d27c466887ad2c809ed9d5ba -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:142 -msgid "" -"To fix this, apply tags to the object to identify it, or delete it if it is " -"a mistake." -msgstr "" -"Untuk menyelesaikan ini, pilih objek yang tidak mempunyai tag dan masukkan " -"presets yang sesuai, atau hapus itu jika merupakan kesalahan." - -# caeb5c7fbb374eb49c060fc187c29ff9 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:146 -msgid "End node near another way" -msgstr "Titik garis akhir berdekatan dengan garis lain" - -# 557c180e0a7d42f2b007bf89decef3a0 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:148 -msgid "" -"If a line ends very close to another line but does not connect, this raises " -"a warning." -msgstr "" -"Jika sebuah garis terletak sangat dekat dengan garis lain namun tidak " -"terhubung, akan menimbulkan peringatan." - -# 59fee31bd6f542298f65cfa76e30b38f -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:151 -msgid "" -"Many times this warning is not important, but it helps to find road " -"intersections that are supposed to connect but do not." -msgstr "" -"Seringkali peringatan ini tidak terlalu penting, namun cukup membantu bila " -"kita ingin mencari persimpangan jalan yang seharusnya terhubung namun tidak " -"terhubung." - -# 8e4040bc2d204732bc65104d3b7c8496 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:158 -msgid "Crossing ways" -msgstr "Garis yang saling berpotongan" - -# 895ad2114ef44baab7299d8e1d0dabb7 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:160 -msgid "" -"Lines that cross other lines without being connected will raise warnings. " -"Many times this is not a problem, because the crossing ways are intentional " -"- such as in the case of bridges, or streets and rivers that cross landuse " -"polygons. However, it is sometimes helpful to find errors." -msgstr "" -"Merupakan peringatan yang muncul akibat jalur berpotongan. Sebuah garis yang " -"berpotongan dengan garis lain tanpa tersambung dapat memunculkan peringatan. " -"Hal ini juga bisa saja tidak menjadi masalah, karena jalur yang berpotongan " -"bisa saja disengaja, seperti pada kasus jembatan, atau jalan dan sungai yang " -"berpotongan dengan poligon *landuse*. Akan tetapi, hal ini terkadang " -"membantu, untuk menemukan kesalahan." - -# 24db47639a6e46e8b555b392a2b41925 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:170 -msgid "" -"OSM depends on people correcting and editing mistakes. Editing and " -"validating data is important for improving maps. If you do not have time to " -"get in the field with a GPS or trace imagery, validating objects and " -"attribute data is a good way to contribute." -msgstr "" -"OpenStreetMap bergantung pada orang yang memperbaiki dan mengedit kesalahan. " -"Editing dan validasi data penting untuk meningkatkan peta. Jika Anda tidak " -"mendapatkan cukup waktu untuk survei ke lapangan dengan GPS atau mendigitasi " -"citra, validasi objek dan atribut data merupakan cara terbaik untuk " -"berkontribusi." - -# a869a5fc18184f638f8855e2c3655859 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:177 -msgid "4. Using the tasking manager" -msgstr "4. Tasking Manager" - -# 98b133611eae4084afa90d1ef3c229cd -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:179 -msgid "" -"The OSM Tasking Manager is a tool that mappers can use to sort an area into " -"a grid, and work together to map in an organised way. Apart from being more " -"organised, the tasking manager is also one way to avoid editing conflicts, " -"because it helps prevent more than one person from editing the same area at " -"the same time." -msgstr "" -"HOT Tasking Manager merupakan sebuah *tool* atau media dimana pembuat peta " -"dapat membagi sebuah daerah menjadi beberapa grid, lalu dapat bekerja " -"bersama pembuat peta lainnya untuk memetakan daerah tersebut dengan cara " -"yang lebih terorganisir. Selain lebih terorganisir, tasking manager juga " -"merupakan salah satu cara untuk menghindari konflik, karena tidak " -"memungkinkan lebih dari satu orang memetakan satu area yang sama." - -# 36bc42d52d0e4105beb89b62fdc065e2 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:185 -msgid "" -"One consistent challenge is coordinating field and/or remote workers to map " -"an area together. To help address this, HOT has developed the Tasking " -"Manager to make it easier for administrators to define the areas of mapping " -"interest and to delegate workers. The idea behind this tool is that if there " -"is an area, let’s say a city, that we want to map, we can coordinate between " -"people mapping on the ground and others mapping remotely with satellite " -"imagery, This tool allows us to create a grid of the entire area. " -"Collaborators select blocks in the grid that they plan to map, and when they " -"finish, they mark the area as complete. In this way a team of many people " -"can coordinate to map the entire grid." -msgstr "" -"Satu tantangan utama adalah ketika harus mengkoordinasikan para pembuat peta " -"dari berbagai area untuk bekerja membuat peta bersama-sama untuk satu " -"daerah. Untuk membantu memecahkan permasalahan ini, HOT telah mengembangkan " -"sebuah *tool* Tasking Manager untuk mempermudah administrator untuk " -"menentukan area yang perlu dipetakan dan untuk mendelegasikan pembuat peta. " -"Ide dibalik perangkat ini adalah apabila ada suatu area, misalnya sebuah " -"kota, yang ingin dipetakan, dan sudah ada beberapa orang yang melakukan " -"pemetaan di lapangan, dan terdapat beberapa orang yang memetakannya dari " -"jarak jauh menggunakan citra satelit. Perangkat ini dapat membuat sebuah " -"grid untuk area tersebut. Para pelaku pemetaan di area tersebut dapat " -"memilih sebuah kotak pada grid yang ingin dipetakan, dan ketika mereka " -"selesai memetakannya, mereka dapat menandai kotak tersebut sebagai daerah " -"yang sudah selesai dipetakan. Dengan cara ini, sebuah tim yang berisi banyak " -"orang yang tersebar di berbagai daerah dapat berkoordinasi bersama untuk " -"menyelesaikan pemetaan pada grid tersebut." - -# ac5d07d10df5447aadaea55c6470b271 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:198 -msgid "To see how the tasking manager works, let’s take a closer look." -msgstr "" -"Untuk melihat bagaimana tasking manager bekerja, marilah kita lihat lebih " -"dekat." - -# 3c3672af16a143f2af8f3f884f27add2 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:200 -msgid "" -"Open your internet browser and go `here `_. You " -"will see a page like this:" -msgstr "" -"Bukalah browser internet Anda dan buka `situs `_. " -"Anda akan melihat sebuah halaman seperti ini:" - -# f6cc35b9a0ff41bea6ab22aa4e2a10e5 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:206 -msgid "Click :guilabel:`login to OpenStreetMap`." -msgstr "Klik :guilabel:masuk ke OpenStreetMap`." - -# c9f1b29fbb4d4f589169fa7e7565040e -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:208 -msgid "" -"Here you must agree to allow this application some access to your OSM " -"account. To do so, click :guilabel:`Save Changes`." -msgstr "" -"Disini Anda harus menyetujui untuk memperbolehkan aplikasi ini mendapatkan " -"akses kedalam akun OSM anda. Jika Anda setuju, klik :guilabel:`Simpan " -"Perubahan`." - -# 1e4fd8f713794b479df4dd98c2ec065a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:214 -msgid "" -"On the left is a list of current mapping tasks. These are different places " -"in the world that people are coordinating to map." -msgstr "" -"Pada bagian kiri Anda akan melihat daftar proyek-proyek pemetaan yang ada " -"saat ini. Pada daftar tersebut berisi proyek-proyek dari berbagai negara " -"yang berbeda dimana mereka melakukan koordinasi untuk melakukan pemetaan." - -# 17d4e20db8f84a709922f8865db1a2a0 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:220 -msgid "Click on one of the projects to see more information about it." -msgstr "Klik pada salah satu proyek untuk melihat informasi lebih lanjut. " - -# ba933a94123c4276b3b56ceaac8927c7 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:225 -msgid "" -"This page shows you everything you need to know about the project. On the " -"left side of the page is a description of the mapping project and how it is " -"being organised. You can click on the different tabs to get more " -"information. On the right side is a grid showing the area to be mapped. Red " -"grid squares have been completed, green squares have been completed and " -"checked by another person, and the remaining squares still need to be mapped " -"or are being worked on." -msgstr "" -"Halaman ini menunjukkan semua hal yang Anda perlu ketahui mengenai proyek " -"tersebut. Pada sebelah sisi kiri halaman adalah sebuah deskripsi dari proyek " -"pemetaan tersebut dan bagaimana mengaturnya. Anda dapat klik pada beberapa " -"tab yang ada untuk melihat informasi lebih lanjut. Pada sisi kanan terdapat " -"sebuah grid yang menunjukkan area yang sedang dipetakan. Kotak grid yang " -"berwarna merah memiliki arti bahwa daerah tersebut telah selesai dipetakan, " -"kotak berwarna hijau telah selesai dipetakan dan telah dilakukan pengecekan " -"oleh orang lain dan divalidasi datanya, kotak dengan pinggiran berwarna " -"kuning berarti sedang ada orang lain yang mengerjakan peta pada area " -"tersebut, sedangkan kotak kosong lainnya belum ada atau belum selesai " -"dipetakan." - -# fd933d8d73a04cd78c106be259e523b8 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:234 -msgid "" -"Click on the :guilabel:`Activity` tab to see activity for this task. The :" -"guilabel:`Stats` tab shows various users and their contributions." -msgstr "" -"Klik pada tab :guilabel:`Aktifitas` untuk melihat aktifitas dari proyek " -"tersebut. Tab :guilabel:`Status` memperlihatkan jumlah orang yang turut " -"membantu dan juga kontribusi mereka." - -# c2ba08f792824dd1a8a99ca83df06a0a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:237 -msgid "" -"To claim a grid square to work on yourself, click :guilabel:`Start " -"contributing` on the :guilabel:`Instructions` tab, or simply click an " -"unclaimed square on the map and then click :guilabel:`Start mapping`." -msgstr "" -"Untuk menetapkan grid yang ingin Anda kerjakan, klik :guilabel:`Mulai " -"Berkontribusi` pada tab :guilabel:`Petunjuk`, atau klik area yang belum " -"dikerjakan oleh orang lain dan kemudian klik :guilabel:`Mulai memetakan`." - -# 9a6aa155d59e44a1bcf70af38f83f59c -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:244 -msgid "" -"Next you see a view of the square that you have chosen to map. Click the " -"button on the left to open the area up for editing with JOSM, iD, Potlatch 2 " -"or create a Field Paper." -msgstr "" -"Disini Anda dapat melihat sebuah kotak yang Anda inginkan untuk dipetakan. " -"Klik tombol yang berada disebelah kiri untuk membuka area dan mengedit " -"menggunakan JOSM, Potlatch 2, atau membuat Field Paper." - -# 47e793da3e804954bfc8c1a6d6c9c645 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:253 -msgid "" -"If you plan to edit with JOSM, you need to enable the JOSM remote control " -"before you are able to launch the application from the Tasking Manager. To " -"do this, open JOSM and go the :menuselection:`Preferences` menu. Click on " -"the :guilabel:`Remote Settings` tab and check the box next to :guilabel:" -"`Enable remote control`. Restart JOSM." -msgstr "" -"Jika Anda berencana untuk mengedit menggunakan JOSM, Anda harus mengaktifkan " -"*remote control* di JOSM terlebih dahulu sebelum anda dapat menjalankan " -"aplikasi dari Tasking Manager. Untuk melakukan hal ini, buka JOSM dan pergi " -"ke menu :menuselection:`Preferensi`. Klik pada tab :guilabel:`Remote " -"Kontrol` dan centang kotak disamping :guilabel:`Memperbolehkan remote " -"kontrol digunakan`. Kemudian restart JOSM." - -# 1b8c11b19d504bb88e31a4dcc4fdc68d -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:263 -msgid "" -"Return to the Tasking Manager and choose :guilabel:`Edit with JOSM`. If you " -"have JOSM open and you correctly enabled the remote control, the grid area " -"of the map you selected will automatically be loaded into JOSM." -msgstr "" -"Kembali ke Tasking Manager dan pilih :guilabel:`Edit dengan JOSM`. Jika Anda " -"telah membuka JOSM dan Anda telah mengaktifkan remote control dengan benar, " -"area pada grid yang Anda ingin edit akan muncul dengan otomatis pada JOSM." - -# 4402b66b1ce540449cb95e389195610e -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:267 -msgid "" -"Next you may edit the area using the instructions provided in the project " -"information. Usually tasks will be to trace certain features using imagery, " -"such as buildings and roads. Alternatively, tasks might be set to map in " -"more detail on the ground." -msgstr "" -"Sekarang Anda dapat mengedit area tersebut menggunakan instruksi yang " -"tersedia pada informasi proyek. Biasanya setiap proyek akan mendigitasi " -"fitur tertentu menggunakan citra satelit, seperti bangunan dan jalan. " -"Alternatif lain, sebuah proyek akan disediakan sebuah peta yang lebih jelas." - -# ac30b3b36c0844f089962864d25582c1 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:272 -msgid "" -"When you are finished you will upload your edits and then return to the " -"Tasking Manager to add a comment about your work. If you finish the grid " -"square, click :guilabel:`Mark task as done`." -msgstr "" -"Ketika Anda sudah selesai anda harus mengupload hasil digitasi anda dan " -"kemudian kembali ke Tasking Manager untuk menambahkan komentar terkait " -"dengan pekerjaan Anda. Jika sudah anda selesai mengerjakan sebuah kotak, " -"klik :guilabel:`Tandai task sudah selesai`." - -# 483749408bff4153a374e62632dfaf26 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:276 -msgid "" -"If you are unable to complete the task, click :guilabel:`Unlock` to make the " -"task available again for other mappers." -msgstr "" -"Jika Anda tidak dapat menyelesaikan pekerjaan, klik :guilabel:`Buka kunci` " -"untuk membuat pekerjaan yang telah Anda kerjakan dapat dikerjakan oleh orang " -"lain." - -# 499ddce2ac4e4da8a13d1014bf077d2a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:282 -msgid "" -"When you finish an area, the grid square will turn yellow on the map to " -"indicate that it is done. Someone else will then look at your work to make " -"sure it is good, and if they agree that you’ve completed the square well, " -"the grid square will turn green, meaning it is complete!" -msgstr "" -"Ketika Anda selesai mengerjakan sebuah area, kotak akan berubah menjadi " -"warna kuning untuk mengindikasikan bahwa daerah tersebut sudah selesai " -"dikerjakan. Orang lain akan melihat dan memvalidasi pekerjaan Anda untuk " -"memastikan bahwa apa yang Anda kerjakan sudah benar, dan ketika mereka " -"setuju dengan apa yang Anda kerjakan, kotak akan berubah menjadi warna " -"hijau, yang berarti telah benar-benar selesai!" - -# fcab89290b754a888830648c66ae0bcc -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:289 -msgid "5. Editing tips" -msgstr "5. Tips Editing" - -# 312eaca0638f4747b0a87066773f48ca -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:291 -msgid "" -"In this section we will go over some common mistakes in JOSM and provide " -"some editing tips for making your maps great!" -msgstr "" -"Pada bagian ini, kita akan menjelaskan beberapa kesalahan umum di JOSM dan " -"menyediakan beberapa tips mengedit untuk membuat peta anda menjadi lebih " -"baik! " - -# d8eaadb81a0248298d05d04ea3f141fc -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:295 -msgid "Some objects should not connect" -msgstr "Beberapa objek sebaiknya tidak saling terhubung" - -# b61ee0d6a9f04bcaba828f4792eed5ed -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:297 -msgid "" -"When you are creating polygons and lines that are not supposed to be " -"connected, make sure that they are not merged together by sharing a node. " -"For example, highway nodes should not be snapped to buildings, because no " -"one likes a road that leads directly into a wall! If you want to disentangle " -"two or more obejcts that share the same node, select the node and press :kbd:" -"`G`." -msgstr "" -"Ketika anda membuat poligon dan garis, mereka sebaiknya tidak saling " -"terhubung, pastikan mereka tidak terhubung oleh satu titik. Sebagai contoh, " -"titik jalan raya sebaiknya tidak menempel pada bangunan, karena tidak ada " -"jalan yang menempel pada sebuah dinding! JIka Anda ingin memisahkan dua atau " -"lebih objek yang saling berbagi node yang sama, pilih node dan klik :kbd:`G`." - -# 079b16d8f0c14a8bbfdf5a12e89f747f -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:311 -msgid "But, some objects should connect" -msgstr "Tetapi, beberapa objek harus terhubung" - -# 70004f548ae346609646688e809d10a0 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:313 -msgid "" -"However, some objects SHOULD connect! Road intersections should always be " -"snapped together. If two roads do not share a common node, then the computer " -"has no way of knowing that the roads actually connect to each other." -msgstr "" -"Bagaimanapun, beberapa objek HARUS terhubung! Persimpangan jalan harus " -"selalu terhubung. Jika dua jalan tidak terhubung pada satu titik, maka " -"komputer tidak akan mengetahui bahwa jalan tersebut sebenarnya saling " -"terhubung satu sama lain." - -# cf79d79615da4eeab76349bfcf2b93ef -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:322 -msgid "Overlapping objects" -msgstr "Objek yang saling bertumpang tindih" - -# 4e4567d74b604197aec6be6f869e04d1 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:324 -msgid "" -"A common error is to have overlapping polygons when the objects they " -"represent do not overlap in real life. A building cannot overlap another " -"building. This mistake is commonly made with buildings and landuse polygons. " -"For example, a polygon drawn to represent a park outside a building should " -"not overlap with the building. Instead it should be drawn next to the " -"building. There are some exceptions to this rule, such as schools. Within a " -"school yard you might identify individual buildings using polygons, yet you " -"also might want to create a polygon around the entire school yard. In this " -"case it is fine for the polygons to overlap, but the rule to follow here is " -"to make sure that the buildings are completely inside the landuse polygon." -msgstr "" -"Salah satu kesalahan umum adalah poligon yang saling overlay ketika objek " -"yang digambarkan tidak bertumpukan di keadaan sebenarnya. Sebuah bangunan " -"tidak dapat bertumpukan bangunan lainnya. Kesalahan ini umumnya terjadi " -"dengan poligon bangunan dan poligon penggunaan tanah. Sebagai contoh, sebuah " -"poligon yang dibangun untuk menggambarkan taman diluar bangunan sebaaiknya " -"tidak saling bertumpukan dengan bangunannya. Seharusnya digambar di sebelah " -"bangunannya. \n" -"Terdapat beberapa pengecualian pada aturan ini, misalnya sekolah. Di dalam " -"halaman sekolah mungkin Anda ingin mengidentifikasi setiap bangunan " -"menggunakan poligon, tetapi mungkin Anda juga ingin membuat sebuah poligon " -"yang meliputi seluruh halaman sekolah. Dalam kasus seperti ini, poligon " -"diperbolehkan untuk saling overlap, tetapi aturannya adalah pastikan bahwa " -"bangunan-bangunan secara menyeluruh berada dalam poligon penggunaan lahan. " - -# defca5d0e79246efaf4bf06fbd573800 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:344 -msgid "" -"We all make mistakes, and as you map more you will make less mistakes! Just " -"remember that even if you upload data that contains mistakes, it is simple " -"to fix your mistakes and upload the change again. This is what is great " -"about OSM, you can always make it better!" -msgstr "" -"Kita semua membuat kesalahan, dan jika Anda memetakan lebih banyak maka " -"kesalahan akan semakin berkurang! Hanya ingat, jika Anda mengupload data " -"yang memiliki kesalahan, cara mudahnya adalah Anda hanya memperbaiki " -"kesalahan tersebut dan mengupload kembali perubahannya. Di sinilah hebatnya " -"OSM, Anda dapat selalu membuatnya lebih baik! " - -# 325bb6c4cb5c4ef4b7993a5febc68659 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:351 -msgid "6. Presets standardisation" -msgstr "6. Standardisasi Preset" - -# 76cc13a2549d44c0928d00fb17bf7d33 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:353 -msgid "" -"OSM is used around the world by speakers of many different languages. Any " -"feature in OSM can have whatever tags users choose. While this provides a " -"lot of flexibility, it is important that users worldwide agree on the same " -"tags to identify the same objects no matter what country they are located in." -msgstr "" -"OSM digunakan diseluruh dunia oleh berbagai macam orang dengan bahasa yang " -"berbeda-beda. Semua objek di OSM bisa mempunyai informasi *tag* yang " -"beraneka ragam sesuai dengan kebutuhan pengguna. Meskipun memberikan banyak " -"sekali fleksibilitas, penting bagi pengguna diseluruh dunia menyetujui *tag* " -"yang sama untuk mengidentifikasi objek tidak peduli dinegara mana mereka " -"berada." - -# 882c2af7cd1b4240ad2ecd92b476246b -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:358 -msgid "" -"For such purposes of standardisation, most tags in OSM are in British " -"English. An extensive list of standardised OSM tags is available on the OSM " -"Wiki `Map Features page `_." -msgstr "" -"Untuk tujuan standardisasi, beberapa tag di OSM menggunakan Bahasa Inggris. " -"Beberapa daftar *tag* OSM yang sudah distandardisasikan tersedia di halaman " -"Wiki OSM `Map Features `_." - -# 0abc1430269a4fc189d3d08d0df6cd55 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:362 -msgid "" -"When users enter tags manually in JOSM or another editor, it is common to " -"make spelling or other mistakes, particularly for beginners. For this " -"reason, it is a good idea to use the presets menu, which uses forms that " -"prevent incorrect tags from being entered." -msgstr "" -"Ketika pengguna memasukkan *tag* manual di JOSM atau editor lain, sangatlah " -"umum untuk terjadi kesalahan dalam penulisan *tag* atau kesalahan lain, " -"khususnya untuk pemula. Untuk alasan ini, adalah ide yang bagus untuk " -"menggunakan menu preset, yang menggunakan format formulir untuk mencegah " -"ketidaksengajaan pemberian *tag* yang salah." - -# a57ff8c0b6ae4abd8e2a70cc94cf6d93 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:367 -msgid "Using standardised tags aids in:" -msgstr "Menggunakan *tag* yang sudah distandardisasi membantu untuk:" - -# a0b1bac3dc874d5fa929cb2878aee756 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:369 -msgid "Assuring data consistency and stability" -msgstr "Menjamin stabilitas konsistensi data" - -# 85fb220ea57a45baa7851e1191e35bfd -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:370 -msgid "Easier data search and analysis" -msgstr "Memudahkan pencarian dan pengolahan data" - -# 009cd83e2d854223944ea3c6ecca0e56 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:371 -msgid "Setting benchmarks for improvement" -msgstr "Mengatur tolak ukur untuk peningkatan" - -# ebeb0174d8814c1dbb6ed2531911851d -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:372 -msgid "Data validation" -msgstr "Validasi data" - -# 7b720c6a695b43a6a185d5d636bfd44c -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:373 -msgid "Map rendering on OSM website" -msgstr "Penggambaran peta di situs OSM" - -# f86dc45f4465481ab5f5b81f215c6b0a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:377 -msgid "7. KeepRight" -msgstr "7. KeepRight" - -# d336e45414534b6ea4f45d0be13ce6f5 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:379 -msgid "" -"The KeepRight website is another useful validation tool for OSM. Open your " -"web browser and head to http://keepright.at." -msgstr "" -"Situs KeepRight merupakan salah satu *tool* validasi yang berguna untuk OSM. " -"Buka *browser* anda dan pergi ke http://keepright.at." - -# 0dcd50f6bf8c41b0929b8499071f9d48 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:382 -msgid "" -"If needed, switch the site into Indonesian by choosing :guilabel:`id` from " -"the drop-down box in the in the upper right." -msgstr "" -"Jika menginginkan, ganti bahasa situs kedalam Bahasa Indonesia dengan " -"memilih :guilabel:`id` dari daftar pilihan di sebelah kanan atas." - -# e5d44adf208243bbbcf033a6b36fbe45 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:388 -msgid "" -"Click :guilabel:`Data Checks for Asia` to check OSM data in Asia. This will " -"open up a slippy map with errors displayed on it." -msgstr "" -"Klik :guilabel:`Pengecekan data untuk Asia` untuk mengecek data OSM di Asia. " -"Ini akan membuka peta dengan kesalahan yang ditampilkan pada peta." - -# d8e20479b5bd4f17afdc4a3e90b7f019 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:391 -msgid "Navigate to your area of interest by using the zoom and pan functions." -msgstr "" -"Arahkan ke area yang diinginkan dengan menggunakan fungsi perbesar dan geser." - -# 202d594747a2479f97481b58dd085831 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:397 -msgid "" -"The types of errors are listed to the left of the map. Get more details " -"about each error by clicking on the icons which hover above the map." -msgstr "" -"Tipe-tipe dari kesalahan yang ada terdapat pada bagian kiri dari peta. Untuk " -"melihat lebih detail mengenai deskripsi dari kesalahan yang ada, bisa dengan " -"mengklik ikon yang ada di peta. " - -# 518fe215967a46e09177bcea8245347d -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:404 -msgid "" -"When you see an error in your area of interest, the next step is to fix it. " -"Click on the links to one of the editors (JOSM, Potlatch, or iD) to open " -"this data in the editor. Note that to edit in JOSM you must have the JOSM " -"Remote Control Enabled (as described in the :ref:`Tasking Manager section " -"` above)." -msgstr "" -"Ketika Anda melihat kesalahan di peta, tahapan berikutnya adalah " -"memperbaikinya. Klik pada link salah satu editor (JOSM, Potlatch, atau iD) " -"untuk membuka data ini di editor. Harap perhatikan bahwa untuk mengedit di " -"JOSM anda harus mengaktifkan Remote Control di JOSM (seperti yang dijelaskan " -"dibagian :ref:`Tasking Manager ` diatas)." - -# 8bdc69670fe24364b28babf41b521a6a -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:411 -msgid "" -"We recommend that the editing is done in JOSM, because its editing features " -"are more complete. Note that JOSM must be open (with remote control enabled) " -"in order to connect with the KeepRight website." -msgstr "" -"Kami untuk melakukan editing di JOSM, karena fitur editing yang ada lebih " -"lengkap. Harap diperhatikan bahwa JOSM harus sudah dibuka terlebih dahulu " -"(dengan remote control yang sudah diaktifkan) agar bisa terkoneksi dengan " -"situs KeepRight." - -# 457ef6b2950448599b31bd71b32349d8 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:419 -msgid "" -"Use JOSM (or another editor) to fix the errors that you find on the " -"KeepRight website. After fixing them, return to the site and select :" -"guilabel:`ignore temporarily`. Add a comment and click :guilabel:`save`." -msgstr "" -"Gunakan JOSM (atau editor lain) untuk memperbaiki kesalahan yang Anda " -"temukan di situs KeepRight. Setelah memperbaiki, kembali ke situs dan pilih :" -"guilabel:`abaikan sementara`. Tambahkan komentar dan klik :guilabel:`simpan`." - -# b4e4d9c786d24fefb44da390cbb84760 -#: ../../source/training/old-training/intermediate/osm/302-quality-assurance.rst:424 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Lanjut ke modul berikutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/303-dealing-with-conflicts.po b/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/303-dealing-with-conflicts.po deleted file mode 100644 index 41f4452b..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/303-dealing-with-conflicts.po +++ /dev/null @@ -1,356 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2017-09-23 19:18+0000\n" -"Last-Translator: mahardika fadmastuti \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# e370069a54594060adb9f311000dd150 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:6 -msgid "Module 3: Dealing With Conflicts" -msgstr "Modul 3: Menyelesaikan Konflik" - -# c0779ffdcb6d4d84a0e51ea8c0e4dda2 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# c7fa09aff8f0478c84e049eeb9f66ea6 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:10 -msgid "Identify conflicts" -msgstr "Mengenali Konflik" - -# d9d6c96d1d8041f2b4775aa6a5361aec -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:11 -msgid "Understand why conflicts occur" -msgstr "Memahami bagaimana konflik dapat terjadi" - -# 97c92792785e40b89182c56ecaf81202 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:12 -msgid "Solve conflicts" -msgstr "Menyelesaikan konflik" - -# 93b94a7eef624523a307538a7b132f09 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:14 -msgid "" -"Sometimes you are working in JOSM and when you upload all of your beautiful " -"edits you get a nasty message complaining about a conflict." -msgstr "" -"Terkadang ketika Anda sedang bekerja di JOSM dan ketika Anda mengupload peta " -"yang telah diedit, Anda mendapatkan pesan seperti ini: " - -# bf0c1dc7c9cd4f699395d849f38e119c -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:21 -msgid "" -"What happened is essentially this: You downloaded data, which included a " -"point which we will call Node A. Then while you were editing, another user " -"else also downloaded Node A, changed it, and saved the changes back on " -"OpenStreetMap. Now when you try to upload your version of Node A, it is " -"different from the one saved on OSM. Therefore JOSM doesn’t know which " -"version of Node A should be saved." -msgstr "" -"Hal yang terjadi adalah Anda mendownload sekelompok data yang termasuk " -"sebuah point/node kita sebut Node A. Kemudian saat Anda sedang mengedit, ada " -"orang lain yang juga mendownload Node A, mengubahnya, dan menyimpan kembali " -"perubahannya pada OpenStreetMap. Sekarang saat Anda mencoba mengupload Node " -"A dengan versi Anda akan berbeda dengan yang tesimpan pada OSM. Oleh karena " -"itu JOSM tidak tahu versi mana dari Node A yang harus disimpan." - -# be160b8622994157b5d3abc6a62b5d4f -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:30 -msgid "1. Conflicts" -msgstr "1. Konflik" - -# 9c96aff9ea9f436989479bb28d2451ad -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:32 -msgid "" -"Sometimes, JOSM is able to figure out what to do with conflicts on its own, " -"and it will give you a message like this:" -msgstr "" -"Terkadang, JOSM mampu mencari tahu apa yang harus dilakukan pada konfliknya, " -"dan JOSM akan memberi Anda sebuah pesan seperti:" - -# 417c58781286473dbc6b16e8c934a39a -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:38 -msgid "" -"This means that JOSM has automatically decided that items in your local " -"dataset will not be uploaded to the main server because they have already " -"been deleted by another user." -msgstr "" -"Pesan tersebut menjelaskan bahwa JOSM telah otomatis memutuskan bahwa item " -"dalam dataset lokal Anda tidak akan di-upload ke server utama karena mereka " -"telah dihapus oleh pengguna lain." - -# 1837fb3503ac444fa4c5f6f48b3b1b30 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:42 -msgid "" -"In some conflicts, however, there is no easy action for JOSM to take and so " -"it leaves the decision up to the user to determine what to do. This means it " -"is up to you to resolve the conflicts." -msgstr "" -"Namun dalam beberapa konflik, tidak ada cara mudah untuk JOSM mengatasinya " -"dan keputusan pengguna dibutuhkan untuk menentukan apa tindakan yang " -"terbaik. Artinya, ini adalah keputusan Anda untuk memperbaiki konflik " -"tersebut." - -# 4fd5fa46a97943589b141ba1be1a061c -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:50 -msgid "" -"*This tells you to look at all of your conflicts in Layer 1 in the Dialog " -"List box.*" -msgstr "" -"*Pesan ini memberitahukan Anda untuk melihat semua konflik Anda pada Layer 1 " -"pada kotak Daftar Dialog.*" - -# 650309a1e9e54ddda1f76ffb737f7c8c -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:56 -msgid "" -"*This window provides you with a warning as to whether you are likely to " -"experience a conflict with your edits. If you check on the server you will " -"be able to fix the editing issues that would arise.*" -msgstr "" -"*Jendela ini menyediakan sebuah peringatan yang kemungkinan akan Anda hadapi " -"ketika konflik editing terjadi. Jika Anda memeriksa server Anda mampu untuk " -"memperbaiki masalah editing yang akan muncul.*" - -# 9b5acd01a2964c96aeb920d40c4a3638 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:64 -msgid "" -"*This warning tells you that JOSM failed to delete a node due to it still " -"being referenced in a way. In order to remedy this, the user has to go back " -"into JOSM and resolve the conflict before uploading the data.*" -msgstr "" -"*Peringatan ini menunjukan bahwa JOSM gagal untuk menghapus sebuah node " -"karena node tersebut masih terhubung dengan sebuah garis. Untuk mengatasi " -"hal ini, pengguna harus kembali ke JOSM dan menyelesaikan konflik sebelum " -"melakukan upload data.*" - -# 8e2f724e215644beac0a02833102f2ea -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:70 -msgid "2. Conflict resolution" -msgstr "2. Cara Menyelesaikan Konflik" - -# 1e7c7e813a0944049ecfe86e88c410b9 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:72 -msgid "" -"The process of resolving a conflict is simple, although it can appear " -"confusing at first in JOSM. Basically, for every conflict JOSM will present " -"you with two choices - your version of an object and the one that is on the " -"server. You need to choose whether to keep your version, or whether the new " -"version on the server should remain." -msgstr "" -"Proses dalam menyelesaikan konflik cukup sederhana di JOSM, walaupun awalnya " -"membingungkan. Pada dasarnya, untuk semua konflik yang terjadi JOSM akan " -"menyediakan dua pilihan - objek versi Anda dan satu lagi versi orang lain " -"yang berada di server. Anda harus memilih apakah ingin tetap menggunakan " -"versi Anda atau versi baru di server." - -# b7ba73c59f7c4c2aa54d428c97eab902 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:79 -msgid "" -"You might think, “of course my version is going to be better!”. And maybe " -"you’re right. But think back to our example at the start of this module. " -"Perhaps while you were busy editing, another mapper added a lot of " -"information to one of the nodes in your data set. If you choose your version " -"over their version, you will lose all of that valuable information that they " -"added. Hence you should consider keeping their version, or merging it with " -"your own." -msgstr "" -"Anda mungkin berpikir “tentu saja versi saya yang lebih baik” dan mungkin " -"Anda benar. Tetapi pikir kembali pada contoh di awal modul ini. Mungkin saat " -"Anda sedang sibuk mengedit data, pembuat peta yang lain menambahkan banyak " -"informasi pada salah satu node/titik yang ada di dalam dataset Anda. Jika " -"Anda memilih versi Anda dan bukannya versi mereka, Anda akan kehilangan " -"semua informasi berharga yang mereka tambahkan. Oleh karena itu Anda harus " -"mempertimbangkan tetap menggunakan versi mereka, atau menggabungkannya " -"dengan versi Anda sendiri." - -# ee683a96148f4ef59f14b15c94a0e6d0 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:88 -msgid "" -"When a conflict window pops up, it is usually best to choose the button :" -"guilabel:`Synchronize ... only`. You may need to do this for more than one " -"object, but it is best to resolve conflicts one at a time." -msgstr "" -"Ketika jendela konflik muncul, akan sangat baik untuk memilih tombol :" -"guilabel:`Hanya mensinkronkan ...`. Anda mungkin butuh melakukannya untuk " -"lebih dari satu objek, tetapi akan sangat baik untuk menyelesaikan konflik " -"sekaligus." - -# d129e028f5c546309f2149e6065f22ba -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:96 -msgid "" -"After clicking this button, a pop-up window will appear detailing the " -"conflict. The error message may look complicated, but it is not. You can see " -"what type of conflict you have from the following symbol in the top tab." -msgstr "" -"Ketika Anda klik tombol tersebut, akan muncul jendela baru yang yang " -"berisikan detail konflik Anda. Pesan konflik tersebut mungkin terlihat " -"rumit, namun sebenarnya sederhana. Anda akan tahu jenis konflik apa yang " -"Anda dapatkan dengan simbol di tab atas." - -# f6ca47a5ed694be198f15804eb8ce010 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:105 -msgid "" -"The conflict in our example refers to the properties, such as the location " -"and existence of the object. This is why the coordinates and deleted state " -"are listed." -msgstr "" -"Konflik dalam contoh ini mengacu pada properti, seperti lokasi dan " -"keberadaan objek. Inilah sebabnya mengapa ada daftar koordinat dan status " -"objek yang dihapus." - -# 76ba5cbe3f22449e94a43eabaad4b143 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:112 -msgid "Types of conflict are:" -msgstr "Jenis Konflik diantaranya:" - -# d76dbd15732a432db31025cf90505982 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:114 -msgid "**Properties**: Object has been moved (coordinates) or deleted" -msgstr "**Properti:** Objek telah dipindahkan (koordinat) atau dihapus" - -# 373dc84b56f24e25b73f7f516aa0ebe5 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:115 -msgid "**Tags**: Tags do not match" -msgstr "**Tag**: Tag tidak cocok" - -# abf338d11d3e4b979810764061566518 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:116 -msgid "**Nodes**: There is a differences in the list of nodes in two ways" -msgstr "**Node**: Ada perbedaan dalam daftar node dalam dua cara " - -# 80f7a434324940e2b984e833cfc14922 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:117 -msgid "**Members**: There is a difference in the list of members in a relation" -msgstr "**Anggota**: Ada perbedaan pada daftar anggota dalam relasi" - -# 5a452b0bd3284d359755a931dfaba7a8 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:119 -msgid "" -"Conflicts only appear with two different edits at a time. If there are three " -"or more conflicts, then a chain of conflicts will pop up. Therefore you have " -"to choose or merge with only two conflicts at a time. You can choose your " -"version, the other version or, at times, merge the two." -msgstr "" -"Konflik hanya muncul pada dua edit yang berbeda pada saat yang bersamaan. " -"Jika ada tiga atau lebih, maka rangkaian konflik akan bermunculan. Sedangkan " -"Anda hanya dapat memilih atau menggabungkan dua konflik pada saat yang sama. " -"Anda dapat memilih versi Anda, versi yang lain, ataupun menggabungkan " -"keduanya." - -# e737c410a6d94548a168a4480718b8d4 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:124 -msgid "" -"In our example we do not have the option of merging. Click on the first " -"column, or :guilabel:`My version` if you believe that your edits are " -"correct. Click on :guilabel:`Their version` if you think that the other " -"edits are better." -msgstr "" -"Dalam contoh ini Anda tidak memiliki pilihan untuk penggabungan. Klik pada " -"kolom pertama, atau :guilabel:`Versi saya` jika Anda yakin bahwa hasil " -"mengedit Anda lebih tepat. Klik pada :guilabel:`Versi mereka` jika Anda " -"berpikir bahwa versi mengedit orang lain lebih baik." - -# 64e59aaf49484f11bc45aef585eed8b4 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:133 -msgid "" -"Once you have selected which version you think is best, click :guilabel:" -"`Apply Resolution`." -msgstr "" -"Setelah Anda memilih versi mana yang menurut Anda paling baik, kemudian " -"klik :guilabel:`Terapkan Penyelesaian`." - -# 77b65b37bb66492aa30d7b92f4a1fa75 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:136 -msgid "You can open the Conflicts panel to see a list of conflicts." -msgstr "Anda dapat membuka panel Konflik untuk melihat daftar konflik." - -# a616307ea6e447c3a4ae8f89d9f759a0 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:141 -msgid "" -"The total number of unresolved conflicts is shown in the header. Select or " -"resolve a conflict by clicking on it. This is useful when you have many " -"conflicts to deal with." -msgstr "" -"Angka total konflik yang belum diselesaikan akan muncul diposisi yang paling " -"atas. Pilih atau selesaikan konflik dengan mengklik pada daftar tersebut. " -"Ini berguna ketika Anda mempunyai banyak konflik untuk diselesaikan." - -# 1ff6a8ebeae44eb78525d34a8f0f05d2 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:148 -msgid "You cannot upload your changes until this list is empty." -msgstr "" -"Anda tidak dapat mengupload perubahan Anda sampai jendela ini kosong atau " -"semua konflik telah terselesaikan." - -# 0e74d6da32a34c6d9c9601552ce879db -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:151 -msgid "3. Ways to avoid conflicts" -msgstr "3. Cara untuk Menghindari Konflik" - -# 795e17f22627456db05ad7b8d747c802 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:154 -msgid "Upload frequently" -msgstr "Upload hasil editan secara berkala" - -# 25454c0008a1418590b0185108256bee -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:156 -msgid "" -"To minimise the chance and number of conflicts it is important to upload " -"your edits regularly. Conflicts appear more frequently for those who tend to " -"save the area they are working on in their local computer and wait a while " -"to upload it. It is best to download the area you are working on, edit it " -"and then immediately upload it. The longer the time between downloading data " -"and uploading changes to that data, the more likely it is that someone has " -"edited something in the meantime." -msgstr "" -"Untuk meminimalisasi terjadinya sejumlah konflik, sangat dianjurkan untuk " -"mengupload editan Anda secara rutin. Konflik muncul lebih banyak bagi mereka " -"yang mengedit seluruh wilayahnya terlebih dahulu dan menunda untuk " -"menguploadnya. Hal yang terbaik adalah men-download wilayah yang Anda " -"kerjakan, edit, kemudian upload secepatnya secara berkala. Semakin lama " -"waktu antara mendownload data dengan mengupload perubahannya, maka semakin " -"besar kemungkinan seseorang telah mengedit/mengubah data tersebut pada saat " -"itu." - -# 1d4ce3cfbe0f47e7b1f0c15d9539dc05 -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:166 -msgid "Edit in the area you download" -msgstr "Mengedit pada Area yang Anda Dowload" - -# ebc354d5a91d40a1a3abe66487ed66dd -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:168 -msgid "" -"Editing in the specific area you have downloaded minimises the risk of " -"conflict. Make sure you do not edit outside of the area that you have " -"downloaded. You can easily see the areas outside your download area in JOSM, " -"because the background is made up of diagonal lines instead of being solid " -"black." -msgstr "" -"Mengedit di area yang spesifik mengurangi resiko konflik. Anda harus yakin " -"bahwa Anda tidak mengedit diluar area yang telah Anda download dan Anda bagi " -"berdasarkan Task Manager. Langkah ini dapat menghindari banyak pengguna " -"mengedit wilayah yang sama. Anda dapat dengan mudah melihat mana daerah luar " -"dari daerah yang Anda download di JOSM, karena latar belakang daerah luat " -"tersebut terdapat garis-garis diagonal, bukan hanya warna hitam." - -# c7a03ad596eb45c3915a4eefb4e4200d -#: ../../source/training/old-training/intermediate/osm/303-dealing-with-conflicts.rst:177 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Lanjutkan ke modul berikutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/304-creating-josm-file-presets.po b/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/304-creating-josm-file-presets.po deleted file mode 100644 index bf1c45e8..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/304-creating-josm-file-presets.po +++ /dev/null @@ -1,1081 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:39+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 0b36e4ae09614e848f2a20d0bb2048f1 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:6 -msgid "Module 4: Creating JOSM File Presets" -msgstr "Bab 4: " - -# b2b98d04a4ca408086fc9db41cef9db8 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 568c6ff602624fe69877f417b3c8c4c1 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:10 -msgid "Understand tags" -msgstr "Memahami tags" - -# 6e990147680346a4ba71ab0441d9790f -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:11 -msgid "Understand XML" -msgstr "Memahami XML" - -# 52c3a95b25d04d798bd49a082c123c92 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:12 -msgid "Understand keys and values" -msgstr "Memahami *keys* dan *values*" - -# 202c3920d0974601a11116ccb643d672 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:13 -msgid "Make presets" -msgstr "Membuat preset" - -# 4eb012d345204a8aabb04a51874cb8ee -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:14 -msgid "Put preset files into JOSM" -msgstr "Memasukkan file preset ke dalam JOSM" - -# 5982f106a90142ecbccf152c74b41185 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:15 -msgid "Apply new presets to an object" -msgstr "Menerapkan preset baru pada sebuah objek" - -# a60c170085174a24b262b3813ebcbbac -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:17 -msgid "" -"By now you probably have a good understanding of how objects are drawn in " -"JOSM, and how to add information to these objects to describe what they are. " -"You add attributes to a point, line or shape by attaching tags to it. By " -"using the JOSM presets menu, you can easily attach the correct tags to an " -"object by finding the type of object you want to create through a menu, and " -"then filling in information in a form. In this module we will review tags " -"and presets once more, and then learn how we can create our own presets " -"menus to use in JOSM." -msgstr "" -"Sekarang Anda mungkin telah memiliki pemahaman yang baik mengenai bagaimana " -"berbagai objek dapat digambar menggunakan JOSM, dan bagaimana Anda " -"menambahkan informasi ke sebuah objek dan menjelaskan apa objek-objek " -"tersebut. Anda menambahkan atribut kepada titik, gasir, atau berbagai bentuk " -"dengan memberikan tag kepada objek tersebut. Dengan menggunakan menu preset " -"pada JOSM, Anda dapat dengan mudah mencantumkan tag yang benar kepada sebuah " -"objek, kemudian Anda dapat mengisi informasinya ke dalam form yang ada. Pada " -"bab ini kita akan membahas kembali apa itu tag dan preset sekali lagi, dan " -"mempelajari bagaimana kita membuat menu preset kita sendiri pada JOSM." - -# 9efd6d5c45a04f50b0cc2f321a23872a -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:27 -msgid "1. Tags and presets" -msgstr "1. Tags dan presets" - -# 6be22fa7940e4a18b242ec5386e2c9ee -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:29 -msgid "" -"Remember that after you draw an object on the map in JOSM, you need to " -"attach tags in order to describe what it is, its name and any other " -"attributes. For example when you want to create a clothing shop with the " -"name “Some Clothing Shop”, you need two tags - one to describe the point as " -"a clothing shop, and one to hold the name. In JOSM, the tags are shown in " -"the Properties panel when an object is selected." -msgstr "" -"Anda tentunya ingat bahwa setiap kali Anda selesai menggambar sebuah objek " -"ke dalam peta di JOSM, Anda perlu menambahkan tag kepada objek tersebut agar " -"dapat mendeskripsikan apa objek tersebut, namanya, dan berbagai atribut " -"lainnya. Sebagai contoh ketika Anda mau membuat sebuah toko pakaian dengan " -"nama “Some Clothing Shop”, Anda membutuhkan dua buah tag – satu tag untuk " -"menjelaskan bahwa titik tersebut adalah sebuah toko pakaian, dan satu tag " -"lainnya untuk menempatkan nama dari toko tersebut. Pada JOSM, tag-tag " -"tersebut ditunjukkan pada jendela Properti ketika objek yang dimaksud " -"dipilih." - -# bf6130b0da94456ba78e69f6fce69ab7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:40 -msgid "" -"Tags consist of two parts, the **key** and the **value**. The key typically " -"defines the type of information you are attaching, and the value defines the " -"specific object. Here we have two tags, and hence two pairs of keys and " -"values." -msgstr "" -"Tag terdiri dari dua bagian, yaitu **key** dan **value**. Key biasanya " -"mendefinisikan tipe informasi yang Anda berikan, dan value mencantumkan " -"informasi yang lebih spesifik. Contohnya terdapat dua buah tag, yang terdiri " -"dari dua pasang yaitu key dan value." - -# 4a3f0832d938482b91431106e1be7d60 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:45 -msgid "**KEY = VALUE**" -msgstr "**KEY = VALUE**" - -# ce5a79e2ccd74033a0e8489cd0f88612 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:47 -msgid "**name = Some Clothing Shop**" -msgstr "**name = Some Clothing Shop**" - -# 182bc07303a14fd5a0905db80be1962f -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:49 -msgid "**shop = clothes**" -msgstr "**shop = clothes**" - -# 5ba9fc958ef44baaa3400f9c8492939b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:51 -msgid "" -"When we create a point with these tags, JOSM knows to display the icon like " -"this:" -msgstr "" -"Ketika kita membuat sebuah titik menggunakan tag ini, JOSM akan mengenalinya " -"dengan menampilkan ikon atau simbol seperti ini: " - -# 5c949b22e71648c2a9849c2dd7d2a31b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:57 -msgid "" -"And when we look at this on the `OpenStreetMap `_ " -"website, the object looks like this:" -msgstr "" -"Dan ketika kita melihat ini pada website `OpenStreetMap `_ , objek tersebut akan tampak seperti ini:" - -# 3595f7a8477e49cb9b7d1da84f9ed234 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:63 -msgid "" -"The reason this works is because we’ve applied the appropriate **tags**." -msgstr "" -"Hal ini dapat terjadi karena sebelumnya kita telah memasukkan **tag** yang " -"sesuai." - -# 5b1530e5ce5f43ec82774932bf374e63 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:65 -msgid "" -"Because OSM is so open, anybody can add any tags they want to anything. But " -"what happens when mappers in England disagree with mappers in Japan about " -"the best way to tag something? For example, it is important that all schools " -"have the same tag describing it as a school. If some people tag schools as " -"**amenity=school** but others tag them as **education=school**, it is a " -"problem. Hence, people must agree on how to tag places." -msgstr "" -"Karena OpenStreetMap sangat terbuka bagi umum, siapapun dapat menambahkan " -"tag yang mereka inginkan pada objek manapun. Namun bagaimana jika ada orang " -"di Inggris yang tidak setuju dengan orang di Jepang mengenai cara terbaik " -"dalam memberikan tag pada suatu objek? Sebagai contoh, sangat penting jika " -"semua sekolah memiliki tag yang sama yang mendeskripsikannya sebagai sebuah " -"sekolah. Jika beberapa orang ingin memberikan tag pada sekolah berupa " -"**amenity=school** namun beberapa orang lainnya ingin memberikan tag sebagai " -"**education=school**, ini bisa menjadi masalah. Oleh karena itu, kita semua " -"harus setuju mengenai bagaimana memberikan tag pada sebuah tempat." - -# 076067b922e84a4ea019241de4f59ce9 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:75 -msgid "" -"OSM has been around for many years now, so there is an accepted standard for " -"how to identify most types of locations, and those are listed on the Map " -"Features page on the OSM Wiki." -msgstr "" -"OpenStreetMap telah digunakan selama beberapa tahun terakhir, maka tentunya " -"sudah ada standar mengenai bagaimana mengidentifikasi sebagian besar jenis " -"lokasi, dan yang telah terdaftar dalam halaman Map Features pada Wiki OSM." - -# cca5828fdd97426ca4141aa682c58839 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:79 -msgid "http://wiki.openstreetmap.org/wiki/Map_Features" -msgstr "http://wiki.openstreetmap.org/wiki/Map_Features" - -# bb403e520873426493e3bb9365d3b96c -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:81 -msgid "" -"This web page has grown longer and longer over the years as people have " -"sought to map more and more things and have needed more tags to do so. It is " -"impossible to remember all of these tags, and quite a hassle to look them up " -"every time you need them. Hence, JOSM has a Presets menu which makes it much " -"easier to apply the correct tags to an object. With the Presets menu, we can " -"easily find the entry for school, enter information into a form and not have " -"to worry about whether the correct tag is **amenity=school** or " -"**education=school** or something else entirely." -msgstr "" -"Halaman situs ini telah berkembang selama beberapa tahun ini seiring dengan " -"semakin banyak orang yang memetakan semakin banyak objek dan merasa " -"membutuhkan tag untuk mendukung kegiatannya. Bisa dikatakan tidak mungkin " -"bagi kita untuk dapat mengingat semua tag yang ada, dan cukup merepotkan " -"bila kita harus melihat ke website setiap kali kita ingin memberi tag pada " -"objek. Oleh karena itu, JOSM memiliki sebuah menu Preset yang akan " -"mempermudah kita dalam memberikan tag yang benar kepada sebuah objek. Dengan " -"menu Preset, kita dapat dengan mudah menemukan tag untuk sekolah, memasukkan " -"informasi ke dalam form yang ada, dan tidak perlu khawatir mengenai mana tag " -"yang benar apakah **amenity=school** atau **education=school** atau yang " -"lainnya lagi." - -# 33271ccb1f5f415f886e1d40e887eaca -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:95 -msgid "" -"Notice that when you add attributes using the presets menu, the correct tags " -"are automatically added in the Properties menu on the right." -msgstr "" -"Kenali bahwa ketika Anda menambahkan atribut menggunakan menu preset, maka " -"tag yang benar secara otomatis ditambahkan pada bagian menu Properti di " -"sebelah kanan layar. " - -# d1cbd8614b3b4af9ac71718531c269d7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:98 -msgid "" -"JOSM comes with most of the presets that you will need already loaded, but " -"sometimes you may want to add your own presets to create tags for the " -"specific type of data you are collecting. The remainder of this module will " -"explain how to create a custom Presets menu." -msgstr "" -"JOSM telah menyediakan sebagian besar preset yang Anda butuhkan, namun " -"terkadang Anda mungkin mau menambahkan preset yang Anda inginkan untuk " -"membuat tag untuk beberapa tipe data yang spesifik. Pada chapter ini akan " -"dijelaskan mengenai bagaimana membuat sebuah menu Preset sendiri. " - -# 836d7cd96ddb415d8294c2992f6216db -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:104 -msgid "2. Introduction to XML" -msgstr "2. Pengenalan XML" - -# f7e5050d3b484807a821dfcc2c0c2c6a -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:106 -msgid "" -"In order to create our own Presets menu, we first need to understand a " -"language called XML. XML, which stands for *Extensible Mark-up Language*, is " -"a language similar to HTML. The key difference is that XML is designed to " -"carry data, not display it. Many applications on the internet use XML to " -"transmit data, including OSM. XML uses **elements**, and each element can " -"contain child elements inside it. For example, let’s imagine that we want to " -"create an XML file that contains data about a restaurant menu. We must " -"create a **root element** to contain all the data about our menu. Our root " -"element will have an opening and a closing tag, like this: ::" -msgstr "" -"Dalam rangka membuat menu Preset Anda sendiri, pertama-tama kita perlu " -"mengerti bahasa XML. XML, yang merupakan kependekan dari *Extensible Mark-up " -"Language*, adalah sebuah bahasa yang mirip dengan HTML. Perbedaan utamanya " -"adalah XML didesain untuk membawa data, bukan menampilkannya. Banyak " -"aplikasi di internet yang menggunakan XML untuk mengirimkan data, termasuk " -"OpenStreetMap. XML menggunakan **elemen**, dan setiap elemen dapat " -"mengandung anak elemen di dalamnya. Sebagai contoh, mari kita bayangkan " -"bahwa kita mau membuat sebuah file XML yang mengandung data mengenai menu " -"restoran. Kita harus membuat sebuah file XML yang mengandung semua data " -"mengenai menu tersebut, yang dikenal sebagai **root element**. Elemen utama " -"kita akan memiliki tag pembuka dan penutup seperti ini: ::" - -# 86f76608b1934a81a81193f381563c58 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:125 -msgid "" -"Information is contained inside an element, and within each element there " -"can be more elements. ::" -msgstr "" -"Informasi terkandung dalam sebuah elemen, dan dalam setiap elemen bisa jadi " -"terdapat elemen-elemen lainnya. ::" - -# a3ea68b34e5b4fb39bb33d475d170efc -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:140 -msgid "" -"In this example we have placed two **** elements within our **** " -"element to describe two different items that are contained in the menu. Each " -"item contains two more elements in them, **** and ****. " -"Notice also how we have written name=”Hamburger” inside the opening " -"**** tag. This is called an attribute, and adds information about the " -"element." -msgstr "" -"Pada contoh ini kita telah meletakkan dua elemen **** dalam elemen " -"**** kita untuk menjelaskan dua hal berbeda yang terdapat di dalam " -"menu. Setiap hal mengandung dua lagi elemen di dalamnya, **** dan " -"****. Lihat juga bahwa bagaimana kita telah menulis " -"name=”Hamburger” di dalam pembuka tag ****. Hal ini disebut atribut, " -"dan memberi informasi mengenai elemen." - -# 9b0a80959821464fad4cf7d074ff0556 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:148 -msgid "XML Terminology" -msgstr "Terminologi XML" - -# f56e9a46cf2b4c6e9b19e88a0482a52f -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:150 -msgid "" -"**root element:** the outermost element of an XML document, which describes " -"what is contained" -msgstr "" -"**root element:** elemen paling penting dari sebuah dokumen XML, yang " -"mendeskripsikan apa yang ada didalamnya" - -# 101bc52ad13941689fb6aebdb9e028ad -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:152 -msgid "" -"**element:** any XML object, contained by opening and closing tags, such as " -"**...data...**" -msgstr "" -"element\t: objek XML apapun, diisi dengan tag pembuka dan penutup, \n" -"seperti **...data...**" - -# 08396492ef7b423e8e243796a3fde5e9 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:154 -msgid "" -"**tag:** something contained in brackets, such as ****. **** is " -"the opening tag of an element, and **** is the closing tag." -msgstr "" -"**tag:** sesuatu yang terdapat di dalam tanda < >, seperti ****. **< " -"item>** adalah tag pembuka pada sebuah elemen, dan **** adalah tag " -"penutup." - -# 140562115e0b460e93cdf6b0b1b7219f -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:156 -msgid "" -"**attribute:** a piece of information contained inside a tag, such as " -"**name=“Hamburger”**" -msgstr "" -"**attribute:** sebuah informasi yang ada di dalam sebuah tag, seperti " -"**name=“Hamburger”**" - -# 9c53e69dfc4d4ac1beaaa53b380f9cb5 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:159 -msgid "" -"Using XML to hold and transmit data is great because it is easy to " -"understand for computers. To provide one more example, this is what the XML " -"might look like for the point we created in JOSM previously. ::" -msgstr "" -"Dengan menggunakan XML untuk menerima dan mengirim/memancarkan data " -"merupakan cara yang baik karena hal tersebut mudah dimengerti untuk " -"komputer. Untuk memberikan satu lagi contoh, beginilah bagaimana tampilan " -"XML untuk titik yang telah kita buat sebelumnya di JOSM:" - -# 1cabd59735374a5d8a7380d6782cb69e -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:172 -msgid "" -"This XML has a root element **** which indicates that OSM data is " -"contained inside. Then it has one **** element which is the OSM way of " -"describing a **point**. The node has numerous attributes, including a unique " -"id number, the coordinates of the point, the user who created the point, and " -"some additional information which we will not discuss right now. Between the " -"opening **** tag and the closing **** tag there are two more " -"elements of type ****. Each **** has an attribute k and an " -"attribute v. These are the keys and values that we added in JOSM. Notice " -"that the **** elements don’t have a closing ****. This is because " -"they don’t have any other elements contained within them, but instead have a " -"forward slash indicating that it does not require a closing tag. ****" -msgstr "" -"XML ini memiliki elemen utama **** yang menunjukkan bahwa data " -"OpenStreetMap terkandung di dalamnya. Lalu XML ini juga memiliki suatu " -"elemen **** yang merupakan cara bagi OpenStreetMap untuk " -"mendeskripsikan sebuah **titik**. Node tersebut memiliki sejumlah atribut, " -"termasuk suatu nomor id yang unik, koordinat dari titik tersebut, pengguna " -"yang membuat titik tersebut, dan beberapa informasi tambahan yang tidak akan " -"kita bahas sekarang. Di antara tag pembuka **** dan tag penutup ****, ada dua tipe elemen **** lagi. Setiap **** memiliki " -"sebuah atribut k dan sebuah atribut v. Mereka adalah kunci/keys dan nilai/" -"values yang telah kita tambahkan di JOSM. Perhatikan bahwa elemen **** " -"tersebut tidak memiliki **** penutup. Hal ini disebabkan karena meraka " -"tidak memiliki elemen lain yang terdapat di dalamnya, melainkan memiliki " -"slash depan yang menandakan bahwa mereka tidak memerlukan tag penutup " -"****" - -# dc6a160e42814a7dbcb234e7e3386d59 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:189 -msgid "3. JOSM presets files" -msgstr "3. File preset JOSM" - -# ae11b3d391f041d2a458eeb622a42843 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:191 -msgid "" -"As you’ve already discovered, JOSM comes pre-loaded with a presets menu that " -"includes most common types of geographic options. But sometimes you want to " -"add additional presets for specific information that you want to collect. " -"You can create your own presets menu by writing it in XML, and then loading " -"it in JOSM. First, let’s look at how we can load additional presets menus " -"into JOSM." -msgstr "" -"Seperti yang telah anda ketahui, JOSM telah dilengkapi dengan menu yang " -"telah diatur sebelumnya, yang memiliki tipe menu pilihan geografis yang " -"paling umum. Namun kadang, Anda ingin menambahkan menu tambahan untuk " -"informasi spesifik yang ingin Anda kumpulkan. Anda dapat membuat menu Anda " -"sendiri dengan menuliskannya dalam XML, kemudian memuatnya di dalam JOSM. " -"Pertama, mari lihat bagaimana kita dapat memuat menu-menu tambahan ke dalam " -"JOSM." - -# b593e8cc96344acdbf5f009871035163 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:199 -msgid "" -"Open JOSM and open the Preferences menu by going to :menuselection:`Edit ‣ " -"Preferences`." -msgstr "" -"Buka JOSM dan buka menu Preferensi dengan cara klik :menuselection:`Edit ‣ " -"Preferensi`." - -# 685552b6c39347e2925dd0dbf52188c0 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:202 -msgid "Click on the third icon from the top which looks like this:" -msgstr "Klik pada ikon ketiga dari atas yang tampilannya seperti ini:" - -# 0a4bc74cc1914e338c4d16bade2e03f8 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:207 -msgid "Click on the third tab labelled :guilabel:`Tagging Presets`." -msgstr "Klik pada tab ketiga yang bertuliskan :guilabel:`Tagging Presets`." - -# 3aad03c92ab84c7baafa465b5a653385 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:209 -msgid "" -"Select :guilabel:`Buildings by Kate Chapman` and click on the right arrow " -"button to add it to Active presets." -msgstr "" -"Pilih :guilabel:`Buildings by Kate Chapman` dan klik pada anak panah kanan " -"untuk menambahkannya pada Aktif Preset." - -# 3def0223ef4448a3a2a8eabd7a7fb577 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:215 -msgid "Click :guilabel:`OK`." -msgstr "Klik :guilabel:`OK`." - -# 9470e0d9f3664053839e7ddb8dab033d -# 37214623a5f44aacb3c42b02aaca8bde -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:217 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:494 -msgid "Restart JOSM." -msgstr "Restart JOSM." - -# 86a616c94a8b4b2492534d3c35b94331 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:219 -msgid "Create a new layer by going to :menuselection:`File ‣ New Layer`." -msgstr "Buat Layer baru dengan memilih :menuselection:`Berkas ‣ Layer Baru`." - -# ef7dccdc40be400dbdc7dd74db351996 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:221 -msgid "Create a point and make sure it is selected." -msgstr "Buat suatu titik dan pastikan titik tersebut terpilih" - -# 645023634c864a4cb87bb268af9353a8 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:223 -msgid "" -"Go to the Presets menu. You should now see the presets that you added at the " -"bottom." -msgstr "" -"Pergi ke menu Presets. Sekarang Anda dapat melihat preset yang Anda " -"tambahkan berada dibagian bawah." - -# d0b351174219427385edc6789ae7227e -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:229 -msgid "" -"Click on :menuselection:`Building` to see the the building presets form." -msgstr "" -"Klik :menuselection:`Building` untuk melihat form pengisian dari preset " -"building." - -# 4062c0c8a02e4f0ca1afb8075faa679a -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:234 -msgid "" -"When we added these new presets through the preferences menu, what we were " -"doing is adding an XML file that describes how the new menu should behave. " -"In the next sections, we will learn how to create our own XML presets file " -"that we can load into JOSM." -msgstr "" -"Ketika kita menambahkan menu preset tersebut melalui menu preferensi, yang " -"kita lakukan adalah menambahkan sebuah file XML yang menjelaskan bagaimana " -"perilaku dari menu baru ini. Pada bagian berikutnya, kita akan mempelajari " -"bagaimana membuat file preset XML kita sendiri yang dapat kita muat ke dalam " -"JOSM." - -# 3a2a3602ffdc4bf18ebcfc38d87c37dc -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:240 -msgid "4. A sample presets file" -msgstr "4. Contoh file presets" - -# 70430e5fbfab4f55874dad49ed78503b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:242 -msgid "" -"To understand how a presets file is written, let’s first look at the XML for " -"one of the pre-loaded presets in JOSM. When you go to the presets menu and " -"select :menuselection:`Facilities ‣ Culture ‣ Place of Worship` you will see " -"a form like this:" -msgstr "" -"Untuk memahami bagaimana suatu file preset ditulis, pertama mari lihat pada " -"XML pada salah satu preset pada JOSM yang telah tersedia. Ketika Anda pada " -"menu Presets memilih :menuselection:`Fasilitas → Budaya → Tempat Beribadah` " -"anda akan melihat form isian seperti berikut:" - -# 9e8f285e3a3e4177bd8c4bc31777e293 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:251 -msgid "The XML for this form looks like this: ::" -msgstr "XML untuk form isian tersebut berbentuk seperti ini: ::" - -# c2c257ba3a9c41ccb9e1647b61d2d0b9 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:265 -msgid "" -"This may look complex, but it is not as difficult as it may seem. Let’s walk " -"through it line by line." -msgstr "" -"Mungkin hal ini terlihat rumit, tapi tidak sesulit seperti yang terlihat. " -"Mari kita telusuri baris demi baris." - -# 92bf7888cb014dc8aefd3f17e1649286 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:268 -msgid "" -"The first line is the opening tag of our root element ****. There are " -"several attributes describing the element." -msgstr "" -"Baris pertama adalah tag pembuka untuk elemen utama kita ****. Ada " -"beberapa atribut yang mendeskripsikan elemen tersebut." - -# f0d3ce60a74842b7b483c9c522fccb2d -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:272 -msgid "name=\"Place of Worship\"" -msgstr "name=\"Place of Worship\"" - -# 0cbb9c11c51448caaef983afdceae27d -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:272 -msgid "The name of what you are creating." -msgstr "Nama dari benda yang Anda buat." - -# eb2bfffa62a840e6bffd051f0db9500d -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:274 -msgid "icon=\"presets/church.*\"" -msgstr "icon=\"presets/church.*\"" - -# 52aac380334b481cb9170084f4e8523a -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:274 -msgid "" -"The icon of the object. PNGs are the most effective in OSM since they are " -"compressed low-colour graphics with transparent backgrounds." -msgstr "" -"Ikon dari objek tersebut. File PNG merupakan file yang paling efektif dalam " -"OSM karena file tersebut dikompres menjadi grafik berwarna rendah dengan " -"latar tembus pandang." - -# 6088916f4749442383996766e21f4016 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:277 -msgid "type=\"node,closedway,relation\"" -msgstr "type=\"node,closedway,relation\"" - -# edd6554f9ec14f2788b59a139e533295 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:277 -msgid "" -"The types of object that this preset can be applied to. Node means it can be " -"applied on a point, way means it can be applied to a line, closedway means " -"it can be applied to a shape, and relation means it can be applied to a " -"relation, which is a type of OSM object we have not discussed. Notice that " -"way is not an option here, because a place of worship cannot be a line - it " -"must be a point or a shape." -msgstr "" -"Tipe dari objek yang dapat diberikan oleh menu preset ini. Node artinya " -"objek ini dapat dinyatakan sebagai titik, way artinya dapat dinyatakan " -"sebagai garis, *closedway* artinya dapat dinyatakan sebagai suatu bentuk " -"tertutup atau polygon , dan relation berarti bahwa objek ini dapat " -"diberlakukan kepada suatu hubungan, yaitu merupakan suatu tipe objek OSM " -"yang belum kita bahas. Perhatikan bahwa garis bukan pilihan di sini, karena " -"tempat ibadah tidak mungkin berupa garis, melainkan pasti berupa titik atau " -"polygon." - -# fbc14b25e8334f8fbadd240dc1b75f75 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:285 -msgid "" -"The second line provides a link to the OSM wiki page for this type of " -"location." -msgstr "" -"Baris kedua menyediakan link ke halaman web wiki OpenStreetMap untuk tipe " -"lokasi seperti ini." - -# a2d30e01ef924b3a8fce89e95624074d -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:288 -msgid "" -"****" -msgstr "" -"****" - -# b0e14b7f16414ea0bbfccca5e8f35a26 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:290 -msgid "" -"The third line has the tag **" -msgstr "Baris terakhir dari XML ini adalah tag penutup ****" - -# e0aa900ecbf44d22a4ee930688dd70dc -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:323 -msgid "5. Creating your own presets file" -msgstr "5. Membuat file presets Anda sendiri" - -# 73edaf1e0d3c49d3aefccd4bb27b420b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:325 -msgid "" -"Now follow along as we create our own presets file. We will create an " -"example presets menu which will allow us to tag buildings or points " -"according to the type of utilities access that they have available. For " -"this, let’s invent some new tags:" -msgstr "" -"Sekarang ikuti cara kita membuat file preset kita sendiri. Kita akan membuat " -"sebuah contoh menu preset yang bisa membuat kita memberikan tag pada " -"bangunan atau titik tergantung dari tipe fasilitas atau kegunaan yang " -"dimiliki. Untuk itu, mari kita menciptakan beberapa tag baru: " - -# 8b0972042cff4e84a645826e566b1ad8 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:331 -msgid "Key" -msgstr "Kunci" - -# 5bc383ab7436447eb29f915d161f7025 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:331 -msgid "Possible Value" -msgstr "Nilai yang memungkinkan" - -# b087623bd8874f2fb1aa0eb12375a0f3 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:333 -msgid "utility:water" -msgstr "utility:water" - -# 61d1ce6181a1420d83b34d75786d140f -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:333 -msgid "well, municipal, yes, no" -msgstr "well, municipal, yes, no" - -# 552b620c47424095bfcb0391eeaab97b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:333 -msgid "" -"Does the household have access to water? well indicates it has access to " -"well water. municipal indicates it has pipes running to it. If we want to be " -"less descriptive, we can select yes or no to indicate if the building has " -"water access" -msgstr "" -"Apakah rumah tangga memiliki akses terhadap air/water? Well/sumur " -"mengindikasikan rumah tangga memiliki akses terhadap air sumur. municipal " -"mengindikasikan bahwa ada pipa-pipa yang menghubungkannya. Jika kita tidak " -"mau mencantumkan banyak deskripsi, kita dapat memilih 'yes' (ya) atau " -"'no' (tidak) untuk mengindikasikan apakah bangunan tersebut memiliki akses " -"terhadap air." - -# 20c25c346c7e47c19323f2284a626a23 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:340 -msgid "utility:electricity" -msgstr "utility:electricity" - -# a655b81f771140a0a098091f1c2265f1 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:340 -msgid "yes, no" -msgstr "yes, no" - -# f9f855033ea74a0ead2eb11a79f7cd52 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:340 -msgid "Does the household have electrical access?" -msgstr "Apakah rumah tangga tersebut memiliki akses terhadap listrik? " - -# 666fd202b2794bfaa204145e10c313e5 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:342 -msgid "utility:phone" -msgstr "utility:phone" - -# 3fecb8949c584297881ac9da58fabdc8 -# ad3d5cf8bbec4f03985f5f3713dd4f6d -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:342 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:348 -msgid "landline, mobile, yes, no" -msgstr "landline, mobile, yes, no" - -# c24801f6a6da4d319a235babfc71bb49 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:342 -msgid "" -"Does the household have phone access? landline indicates that there is a " -"hard phone line in the house. mobile indicates that the household has a " -"mobile phone. If we want to be less descriptive, we can use yes or no" -msgstr "" -"Apakah rumah tangga tersebut memiliki akses komunikasi berupa telepon? " -"*Landline* mengindikasikan bahwa ada jaringan telepon yang yang masuk ke " -"rumah. *Mobile* mengindikasikan bahwa rumah tangga tersebut memiliki telepon " -"seluler. Jika kita tidak dapat mencantumkan banyak deskripsi informasi, kita " -"bisa menggunakan yes atau no saja." - -# b0ff29916f5a4174b9e4490b2759f783 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:348 -msgid "utility:internet" -msgstr "utility:internet" - -# e46cf3fbb89d43fba5ee6cbc92685a51 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:348 -msgid "" -"Same values as for phone, this will indicate if the household has internet " -"access" -msgstr "" -"Seperti halnya value untuk telepon, ini akan mengindikasikan apakah rumah " -"tangga tersebut memiliki akses internet. " - -# 2081220b298e4d13a2fd4959784a1d5d -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:352 -msgid "" -"When the preset we create is selected, we will also automatically add the " -"tag **building=yes**, and we will create a tag with the key name that the " -"user can fill in with using a text box." -msgstr "" -"Ketika preset yang kita buat telah dipilih kita dapat dengan otomatis " -"menambahkan tag **building=yes**, dan kita akan membuat sebuah tag dengan " -"key name yang dapat kita isi dengan menggunakan sebuah text box seperti " -"gambar di bawah. " - -# bd065e2ebec64f8995881ff0a73f3e38 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:356 -msgid "" -"Now look at the possible tags we have described in the table above. What is " -"the best way to represent each of these on the form? For name, we want to " -"create a text box, because the user can fill in any name that they want for " -"this tag." -msgstr "" -"Sekarang coba lihat pada tag yang memungkinkan untuk kita gunakan dari tabel " -"yang telah dijelaskan di atas. Apa cara terbaik untuk merepresentasikannya? " -"Untuk name, kita mau membuat sebuah text box, karena kita dapat mengisinya " -"dengan nama apapun yang kita inginkan untuk tag ini. " - -# 46012e9f75ba46e4b2fca5c493175595 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:361 -msgid "" -"For **utility:water**, **utility:phone**, and **utility:internet**, there " -"are four possible values that the user can select from on our form, so the " -"best way to add this is with a combo box - that is, a drop-down menu where " -"the user can select one of the options. The tag **utility:electrical** only " -"has two possible values, yes or no, so the best way to show this on our form " -"is with a checkbox, although we could use a drop-down box if we wanted as " -"well. When we are finished our form should look like this:" -msgstr "" -"Untuk **utility:water**, **utility:phone**, dan **utility:internet**, " -"terdapat empat value yang memungkinkan yang dapat kita pilih dari form kita, " -"jadi cara terbaik untuk menambahkannya adalah dengan menggunakan combo box – " -"yaitu sebuah menu dropdown yang bisa dipilih ke bawah seperti ini. Tag " -"**utility:electrical** hanya memiliki dua value yang memungkinkan, yes atau " -"no, jadi cara terbaik untuk menunjukkannya pada form adalah dengan " -"menggunakan checkbox/lihat kotak kecil di samping tulisan Akses Listrik pada " -"gambar di bawah, meskipun kita dapat menggunakan sebuah kotak pilihan pula " -"jika kita inginkan. Ketika kita selesai membuatnya maka form akan tampak " -"seperti ini:" - -# 45155fa5a97549e6a9398d84756ab77c -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:373 -msgid "" -"Open a text editor and follow along as we create the XML for this preset. A " -"simple and common editor to use on Windows is called Notepad. DO NOT use a " -"word processing program like Microsoft Word." -msgstr "" -"Buka sebuah editor text dan ikuti cara-cara berikutnya untuk membuat sebuah " -"XML untuk preset ini. Sebuah editor yang sederhana dan banyak digunakan pada " -"Windows adalah Notepad. JANGAN menggunakan sebuah word processing program " -"seperti Microsoft Word." - -# d92247a45c5645acb7206a5c6b7fba77 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:380 -msgid "" -"First, we need to create a root element in our XML so that JOSM knows it is " -"a presets file." -msgstr "" -"Pertama-tama, kita perlu membuat sebuah elemen utama/root element di dalam " -"XML kita sehingga JOSM mengenali nya sebagai sebuah file preset." - -# 308082179a864280a89279aa42f6a5a7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:386 -msgid "" -"Next let’s create an element called . This is not actually necessary " -"because we are only creating one preset, but it will demonstrate how we can " -"create submenus with many different options on our presets menu. Don’t " -"forget to add the closing tags **** and **** to your " -"elements." -msgstr "" -"Berikutnya mari kita membuat sebuah elemen yang disebut . Bagian ini " -"sebenarnya tidak terlalu diperlukan karena kita hanya membuat satu preset, " -"namun ini akan mendemonstrasikan bagaimana kita dapat membuat submenu dengan " -"menggunakan banyak opsi berbeda pada menu preset yang kita miliki. Jangan " -"lupa untuk menambahkan tag penutup **** dan **** pada " -"elemen Anda. " - -# 18a0b9c04253421196cc79aff96f52d3 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:396 -msgid "" -"Now we can create an item on our menu. We want to create an element " -"inside of the group element. Add the following text:" -msgstr "" -"Sekarang kita dapat membuat sebuah item pada menu kita. Kita ingin membuat " -"sebuah elemen di dalam group elemen tersebut. Tambahkan text seperti " -"berikut: " - -# 85331b795fb44a11bca37fe6174bdd3f -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:406 -msgid "" -"Inside the **** element we will add the text box, combo boxes and " -"check box that we want on our form. Add the following inside your **** " -"element:" -msgstr "" -"Di dalam elemen **** kita akan menambahkan text box, combo box, dan " -"check box yang inginkan ke dalam form. Tambahkan text berikut ini ke dalam " -"elemen **** Anda:" - -# 2b54442eae8348d8a066512da1c2b4f4 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:421 -msgid "When you are finished your file will look like this:" -msgstr "Ketika Anda selesai, file Anda akan terlihat seperti ini: " - -# 05d2ec0c2a92426aae2b1abe7543eaba -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:425 -msgid "" -"Much of this is similar to what you saw previously. Let’s analyse it. Inside " -"the **** element we have created six more elements:" -msgstr "" -"Banyak dari hal-hal berikut ini yang telah Anda lihat sebelumnya. Mari kita " -"analisis. Di dalam elemen **** kita telah membuat enam buah elemen " -"baru:" - -# dc5144ec380742bc9f7f8cbba027c83b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:429 -msgid "" -msgstr "" - -# d5a726f70bff4e6faf341af1ff0f376b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:430 -msgid "" -msgstr "" - -# 8c3198c47cdc467794015456960574d9 -# db03c1ceeb904d9abff9547ff78b10e1 -# 429f719860a5464a8f8fab28935adfaa -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:431 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:433 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:434 -msgid "" -msgstr "" - -# 4fc17435cbef4654b043375581900b1c -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:432 -msgid "" -msgstr "" - -# 08321451516647378f597d4b383671ed -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:436 -msgid "" -"Can you guess what each of these elements do? They create different items on " -"our presets form in JOSM. The first line, ****, does not display anything on our form, but tells JOSM to " -"automatically apply the tag **building=yes** to an object when this preset " -"is selected." -msgstr "" -"Bisakah Anda menyebutkan apa yang dapat dilakukan setiap elemen tersebut? " -"Mereka membuat item-item berbeda pada form presets di JOSM. Baris pertama, " -"****, tidak menampilkan apapun pada form, " -"namun memberitahu JOSM untuk secara otomatis memberikan tag **building=yes** " -"pada objek ketika preset ini dipilih." - -# 2aa5efa36a5247db991ee63294d4c4ce -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:442 -msgid "" -"The second line, ****, creates a text field with the key " -"name, as we saw when we looked at the presets XML in the previous section." -msgstr "" -"Pada baris kedua, ****, membuat sebuah field text dengan key name, " -"seperti yang kita saksikan ketika kita melihat pada preset XML di bagian " -"sebelumnya." - -# 453e60018ae84ee38e783de71a60a94b -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:446 -msgid "" -"We have three **** elements and each element has several attributes. " -"key indicates what key should be created for the tag. Text indicates what " -"text should be displayed on our form. Values are the possible values that " -"the user can select in the drop-down box. And we’ve added something new - " -"the attribute **display_values**, which let’s us show different text in the " -"drop-down boxes than the values that will be created. This is useful if we " -"want the form to be more descriptive about the options a user can select, or " -"if we want the display values to be in a different language from English." -msgstr "" -"Kita memiliki tiga elemen **** dan tiap elemen memiliki beberapa " -"atribut. *Key* mengindikasikan bahwa *key* seharusnya dibuat untuk *tag*. " -"Text mengindikasikan apa yang seharusnya ditampilkan pada form. *Values* " -"merupakan value-value yang memungkinkan yang dapat kita pilih melalui " -"dropdown box. Dan kita telah menambahkan sesuatu yang baru, yaitu atribut " -"**display_values**, yang dapat menampilkan text berbeda pada dropdown box " -"daripada value yang akan dibuat. Hal ini sangat berguna bila kita ingin form " -"yang dibuat lebih bersifat deskriptif mengenai pilihan-pilihan yang dapat " -"dipilih, atau jika kita mau value yang ditampilkan menggunakan bahasa selain " -"Bahasa Inggris." - -# 4318442da0694a23ace9d33905246587 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:457 -msgid "" -"Lastly, we’ve added one new element, a **checkbox**. The code for this is " -"simple, ****. " -"This creates a check box on our form. When it is selected, JOSM will add a " -"tag to our object that says **utility:electrical=yes**." -msgstr "" -"Terakhir, kita telah menambahkan satu elemen, sebuah **checkbox**. Kode yang " -"digunakan cukup sederhana, ****. Kode tersebut akan membuat sebuah *checkbox* pada form kita. " -"Ketika *checkbox* ini dipilih diberi tanda centang, JOSM akan menambahkan " -"*tag* pada objek yang menandakan **utility:electrical=yes**." - -# d6580bd13daa4981a7011532d2fe68c4 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:463 -msgid "" -"Finally, let’s save the XML file so that we can load it into JOSM. In " -"Notepad, go to :menuselection:`File ‣ Save`." -msgstr "" -"Akhirnya, mari kita simpan file XML sehingga kita dapat memasukkannya ke " -"dalam JOSM. Pada Notepad, pilih :menuselection:`File ‣ Simpan`." - -# df4c10006c2c4952a98aac9779a71014 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:466 -msgid "Type in :kbd:`household_access.xml` as the filename." -msgstr "Ketik :kbd:`Akses_Rumah_Tangga_Preset.xml` sebagai nama file." - -# 85b6fdeeef36439688ac384c5c873095 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:468 -msgid "" -"In the box that says :guilabel:`Save as type:` be sure to select :guilabel:" -"`All Files`, because we don’t want to save the file as a text document, but " -"rather as an XML document." -msgstr "" -"Pada box yang mengatakan :guilabel:`Save as type:` pastikan Anda memilih :" -"guilabel:`All Files`, karena kita tidak ingin menyimpan file sebagai dokumen " -"teks, melainkan sebuah dokumen XML." - -# 57cf6f41b711414b8c76c7af5d985951 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:472 -msgid "Click :guilabel:`Save`." -msgstr "Klik :guilabel:`Simpan`." - -# 613124cf0d1c4b999bda66a38ee4a9c7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:476 -msgid "6. Try It!" -msgstr "6. Cobalah!" - -# 85c4b4469d4844378a9a1a708917de86 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:478 -msgid "Now let’s open our presets file in JOSM and see how it looks!" -msgstr "" -"Sekarang coba buka file preset tadi menggunakan JOSM dan lihat bagaimana " -"tampilannya! " - -# a0847584bcad48008d62cbac4183d112 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:480 -msgid "" -"Open the Preferences in JOSM and go to :guilabel:`Tagging Presets`, as you " -"did previously." -msgstr "" -"Buka Preferensi pada JOSM dan pilih :guilabel:`Tagging Presets`, seperti " -"yang telah Anda lakukan sebelumnya. " - -# 36b1f9af68e04ce194092fcc2271b904 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:483 -msgid "" -"On the right side next to Active presets click on the :guilabel:`+` button." -msgstr "" -"Pada bagian kanan di sebelah Preset yang aktif, klik tombol :guilabel:`+`. " - -# 8146a7f2407b4129ae798902447301b7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:488 -msgid "Type :kbd:`Household Presets` into the :guilabel:`Name` field." -msgstr "Ketik :kbd:`Preset Rumah Tangga` pada kolom :guilabel:`Nama`." - -# 99c80bbcb5dd43df9f1de2c111e249f7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:490 -msgid "Next to URL / File, open the xml file that you just created." -msgstr "Di sebelah URL/File, buka file XML yang baru saja kita buat." - -# 28a0b84e02bf48feb072dad8145c4052 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:492 -msgid "" -"Click :guilabel:`OK`, and :guilabel:`OK` again to save your preferences." -msgstr "" -"Klik :guilabel:`OK`, dan :guilabel:`OK` lagi untuk menyimpan preferensi." - -# 3759ae813db94379ae2a95e43d5142e7 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:496 -msgid "Create a new layer and add a point." -msgstr "Buat sebuah layer baru dan tambahkan sebuah titik." - -# 983812e495c244869503e48bb2de6839 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:498 -msgid "Go to the Presets menu. You should see the menu that you just created!" -msgstr "" -"Pergi ke menu Presets. Anda sekarang akan dapat melihat menu yang baru saja " -"Anda buat!" - -# d3550f27b2b849d6a9953d4fdcad9064 -#: ../../source/training/old-training/intermediate/osm/304-creating-josm-file-presets.rst:504 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/305-using-private-data-store.po b/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/305-using-private-data-store.po deleted file mode 100644 index c2fc62c4..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/305-using-private-data-store.po +++ /dev/null @@ -1,445 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2014 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2014 -# Werner Macho , 2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2017-09-23 19:18+0000\n" -"Last-Translator: Richard Duivenvoorde \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 4ce32e7093494780aed1b91a3ce309ac -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:6 -msgid "Module 5: Using the Separate Data Store" -msgstr "Modul 5: Menggunakan Data Store Terpisah" - -# 3176d448c93848a49acbda089645ddac -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# ad37363240464e3687fc4defb2a2c049 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:10 -msgid "Understand the functions of the Separate Data Store (SDS)" -msgstr "Memahami fungsi dari Data Store Terpisah (*SDS - Separate Data Store*)" - -# 5314a0f67ab0452d907cd51dd8beaf5e -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:11 -msgid "Understand what data should be kept publicly and what should be private" -msgstr "Memahami data apa yang seharusnya dipublikasi dan data pribadi" - -# 8fd094f3152a43d5b781d70ecf8133dc -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:12 -msgid "Install SDS plugin in JOSM" -msgstr "Menginstal Plugin SDS di JOSM" - -# 88570e8a3d5e4b8284e3386bb61e3d83 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:13 -msgid "Use SDS presets" -msgstr "Menggunakan Preset SDS" - -# 1d7ceb745cf44bfe9137343cab51d982 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:14 -msgid "Use SDS plugin for selecting public and private data" -msgstr "Menggunakan plugin SDS untuk memilih data publik dan data pribadi" - -# dcd75f39f0004c55905c59d6b97a28d3 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:15 -msgid "Access online datastore" -msgstr "Mengakses datastore secara online" - -# 358be8fee6b84b4184511edb57b6542c -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:17 -msgid "" -"OpenStreetMap data is open and available to anyone who would like to access " -"it. However, there may be times when you want to use OSM to collect data, " -"but you would like to keep some attributes stored in a private database. For " -"this purpose, HOT has developed a tool for JOSM known as the Separate Data " -"Store. The SDS allows you to create maps and add data into JOSM the same as " -"always, but when you upload your edits, public data is saved to the OSM " -"database and private data is saved separately to your private data server." -msgstr "" -"Data OpenStreetMap terbuka dan bebas bagi siapa saja yang ingin " -"mengaksesnya. Bagaimana pun, Anda mungkin pernah mengalami ketika Anda ingin " -"menggunakan OSM untuk mengumpulkan data, tetapi Anda menghendaki untuk " -"menyimpan beberapa informasi di dalam database pribadi. Untuk alasan ini, " -"HOT telah mengembangkan sebuah *tool* untuk JOSM yang dikenal sebagai " -"Penyimpanan Data Terpisah SDS - *Separate Data Store*. SDS membebaskan Anda " -"untuk membuat peta dan menambahkan data ke dalam JOSM seperti biasa, tetapi " -"ketika Anda untuk *upload* perubahan, data publik akan disimpan di database " -"OSM dan data pribadi akan disimpan secara terpisah di dalam server data " -"pribadi." - -# 82fde13ca0e34518b549856f6fe21d25 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:30 -msgid "" -"This module is designed for people who desire to store private geospatial " -"information, such as household income, personal health care data or the " -"location of gold mines." -msgstr "" -"Modul ini dirancang untuk pengguna yang ingin menyimpan informasi geospasial " -"privat, seperti pendapatan Kepala Keluarga, data kesehatan pribadi atau " -"lokasi dari tambang emas." - -# 78f45810be8d4062bc977f996baf8a26 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:34 -msgid "" -"For liability reasons, HOT does not provide the SDS service itself, but the " -"software is available for installation on a private server. In this module " -"we will utilise the SDS development server to demonstrate its functionality." -msgstr "" -"Untuk alasan tanggungjawab, HOT tidak menyediakan servis SDS sendiri, tetapi " -"perangkat lunak itu sendiri mampu untuk menginstalasi dalam sebuah server " -"privat. Di dalam modul ini kamu akan memanfaatkan pembangunan server SDS " -"untuk mendemonstrasikan fungsionalitasnya." - -# 1a420fc939df4a699c84c375d37a46d9 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:38 -msgid "" -"If you are interested to set up your own SDS server, please contact us (team." -"id[at]hotosm.org)." -msgstr "" -"Bila Anda tertarik untuk mengatur server SDS Anda sendiri, silakan hubungi " -"kami (team.id[at]hotosm.org)." - -# e866ebf3931e4194aa4e047dd934d70f -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:43 -msgid "1. Installing the SDS plugin" -msgstr "1. Menginstalasi plugin SDS" - -# 25b52782a1e8414c8d913731d5512a5b -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:45 -msgid "" -"This plug-in allows private data to be diverted into the private data store, " -"rather than being saved in the OSM database. A recent version of JOSM is " -"required for the SDS plugin to run. (If you do not have a recent version of " -"JOSM, download and install it from http://josm.openstreetmap.de/.)." -msgstr "" -"Plugin ini memperkenankan data privat untuk dialihkan ke *private " -"datastore*, daripada disimpan di database OSM. Dalam versi JOSM yang terbaru " -"dibutuhkan plugin SDS untuk memulai prosesnya. (Bila Anda tidak memiliki " -"versi JOSM yang terbaru, Anda dapat mengunduh dan menginstalasinya dari " -"http://josm.openstreetmap.de/)." - -# 7e15e8df359f4b9b923172e2a58bef13 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:51 -msgid "Open the preferences menu in JOSM and go to the plugins tab." -msgstr "Buka Menu Preferensi di JOSM dan pergi ke tab plugin." - -# c36eae865ac64a37b2167b8e718bb231 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:56 -msgid "" -"Click :guilabel:`Download List` to ensure that all available plugins are " -"listed." -msgstr "" -"Klik :guilabel:`Daftar Download` untuk memastikan semua plugin ada di dalam " -"daftar." - -# 8d6fd3f88cde4117888522475b6d9185 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:59 -msgid "In the search box, type :kbd:`sds`." -msgstr "Di dalam kotak pencarian, ketik :kbd:`sds`." - -# 4f0b6477fe954d618df308193be5b9eb -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:64 -msgid "" -"Check the box next to the plugin to activate it. Click :guilabel:`OK` to " -"download and install. You will need to restart JOSM." -msgstr "" -"Periksalah kotak di sebelah plugin untuk mengaktivasinya. Klik :guilabel:" -"`OK` untuk mengunduh dan menginstall. Anda akan perlu memuat ulang JOSM." - -# c14d5010d1ac465a841db13f292ba2ed -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:68 -msgid "2. Using the plugin" -msgstr "2. Menggunakan plugin" - -# 724306ca76e9477fb133da4f0acfef88 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:70 -msgid "" -"Editing the map works just the same as before. The only difference is that " -"when you upload changes, some tags will be automatically saved on the " -"private datastore, and the rest will be saved directly onto OSM." -msgstr "" -"Mekanisme mengedit peta sama seperti sebelumnya. Satu-satunya perbedaan " -"ialah ketika mengunggah perubahannya, beberapa tag akan otomatis tersimpan " -"dalam *private datastore*, dan selebihnya akan langsung tersimpan di dalam " -"OSM." - -# 19d1c8336a3241bbb455e905f64f256f -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:75 -msgid "" -"After installing the plugin, you need to edit the settings so that private " -"data is directed to the correct SDS server. In this module we will use a " -"demo version of the SDS, but you may also configure the plugin to save " -"private data on your custom SDS server." -msgstr "" -"Setelah mengintalasi plugin, Anda perlu memperbaiki pengaturannya sehingga " -"data privat tersebut dapat terhubung ke server SDS yang benar. Dalam modul " -"ini, kami akan menggunakan versi demo dari SDS, tetapi Anda mungkin juga " -"perlu mengkonfigurasi plugin Anda untuk menyimpan data privat Anda dalam " -"server SDS Anda." - -# f5ae15ada9624ad8aacf0a57bb105605 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:80 -msgid "Go to :menuselection:`SDS ‣ Preferences...`." -msgstr "Arahkan ke :menuselection:`SDS ‣ Preferences...`." - -# 88ec2f4960c8450b9e9faabdc6b574f3 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:82 -msgid "" -"Edit the :guilabel:`SDS server URL` so that it points to :kbd:`http://sds." -"dev.hotosm.org/`." -msgstr "" -"Ubah :guilabel:`SDS server URL` sehingga dapat terarah ke :kbd:`http://sds." -"dev.hotosm.org/`." - -# 07b1546b829848dfa79e65df1f14948f -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:85 -msgid "" -"We will use a sample account to try out the SDS. Enter the following for the " -"username and password:" -msgstr "" -"Kita akan menggunakan akun contoh untuk mencoba SDS. Masukkan informasi " -"berikut untuk nama pengguna dan kata kunci:" - -# b8c6bd38ebc543dfbe372399ebbe08ae -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:88 -msgid "SDS username: test_sds@hotosm.org" -msgstr "Nama pengguna SDS: test_sds@hotosm.org" - -# eeafb87ba84d46cd83c431c1eb07f918 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:89 -msgid "SDS password: CyYi3VeuHk" -msgstr "Kata kunci SDS: CyYi3VeuHk" - -# a42663e2360b4d6bad79237599394a36 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:94 -msgid "" -"Click :guilabel:`Test credentials now`. If it is set up correctly, you " -"should receive a message which tells you the connection is successful." -msgstr "" -"Klik :guilabel:`Coba perintah sekarang`. Apabila ini sudah diatur secara " -"benar, Anda akan menerima sebuah pesan yang memberitahukan Anda bahwa " -"koneksi tersebut telah sukses." - -# e5bd698b642b4d0c980de81ebcb134e5 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:99 -msgid "3. How it works" -msgstr "3. Bagaimana cara kerjanya" - -# 93e4cd9435cb4871896f3f117d723637 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:101 -msgid "" -"How does the plugin know which data you want to store on OSM and which data " -"you want to store publicly? Quite simply, it knows because of the tags. " -"Normal tags go to OSM as always, but you can use tags with a special prefix " -"that will be sent to the private datastore." -msgstr "" -"Bagaimana plugin tersebut tahu data mana yang ingin disimpan di dalam server " -"OSM dan data mana yang ingin disajikan untuk publik? Cukup mudah, plugin " -"tersebut dapat membaca dari tag yang dimasukkan. Tag normal akan menuju ke " -"OSM seperti biasa, tetapi Anda dapat menggunakan tag dengan imbuhan spesial " -"yang akan dikirimkan ke *private datastore*." - -# fcccebb50fb14d009568a144bd4b01a1 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:107 -msgid "" -"By default, any tag that has the prefix **hot:** will go to the private " -"datastore. This can be changed in the SDS preferences menu:" -msgstr "" -"Sesuai pengaturan bawaan, tag apa pun yang memiliki imbuhan **hot:** akan " -"dikirim ke *private datastore*. Ini akan dapat diubah di dalam menu " -"preferensi SDS:" - -# c69c48fbcca14eac9b9b2142fd2aa1f7 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:113 -msgid "" -"When you create or edit an object on the map, you can apply tags like this:" -msgstr "" -"Ketika anda membuat atau mengedit objek di dalam peta, anda bisa mengganti " -"tag seperti ini :" - -# e68fb141bde74c7eb32a26905f1e64ed -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:118 -msgid "" -"In this case, the first two tags will be saved on OSM. The third tag, " -"because it has the prefix **hot:**, will be saved on the private datastore." -msgstr "" -"Dalam kasus ini, dua tag pertama akan disimpan di dalam OSM. Tag yang " -"ketiga, karena ia memiliki imbuhan **hot:**, maka akan disimpan di dalam " -"*private datastore*." - -# ab3fa3f86ea24af0b5158a1a1135eb97 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:122 -msgid "" -"You will most likely collaborate with others when using a private datastore, " -"so you will have a standard list of tags to use for the specific data you " -"are collecting. These tags can then be made into a presets menu, which will " -"provide an easy-to-use form for adding both public and private data." -msgstr "" -"Anda kemungkinan akan berkerjasama dengan orang lain ketika menggunakan " -"*private datastore*, sehingga Anda akan memiliki daftar standar dari tag " -"yang digunakan untuk data spesifik yang Anda kumpulkan. Tag-tag ini kemudian " -"dapat dibuat menjadi menu preset, yang akan memberikan kemudahan untuk " -"menambahkan data baik secara publik maupun pribadi." - -# 74c3434196af40f2837ad8bd9c4c2ad2 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:130 -msgid "4. Accessing the datastore online" -msgstr "4. Mengakses Datastore secara Online" - -# 1e9004fa9c2c4ae1b3c82a4de634c699 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:132 -msgid "" -"You can access the SDS online with your username and password. To visit the " -"example SDS, open your browser and go to http://sds.dev.hotosm.org/." -msgstr "" -"Anda dapat mengakses SDS secara online menggunakan nama pengguna dan kata " -"sandi Anda. Untuk melihat contoh dari SDS, bukalah web browser Anda dan buka " -"http://sds.dev.hotosm.org/." - -# 827645357ae3457bb0710b2870d4f4bd -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:138 -msgid "" -"There are two types of SDS users. Admin users can add new projects or users " -"onto the SDS. Personal users are regular users who are part of a project " -"team which is using the SDS." -msgstr "" -"Terdapat dua tipe pengguna SDS. Admin pengguna dapat menambahkan proyek baru " -"atau pengguna baru ke dalam SDS. Pengguna personal merupakan pengguna " -"regular yang merupakan bagian dari tim proyek yang menggunakan SDS." - -# cec5e2862b5f41a9bf316007232eb384 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:145 -msgid "" -"Our sample account is a personal account, not an admin, but we can see the " -"online platform where our private data is kept." -msgstr "" -"Akun contoh kami adalah akun personal, bukan admin, tetapi kita dapat " -"melihat platform online dimana data pribadi kita disimpan." - -# 08514f3237694e379c39bbd5f3ebb0be -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:148 -msgid "Let's see what the private data looks like online." -msgstr "Mari kita lihat bagaimana tampilan data pribadi secara online." - -# 7161c39c380d46b795b93e5385981afb -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:150 -msgid "Click on :guilabel:`Tag search`." -msgstr "Klik pada :guilabel:`Tag pencarian`." - -# 5270162a5b4c485d9edc873b9caa8e5e -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:152 -msgid "In the text box, type :kbd:`hot` and click :guilabel:`search`." -msgstr "Di dalam kotak dialog, ketik :kbd:`hot` dan klik :guilabel:`cari`." - -# c13e424f54814fa0bc965d43ee2924a9 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:154 -msgid "" -"You should see at least one search result. Click on the eyeball button next " -"to it to see complete information." -msgstr "" -"Anda harus melihat setidaknya satu hasil pencarian. Klik pada tombol bulat " -"di sebelahnya untuk melihat informasi lengkap." - -# 57c5412676dc4998b8fb3e7bb1c75412 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:160 -msgid "" -"We can see all the information about this object, both the public attributes " -"from OSM and the private attributes kept in the SDS." -msgstr "" -"Kita akan melihat seluruh informasi tentang objek ini, baik informasi yang " -"dipublikasikan dari OSM dan informasi pribadi yang disimpan dalam SDS." - -# 2175bea6665d4cbb9930ce70f0ebd656 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:166 -msgid "" -"Click on :guilabel:`Expert View` to see the actual tags that are used with " -"this object. Look at :guilabel:`OSM Properties` to see the tags that are " -"saved publicly on OSM." -msgstr "" -"Klik pada :guilabel:`Tampilan lanjut` untuk melihat tag yang sebenarnya yang " -"digunakan untuk objek ini. Lihat lah pada :guilabel:`Properti OSM` untuk " -"melihat tag yang disimpan dan dipublikasi di OSM." - -# 53565280ac9c40caad25d98f02995189 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:171 -msgid "5. Common questions" -msgstr "5. Pertanyaan umum" - -# 9055b2aa37e845e7a3671dda33f9518e -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:174 -msgid "How do we save our data?" -msgstr "Bagaimana cara kita menyimpan data kita?" - -# d0679e8e6f0c4d8583cc1fd78ecbab90 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:176 -msgid "" -"The steps are exactly the same as uploading changes to OSM. The only " -"difference is that tags with the prefix you select (such as **hot:**) will " -"be diverted to a private datastore." -msgstr "" -"Semua langkahnya pada dasarnya sama seperti mengunggah perubahan dalam OSM. " -"Satu-satunya perbedaan ialah bahwa tag dengan imbuhan yang Anda pilih " -"(seperti **hot:**) akan dialihkan ke *private datastore*." - -# 9568dcb7f53a4cb6b3ae4011d71d093d -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:181 -msgid "How many users can use the same account? How can we add users?" -msgstr "" -"Berapa banyak pengguna yang dapat menggunakan akun yang sama? Bagaimana cara " -"menambahkan daftar pengguna?" - -# 3cc95cdacc1142e699c15a13ff83277f -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:183 -msgid "" -"There is no limit for user accounts. When you set up your own SDS, you will " -"have an Admin account and can add as many users as you need." -msgstr "" -"Tidak ada batasan untuk akun pengguna. Ketika Anda mengeset SDS Anda " -"sendiri, Anda akan memiliki akun admin dan dapat menambahkan berapa pun " -"jumlah daftar pengguna yang Anda inginkan." - -# 618fc72fd63a49158031ee5f545f0d69 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:187 -msgid "How much data can we save in our private server?" -msgstr "Berapa banyak data yang dapat kita simpan dalam server pribadi kita?" - -# 5326a4f8c56b4170a4c4552a71ce4e33 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:189 -msgid "A lot! Basically this depends on the size of your server." -msgstr "Banyak! Pada dasarnya, hal ini tergantung dari kapasitas server Anda." - -# 3fb72e05f40f47e69d1f644142c2ae0b -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:192 -msgid "Is there an easy way to search the private data?" -msgstr "Apakah ada cara mudah untuk menemukan data pribadi?" - -# 92ec3081391e4fc9b7d77a68ef0d1167 -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:194 -msgid "" -"After you sign in to the SDS website you are able to perform a tag search, " -"as we have done in this module." -msgstr "" -"Setelah Anda mendaftarkan diri Anda pada *website* SDS, Anda dapat melakukan " -"pencarian tag seperti yang telah kita praktikkan pada modul ini." - -# f62a125f21764b08a2fcabcc723c087b -#: ../../source/training/old-training/intermediate/osm/305-using-private-data-store.rst:198 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/306-editing-wiki-osm.po b/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/306-editing-wiki-osm.po deleted file mode 100644 index f4c69bf3..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/306-editing-wiki-osm.po +++ /dev/null @@ -1,1324 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2014 -# BiondiSima , 2014 -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013-2014 -# Emir Hartato , 2014 -# mahardika fadmastuti , 2013 -# Vasanthi Hargyono , 2014 -# Werner Macho , 2013-2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:41+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# e3db1c947d6d4a059c441e178baaa0ac -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:6 -msgid "Module 6: Editing the OpenStreetMap Wiki" -msgstr "Modul 6: Mengedit Wiki OpenStreetMap" - -# 1cf28bcab25c4c838a0dd92c951a656a -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 295c7ed6f029495eb60987c3ea48a5c0 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:10 -msgid "Make an account on the OpenStreetMap wiki" -msgstr "Memahami cara membuat akun di Wiki OpenStreetMap" - -# e699823bc42540169371c60dd56a1528 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:11 -msgid "Understand conventions and rules in developing a wiki page" -msgstr "Memahami format dan aturan dalam pembuatan halaman wiki" - -# e36a008baccc4b59b11a699c71ed51cf -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:12 -msgid "Edit the wiki" -msgstr "Memahami cara mengedit wiki" - -# c0575969226840399358eba61d243b30 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:13 -msgid "Upload files and images" -msgstr "Memahami cara meng-*upload* file dan foto/gambar" - -# a4780a43700142b9ac513cd569f46741 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:14 -msgid "Translate and revise wiki" -msgstr "Mampu menerjemahkan dan merevisi wiki" - -# 33ecdbcc42b9461aaa040aee37bf62ea -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:16 -msgid "" -"OpenStreetMap is based around a community of mappers working together. " -"Because of this it is necessary to have a way to communicate with each " -"other, whether it be to organise social mapping events, to discuss different " -"projects related to OSM or to create standards for mapping processes. The " -"main avenue for mappers to do this is through the OSM wiki, a website where " -"users can create different web pages about different topics and in different " -"languages. To see the OSM wiki, visit http://wiki.openstreetmap.org" -msgstr "" -"OpenStreetMap berbasiskan komunitas orang-orang yang membuat peta dari " -"seluruh dunia. Maka, sangat penting untuk saling berkomunikasi antara satu " -"dengan yang lainnya, merencanakan kegiatan pemetaan sosial, mendiskusikan " -"berbagai proyek yang berkaitan dengan OSM ataupun membuat standardisasi " -"dalam proses pemetaan. Salah satu cara untuk dapat berkomunikasi satu sama " -"lain adalah dengan menggunakan wiki OSM, sebuah situs dimana para pengguna " -"dapat membuat berbagai halaman web mengenai topik-topik yang berbeda dan " -"halaman tersebut dapat dibuat dalam berbagai bahasa. Untuk melihat wiki OSM, " -"Anda dapat mengunjungi : http://wiki.openstreetmap.org" - -# a691539e2b0f4c27b4120e639a1ddc21 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:28 -msgid "1. OSM wiki" -msgstr "1. Wiki OSM" - -# 6f0541e758254963816183211183c7ce -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:30 -msgid "" -"A wiki is a website where any user can add pages and edit existing pages. It " -"is based on the same principle as OSM. The only difference is that with OSM " -"users are editing maps, while wiki users are editing text. The most famous " -"wiki is Wikipedia (http://www.wikipedia.org), an online encyclopedia that " -"covers almost every topic imaginable." -msgstr "" -"Situs wiki adalah sebuah situs dimana semua pengguna dapat menambahkan atau " -"mengedit halaman-halaman yang ada. Prinsipnya sama seperti OSM, hanya saja " -"perbedaannya yaitu pengguna OSM mengedit peta sedangkan di wiki pengguna " -"mengedit tulisan. Wiki yang paling terkenal yaitu Wikipedia (http://www." -"wikipedia.org), sebuah kamus online dimana menampilkan informasi tentang " -"hampir seluruh topik." - -# 998df35268cd4d49bc5c1d51bc6f4756 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:36 -msgid "" -"The OSM wiki contains information about everything related to OSM. When " -"someone is working on a project that uses OSM, they create a wiki page so " -"that other people can read about their project. The wiki contains help for " -"users wanting to learn more about OSM, for common standards on how to make " -"maps and on how to tag objects on the map, as well as many other things. You " -"have already seen at least one of the OSM wiki pages, which describes all of " -"the most common features that you can add to the map, and how they are " -"commonly tagged. This is the Map Features page: http://wiki.openstreetmap." -"org/wiki/Map_Features" -msgstr "" -"Wiki OSM berisi informasi tentang segala sesuatu yang berkaitan dengan OSM. " -"Ketika seseorang bekerja dalam suatu proyek yang menggunakan OSM, mereka " -"dapat membuat sebuah halaman di Wiki sehingga orang lain dapat membaca dan " -"mengetahui tentang proyek mereka. Wiki juga dapat membantu para pengguna " -"untuk mempelajari lebih banyak hal tentang OSM, petunjuk-petunjuk umum dalam " -"membuat peta dan bagaimana memberikan tag di objek yang ada pada peta dan " -"masih banyak hal lainnya. Anda telah melihat setidaknya satu dari halaman " -"Wiki OSM yang menjelaskan fitur-fitur umum yang dapat Anda tambahkan ke " -"dalam peta dan bagaimana biasanya suatu objek diberikan tag. Berikut adalah " -"halaman dari Map Features: http://wiki.openstreetmap.org/wiki/Map_Features" - -# a8775b0be711460bb32857717af16c70 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:47 -msgid "" -"In this module we will learn how to add and edit pages on the OSM wiki. We " -"will learn the guidelines for contributing, the special markup language for " -"creating a wiki page, and helpful ways for improving the wiki, such as " -"translating important pages." -msgstr "" -"Dalam modul ini kita akan belajar bagaimana untuk membuat dan mengedit " -"halaman yang ada di OSM wiki. Kita akan belajar petunjuk untuk " -"berkontribusi, membuat bahasa khusus dalam membuat halaman wiki dan cara " -"untuk membantu meningkatkan wiki seperti menerjemahkan halaman-halaman " -"penting yang ada di wiki." - -# c5225766c8c04dd9ad9dc9f36bad4e9b -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:53 -msgid "2. Signing up" -msgstr "2. Mendaftar" - -# 53afe3a82d554fff8443e04ad0036aa6 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:58 -msgid "" -"Go to http://wiki.openstreetmap.org to see the main wiki page. You’ll see a " -"lot of things here, and many links to other pages on the wiki. In the left " -"column are links to some of the main pages. At the top of the page are a " -"list of all the languages in which you can view this page. If it’s " -"available, you can switch the page to your language. Try exploring some of " -"the links on the page to what kind of information is available on the wiki." -msgstr "" -"Kunjungi http://wiki.openstreetmaps.org untuk melihat halaman utama dari " -"wiki. Anda akan melihat banyak hal dan tautan ke halaman-halaman lain yang " -"ada di wiki. Di kolom kiri adalah tautan ke beberapa halaman utama. Di " -"bagian atas halaman ada daftar dari berbagai bahasa yang dimana dapat Anda " -"gunakan untuk membaca halaman ini. Jika tersedia maka Anda dapat mengganti " -"halaman ke dalam bahasa Anda. Anda dapat mencoba untuk mempelajari lebih " -"lanjut beberapa tautan yang ada di halaman ini dan melihat informasi apa " -"saja yang tersedia di wiki." - -# b6810418aa93436181af5e07881d1480 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:67 -msgid "" -"It is not necessary to have an account in order to view the OSM wiki, but " -"you will need to create an account if you want to edit or add pages. Note " -"that this is not the same as your OSM account. You must create a new " -"account, although you can use the same name on the wiki as you did when " -"signing up for OSM." -msgstr "" -"Anda tidak harus memiliki akun untuk melihat OSM wiki, akan tetapi jika Anda " -"ingin mengedit atau membuat sebuah halaman Anda harus mempunyai akun. Perlu " -"diingat bahwa akun di wiki ini tidak sama dengan akun OSM Anda. Anda harus " -"membuat akun baru, tetapi Anda dapat menggunakan nama yang sama dengan nama " -"yang Anda gunakan di OSM untuk membuat akun di wiki." - -# 5ef11ff26ca54ceda94fae638b5332ae -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:73 -msgid "" -"To create a new account, click on :guilabel:`Create account` in the upper " -"right corner of the website. If you already have an account click :guilabel:" -"`Log in` to sign in to the website." -msgstr "" -"Untuk membuat akun baru, klik :guilabel:`Log in / create account` di sudut " -"kanan atas dari halaman situs. Jika Anda telah memiliki akun klik :guilabel:" -"`Log in` untuk masuk kedalam situs." - -# c7314fc08f5444aca1902161b00e4ac2 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:80 -msgid "" -"Fill in the form with the username you want to create, your password twice, " -"your email address, and your real name. In the CAPTCHA box at the top you " -"need to type the words that are shown in the box. This is a security " -"prevention to ensure that you are human, and not a computer." -msgstr "" -"Isilah kotak-kotak yang ada dengan nama pengguna yang Anda inginkan, ketik " -"kata sandi dua kali, alamat email dan nama asli Anda. Dalam kotak CAPTCHA di " -"atas Anda perlu untuk menuliskan dua kata yang ada di kotak tersebut. Hal " -"ini untuk memastikan bahwa yang membuat akun ini adalah manusia bukan " -"komputer." - -# c47386f561b94f3d9a5a9f65fe784ce7 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:90 -msgid "Click :guilabel:`Create your account`." -msgstr "Klik :guilabel:`Create account`." - -# 24c90fb245974ac080df63bffa34d420 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:92 -msgid "" -"You will be automatically logged in, and your username and other links will " -"appear in the upper right corner of the website." -msgstr "" -"Anda akan otomatis masuk, dan Anda dapat melihat nama pengguna dan tautan " -"yang ada tersedia di sudut kanan atas pada halaman ini." - -# b663332fe0044c4990826a037fbf22cb -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:99 -msgid "3. Editing" -msgstr "3. Mengedit" - -# bd7818b99a3b443db27c6eabb0eb16ac -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:101 -msgid "" -"Let’s start out by editing our user page. Every user has a page on the wiki. " -"These pages are commonly used to provide information about yourself, your " -"location, for communication between users and for creating test pages and " -"drafts." -msgstr "" -"Kita akan mulai dengan mengedit halaman user kita. Setiap pengguna memiliki " -"sebuah halaman di wiki. Halaman-halaman ini biasanya digunakan untuk " -"menampilkan informasi tentang diri Anda, dimana Anda berada, untuk " -"komunikasi diantara pengguna dan untuk membuat halaman tes dan konsep." - -# 6a5b2a0ae39d4d3d8f7e35f29e74eb12 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:106 -msgid "" -"This is a great place to start learning the basics of editing a wiki page." -msgstr "" -"Ini adalah halaman yang tepat untuk kita mulai dan mempelajari dasar-dasar " -"dari mengedit halaman di wiki." - -# 0b5637832ed14f97bde36cb5fba0c2e2 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:108 -msgid "" -"Go to your user page by clicking on your username in the upper right corner. " -"The user in our example is “MapJeff”. Yours will be the username you signed " -"up with." -msgstr "" -"Pergi ke halaman user Anda dengan meng-klik nama pengguna pada sudut kanan " -"atas. Username yang digunakan dalam contoh ini adalah “MapJeff”. Untuk " -"username Anda, sebaiknya gunakan username yang sama dengan OSM." - -# 41d508263ec84fc58e22c26a126342d2 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:115 -msgid "" -"Right now the page is empty. Click on :guilabel:`edit this page` to add " -"something to it." -msgstr "" -"Untuk sekarang halaman tersebut masih kosong. Klik :guilabel:`edit this " -"page` untuk menambahkan sesuatu di dalamnya." - -# 6d7443370cff4356929466dc74028024 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:118 -msgid "" -"We can type anything into the editor to add information to the page. For " -"example, let’s add some basic information and a description. Add information " -"about yourself. Here is an example:" -msgstr "" -"Kita dapat mengetik apapun ke dalam editor untuk menambahkan informasi ke " -"dalam halaman. Sebagai contoh, kita akan menambahkan beberapa informasi " -"dasar dan deskripsi. Anda dapat menambahkan informasi mengenai diri anda. " -"Berikut adalah contohnya :" - -# a4562c8a076a46db9db7df5147957f62 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:125 -msgid "" -"When you have added some text, enter a summary of your changes in the box " -"next to :guilabel:`Summary` and click :guilabel:`Save Page`. The page will " -"look something like this:" -msgstr "" -"Ketika Anda menambahkan beberapa tulisan, memasukkan ringkasan perubahannya " -"ke dalam kotak :guilabel:`Summary` dan klik :guilabel:`Save Page`. Maka " -"halaman tersebut akan terlihat seperti berikut:" - -# 439eff45649f4266987ba89e456b04ef -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:132 -msgid "" -"This is great because we have successfully saved our text to the page, but " -"it is no good because it not formatted in a good way. In order to make it " -"look nice, we need to learn some of the basic wiki formatting techniques. " -"Click :guilabel:`Edit` at the top of the page, and let’s make some more " -"changes to our page." -msgstr "" -"Ini pertanda yang bagus karena kita telah berhasil memasukkan tulisan ke " -"dalam halaman, tetapi belum cukup bagus karena format dan bentuknya belum " -"tertata dengan rapi. Untuk membuat ini terlihat lebih baik kita harus " -"mempelajari beberapa teknik dasar dalam format wiki. Klik :guilabel:`Edit` " -"yang terdapat di sebelah atas halaman dan buat beberapa perubahan dalam " -"halaman Anda." - -# 128b76a68f84450da60cda4119feb01b -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:142 -msgid "" -"If you understood the previous module on XML, you will remember that we used " -"**elements** which have opening tags and closing tags. We will do something " -"similar on the wiki, using special characters to surround the text we want " -"to appear a certain way." -msgstr "" -"Jika Anda telah mengerti modul sebelumnya tentang XML, maka Anda akan " -"mengingat kita menggunakan **element-elemen** dimana menggunakan tag pembuka " -"dan penutup. Kita akan melakukan hal yang sama di wiki menggunakan karakter " -"khusus di sekitar teks yang akan kita tampilkan." - -# 7ae897b759e44d96a62664709e421792 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:147 -msgid "" -"The wiki does not automatically put new lines in unless we ask it to, so we " -"need to put the tag :kbd:`
` at the end of each of our lines in the first " -"section. This will cause a line break to occur." -msgstr "" -"Wiki tidak akan otomatis menuju ke paragraf yang baru kecuali kita " -"memasukkan tag :kbd:`
` di setiap akhir dari kalimat di paragraf " -"sebelumnya. Ini akan membuat pemisah antar paragraf/bagian." - -# 75d1307ba13b49b0b250cc9323dc45a0 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:151 -msgid "" -"Then, we want the words “About Me” to appear highlighted since it is the " -"heading of a section. To do this we can surround it like this:" -msgstr "" -"Setelah itu, kita mau tulisan “About Me” tampil dengan disorot sebagai judul " -"dari bagian ini. Untuk melakukan hal tersebut kita dapat mengetik seperti " -"ini :" - -# 05f115bd3136404ea8e37f951c639e83 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:159 -msgid "Now our code looks like this:" -msgstr "Sekarang, kode kita akan terlihat seperti ini :" - -# 88fe3961114048e682f01b2d942f4e84 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:164 -msgid "After we save it the page will look nicely formatted:" -msgstr "" -"Setelah kita simpan maka halaman akan terlihat lebih bagus seperti ini :" - -# fc9f5b4a16824e9f9560bbebdbbdcea1 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:169 -msgid "" -"Practice formatting your text in different ways. A small hint: the buttons " -"above the text box will automatically insert different types of formatting " -"code into your text!" -msgstr "" -"Cobalah berlatih mengedit format teks Anda dengan cara yang berbeda. " -"Petunjuk: tombol-tombol di atas kotak teks Anda akan otomatis membuat kode " -"format Anda ke dalam bentuk yang berbeda pada teks Anda!" - -# 8abfee4a7f0445bcba91309c32c5d6ce -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:176 -msgid "" -"Once you have saved your page, it will be viewable by anyone on the " -"internet. The following link goes to our demo page, but if you replace our " -"username with yours, it will go to your user page." -msgstr "" -"Ketika Anda telah selesai menyimpan halaman Anda, maka akan terlihat oleh " -"semua orang yang ada di Internet. Tautan berikut ini akan menuju ke halaman, " -"tetapi jika Anda mengganti nama pengguna dengan milik Anda maka tautan " -"tersebut akan menuju ke halaman Anda. " - -# 100bd5a621924524a0a1bd30e9deab77 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:181 -msgid "https://wiki.openstreetmap.org/wiki/User:MapJeff" -msgstr "https://wiki.openstreetmap.org/wiki/User:MapJeff" - -# 3d53d4f678874e28a55475ee588c5665 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:184 -msgid "4. Wiki formatting" -msgstr "4. Format Penulisan Wiki" - -# c79fa8979b3d4228a596b7639e45abe9 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:186 -msgid "" -"In this section we will discuss many of the different ways you can format " -"your information on a wiki page and the appropriate codes to use to create " -"different elements." -msgstr "" -"Pada bagian ini kita akan mendiskusikan berbagai cara untuk memformat " -"informasi Anda di halaman wiki dan meyesuaikan kode yang Anda gunakan untuk " -"membuat berbagai elemen yang berbeda." - -# 801a579c6ee448a68fa28a1416d72338 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:190 -msgid "" -"It’s a good idea to practise before trying to create an official wiki page " -"that you want others to see, so first let’s create a sub-page under your " -"user page where you can play around and practise editing." -msgstr "" -"Hal yang baik dilakukan adalah Anda sebaiknya latihan membuat halaman " -"terlebih dahulu sebelum membuat halaman resmi di wiki yang Anda inginkan " -"orang lain untuk melihatnya. Kita akan membuat sub halaman di halaman user " -"Anda dimana Anda dapat berlatih dan belajar dalam mengedit." - -# bce3ac7091c4400e990f060ab02f7309 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:194 -msgid "" -"Create a new wiki page by typing in the link to the page that you want and " -"then creating a new page. For now, let’s create a new subpage that we can " -"use to practise our wiki editing. In your web browser go to the following " -"address, replacing “MapJeff” with your own username: https://wiki." -"openstreetmap.org/wiki/User:MapJeff/testpage" -msgstr "" -"Anda dapat membuat sebuah halaman wiki baru dengan meng-klik link ke halaman " -"yang ingin lihat kemudian membuat sebuah halaman baru. Sekarang, kita akan " -"membuat sub halaman baru yang dapat kita gunakan dalam melakukan perubahan " -"wiki. Buka browser dan pergi ke alamat dibawah ini dengan mengganti " -"“MapJeff” dengan Username Anda sendiri. https://wiki.openstreetmap.org/wiki/" -"User:MapJeff/testpage" - -# c52fed3cf3544891b5ccb5f9c942b20e -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:202 -msgid "This will take us to an empty page that we can edit." -msgstr "" -"Ini akan membawa kita ke dalam sebuah halaman kosong yang dapat kita edit." - -# 067f32741df843ae8eb48a413033abbe -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:204 -msgid "" -"Now let’s look at how to format our text. Use your test page to try out " -"different formatting." -msgstr "" -"Sekarang mari kita lihat bagaimana untuk memformat teks. Gunakan halaman tes " -"Anda untuk mencoba format yang berbeda." - -# b058dc2ee1fa4298bcea717069b197f4 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:208 -msgid "Simple formatting" -msgstr "Format sederhana" - -# c8e002e0501c4a67ab0c88d03ea2e035 -# 3f1a52db6b1d4d3ab3b81deadef9e959 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:211 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:235 -msgid "Description" -msgstr "Deskripsi" - -# a484b1a5322b4878b68c96ff15b7949e -# a53f761592aa4f67a6bebe12ac3dcf36 -# 6c2d6cc205cb46abbdb185ff85dbd438 -# 0e96072491d14781865acd9914360e4b -# 10b6f3cb08e74c7d85030879d4986c13 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:211 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:235 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:260 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:282 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:326 -msgid "Example wiki source" -msgstr "Contoh sumber wiki" - -# 61daf4c6e8634c4eb430bd7365a64545 -# 39cd18b69eed455ca4dcf5926af70b1b -# 58e42f3f0a4345859f612fc3aedfa27f -# 46963e2948c349e3bb81da096d91de8d -# 4c654d40097241e38e053fcc8bf3a7ab -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:211 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:235 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:260 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:282 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:326 -msgid "Result" -msgstr "Hasil" - -# e4a34b2adf1d495fb647569e11154106 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:213 -msgid "" -"Surrounding text with two apostrophes (') will display the text in italic" -msgstr "" -"Disekitar teks berikan dua kutip (') yang akan menampilkan teks dalam bentuk " -"*italic*." - -# 0dd4ef7226f14a2c894132f16c1aac0f -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:213 -msgid "''italic text''" -msgstr "''italic text''" - -# 29a69aa627044319892bbca2ba4f3a1f -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:213 -msgid "*italic text*" -msgstr "*italic text*" - -# ee55d9bf780b4cd9aeabe797ad989a36 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:217 -msgid "" -"Surrounding text with three apostrophes (') will display the text in bold" -msgstr "" -"Disekitar teks berikan tiga kutip (') yang akan menampilkan teks dalam " -"bentuk **bold**." - -# 8eef110eb5344d91ba302ba5aa80eab3 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:217 -msgid "'''bold text''" -msgstr "'''bold text'''" - -# 7fec8a3cd6904debbf760522a0103a5a -# e86e9799b900462eb726e3270f934f04 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:217 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:237 -msgid "**bold text**" -msgstr "**bold text**" - -# 2db24a1e397c4f709eb72fd40c8e2267 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:221 -msgid "" -"Surrounding text with five apostrophes (') will display the text in bold " -"italic" -msgstr "" -"Disekitar teks berikan dua kutip (') yang akan menampilkan teks dalam bentuk " -"*italic*." - -# 920bd55eb72e4e55b6098a75f21871e3 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:221 -msgid "'''''bold and italic text'''''" -msgstr "'''''bold and italic text'''''" - -# 3e14ec7b7898423e87d9b272844e0bd8 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:226 -msgid "" -"Four dashes in a row will create a horizontal line. This should be used " -"sparingly." -msgstr "" -"Empat garis lurus berturut turut akan menghasilkan garis horizontal. Ini " -"jarang digunakan." - -# 84c828c3a57c430faba9e84501d5c0df -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:226 -msgid "_ _ _ _" -msgstr "_ _ _ _" - -# 4c93d572002648c08890f5d190418510 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:232 -msgid "Special formatting" -msgstr "Format khusus" - -# bd10724fb3844dc48c373d129414e10e -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:237 -msgid "" -"The tags '' and '' disable the wiki-syntax in the enclosed " -"text." -msgstr "" -"Tag '' dan '' di sekitar teks tidak akan menampilkan teks " -"yang ada." - -# 287c6a2ef391417ab5ffea40938ecf3f -# 0099bcbf10b04f7e9e4625da2656f6e8 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:237 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:239 -msgid "'''bold text'''" -msgstr "'''bold text'''" - -# d705e124db2a4790a6b21068b0577ead -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:239 -msgid "'''bold text'''" -msgstr "'''bold text'''" - -# db900c42e9194ffa98993ddef6a5b297 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:242 -msgid "" -"Surround your text with '' and the enclosed text will not " -"display on the wiki-page (a comment)." -msgstr "" -" Ketik '' di antara teks anda dan teks tersebut tidak akan " -"tampil di wiki (a comment)." - -# 640384e79bb141dea26687faa022ba66 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:242 -msgid "Comment! " -msgstr "Comment! " - -# 27b86766ff7e42ef8887bbe91f8e557d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:242 -msgid "Comment!" -msgstr "Comment!" - -# 84f93f80a2fe432b8fefe2c5bc34f48d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:249 -msgid "Headings and subheadings" -msgstr "Judul dan Sub Judul" - -# 6b9c4e11cd07484ca484bed7947aec82 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:251 -msgid "" -"A section starts with a header consisting of a line beginning and ending " -"with two or more consecutive equal signs (=). The number of equal signs " -"indicates the nesting level of sections." -msgstr "" -"Suatu sesi dimulai dengan judul yang dibuat dengan kalimat dimulai dan " -"diakhiri dengan dua atau lebih tanda sama dengan (=). Jumlah dari tanda " -"menunjukkan tingkat besar dari judul." - -# 3e20e600278247af9504dff7ed366cd7 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:255 -msgid "" -"When you create sections and subsection headings in your wiki page, the page " -"will automatically have a table of contents section created at the top of " -"the page." -msgstr "" -"Ketika Anda membuat suatu sesi dan sub sesi judul di halaman wiki Anda, maka " -"halaman wiki Anda akan otomatis memiliki bagian daftar isi yang dibuat di " -"atas halaman Anda." - -# eaee6f99da56416d9f80f7c6511f5a5e -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:262 -msgid "= = =Header 2= = =" -msgstr "= = =Header 2= = =" - -# 849012481f9d41c6a3128f0bca0b4fc4 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:262 -msgid "Header 2 (try this out!)" -msgstr "Header 2 (cobalah!)" - -# 634ba4d1e6354b54bd517294bc1eb601 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:264 -msgid "= = = =Header 3= = = =" -msgstr "= = = =Header 3= = = =" - -# 95f4d77546d142a59156d341b1433211 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:264 -msgid "Header 3" -msgstr "Header 3" - -# 3f04998362d34650907f7ed17ffce5b3 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:266 -msgid "= = = = =Header 4= = = = =" -msgstr "= = = = =Header 4= = = = =" - -# 46eaa3375ffd4dc3b1abb7d169b9ba3d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:266 -msgid "Header 4" -msgstr "Header 4" - -# cfb8fd2bc58941e6be291319948f6cae -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:270 -msgid "Lists" -msgstr "**Daftar**" - -# a522fc24524b4712995d9217d3e068b0 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:272 -msgid "" -"It’s easy to create a bullet list. In order to make an item in a list, you " -"simply need to use a star (*) as the first character on one or more " -"consecutive lines." -msgstr "" -"Sangat mudah untuk membuat sebuah urutan. Dalam membuat sebuah item dari " -"urutan Anda hanya perlu untuk menaruh tanda bintang (*) di awal karakter " -"kalimat Anda." - -# 0a12acb957b6451e9768b13da3e2e97c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:276 -msgid "" -"To create an ordered list, simply use number signs(#) instead of stars(*). " -"Create nested lists by using a combination of stars and number signs. Nested " -"lists display as lists with different levels of indentation. When nesting " -"lists you may mix bullet lists and numbered lists on each level." -msgstr "" -"Untuk membuat urutan berdasarkan angka Anda dapat menggunakan tanda pagar " -"(#) bukan bintang (*). Anda juga dapat membuat urutan berdasarkan tingkatan " -"menggunakan kombinasi bintang dan pagar. Urutan akan tampil dengan tingkatan " -"yang berbeda." - -# 7965c015f18545eaa595b973b61400cd -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:284 -msgid "\\* Item in a bullet list\\" -msgstr "\\* Item in a bullet list\\" - -# e94c5b328a6e4341a289d3d12cfe2b82 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:286 -msgid "\\* Another item\\" -msgstr "\\* Another item\\" - -# 9a45a1dfb44547c393e1b528e2094325 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:284 -msgid "Item in a bullet list" -msgstr "Item in a bullet list" - -# 6f814512c6774beca6e96ea1b969efdb -# 6067482239a44c2eb375b5f8cdee42b6 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:286 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:290 -msgid "Another item" -msgstr "Another item" - -# 66ccd840f5774e8c8df8a4ad2df10685 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:288 -msgid "\\# Item in a numbered list\\" -msgstr "\\# Item in a numbered list\\" - -# 9319433952a74c68a7b6f3dae585fcde -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:290 -msgid "\\# Another item\\" -msgstr "\\# Another item\\" - -# b69186305a5c49ed93c3a92037e8afbe -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:288 -msgid "Item in a numbered list" -msgstr "Item in a numbered list" - -# b09fdbd04a494f15bd1f23e7eb686aa1 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:292 -msgid "\\* This list has\\" -msgstr "\\* This list has\\" - -# db277db8dc9c460c82d69d6593ec503e -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:294 -msgid "\\*# two levels.\\" -msgstr "\\*# two levels.\\" - -# 7070037ecd8f47d890ab8c21f6ec9267 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:296 -msgid "\\*# Numbers on the second level, and\\" -msgstr "\\*# Numbers on the second level, and\\" - -# b841dadaed3f4c3b86bfaeffdf6bda59 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:298 -msgid "\\* bullets on the first level\\" -msgstr "\\* bullets on the first level\\" - -# 5c64d64f0dc54e2f844a304bde9fead8 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:292 -msgid "This list has" -msgstr "Daftar ini memiliki" - -# 14912d9320b54449b70dceb3f8538674 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:294 -msgid "two levels." -msgstr "two levels." - -# 9b0ca02b792343f3a6a0c9813f155a98 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:296 -msgid "Numbers on the second level, and" -msgstr "Numbers on the second level, and" - -# c9e53b6c21e64a0f9604bbe7ed1029dc -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:298 -msgid "bullets on the first level" -msgstr "bullets on the first level" - -# 55f6c7daee1545f7ac2e7d2774493e5b -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:302 -msgid "Links" -msgstr "**Tautan**" - -# 844dc75fc6644010bd944eb8099efcc9 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:304 -msgid "" -"Links within the OSM wiki are simple. Simply surround the name of the wiki " -"page you want to link to with double brackets [[wiki-link]]. You could add " -"different text for the link by adding a pipe symbol (|) and the text will " -"appear as the link text. If you want a special language version of a wiki " -"page, you should prefix the page name with the two-letter language code and " -"a colon (:). For example, to link to the German version of a page, you would " -"use [[de:wiki-link]]." -msgstr "" -"Tautan dalam wiki OSM cukup sederhana. Cukup tulis disekitar halaman wiki " -"yang Anda ingin berikan tautan dengan dua tanda kurung [[wiki-link]]. Anda " -"dapat menambahkan teks yang berbeda untuk tautan tersebut dengan menambahkan " -"simbol pipa (|) dan teks akan tampil dengan tautan yang sama. Jika Anda " -"ingin bahasa khusus untuk halaman wiki Anda harus menambahkan nama halaman " -"dengan kode bahasa dan titik dua (:) Sebagai contoh, tautan untuk versi " -"jerman, Anda bisa menggunakan [[de:wiki-link]]" - -# 660ffb2429e745f6965593ef6adcc3ad -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:314 -msgid "" -"If you want to link to an article on Wikipedia, prefix the name of the " -"article with “wikipedia:”. For example, [[wikipedia:article-name]]. If you " -"want to link to a wikipedia article in another language, you can add the " -"language code like this: [[wikipedia:de:article-name]]." -msgstr "" -"Jika Anda ingin link yang ada di Wikipedia, tambahkan nama artikel dengan " -"“wikipedia” sebagai contoh [[wikipedia:article-name]]. Jika Anda ingin link " -"wikipedia di dalam bahasa yang berbeda Anda dapat menambahkan kode bahasa " -"seperti ini : [[wikipedia:de:article-name]]." - -# 7fc5f00bbfbf47ff8d5c1b37a7ae1a99 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:320 -msgid "" -"Finally, if you want to create an external link, simply type the URL and it " -"will display as a link. If you want to change the link text, you can use one " -"set of brackets to change the text which links to your URL [external-link " -"link-text]." -msgstr "" -"Terakhir, jika Anda ingin membuat link eksternal cukup dengan mengetik URL " -"dan akan tampil sebagai link. Jika Anda ingin mengubah teks dengan kalimat " -"yang lain Anda dapat menambahkan pemisah untuk mengubah teks dari link Anda " -"URL [external-link link-text]." - -# 271f9a0b6e314c31834a628dd5e4f20f -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:328 -msgid "[[Map Features]]" -msgstr "[[Map Features]]" - -# 4f120ba7f6c34ff58cdfc318688e2b51 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:330 -msgid "[[Map Features | different text but links to same]]" -msgstr "" -"[[Map Features | teks berbeda tetapi menghubungkan halaman web yang sama]]" - -# a0a118f6f98843e8aee2bf7b065cf418 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:328 -msgid "`Map Features `_" -msgstr "`Map Features `_" - -# a06b24227b4d44af9e84ceba9e5fd792 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:330 -msgid "" -"`different text but links to same `_" -msgstr "" -"`different text but links to same `_" - -# 30dba9bbfc2c4e43a666e3cb8ca7e884 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:332 -msgid "[[wikipedia:OpenStreetMap]]" -msgstr "[[wikipedia:OpenStreetMap]]" - -# 3969b6e1c57a4f4c95b04d7dc79c9379 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:334 -msgid "[[wikipedia:OpenStreetMap | different text]]" -msgstr "[[wikipedia:OpenStreetMap | teks berbeda]]" - -# 47cca51cba1845099ffa66d836c98449 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:332 -msgid "" -"`wikipedia:OpenStreetMap `_" -msgstr "" -"`wikipedia:OpenStreetMap `_" - -# 878aa6e76c35467097a77b202275daf4 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:334 -msgid "`different text `_" -msgstr "`different text `_" - -# ccd2381671b14380a9282958b729d068 -# cf5ed0d57c43491a82354bf63c9a6308 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:336 -msgid "http://fieldpapers.org" -msgstr "http://fieldpapers.org" - -# 4beffe826e6942c6b31107da767f521d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:338 -msgid "[http://fieldpapers.org | other text]" -msgstr "[http://fieldpapers.org | teks berbeda]" - -# 1994083724dd4865ab6e43fcfe259f07 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:338 -msgid "`other text `_" -msgstr "`teks lainnya `_" - -# ebd3e81b265a4363aeb4998d4e46f819 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:342 -msgid "Tables" -msgstr "**Tabel**" - -# 2bf4c12bca344543a9ef409022e2ddbc -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:344 -msgid "" -"Tables are probably the trickiest thing to create in a wiki, but easy once " -"you understand how it works. First, you need to understand that a table is " -"really a grid that has some number of rows and some number of columns, and " -"one type of information is contained horizontally in rows and another type " -"vertically in columns." -msgstr "" -"Tabel biasanya suatu yang agak sulit dibuat di wiki akan tetapi akan mudah " -"jika Anda sudah mengerti dan memahami caranya. Pertama Anda harus mengerti " -"bahwa tabel terdiri dari sejumlah kolom dan baris dan informasi yang " -"disampaikan horizontal di dalam baris dan kolom." - -# 61eabc0f9736409f85dc95e5a96e46fb -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:350 -msgid "A basic table needs the following parts:" -msgstr "Dalam membuat tabel dasar-dasar yang dibutuhkan yaitu:" - -# 01b76c4ada154843afe55e9602e124e8 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:352 -msgid "" -"A line with the first two characters '{\\|' indicating the begin of a table." -msgstr "" -"Sebuah baris dengan dua karakter pertama yaitu '{\\|' yang berarti akan " -"memulai tabel" - -# f7f742d0841d4a29926cb96e4ef0d54d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:353 -msgid "" -"An optional line with the first two characters '\\|+' for the caption of the " -"table." -msgstr "" -"Baris pilihan dengan 2 karakter pertama yaitu '\\|+' untuk judul dari tabel." - -# 8d6105362aef4f1a93b2aa2034aeda1c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:355 -msgid "" -"One or more table rows, beginning with '\\|-' and usually no other content." -msgstr "" -"Satu atau lebih baris tabel dimulai dengan '\\|-' dan tidak memiliki konten" - -# 58aa28d655fe40beb9c9d23bf87b399d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:356 -msgid "" -"After each table row one or more lines with table cells and their text/" -"content. A table cell has as the first character a pipe symbol (\\|) and the " -"second character cannot be either plus (+) or minus (-) because these two " -"are reserved for caption and table row respectively." -msgstr "" -"Setelah setiap baris terisi dari sel dan teksnya. Sel tabel tersusun dari " -"karakter pertama yaitu simbol pipa (|) dan karakter kedua tidak dapat " -"ditambahkan (+) atau (-) karena diganti dengan keterangan dan baris dari " -"masing-masing kolom." - -# 89b9e87aa378446991cf31c3ecdd7d4b -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:360 -msgid "" -"A line with the first two characters '\\|}' indicating the end of a table." -msgstr "Baris dengan dua karakter pertama '\\|}' menunjukkan akhir dari tabel." - -# 6579ca222f69452f8cae1a57f606d64d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:362 -msgid "" -"It is good practise and increases readability to use a space as the second/" -"third character, thus avoiding any ambiguity." -msgstr "" -"Hal yang bagus untuk dipraktikan dan meningkatkan kemampuan untuk " -"menggunakan sebuah jarak untuk karakter kedua/ketiga sehingga akan " -"menghindari kebingungan." - -# 2fde27e749f0488f8a9b0f2a62869b16 -# 9cea61ad86f642028bd412392e07f39d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:365 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:382 -msgid "**Example wiki source** ::" -msgstr "**Contoh wiki** ::" - -# 333f9bf41baa45febf412a7b6ada83ec -# af975730748c4726b8d7493f7ba3663c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:378 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:394 -msgid "**Result**" -msgstr "**Hasil**" - -# 78a43f87a98e445cbb802c80030f4971 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:399 -msgid "" -"Play around with all these different techniques for formatting your wiki. To " -"see an example of all of these things, take a look at the test page we " -"created here: https://wiki.openstreetmap.org/wiki/User:MapJeff/testpage" -msgstr "" -"Mempelajari berbagai teknik yang berbeda untuk memformat wiki Anda. Jika " -"Anda ingin sebuah contoh dari semua contoh yang ada di atas Anda dapat " -"melihat halaman tes yang saya buat disini : \n" -"https://wiki.openstreetmap.org/wiki/User:MapJeff/testpage" - -# 64fb510450e84b238a370f58fe861692 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:403 -msgid "" -"Compare the wiki text to the way it is formatted when you are viewing it. " -"Find more information on editing at http://wiki.openstreetmap.org/wiki/Help:" -"Wiki-Editing." -msgstr "" -"Bandingkan teks wiki format Anda dengan teks yang ada di halaman saya. Anda " -"dapat mencari informasi lainnya dalam mengedit di http://wiki.openstreetmap." -"org/wiki/Help:Wiki-Editing." - -# 8fa94fceaec147199288253657cd7718 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:408 -msgid "5. Creating a new page" -msgstr "5. Membuat halaman baru" - -# cc980a21c15d4d85b1ae130c48d747b6 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:410 -msgid "" -"You can create any wiki page the same way that you have created your user " -"page. However, before you run off creating hundreds of pages, it is " -"important to understand a few guidelines for how to best contribute. Some " -"key things to keep in mind are:" -msgstr "" -"Anda dapat membuat halaman wiki apapun seperti yang telah Anda lakukan di " -"halaman user Anda. Akan tetapi sebelum Anda mencoba membuat halaman Anda " -"penting buat Anda untuk mengetahui dan memahami beberapa pedoman untuk " -"berkontribusi di wiki ini. Hal-hal yang perlu diingat yaitu:" - -# 9375f68c3edd42a5a56a19018719c7e4 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:417 -msgid "Before creating a page" -msgstr "**Sebelum membuat halaman**" - -# 4ee636e54fa74b68acbd2cc908cfcefc -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:419 -msgid "" -"Don’t duplicate. When you want to create a new wiki page, do a comprehensive " -"search of the wiki to ensure that someone else hasn’t already created a page " -"about the same topic. You can search for existing pages using the search box " -"in the upper right." -msgstr "" -"Jangan meniru. Ketika Anda ingin membuat sebuah halaman lakukan peninjauan " -"dan pencarian di wiki untuk memastikan bahwa topik yang Anda ingin tulis " -"belum dibuat oleh siapapun. Anda dapat mencari halaman yang sudah ada di " -"kotak pencarian di sebelah kanan atas." - -# 7ef4573e5a40444d8bcae3ae0259d855 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:425 -msgid "" -"If a page that you want to create already exists, but you think it could be " -"better, you should improve it, instead of creating an entirely new page." -msgstr "" -"Jika halaman yang Anda ingin buat telah ada, tapi Anda ingin memperbaikinya " -"Anda lebih baik mengedit halaman tersebut daripada membuat halaman yang baru." - -# 1d3d1444e9fb469dae6d511e2fe2cc38 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:428 -msgid "" -"Choose a descriptive name, capitalise new words and don’t use spaces or " -"dashes. The Map Features page for example, is named Map_Features, making the " -"link: http://wiki.openstreetmap.org/wiki/Map_Features." -msgstr "" -"Pilihlah nama yang dapat mendeskripsikan, gunakan huruf besar di setiap " -"kata. Fitur peta sebagai contoh diberi nama Map_Features, buat tautan : " -"http://wiki.openstreetmap.org/wiki/Map_Features" - -# 1e6022fc1f634708ad5fbbdff559752c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:434 -msgid "When structuring a page" -msgstr "**Ketika membuat/menyusun halaman**" - -# 97ae38609c874fb3b721cef8a677190c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:436 -msgid "Divide your page into sections and subsections." -msgstr "Bagi halaman Anda ke dalam sesi dan sub sesi" - -# d035d97bfe794a36ab01519a14c0078b -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:438 -msgid "" -"Create an “Introduction” section at the top of the page to give a brief " -"explanation of the page." -msgstr "" -"Buat pendahuluan di tiap bagian atas halaman untuk memberikan penjelasan " -"dari halaman tersebut." - -# 56f94ddced254b9891a8dd686f9c2436 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:441 -msgid "" -"Format different parts of your pages as tables or lists, when appropriate." -msgstr "" -"Buat bagian-bagian berbeda dari halaman Anda seperti tabel atau daftar jika " -"dibutuhkan." - -# c75512151ca34c81be07e9ad0f581dcb -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:443 -msgid "" -"When in doubt, look at other pages on the wiki for inspiration about how to " -"format things. Remember that you can look at the code for any page by " -"clicking on the edit tab and seeing how other users format their text." -msgstr "" -"Jika Anda ragu, lihat ke halaman wiki yang lain untuk mendapatkan inspirasi " -"bagaimana untuk membuat format sebuah halaman. Ingat, Anda dapat melihat " -"kode dari halaman manapun dengan meng-klik pada tab edit dan liat bagaimana " -"penulis memberikan format pada tulisan mereka." - -# 29b3e8d458d54cd0a8913ef5cb26c6e1 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:449 -msgid "6. Uploading files and images" -msgstr "6. Upload File dan Foto/Gambar" - -# 7f06ec0bad5f480595c9313024e620bf -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:451 -msgid "" -"To add or insert files or images on wiki pages, first we must upload the " -"file itself to the wiki." -msgstr "" -"Untuk menambahkan atau memasukkan file atau gambar pada halaman Wiki, " -"terlebih dahulu kita harus meng-upload file atau gambar tersebut ke situs " -"Wiki." - -# 0089417e17ec41ccb78990579b1494a1 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:455 -msgid "Uploading files" -msgstr "Meng-upload file" - -# 7a33af715f9d46de8eb8264c8e2a418c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:457 -msgid "Go to https://wiki.openstreetmap.org and make sure you are logged in." -msgstr "" -"Buka situs https://wiki.openstreetmap.org dan pastikan Anda masuk terlebih " -"dahulu" - -# 5bedf7db13a44ddc89d2232825925d49 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:459 -msgid "" -"Click :guilabel:`Upload file` on the left side of the screen, under the " -"Tools menu." -msgstr "" -"Klik :guilabel:`Unggah berkas` yang berada di sisi kiri layar, dibawah menu " -"Peralatan." - -# 5c4aa003261844ef93a98bb1a10c7ab5 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:465 -msgid "" -"Click :guilabel:`Choose File`. Find the file that will be uploaded from your " -"computer." -msgstr "" -"Klik :guilabel:`Choose File` pada Nama berkas sumber. Cari file yang akan di-" -"upload pada komputer Anda." - -# 5efad4546a7a43b08301a7380cf3979c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:471 -msgid "" -"Optionally, you may enter a new filename for the file, a summary, and a " -"licence." -msgstr "" -"Sebagai pilihan, Anda dapat memasukkan nama file untuk file, ringkasan, dan " -"lisensi." - -# 24cf3306e6fb48a3943b9b01516b58ab -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:474 -msgid "" -"After selecting the file, click :guilabel:`Upload file` at the bottom of the " -"page. A page like this will appear, with your file shown:" -msgstr "" -"Setelah memilih file, klik “Muatkan berkas” di bagian bawah halaman. " -"Kemudian akan tampil halaman seperti ini:" - -# 741e523866cf42aeac0551ea16406c2e -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:481 -msgid "" -"This shows that your file or image uploaded successfully. The next step is " -"to add it on to a wiki page." -msgstr "" -"Ini menunjukkan bahwa file atau gambar Anda berhasil ter-upload! Langkah " -"selanjutnya adalah menambahkan ke dalam halaman wiki." - -# 0454521cf36c472daaf3fcc91f5e293d -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:485 -msgid "Insert file / image in the wiki page" -msgstr "Memasukkan file/gambar pada halaman Wiki." - -# 6ae28012a6d9445884e88915dc53af9b -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:487 -msgid "" -"Go to the page where you wish to insert your file of image, and click :" -"guilabel:`Edit`." -msgstr "" -"Pergi ke halaman dimana Anda dapat memasukkan file/gambar, dan klik :" -"guilabel:`Edit`." - -# 6a3498ee4ff2451782a123958b1788bb -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:490 -msgid "" -"Copy the filename that you uploaded previously, for example: :kbd:`File:" -"Mapping jakarta.JPG` and :kbd:`File:Pemetaan dengan OSM.pdf`." -msgstr "" -"*Copy* nama file yang sudah Anda upload sebelumnya. Contoh: :kbd:`File:" -"Mapping jakarta.JPG` dan :kbd:`File:Pemetaan dengan OSM.pdf`." - -# a94209fa98aa4fb5aa2864bac13642a7 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:493 -msgid "" -"Paste the filename(s) you have uploaded into the editing box, with two sets " -"of brackets around it:" -msgstr "" -"*paste* nama file (filename) yang telah Anda *upload* kedalam kotak " -"mengedit, dengan tanda kurung diantaranya." - -# 24a566510d0b458d936995e5b54906ec -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:499 -msgid "Click :guilabel:`Save page`." -msgstr "Klik :guilabel:`Simpan Halaman`." - -# 65e7690f4cdd4f19b47b2486c9b681db -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:501 -msgid "In our example, the result looks like this:" -msgstr "Dalam contoh, hasilnya akan tampak seperti ini:" - -# 85332991295040b88e2d261629c1abb1 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:507 -msgid "7. Translating pages" -msgstr "7. Penerjemahan Halaman" - -# dd2ee2ac4994435c96098aad773e46a8 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:509 -msgid "" -"One very useful thing that can be done on the wiki is to translate important " -"pages into your language. As you’ve already seen, many wiki pages have links " -"at the top where you can switch languages. However, this is only available " -"for pages that have been translated, and that include a special tag at the " -"top - {{Languages|page_name}}" -msgstr "" -"Salah satu hal yang paling berguna yang bisa dilakukan dalam wiki ini adalah " -"kita dapat menerjemahkan halaman-halaman yang kita anggap penting ke dalam " -"bahasa kita. Seperti yang telah Anda lihat, banyak halaman yang ada di wiki " -"memiliki link yang berada pada atas halaman yang dapat diubah ke dalam " -"berbagai bahasa. Akan tetapi hal ini hanya dapat dilakukan pada halaman yang " -"sudah diterjemahkan sebelumnya dan juga termasuk tag khusus yang ada di atas " -"halaman. {{Languages|page_name}}" - -# b52aa7db84cd47b591812d5e58855b68 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:516 -msgid "" -"When developing the OSM community in your country, it is very useful for key " -"wiki pages to be translated into your language. Adding translated pages is " -"easy, as we will see here." -msgstr "" -"Ketika mengembangkan komunitas OSM di negara Anda, akan sangat bermanfaat " -"bagi halaman-halaman yang ada di wiki untuk diterjemahkan ke dalam bahasa " -"Anda. Menerjemahkan halaman yang ada di wiki sangatlah mudah, seperti yang " -"akan kita lihat ini." - -# 61c6a185cd244ba5b73c99fa75fbd400 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:520 -msgid "" -"The names of pages are always created in English, but different versions of " -"the same page can be created by adding a language code into the URL. For " -"example, the Map Features page is at http://wiki.openstreetmap.org/wiki/" -"Map_Features" -msgstr "" -"Nama-nama dari halaman yang ada biasanya dibuat dalam bahasa inggris tapi " -"versi yang berbeda pada halaman yang sama dapat dibuat dengan menambahkan " -"kode bahasa ke dalam URL. Contohnya halaman Map Features ada di\n" -"http://wiki.openstreetmap.org/wiki/Map_Features" - -# 9ee546fd67f24f2e91b5d745d2cb0db0 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:525 -msgid "" -"If you want the Spanish version of this page, it is available at http://wiki." -"openstreetmap.org/wiki/ES:Map_Features" -msgstr "" -"Jika Anda menginginkan versi dalam bahasa Spanyol, tersedia di http://wiki." -"openstreetmap.org/wiki/ES:Map_Features" - -# ce05d550bb1f4532a792ac930cd3381e -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:528 -msgid "" -"If a page exists that you want to translate, simply visit the URL with your " -"language code and a colon (:) preceding the page name. For example, if we " -"wanted to translate this page into Indonesian, we would visit http://wiki." -"openstreetmap.org/wiki/ID:Map_Features." -msgstr "" -"Jika Anda ingin menerjemahkan sebuah halaman, Anda dapat mengunjungi ke URL " -"dengan menggunakan kode bahasa Anda dan menggunakan tanda titik dua (:) pada " -"awal nama halaman. Contoh jika Anda ingin menerjemahkan halaman Map Feature " -"ke dalam bahasa Indonesia Anda dapat mengunjungi. http://wiki.openstreetmap." -"org/wiki/ID:Map_Features" - -# 62a9bce403144a40b2b3cfeb4226b1b3 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:533 -msgid "Then click :guilabel:`Edit` to create this page." -msgstr "Lalu klik :guilabel:`Edit` untuk membuat halaman ini." - -# 9b1b5f2b56f94524ac2bd020d7e713c9 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:535 -msgid "" -"The easiest way to add a translation is to go to a page in English, click :" -"guilabel:`Edit`, and copy all of the wiki text to your Clipboard. Then edit " -"the page in your own language, pasting in the original English text and " -"translating it piece by piece. This will allow you to keep all of the " -"original formatting and links correctly, but translate the English text into " -"your own language." -msgstr "" -"Cara paling mudah untuk menambahkan terjemahan adalah lihat halaman di dalam " -"bahasa inggris, klik :guilabel:`Edit`” dan *copy* semua wiki teks yang ada " -"ke dalam Clipboard Anda lalu edit halaman ini ke dalam bahasa Anda, *paste* " -"teks asli ke dalam bahasa Inggris dan terjemahkan ke dalam bahasa Anda. Ini " -"akan membuat Anda akan tetap menyimpan format asli dan tautan halaman " -"tersebut, tapi teks dalam bahasa Inggris telah diterjemahkan ke dalam bahasa " -"Anda." - -# 8e4a9d573a304e2b8b39b87913e15e67 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:543 -msgid "8. Watching pages" -msgstr "8. Cara Melihat Daftar Perubahan" - -# 06d0d8b72d3d4c21a60bc282e47b0ec7 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:545 -msgid "" -"You may want to keep an eye on pages that you have edited yourself, or that " -"you have an interest in. To do this, you can add specific pages to your :" -"guilabel:`Watchlist` which keeps a record of recent changes to pages, so " -"that you will know when others have edited them." -msgstr "" -"Anda dapat menyimpan halaman yang telah Anda edit ataupun halaman yang " -"menurut Anda menarik. Untuk melakukan ini Anda dapat menambahkan halaman " -"tertentu ke dalam :guilabel:`Watchlist` Anda. Ini akan menyimpan perubahan " -"yang Anda lakukan pada halaman tersebut jadi Anda akan mengetahui ketika ada " -"orang lain yang mengeditnya kemudian." - -# 8ccd023a9f4a42289f201fddc7765db0 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:551 -msgid "" -"To add a page to your watchlist, click on the star at the top of the page " -"section:" -msgstr "" -"Untuk menambahkan halaman ke dalam WatchList Anda, klik tanda bintang di " -"bagian atas halaman:" - -# b45573a66bd24cb5b7ed4104bccbbf69 -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:557 -msgid "" -"Then, you can view your watchlist by clicking on :guilabel:`Watchlist` at " -"the top of the page:" -msgstr "" -"Lalu Anda dapat melihat WatchList Anda dengan klik pada :guilabel:" -"`Watchlist` yang ada pada bagian atas halaman:" - -# 3464d8c02e5841489488876911cb750c -#: ../../source/training/old-training/intermediate/osm/306-editing-wiki-osm.rst:563 -msgid "" -"On the Watchlist page you choose to show changes to your watched pages " -"within the past hours, days or since you started watching the page." -msgstr "" -"Pada Watchlist halaman Anda akan menunjukkan perubahan yang Anda lakukan " -"dalam beberapa jam yang lalu, hari atau dari sejak Anda melihat halaman " -"tersebut." diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/index.po b/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/index.po deleted file mode 100644 index cd0815cd..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/osm/index.po +++ /dev/null @@ -1,25 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# e636a1a85f7647f1a41a7f9205dc9183 -#: ../../source/training/old-training/intermediate/osm/index.rst:4 -msgid "Unit 3: Data Collection Using OpenStreetMap Intermediate Level" -msgstr "Unit 3: Pengumpulan Data Menggunakan OpenStreetMap Tingkat Menengah" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/400-introduction.po b/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/400-introduction.po deleted file mode 100644 index ec8e0a5b..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/400-introduction.po +++ /dev/null @@ -1,297 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# mahardika fadmastuti , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:35+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 3e0c547a385a4eae8700a1fc57bd1edf -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:6 -msgid "Introduction" -msgstr "Pengantar" - -# e47c11362a524a1e80fa9fefb6a3e1e0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:9 -msgid "Disclaimer" -msgstr "Ketentuan" - -# 849144f984ff4a369230382da0e4c810 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:11 -msgid "" -"This document is an initial draft and is still in the reviewing phase by " -"these parties:" -msgstr "" -"Dokumen ini merupakan rancangan awal dan masih dalam tahap peninjauan oleh " -"pihak-pihak sebagai berikut:" - -# a1f5f511de7d40b9b0ee4a4c7271985d -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:13 -msgid "Badan Nasional Penanggulangan Bencana (|BNPB|)" -msgstr "Badan Nasional Penanggulangan Bencana (|BNPB|)" - -# 662afd368a4b4a5fb3ae46288e82d979 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:14 -msgid "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" -msgstr "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" - -# 889f2b60f42c49c9be19d5f43cac46b0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:15 -msgid "Humanitarian OpenStreetMap Team (|HOT|)" -msgstr "Humanitarian OpenStreetMap Team (|HOT|)" - -# 7cec1f77f02848c48e1ea9c7e4ed144d -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:17 -msgid "" -"All contents and materials in this document may be changed without public " -"notice." -msgstr "" -"Seluruh isi dan materi dalam dokumen ini kemungkinan masih dapat mengalami " -"perubahan tanpa pemberitahuan publik." - -# b1b0acbc24594bae9fe57cdb7445fcf9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:21 -msgid "Licence" -msgstr "Lisensi" - -# e22bcf288c4a48beacd4fa9c45897b47 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:25 -msgid "" -"All contents and materials in this document are licensed as Creative Commons " -"Attribution Australia (CCbyA)." -msgstr "" -"Seluruh isi dan materi pada dokumen ini berlisensikan Creative Commons " -"Attribution Australia (CCbyA)." - -# eae3f44772374baa914000e0d78d9fac -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:28 -msgid "You are free:" -msgstr "Anda dapat secara bebas:" - -# 970794adab0448c7b58421613595f9b9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:30 -msgid "to copy, distribute, display, and perform the work" -msgstr "menyalin, mendistribusikan, menampilkan, dan melakukan pekerjaan" - -# a9291574e5c2403e8c378c2eff53dd84 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:31 -msgid "to make derivative works" -msgstr "membuat karya-karya turunan" - -# 7aa0021d1fcb49db98fdc67617fa789c -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:32 -msgid "to make commercial use of the work" -msgstr "membuat penggunaan komersial dari karya tersebut" - -# 715ccdfa47e247e38c2adb4044668175 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:34 -msgid "You must give the original author credit." -msgstr "Anda harus mencantumkan kredit penulis asli." - -# 74f7194f833e44e1b184e1d3ac6cf43c -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:36 -msgid "" -"More information about CCbyA License: http://creativecommons.org/licenses/" -"by/3.0/au/deed.en_GB" -msgstr "" -"Keterangan lebih lanjut mengenai Lisensi CCbyA: http://creativecommons.org/" -"licenses/by/3.0/au/deed.en_GB" - -# 0ba7ba0e1ea04f72b06757108e31fb55 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:40 -msgid "About Us" -msgstr "Tentang Kami" - -# 6f6c2b1e75344651a5b33368786fcb87 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:42 -msgid "Badan Nasional Penanggulangan Bencana (BNPB)" -msgstr "Badan Nasional Penanggulangan Bencana (BNPB)" - -# 6f29b432b9e94042b52f80c6a90a930b -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:46 -msgid "" -"BNPB is Indonesia’s National Disaster Management Agency. |BNPB| is a non-" -"departmental ministerial-level government agency, tasked with providing " -"guidance and direction to the efforts of disaster management that includes " -"disaster prevention, emergency response, rehabilitation and reconstruction " -"in a fair and equal way. |BNPB| functions as a policy maker regarding " -"refugee/IDP management for effective and efficient response. It coordinates " -"the implementation of disaster management activities in a planned, " -"integrated and comprehensive way." -msgstr "" -"BNPB adalah Badan Nasional Penanggulangan Bencana Indonesia. |BNPB| " -"merupakan lembaga pemerintah non-departemen di tingkat kementrian yang " -"bertugas untuk menyediakan panduan dan pengarahan di bidang manajemen " -"bencana, termasuk pencegahan bencana, respon keadaan darurat, rehabilitasi, " -"dan rekonstruksi secara adil dan merata. BNPB memiliki fungsi sebagai " -"pembuat kebijakan terkait manajemen pengungsi (IDP) untuk bertindak secara " -"cepat dan merespon secara efisien. BNPB juga mengkoordinasikan implementasi " -"dari aktifitas manajemen bencana secara terencana, terintegrasi, dan " -"komprehensif." - -# b28a3a76cf87424ebbc9a44f286c3b40 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:56 -msgid "http://bnpb.go.id" -msgstr "http://bnpb.go.id" - -# 9c8f510bde6747d4bbf6a5c2d4498727 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:59 -msgid "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" -msgstr "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" - -# ff54f6750d024dbbae82d5b89baa36ca -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:63 -msgid "" -"The Australia-Indonesia Facility for Disaster Reduction (|AIFDR|) is a joint " -"initiative between the governments of Australia and Indonesia. They work to " -"strengthen Indonesia's ability to reduce the impact of disasters. The " -"Australian and Indonesian governments at a special ceremony on 15 July 2010 " -"launched the Australia-Indonesia facility. The launch marks an important " -"event in the strong relationship now shared by both countries and their " -"united commitment to better prepare for and respond to natural disasters in " -"Indonesia." -msgstr "" -"Australia-Indonesia Facility for Disaster Reduction (AIFDR, Fasilitas " -"Australia-Indonesia untuk pengurangan bencana) merupakan inisiatif gabungan " -"antara pemerintah Australia dengan pemerintahIndonesia. AIFDR bekerja untuk " -"memperkuat kemampuan Indonesia untuk mengurangi dampak bencana. AIFDR " -"diluncurkan oleh pemerintah Australia dan pemerintah Indonesia dalam sebuah " -"seremoni khusus pada tanggal 15 Juli 2010. Peluncuran ini menandakan sebuah " -"kejadian penting dalam hubungan kuat yang saat ini terjalin antara kedua " -"negara dan komitmen mereka untuk mempersiakan dan merespon bencana alam di " -"Indonesia lebih baik." - -# a7a5950497fa4c30b342802d9bc67d9f -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:72 -msgid "http://aifdr.org" -msgstr "http://aifdr.org" - -# 6b4c6e5e7d7e4be296002e2f47a608a2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:75 -msgid "Humanitarian OpenStreetMap Team (HOT)" -msgstr "Humanitarian OpenStreetMap Team (HOT)" - -# 58f0fb0a0ab64766a9bf2d2671bf9a6a -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:79 -msgid "" -"Free, collaborative maps are uniquely valuable to humanitarian work, " -"especially in places where base map data is often scarce, out-of-date, or " -"rapidly changing. OpenStreetMap is a web project to create a free and open " -"map of the entire world, built entirely by volunteers surveying with GPS, " -"digitising aerial imagery, and collecting and liberating existing public " -"sources of geographic data. The Humanitarian OpenStreetMap Team (|HOT|) is " -"an initiative to apply the principles and activities of open source and open " -"data sharing towards humanitarian response and economic development." -msgstr "" -"Peta gratis dan kolaboratif mempunyai keunikan yang berharga untuk pekerjaan " -"kemanusiaan, terutama di tempat-tempat dimana peta dasar sangat jarang " -"ditemukan, datanya sudah lama, atau seringkali berubah. OpenStreetMap " -"merupakan proyek berbasis website untuk membuat peta dunia yang gratis dan " -"terbuka, dibangun oleh volunteer yang melakukan survei dengan GPS, " -"mendigitasi citra satelit, dan mengumpulkan juga membebaskan sumber data " -"geografis publik yang sudah ada . Tim Kemanusiaan OpenStreetMap (HOT) " -"merupakan sebuah inisiatif yang baru untuk mengaplikasikan prinsip dan " -"aktifitas dari sumber terbuka dan berbagi data terbuka untuk menuju respon " -"kemanusiaan dan pembangunan ekonomi." - -# 21ce44dad0064bc8aa23cb3d24262710 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:88 -msgid "http://hot.openstreetmap.org" -msgstr "http://hot.openstreetmap.org" - -# f7d9e7655212416aae6739d57edc006f -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:91 -msgid "Universitas Gadjah Mada" -msgstr "Universitas Gadjah Mada" - -# 9a7ee698ff6447e7b8d54c600761fb97 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:95 -msgid "" -"Universitas Gadjah Mada (internationally known as Gadjah Mada University, or " -"UGM) is a top research university located in Yogyakarta, Indonesia. The " -"Department of Geodetic Engineering and Faculty of Engineering focuses on " -"education, research, and community services related to geodesy and geomatics " -"engineering, including acquisition, analysis, and uses of detailed and " -"accurate geospatial data and large-scale maps using open source geospatial " -"software for disaster management." -msgstr "" -"Universitas Gadjah Mada (secara internasional dikenal sebagai Gadjah Mada " -"University ; Disingkat : UGM) adalah salah satu pusat penelitian tingkat " -"universitas yang bertempat di Yogyakarta, Indonesia. Departemen Teknik " -"Geodesi, Fakultas Teknik khususnya fokus dalam kegiatan pengajaran, " -"penelitian, dan pengabdian kelompok yang berkaitan dengan geodesi dan teknik " -"geomatik, termasuk akuisisi, analisis, dan penggunaan dari geospasial data " -"yang detil dan akurat serta dengan peta berskala besar menggunakan software " -"geospasial bersifat open source dalam manajemen bencana." - -# 40d616d1222847edaf8f43686bc993ad -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:103 -msgid "http://ugm.ac.id" -msgstr "http://ugm.ac.id" - -# 2717c8b33f79438d93ae4804659e70a9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:107 -msgid "Preface" -msgstr "Pengantar" - -# 2fefb69118fc4731931584ec79bd5d0c -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:109 -msgid "" -"By now you should be adept in data collection techniques and have a solid " -"foundation in analysis with QGIS. In this unit we will be focusing again on |" -"project_name| and QGIS skills that aid in contingency planning." -msgstr "" -"Selamat datang di Unit Menengah dalam Analisis Spasial. Mulai sekarang Anda " -"seharusnya sudah mahir dalam teknik pengumpulan data dan memiliki dasar yang " -"cukup kuat dalam analisis menggunakan QGIS. Dalam unit ini kita akan fokus " -"lagi ke dalam keterampilan |project_name| dan QGIS yang berguna dalam " -"rencana kontinjensi." - -# b5da1a3b18df4f31ac0a15b5ff4d0496 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:114 -msgid "" -"First, we will undertake a brief review of unit 2, to solidify the QGIS " -"skills that we studied previously. Then we will begin working on another |" -"project_name| project using flood data as our hazard. We will consider the " -"best possible evacuation routes and locations for IDP camps, calculate " -"damages and losses and learn how to display them on a map." -msgstr "" -"Pertama, kita akan sedikit mengulang unit 2, untuk meyakinkan bahwa kita " -"masih mengingat semua keterampilan dalam mengoperasikan QGIS yang telah kita " -"pelajari sebelumnya. Kemudian kita akan mulai mengerjakan proyek |" -"project_name| lainnya menggunakan data banjir sebagai data ancaman bencana. " -"Kita akan mempertimbangkan kemungkinan rute evakuasi yang terbaik dan lokasi " -"untuk tempat pengungsian, perhitungan dampak dan kerugiannya, serta belajar " -"bagaimana menampilkannya dalam sebuah peta." - -# beae0b301b734d7baf23491549d4eec1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:121 -msgid "" -"This unit covers much of what we have been working toward. We will bring " -"together the data which we now know how to collect in OSM, QGIS spatial " -"analysis skills and the power of |project_name| to help develop effective " -"and informative contingency plans." -msgstr "" -"Unit ini mencakup lebih banyak dari apa yang akan kita pelajari ke depan. " -"Kita akan menampilkan bersama-sama data yang telah kita ketahui sekarang " -"bagaimana cara mengumpulkannya menggunakan OpenStreetMap, keterampilan " -"analisis spasial menggunakan QGIS, dan kekuatan dari |project_name| untuk " -"membantu membangun rencana kontinjensi yang efektif dan informatif." - -# 9b036a2bdce443cc864481853afc4342 -#: ../../source/training/old-training/intermediate/qgis-inasafe/400-introduction.rst:127 -msgid ":ref:`Go to first module --> `" -msgstr ":ref:`Pergi ke modul pertama --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/401-review-qgis.po b/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/401-review-qgis.po deleted file mode 100644 index b81f0160..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/401-review-qgis.po +++ /dev/null @@ -1,478 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2014 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013-2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:36+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# d6c4d0219a6c45f8969380ff70f8728d -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:6 -msgid "Module 1: QGIS Review" -msgstr "Modul 1: Review QGIS" - -# 747253862c4048ed8ac5789404125592 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# cadcd7f2b9674951880dbde8f7e028f2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:10 -msgid "Identify data types in QGIS" -msgstr "Mengidentifikasi tipe data QGIS" - -# 4f936e7355f84b06938046d5fe700467 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:11 -msgid "Understand symbology" -msgstr "Memahami simbologi" - -# 4d3d6c64d4974605b3321f6692fbe273 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:12 -msgid "Understand map layout" -msgstr "Memahami layout peta " - -# d848cdd28b2247e39f25479f991e2362 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:14 -msgid "" -"Before we dive deeper into |project_name|, we will review the QGIS " -"techniques that we covered in Unit 2. We will once more go over some of they " -"key aspects of QGIS, including adding vector and raster layers, symbolising " -"layers and using the Print Composer. If you feel competent in all of these " -"areas, feel free to jump ahead to the :ref:`next module `, but otherwise follow along for a brief review!" -msgstr "" -"Sebelum kita masuk lebih dalam ke |project_name|, kita akan melakukan review " -"teknik-teknik menggunakan QGIS yang telah kita pelajari pada Unit 2. Sekali " -"lagi kita akan mengulang beberapa aspek kunci pada QGIS, termasuk " -"menambahkan layer vektor dan raster, melakukan simbolisasi layer, dan " -"menggunakan Print Composer. Jika Anda merasa telah berkompeten dalam hal-hal " -"tersebut, Anda dapat melewati modul ini dan menuju :ref:`modul selanjutnya " -"`, namun jika Anda ingin melakukan " -"sedikit tinjauan ulang, lanjutkan modul ini! " - -# 23db30363e304562a357798269f3de69 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:24 -msgid "1. Data types in QGIS" -msgstr "1. Tipe Data dalam QGIS" - -# 236421619aeb460c92ccd6c8e9d255a3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:26 -msgid "" -"As you may recall, there are two types of data that we often use in QGIS: " -"raster and vector data. Raster data is characterised as an array of data " -"which consists of rows and columns, like the pixels in an image. Vector " -"data, on the other hand, consists of discrete features made of points and " -"lines, and their position is defined by coordinates." -msgstr "" -"Seperti yang Anda ketahui, ada dua tipe data yang biasa kita gunakan pada " -"QGIS: data raster dan data vektor. Data raster ditandai dengan rangkaian " -"data yang terdiri dari baris dan kolom, seperti piksel pada sebuah gambar. " -"Sedangkan data vektor, terdiri dari fitur-fitur diskrit yang terdiri dari " -"titik dan garis, dan posisinya didefinisikan oleh koordinat. " - -# 17f6447866804c6697c2509790712365 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:34 -msgid "1.1 Adding vector data" -msgstr "1.1 Menambahkan Data Vektor" - -# dd1cf5f924154c36a6ddfe9148875e3b -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:36 -msgid "Let’s add vector data to a new project." -msgstr "Mari kita tambahkan data vektor pada proyek baru." - -# 5edc5f2bead148aaa537c7672b46365b -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:38 -msgid "Open a new QGIS project. Your map and Layers panel should be empty." -msgstr "" -"Buka proyek QGIS yang baru. Peta dan daftar layer Anda akan tampak masih " -"kosong." - -# b98d3af00a1a41468f6503248a762b4b -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:43 -msgid "" -"There are two ways to add a new vector layer to your project. Navigate to :" -"menuselection:`Layer ‣ Add Vector Layer...` on the menu or click on the :" -"guilabel:`Add Vector Layer` button on the toolbar:" -msgstr "" -"Terdapat dua cara untuk menambahkan sebuah layer vektor baru pada proyek " -"Anda. Anda dapat mengarahkan ke menu :menuselection:` Layer > Tambah Lapisan " -"> Tambahkan Layer Vektor...` atau Anda dapat klik pada tombol :guilabel:" -"`Tambahkan Layer Vektor` pada toolbar:" - -# 9f9e368b4b7c4eb0b875cc081f808a5d -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:51 -msgid "" -"If you can’t find the toolbar button, right-click the toolbars and make sure " -"that the box is checked next to :guilabel:`File`." -msgstr "" -"Jika Anda tidak dapat menemukan tombol toolbar, klik kanan pada toolbar dan " -"pastikan kotak toolbar :guilabel:`Mengatur Layer` sudah tercentang." - -# 6343f3f6e8dc40b480ec4c58603c2a50 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:54 -msgid "The :guilabel:`Add vector layer` dialog looks like this:" -msgstr "Dialog :guilabel:`Tambahkan Layer Vektor` tampak seperti ini:" - -# c6aed03b593e42649428d2d6606a4140 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:59 -msgid "" -"Click on the :guilabel:`Browse` button and navigate to your exercise data. " -"Go into the :file:`qgis/Sleman/` directory and select :file:" -"`Jalan_Sleman_OSM`, :file:`POI_Sleman` and :file:`Kecamatan_Sleman`. Select " -"multiple files by holding the :kbd:`CTRL` key on your keyboard as you click " -"each file. Click :guilabel:`Open` and then :guilabel:`Open` again." -msgstr "" -"Klik pada tombol :guilabel:`Navigasi` dan Telusuri untuk data latihan Anda. " -"Pergilah ke direktori *qgis/Sleman/* dan pilih :file:`Jalan_Sleman_OSM`, :" -"file:`POI_Sleman` dan :file:`Kecamatan_Sleman`. Anda dapat memilih lebih " -"dari satu file dengan menahan tombol :kbd:`CTRL` pada keyboard dan klik tiap " -"file. Klik :guilabel:`Open` lalu :guilabel:`Open` lagi." - -# e0cb4522d80f4ab8bb0c68f60b17f545 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:67 -msgid "Your map canvas will now look like this:" -msgstr "Peta Anda sekarang akan terlihat seperti ini: " - -# ee9a6cdf381749f9897afce1edc21736 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:72 -msgid "Great! You’ve added some vector data to your map." -msgstr "Sekarang Anda telah menambahkan beberapa data vektor pada peta Anda." - -# defd7feac9304f20bfc17b3b94532dea -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:74 -msgid "Remember that there are three kinds of vectors:" -msgstr "Jangan lupa terdapat tiga jenis data vektor" - -# 972b78f1653945158a71d21ab2de093c -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:76 -msgid "points" -msgstr "titik" - -# c665a8cf4a2c49e18a27dac75d71663a -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:77 -msgid "lines" -msgstr "garis" - -# 7629485dd85343b19befd9cbea737dfe -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:78 -msgid "polygons" -msgstr "poligon" - -# 9f073691115d466d94736191a7186765 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:80 -msgid "We have just added one layer of each type." -msgstr "Kita baru saja menambahkan satu layer dari masing-masing jenis data." - -# fbb704bfdfdf40a0906c72588b250ef5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:84 -msgid "1.2 Adding Raster Data" -msgstr "1.2 Menambahkan Data Raster" - -# 24a5504da1274709b82c669400b935c7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:86 -msgid "" -"Raster data has different characteristics than vector data. Raster data is " -"composed of rows and columns which form small boxes (known as pixels). The " -"pixels contain information, which is usually expressed as greyscale or " -"colour. The information in each pixel could be the altitude of a point, the " -"size of the population, the area’s colour or another value." -msgstr "" -"Data raster memiliki karakteristik yang berbeda jika dibandingkan dengan " -"data vektor. Data raster terdiri dari baris dan kolom yang membentuk kotak-" -"kotak kecil (dikenal dengan pixel). Kotak-kotak tersebut berisi informasi, " -"biasanya diekspresikan sebagai warna abu-abu atau warna. Informasi dalam " -"setiap piksel nya bisa berupa ketinggian dari sebuah titik, ukuran populasi, " -"warna suatu area, dan sebagainya. " - -# ce67e4aaa0804a2f8003d76068b52a67 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:94 -msgid "" -"There are two ways to add a new raster layer to your project. Navigate to :" -"menuselection:`Layer ‣ Add Raster Layer...` on the menu or click on the :" -"guilabel:`Add Raster Layer` button on the toolbar:" -msgstr "" -"Terdapat dua cara untuk menambahkan sebuah layer raster baru pada proyek " -"Anda. Anda dapat mengarahkan ke menu :menuselection:` Layer > Tambah Lapisan " -"> Tambahkan Layer Raster...` atau Anda dapat klik pada tombol :guilabel:" -"`Tambahkan Layer Raster` pada toolbar:" - -# 495ae578de1c4a36bce7cd464c9a936a -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:102 -msgid "" -"Navigate to :file:`qgis/Sleman/SRTM/` and select :file:`SRTM_Sleman.tif`, " -"which depicts the topography of the area." -msgstr "" -"Arahkan ke folder :file:`qgis/Sleman/SRTM/` dan pilih :file:`SRTM_Sleman." -"tif`, yang menggambarkan topografi daerah tersebut." - -# 8ae22188426e4c9d9a862c8bbb42eaf7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:108 -msgid "Click :guilabel:`Open`. The raster will be added to our project." -msgstr "Klik :guilabel:`Buka`. Raster akan ditambahkan pada proyek Anda." - -# ad36befe908d4e72b124c572df3efdea -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:114 -msgid "Next we will symbolise the data to make it easier to understand." -msgstr "" -"Berikutnya kita akan melakukan simbolisasi data agar lebih mudah dipahami." - -# 29b28960ccc449fda5bb2436ccaedbf3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:117 -msgid "2. Symbolising data" -msgstr "2. Simbolisasi Data" - -# a01578ea9d5f48cba6d22ce8a140c035 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:119 -msgid "" -"Layer symbology is useful so that users can easily understand our maps. It " -"is also important to make our maps more attractive. Your choice of a layer’s " -"symbology is very important to deliver the right information." -msgstr "" -"Simbologi layer berguna bagi pengguna agar dapat lebih memahami petanya. " -"Juga penting untuk membuat tampilan peta kita lebih menarik. Pilihan Anda " -"dalam melakukan simbolisasi layer sangatlah penting agar nantinya informasi " -"dapat tersampaikan dengan tepat." - -# 814d90a23d254dd39c5a19ad955c24ae -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:125 -msgid "2.1 Symbolise the districts" -msgstr "2.1 Simbolisasi Kecamatan" - -# 845f5f162a5c45d081096b45011c104c -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:127 -msgid "Let’s symbolise the district layer that we’ve added:" -msgstr "" -"Mari kita lakukan simbolisasi layer kecamatan yang tadi telah ditambahkan:" - -# 1ca9be7385554f48baeea94679f80bab -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:129 -msgid "" -"Right-click on the :guilabel:`Kecamatan_Sleman` layer, and click :guilabel:" -"`Properties`, or double-click the layer name." -msgstr "" -"Klik kanan pada layer :guilabel:`Kecamatan_Sleman`, dan pilih :guilabel:" -"`Properti`, atau klik dua kali pada nama layer." - -# b269cfc449a04576b43d9f1692fdbda2 -# 9859f0a4b29d44ab8d254277420da3e7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:132 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:168 -msgid "Click on the :guilabel:`Style` tab." -msgstr "Klik pada tab :guilabel:`Style`." - -# f8a289e28f0b4b6b8f11225667bf9fe8 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:137 -msgid "" -"Notice all the options that we have to change the appearance of this layer. " -"We can change the layer’s transparency or its colour, or make even more " -"detailed variations by clicking on :guilabel:`Change`." -msgstr "" -"Perhatikan bahwa semua pilihan dapat mengubah tampilan pada layer tersebut. " -"Kita dapat mengubah transparansi atau warna dari layer ini, atau bahkan " -"dapat membuat simbol yang lebih detail lagi dengan cara klik :guilabel:" -"`Change`." - -# 5249df4d944e4da592a22e779cb0e103 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:143 -msgid "" -"We can also base the symbology on the data contained in the layer itself." -msgstr "" -"Kita juga dapat memberi simbologi berdasarkan data yang terkandung di dalam " -"layer itu sendiri." - -# ef958056e7954dfd9a40f1fc47020e6b -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:145 -msgid "" -"Click on the box that says :guilabel:`Single Symbol` and change it to :" -"guilabel:`Categorized`." -msgstr "" -"Klik pada kotak yang bertuliskan :guilabel:`Simbol Tunggal`, dan ubah " -"menjadi :guilabel:`Dikategorikan`." - -# 86a96270acc148949fb108d1cd12731c -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:151 -msgid "" -"Change the Color Ramp to a set of colours that you like, and then click :" -"guilabel:`Classify`. It may look something like this (although your colours " -"will be different):" -msgstr "" -"Ubah :guilabel:`Degradasi Warna` menjadi satu set warna yang Anda sukai, " -"lalu klik :guilabel:`Klasifikasi`. Maka akan berubah tampilannya kurang " -"lebih seperti ini (mungkin warnanya berbeda dengan warna pada QGIS Anda): " - -# 39b23b1a18b14b199e0db6c2f9b4770c -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:158 -msgid "Click :guilabel:`OK` to apply the style changes." -msgstr "Klik :guilabel:`OK` untuk mengaplikasikan perubahan tampilan ini. " - -# f86cee457b814b46acfe498b3a8a55d7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:161 -msgid "2.2 Symbolise the roads" -msgstr "2.2 Simbolisasi Jalan" - -# 049eebb29c7b43de8107f39dba7e88f4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:163 -msgid "Next, let’s symbolise our roads layer." -msgstr "Berikutnya, mari kita simbolisasi layer jalan." - -# 13ce5d35407c46a9bb5b283cc315bd2a -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:165 -msgid "" -"Double-click :guilabel:`Jalan_Sleman_OSM` in the Layers panel to open the " -"Properties window." -msgstr "" -"Klik dua kali pada :guilabel:`Jalan_Sleman_OSM` pada daftar Layer untuk " -"membuka dialog Properties." - -# c05aadce22bb42b38a932f461bee3b8a -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:170 -msgid "" -"Adjust the colour as you like, or choose one of the style presets that are " -"displayed at the bottom." -msgstr "" -"Sesuaikan warnanya sesuka Anda, atau pilih salah satu dari tampilan yang " -"telah tersedia yang ditampilkan pada kotak di bawah." - -# 5a7f103d3ac341e29fca7ed9ba7a49ee -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:173 -msgid "" -"Feel free to experiment. As you make changes, click :guilabel:`Apply` to " -"view your changes on the map." -msgstr "" -"Silahkan Anda bereksperimen, Anda dapat membuat perubahan, klik :guilabel:" -"`Apply`, dan lihat perubahannya pada peta." - -# 8d6365f9fa854293b177e6cc3b01b939 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:176 -msgid "" -"If you use multiple symbologies (as we covered in Unit 2), your roads may " -"end up looking like this:" -msgstr "" -"Jika Anda menggunakan beberapa simbologi (seperti yang telah kita pelajari " -"pada Unit 2), jalan pada peta Anda mungkin akan tampil seperti ini:" - -# 2a9f757ff90146e9acec2eecdb491257 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:182 -msgid "" -"This isn’t ideal. To fix this, open the Properties window and on the :" -"guilabel:`Style` tab click on the :guilabel:`Advanced` button and choose :" -"guilabel:`Symbol Levels`. Check the box next to :guilabel:`Enable symbol " -"levels`." -msgstr "" -"Tampilan peta jalan tidaklah ideal karena ruas jalan tampak bertumpuk-" -"tumpuk. Untuk memperbaikinya, buka kotak dialog properti dan klik pada tab :" -"guilabel:`Style` lalu klik tombol :guilabel:`Lanjutan` dan pilih :guilabel:" -"`Level Simbol`. Lalu berikan tanda “x” pada :guilabel:`Aktifkan level " -"simbol`." - -# 5f95999f72ea4583b3a1fd1a3eecf008 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:190 -msgid "The roads will then look correct:" -msgstr "Lihat, kini tampilan jalan tampak lebih baik:" - -# fa861df17e6c4a339deab3db8d2af428 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:195 -msgid "" -"Try editing the symbology of the :guilabel:`POI_Sleman_OSM` layer on your " -"own." -msgstr "Cobalah mengedit pada simbologi layer :guilabel:`POI_Sleman_OSM`." - -# ac1fcc4c6a354e4a9eadb7f132b49a3a -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:197 -msgid "Your map should end up looking something like this:" -msgstr "Peta Anda akan tampak seperti ini:" - -# 5d9ccd8b332d43f3bfa477f4ba817615 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:203 -msgid "3. Map layout" -msgstr "3. Layout Peta" - -# 8cf0a5d20d174294873ce5c77aa0b199 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:205 -msgid "" -"Your map is a medium to communicate information (as well as your ideas). " -"Layer symbology is used to convey the content of your data so that it can be " -"easily understood by the user. By creating a map layout, you are going a " -"step further in using your map as a way to convey information." -msgstr "" -"Peta Anda merupakan media untuk mengkomunikasikan informasi (juga ide Anda). " -"Anda menggunakan simbologi layer untuk menyampaikan isi dari data nya " -"sehingga dapat lebih mudah dipahami oleh orang lain. Dengan membuat layout " -"peta Anda telah berada satu langkah lebih jauh dalam hal menggunakan peta " -"Anda untuk menyampaikan informasi." - -# b886c1e054e94a4d90dbaebe37698951 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:211 -msgid "" -"For a full review of Map Composer, refer back to :ref:`Unit 2 `. For now, let’s create a basic layout with a legend." -msgstr "" -"Untuk tinjauan ulang dari Map Composer, kembalilah ke :ref:`Unit 2 `. Untuk sekarang, mari mencoba membuat layout sederhana dengan " -"sebuah legenda." - -# eb58828048b64edcbca7400ff1c32cfb -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:215 -msgid "" -"Start a new :guilabel:`Map Composer` window by going to :menuselection:`File " -"‣ New Print Composer`." -msgstr "" -"Mulai dengan sebuah :guilabel:`Map Composer` baru dengan pergi ke menu :" -"menuselection:`File ‣ Print Composer Baru`." - -# 5f4c127deffe4881af86007c8c56071a -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:218 -msgid "" -"Click the :guilabel:`Add new map` button and draw a box on the left side of " -"the canvas." -msgstr "" -"Klik pada tombol :guilabel:`Tambahkan peta baru` dan gambar sebuah kotak " -"pada sisi kiri kanvas." - -# dab00a478d6b4de5838510ac2e850e29 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:224 -msgid "" -"Now click on the :guilabel:`Add new legend` button and draw a box on the " -"right side of the canvas." -msgstr "" -"Sekarang klik pada tombol :guilabel:`Tambahkan legenda baru` dan gambar " -"sebuah kotak lagi pada sisi kanan kanvas." - -# 7325114d1e4e49ff82010a74220fa901 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:230 -msgid "Your map will look similar to this:" -msgstr "Peta Anda akan tampak seperti ini: " - -# 9f20865cc7a145daa49e4aeb82e897df -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:235 -msgid "" -"Play around a bit with the Print Composer if you like, and refresh your " -"memory!" -msgstr "" -"Telusuri dan gunakan berbagai fitur yang ada pada Print Composer, dan " -"refresh ingatan Anda!" - -# fec27eed276b40d9879845abda27f49b -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:238 -msgid "Now it’s time to get back to |project_name|!" -msgstr "Sekarang mari kita kembali pada |project_name|!" - -# 1a291682c5684ae38bab2bbdd0c95ad1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/401-review-qgis.rst:241 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.po b/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.po deleted file mode 100644 index 24f13a95..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.po +++ /dev/null @@ -1,730 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:37+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 2062f413c9fd4db0aa6d62e23356f43d -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:6 -msgid "Module 2: Preparing Data and Keywords for |project_name|" -msgstr "Modul 2: Mempersiapkan data dan kata kunci untuk |project_name|" - -# 620ca4b6fdfb4dc7b09afe437a479ff3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# f5de5b2097964e57b6d53efd565f98c7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:10 -msgid "Understand |project_name| inputs" -msgstr "Memahami *input* |project_name|" - -# d86871c8a062427f8ce6cf0ff52b9f30 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:11 -msgid "Get OSM data from the HOT export server" -msgstr "Memperoleh data OSM dari server HOT export" - -# 905f159ad7da4d09ad944a68645c64de -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:12 -msgid "Load data into |project_name|" -msgstr "Menambahkan data ke dalam |project_name|" - -# be66052346f34173a7c98e1d28ee782b -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:13 -msgid "Add keywords" -msgstr "Menambahkan kata kunci" - -# ad85c11f1c6b44adaac0ac1171ec8ddc -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:14 -msgid "Prepare the hazard layer" -msgstr "Mempersiapkan layer ancaman" - -# a24daff724ea426dbaa224f8011b8bab -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:15 -msgid "Run |project_name|" -msgstr "Jalankan |project_name|" - -# c4d0c58fcbd648d48349f1f7ff2c656f -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:17 -msgid "" -"Now that you know your way around QGIS and |project_name|, let’s go further. " -"In this module, we will see how to prepare our own data so that it can be " -"processed in |project_name|. Much of what we cover in this module you’ve " -"already done, though we will go over some of it in greater detail. We’ll be " -"using the project created in this module throughout the rest of the unit, so " -"be sure to save it along the way!" -msgstr "" -"Sekarang Anda telah belajar mengenai QGIS dan |project_name|, mari belajar " -"lebih jauh lagi. Dalam Modul ini, Anda akan mempelajari bagaimana " -"mempersiapkan data sendiri sehingga data tersebut dapat diproses dalam |" -"project_name|. Sebagian besar dari apa yang kita bahas dalam modul ini Anda " -"sudah melakukannya, meskipun begitu kita akan membahas beberapa hal secara " -"lebih rinci. Kita akan menggunakan file latihan yang dibuat dalam Modul ini " -"untuk digunakan dalam unit lainnya, jadi pastikan untuk menyimpannya di " -"setiap proses!" - -# d9cf7844721848f99eb5078df1afcf54 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:26 -msgid "1. |project_name| inputs" -msgstr "1. |project_name| input" - -# fecc14196ea742f4b1a392d8d0377eca -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:28 -msgid "Let’s review the types of data used by |project_name|." -msgstr "Mari review beberapa tipe data yang digunakan oleh |project_name|. " - -# 31368d7957754efa8cac06160b3dd1ae -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:30 -msgid "" -"**Hazards** are conditions, phenomenon, or human activity that potentially " -"cause victims and destruction to society and environment. Frequently " -"observed hazards are earthquakes, tsunamis, floods, landslides and tornadoes." -msgstr "" -"**Ancaman** adalah suatu kondisi, gejala atau aktivitas manusia yang " -"berpotensi menimbulkan korban jiwa, kerugian materil, serta kerusakan " -"tatanan sosial dan lingkungan. Kejadian atau aktivitas yang dianggap sebagai " -"ancaman misalnya gempa bumi, tsunami, banjir, longsor, dan puting beliung." - -# 398b64a9df60475f838abc94b9bde4ea -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:35 -msgid "" -"When we are working in |project_name|, hazard data refers to a vector or " -"raster dataset that represents the level and magnitude of an event that can " -"potentially cause damages. To be used for impact calculation in |" -"project_name|, level and magnitude of an event scenario must be mapped over " -"the area of interest. This means that hazard data must be geographic - it " -"must have location. We have already looked at hazard data for the 2007 " -"Jakarta flood and the Lembang earthquake. These hazard layers were produced " -"from scientific modelling conducted by scientific organisations and " -"government agencies. These are typical sources for such hazard data, " -"although in cases of flood hazards such data may also be gathered from " -"affected communities." -msgstr "" -"Ketika kita bekerja dengan |project_name|, data ancaman menunjukkan data " -"vektor atau raster yang menggambarkan tingkat dan besarnya suatu peristiwa " -"yang berpotensi menyebabkan kerusakan. Untuk digunakan dalam kalkulasi " -"dampak dalam |project_name|, tingkat dan besarnya dari skenario kejadian " -"harus dipetakan disekitar area yang penting. Ini berarti data ancaman harus " -"bersifat geografis – yaitu harus memiliki lokasi. Kita telah melihat data " -"ancaman untuk banjir jakarta tahun 2007 dan gempa bumi Lembang. Ada beberapa " -"layer ancaman yang dihasilkan dari pemodelan ilmiah yang dilakukan oleh " -"berbagai organisasi dan instansi pemerintah. Ini adalah sumber data untuk " -"data ancaman, meskipun dalam kasus ancaman banjir data ancaman juga dapat " -"diperoleh dari masyarakat yang terkena dampak." - -# c625c7d22a9b46f8b6b1518a5ba9b6ad -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:48 -msgid "Generally, hazard data has the following characteristics:" -msgstr "Pada umumnya, data ancaman bencana memiliki karakteristik, yaitu :" - -# 8135b80f7a364e8c90c65386ff4cfda4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:50 -msgid "are at a particular location" -msgstr "berada di lokasi tertentu" - -# 32a2e22ce9934355a570bb5fb088bd90 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:51 -msgid "" -"have a measured intensity (ie. the depth of a flood or the MMI of an " -"earthquake)" -msgstr "" -"memiliki intensitas ukuran (misalnya kedalaman untuk banjir atau MMI untuk " -"gempa bumi)" - -# aaf64b7139be43cfa7edff30564bac78 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:53 -msgid "have a measured duration of impact (ie. hours or days after a flood)" -msgstr "" -"memiliki ukuran durasi dari dampak (misalnya jam atau hari setelah kejadian " -"banjir)" - -# 3bf9195d5e9f477784d82b80e4625c0d -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:54 -msgid "have a certain time frame (ie. in the case of a sea rise flood)" -msgstr "" -"memiliki kerangka waktu tertentu (misalnya dalam kasus kenaikan muka air " -"laut atau banjir rob)" - -# 8e500d23e4c7420ba289c2e37dd15904 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:56 -msgid "" -"In this module, our hazard input will be a flood in the village of Sirahan, " -"in Magelang regency in Central Java. The data for this flood comes from " -"participatory mapping activities done by community members as part of the " -"REKOMPAK project. The data is in the training folder :file:`qgis/Sirahan/`." -msgstr "" -"Dalam Modul ini, data ancaman bencana yang akan kita gunakan untuk latihan " -"adalah data banjir lahar di Desa Sirahan, Magelang di Jawa Tengah. Data ini " -"diperoleh dari hasil pemetaan partisipatif oleh anggota komunitas bagian " -"dari proyek REKOMPAK. Anda dapat menemukan data ini pada folder latihan Anda " -"dengan nama :file:`qgis/Sirahan/`." - -# 68493a057a244039b2f700d6704ad6a8 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:62 -msgid "" -"**Exposure** data refers to natural and man-made objects that may be " -"affected if a disaster scenario really happens. In this module we will use " -"building exposure data created in OpenStreetMap." -msgstr "" -"Data **Keterpaparan** menggambarkan orang, bangunan, ataupun aktivitas " -"ekonomi yang terkena dampak jika skenario bencana terjadi. Dalam modul ini " -"kami akan menggunakan data keterpaparan bangunan yang dibuat dalam " -"OpenStreetMap." - -# 1665f07694fe4efeb6fef95c41a9bcb4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:66 -msgid "" -"The |project_name| impact functions produce an output layer representing " -"potential damages or losses on the affected exposure layer. This output " -"layer will be created once the impact calculation process is finished " -"processing. |project_name| has many impact functions available, which are " -"listed through the 'Impact Functions Doc' menu (see below). The impact " -"calculation will only be possible when users provide the hazard and exposure " -"layer datasets and, when necessary, users define the required parameters " -"through the keyword Wizard correctly." -msgstr "" -"Fungsi dampak |project_name| menghasilkan layer yang mewakili kerusakan atau " -"kerugian pada layer keterpaparan yang berpotensi terkena dampak. Output " -"Layer akan dibuat setelah proses perhitungan dampak selesai diproses. |" -"project_name| memiliki fungsi dampak, yang tersedia pada menu Dokumen Fungsi " -"Dampak' (lihat gambar dibawah). Perhitungan dampak hanya akan mungkin " -"dilakukan ketika pengguna memberikan dataset ancaman bencana dan " -"keterpaparan, bila perlu, pengguna menentukan parameter yang diperlukan " -"melalui editor kata kunci dengan benar." - -# 00de9afcda724ed8a92eb0ad823bfb0e -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:79 -msgid "" -"**Aggregation** is used to reclassify the result of the impact calculation " -"according to a specific administrative boundary level." -msgstr "" -"**Agregasi** digunakan untuk mengklasifikasi hasil perhitungan dampak sesuai " -"dengan tingkat/batas administratif tertentu." - -# 52db544b29be4000959b4cbb3a77f143 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:82 -msgid "" -"**Keywords** define which category a dataset belongs to, whether hazard or " -"exposure. They are also used to define specific parameters to be considered, " -"as we shall see. After you calculate the impact of a scenario with |" -"project_name|, what next? Well, the impact calculation can be used to " -"prepare a contingency plan. That's why relevant questions and remarks are " -"displayed in the Result section, which may then be considered by disaster " -"risk managers or planning managers." -msgstr "" -"**Kata Kunci** menjelaskan kategori dataset, apakah data tersebut merupakan " -"data ancaman bencana ataukah data keterpaparan. Kata kunci juga digunakan " -"untuk menentukan parameter tertentu yang harus dipertimbangkan, seperti akan " -"kita lihat. Setelah Anda mengkalkulasi dampak dari skenario dengan |" -"project_name|, apa selanjutnya? Kalkulasi dampak dapat digunakan untuk " -"mempersiapkan rencana kontijensi. Itu sebabnya pertanyaan dan komentar yang " -"relevan ditampilkan di bagian “Hasil”, yang kemudian dapat dipertimbangkan " -"oleh manajer risiko bencana atau manajer perencanaan." - -# b7302a60a44a4ffeb8b52d1c3b87f347 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:92 -msgid "2. Getting OSM data from HOT Exports" -msgstr "2. Memperoleh data OSM dari HOT Exports" - -# 53a5f2c5e61846ffb372e0ba6dfd7d28 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:94 -msgid "" -"In previous scenarios, we used example data provided in the training " -"directory, but to set up our scenario in the village of Sirahan, let’s " -"access the OSM data ourselves to use as our exposure layer. We will use the " -"OSM buildings to calculate how many buildings (and which) will be inundated " -"when a flood occurs similar to our hazard model." -msgstr "" -"Dalam skenario sebelumnya, kita gunakan contoh data yang tersedia dalam data " -"latihan, tetapi untuk mengatur skenario desa Sirahan, mari kita mengakses " -"data OpenStreetMap sendiri untuk digunakan sebagai layer keterpaparan. Kita " -"akan menggunakan data bangunan OSM untuk menghitung berapa banyak bangunan " -"(dan yang akan) tergenang atau terkena banjir ketika terjadi banjir yang " -"sama dengan model ancaman bencana kita." - -# 10ddee6e10b44376a57dfc265a6da433 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:100 -msgid "" -"We’ve worked with OSM data a lot already. Now we will utilise a website " -"where we can quickly and easily access the data from OSM." -msgstr "" -"Kita berkerja dengan data OSM yang sudah siap digunakan. Sekarang kita akan " -"menggunakan situs yang cepat dan mudah untuk mengakses data OSM. " - -# 05fd32efd3ed42d78a9636573a72273f -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:104 -msgid "Open your web browser and navigate to http://export.hotosm.org." -msgstr "Buka browser internet Anda dan arahkan ke http://export.hotosm.org." - -# 646e42675b084e2ebd8f7ed4630dd1ad -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:109 -msgid "" -"If you are a new user, create an account. If you have an account already, " -"sign in." -msgstr "" -"Jika Anda adalah pengguna baru, buatlah sebuah akun. Jika Anda telah " -"memiliki akun dengan HOT, Anda bisa langsung masuk kedalam situs HOT Export." - -# 4c97fd5211734b7a85ab591cbe9dff16 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:112 -msgid "" -"The HOT Export website allows you to choose an area and create a data " -"extract from that area. Then you can download the data in a variety of " -"formats that are easily read by QGIS." -msgstr "" -"Situs HOT Export memungkinkan Anda untuk memilih suatu daerah dan membuat " -"ekstrak data dari daerah itu. Kemudian Anda dapat mendownload data dalam " -"berbagai format yang mudah dibaca oleh QGIS." - -# 770261c8d6414c0d950292a0cbca6312 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:117 -msgid "In the upper right corner, click :guilabel:`New Job`" -msgstr "Pada sudut kanan atas, klik :guilabel:`Job Baru`." - -# 8868ee63dfe948fd9a9aa695236195e8 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:119 -msgid "Give the job a name, such as :kbd:`Desa Sirahan`." -msgstr "Berikan nama job pada “Nama”, misalnya :kbd:`Desa Sirahan`." - -# 18c7a88bc57449ee9184faa6304a6c16 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:121 -msgid "" -"Zoom in on the map until you can see the village Sirahan, which is just " -"north-west of Yogyakarta." -msgstr "" -"Perbesar pada peta sampai Anda dapat melihat desa Sirahan, yang berada di " -"sebelah barat laut dari Yogyakarta. " - -# 0a13704cf78d46a29eed2f5433cae561 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:124 -msgid "" -"Click :guilabel:`Select Area` and then draw a box around Sirahan village." -msgstr "" -"Klik :guilabel:`Pilih Area` dan kemudian gambar kotak disekitar desa Sirahan." - -# a800962f702b4d9faab4870de4c3645c -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:129 -msgid "The page should look something like this:" -msgstr "Halaman ini akan terlihat seperti dibawah ini:" - -# 271b003d2caf446a99466d45773597c1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:134 -msgid "Click the :guilabel:`Create Job` button." -msgstr "Klik tombol :guilabel:`Create Job` yang berada di bawah gambar peta." - -# f2858d25f0734bb6aa227bcdb629dee7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:136 -msgid "" -"You will be asked to define a presets file. This is like the presets that " -"you added to JOSM in the previous unit, except here, they define the " -"attributes that the HOT export server will provide." -msgstr "" -"Anda akan ditanyakan mengenai file presets. Ini seperti preset yang Anda " -"tambahkan ke JOSM didalam unit sebelumnya, kecuali disini, mereka menetapkan " -"atribut yang disediakan oleh server HOT export." - -# 0cd5776d9ac84afb937c02f13515d591 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:141 -msgid "Choose :guilabel:`preset file-INASAFE`." -msgstr "Pilih :guilabel:`preset file-INASAFE`." - -# 92fb2ac9052c4593bfbc8c6e4bba9147 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:146 -msgid "Click the :guilabel:`Save` button and take a few breaths!" -msgstr "Klik tombol :guilabel:`Simpan` dan tunggu beberapa menit!" - -# 61b5aca5854a435c84a2dc5e1f0c3d78 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:148 -msgid "" -"It may take a few minutes for the data extraction job to process. When it is " -"finished, the page will change and you will see a list of files you can " -"download like this:" -msgstr "" -"Ini akan membutuhkan waktu beberapa menit untuk memproses data ekstrak " -"pekerjaan Anda. Ketika proses selesai, halaman akan berganti dan Anda akan " -"melihat daftar dari file yang dapat didownload seperti ini:" - -# f195f9649fd14fcf81830d44da3fc969 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:155 -msgid "" -"Click on :guilabel:`ESRI Shapefile` to download shapefiles, and once you " -"have it, extract (unzip) the archive on your computer. It should create a " -"directory named :file:`extract.shp`." -msgstr "" -"Klik pada :guilabel:`ESRI Shapefile` untuk mendownload shapefile, dan " -"ketika Anda sudah mendownloadnya, ekstrak (unzip) file tersebut kedalam " -"komputer Anda. Secara standar, hasil ekstrak tersebut akan membuat folder " -"dengan nama :file:`extract.shp`." - -# 19e27f2bf24b44ca8bf03b280abf1c69 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:160 -msgid "3. Loading data" -msgstr "3. Memasukkan data" - -# 29635f55150745e788438bceba834160 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:162 -msgid "" -"We will use this OSM data as our exposure data. Open a new QGIS project and " -"add all of the shapefiles that you downloaded as vector layers. You should " -"have four layers:" -msgstr "" -"Kita akan menggunakan data OSM sebagai data keterpaparan. Buka proyek QGIS " -"baru dan tambahkan semua shapefile yang Anda download sebagai layer vektor. " -"Anda akan mendapatkan empat layer:" - -# 6bd58fcd0d454674b6c29577c6423ab9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:170 -msgid "" -"For reasons that will become clear later, we need to change the map " -"projection from the default OSM projection (WGS 84) to WGS 84 / UTM 49S. In " -"other words, we need a CRS that uses metres, not degrees." -msgstr "" -"Untuk alasan yang akan dijelaskan nanti, kita harus mengganti proyeksi peta " -"dari proyeksi dasar OSM (WGS 84) ke WGS 84/UTM 49S. Dalam kata lain, Kita " -"membutuhkan CRS yang digunakan dalam meter, bukan derajat. " - -# 12300a7a4ee44ba288dc004a31a926d6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:174 -msgid "" -"Right-click on the :guilabel:`planet_osm_polygon` layer and click :guilabel:" -"`Save as`." -msgstr "" -"Klik kanan pada layer :guilabel:`planet_osm_polygon` dan klik :guilabel:" -"`Simpan sebagai`." - -# 0612ff3f8a8d45558474eec5d411d048 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:177 -msgid "" -"Click :guilabel:`Browse` and navigate to a place where you would like to put " -"the new shapefile. Name the file :kbd:`Bangunan_Sirahan` and click :guilabel:" -"`Save`." -msgstr "" -"Klik :guilabel:`Navigasi` dan arahkan ke tempat dimana Anda menyimpan " -"shapefile baru. Berikan nama :kbd:`Bangunan_Sirahan` dan klik :guilabel:" -"`Save`." - -# 52bd0f0ba67d4749b7d1244de12b8edd -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:181 -msgid "Next to CRS, click :guilabel:`CRS icon`." -msgstr "Di samping CRS, klik :guilabel:`Ikon CRS`." - -# 98712ec64ca04f02a6e848e36667aadc -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:186 -msgid "In the filter box, type :kbd:`UTM zone 49S`, as shown below:" -msgstr "" -"Pada kotak saring, ketik tipe :kbd:`UTM zone 49S`, seperti ditunjukkan " -"dibawah ini:" - -# 368d45e4ef514f8396dfaafb9252f7b7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:191 -msgid "" -"Select the CRS :guilabel:`WGS 84 / UTM zone 49S` and click :guilabel:`OK`." -msgstr "Pilih CRS :guilabel:`WGS 84 / UTM zone 49S` dan klik :guilabel:`OK`. " - -# 8364c40bb16c4cf7ab31699b9f979400 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:193 -msgid "The :guilabel:`Save vector layer as...` dialog will look like this:" -msgstr "" -"Klik :guilabel:`Simpan lapisan vector sebagai...` kotak dialog akan terlihat " -"seperti ini: " - -# 990514ea802649b38eaf7a2d1a66f7db -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:198 -msgid "" -"This is the layer that we will be using as our exposure data. You can remove " -"the other OSM layers, or if you would like them to remain visible, go to :" -"menuselection:`Settings ‣ Project Properties` and enable 'on the fly' " -"transformation." -msgstr "" -"Ini adalah layer yang akan kita gunakan sebagai data keterpaparan. Anda " -"dapat menghapus layer OSM yang lain, atau jika Anda menginginkan mereka " -"tetap terlihat, pilih :menuselection:`Pengaturan ‣ Opsi ‣ CRS` dan aktifkan " -"proyeksi 'on the fly' sebagai standar." - -# 992d9754e8ed46f78ff289450b9b7297 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:204 -msgid "4. Adding keywords" -msgstr "4. Menambahkan Kata Kunci" - -# 51b8aea009e141e09ef40de2f6f22cc1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:206 -msgid "" -"Since we’ll be using this buildings layer as our exposure, we need to set " -"the keywords so that |project_name| knows what the layer contains. If you " -"remember from Unit 2, this is done with the keywords Wizard." -msgstr "" -"Karena kita akan menggunakan layer bangunan sebagai data keterpaparan, kita " -"harus mengatur kata kunci sehingga |project_name| mengetahui apa isi dari " -"layer. Jika Anda mengingat kembali dari unit 2, ini dilakukan dengan wizard " -"kata kunci. " - -# 44f135043e6945a08a8b50d8eae729d2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:210 -msgid "" -"Select the :guilabel:`Bangunan_Sirahan` layer and click the :guilabel:" -"`Wizard` button on the |project_name| toolbar." -msgstr "" -"Pilih layer :guilabel:`Bangunan_Sirahan` pada daftar layer dan klik :" -"guilabel:`Wizard` pada toolbar |project_name|." - -# b1d07c09269741d8af5348ff2d01582e -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:216 -msgid "" -"You will see a dialog box and select :guilabel:`exposure` and after that you " -"can follow the steps in the dialog box." -msgstr "" -"Anda akan melihat kotak dialog dan pilih :guilabel:`keterpaparan` dan " -"setelah itu ada dapat mengikuti langkah-langkah yang ada di kotak dialog " -"tersebut." - -# 062071e02bbd433b90bfccf66d8b9bf3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:222 -msgid "" -"Select unit information that you want to calculate in InaSAFE. For building " -"data you can choose :guilabel:`building type` to group the result of the " -"impact function. You need to make sure there is the building type attribute " -"in your exposure data. Or if you do not have the building type attribute in " -"your exposure data, you can select :guilabel:`building generic`." -msgstr "" -"Pilih unit informasi yang ingin anda hitung di InaSAFE. Untuk data bangunan " -"anda dapat memilih :guilabel:`jenis bangunan` untuk melihat hasil dari " -"fungsi dampak. Anda harus memastikan bahwa data keterpaparan yang akan anda " -"hiturng memiliki tipe atribute jenis bangunan. Atau jika data anda tidak " -"memiliki atribut jenis bangunan anda dapat memilih :guilabel:`bangunan umum`" - -# a566ea9a3f8849a48fb2815ab4b84dbb -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:228 -msgid "" -"You also need to select which attribute has building type values. In this " -"data please select :guilabel:`amenity` and in the last step you can give a " -"title for your exposure data and click :guilabel:`Finish`" -msgstr "" -"Anda juga butuh untuk memilih atribut yang memiliki jenis bangunan. Dalam " -"data yang kita gunakan dalam contoh ini silahkan pilih :guilabel:`amenity` " -"dan pada langkah terakhir anda dapat memberikan nama terhadap data " -"keterpaparan anda dan klik :guilabel:`Selesai`" - -# eb3a137deadd45978e33ae0db3bb02f3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:236 -msgid "5. Preparing a hazard layer" -msgstr "5. Mempersiapkan layer ancaman" - -# 957e6113ee294a5eb07085515f474f50 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:238 -msgid "" -"The hazard data that we have used previously has come from government " -"agencies and scientific institutions. This time, we will use data that came " -"from community mapping activities, that is, from community members on the " -"ground. The data was created as a paper map and later converted into digital " -"format. The data has already been prepared, so we simply need to add it as " -"our hazard layer." -msgstr "" -"Data ancaman yang telah kita miliki sebelumnya berasal dari pemerintah dan " -"institusi ilmiah. Saat ini, kita akan menggunakan data yang berasal dari " -"komunitas pemetaan, dari anggota komunitas reguler daerah. Data dibuat " -"sebagai peta cetak dan kemudian diubah dalam format digital. Data telah " -"dipersiapkan, sehingga kita dapat menambahkan dengan mudah ke layer ancaman. " - -# 202d9e611cd947cd952e2f8d2f613a90 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:247 -msgid "" -"Click :guilabel:`Add Vector Layer...` and add :file:`area_terdampak_Sirahan." -"shp` in the :file:`qgis/Sirahan/` directory." -msgstr "" -"Klik :guilabel:`Tambahkan Layer Vektor` dan tambahkan :file:" -"`area_terdampak_Sirahan.shp` pada folder :file:`qgis/Sirahan/`." - -# 4ba930af5c4647a884e4a98b088cdcc9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:254 -msgid "" -"You can see that this layer is already known to |project_name|, so " -"presumably it has keywords already set." -msgstr "" -"Anda dapat melihat bahwa layer ini sudah diketahui |project_name|, jadi " -"mungkin data ini telah memiliki kata kunci yang sudah ditetapkan. Pilih " -"layer dan buka editor kata kunci." - -# 92ebd072e7d6405dbaacf6fafcaba916 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:257 -msgid "" -"Before we define the keywords of this data and because of the way that |" -"project_name| calculates this function, we need to make sure that this " -"exposure layer has a column in the attribute table that |project_name| " -"expects, named \"AFFECTED\"." -msgstr "" -"Sebelum mendefinisikan kata kunci dari data ini dan karena dari cara |" -"project_name| menghitung fungsi dampak, kita butuh untuk memastikan layer " -"data keterpaparan kita memiliki kolom pada attribut tabel yang diinginkan " -"oleh |project_name| , dengan nama \"AFFECTED\". Kita harus memastikan hal " -"tersebut." - -# 0c17a641f34c4a218a39be31613cca2b -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:262 -msgid "" -"Open the attribute table for the :guilabel:`area_terdampak_Sirahan` layer." -msgstr "Buka tabel atribut untuk layer :guilabel:`area_terdampak_Sirahan`." - -# c17965fe21a74980a6fdbe6db2302e5a -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:267 -msgid "" -"We need to add some data to this layer so that QGIS can run the flood " -"function correctly. When QGIS runs the flood function, it checks every " -"feature in the hazard layer to make sure that it is in fact a flood prone " -"area. Hence, each feature must have an attribute named \"AFFECTED\". First, " -"let’s add the new column to our layer." -msgstr "" -"Kita perlu menambahkan beberapa data pada *layer* sehingga QGIS dapat " -"bekerja sesuai fungsi banjir. Ketika QGIS bekerja pada fungsi banjir, itu " -"memeriksa setiap fitur pada *layer* ancaman untuk memastikan fakta bahwa " -"area tersebut terkena banjir. Oleh karena itu, setiap fitur harus memiliki " -"atribut yang dinamakan \"AFFECTED\". Pertama, mari tambahkan kolom baru pada " -"*layer*." - -# 6b7952aee02049f39f9a55cacd5661ff -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:274 -msgid "In the attribute table, click the :guilabel:`Toggle Editing` button." -msgstr "Pada tabel atribut, klik ikon :guilabel:`Toggle untuk mengedit`." - -# 6f23daabbb954e29b32c223596847114 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:279 -msgid "Click the :guilabel:`New Column` button." -msgstr "Klik tombol :guilabel:`Kolom Baru` ." - -# 022be236c7874e809d1127eb766d6f67 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:284 -msgid "" -"Type :kbd:`affected` as the name and select :guilabel:`Text(string)` for :" -"guilabel:`Type`. Give :kbd:`10` for the width." -msgstr "" -"Ketik :kbd:`affected` sebagai nama kolom dan pilih :guilabel:`Teks(string)` " -"untuk :guilabel:`Tipe`. Berikan :kbd:`10` untuk jumlah karakter. " - -# 8c0e3f71382e49f28ad0183b8e5f9e53 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:290 -msgid "Click :guilabel:`OK`." -msgstr "Klik :guilabel:`OK`." - -# 82f7e1e8db5140d9bd22be803e11f521 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:292 -msgid "" -"Now select each value in the column “affected” and type “1”, instead of NULL" -msgstr "" -"Sekarang pilih setiap nilai pada kolom “affected” dan ketikkan “1”, termasuk " -"gantilah nilai NULL." - -# 4df914c00b024dc8b902f0694d8f3e26 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:297 -msgid "" -"Click :guilabel:`Save Edits` and then :guilabel:`Toggle Editing` to stop the " -"editing process." -msgstr "" -"Klik :guilabel:`Simpan edit` dan kemudian klik :guilabel:`Toggle modul " -"mengedit` untuk mengakhiri proses edit." - -# 06b277f69660477eb98fde076fac5e9d -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:303 -msgid "" -"Select the layer and open the :guilabel:`Keyword Wizard` and select :" -"guilabel:`Hazard` and follow the steps in the dialog box" -msgstr "" -"Pilih layer ancaman dan klik :guilabel:`Wizard Pembuat Keyword InaSAFE` dan " -"pilih :guilabel:`Ancaman` dan ikuti langkah-langkah yang tampil di kotak " -"dialog" - -# cea7099d672b46329aa993ea7b3e6bbc -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:309 -msgid "" -"In this hazard data we select :guilabel:`flood` as the hazard type because " -"we assume that this is a flood hazard." -msgstr "" -"Dalam data ancaman ini kita pilih :guilabel:`banjir` sebagai jenis ancaman " -"yang akan kita gunakan karena kita mengasumsikan bahwa ini merupakan ancaman " -"banjir lava." - -# 9c160ed1ca0e4579a88b8546813b57b7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:312 -msgid "" -"Select :guilabel:`wet/dry` as the subcategory for flood, and after that " -"select the :guilabel:`wet/dry` attribute that represents the flood extent as " -"wet/dry." -msgstr "" -"Pilih :guilabel:`basah/kering` sebagai sub kategori banjir dan setelah itu " -"pilih guilabel:`affected` pada atribut untuk merepresentasikan basah/kering " -"pada banjir." - -# 05adba141f8043d080ce4c815abc11a0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:315 -msgid "" -"As the last step, you can give a title for your hazard data and click :" -"guilabel:`Finish`" -msgstr "" -"Langkah terakhir adalah anda dapat memberikan nama atau judul pada data " -"ancaman anda dan kemudian klik :guilabel:`Selesai`" - -# af7ec0efa82149f4bf3ceeb00384f9b4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:319 -msgid "6. Running |project_name|" -msgstr "6. Menjalankan |project_name|" - -# 51ac18a05466480fa9dbc518720b8908 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:321 -msgid "" -"Everything is prepared now - our layers are loaded, the keywords are set, " -"and we’ve ensured that the layers have the data that |project_name| expects. " -"Make sure the question form in InaSAFE looks like this" -msgstr "" -"Semuanya sudah disiapkan sekarang - semua layer sudah dimaut, kata kunci " -"sudah ditentukan dan kita sudah memastikan data kita sudah sesuai dengan " -"yang |project_name| inginkan. Pastikan form pertanyaan anda di InaSAFE sudah " -"terlihat seperti berikut" - -# ad0d24f038bd48229be70976ea4483d7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:328 -msgid "and then click :guilabel:`Run`!" -msgstr "dan klik :guilabel:`Hitung`!" - -# 02e928f7415749c195ad34deef40897e -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:333 -msgid "The results should looks something like this:" -msgstr "Hasilnya akan terlihat seperti di bawah ini:" - -# ea642391a00e4cf98f44291bf110b674 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:338 -msgid "Save your project! We’ll be using it in the upcoming modules..." -msgstr "" -"Simpan proyek Anda! Kita akan menggunakan proyek ini pada Modul " -"selanjutnya... " - -# b341e05294bd4c4dbc7696ec95c00a94 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:341 -msgid "" -"We’ve run a few scenarios, but what is next? In the next modules we will use " -"our QGIS skills to find the best evacuation routes for people to use in the " -"case of the flood disaster, as well as examining appropriate places for IDP " -"camps." -msgstr "" -"Kita telah menjalankan beberapa skenario, tetapi apa selanjutnya? Pada Modul " -"selanjutnya kita akan menggunakan keterampilan QGIS untuk menemukan rute " -"evakuasi terbaik untuk masyarakat yang digunakan pada kasus bencana banjir, " -"serta memeriksa tempat-tempat yang sesuai untuk tempat pengungsian." - -# 8b6b9d716e6349ffb4536de0934d4328 -#: ../../source/training/old-training/intermediate/qgis-inasafe/402-preparing-data-and-keywords-for-inasafe.rst:347 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.po b/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.po deleted file mode 100644 index dd4563ce..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.po +++ /dev/null @@ -1,760 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2014 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013-2014 -# Werner Macho , 2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:35+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 7c48363d58b34701b23a588993614ffa -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:6 -msgid "Module 3: Determining IDP Camp Location" -msgstr "Modul 3: Memilih Tempat Pengungsian Sementara atau Evakuasi" - -# 10ee610f786846afba59855be48cf6d0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 4153dfdaedfc41578a5cf105169e9cc6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:10 -msgid "Develop criteria for determining an ideal IDP camp location" -msgstr "Menyusun kriteria untuk menentukan lokasi tempat pengungsian" - -# 5cbf68f84abb4afca0972c1be033c3d4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:11 -msgid "Use geoprocessing tools" -msgstr "Menggunakan alat-alat geoprocessing" - -# 288f3b579a1146a187710d7934e9bef1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:12 -msgid "" -"Use various spatial queries: contains, within, equal, intersect and is " -"disjoint" -msgstr "" -"Menggunakan berbagai kueri spasial: *contains, within, equal, intersect, dan " -"is disjoint*" - -# 91fb643e1e47425fa348752837d4dffd -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:13 -msgid "" -"Combine geoprocessing tools and spatial queries to select building(s) for " -"temporary IDP camps" -msgstr "" -"Menggabungkan *tool* geoprocessing dan kueri spasial untuk memilih bangunan " -"(bangunan-bangunan) sebagai tempat pengungsian sementara" - -# a7abd3ae8dd543d5875b9493b8036726 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:16 -msgid "" -"Another important part of disaster planning is determining potential " -"locations for IDP camps. To do this we need to be able to take various " -"criteria into account in finding an appropriate location. In Unit 2 we did " -"exactly this. We analysed various layers and performed a GIS analysis to " -"determine several land areas appropriate for IDP camps near Merapi." -msgstr "" -"Salah satu bagian penting dalam proses mitigasi bencana adalah menentukan " -"lokasi yang berpotensi untuk dijadikan sebagai tempat pengungsian sementara. " -"Untuk melakukan hal ini kita perlu menentukan kriteria untuk menemukan suatu " -"lokasi yang sesuai. Pada Unit 2 kita tentunya melakukan hal ini. Kita " -"menganalisis berbagai layer dan melakukan analisis SIG untuk menentukan " -"beberapa daerah yang sesuai untuk dijadikan sebagai tempat pengungsian di " -"dekat Merapi." - -# b1bc0a2954a24f7e89a8261b0b867997 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:22 -msgid "" -"In this module we will take a closer look at the tools we use to perform " -"this GIS analysis, but the process will remain the same. As with any proper " -"GIS enquiry, we will follow these steps:" -msgstr "" -"Pada modul ini, kita akan melihat lebih dekat *tools* yang akan kita gunakan " -"untuk melakukan analisis SIG, tetapi prosesnya akan tetap sama. Sebagaimana " -"alur proses SIG umumnya, kita akan mengikuti langkah-langkah berikut: " - -# bec9079b8b5745f08079cf81b00bb704 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:26 -msgid "Define the problem" -msgstr "Menentukan masalah" - -# 2343d8470cc9427981a65cb989f6a7fc -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:27 -msgid "Obtain data" -msgstr "Memperoleh data" - -# c26078984b574c769ba289b98c005a61 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:28 -msgid "Analyse the problem" -msgstr "Menganalisis masalah" - -# a94db71353b346fcb506ed5f62f62565 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:29 -msgid "Visualise the result" -msgstr "Menggambarkan hasil" - -# 5f8a93bd9cdb44808a29283f8fc42d97 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:32 -msgid "1. Geoprocessing tools" -msgstr "1. *Tool Geoprocessing*" - -# 0fea8e70a29c42e6a26f7522e86979c3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:34 -msgid "" -"When we performed our first analysis, we utilised several spatial functions " -"in order to answer questions such as “what locations match conditions in " -"layer A and different conditions in layer B?”. Before we begin our GIS " -"analysis, let’s examine some of the spatial functions that are available to " -"us." -msgstr "" -"Ketika kita melakukan analisis pertama, kita telah memanfaatkan beberapa " -"fungsi spasial untuk menjawab pertanyaan seperti “lokasi mana yang " -"kondisinya cocok pada *layer* A dan kondisinya berbeda pada *layer* B?” " -"Sebelum kita memulai analisis SIG kita, mari kita memeriksa terlebih dahulu " -"beberapa fungsi spasial yang tersedia untuk kita." - -# 28562adc104d4125a8dc16ef9693a08a -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:41 -msgid "Buffer" -msgstr "*Buffer*" - -# b35e1da58a934e5ea7e2455b532f6117 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:42 -msgid "" -"The buffer function is used to make a new feature based on a given distance. " -"We saw this in Unit 2, when we defined a buffer around roads and health " -"facilities. For example, we created a 3km buffer around health facilities " -"and created a new layer from this – these defined areas which met one of our " -"criteria – that camp locations should be close by." -msgstr "" -"Fungsi buffer digunakan untuk membuat sebuah fitur baru berdasarkan jarak " -"atau jangkauan yang diberikan. Kita melihat di Unit 2, ketika kita membuat " -"buffer di sekitar jalan dan fasilitas kesehatan. Sebagai contohnya, kita " -"telah membuat sebuah buffer 3 km di sekitar fasilitas kesehatan dan membuat " -"sebuah layer baru – layer tersebut mendefinisikan area sesuai dengan salah " -"satu kriteria kita – yang mengharuskan lokasi tempat pengungsian sementara " -"berada di dekat fasilitas kesehatan. " - -# 22c85744743f49e2bafbc4397db4f8fa -# 3b8e59a479ac444eabcc5c1e87e876bc -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:53 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:124 -msgid "Intersect" -msgstr "*Intersect*" - -# d867f6b85e4842ddbcc880a3f5656d9c -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:54 -msgid "" -"The intersect function is used to combine two overlapping layers, with the " -"result that only the intersecting features from both layers will be " -"contained in the output layer. Attributes from both layer features will be " -"combined in the new layer." -msgstr "" -"Fungsi intersect digunakan untuk mengkombinasikan dua layer yang saling " -"overlay, dengan hasilnya hanya fitur yang bersinggungan dari kedua layer " -"akan dihasilkan pada layer outputnya. Atribut dari kedua fitur layer " -"tersebut akan dikombinasikan pada layer baru." - -# ed351222d0fc4ffcb237ad5f3ffbabee -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:63 -msgid "Clip" -msgstr "*Clip*" - -# f4f7b8ea2e754c6c9b6a00757042353d -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:64 -msgid "" -"Clip is used to cut an input feature with another feature (clip feature). " -"The attributes from the input feature are left intact, only the shape of the " -"input feature will follow the shape of the clipping feature." -msgstr "" -"*Clip* digunakan untuk memotong suatu fitur *input* dengan suatu fitur yang " -"lain (*clip feature*). Data atribut dari fitur *input* akan ditinggalkan, " -"hanya bentuk dari fitur *input* yang akan mengikuti bentuk dari *clip " -"feature*. " - -# 27136c65ad8c465a87bb3b0fabda0533 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:72 -msgid "Union" -msgstr "*Union*" - -# 1a8ff8c4010a48f3bafa65414458485a -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:73 -msgid "" -"Union is used to make a new feature by combining two features. The feature " -"produced contains features and attributes from the two source features." -msgstr "" -"*Union* digunakan untuk membuat sebuah fitur baru dengan menggabungkan dua " -"fitur. Fitur yang dihasilkan akan mengandung fitur dan data atribut dari " -"kedua fitur sumber." - -# 787ea5d6a0434550b44f09d5f523353f -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:81 -msgid "Dissolve" -msgstr "*Dissolve*" - -# 370ddf72df0640c49aaa0fbf9499df05 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:82 -msgid "" -"Dissolve is used to combine features inside layers that have the same value " -"in one of their fields." -msgstr "" -"Dissolve digunakan untuk mengkombinasikan fitur di dalam layer yang memiliki " -"nilai yang sama pada salah satu field/kolom mereka." - -# c07a7faec66d41e9a1ae910e754c798c -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:89 -msgid "2. Spatial queries" -msgstr "2. Kueri Spasial" - -# f2d7c29ee5f34d9db801e08971f326f0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:91 -msgid "" -"Spatial Query is used to find the relationship between two features. The " -"resulting value is either TRUE or FALSE, unlike the geoprocessing functions " -"above, which result in new geometric features. Thus performing a Spatial " -"Query is more like asking a yes or no question. Various Spatial Query " -"functions are covered here:" -msgstr "" -"Spatial Query digunakan untuk mencari hubungan antara dua fitur. Hasilnya " -"dapat berupa TRUE atau FALSE, tidak seperti fungsi geoprocessing di atas, " -"dimana hasilnya adalah sebuah fitur geometri yang baru. Untuk melakukan " -"sebuah spatial query kurang lebih seperti menanyakan pertanyaan dengan " -"jawaban ya atau tidak. Berbagai macam spatial query dijelaskan di bawah ini: " - -# 8f900ac2e65549abbd420048fd92c1d5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:98 -msgid "Within" -msgstr "*Within* " - -# 3c519d6f2f48487f9e5c276f4050a907 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:99 -msgid "" -"Within is used to ask the question: ‘is feature A fully located inside " -"feature B?’ In the image below, let’s assume the dark-coloured circle is " -"feature A and the light-coloured circle is feature B. We can use the Within " -"function to ask the question, “Is feature A fully within feature B?” The " -"result would be TRUE. On the other hand, if we asked “Is feature B fully " -"within feature A?” the answer would of course be FALSE." -msgstr "" -"*Within* digunakan untuk menanyakan: ‘apakah fitur A berada secara penuh di " -"dalam fitur B?’ Pada gambar di bawah ini, anggaplah lingkaran berwarna gelap " -"adalah fitur A dan lingkaran berwarna terang adalah fitur B. Kita akan " -"menggunakan fungsi *Within* untuk menanyakan, “Apakah fitur A berada secara " -"penuh di dalam fitur B?” hasilnya adalah TRUE. Sebaliknya, jika kita " -"bertanya, “apakah fitur B berada secara penuh di dalam fitur A?” jawabannya " -"tentu saja FALSE. " - -# dd046732c9ca4efc81795dc209875cf2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:113 -msgid "Contains" -msgstr "*Contains*" - -# f90a96f0969941d28b2dcd79813ebd1c -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:114 -msgid "" -"Contains is the opposite of Within. This function allows us to ask “Does " -"feature A contain feature B?”" -msgstr "" -"Contains merupakan kebalikan dari Within. Fungsi ini memperbolehkan kita " -"untuk bertanya “Apakah fitur A berisi fitur B?” " - -# 09defb45256c4d7195e783cd7f8eb4d7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:118 -msgid "Equal" -msgstr "*Equal*" - -# 74be04031c4e42ab9722a37d8d98c1ce -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:119 -msgid "" -"Equal results in TRUE if two features have the same position and size. In " -"the above example, the result would be FALSE, because feature A and feature " -"B do not have the same size or the same position." -msgstr "" -"Equal menghasilkan TRUE apabila kedua fitur memiliki posisi dan besaran yang " -"sama. Pada contoh di atas, hasilnya tentu akan FALSE, karena fitur A dan " -"fitur B tidak memiliki besaran yang sama dan posisi yang sama. " - -# 47c18299c02a4ebcbccb4cdb8d9506d9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:125 -msgid "" -"Like the geoprocessing intersect tool we mentioned in the previous section, " -"this spatial query function evaluates whether two features are intersecting. " -"If the features intersect, this query will return TRUE." -msgstr "" -"Seperti tool intersect geoprocessing yang telah disebutkan pada bagian " -"sebelumnya, spatial query ini mengevaluasi apakah kedua fitur saling " -"bersinggungan. Jika mereka bersinggungan, maka query ini akan menghasilkan " -"TRUE. " - -# 644e365bda78428dafc982aa3e41b626 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:133 -msgid "Is Disjoint" -msgstr "*Is Disjoint*" - -# b4e2bdce566643d5b82f05a0eb213b2f -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:134 -msgid "" -"This function is the opposite of Intersect, meaning that it will return TRUE " -"if two features are not touching one another. We might use this query if we " -"want to search for buildings that are located outside of an impacted " -"disaster area. Because this function is the opposite of Intersect, it would " -"return FALSE if run on the example above." -msgstr "" -"Fungsi ini merupakan kebalikan dari intersect, artinya, semua hasil akan " -"bernilai TRUE apabila kedua fitur tidak menyentuh satu sama lain. Kita " -"mungkin akan menggunakan query ini jika kita akan mencari bangunan yang " -"berlokasi diluar area terdampak bencana. Karena fungsi ini merupakan lawan " -"dari intersect, hasilnya akan bernilai FALSE jika kita menjalankannya dengan " -"contoh di atas. " - -# 3529cbf410944769a471c9a3e4d44990 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:141 -msgid "" -"Implementation of these functions is important in supporting analysis for " -"scenario development, specifically to obtain answers to questions such as:" -msgstr "" -"Penggunaan fungsi-fungsi ini sangat penting untuk mendukung analisis dalam " -"pengembangan skenario, khususnya untuk mendapatkan jawaban bagi pertanyaan-" -"pertanyaan seperti ini: " - -# 6bd4518927a34ed39226638a78dd3f48 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:145 -msgid "Which schools are safe from an earthquake?" -msgstr "Dimana sekolah-sekolah yang aman dari sebuah gempa bumi? " - -# e2e069a7cf4c43b0bbf1e05d496f4db7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:146 -msgid "Which buildings can be used as temporary IDP camps?" -msgstr "" -"Bangunan-bangunan mana saja yang dapat digunakan sebagai tempat pengungsian " -"sementara? " - -# 2c51916b2f0d4c9f94f20fa6096377de -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:147 -msgid "How many kilometres of national road will be lost in case of tsunami?" -msgstr "Berapa kilometer jalan nasional yang akan rusak jika terjadi tsunami? " - -# b7ae12d956c8451da442b07261c6d698 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:151 -msgid "3. IDP camp criteria and data" -msgstr "3. Kriteria dan data tempat pengungsian" - -# 593453135bc44ac5b9b39e864626b601 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:153 -msgid "" -"Now let’s get back to our Sirahan project. Throughout the rest of this " -"module, we will apply our knowledge of geoprocessing tools and spatial " -"queries in order to identify an appropriate IDP camp location during a flood " -"that is similar to the one in our model. First, let’s list some criteria " -"that we can use to determine the best location. Try to think of your own " -"list, and then see how it compares to ours below:" -msgstr "" -"Sekarang mari kita kembali ke proyek Desa Sirahan. Sampai akhir modul ini, " -"sekali lagi kita akan mengaplikasikan pengetahuan kita tentang *tool " -"geoprocessing* dan kueri spasial untuk mengidentifikasi lokasi yang sesuai " -"untuk dijadikan sebagai tempat pengungsian ketika terjadi bencana banjir " -"yang serupa dengan model banjir kita. Pertama, mari membuat daftar kriteria " -"yang akan kita gunakan untuk menentukan lokasi terbaik. Cobalah untuk " -"membuat kriteria Anda sendiri, dan coba bandingkan dengan kriteria kami di " -"bawah ini: " - -# ee99b6e3548043ffb0961d02d783aede -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:161 -msgid "" -"Buildings/Houses that will be used as an evacuation site should be situated " -"outside the affected area (outside the flood zone)" -msgstr "" -"Bangunan/rumah yang akan dijadikan sebagai lokasi evakuasi haruslah berada " -"di luar area terdampak (dalam contoh ini haruslah di luar area banjir) " - -# d46caedb8fb84741a39aad91422ab0f6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:163 -msgid "" -"Location should have direct access to a primary road (jalan kabupaten) or " -"secondary road (jalan desa) with a maximum distance of 20 metres" -msgstr "" -"Lokasi harus memiliki akses langsung ke jalan primer (jalan kabupaten) atau " -"jalan sekunder (jalan desa) dengan jarak atau jangkauan maksimum 20 meter. " - -# 4546743d9cba4abda05dbb9a9016b3cc -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:165 -msgid "Building should have an area of at least 225 square metres" -msgstr "Bangunan harus memiliki luas setidaknya 225 meter persegi. " - -# f626ff81e5a540049cbab9ef073dc26e -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:167 -msgid "" -"We’ve defined our problem, so the next step in the GIS process is to prepare " -"our data. We should have all the data ready from the previous module, but " -"let’s make a quick list of what data we must have in order to work with our " -"criteria." -msgstr "" -"Kita telah menentukan masalah kita, maka langkah selanjutnya dalam proses " -"SIG adalah mempersiapkan data yang dibutuhkan. Kita seharusnya telah " -"memiliki semua data yang kita butuhkan dari modul sebelumnya, tetapi mari " -"kita mendaftar ulang data apa saja yang harus kita miliki untuk bekerja " -"dengan kriteria-kriteria tersebut. " - -# ccf95994cb7341cfa92c82f5afc7037e -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:173 -msgid "Buildings/houses" -msgstr "Bangunan/rumah" - -# bd2d5b718fbd49428941b540e15db496 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:174 -msgid "Impacted area of flood" -msgstr "Area terdampak banjir" - -# 85dc7969df344986822034b9a02503b0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:175 -msgid "Road network with road class attribute" -msgstr "Jaringan jalan dengan atribut kelas jalan " - -# 2421732bdc2e4afbbf7a2363be16505d -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:177 -msgid "" -"Luckily, we have this data already prepared. The data you use might be " -"different if you have different criteria, or you have different needs and " -"problems." -msgstr "" -"Beruntungnya, data ini telah kita siapkan sebelumnya. Data yang akan Anda " -"gunakan kemungkinan akan berbeda jika Anda memiliki kriteria yang berbeda " -"pula, atau Anda memiliki kebutuhan dan masalah yang berbeda." - -# a5a295201c8d48d3b7db724558e2ee1d -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:181 -msgid "" -"Create a new project or edit your existing project so that it contains the " -"following layers: (the new layers are located in :file:`qgis/Sirahan/`)" -msgstr "" -"Buatlah sebuah proyek baru atau edit proyek Anda sebelumnya sehingga proyek " -"tersebut memiliki *layer-layer* berikut ini: (*layer* yang baru berada pada " -"direktori :file:`qgis/Sirahan/`)" - -# d0391d3cacbc419ebc80ee8941d73f37 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:187 -msgid "Your map will look similar to this:" -msgstr "Peta Anda akan tampak seperti ini: " - -# e54d336cc7b8492ea38dd0c8e60ea60a -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:192 -msgid "" -"Save the project as :file:`analisis_vektor.qgs` and create a new folder with " -"the name :file:`analisis_vektor`. As we run various geoprocessing tasks and " -"output new layers, we will save the new files in this directory." -msgstr "" -"Simpan proyek Anda sebagai :file:`analisis_vektor.qgs` dan buatlah sebuah " -"folder baru dengan nama :file:`analisis_vektor`. Sebagaimana kita akan " -"menjalankan berbagai macam *tool geoprocessing* dan menghasilkan *output* " -"layer yang baru, kita akan menyimpan file baru tersebut pada direktori ini." - -# 3356c634041c41f79d8bd62b5bbf255a -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:198 -msgid "4. Criteria #1: building must be outside affected area" -msgstr "4. Kriteria #1: bangunan harus berada di luar area terdampak" - -# e488ceec58e64770856d11fed93cbc7a -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:200 -msgid "" -"Okay, let’s work on our first criteria, that the building we choose as an " -"IDP refuge should be outside the affected area. Can you guess which type of " -"spatial query we will perform? Refer to the list of operations covered " -"previously in this module and guess which one fits. If you guessed Is " -"Disjoint, you are right! Is Disjoint let’s us search for features in one " -"layer that DO NOT touch features in another layer." -msgstr "" -"Mari mulai bekerja pada kriteria pertama, bahwa bangunan yang akan kita " -"pilih sebagai tempat pengungsian harus berada di luar area terdampak. " -"Dapatkah Anda menebak tipe kueri spasial yang akan kita lakukan? Baca " -"kembali daftar operasi yang telah dibahas pada modul sebelumnya dan tebak " -"operasi mana yang sesuai. Jika Anda menebak *Is Disjoint*, Anda benar! *Is " -"Disjoint* memungkinkan kita untuk mencari fitur pada satu layer yang TIDAK " -"bersentuhan dengan fitur pada layer lainnya. " - -# 28ad433924c74d7c99341b7079811fde -# ad551c4776d04bf39706f7c55a097ddf -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:209 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:295 -msgid "Go to :menuselection:`Vector ‣ Spatial Query ‣ Spatial Query`." -msgstr "Klik menu :menuselection:`Vektor ‣ Kueri Spasial ‣ Kueri Spasial`." - -# 7fe2c5fcd74b47b4ab40804096394cd7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:211 -msgid "" -"Choose :guilabel:`Bangunan_Sirahan` as the input layer under :guilabel:" -"`Select source features from`." -msgstr "" -"Pilih :guilabel:`Bangunan_Sirahan` sebagai *layer input* pada :guilabel:" -"`Pilih sumber fitur dari`." - -# ebe75ddfd4e44a2e9c0786cde3e0fc4b -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:214 -msgid "" -"Use the Is Disjoint operator and choose :guilabel:`area_terdampak_Sirahan` " -"as the reference feature." -msgstr "" -"Gunakan operasi *Is Disjoint*/Merupakan Pemisahan dan pilih :guilabel:" -"`area_terdampak_Sirahan` sebagai fitur referensi." - -# aa3c0ae56a734fadbf69053c1543c8e2 -# 38afbc5665794c03a6950a445ab85754 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:220 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:302 -msgid "Click :guilabel:`Apply`." -msgstr "Klik :guilabel:`Apply`." - -# 4acc53e587e243f4b006c29256da6b7b -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:222 -msgid "" -"A window will appear which looks like the image below. Click :guilabel:" -"`Close`." -msgstr "Akan muncul jendela baru seperti di bawah ini. Klik :guilabel:`Close`." - -# 89b0f003940e43da84b159852903afde -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:228 -msgid "The buildings outside of the affected flood areas will become selected:" -msgstr "Bangunan yang berada diluar area terdampak banjir akan terpilih: " - -# 001f8f16d8fa4032a1eb1497ccf7e1ec -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:233 -msgid "" -"Save the selection as a new layer named :file:`Bangunan_Sirahan_terpilih." -"shp` and add it to the map." -msgstr "" -"Simpan bangunan yang terpilih sebagai sebuah *layer* baru dengan nama :file:" -"`Bangunan_Sirahan_terpilih.shp` dan tambahkan ke dalam peta." - -# 5b854056cf5f4d3f927d5097ecfbfee1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:236 -msgid "Remove the old buildings layer." -msgstr "Hilangkan layer bangunan yang lama." - -# 2d1e37e0851e43cb9083bbec5b7a3ee7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:239 -msgid "" -"5. Criteria #2: location must have direct access to a primary/secondary road " -"within 20 metres" -msgstr "" -"5. Kriteria #2: lokasi harus memiliki akses langsung ke jalan primer/" -"sekunder tidak lebih dari 20 meter" - -# 455baf99af344d59b9f72500c3f191fd -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:241 -msgid "" -"Now, we need to consider our second criteria, that the building chosen as an " -"IDP refuge is close to a main road. We used the same consideration with our " -"example in Unit 2. Do you remember how we can do this? First, we must use " -"the :guilabel:`Query Builder` so that we are only using the primary and " -"secondary roads. Then we will use one of the Geoprocessing tools – Buffer!" -msgstr "" -"Sekarang, kita perlu mempertimbangkan kriteria ke dua, yaitu bahwa bangunan " -"yang terpilih sebagai tempat pengungsian harus dekat dengan jalan utama. " -"Kita menggunakan hal yang sama seperti contoh pada Unit 2. Apakah Anda masih " -"ingat bagaimana kita melakukan hal ini? Pertama, kita harus menggunakan :" -"guilabel:`Pembangunan Kueri` agar kita hanya akan menggunakan fitur jalan " -"primer dan sekunder. Selanjutnya kita akan menggunakan salah satu dari *tool " -"Geoprocessing* - *Buffer*!" - -# f24bfe29be704f518f0a9d01e2b670f9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:249 -msgid "" -"Right-click on the :guilabel:`Jalan_Sirahan` layer and click :guilabel:" -"`Query`." -msgstr "" -"Klik kanan pada *layer* :guilabel:`Jalan_Sirahan` dan klik :guilabel:" -"`Saring...`." - -# 5bf7218e924f457a965f4ffeb7ec297c -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:252 -msgid "Create a query like this:" -msgstr "Buat query seperti ini:" - -# 6531a6d578b34107bbbcad4bc79de959 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:258 -msgid "" -"Click :guilabel:`Test`. This will run the query and tell you how many " -"features meet the conditions in your query." -msgstr "" -"Klik :guilabel:`Coba`. Ini akan menjalankan proses query dan memberi tahu " -"berapa fitur yang sesuai dengan kriteria query kita." - -# ed770092d2154cefad18e74c913b63be -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:264 -msgid "" -"You should see that our map shows fewer roads now, because we have filtered " -"out those that are not primary or secondary. Now that we have the roads, we " -"will create a buffer around them." -msgstr "" -"Sekarang, Anda seharusnya dapat melihat bahwa peta kita menunjukan fitur " -"jalan yang jumlahnya lebih sedikit, hal ini karena kita telah menyaring " -"jalan yang bukan merupakan jalan primer atau sekunder. Sekarang kita telah " -"memiliki jalan yang kita butuhkan, dan selanjutnya kita akan membuat sebuah " -"buffer di sekitar jalan tersebut. " - -# 823e20a0159d464f9045924df3355727 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:271 -msgid "" -"Select the :guilabel:`Jalan_Sirahan` layer and go to :menuselection:`Vector " -"‣ Geoprocessing tools ‣ Buffer(s)`:" -msgstr "" -"Pilih *layer* :guilabel:`Jalan_Sirahan` dan klik menu :menuselection:`Vektor " -"‣ Peralatan Geoprosesing ‣ Buffer(s)``:" - -# 6993945c1f8245c09ff27524dc561933 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:277 -msgid "Set it up like this:" -msgstr "Atur seperti berikut ini:" - -# 1c9d6eca66514070b4546db693b92f65 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:282 -msgid "" -"Save the layer as :file:`Jalan_Sirahan_buffer_20m.shp`. Click :guilabel:`OK` " -"and QGIS will create the buffer, which will look like this:" -msgstr "" -"Simpan *layer* sebagai :file:`Jalan_Sirahan_buffer_20m.shp`. Klik :guilabel:" -"`OK` dan QGIS akan memulai proses *buffer*, yang kemudian akan terlihat " -"seperti ini:" - -# 3489359252ca494fa4e05deaba6adad8 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:289 -msgid "" -"Now we have a layer which shows the areas that are within 20 metres of the " -"primary and secondary roads. The last thing to do in order to apply our " -"criteria is determine which buildings are situated within the buffer. Hence " -"we need to do another spatial query, this time of type Within." -msgstr "" -"Sekarang kita telah memiliki sebuah layer yang menunjukan area mana saja " -"yang berada dalam jarak 20 meter dari jalan primer dan sekunder. Hal " -"terakhir yang dilakukan untuk mengaplikasikan kriteria ini adalah menentukan " -"bangunan-bangunan mana saja yang berlokasi di dalam area jangkauan tersebut. " -"Oleh karena itu, kita perlu melakukan kueri spasial yang lain, kali ini kita " -"akan menggunakan operasi *Within*/Dalam. " - -# a24ab499408b404585486d44164d07cc -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:297 -msgid "Fill in the fields to look like this:" -msgstr "Isilah field sehingga terlihat seperti ini:" - -# 8f6da07c49384637aec7ca37c05f0b65 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:304 -msgid "" -"The buildings that are within the roads buffer will be selected. Right-click " -"on the :guilabel:`Bangunan_Sirahan_Terpilih` layer and click :guilabel:`Save " -"Selection As…`. Save the selection with the name :file:" -"`Bangunan_Sirahan_buffer_20m`." -msgstr "" -"Bangunan-bangunan yang berada dalam jangkauan 20 meter dari jalan akan " -"terpilih. Klik kanan pada layer :guilabel:`Bangunan_Sirahan_Terpilih` " -"kemudian klik guilabel:`Simpan sebagai…`. Simpan bangunan terpilih tersebut " -"dengan nama :file:`Bangunan_Sirahan_buffer_20m`." - -# f06b268ead844c44a6b541d6f3941c4d -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:310 -msgid "" -"6. Criteria #3: building must have an area of at least 225 square metres" -msgstr "" -"6. Kriteria #3: bangunan harus memiliki luas setidaknya 225 meter persegi" - -# 02624093c3d54e7bb15adada82264f37 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:312 -msgid "" -"Our final criteria is that the building we choose should have an area of at " -"least 225 square metres. With an area this size, the building will be able " -"to serve as an IDP camp for the residents of Sirahan whose homes are " -"affected by the flood." -msgstr "" -"Kriteria terakhir kita adalah bahwa bangunan yang kita pilih harus memiliki " -"luas setidaknya 225 meter persegi. Dengan luasan tersebut, bangunan tersebut " -"dapat difungsikan sebagai tempat pengungsian untuk warga Desa Sirahan yang " -"rumahnya terdampak oleh banjir." - -# 3cb1a959acd849588851883772779770 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:317 -msgid "" -"Right-click on the :guilabel:`Bangunan_Sirahan_buffer_20m` layer and click :" -"guilabel:`Query`. Enter the following query for the layer:" -msgstr "" -"Klik kanan pada *layer* :guilabel:`Bangunan_Sirahan_buffer_20m` dan pilih :" -"guilabel:`Saring...`. Masukan kueri berikut:" - -# 8948ad04632e4e299971378028a7f862 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:324 -msgid "" -"Click :guilabel:`Test`. The query should return only a handful of features." -msgstr "" -"Klik :guilabel:`Coba`. Kueri tersebut hanya akan memberikan hasil berupa " -"fitur-fitur yang sesuai dengan kriteria kita." - -# df5cc30940a343d6aad43b64a75fc4bb -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:329 -msgid "" -"Take a closer look at the remaining buildings. You can inspect the features " -"of each individually by using the :guilabel:`Identify Features` tool." -msgstr "" -"Lihat lebih dekat pada sisa bangunan yang ada. Anda dapat memeriksa fitur " -"dari setiap bangunan dengan menggunakan tool :guilabel:`Identifikasi Fitur`." - -# d05448b7fb4e4fafa52a3384a6561b87 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:336 -msgid "" -"In the very south tip of Sirahan you should find a building that is " -"identified as a hospital. This building is, in fact, a real world hospital, " -"and it is an actual IDP camp. Compare it with your result. This should be " -"one of the buildings that your analysis deems suitable as a camp, and when " -"you consider that it is also a hospital, it clearly makes a good location." -msgstr "" -"Pada bagian paling selatan Sirahan Anda seharusnya dapat menemukan sebuah " -"bangunan yang dapat diidentifikasi sebagai sebuah rumah sakit. Bangunan ini, " -"secara faktanya, merupakan sebuah rumah sakit umum, dan sebuah tempat " -"pengungsian sementara yang sebenarnya. Bandingkan dengan hasil Anda. Ini " -"harusnya menjadi salah satu bangunan dari analisis Anda yang terlihat cocok " -"untuk tempat pengungsian, dan ketika Anda mempertimbangkannya bahwa bangunan " -"ini juga merupakan sebuah rumah sakit, maka bangunan ini merupakan lokasi " -"tempat pengungsian yang baik. " - -# 783f1041e6a343a49cc7db1a9b84115a -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:349 -msgid "Summary" -msgstr "Ringkasan" - -# 574bb8e75f754842bb4128111fac35e9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:351 -msgid "" -"In this module we reviewed the various Geoprocessing tools and spatial " -"queries, and we used some of them to analyse our problem – where to put an " -"IDP camp." -msgstr "" -"Pada modul ini kita telah mengulas berbagai macam *Tool Geoprosesing* dan " -"kueri spasial, dan kita telah menggunakan beberapa *tool* tersebut untuk " -"menganalisis masalah kita – dimana kita harus menentukan lokasi yang sesuai " -"untuk tempat pengungsian." - -# 1a82898063264f10baafede118a5f88c -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:355 -msgid "" -"This is yet another key component of contingency planning, and luckily it’s " -"not difficult to perform with GIS." -msgstr "" -"Ini menjadi salah satu komponen kunci dalam perencanaan kontinjensi, dan " -"sungguh beruntung bahwa hal ini tidak terlalu sulit jika dilakukan dengan " -"memanfaatkan SIG." - -# cc47b8b0baa641a4be73e060e96bff81 -#: ../../source/training/old-training/intermediate/qgis-inasafe/403-determining-idp-camp-location.rst:359 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.po b/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.po deleted file mode 100644 index 44c1e194..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.po +++ /dev/null @@ -1,421 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2014 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:37+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 2ea04f2d14d74c2bb7d7d1f404131e03 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:6 -msgid "Module 4: Planning an Evacuation Route Based on Hazard Information" -msgstr "" -"Modul 4: Merencanakan Jalur Evakuasi Berdasarkan Informasi Ancaman Bencana" - -# d6f3bf67e67e4e06b8bad6b176bb6400 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 02fdc6030cee4a35ac74a277796dfe90 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:10 -msgid "Understand the concept of shortest path and fastest route" -msgstr "Memahami konsep jalur terpendek dan rute tercepat" - -# 9a6c5b4aedf44c4f8d2c139bdaccdcb3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:11 -msgid "Use the Road Graph plugin" -msgstr "Menggunakan plugin Road Graph" - -# 4756d85a1e564dfd8cff77668fa53d4f -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:12 -msgid "Set up speed and road direction" -msgstr "Mengatur kecepatan dan arah jalan " - -# 3bb73d4a0e954d5bbbc056c082cac78e -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:13 -msgid "Determine start and destination points" -msgstr "Menentukan titik awal dan titik tujuan " - -# 72872f1215654fe791b1eb6538353ad6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:14 -msgid "Conduct route analysis and selection" -msgstr "Melakukan analisis dan seleksi rute" - -# 07e6bf1a5c6646fc87112f79438158e2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:16 -msgid "" -"By now you should have a pretty good understanding of how |project_name| " -"works and its operations." -msgstr "" -"Sekarang Anda memiliki pemahaman yang baik mengenai bagaimana |project_name| " -"bekerja dan mengoperasikannya." - -# 5b7d3eea5b434f929d9be5f01a08b168 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:19 -msgid "" -"You know how to add layers, and how to define keywords so that |" -"project_name| can recognise layers appropriately. Now that we can use |" -"project_name| effectively to run scenario analyses, we will look at other " -"QGIS functionality that will help us in preparing contingency plans." -msgstr "" -"Anda mengetahui bagaimana cara menambahkan *layer*, dan bagaimana " -"mendefinisikan kata kunci sehingga |project_name| dapat dikenali dengan " -"tepat. Sekarang kita dapat menggunakan |project_name| secara efektif untuk " -"menjalankan analisis skenario, kita akan melihat fungsi QGIS lainnya yang " -"akan membantu kita dalam menyiapkan rencana kontinjensi." - -# ad19f101ee2e48b2a6e16c9b9f479bb3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:25 -msgid "" -"In this module, we will learn how to perform a GIS analysis in order to " -"determine an appropriate evacuation route in the event of a disaster." -msgstr "" -"Pada modul ini, kita akan belajar bagaimana melakukan analisis SIG untuk " -"menentukan jalur evakuasi bencana dengan tepat. " - -# 6377e62167354a8eadfd3e55a44fcfd0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:28 -msgid "" -"The term **fastest route** indicates the route a person can take between " -"point A and point B that will allow them to cover the distance in the least " -"amount of time." -msgstr "" -"Istilah **jalur tercepat** menunjukkan jalur seseorang antara titik A dengan " -"titik B yang dapat ditempuh dalam waktu sesingkat mungkin. " - -# 534e837901d848b2b60b12182f6765c1 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:32 -msgid "" -"Similarly, **shortest path** indicates the route that will allow a person to " -"get from point A to point B with the least distance travelled. In theory, " -"this would be a straight line between point A and point B, but in reality " -"this is impractical, because travelling in a straight line means climbing " -"hills and going around buildings and fences. Of course this is why we use " -"roads, and why we calculate fastest and shortest routes using roads." -msgstr "" -"Demikian juga, **jalur terpendek** menunjukkan jarak yang memungkinkan " -"seseorang untuk pergi dari titik A ke titik B dengan jarak tempuh yang " -"pendek. Secara teori, ini membentuk garis lurus antara titik A dan titik B, " -"namun kenyataannya hal ini tidak praktis karena berjalan pada garis lurus " -"berarti mendaki bukit dan berjalan mengelilingi bangunan serta pagar. Tentu " -"saja ini mengapa kita menggunakan jalan, dan menghitung jalur tercepat dan " -"jalur terpendek menggunakan jalan." - -# 6d2d2665b0ae4591816b7be6c77f29b5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:40 -msgid "" -"We will use the Road Graph plugin in this module, which does just that. If " -"we provide two points, the plugin is able to calculate either the fastest " -"route or the shortest path between them." -msgstr "" -"Kita akan menggunakan plugin Road Graph/Grafik Jalan pada Modul ini, tetapi " -"tidak hanya itu saja. Jika kita menyediakan dua titik, plugin ini dapat " -"menghitung jalur tercepat ataupun jalur terpendek antara kedua titik " -"tersebut. " - -# ffe8347c7dbc4cc38eaf6f373933d197 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:45 -msgid "1. Road Graph plugin" -msgstr "1. Plugin Road Graph/Grafik Jalan" - -# ecabea39906f4cfcae9c75218d486cf5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:47 -msgid "" -"We will be continuing with the previous example, which you should have " -"saved. We won’t be using the |project_name| plugin in this module, so you " -"may close the panel if you like." -msgstr "" -"Kita akan melanjutkan dengan contoh sebelumnya, yang Anda telah " -"menyimpannya. Kita tidak akan menggunakan plugin |project_name| pada modul " -"ini, sehingga Anda dapat menutup panel ini jika Anda suka. " - -# d6ce543f30fe4223973c516768c800f5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:51 -msgid "Open the project in QGIS." -msgstr "Buka proyek di QGIS." - -# dfe9ed0e79cf4da99f599619a1a98aa2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:53 -msgid "" -"We will use a pre-prepared roads layer in this module, which may be slightly " -"more detailed than OpenStreetMap. Remove the :guilabel:`planet_osm_roads` " -"layer and add :guilabel:`Jalan_Sirahan`, which is located in the :file:`qgis/" -"Sirahan/` directory. You should have the following layers:" -msgstr "" -"Kita akan menggunakan *layer* jalan yang telah disiapkan pada modul ini, " -"yang mungkin sedikit lebih rinci dari OpenStreetMap. Hapus *layer* :guilabel:" -"`planet_osm_roads` dan tambahkan :guilabel:`Jalan_Sirahan`, yang terletak di " -"direktori :file:`qgis/Sirahan/`. Anda harus memiliki *layer* seperti berikut " -"ini:" - -# 7b254ce9145a4cdd8d34cada827e5e90 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:63 -msgid "" -"We will be using a plugin that comes installed with QGIS. Right-click on the " -"toolbars to see which toolbars are activated, and select :guilabel:`Shortest " -"path`." -msgstr "" -"Kita akan menggunakan plugin yang sudah diinstal dengan QGIS. Klik kanan " -"pada toolbar untuk melihat toolbar yang diaktifkan, dan pilih :guilabel:" -"`Jalur terpendek`." - -# ecbd78d717da48988404b21ae78b570a -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:70 -msgid "" -"A new plugin window will appear in your project window that looks like this:" -msgstr "" -"Jendela plugin baru akan muncul pada jendela proyek Anda yang terlihat " -"seperti ini:" - -# ee473868cc244b9cae414842e9183ca6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:76 -msgid "2. Editing plugin settings" -msgstr "2. Mengubah Pengaturan Plugin" - -# c72a734ac834478a8ef3d345286b8d11 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:78 -msgid "" -"We must edit some settings in order for the :guilabel:`Shortest path` plugin " -"to work. Go to :menuselection:`Vector ‣ Road graph ‣ Settings`." -msgstr "" -"Kita harus mengedit beberapa pengaturan pada plugin :guilabel:`Jalur " -"terpendek` agar bekerja. Klik menu :menuselection:`Vector ‣ Grafik Jalan ‣ " -"Pengaturan`." - -# 98d347ce29844975a380761406731aea -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:85 -msgid "" -"Make sure that :guilabel:`hour` and :guilabel:`kilometer` are selected as " -"the units." -msgstr "" -"Pastikan bahwa :guilabel:`Jam` dan :guilabel:`kilometer` telah dipilih " -"sebagai unit." - -# 2271955ea901425d94dcc4ecaed59464 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:88 -msgid "Set :guilabel:`Topology tolerance` to :kbd:`4`." -msgstr ":guilabel:`Toleransi topologi` diatur menjadi :kbd:`4`." - -# e0177d4b76f546eea8d6e8ca4cd70311 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:90 -msgid "" -"On the :guilabel:`Transportation layer` tab, select :guilabel:" -"`Jalan_Sirahan` as the layer. This layer contains the streets that the " -"plugin will use to calculate routes. The rest will remain the same. It " -"should look like this:" -msgstr "" -"Pada tab :guilabel:`Layer transportasi`, pilih :guilabel:`Jalan_Sirahan` " -"sebagai *layer*. *Layer* ini berisi jalan-jalan dimana plugin akan digunakan " -"untuk menghitung jalur. Sisanya akan tetap sama. Ini akan terlihat seperti " -"ini:" - -# 965f3950da7a4e4089e12ba1a9e2df83 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:97 -msgid "" -"On the :guilabel:`Default settings` tab, we must fill in the direction and " -"speed. Choose :guilabel:`two-way direction` and :kbd:`25` for the speed " -"(meaning 25 km/hr). This assumes that traffic can go in both directions at a " -"maximum speed of 25 km/hr." -msgstr "" -"Pada tab :guilabel:`Pengaturan standar`, kita harus mengisi arah dan " -"kecepatan. Pilih :guilabel:`Dua arah` dan :kbd:`25` untuk kecepatannya " -"(berarti 25 km/jam). Asumsi ini bahwa lalu lintas dapat dilalui dua arah " -"pada kecepatan maksimal 25 km/jam." - -# 302d5be6f19c44769f81f0110610f98a -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:105 -msgid "Click :guilabel:`OK`." -msgstr "Klik :guilabel:`OK`." - -# 80f87d76e00648da9df67b96e376a308 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:108 -msgid "3. Choosing start and destination points" -msgstr "3. Memilih Titik Awal dan Akhir" - -# 3eb9d6d0d75348d09e4876f1faa70b76 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:110 -msgid "" -"The Road Graph plugin calculates either the shortest or fastest route " -"between two points, so we need to provide a start point and an end point for " -"an evacuation route." -msgstr "" -"Plugin Road Graph/Grafik Jalan menghitung jalur terpendek atau tercepat " -"antara dua titik, jadi kita perlu menyediakan titik awal dan titik akhir " -"untuk jalur evakuasi." - -# 8dbb2ae82794491ca1820a8b89863081 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:114 -msgid "" -"Of course an evacuation route should be for all people in an area, but we " -"can experiment with different start points and see if evacuation routes will " -"be different in different areas." -msgstr "" -"Tentu saja jalur evakuasi untuk semua orang yang ada di area, tetapi kita " -"dapat bereksperimen dengan titik awal yang berbeda dan melihatnya apakah " -"jalur evakuasi akan berbeda pada area yang berbeda. " - -# b19b0e600b524e7e9b51bbacabe7c8b4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:118 -msgid "" -"On the Road Graph panel, click on the plus button next to :guilabel:`Start` " -"and then click somewhere on the map to indicate the first point of your " -"evacuation route. This would be the initial point for the evacuation route " -"in the time of a disaster." -msgstr "" -"Pada panel Grafik Jalan, klik pada tombol plus di sebelah :guilabel:`Mulai` " -"dan kemudian klik dimana saja pada peta untuk menunjukkan titik pertama " -"jalur evakuasi Anda. Ini akan menjadi titik awal untuk jalur evakuasi pada " -"saat bencana. " - -# ee3320a52871438b8100facbe829d5ee -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:126 -msgid "" -"Your starting point will be marked as a green point and the coordinates of " -"the point will be recorded in the :guilabel:`Start` input box." -msgstr "" -"Titik awal Anda akan ditandai dengan titik berwarna hijau dan koordinat " -"titik akan terekam di kotak masukan :guilabel:`Mulai`." - -# 3a6a4dbae61a4d419e396ff3bfd1698c -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:129 -msgid "" -"Now we need to assign the destination of our evacuation route. Where will " -"people be evacuated to? Because this is an example, we don’t have a great " -"idea of where an appropriate place would be. We might use GIS to determine " -"appropriate locations, which would most likely be high ground in the event " -"of a flood. For this example, we will choose a destination at the south-east " -"corner of the village." -msgstr "" -"Sekarang kita perlu menentukan tujuan dari jalur evakuasi kita. Dimana " -"penduduk akan dievakuasi? Karena ini adalah contoh, kita tidak memiliki ide " -"yang besar dimana tempat yang tepat dijadikan daerah tujuan. Kita mungkin " -"menggunakan SIG untuk menentukan lokasi yang tepat, kemungkinan berada pada " -"dataran tinggi untuk kejadian banjir. Contohnya, kita akan memilih daerah " -"tujuan di sebelah tenggara desa. " - -# 10c9ef5e453740b08cf5a27efa6760d3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:137 -msgid "" -"Click the plus sign next to :guilabel:`Stop` and click somewhere on the map. " -"The destination will be marked with a red point." -msgstr "" -"Klik tanda plus di sebelah :guilabel:`Berhenti` dan klik dimana saja pada " -"peta. Titik tujuan akhir akan diberi tanda dengan titik berwarna merah. " - -# eb8218891b2b42678d2f6598555fdffb -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:143 -msgid "" -"Choose :guilabel:`Length` or :guilabel:`Time` next to :guilabel:`Criterion`. " -"This determines whether Road Graph will look for the shortest distance or " -"the shortest amount of time." -msgstr "" -"Pilih :guilabel:`Jarak` atau :guilabel:`Waktu` pada :guilabel:`Kriteria`. " -"Ini menentukan apakah Grafik Jalan akan mencari jarak terpendek atau waktu " -"tempuh terpendek. " - -# 6e39f4f881e141ebb69c8bad7e2a7e26 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:147 -msgid "Click :guilabel:`Calculate`." -msgstr "Klik tombol :guilabel:`Hitung`." - -# bba23bceafc84c1ba887759ac1caad91 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:149 -msgid "" -"The time and distance required for the evacuation route will be displayed." -msgstr "" -"Waktu dan jarak yang dibutuhkan untuk jalur evakuasi akan ditampilkan. " - -# cb1c020163824bcea3492e217d86f2da -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:154 -msgid "" -"In this example, the length of the fastest route between our two points is " -"about 1.97 kilometres and the travel time is 0.0788 hours, which is about 5 " -"minutes. The time in our example is determined by the distance and our " -"default speed of 25 km/hr. The speed can be changed, and can even be set to " -"different amounts for each segment of road." -msgstr "" -"Pada contoh ini, panjang jalur tercepat antara dua titik kita sekitar 1.97 " -"kilometer dan waktu tempuh 0.0788 jam, yaitu sekitar 5 menit. Waktu pada " -"contoh ini ditentukan oleh jarak dan kecepatan standar 25 km/jam. Kecepatan " -"ini dapat diubah, dan dapat diatur untuk jumlah yang berbeda pada setiap " -"segmen jalan." - -# f894ee0d00874bb68a525eab5f0a6987 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:160 -msgid "The route appears on our map:" -msgstr "Jalur juga terlihat pada peta Anda:" - -# 0fc690340ea84ed3bb161db8414ce79a -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:165 -msgid "" -"To save the evacuation route as a separate layer, go to :menuselection:" -"`Export ‣ New temporary layer`, and click :guilabel:`OK`." -msgstr "" -"Untuk menyimpan jalur evakuasi sebagai layer terpisah, klik pada :" -"menuselection:`Ekspor ‣ Layer sementara baru`, dan klik :guilabel:`OK`." - -# d80632c208f54a61a06dd3f4be95de18 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:171 -msgid "" -"You may need to choose a CRS for the new layer. UTM zone 49S should work " -"fine." -msgstr "" -"Anda mungkin perlu memilih CRS untuk layer baru. UTM zona 49S seharusnya " -"bekerja dengan baik." - -# 46a1665ce6134996ba779b6eb1723e59 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:174 -msgid "" -"The layer will be added to your Layers panel as :guilabel:`shortest_path`, " -"but you still need to save the layer." -msgstr "" -"*Layer* akan ditambahkan pada daftar Layer Anda sebagai :guilabel:`jalur " -"terpendek`, tetapi Anda tetap perlu menyimpan *layer* ini." - -# 887ca39069a844bba13af84a1e9e4141 -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:177 -msgid "To save, right-click on the layer and click :guilabel:`Save as…`" -msgstr "" -"Untuk menyimpan, klik kanan pada layer dan klik :guilabel:`Simpan sebagai…`" - -# 213800dc4c9f4f2f99ece4cc0e3407ac -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:180 -msgid "Summary" -msgstr "Ringkasan" - -# d6875b2182ea43c890848ad4f102a0fa -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:182 -msgid "" -"In this module we’ve learned how to calculate the shortest distance between " -"two points using the Road Graph plugin. Using this you can easily determine " -"evacuation routes from various areas. Evacuation routes are important for " -"contingency plans, and those living in threatened areas can be educated with " -"the quickest and safest routes to take in the event of an emergency." -msgstr "" -"Pada Modul ini, kita telah belajar bagaimana cara menghitung jarak terpendek " -"antara dua titik menggunakan plugin Road Graph/Grafik Jalan. Menggunakan ini " -"Anda dapat dengan mudah menentukan jalur evakuasi dari berbagai area. Jalur " -"evakuasi penting untuk rencana kontijensi, dan mereka yang tinggal di daerah " -"terancam dapat diajari dengan jalur tercepat dan teraman dalam keadaan " -"darurat. " - -# 3f01bbe606f54a2c8365f75885205cad -#: ../../source/training/old-training/intermediate/qgis-inasafe/404-planning-evacuation-route.rst:189 -msgid ":ref:`Go to next module --> `" -msgstr ":ref:`Modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.po b/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.po deleted file mode 100644 index f1c07b3e..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.po +++ /dev/null @@ -1,905 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2014 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Werner Macho , 2014 -# Yantisa Akhadi , 2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:31+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 0f631676d93048b4a2897a6c1ca9a7d6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:6 -msgid "Module 5: Calculating Damages and Losses" -msgstr "Modul5: Menghitung Kerusakan dan Kerugian" - -# d4b7064c25c24d37898f528c3ec05931 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# f70837ab5bd24189974c1b3c5e3decc9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:10 -msgid "" -"Understand the definition of damages, losses and their calculation based on " -"community exposure data" -msgstr "" -"Memahami definisi kerusakan, kerugian, dan perhitungannya berdasakan data " -"keterpaparan komunitas" - -# 2b738280189f4dfbaca1aaed46e61583 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:12 -msgid "Understand damage and losses assessment values based on BNPB and BPBD" -msgstr "" -"Memahami penilaian kerusakan dan kerugian berdasarkan ketentuan BNPB dan BPBD" - -# 9d330ef0c5984ef6b298a095e74e32e3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:13 -msgid "Make a damage and losses map" -msgstr "Membuat sebuah peta penilaian kerusakan dan kerugian" - -# d8bdf14897db42c79adcaabaf409832b -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:14 -msgid "Calculate damage area" -msgstr "Menghitung area kerusakan" - -# 19b2d81a07e34d1c9fba3544685ec62b -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:15 -msgid "" -"Manipulate attribute data of affected features to obtain damage values for " -"each object" -msgstr "" -"Memanipulasi data atribut dari fitur yang terkena dampak untuk memperoleh " -"nilai kerusakan untuk setiap objek" - -# 5b343e8cdbb549c1a0a66067204e02cd -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:17 -msgid "" -"Manipulate attribute data of affected features to obtain loss values for " -"each object" -msgstr "" -"Memanipulasi data atribut dari fitur yang terkena dampak untuk memperoleh " -"nilai kerugian untuk setiap objek" - -# 3c963d8e85b946838403263fc77ac135 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:19 -msgid "" -"Group attribute data for administrative areas (hamlet, village, subdistrict)" -msgstr "" -"Mengelompokkan data atribut untuk wilayah administrasi masing-masing (dusun, " -"desa, kecamatan)" - -# 21c19f938dfe4cb29fca357bbdb1029b -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:21 -msgid "" -"Join attribute data for administrative areas (hamlet, village, subdistrict)" -msgstr "" -"Menggabungkan data atribut untuk wilayah administrasi masing-masing (dusun, " -"desa, kecamatan)" - -# 7150aa59a7f0486d94777332b492248d -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:23 -msgid "Present damage and loss values using charts" -msgstr "Menyajikan penilaian kerusakan dan kerugian menggunakan diagram" - -# 348d3181f98248a0a0b0b493ed44c97d -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:25 -msgid "" -"A **Damage and Loss Assessment (DaLA)** is usually created after a disaster. " -"The standard DaLA methodology was developed by the UN Economic Commission " -"for Latin America and the Caribbean (UN-ECLAC) in 1972, and has evolved with " -"various international organisations since. Simply, it is a methodology for " -"approximating damage and losses due to a disaster, basing calculations on a " -"country’s economy and individual livelihoods to define the needs for " -"recovery and reconstruction." -msgstr "" -"**Damage and Loss Assessment (DaLA)** biasanya dibuat setelah terjadinya " -"bencana. Metodologi standar DaLA dikembangkan oleh Komisi Ekonomi UN untuk " -"Amerika Latin dan Karibia (UN-ECLAC) pada tahun 1972, dan telah berkembang " -"melalui berbagai macam organisasi internasional. Secara sederhana, DaLA " -"merupakan metodologi untuk mengukur dampak dan kerugian yang diakibatkan " -"oleh bencana, berdasarkan perhitungan ekonomi suatu negara dan kebutuhan " -"penghidupan individu untuk menentukan kebutuhan pemulihan dan rekonstruksi." - -# a56c1a9512064c47bb93edd6bcb5c4d6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:34 -msgid "A Damage and Loss Assessment includes the following:" -msgstr "Perhitungan *Damage and Loss Assessment* meliputi sebagai berikut :" - -# 3999ed8988944f5c9e0b59635d60ac62 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:36 -msgid "" -"Damage calculated as the replacement value of totally or partially destroyed " -"physical assets" -msgstr "" -"Kerusakan dihitung sebagai pengganti nilai aset fisik yang rusak total atau " -"sebagian;" - -# 9144ddb67f6d48d1873e30ec5564e17d -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:38 -msgid "" -"Losses in the flows of economy that arise from the temporary absence of the " -"damaged assets" -msgstr "" -"Kerugian secara ekonomi yang timbul akibat adanya aset yang rusak sementara;" - -# 2ce894f6da8348d0847acefcde064334 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:40 -msgid "" -"The resultant impact on post-disaster macroeconomic performance, with " -"special reference to economic growth/GDP, the balance of payments and fiscal " -"situation of the government." -msgstr "" -"Dampak yang dihasilkan pada pasca bencana kinerja makro-ekonomi, dengan " -"referensi khusus untuk pertumbuhan ekonomi/GDP, neraca pembayaran dan " -"situasi fiskal pemerintah." - -# 13ac5957b2994cf9804694231e209608 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:44 -msgid "" -"In this module we will learn how to calculate some of the basic data used in " -"a DaLA, and use various QGIS functions to design a thematic map that shows " -"damage and loss." -msgstr "" -"Dalam modul ini kita akan mempelajari bagaimana untuk menghitung beberapa " -"data dasar yang digunakan dalam DaLA, dan menggunakan berbagai fungsi di " -"QGIS untuk membuat peta tematik yang menunjukkan kerusakan dan kerugian." - -# 974e07f721ee494c934a0a907423d0ff -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:49 -msgid "1. BPBD damage assessment guide" -msgstr "1. Panduan Penilaian Kerusakan Menurut BPBD" - -# 67e5581b0a8445728cec69bf3cc43211 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:51 -msgid "" -"The BPBD has created a guide for damage and loss assessment for Indonesia, " -"which defines varying degrees of damage and the economic impact of " -"individual elements. Parts of this definition are shown here:" -msgstr "" -"BPBD telah membuat panduan untuk perhitungan dampak dan kerugian di " -"Indonesia, yang dimana menentukan derajat tingkat kerusakan dan dampak " -"ekonomi dari tiap elemen individu. Bagian dari perhitungan ini dapat dilihat " -"di tabel berikut :" - -# 8fbf448697754603941d411d20dfe8ea -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:59 -msgid "" -"Notice that there are several elements at work here. First, damage to " -"different types of infrastructure is “valued” differently. To put losses " -"into monetary terms, the loss of a bridge has a loss value as does the loss " -"of a public building or a private home. Then, depending on whether a feature " -"suffers heavy, medium or low damage, a multiplier is applied to determine " -"the value of the loss." -msgstr "" -"Perlu diperhatikan bahwa pada bagian ini terdapat beberapa elemen kerja. " -"Pertama, dampak untuk tiap jenis infrastruktur memiliki \"nilai\" yang " -"berbeda. Untuk memberikan kerugian ke dalam nilai materi, kerugian akibat " -"jembatan memiliki nilai kerusakan seperti kerugian dari rumah pribadi atau " -"bangunan umum. Kemudian tergantung juga apakah objek terkena dampak berat, " -"sedang, atau ringan yang akan dikalikan dengan bobot dari masing-masing " -"kerugian." - -# ca5baca07a984f5a85b7d6f861190ae5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:66 -msgid "" -"By adding up all of the damage it is possible to assess the total damages " -"caused by a disaster. In the remainder of this module, we will calculate the " -"value of the losses in our Sirahan project, and see how we can display them " -"graphically using our map, based on the damage suffered in each hamlet." -msgstr "" -"Dengan menambahkan semua dampak yang terjadi akibat bencana maka akan lebih " -"mudah untuk menghitung jumlah kerugian yang diakibatkan oleh bencana. Dalam " -"modul ini akan diingatkan juga untuk menghitung nilai kerugian pada proyek " -"Sirahan dan melihat bagaimana menampilkannya dalam grafis menggunakan peta, " -"berdasarkan dampak yang diterima di setiap dusun." - -# 2c356e52d596430a94a4b1c78abf563c -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:73 -msgid "2. Damage and losses assessment map" -msgstr "2. Peta Penilaian Kerusakan dan Kerugian" - -# fd239d1ed6a54b1f901491e9679d9fdf -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:75 -msgid "" -"We will create a damage and loss assessment map using our data from Sirahan " -"village that we have been working with throughout this unit." -msgstr "" -"Kita akan membuat Peta Kerusakan dan Kerugian menggunakan data dari Desa " -"Sirahan yang telah kita gunakan selama ini." - -# f7f7b6db73ed4c47a3b416b8c880e407 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:78 -msgid "" -"Open QGIS and make sure that the following layers are loaded into your " -"project:" -msgstr "" -"Buka QGIS dan pastikan Anda telah memuat semua layer berikut ini dalam " -"proyek Anda :" - -# a35056d10b1846839144ef470438c8c0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:80 -msgid "area_terdampak_Sirahan" -msgstr "area_terdampak_Sirahan" - -# e301aa19f326473689b84cedb9550bab -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:81 -msgid "Jalan_Sirahan" -msgstr "Jalan_Sirahan" - -# 8678c6b99a70413cb5ba1b29ce6d18ec -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:82 -msgid "Sungai_Sirahan" -msgstr "Sungai_Sirahan" - -# a74087d8d4d046228f5d3df3a5a0f1aa -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:83 -msgid "Batas_Desa_Sirahan" -msgstr "Batas_Desa_Sirahan" - -# 673db13bced146929e13f48407eca371 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:84 -msgid "Bangunan_Sirahan" -msgstr "Bangunan_Sirahan" - -# 283ff229e00742638be5950aedaeb373 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:89 -msgid "" -"We will assume that all the buildings in the :guilabel:" -"`area_terdampak_Sirahan` layer (hazard zone) suffered heavy damage from the " -"disaster. Let’s create a spatial query to filter out these buildings." -msgstr "" -"Kita akan mengasumsikan bahwa semua bangunan pada *layer* :guilabel:" -"`area_terdampak_Sirahan` (zona ancaman) mengalami kerusakan yang berat " -"akibat bencana. Mari kita membuat kueri spasial untuk menyaring bangunan-" -"bangunan tersebut." - -# db03bacc16b44af5afb10f3b50679330 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:93 -msgid "" -"Go to :menuselection:`Vector ‣ Spatial Query ‣ Spatial Query` and enter the " -"fields like this:" -msgstr "" -"Klik pada menu :menuselection:`Vektor ‣ Kueri Spasial ‣ Kueri Spasial` dan " -"isi seperti kotak di bawah ini :" - -# 2ebcfd5d283f40b6ac08cc0be2e8c097 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:99 -msgid "" -"We now have a group of buildings selected which we are assuming will suffer " -"heavy damages. According to the BNPB Guide, we can assess the loss of " -"heavily damaged buildings at a rate of 1.8 million Rp. per square metre, and " -"the multiplier factor is 70%. Our formula for calculating losses is:" -msgstr "" -"Kita sekarang telah memiliki banyak bangunan yang telah terpilih yang kita " -"asumsikan mengalami kerusakan berat akibat bencana. Berdasarkan panduan " -"BNPB, kita dapat memperkirakan kerugian akibat bencana dengan dampak berat " -"sekitar 1,8 juta rupaih/meter persegi dan bobotnya 70%. Rumus dalam " -"menghitung kerugian adalah sebagai berikut :" - -# 44586cad04614691aaf026c8db30bee2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:104 -msgid "*Total Building area x Loss Value per m² x Multiplier factor*" -msgstr "*Total luas seluruh bangunan x Nilai Rugi per m² x Faktor multiplier*" - -# 634afac95ece494c931ae774cd5b3432 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:106 -msgid "Therefore we want to calculate:" -msgstr "Sehingga kita akan menghitung:" - -# 74ae8ee0bd9a44cfa24f181ab3bd49e4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:108 -msgid "*Total Building Area x 1.8 million Rp. x 70%*" -msgstr "**Total Building Area x 1.8 juta rupiah x 70%**" - -# 6717aa35a1244a80a325f9e5bb750b6f -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:110 -msgid "in order to get a calculation of the value of total losses." -msgstr "" -"Dengan tujuan ingin mendapatkan perhitungan dari jumlah nilai kerusakan yang " -"terjadi." - -# 4c7efb326bfb49e7881f9fa5cdb51536 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:112 -msgid "" -"We will use the Intersect Geoprocessing tool, so that we can combine " -"attributes from our district layer with the selection of buildings we have " -"just made." -msgstr "" -"Kita akan menggunakan tool intersect geoproses untuk menggabungkan atribut " -"dari layer desa dengan bangunan yang terpilih." - -# 8185aa31f88c4fc085a69dbe65363ea7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:116 -msgid "" -"Go to :menuselection:`Vector ‣ Geoprocessing Tools ‣ Intersect` and fill in " -"the fields as follows:" -msgstr "" -"Pilih :menuselection:`Vektor ‣ Peralatan Geoprosesing ‣ Intersect` dan isi " -"seperti kotak di bawah ini:" - -# c6d3361b436146d2b242743b94e7ad3e -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:122 -msgid "Save the result as :kbd:`Bangunan_Terdampak`." -msgstr "Simpan hasilnya sebagai :kbd:`Bangunan_Terdampak`." - -# db079ade05ff40bfb27537382ae97d7d -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:124 -msgid "Hide the original buildings layer so that your map looks like this:" -msgstr "" -"Sembunyikan bangunan yang lain sehingga tampilan peta Anda akan seperti ini :" - -# 06f9d4ea78664ae5b096aa2a37b01bb0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:129 -msgid "" -"Run Intersect again, this time with the new :guilabel:`Bangunan_Terdampak` " -"layer and the :guilabel:`Batas_Desa_Sirahan` layer, so that the attribute " -"table will include the DUSUN attribute. Name the new layer :kbd:" -"`bangunan_terdampak_perdusun.shp`." -msgstr "" -"Jalankan perintah intersect lagi, dengan *layer* :guilabel:" -"`Bangunan_Terdampak` dan *layer* :guilabel:`Batas_Desa_Sirahan`, sehingga " -"atribut tabel akan termasuk kedalam atribut DUSUN. Beri nama *layer* baru " -"dengan :kbd:`bangunan_terdampak_perdusun.shp`." - -# 05507717ec994c299f59133d96bd349a -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:138 -msgid "3. Calculating damage area" -msgstr "3. Menghitung Luas Kerusakan" - -# 105a768670be46019fa9bd53329b6e5f -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:140 -msgid "" -"On the attribute table of :guilabel:`bangunan_terdampak_perdusun`, click " -"the :guilabel:`Toggle Editing` button." -msgstr "" -"Dalam tabel atribut :guilabel:`bangunan_terdampak_perdusun`, klik tombol :" -"guilabel:`Toggle modul mengedit`." - -# e751409e95184d2da586ab5f4ce98ebc -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:146 -msgid "Click the :guilabel:`New Column` button." -msgstr "Klik tombol :guilabel:`Kolom Baru` ." - -# 043d3d31edc74210a3af63f167b30e95 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:151 -msgid "Create a new column named :kbd:`Damage` of type decimal number:" -msgstr "" -"Buat kolom baru dengan nama :kbd:`Damage` dengan jenis nomor desimal atau " -"bilangan desimal:" - -# 672ea040e6d543c49bdc960b380a0325 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:156 -msgid "" -"To calculate the damaged area of affected buildings we will use the field " -"calculator to determine the number of square metres in each building " -"feature. Click on :guilabel:`Field Calculator`." -msgstr "" -"Untuk menghitung luas kerusakan dari bangunan terdampak kita akan " -"menggunakan kalkulator field untuk menentukan berapa meter persegi dari " -"setiap bangunan. Klik pada :guilabel:`Kalkulator Field`." - -# 80e88cead65d489795b3736addd59814 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:163 -msgid "" -"Check the box next to :guilabel:`Update existing field` and select :guilabel:" -"`Damage_Area` in the drop-down box." -msgstr "" -"Beri tanda centang pada kotak di sebelah tulisan :guilabel:`Perbarui field " -"yang sudah ada` dan pilih :guilabel:`Damage_Area` pada kotak di bawahnya." - -# b1d54d1c6e0d4414b3b5bbdb0f2eb603 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:166 -msgid "" -"Find :guilabel:`$area` under :guilabel:`Geometry` in the function list and " -"double-click on it, so that it appears in the Expression box at the bottom. " -"It should look like this:" -msgstr "" -"Temukan :guilabel:`$area` di bawah :guilabel:`Geometri` dalam daftar fungsi " -"dan klik dua kali yang akan muncul pada kotak eksperesi di bawah. " -"Tampilannya akan seperti ini :" - -# 29641abb8860410c94fcb04ec3e8e4d3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:173 -msgid "" -"Click :guilabel:`OK`. You will see that the column is filled in with the " -"area, in square metres, of the buildings." -msgstr "" -"Klik :guilabel:`OK`. Anda akan melihat kolom yang diisi dengan luas wilayah " -"dalam meter persegi untuk tiap bangunan." - -# d622e5eb5f2d456ca15268f6dc5fe5b9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:179 -msgid "" -"Click the :guilabel:`Toggle Editing` button and be sure to save your edits." -msgstr "" -"Klik tombol :guilabel:`Toggle Editing` dan pastikan Anda menyimpan editan " -"Anda." - -# f4983efe27d84edda9f47ef85c8c60e5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:182 -msgid "4. Calculating damages using the Group Stats plugin" -msgstr "4. Menghitung Kerusakan menggunakan Plugin Group Stats" - -# 05093db80de84f1393a54cb53332bd27 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:184 -msgid "" -"We will be using a QGIS plugin called Group Stats in order to calculate " -"damages by each hamlet within Sirahan. You must be connected to the internet " -"to install this plugin." -msgstr "" -"Kita akan menggunakan plugin QGIS yang disebut Group Stats untuk menghitung " -"kerusakan dari setiap dusun di Sirahan. Anda harus tersambung dengan " -"internet untuk menginstall plugin ini." - -# d66798941fc242d0b20d4693cc1c2d9b -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:188 -msgid "Go to :menuselection:`Plugins ‣ Manage and Install Plugins`." -msgstr "Klik menu :menuselection:`Plugins ‣ Kelola dan Install Plugin`." - -# 425974e61479451885e8cdb8875bfbd9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:190 -msgid "" -"Go to the :guilabel:`All` tab. Type :kbd:`group stats`. When you find the " -"plugin, select it and click :guilabel:`Install`." -msgstr "" -"Klik pada tab :guilabel:`Semua`. Ketikkan plugin :kbd:`group stats`. Ketika " -"Anda menemukan plugin, pilih itu dan klik :guilabel:`Install Plugin`." - -# 05bac4fc6b3942799d691f065cff3ad3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:196 -msgid "" -"Once it is installed, you will find Group Stats on :menuselection:`Vektor ‣ " -"Group Stats ‣ Group Stats` or your Toolbar. Click it." -msgstr "" -"Saat sudah berhasil terinstall, Anda akan temukan Group Stats pada :" -"menuselection:`Vektor ‣ Group Stats ‣ GroupStats` atau Klik pada Toolbar " -"GroupStats." - -# 798787461b1249f9a0bd6b2d3354ddc4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:202 -msgid "The Group Stats window will appear." -msgstr "Jendela Group Stats akan tampil. " - -# efef2dae66234fcd9bb71b9115843e9c -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:204 -msgid "" -"To calculate building damages per hamlet, select :guilabel:" -"`bangunan_terdampak_perdusun` in the drop-down box under :guilabel:`layers`." -msgstr "" -"Untuk menghitung kerusakan bangunan per dusun, pilih :guilabel:" -"`bangunan_terdampak_perdusun` pada kotak daftar pilihan yang terdapat di :" -"guilabel:`Layers`." - -# e6b06aba64a647029874d1e66444adda -# 148de0ca52534189bdd9a50e2668a51a -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:208 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:264 -msgid "" -"Find :guilabel:`Nama_Dusun` in the list of fields. Drag and drop it to :" -"guilabel:`Rows`." -msgstr "" -"Temukan :guilabel:`Nama_Dusun` dalam daftar field, kemudian geser ke dalam " -"kolom :guilabel:`Rows`" - -# c13d68829c7a4fd29525c72048a7f630 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:211 -msgid "" -"Find :guilabel:`Damage` and :guilabel:`sum` in the list of fields. Drag and " -"drop them to :guilabel:`Value`." -msgstr "" -"Cari :guilabel:`Damage` dan :guilabel:`sum` pada daftar field, geser ke " -"dalam :guilabel:`Value`." - -# cc98f8a02028419ab64e335335244e09 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:214 -msgid "Click :guilabel:`Calculate`. The results should look like this:" -msgstr "Klik :guilabel:`Calculate`. Hasil Anda akan seperti ini:" - -# 0efe4f2f1a294af0b0b47c93b5709ce5 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:219 -msgid "" -"Go to :menuselection:`Data ‣ Save all to CSV files` and save it as :kbd:" -"`BNG_Damages`." -msgstr "" -"Klik :menuselection:`Data ‣ Save all to CSV file` dan simpan dengan nama :" -"kbd:`BNG_Damages`." - -# f97fb4cd43cb48df96fe64bd0a9d6e12 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:223 -msgid "5. Calculating losses" -msgstr "5. Menghitung Kerugian" - -# d06b4b91021d409db853f198d0b0f53b -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:225 -msgid "" -"We’ve calculated the damaged area and we’ve created a table with damage data " -"for various hamlets in Sirahan. Now let’s implement our losses formula in " -"the same way." -msgstr "" -"Sekarang kita akan menghitung luas kerusakan dan kita akan membuat tabel " -"dengan data kerusakan dari setiap dusun di Desa Sirahan. Kita akan " -"menerapkan rumus untuk menghitung kerugian." - -# f25aacac1bbb44f3a922dbeabdf190f6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:229 -msgid "" -"Go back to the attribute table for :guilabel:`bangunan_terdampak_perdusun` " -"and add a new column named :kbd:`Losses`." -msgstr "" -"Kembali ke tabel atribut :guilabel:`bangunan_terdampak_perdusun` dan " -"tambahkan kolom baru dengan nama :kbd:`Losses`." - -# 5ba5c226e49a416089ab929ee5b5ba8e -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:235 -msgid "Open the :guilabel:`Field Calculator`." -msgstr "Buka :guilabel:`Kalkulator Field`." - -# 49f9f1f6ed0d4975a31540a33d7e8157 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:237 -msgid "" -"Check the box next to :guilabel:`Update existing field` and choose :guilabel:" -"`Losses` in the function list." -msgstr "" -"Beri tanda centang pada kotak :guilabel:`Perbarui field yang sudah ada` dan " -"pilih :guilabel:`Losses` pada kotak di bawahnya." - -# ffd33e30a54c4c4793d032ebf58b272f -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:240 -msgid "At the bottom in the Expression box, enter the following formula:" -msgstr "Di bawah kotak ekspresi, masukkan rumus sebagai berikut:" - -# 88f8a1246f7042308ea911171cc68f49 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:242 -msgid "*“Damage” * 1800000 * 0.7*" -msgstr "*“Damage” * 1800000 * 0.7*" - -# 6a588f1251bb4f4287c8dac8caae48dd -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:247 -msgid "" -"Your new column is now filled with information calculated from this formula, " -"which assesses the value of losses in Rp for each individual building." -msgstr "" -"Kolom baru Anda sekarang sudah terisi dengan infomasi yang dihitung dari " -"rumus ini, dimana nilai kerugian dalam rupiah untuk setiap bangunan." - -# dc3819083f2f41d2a7517c7c02d2aa51 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:250 -msgid "Save the layer and end the editing session." -msgstr "Simpan *layer* dan akhiri bagian mengedit." - -# 01f7f92966b942dab5cf263dc48b730d -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:253 -msgid "6. Calculating losses using the Group Stats plugin" -msgstr "6. Menghitung Kerugian menggunakan Plugin Group Stats" - -# a574b2c9464345069f7ef196d198f130 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:255 -msgid "Now let’s calculate losses per hamlet using the Group Stats again." -msgstr "" -"Sekarang kita akan menghitung kerugian per dusun menggunakan Group Stats." - -# a853471ec6684a3b9cd9261a6ab418be -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:257 -msgid "Open the Group Stats window." -msgstr "Buka jendela Group Stats." - -# 3ec4778a41304fe3bc60f153d92f1802 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:259 -msgid "" -"Select :guilabel:`bangunan_terdampak_perdusun` in the drop-down box under :" -"guilabel:`layers`." -msgstr "" -"Pilih :guilabel:`bangunan_terdampak_perdusun` pada kotak daftar pilihan di " -"bawah :guilabel:`Layers`. ." - -# 10d8ed5554be432f905f88555275840e -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:262 -msgid "Click :guilabel:`Clear` to start a new analysis." -msgstr "Pilih :guilabel:`Clear` untuk memulai analisis yang baru." - -# c397524987dd429e8710f10bfa5e33a7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:267 -msgid "" -"Find :guilabel:`Losses` and :guilabel:`sum` in the list of fields. Drag and " -"drop them to :guilabel:`Value`." -msgstr "" -"Cari :guilabel:`Losses` dan :guilabel:`sum` pada daftar field, kemudian " -"geser ke :guilabel:`Value`." - -# 25814b6003074c0dbfd864c0852d23aa -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:270 -msgid "" -"Click :guilabel:`Calculate`. The new table shows the losses in each hamlet:" -msgstr "" -"Klik :guilabel:`Calculate`. Tabel baru akan menunjukkan kerugian di setiap " -"dusun." - -# ad05f6fd0547427dbcdaa0da978deceb -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:275 -msgid "" -"Go to :menuselection:`Data ‣ Save all to CSV files` and save it as :kbd:" -"`BNG_Losses`." -msgstr "" -"Klik :menuselection:`Data ‣ Save all to CSV files` dan simpan dengan nama :" -"kbd:`BNG_Losses`." - -# 2e107eaea2494b91b7b06eb5b55b7bd3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:279 -msgid "7. Joining data" -msgstr "7. Penggabungan data" - -# ef9c4fd629004302bed66e433b674fd6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:281 -msgid "" -"Now we will join the tables that we created to our :guilabel:" -"`Batas_Desa_Sirahan` attribute table and then use them to add new columns to " -"the file." -msgstr "" -"Sekarang kita akan menggabungkan tabel yang telah kita buat ke atribut " -"tabel :guilabel:`Batas_Desa_Sirahan` dan menggunakannya untuk menambahkan " -"kolom baru ke dalam file." - -# 973224c4fbad4d0b96ffca13bfe981bb -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:285 -msgid "" -"Add the files :file:`BNG_Damages` and :file:`BNG_Losses` into QGIS, using :" -"guilabel:`Add vector layer`. Make sure you set the file type as CSV in the " -"dialog so that CSV files appear." -msgstr "" -"Tambahkan file :file:`BNG_Damages` dan :file:`BNG_Losses` kedalam QGIS, " -"menggunakan :guilabel:`Tambahkan Layer Vektor`. Pastikan Anda klik pada tipe " -"file sebagai CSV, agar file CSV terlihat." - -# eb14e3251c474e6e89c4b23277373266 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:292 -msgid "" -"The new files will appear in your Layers panel but not on your map, because " -"they are not geographic data files, but rather tables." -msgstr "" -"File baru akan tampil dalam daftar layer Anda tetapi tidak dalam peta Anda, " -"karena file tersebut bukan data geografi, tetapi hanya data tabel." - -# 40cd528b451747f7b5dcaee7c6059321 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:298 -msgid "" -"Now we will perform an operation to join the layer :guilabel:" -"`Batas_Desa_Sirahan` with :guilabel:`BNG_Damage`. Right-click on the :" -"guilabel:`Batas_Desa_Sirahan` layer and open the Properties window." -msgstr "" -"Sekarang kita akan menggunakan sebuah operasi untuk menggabungkan *layer* :" -"guilabel:`Batas_Desa_Sirahan` dengan :guilabel:`BNG_Damage`. Klik kanan pada " -"*layer* :guilabel:`Batas_Desa_Sirahan` dan buka jendela Properti." - -# 0fed8ae2d36647fdab02a9c335a728ac -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:303 -msgid "Go to the Joins tab:" -msgstr "Pergi ke tab Gabung:" - -# 533311602eb9444caf6bb808b3ad86ec -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:308 -msgid "Click the plus sign and fill in the following fields:" -msgstr "Klik tanda tambah dan isi kotak-kotak berikut :" - -# 8ee883408ca84a3790a0fd821113d8c0 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:310 -msgid "Join layer: BNG_Damages" -msgstr "Layer yang digabung : BNG_Damages" - -# b898d454544f430b96518ae471441636 -# 0bfc34aac9fe4932ad2182643e009849 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:311 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:322 -msgid "Join field: Nama_Dusun" -msgstr "Field digabung: Nama_Dusun" - -# 64f38fa7fc164b6193110506cf6126c9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:312 -msgid "Target field: Nama_Dusun" -msgstr "Field target: Nama_Dusun" - -# 48476de6403f4526ac860db371c9bf36 -# bc19d222bc6842bbb800029c243abf67 -# d6c4a9e4e8384d338fc086f6f46204b6 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:317 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:325 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:357 -msgid "Click :guilabel:`OK`." -msgstr "Klik :guilabel:`OK`." - -# 82f886c4fda443a5b65aca91aaeb3fbd -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:319 -msgid "Click the plus sign again and fill in the following fields:" -msgstr "Klik tanda tambah lagi da isi field berikut:" - -# f114822a20e044f59e85791903342e14 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:321 -msgid "Join layer : BNG_Losses" -msgstr "Lapisan digabung : BNG_Losses" - -# ba4261f8db6c48f5be9e30d01216ffb7 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:323 -msgid "Target field : Nama_Dusun" -msgstr "Field target: Nama_Dusun" - -# a23a0c24f26b4e0fb3072899ce101a83 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:327 -msgid "" -"Close the Properties window. Open the attribute table for :guilabel:" -"`Batas_Desa_Sirahan`. The BNG_Damages and BNG_Losses columns are now " -"attached based on the hamlet." -msgstr "" -"Tutup jendela properti. Buka tabel atribut untuk :guilabel:" -"`Batas_Desa_Sirahan`. Kolom BNG_Damages dan BNG_Losses tergabung berdasarkan " -"dusunnya masing-masing." - -# d0f4ae710886420f9cae1d093414cf90 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:335 -msgid "" -"Note that the BNG_Damages and BNG_Losses columns are not permanently " -"attached, but rather joined together with our file in the computer memory. " -"We should save it as a new layer. Close the attribute table. Right-click " -"the :guilabel:`Batas_Desa_Sirahan` layer and click :guilabel:`Save as`. Name " -"the new layer :kbd:`analisis_dala_Sirahan.shp`." -msgstr "" -"Perhatikan bahwa kolom BNG_Damages dan BNG_Losses tidak permanen, karena ia " -"disimpan dalam memori komputer kita. Kita perlu menyimpan ulang sebagai " -"*layer* baru. Tutup tabel atribut, klik kanan *layer* :guilabel:" -"`Batas_Desa_Sirahan` dan klik :guilabel:`Simpan sebagai`. Berikan nama layer " -"yang baru :kbd:`analisis_dala_Sirahan.shp`." - -# df4154d175154e32a04709f4cd7b1edc -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:342 -msgid "" -"We need to convert the BNG_Damages and BNG_Losses column in our new layer to " -"real numbers. Open the attribute table for :guilabel:" -"`analisis_dala_Sirahan`. Click the :guilabel:`Toggle editing` button and " -"open the Field Calculator." -msgstr "" -"Kita perlu mengkonversi kolom BNG_Damages dan BNG_Losses pada layer yang " -"baru kita buat ke format desimal. Buka tabel atribut :guilabel:" -"`analisis_dala_Sirahan`. Klik tombol :guilabel:`Toggle modul mengedit` dan " -"buka Kalkulator Field. " - -# 702ff7bc21bd4c4bab0fad13fde2d93e -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:347 -msgid "" -"This time, we will create a new field. Enter as the new field name :kbd:" -"`Damages`, with the output field type as :guilabel:`Decimal number (real)`. " -"Enter :kbd:`20` as the field width and the precision as :kbd:`10`. Under the " -"function list double-click :guilabel:`BNG_Damage`. The window should look " -"like this:" -msgstr "" -"Kali ini, kita akan membuat sebuah kolom baru. Masukan nama kolom yang baru :" -"kbd:`Damages`, dengan tipe field keluaran sebagai :guilabel:`Bilangan " -"desimal (real)`. Lebar field :kbd:`20`, dan presisi :kbd:`10`. Dibawah " -"daftar fungsi klik dua kali pada :guilabel:`BNG_Damage`. Pengaturan kita " -"seharusnya terlihat seperti ini:" - -# b0dc74ebf604460b8132cffe6cb41940 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:359 -msgid "" -"Now, we will create another new field for Losses. Enter as the new field " -"name :kbd:`Losses`, with the output field type as :guilabel:`Decimal number " -"(real)`. Enter :kbd:`20` as the field width and the precision as :kbd:`10`. " -"Under the function list double-click :guilabel:`BNG_Losses`. Click :guilabel:" -"`OK`." -msgstr "" -"Sekarang, kita akan membuat kolom baru untuk Losses. Masukan nama field :kbd:" -"`Losses`, dengan tipe field keluaran sebagai :guilabel:`Bilangan desimal " -"(real)`. Lebar field :kbd:`20` dan presisi :kbd:`10`. Dibawah daftar fungsi " -"klik dua kali pada :guilabel:`BNG_Losses`. Klik :guilabel:`OK`." - -# 12da265270f34385b4b3c59585803952 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:366 -msgid "Exit editing mode and save your changes." -msgstr "Keluar dari mode editing dan simpan perubahan." - -# d1c91023c88a425f813b502e76b38ddc -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:370 -msgid "8. Creating a chart" -msgstr "8. Membuat diagram" - -# 36cb4a76b1ac4ea89eccbe7c5f8922ac -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:372 -msgid "" -"We will conclude by representing these damage and loss values as a chart in " -"QGIS." -msgstr "" -"Sekarang kita akan menampilkan nilai kerusakan dan kerugian dalam bentuk " -"grafik di QGIS." - -# 9fdf6a5130a54c29a1ed65d9f02240c3 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:374 -msgid "" -"Open the the Properties window for :guilabel:`analisis_dala_Sirahan`. Go to " -"the :guilabel:`Diagram` tab." -msgstr "" -"Buka jendela properti :guilabel:`analisis_dala_Sirahan`. Klik tab :guilabel:" -"`Diagram`." - -# c6559cf991a84252b2240a996ecdaafc -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:377 -msgid "Check the box next to :guilabel:`Display diagrams`" -msgstr "Berikan tanda pada kotak :guilabel:`Diagram tampilan`" - -# 46fbcd5c0d044b6d8e7effa86d49d00c -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:379 -msgid "Make sure :guilabel:`Pie chart` is selected in the drop-down box." -msgstr "Pastikan :guilabel:`Grafik pie` terpilih dalam kotak daftar pilihan." - -# 32e320e473b344939046e79d6885b4a9 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:381 -msgid "" -"Under :guilabel:`Available attributes`, select :guilabel:`Damages` and click " -"the plus(+) button." -msgstr "" -"Di bawah :guilabel:`Atribut yang tersedia`, pilih :guilabel:`Damages` " -"kemudian klik tanda tambah (+)." - -# 62749d036d35428fa2494372b536fff2 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:384 -msgid "" -"You can change the colour by double-clicking the colour under :guilabel:" -"`Assigned attributes`. The settings should look like this:" -msgstr "" -"Anda dapat merubah warna dengan klik dua kali pada warna yang ada di :" -"guilabel:`Atribut yang ditetapkan`. Pengaturan kita seharusnya seperti ini" - -# 5af7c32b4f3c41059c9aa93b1b953ff8 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:390 -msgid "Go to the :guilabel:`Size` tab." -msgstr "Pilih tab :guilabel:`Ukuran`." - -# 86d3faefe12b4a9ab5897ccd6a96b85e -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:392 -msgid "" -"Disable the fixed value, and then click :guilabel:`Find Maximum Value`. " -"Change the scale value to :guilabel:`Area`." -msgstr "" -"Non aktifkan ukuran tetap, dan kemudian klik :guilabel:`Cari nilai " -"maksimum`. Ganti skala menjadi :guilabel:`Luas`." - -# 3e90823dd95d4e329078a93fd61323f4 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:398 -msgid "" -"You may change the value next to :guilabel:`Size` also if you feel the " -"diagram is too big." -msgstr "" -"Anda juga dapat mengganti nilai pada :guilabel:`Ukuran` juga misalnya jika " -"Anda merasa tampilan diagram terlalu besar." - -# 51e2c5c1f8904dcc9f7bddba9902f482 -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:401 -msgid "The resulting map will look like this:" -msgstr "Peta hasil Anda akan terlihat seperti ini:" - -# 5557d29413c247f8b002e8271d26092a -#: ../../source/training/old-training/intermediate/qgis-inasafe/405-calculating-damages-and-losses.rst:406 -msgid "" -"The size of each bubble represents the loss values in each hamlet. The " -"bigger the size, the heavier the losses. Creating a map with this sort of " -"chart can be an effective way to communicate the impact of a disaster. Now " -"you can lay out your map, and then create another map showing Losses." -msgstr "" -"Ukuran dari setiap lingkaran menunjukkan nilai kerugian di tiap dusun. " -"Semakin besar ukuran lingkaran maka semakin tinggi kerugian. Membuat peta " -"dengan grafik seperti ini merupakan salah satu cara efektif untuk " -"memberitahukan dampak yang ditimbulkan akibat bencana. Sekarang Anda dapat " -"mengatur tampilan peta Anda, kemudian cobalah untuk membuat peta lain dengan " -"diagram yang menampilkan kerugian." diff --git a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/index.po b/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/index.po deleted file mode 100644 index dc1fc00c..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/old-training/intermediate/qgis-inasafe/index.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# e04c3f8f7b9742ae959b8073e032ec8c -#: ../../source/training/old-training/intermediate/qgis-inasafe/index.rst:4 -msgid "Unit 4: Data Analysis Using QGIS and |project_name| Intermediate Level" -msgstr "" -"Unit 4: Analisis Data Menggunakan QGIS dan |project_name| tingkat Menengah" diff --git a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-00-preface.po b/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-00-preface.po deleted file mode 100644 index 1c952a2d..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-00-preface.po +++ /dev/null @@ -1,287 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Vasanthi Hargyono , 2016\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 219d357a37634c61b66f07f6fe708b26 -# f2cf1c8eae1c4396ba88b18cb075e253 -#: ../../source/training/osm/Chapter-00-preface.rst:5 -#: ../../source/training/osm/Chapter-00-preface.rst:91 -msgid "Preface" -msgstr "Pengantar" - -# 6a1cc6db129243efae0f127c985f0271 -#: ../../source/training/osm/Chapter-00-preface.rst:8 -msgid "Disclaimer" -msgstr "Penolakan" - -# 79d63f09ebec4972bc5d22e94dcf2e88 -#: ../../source/training/osm/Chapter-00-preface.rst:10 -msgid "" -"This document is initial draft and still in reviewing phase by these parties:" -msgstr "" -"Dokumen ini merupakan rancangan awal dan masih dalam tahap peninjauan oleh " -"pihak-pihak sebagai berikut:" - -# d1bcd25359af41debe82d54a1c164294 -#: ../../source/training/osm/Chapter-00-preface.rst:12 -msgid "Badan Nasional Penanggulangan Bencana (|BNPB|)" -msgstr "Badan Nasional Penanggulangan Bencana (|BNPB|)" - -# d8a2ab4740d143389be37b3afb10d009 -#: ../../source/training/osm/Chapter-00-preface.rst:13 -msgid "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" -msgstr "Australia-Indonesia Facility for Disaster Reduction (|AIFDR|-|GoA|)" - -# 7d1effbf34764c37949298617eaba2e5 -#: ../../source/training/osm/Chapter-00-preface.rst:14 -msgid "Humanitarian OpenStreetMap Team (|HOT|)" -msgstr "Humanitarian OpenStreetMap Team (|HOT|)" - -# 520426a824ec404a8734350052a1c0af -#: ../../source/training/osm/Chapter-00-preface.rst:16 -msgid "" -"All contents and materials on this document may be changed without public " -"notice." -msgstr "" -"Seluruh isi dan materi dalam dokumen ini kemungkinan masih dapat mengalami " -"perubahan tanpa pemberitahuan publik." - -# 563f21c25fe94df494bda7393bd5ed79 -#: ../../source/training/osm/Chapter-00-preface.rst:20 -msgid "Licence" -msgstr "Lisensi" - -# 41859a45845d4a21978cd68d4e7dc259 -#: ../../source/training/osm/Chapter-00-preface.rst:24 -msgid "" -"All contents and materials in this document are licensed as Creative Commons " -"Attribution Australia (CCbyA)." -msgstr "" -"Seluruh isi dan materi pada dokumen ini berlisensikan Creative Commons " -"Attribution Australia (CCbyA)." - -# d114645f05024cc4bef4fab95332711e -#: ../../source/training/osm/Chapter-00-preface.rst:27 -msgid "You are free:" -msgstr "Anda dapat:" - -# 2bdc648a77ee4c7da199e1248c8c7892 -#: ../../source/training/osm/Chapter-00-preface.rst:29 -msgid "to copy, distribute, display, and perform the work" -msgstr "menyalin, mendistribusikan, menampilkan, dan mengerjakan lagi" - -# f01c9d84bd1347cf9bbdcea02ee881f2 -#: ../../source/training/osm/Chapter-00-preface.rst:30 -msgid "to make derivative works" -msgstr "untuk membuat karya turunan" - -# a1d65dd5ae184cc0ba1d4ad37b7403c3 -#: ../../source/training/osm/Chapter-00-preface.rst:31 -msgid "to make commercial use of the work" -msgstr "untuk membuat penggunaan yang komersial" - -# 61533ad60f7e4f9eb0269f441efb163d -#: ../../source/training/osm/Chapter-00-preface.rst:33 -msgid "You must give the original author credit." -msgstr "Anda harus memberikan kredit penulis asli." - -# 6989cfee309c4a6884e55d7eb1a1cc47 -#: ../../source/training/osm/Chapter-00-preface.rst:35 -msgid "" -"More information about CCbyA License: http://creativecommons.org/licenses/" -"by/3.0/au/deed.en_GB" -msgstr "" -"Keterangan lebih lanjut mengenai Lisensi CCbyA: http://creativecommons.org/" -"licenses/by/3.0/au/deed.en_GB" - -# c42ec5897e264d098da9cbbe028b0cb0 -#: ../../source/training/osm/Chapter-00-preface.rst:39 -msgid "About Us" -msgstr "Tentang Kami" - -# ded60fc646b7452cb08680f22285a91b -#: ../../source/training/osm/Chapter-00-preface.rst:41 -msgid "Badan Nasional Penanggulangan Bencana (BNPB)" -msgstr "Badan Nasional Penanggulangan Bencana (BNPB)" - -# 2ca1634ab0ae4c2fa41d1c95f840ca9d -#: ../../source/training/osm/Chapter-00-preface.rst:45 -msgid "" -"BNPB is Indonesia’s National Disaster Management Agency. |BNPB| is a non-" -"departmental ministerial-level government agency, tasked with providing " -"guidance and direction to the efforts of disaster management that includes " -"disaster prevention, emergency response, rehabilitation and reconstruction " -"in a fair and equal way. |BNPB| functions as a policy maker regarding " -"refugee/IDP management for effective and efficient response. It coordinates " -"the implementation of disaster management activities in a planned, " -"integrated and comprehensive way." -msgstr "" -"BNPB adalah Badan Nasional Penanggulangan Bencana Indonesia. |BNPB| " -"merupakan lembaga pemerintah non-departemen di tingkat kementrian yang " -"bertugas untuk menyediakan panduan dan pengarahan di bidang manajemen " -"bencana, termasuk pencegahan bencana, respon keadaan darurat, rehabilitasi, " -"dan rekonstruksi secara adil dan merata. BNPB memiliki fungsi sebagai " -"pembuat kebijakan terkait manajemen pengungsi (IDP) untuk bertindak secara " -"cepat dan merespon secara efisien. BNPB juga mengkoordinasikan implementasi " -"dari aktifitas manajemen bencana secara terencana, terintegrasi, dan " -"komprehensif." - -# 16b41f190325409aa54c607fc5555562 -#: ../../source/training/osm/Chapter-00-preface.rst:55 -msgid "http://bnpb.go.id" -msgstr "http://bnpb.go.id" - -# f3738d63b44f401596b3f45dfd527efe -#: ../../source/training/osm/Chapter-00-preface.rst:58 -msgid "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" -msgstr "Australia-Indonesia Facility for Disaster Reduction (AIFDR)" - -# c7250e48c7b54fc8b7317237aaaace9b -#: ../../source/training/osm/Chapter-00-preface.rst:62 -msgid "" -"The Australia-Indonesia Facility for Disaster Reduction (|AIFDR|) is a joint " -"initiative between the governments of Australia and Indonesia. They work to " -"strengthen Indonesia's ability to reduce the impact of disasters. The " -"Australian and Indonesian governments at a special ceremony on 15 July 2010 " -"launched the Australia-Indonesia facility. The launch marks an important " -"event in the strong relationship now shared by both countries and their " -"united commitment to better prepare for and respond to natural disasters in " -"Indonesia." -msgstr "" -"Australia-Indonesia Facility for Disaster Reduction (AIFDR, Fasilitas " -"Australia-Indonesia untuk pengurangan bencana) merupakan inisiatif gabungan " -"antara pemerintah Australia dengan pemerintahIndonesia. AIFDR bekerja untuk " -"memperkuat kemampuan Indonesia untuk mengurangi dampak bencana. AIFDR " -"diluncurkan oleh pemerintah Australia dan pemerintah Indonesia dalam sebuah " -"seremoni khusus pada tanggal 15 Juli 2010. Peluncuran ini menandakan sebuah " -"kejadian penting dalam hubungan kuat yang saat ini terjalin antara kedua " -"negara dan komitmen mereka untuk mempersiakan dan merespon bencana alam di " -"Indonesia lebih baik." - -# 044bd1e0983b422dbf5521fd2cf031c6 -#: ../../source/training/osm/Chapter-00-preface.rst:71 -msgid "http://aifdr.org" -msgstr "http://aifdr.org" - -# a34b979099d84a3d839644ed6bfdd5e6 -#: ../../source/training/osm/Chapter-00-preface.rst:74 -msgid "Humanitarian OpenStreetMap Team (HOT)" -msgstr "Humanitarian OpenStreetMap Team (HOT)" - -# 9f20fb2a9d684d50932900917bec1b5c -#: ../../source/training/osm/Chapter-00-preface.rst:78 -msgid "" -"Free, collaborative maps are uniquely valuable to humanitarian work, " -"especially in places where base map data is often scarce, out-of-date, or " -"rapidly changing. OpenStreetMap (OSM) is a web project to create a free and " -"open map of the entire world, built entirely by volunteers surveying with " -"GPS, digitising aerial imagery, and collecting and liberating existing " -"public sources of geographic data. The Humanitarian OpenStreetMap Team (|" -"HOT|) is an initiative to apply the principles and activities of open source " -"and open data sharing towards humanitarian response and economic development." -msgstr "" -"Peta gratis dan kolaboratif mempunyai keunikan yang berharga untuk pekerjaan " -"kemanusiaan, terutama di tempat-tempat dimana peta dasar sangat jarang " -"ditemukan, datanya sudah lama, atau seringkali berubah. Dibangun dalam dua " -"tahun dari kolaborasi secara informal, Tim Kemanusiaan OpenStreetMap (|HOT|) " -"merupakan sebuah inisiatif yang baru untuk mengaplikasikan prinsip dan " -"aktifitas dari sumber terbuka dan berbagi data terbuka untuk menuju respon " -"kemanusiaan dan pembangunan ekonomi." - -# 6e464d870bc34e9da27f6a497d85a566 -#: ../../source/training/osm/Chapter-00-preface.rst:87 -msgid "http://hot.openstreetmap.org" -msgstr "http://hot.openstreetmap.org" - -# 5d7bd91a8bde4c8baaaaa91642201763 -#: ../../source/training/osm/Chapter-00-preface.rst:92 -msgid "" -"Every day thousands of people contribute to OSM, a project with the lofty " -"goal of mapping the world. Most OSM software is free and open source, and " -"the data is open for anyone to use. The idea is simple: if you make a map of " -"your town and we make a map of ours, we can share those maps on a common " -"platform. With enough people contributing, we can collect data throughout " -"the world." -msgstr "" -"Setiap hari ribuan orang berkontribusi untuk OpenStreetMap, sebuah proyek " -"dengan tujuan mulia yaitu memetakan seluruh dunia. Kebanyakan software OSM " -"adalah gratis dan open source, dan datanya terbuka bagi siapapun yang " -"menggunakannya. Idenya sangat sederhana: jika anda membuat sebuah peta untuk " -"kota dimana anda tinggal dan saya membuat peta dimana saya tinggal, kita " -"dapat berbagi peta tersebut pada sebuah platform yang sama. Dengan orang " -"yang berkontribusi secukupnya, kita dapat membuat peta dan mengumpulkan data " -"dari seluruh dunia." - -# e3d782d070d8415bb5e8a69831890348 -#: ../../source/training/osm/Chapter-00-preface.rst:99 -msgid "" -"Collecting Spatial Data using OpenStreetMap is a step-by-step course " -"designed to help anyone get started with OSM. While it might seem daunting " -"at first, OSM is simple enough that anyone can get started creating maps, " -"and as your understanding grows you'll find that you can do more and more " -"interesting things." -msgstr "" -"Mengumpulkan Data Spasial dengan OpenStreetMap Tingkat Dasar ini merupakan " -"panduan langkah demi langkah yang dirancang untuk membantu siapapun untuk " -"memulai OSM, tanpa mementingkan tingkat kemampuan sejauh mana anda " -"memulainya. Mungkin terlihat rumit ketika anda baru memulainya pertama kali, " -"tetapi OSM sebenarnya cukup sederhana bahwa semua dapat memulai untuk " -"membuat peta, dan seiring dengan bertumbuhnya pemahaman anda, anda akan " -"dapat mengetahui bahwa anda dapat melakukan banyak hal yang menarik dengan " -"OSM." - -# dfb7c1b9a8984510904a836b7ef56230 -#: ../../source/training/osm/Chapter-00-preface.rst:105 -msgid "" -"This tutorial makes few assumptions. It assumes you have used a computer " -"before, and that you have an email address. If you don't have an email " -"address, we suggest you have a friend help you sign up for one. There are " -"many websites where you can get a free email address, such as www.gmail.com " -"or mail.yahoo.com." -msgstr "" -"Panduan ini dibuat berdasarkan asumsi. Yaitu anda telah menggunakan sebuah " -"komputer sebelumnya, dan anda mempunyai sebuah alamat email. Jika anda tidak " -"mempunyai alamat email, kami menyarankan anda untuk mendaftarkan sebuah " -"alamat email dengan bantuan teman anda. Terdapat banyak website dimana anda " -"dapat memperoleh alamat email dengan gratis, seperti www.gmail.com atau mail." -"yahoo.com." - -# 6869381e8cde4d4189470500d19679d8 -#: ../../source/training/osm/Chapter-00-preface.rst:111 -msgid "" -"The only other assumption is that you've used the internet before. Perhaps " -"you're familiar with Facebook or email, and that's certainly enough to get " -"started with OSM. If you're already comfortable using a computer and surfing " -"the web, don't worry – this guide is for you too. No matter your " -"proficiency, we'll take you step-by-step through OSM and you'll be mapping " -"in no time!" -msgstr "" -"Asumsi lainnya adalah bahwa anda pernah menggunakan internet sebelumnya. " -"Mungkin anda mengenal Facebook atau email, dan dengan pengetahuan tersebut " -"sebenarnya sudah cukup untuk memulai dengan OpenStreetMap. Jika anda belum " -"merasa nyaman menggunakan komputer dan menjelajah internet, jangan khawatir " -"– panduan ini juga untuk anda. Tanpa memandang kemahiran anda, kami akan " -"membawa anda langkah demi langkah melalui OSM dan anda akan mampu memetakan " -"dalam waktu yang singkat!" - -# 5b54c3f7908742448912de591aacbaab -#: ../../source/training/osm/Chapter-00-preface.rst:118 -msgid ":ref:`Go to first chapter --> `" -msgstr ":ref:`Pergi ke bab selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-01-introduction.po b/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-01-introduction.po deleted file mode 100644 index 3c441850..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-01-introduction.po +++ /dev/null @@ -1,200 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# d204398e069540ecbdd3f20363576045 -#: ../../source/training/osm/Chapter-01-introduction.rst:6 -msgid "Chapter 1: Introduction" -msgstr "Bab 1: Pengantar" - -# 342aabec49b04a108f6faf6b3a1b3223 -#: ../../source/training/osm/Chapter-01-introduction.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# a8a964c8b4cb404bb76a9520e304057e -#: ../../source/training/osm/Chapter-01-introduction.rst:10 -msgid "Understanding OpenStreetMap" -msgstr "Memahami OpenStreetMap" - -# 09ab60b7430b4e40aca7e37e2bc0b544 -#: ../../source/training/osm/Chapter-01-introduction.rst:11 -msgid "Understanding Data Collection Purposes" -msgstr "Memahami Tujuan Pengumpulan Data" - -# 3459dc2490d74048bdfd069fe0adfdb5 -#: ../../source/training/osm/Chapter-01-introduction.rst:13 -msgid "" -"Information is important. With good information and the right understanding, " -"individuals and communities are better able to improve their lives and make " -"good decisions about the future. There are many people and organizations who " -"make decisions that affect our lives. Good information allows these NGO’s " -"(non-government organisations), governments and communities to make better " -"decisions, and hopefully make our lives better." -msgstr "" -"Informasi sangat penting. Dengan informasi yang baik dan benar " -"pengertiannya, individu dan komunitas dapat lebih baik untuk memperbaiki " -"hidup mereka dan membuat keputusan yang tepat di masa depan. Banyak orang " -"dan organisasi yang membuat keputusan yang dapat mempengaruhi kehidupan " -"kita. Informasi yang baik memungkinkan LSM (organisasi non-pemerintah), " -"pemerintah dan masyarakat untuk membuat keputusan yang lebih baik, dan " -"semoga membuat hidup kita lebih baik." - -# 5b8f529166b742c6b5d3387985a3b932 -#: ../../source/training/osm/Chapter-01-introduction.rst:19 -msgid "*Satellite Imagery*" -msgstr "*Citra Satelit*" - -# 82ba8f2b49114751a5d89662f46da9ff -#: ../../source/training/osm/Chapter-01-introduction.rst:21 -msgid "" -"Maps are a good way to deliver information. Maps are visual symbols ofour " -"world. They can often demonstrate an idea better than words. This in turn " -"can help us answer important questions. Where is the closest school or " -"hospital? Who has the least access to these facilities? Where is poverty the " -"most problematic? Questions like these can often best be expressed with " -"maps, and maps can help find solutions to these questions." -msgstr "" -"Peta dapat digunakan dengan baik untuk menyampaikan informasi. Peta " -"merupakan gambaran visual dari dunia kita. Mereka sering dapat " -"mendemonstrasikan sebuah ide lebih baik daripada kata-kata. Ini juga dapat " -"membantu untuk menjawab pertanyaan penting. Dimana sekolah atau rumah sakit? " -"Siapa yang memiliki sedikit akses untuk fasilitas tersebut? Dimanakah lokasi " -"kemiskinan yang paling bermasalah? Pertanyaan seperti ini paling baik " -"diekspresikan dengan peta, dan peta dapat membantu untuk mencari solusi dari " -"pertanyaan-pertanyaan tersebut." - -# bd1352de191848439c0b02fab3230262 -#: ../../source/training/osm/Chapter-01-introduction.rst:24 -msgid "" -"As an exercise, get a pen and paper and draw a map of your town or village. " -"What are the most important things to include on the map? What is the most " -"important information? Spend a few minutes making your map, and when you’re " -"finished, think about why the information you included is important, and who " -"it might be important to." -msgstr "" -"Sebagai sebuah latihan, ambil sebuah alat tulis dan secarik kertas dan " -"gambarlah sebuah peta dari kota atau desa tempat tinggal Anda. Hal apakah " -"yang paling penting untuk dimasukkan pada peta? Informasi apakah yang paling " -"penting? Berikan waktu selama beberapa menit untuk membuat peta Anda, dan " -"ketika Anda telah selesai, pikirkan tentang kenapa informasi yang Anda " -"masukkan ke dalam peta sangat penting, dan siapa saja yang berkepentingan " -"untuk informasi tersebut." - -# b01b538c2a7d47e09ed600604e091ec9 -#: ../../source/training/osm/Chapter-01-introduction.rst:29 -msgid "*Example of Paper Map*" -msgstr "*Contoh Peta Kertas*" - -# 1817117e71994a14bc81de493f6ba42a -#: ../../source/training/osm/Chapter-01-introduction.rst:31 -msgid "" -"If your town is like most, you may have drawn some lines to represent roads, " -"possibly a river or stream. Perhaps you added important buildings such as " -"schools and offices, fields, or boundaries. Whatever you drew, you probably " -"used symbols – a line to symbolize a road, a square to symbolize a building, " -"and so on. Your map is a representation of what is on the ground." -msgstr "" -"Jika Anda lebih banyak menggambarkan tentang kota Anda, mungkin Anda " -"menggambarkan beberapa garis untuk merepresentasikan jalanan, atau mungkin " -"juga sebuah aliran sungai. Mungkin Anda juga telah menambahkan bangunan-" -"bangunan penting seperti sekolah dan kantor, lapangan, atau batas wilayah. " -"Apapun yang Anda gambarkan, Anda kemungkinan menggunakan simbol sebuah garis " -"untuk menyimbolkan jalan, sebuah persegi untuk menyimbolkan bangunan, dan " -"seterusnya. Peta Anda merupakan sebuah representasi dari apa yang ada di " -"permukaan bumi." - -# b32d0373a196421b98fd98e1a9c5cb67 -#: ../../source/training/osm/Chapter-01-introduction.rst:37 -msgid "*Example of Symbols that be used in Map*" -msgstr "*Contoh Simbol yang digunakan di Peta*" - -# a4f1c5e2e36a447da2e8acf8cd296e5c -#: ../../source/training/osm/Chapter-01-introduction.rst:39 -msgid "" -"Your map is informative. You might use a map like this to explain to someone " -"where different places are, where problems are in your community, or merely " -"to help someone find their way around. The use of your map is limited though " -"- there is only one copy of the map. The way you drew it may make sense to " -"you, but perhaps not to someone else who would have drawn their own map in a " -"different way. Because your map is merely on paper, it is difficult to get " -"that information to others. This is why making your map on a computer, in " -"such a way that anyone can access it, can be much more valuable." -msgstr "" -"Peta Anda bersifat informatif. Anda mungkin akan menggunakan peta seperti " -"ini untuk menjelaskan kepada seseorang dimana tempat-tempat berbeda berada, " -"dimana permasalahan yang terdapat dalam komunitas Anda, atau lebih tepatnya " -"untuk membantu seseorang menemukan tempat tujuannya. Namun, kegunaan peta " -"Anda ini terbatas - Dimana hanya terdapat satu buah salinan dari peta. Dari " -"cara Anda menggambarkannya mungkin Anda memahami isinya, tetapi tidak bagi " -"orang lain yang menggambarkan peta tersebut dengan cara yang berbeda. Karena " -"peta Anda ini digambarkan hanya pada secarik kertas, sangat sulit untuk " -"menyampaikan informasi ini ke orang lain. Inilah mengapa Anda membuat peta " -"pada sebuah komputer, dengan cara seperti itu semua orang dapat mengakses " -"peta tersebut dan membuatnya lebih berharga." - -# 375f29800fb645b2a71f660bb45760c9 -#: ../../source/training/osm/Chapter-01-introduction.rst:46 -msgid "*Digital Map*" -msgstr "*Peta Digital*" - -# e528419161a94eacb2e190a4fe759237 -#: ../../source/training/osm/Chapter-01-introduction.rst:48 -msgid "" -"OpenStreetMap is a tool for creating and sharing map information. Anyone can " -"contribute to OSM, and thousands of people add to the project every day. " -"Users draw maps on computers, rather than paper, but as we will see in this " -"guide, drawing a map on a computer is not all that different from drawing on " -"paper. We still draw lines to represent roads, fields and anything else and " -"we still represent schools and hospitals with symbols. The important thing " -"is that OSM maps are saved on the internet, and anyone can access them at " -"any time. Most importantly, the data are free." -msgstr "" -"OpenStreetMap adalah sebuah alat untuk membuat dan berbagi informasi dalam " -"bentuk peta. Siapapun dapat berkontribusi untuk OSM, dan ribuan orang " -"menambahkan proyek setiap harinya. Para pengguna menggambarkan peta pada " -"komputer, dibandingkan dengan kertas, tetapi kita akan melihat pada panduan " -"ini, menggambar sebuah peta pada sebuah komputer tidak jauh berbeda dengan " -"menggambar peta pata secarik kertas. Kita masih menggambarkan garis untuk " -"merepresentasikan jalan, lapangan, dan lain-lain, dan kita masih " -"merepresentasikan sekolah dan rumah sakit dengan simbol. Hal yang paling " -"penting adalah peta OSM disimpan di dalam internet, dan siapapun dapat " -"mengakses peta tersebut kapanpun, gratis." - -# 0aceebdfae0a4dc6837ab646ca396935 -#: ../../source/training/osm/Chapter-01-introduction.rst:55 -msgid "*OpenStreetMap*" -msgstr "*OpenStreetMap*" - -# f22df9bd471f47dc9a8e2a90a8ede6c7 -#: ../../source/training/osm/Chapter-01-introduction.rst:57 -msgid "" -"We hope that you will find OpenStreetMap useful and interesting in your work " -"and activities. By following this guide, you should be able to quickly learn " -"start making digital maps with OpenStreetMap." -msgstr "" -"Kami berharap bahwa Anda akan menemukan OpenStreetMap yang berguna dan " -"menarik dalam pekerjaan dan kegiatan Anda. Dengan mengikuti panduan ini, " -"Anda dapat belajar dengan mulai membuat peta digital dengan OpenStreetMap." - -# 38079e1472ba43c0826d93c411a112e4 -#: ../../source/training/osm/Chapter-01-introduction.rst:59 -msgid ":ref:`Go to next chapter --> `" -msgstr ":ref:`Bab selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-02-getting-started.po b/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-02-getting-started.po deleted file mode 100644 index cdc47dfc..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-02-getting-started.po +++ /dev/null @@ -1,465 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: elida nurrohmah , 2016\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 9814a3bcb8794ee3ae6ea44c8cc42c58 -#: ../../source/training/osm/Chapter-02-getting-started.rst:6 -msgid "Chapter 2: Getting Started" -msgstr "Bab 2: Memulai OSM" - -# 783c7fb25c8046c88646e03eb1c45b63 -#: ../../source/training/osm/Chapter-02-getting-started.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 2d3eac3b04a84ba687011676434a5805 -#: ../../source/training/osm/Chapter-02-getting-started.rst:10 -msgid "Navigating to the OpenStreetMap Website" -msgstr "Navigasi ke Situs OpenStreetMap" - -# b2ae0081205f455cb8c9619666930b05 -#: ../../source/training/osm/Chapter-02-getting-started.rst:11 -msgid "Know how to navigate OpenStreetMap (search, move, zoom in/zoom out)" -msgstr "" -"Dapat mengoperasikan Situs OpenStreetMap (pencarian, menggeser, memperbesar/" -"memperkecil)" - -# df1a745d1e874edf8dbb4f6b1ca24ef7 -#: ../../source/training/osm/Chapter-02-getting-started.rst:12 -msgid "Know how to export OpenStreetMap into image and changing layers" -msgstr "" -"Dapat mengekspor OpenStreetMap ke dalam bentuk gambar dan mengubah tampilan " -"layer peta" - -# d112953df5da4c37b52bb4c5ba778a0d -#: ../../source/training/osm/Chapter-02-getting-started.rst:13 -msgid "Know how to create an account in OpenStreetMap" -msgstr "Mengetahui cara untuk membuat akun OpenStreetMap" - -# e9d47f4174d6406fb3309dca6250ee4d -#: ../../source/training/osm/Chapter-02-getting-started.rst:15 -msgid "" -"In this section we will learn step by step how to navigate the OpenStreetMap " -"website, view maps, and sign up for a user account. After you have your " -"OpenStreetMap account, you will be able to contribute your first points to " -"the map." -msgstr "" -"Dalam sesi ini, kita akan mempelajari langkah demi langkah cara untuk " -"menavigasikan situs OpenStreetMap, melihat serta mengoperasikan peta dan " -"mendaftar untuk membuat akun OpenStreetMap. Setelah anda memiliki akun " -"OpenStreetMap, anda dapat melakukan kontribusi seperti menambahkan objek ke " -"dalam OpenStreetMap." - -# 981e164b8eaa4c72af56e936d534ebae -#: ../../source/training/osm/Chapter-02-getting-started.rst:18 -msgid "2.1 Visit the OpenStreetMap Website" -msgstr "2.1 Mengunjungi Situs OpenStreetMap" - -# 0ace8e57f2804bcfb26e4cf37a1f7f36 -#: ../../source/training/osm/Chapter-02-getting-started.rst:20 -msgid "" -"Before you begin, be sure your computer is connected to the internet. Then, " -"follow these steps:" -msgstr "" -"Sebelum anda memulai, pastikan komputer/laptop anda telah tersambung dengan " -"koneksi internet. Kemudian, ikuti langkah-langkah berikut:" - -# 9e69d9c0d9b7449d9a90d96544de65c3 -#: ../../source/training/osm/Chapter-02-getting-started.rst:22 -msgid "" -"Open your web browser. Common browsers are Firefox, Chrome, Opera, or " -"Internet Explorer." -msgstr "" -"Buka browser internet anda, seperti Firefox, Chrome, Opera atau Internet " -"Explorer." - -# e1a6b6f01fa94ebfb98e5166cba4c82b -#: ../../source/training/osm/Chapter-02-getting-started.rst:23 -msgid "" -"In the address bar at the top of your browser, type `www.openstreetmap.org " -"`__ and enter" -msgstr "" -"Silakan ketik `www.openstreetmap.org `__ di " -"kolom alamat pada browser anda kemudian tekan enter" - -# 4649f1bb2af44da99561f0df31d5f8ec -#: ../../source/training/osm/Chapter-02-getting-started.rst:24 -msgid "When the page has finished loading, you should see something like this:" -msgstr "" -"Ketika halaman pada situs OpenStreetMap telah selesai dimuat, anda akan " -"melihat tampilan seperti berikut:" - -# 92fdb5d9065d43749bcaab87b7e202fc -#: ../../source/training/osm/Chapter-02-getting-started.rst:29 -msgid "*OpenStreetMap Interface*" -msgstr "*Tampilan OpenStreetMap*" - -# cb206ed053114717b784d7e3e99ee472 -#: ../../source/training/osm/Chapter-02-getting-started.rst:32 -msgid "2.2 Navigate the Map" -msgstr "2.2 Menavigasikan Peta" - -# 4b704df7b01e4c61ab70b30aed3e68f6 -#: ../../source/training/osm/Chapter-02-getting-started.rst:34 -msgid "" -"The main thing you should see is the map. Move the map by clicking on it " -"with your left mouse button, holding the button down, and dragging your " -"mouse around (see figure below)." -msgstr "" -"Hal utama yang seharusnya Anda lihat adalah peta. Geser peta tersebut dengan " -"mengklik peta kemudian tahan tombol tersebut, dan geser mouse Anda (lihat " -"gambar di bawah)." - -# 947613bcba0f4a2ab9c384af8c4cdd44 -#: ../../source/training/osm/Chapter-02-getting-started.rst:39 -msgid "*Some Tools in OpenStreetMap*" -msgstr "*Beberapa Alat di OpenStreetMap*" - -# b39a90e1bb3142f59e5285b09b2251b5 -#: ../../source/training/osm/Chapter-02-getting-started.rst:41 -msgid "" -"If you have mouse with scroll wheel, you can zoom in and zoom out your map " -"using scroll wheel in your mouse. If you do not have, you can use :guilabel:" -"`+` and :guilabel:`-` button at the top right corner on your map." -msgstr "" -"Jika Anda memiliki mouse dengan roda-gulir, anda dapat memperbesar dan " -"memperkecil peta dengan menggunakan roda gulir tersebut. Jika tidak, anda " -"dapat menggunakan tombol :guilabel:`+` and :guilabel:`-` yang berada di " -"sudut kanan atas pada halaman peta anda." - -# 95fc7af4d904407b88e66f69bbae4121 -#: ../../source/training/osm/Chapter-02-getting-started.rst:47 -msgid "*Navigation Instruction Using a Mouse*" -msgstr "*Petunjuk Navigasi Menggunakan Mouse*" - -# 8f2b9bd7399147009ee59b39df884e35 -#: ../../source/training/osm/Chapter-02-getting-started.rst:49 -msgid "" -"To search for a place, left-click in the box labeled :guilabel:`search` on " -"the left side of the page. Type name of your town or village and press " -"Enter. A window should appear to the left of the map with the results of " -"your search. Click on the location that looks like the one you want. The " -"map will automatically re-center on the location chosen from the list." -msgstr "" -"Untuk melakukan pencarian suatu objek atau lokasi, klik pada kotak yang " -"bertuliskan :guilabel:`Search` pada sisi kiri halaman peta. Ketik nama " -"tempat atau objek yang Anda cari dan tekan :guilabel:`Enter`. Sebuah jendela " -"akan muncul di sebelah kiri halaman peta dengan hasil pencarian Anda. Klik " -"pada hasil yang paling sesuai dengan kriteria yang Anda cari. Peta secara " -"otomatis akan menggeser ke lokasi yang Anda pilih." - -# 123c5d8c0e04446397ceede37ae6c291 -#: ../../source/training/osm/Chapter-02-getting-started.rst:56 -msgid "*OpenStreetMap Search Result*" -msgstr "*Hasil Pencarian OpenStreetMap*" - -# 0100469795234b09b658343e6c2af4e8 -#: ../../source/training/osm/Chapter-02-getting-started.rst:59 -msgid "2.3 View with Different Map Styles" -msgstr "2.3 Melihat Beberapa Tampilan Peta" - -# b1bded9f5219446b870d0b60c519bc33 -#: ../../source/training/osm/Chapter-02-getting-started.rst:61 -msgid "" -"OpenStreetMap contains geographic data from all over the world. Although it " -"is a single database, the data can be interpreted and styled in different " -"ways. To see this in action, click the :guilabel:`layers` button at right " -"side in your map window." -msgstr "" -"OpenStreetMap memiliki informasi data geografis dari seluruh dunia. Walaupun " -"tersebut tersimpan dalam satu basis data, data OpenStreetMap dapat " -"diinterpretasikan ke dalam beberapa tampilan. Untuk melihatnya, silahkan " -"klik tombol :guilabel:`layers` di sisi kanan pada halaman peta anda." - -# 5870ee8f065242129e48e137ab5607ff -#: ../../source/training/osm/Chapter-02-getting-started.rst:67 -msgid "*Layer Button to change layers in OpenStreetMap*" -msgstr "*Tombol Layer untuk mengubah tampilan OpenStreetMap*" - -# f1b9c1d495a94942ac5938e395b2f1a9 -#: ../../source/training/osm/Chapter-02-getting-started.rst:69 -msgid "" -"Click on the different layer options for the map. Each layer has a different " -"style. For instance, the Transport Map emphasizes transportation routes such " -"as roads and bus stations, while the Humanitarian Map emphasizes public " -"facilities such as schools, hospitals and government offices. All of these " -"views are possible because of the structured data contained in the OSM " -"database. See the figure below for a comparison of the Transport Map and the " -"Humanitarian Map." -msgstr "" -"Silahkan klik pada beberapa pilihan layer pada peta. Setiap layer memiliki " -"tampilan yang berbeda. Sebagai contoh, layer Peta Transportasi akan " -"memperlihatkan rute transportasi untuk berbagai kendaraan seperti jalan dan " -"halte bis, sedangkan layer Peta Humanitarian akan memperlihatkan berbagai " -"fasilitas publik seperti sekolah, rumah sakit dan kantor pemerintah. " -"Berbagai macam tampilan tersebut dapat ditampilkan karena struktur data " -"yang dimiliki OpenStreetMap." - -# 05a78515731542d2a0a56e3abc7967b1 -#: ../../source/training/osm/Chapter-02-getting-started.rst:76 -msgid "*(Top) Humanitarian (Bottom) Transport Map*" -msgstr "*(Atas) Peta Humanitarian (Bawah) Peta Transportasi*" - -# 61bc2f0ba2694c778e524069589c4024 -#: ../../source/training/osm/Chapter-02-getting-started.rst:79 -msgid "2.4 Export Map into Image" -msgstr "2.4 Mengekspor Peta menjadi Gambar" - -# e7994386299040e291586c9f5b1aa0b5 -#: ../../source/training/osm/Chapter-02-getting-started.rst:81 -msgid "" -"In addition to changing the layers in OpenStreetMap, you also can export " -"your map as an image. The steps are as follow:" -msgstr "" -"Sebagai tambahan untuk mengganti tampilan layer OpenStreetMap, Anda juga " -"dapat mengekspor peta tersebut ke dalam bentuk gambar. Berikut langkah-" -"langkahnya:" - -# 17785b280b5042dab06880200b88547b -#: ../../source/training/osm/Chapter-02-getting-started.rst:83 -msgid "" -"Click the :guilabel:`Share` icon at your right side on your map window, as " -"shown in the figure below:" -msgstr "" -"Klik ikon :guilabel:`Share` di sisi kanan dari halaman peta Anda, seperti " -"yang ditunjukkan dalam gambar di bawah ini:" - -# a93f9c9cd88744a292dc0dc3f0e0198e -#: ../../source/training/osm/Chapter-02-getting-started.rst:88 -msgid "*Share Button in OpenStreetMap*" -msgstr "*Tombol Bagi di OpenStreetMap*" - -# 402cf0e37c104ebfb16e23630e7a1a1b -#: ../../source/training/osm/Chapter-02-getting-started.rst:90 -msgid "" -"After determining the area that want to be exported, tick :guilabel:`Set " -"custom dimensions` box and adjust size of the area that you want to export. " -"You also can change the scale." -msgstr "" -"Setelah menentukan area yang ingin ada ekspor, silahkan centang kotak :" -"guilabel:`Set custom dimensions` dan atur luasan area yang ingin anda " -"ekspor. Anda juga dapat menentukannya dengan mengatur skala peta." - -# 92668017bab34bdda178d052ca384c0c -#: ../../source/training/osm/Chapter-02-getting-started.rst:92 -msgid "" -"When you are finished adjusting the size of the download area, click :" -"guilabel:`download`" -msgstr "" -"Ketika anda sudah selesai mengatur luasan area yang ingin Anda download, " -"klik :guilabel:`download`" - -# d2a6b7a581f543c8a347fbb93b5c0a5f -#: ../../source/training/osm/Chapter-02-getting-started.rst:97 -msgid "*Export Map in OpenStreetMap*" -msgstr "*Mengekspor Map di OpenStreetMap*" - -# 123cb195c6b54f96949ca22d84901c00 -#: ../../source/training/osm/Chapter-02-getting-started.rst:100 -msgid "2.5 Create an Account in OpenStreetMap" -msgstr "2.5 Membuat Akun di OpenStreetMap" - -# 998b1b1182bd43bc80835dddfa9aa70e -#: ../../source/training/osm/Chapter-02-getting-started.rst:102 -msgid "" -"Now that you have seen what the main website looks like, you’re now ready to " -"learn how to create an account in OpenStreetMap and make your first " -"additions to the map. The steps are as follows:" -msgstr "" -"Sekarang Anda telah melihat dan menavigasikan tampilan dari situs " -"OpenStreetMap, sekarang Anda telah siap untuk membuat akun di OpenStreetMap " -"dan memberikan kontribusi anda untuk OpenStreetMap. Ikuti langkah-langkah " -"berikut ini:" - -# d3c285f9d56a43dfbf47b1b7b6d0bb53 -#: ../../source/training/osm/Chapter-02-getting-started.rst:104 -msgid "" -"On the OpenStreetMap website, click :guilabel:`sign up` in the top right " -"corner of the page." -msgstr "" -"Silahkan klik :guilabel:`sign up` di sudut kanan atas dari halaman situs " -"OpenStreetMap." - -# 14ca6ffa6e014c92a39729a8540479b6 -#: ../../source/training/osm/Chapter-02-getting-started.rst:106 -msgid "You should see a new page that looks like the figure below:" -msgstr "Anda akan melihat sebuah halaman baru seperti ini:" - -# 96d3a9841c564f6a990c84a1daa9796e -#: ../../source/training/osm/Chapter-02-getting-started.rst:111 -msgid "*Interface to make account in OpenStreetMap*" -msgstr "*Tampilan membuat akun di OpenStreetMap*" - -# 0424216a0111448fb1809a80825e1b68 -#: ../../source/training/osm/Chapter-02-getting-started.rst:113 -msgid "" -"There are five boxes on this page that you need to fill in to register an " -"account with OSM." -msgstr "" -"Akan ada lima kolom di halaman tersebut yang wajib anda isi untuk dapat " -"membuat akun di OSM." - -# ead9a303deb249b990b0e0060dbd63af -#: ../../source/training/osm/Chapter-02-getting-started.rst:115 -msgid "" -"Enter your :guilabel:`email address` in the first two boxes. You should " -"enter the same email address in both boxes. Later, you will need to open " -"your email to confirm your account with OpenStreetMap." -msgstr "" -"Masukkan :guilabel:`alamat email` anda di 2 kolom pertama. Silahkan masukkan " -"email yang sama di 2 kolom tersebut. Setelah itu, anda nantinya butuh untuk " -"membuka email tersebut untuk melakukan konfirmasi terhadap akun " -"OpenStreetMap yang anda buat." - -# c9dfdebc46614cf6b5136b9ab69b5d11 -#: ../../source/training/osm/Chapter-02-getting-started.rst:117 -msgid "" -"In the third box, enter the :guilabel:`username` that you would like to " -"have. Your username will be unique to you, and you will not be able to " -"choose a username that someone else has chosen, so be creative. If you try " -"to enter something simple, like your first name, it is likely that someone " -"has already claimed that name." -msgstr "" -"Pada kolom ketiga, silahkan masukkan :guilabel:`nama pengguna` yang anda " -"inginkan. Nama pengguna anda harus unik dan anda tidak dapat memilih nama " -"pengguna yang telah diambil oleh orang lain, jadi silahkan menjadi kreatif " -"untuk membuat nama pengguna. Jika anda mencoba nama pengguna yang sederhana " -"seperti nama depan anda, kemungkinan besar nama tersebut sudah dipakai oleh " -"orang lain." - -# 1151a38234664603b13b39b17df322a9 -#: ../../source/training/osm/Chapter-02-getting-started.rst:119 -msgid "" -"Enter a :guilabel:`new password` in the fourth and fifth boxes. Take care to " -"enter the same password in both boxes. It does not need to be the same as " -"the password for your email." -msgstr "" -"Masukkan :guilabel:`kata kunci` yang anda inginkan pada kolom keempat dan " -"kelima. Hati-hati dalam memasukkan kata kunci tersebut dan pastikan anda " -"memasukkan kata kunci yang salam di kedua kolom tersebut. Kata kunci yang " -"anda gunakan dapat sama dengan kata kunci pada email anda atau bisa juga " -"berbeda." - -# 697cb696404743c4912fa4176288da59 -#: ../../source/training/osm/Chapter-02-getting-started.rst:121 -msgid "" -"You may want to write down your OSM username and password. You will need it " -"to log in later." -msgstr "" -"Anda harus menuliskan nama pengguna OSM dan kata kunci anda ketika ingin " -"masuk lagi ke dalam situs OpenStreetMap" - -# ca761ea131e24f25b3ccbf53d9552b55 -#: ../../source/training/osm/Chapter-02-getting-started.rst:123 -msgid "" -"After you have completed all the boxes, click :guilabel:`Sign Up` at the " -"bottom of the page." -msgstr "" -"Setelah anda selesai dalam mengisi semua kolom yang ada, klik :guilabel:" -"`Sign Up` yang berada di bawah halaman situs." - -# aa5a23d0d52a46488f80ef8bcf852382 -#: ../../source/training/osm/Chapter-02-getting-started.rst:125 -msgid "" -"Open a separate window or tab in your internet browser, and open your email." -msgstr "" -"Buka jendela atau tab baru di browser internet anda, dan silahkan buka email " -"anda." - -# 69e4b8846b94436788a4ef4db0541a3f -#: ../../source/training/osm/Chapter-02-getting-started.rst:127 -msgid "Enter your email address and your email password to open your email." -msgstr "Masukkan alamat dan kata kunci email anda untuk membuka email anda" - -# a0636220b5f949539e9ed3f9f66798ab -#: ../../source/training/osm/Chapter-02-getting-started.rst:129 -msgid "" -"If everything was successful with your registration, you should see an email " -"from OpenStreetMap in your inbox. Open the email. It should look like the " -"image below. Click on the link that is identified below:" -msgstr "" -"Jika registrasi Anda telah berhasil, Anda akan melihat email dari " -"OpenStreetMap di kotak masuk email Anda. Kotak masuk Anda akan terlihat " -"seperti gambar di bawah ini. Klik tautan yang disertakan dalam email " -"tersebut seperti yang terlihat di bawah ini:" - -# 45373db834fb4d729563e498b654b671 -#: ../../source/training/osm/Chapter-02-getting-started.rst:134 -msgid "*Notification from OSM in your inbox*" -msgstr "*Pemberitahuan dari OSM di Kotak Masuk email anda*" - -# 9546b55ed0d3441f952abd3b4ea680ea -#: ../../source/training/osm/Chapter-02-getting-started.rst:136 -msgid "A new tab or window will open. You now have an OSM account!" -msgstr "" -"Sebuah tab atau jendela baru akan terbuka. Anda sekarang telah memiliki akun " -"OSM!" - -# 834787fd902e4df9a199441977685072 -#: ../../source/training/osm/Chapter-02-getting-started.rst:138 -msgid "" -"On the OpenStreetMap page, click :guilabel:`Sign Up` in the top right " -"corner. Enter your OpenStreetMap username and password and press Enter. You " -"should now be logged in. You should see your username in the upper right " -"corner of the page." -msgstr "" -"Pada halaman OpenStreetMap, klik :guilabel:`Sign Up` yang berada di sudut " -"kanan atas. Masukkan nama pengguna OpenStreetMap dan kata kunci Anda " -"kemudian tekan enter. Anda akan masuk ke dalam akun OSM Anda dan anda akan " -"melihat nama pengguna Anda di sudut kanan atas pada halaman situs " -"OpenStreetMap." - -# 90ded1e3194c414781dc39494dcffff7 -#: ../../source/training/osm/Chapter-02-getting-started.rst:140 -msgid "" -"If there are any problems, an error message may pop up. Check top make sure " -"that your email is the same in the first two boxes, and your password is the " -"same in the bottom two boxes. If the third box is highlighted red, it means " -"that someone else has already chosen your username, and you should try a " -"different name." -msgstr "" -"Jika Anda menemukan masalah saat akan masuk ke akun Anda, sebuah pesan " -"kesalahan akan muncul. Pastikan alamat email Anda sama dengan kotak pertama, " -"dan kata sandi Anda sama dengan dua kotak dibawah. Jika kotak ketiga " -"ditandai berwarna merah, itu berarti seseorang telah memilih nama pengguna " -"Anda, dan Anda harus mencoba nama yang berbeda." - -# f0b8671c5656425eabca77e7dd825137 -#: ../../source/training/osm/Chapter-02-getting-started.rst:143 -msgid "Summary" -msgstr "Ringkasan" - -# 7a4c768fbab948e39cac087cd35b58d4 -#: ../../source/training/osm/Chapter-02-getting-started.rst:145 -msgid "" -"Congratulations! If all went as expected, you have your own OpenStreetMap " -"account and you know how to navigate the OSM website. In next chapter, we " -"will learn how to add our data into OpenStreetMap using online editor called " -"iD Editor." -msgstr "" -"Selamat! Anda telah berhasil membuat akun OpenStreetMap dan Anda sudah dapat " -"mengedit OpenStreetMap. Sekarang kita akan belajar menambahkan data dan " -"mengedit menggunakan sebuah editor yang berjalan di browser yang dinamakan " -"iD Editor" - -# 653e482d83104bd0a899a5c5e87e2d50 -#: ../../source/training/osm/Chapter-02-getting-started.rst:148 -msgid ":ref:`Go to next chapter --> `" -msgstr ":ref:`Lihat bab selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-03-introducing-the-id-editor.po b/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-03-introducing-the-id-editor.po deleted file mode 100644 index 5ed8f983..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-03-introducing-the-id-editor.po +++ /dev/null @@ -1,717 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 1b1f181ea8554abb8ff0087d1cd878eb -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:6 -msgid "Chapter 3: Introducing the iD Editor" -msgstr "Bab 3: iD Editor" - -# 72718940b19e47cfa75a79a596fd9ff1 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 9fd77d6c4e9043bab0abd28f9dba053e -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:10 -msgid "Understanding iD Editor interface" -msgstr "Mengetahui tampilan antar muka iD Editor" - -# 0d3827287c2d4a258379c4d360e35f94 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:11 -msgid "Editing OpenStreetMap using the iD Editor" -msgstr "Mengedit OpenStreetMap dengan iD Editor" - -# 096ec962d9c44460b7f9f07de1af308e -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:12 -msgid "Saving and Uploading edits" -msgstr "Menyimpan dan mengupload hasil editing" - -# da7e16da10b64f4c996fd9cc23b94e01 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:14 -msgid "" -"You have succeeded on creating OpenStreetMap account and you’re eligible to " -"edit OpenStreetMap. Now we will learn how to add your data and edit it using " -"an editor that runs in the browser called the iD Editor." -msgstr "" -"Anda telah berhasil membuat akun OpenStreetMap dan Anda sudah dapat mengedit " -"OpenStreetMap. Sekarang kita akan belajar menambahkan data dan mengedit " -"menggunakan sebuah editor yang berjalan di browser yang dinamakan iD Editor" - -# bdc6834fcb714268b86b1a289864c3b4 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:17 -msgid "" -"iD Editor is a web based OpenStreetMap editor that allows you to add and " -"make changes to the OpenStreetMap data easily and fast by using spatial data " -"sources such as satelite imagerY, GPS, and FiledPapers." -msgstr "" -"iD Editor merupakan sebuah editor OpenStreetMap berbasis web yang berguna " -"untuk menambahkan atau mengubah data dalam OpenStreetMap dengan mudah dan " -"cepat dengan menggunakan sumber-sumber data spatial seperti citra satelit, " -"GPS, dan FieldPapers." - -# 301fa7a6b9a141e985112d5e6a647a6d -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:21 -msgid "3.1 STARTING ID EDITOR" -msgstr "3.1 Memulai iD Editor" - -# 89bdc21e291f482d84a22354e8887ee2 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:23 -msgid "" -"Before you start, your computer must be connected to the internet. Open your " -"browser, then go to OpenStreetMap website `http://www.openstreetmap.org " -"`_ , :guilabel:`log in` to your account and :" -"guilabel:`zoom in` to the area that you want to edit until the Edit menu is " -"active. Click on the :guilabel:`arrow sign` next to the :menuselection:`Edit " -"‣ Edit with iD (in-browser editor)` as shown in the figure below." -msgstr "" -"Sebelum Anda mulai, komputer Anda harus terhubung dengan internet. Buka " -"browser internet Anda, kemudian buka situs OpenStreetMap `http://www." -"openstreetmap.org `_ , kemudian :guilabel:" -"`Masuk` dengan akun OpenStreetMap dan :guilabel:`zoom in` pada area yang " -"ingin Anda edit sampai Menu Edit aktif. Klik pada tanda panah kemudian klik :" -"menuselection:`Edit ‣ Edit with iD (in-browser editor)` seperti ditunjukkan " -"gambar dibawah ini." - -# de009856fd404bd499365c21aac8ffbb -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:31 -msgid "*Activating iD Editor on OpenStreetMap website*" -msgstr "*Mengaktifkan iD Editor di Situs OpenStreetMap*" - -# 4dec832c4f574e93bd7f171504a9b493 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:34 -msgid "3.2 iD Editor Interface" -msgstr "3.2 Tampilan Antar Muka iD Editor" - -# 1e1da4b481c645b7a2e118cbe29cbaa4 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:36 -msgid "The figure below shows the main features of the iD editor." -msgstr "Gambar di bawah ini menunjukkan fitur utama dari iD Editor." - -# 0d211af58e7440c5a912fcb61f6b5dee -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:41 -msgid "*iD Editor Interface*" -msgstr "*Tampilan iD Editor*" - -# 16084bafe6254fe3b7df192395afa960 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:43 -msgid "" -"**Feature Panel**: This panel will show the attributes of an object selected " -"from the map. You can add and edit attribute data from this panel." -msgstr "" -"**Panel Fitur**: Panel ini akan menampilkan atribut dari suatu objek yang " -"menandakan objek tersebut pada peta. Anda dapat menambahkan dan mengedit " -"data atribut dari panel ini." - -# a070c2620d3e4fa09fd93a05bb169681 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:46 -msgid "" -"**Panel tools**: This Panel shows some basic editing functions, such as:" -msgstr "" -"**Panel tools**: Panel ini menampilkan beberapa fungsi dasar untuk mengedit " -"peta, yaitu sebagai berikut: " - -# 4d6fba4a8f7340dc9b943010a4c89bb7 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:49 -msgid "Adding a point" -msgstr "Menambahkan titik" - -# 146f6751c06241c2a3ee35c0d854ce59 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:51 -msgid "Adding lines" -msgstr "Menambahkan garis" - -# c070a64c1e9f40c6b075761524d9471f -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:53 -msgid "Adding an area (polygon)" -msgstr "Menggambar bentuk area (poligon)" - -# 904b5438340f49cb887597aac52a0c31 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:55 -msgid "Undo" -msgstr "Membatalkan pilihan" - -# d63dfac54754414e96d8a649707547c9 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:57 -msgid "Redo" -msgstr "Memajukan pilihan" - -# da9c2ba1baea422bb67ef4f2dbe61422 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:59 -msgid "Saving your changes" -msgstr "Menyimpan perubahan" - -# 86d8fcc7613d493c929bc23e7ea186be -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:62 -msgid "" -"**Map Panel**: This panel shows some functions to set and alter the map " -"display" -msgstr "" -"**Panel Peta**: Panel ini menampilkan beberapa fungsi untuk mengatur " -"tampilan peta" - -# 512c734132c64ae7ae254c2f7be30455 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:65 -msgid "Zoom In" -msgstr "Perbesar" - -# 23a18c241e544a8d9c9923cd2eab7e67 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:67 -msgid "Zoom Out" -msgstr "Perkecil" - -# 34e8472f3f06460f866168faff5339cd -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:69 -msgid "Go to your current location" -msgstr "Menuju lokasi saat ini" - -# b110dc05c17d4898aad94b11c6e6215c -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:71 -msgid "Set the map background" -msgstr "Mengatur tampilan latar belakang peta" - -# 6250f78231c9499ab443f522b308eede -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:73 -msgid "Getting Help" -msgstr "Mendapatkan bantuan" - -# 32ec1004bf6343a5a019c7fe04f1d4c6 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:76 -msgid "" -"**Information panel**: At the very bottom of the image area, this panel " -"shows some information such as those who have contributed map edits in this " -"area, as well as attribution for imagery sources and other map data." -msgstr "" -"**Panel keterangan**: Terletak di paling bawah pada peta Anda, panel ini " -"menampilkan beberapa keterangan siapa saja yang pernah berkontribusi " -"mengedit pada area tersebut." - -# 01ebb4906e824f20b6278dbf04e691ec -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:80 -msgid "3.3 Setting the Map Background" -msgstr "3.3 Mengatur Tampilan Latar Belakang Peta" - -# dc69920d1fce483e8ec40d8cfee7677e -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:82 -msgid "" -"Before you start editing, you can change the map background. Now click on " -"the :guilabel:`layer button`" -msgstr "" -"Sebelum memulai mengedit, Anda dapat mengubah latar belakang tampilan peta. " -"Klik tombol :guilabel:`Pengaturan Latar Belakang`" - -# 86226458dd4e4107bb66eef4db55cc53 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:87 -msgid "Then a new panel will pop up like this:" -msgstr "Kemudian akan muncul panel baru seperti di bawah ini:" - -# ad4e996fc1bd40a9a66659abd0479753 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:92 -msgid "*Background and brightness setting in iD Editor*" -msgstr "*Pengaturan latar belakang dan tingkat kecerahan di iD Editor*" - -# bffb8b22eb144b859f5bf3e1fefec230 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:94 -msgid "There are several ways to adjust the background in iD Editor. They are:" -msgstr "" -"Ada beberapa langkah untuk pengaturan latar belakang di iD Editor, sebagai " -"berikut:" - -# c44c1254af204fba8d163345c53a5bc8 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:96 -msgid "" -"You can set the brightness of the satellite imagery by clicking on this box" -msgstr "" -"Anda dapat mengatur tingkat kecerahan citra satelit dengan mengklik salah " -"satu kotak seperti ini" - -# afe983aa8bcf4fcabea2f476620059f0 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:101 -msgid "" -"There are 3 brightness you can choose: 100%, 50%, and 0%. Try all of them to " -"see the difference." -msgstr "" -"terdapat 3 tingkat kecerahan yang dapat dipilih: 100%, 50%, dan 0%. Cobalah " -"ketiganya untuk mengetahui perbedaannya." - -# 32bde51ec9074598b4e729a7fbdb0899 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:103 -msgid "" -"You can also set the provider of satellite imagery depending on which one is " -"available for your desired area (the standard choice is Bing Aerial " -"Imagery). You can also set OpenStreetMap map as your background." -msgstr "" -"Anda juga dapat mengatur tampilan latar belakang citra satelit sesuai dengan " -"yang tersedia untuk wilayah Anda (pilihan standar adalah Bing Aerial " -"Imagery). Anda dapat juga menampilkan peta OpenStreetMap sebagai tampilan " -"latar belakang. " - -# 9a5168c4e0074f8bbf08d8c85cbd92a2 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:106 -msgid "" -"Also, if you want to make a previously uploaded Field Papers to be your " -"background, please click on the :guilabel:`Custom` choice and put the " -"FieldPapers URL (for example: *http://fieldpapers.org/snapshot.php?" -"id=fdsbgzns#17/-6.20049/106.82533*) on the column as seen below:" -msgstr "" -"Juga, jika Anda ingin menampilkan latar belakang dengan tampilan Fieldpapers " -"yang sudah diupload, silahkan klik pada :guilabel:`Custom` dan masukkan " -"alamat FieldPapers (sebagai contoh:*http://fieldpapers.org/snapshot.php?" -"id=fdsbgzns#17/-6.20049/106.82533*) pada kolom yang muncul seperti pada " -"gambar dibawah ini:" - -# 5c59266573114e66b3d88f88b246f0d5 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:113 -msgid "*Inserting Field Papers into iD Editor*" -msgstr "*Memasukkan Field Papers ke dalam iD Editor*" - -# ad91fdd1a8ad469ba936b8f61103d2dd -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:115 -msgid "" -"You can add your GPS tracks and waypoints that are saved on your computer " -"(they must be in GPX file format). Just click on your :guilabel:`GPX`, hold, " -"and drag it to the editor page." -msgstr "" -"Anda juga dapat menambahkan track dan waypoint GPS yang tersimpan dalam " -"komputer Anda (format GPX). Caranya klik pada :guilabel:`GPX`, tahan, " -"kemudian geser ke halaman editor. " - -# 02f632df50dc462daa6e35239210f47d -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:118 -msgid "" -"If there is a known satellite imagery offset, you can do a correction by " -"clicking on :guilabel:`Fix misalignment` until a box seen below shows up:" -msgstr "" -"Jika terdapat pergeseran citra satelit, Anda dapat melakukan koreksi dengan " -"cara klik :guilabel:`Fix misalignment` hingga keluar tampilan kotak seperti " -"ini: " - -# d43969f0ac9d4fb19578e28c8a691815 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:124 -msgid "" -"You can set the correction by clicking on the :guilabel:`navigation buttons`" -msgstr "Anda dapat mengatur koreksinya dengan klik :guilabel:`tombol navigasi`" - -# 05b1da439083499295c12d29558c776f -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:129 -msgid "Click on" -msgstr "Klik untuk" - -# 53dcd59c984847749f1b2c3988b5956b -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:134 -msgid "to bring the imagery back to the initial position." -msgstr "mengembalikan posisinya seperti semula." - -# e0b7c96a4e6a41f8b232221f7a15aa27 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:137 -msgid "3.4 BASIC EDITING WITH ID EDITOR" -msgstr "3.4 Editing Dasar dengan iD Editor" - -# d4301ff01e3f485c9134f599c7021b63 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:139 -msgid "" -"Before we start practicing using iD Editor, first navigate to the desired " -"area on the map that you want to edit. You can pan around the map by " -"clicking on your mouse and dragging the map to your area of interest." -msgstr "" -"Sebelum kita memulai praktik dengan iD Editor, pertama arahkan ke wilayah " -"yang ingin Anda edit. Anda dapat menggeser tampilan Anda dengan menahan " -"tombol kiri pada mouse sambil menggeser ke arah yang diinginkan." - -# 690178be20eb4c2398c556ac242cac5d -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:143 -msgid "Adding a Point" -msgstr "Menambahkan Titik" - -# 526bff5a05f549e7a005d80a62f2be4d -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:145 -msgid "To add a point feature, click on" -msgstr "Untuk menambahkan sebuah fitur titik, klik pada " - -# 7566496f14fe4dddaeb8938ee8fab5c5 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:150 -msgid "" -"You will see the cursor change into a plus sign **(+)**. Now, click on the " -"object that you want to map. For example, you see a building on the map and " -"you know that building is a hospital. Click on the building." -msgstr "" -"Anda akan melihat tampilan kursor berubah menjadi tanda **(+)**. Sekarang, " -"klik pada posisi yang Anda ketahui. Misalnya, Anda melihat sebuah bangunan " -"pada peta dan Anda mengetahui bangunan tersebut adalah sebuah Rumah Sakit. " -"Klik pada bangunan tersebut." - -# 250db7c6945647a6a4812cb0fb8211d8 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:156 -msgid "*Adding a point in iD Editor*" -msgstr "*Menambahkan titik di iD Editor*" - -# 5e98946715964ec3bdfcdb72736bb770 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:158 -msgid "" -"Now, you can see there’s a new point. At the same time, the feature panel " -"will be showing you attributes that you can choose depending on the object " -"type. Now type **Hospital** on the Search section, and choose **Hospital** " -"to add this feature to the map, as shown in the figure below." -msgstr "" -"Sekarang, perhatikan bahwa Anda akan mendapati sebuah titik baru. Dan pada " -"saat yang bersamaan, panel fitur akan memunculkan atribut-atribut pilihan " -"yang dapat Anda gunakan untuk menandakan tipe objek. Sekarang, ketikkan " -"**Hospital** pada kotak pencarian, dan pilih **Hospital** untuk menambahkan " -"fitur ke peta, seperti ditunjukkan pada gambar di bawah ini." - -# 28145ad4ddc748c5828659ff0e39768f -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:165 -msgid "*Adding information to a point in iD Editor*" -msgstr "*Menambahkan informasi titik di iD Editor*" - -# fdd1d5c056c74538839c02c1cb84d1a6 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:167 -msgid "" -"The point symbol will change automatically, and the feature panel will " -"change into a form which can be filled with information about the hospital, " -"such as the name of the hospital, the address, and other information about " -"this feature." -msgstr "" -"Simbol titik Anda berubah secara otomatis, dan panel fitur akan berubah " -"menjadi sebuah formulir isian dengan informasi mengenai rumah sakit, seperti " -"nama rumah sakit, alamat lengkap sebagai informasi tambahan mengenai objek " -"tersebut." - -# 08b9610c2f8b4d568773858a6fb0b8c4 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:169 -msgid "" -"Features may have a different forms - points, lines, or polygons. It will " -"depends on the type of the feature, the mapping scale, and the quality of " -"imagery." -msgstr "" -"Setiap fitur akan memiliki formulir yang berbeda - titik, garis, atau " -"poligon. Formulir tersebut tergantung dari jenis fiturnya, skala peta, dan " -"kualitas dari citra satelit." - -# 6f2f7f184bd44fa4832b4da1861e09fe -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:172 -msgid "" -"If you want to move the location of that point, you can click on the object " -"then hold it and move it to the new location. If you want to delete the " -"object, click on the object, a delete button will show up." -msgstr "" -"Jika Anda ingin menggeser posisi titik, klik dan tahan pada titik tersebut " -"kemudian geser ke lokasi yang baru. Jika Anda ingin menghapus titik " -"tersebut, klik pada titik yang ingin dihapus, sehingga akan keluar tombol " -"seperti di bawah ini." - -# 0d0a2aafb8714c3fb739681f55862dcf -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:178 -msgid "Click on that button to delete the object." -msgstr "Klik tombol tersebut untuk menghapus objek." - -# 417737d6cb29463bb84369e7a5d535a3 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:181 -msgid "Adding a Line" -msgstr "Menambahkan Garis" - -# 229f6b3be3c840eea804146a06038a07 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:183 -msgid "Click on:" -msgstr "Klik pada:" - -# 98e77901832a4ac2961602e5a275bb6f -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:188 -msgid "" -"And again you will see the cursor change into a plus sign **(+)**. Suppose " -"you want to draw a road. To do this, first click at one of the ends of the " -"road, then just move your cursor to and keep clicking along the way of the " -"roads and follow it until a road line formed. Double click to end the line " -"and the feature panel will appear again on the left side of the window." -msgstr "" -"kemudian Anda akan melihat tampilan kursor berubah menjadi tanda plus " -"**(+)**. Misalnya Anda akan menggambar sebuah jalan , maka pertama klik kiri " -"pada salah satu ujung jalan, kemudian tarik hingga membentuk sebuah garis. " -"Klik dua kali untuk mengakhiri garis dan panel fitur akan muncul pada " -"sebelah kiri Anda." - -# 6d80946318184876b71b8276b69b9624 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:196 -msgid "*Adding lines in iD Editor*" -msgstr "*Menambahkan garis di iD Editor*" - -# 649c39ddaa5846a8ad11b78ff75becf5 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:198 -msgid "" -"The feature panel will display some attributes for you to choose from, " -"depending on the type of your line. You can also move the points in the line " -"by clicking on a point and move it. The other thing you can do is move the " -"line by clicking on it, holding down the mouse button, and moving the line. " -"Also, when you click on a point (vertex) on the line, you will find some " -"additional functions as shown in the figure below:" -msgstr "" -"Panel fitur akan memunculkan beberapa atribut-atribut pilihan yang dapat " -"Anda gunakan untuk menandakan garis yang Anda pilih. Anda dapat menggeser " -"titik dari garis dengan cara klik dan tahan mouse pada satu titik dan " -"menggesernya. Anda juga dapat menggeser garis tersebut dari posisi " -"sebelumnya dengan cara menahan tombol kiri mouse pada garis dan " -"menggesernya. Ketika Anda mengklik sebuah titik (vertex) dari garis, Anda " -"akan menembukan fungsi-fungsi tambahan sebagai berikut:" - -# 681c43ac9b104d8ea10049335d1d92e2 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:205 -msgid "Deleting/removing the point from the line" -msgstr "Menghapus titik dari garis" - -# faf07503033148b0be38101ed95019f7 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:207 -msgid "Separating a point that is attached to other object." -msgstr "Memisahkan titik yang menempel pada objek lain" - -# b85a3c04e38f47fda5f3d9ed755ec4c7 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:209 -msgid "" -"Spliting a line into two different parts. It is useful when there are " -"different attributes in a long line (For example, different road names)" -msgstr "" -"Membagi satu garis menjadi dua bagian. Berguna jika dalam satu garis lurus " -"terdapat perbedaan atribut (misal nama jalan yang berbeda)" - -# 344aa4e190cb4dbf9ed0aba726f602e1 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:212 -msgid "" -"Also, when you click on the line (in between points), you will find " -"additional functionality as shown in the figure below:" -msgstr "" -"Ketika Anda mengklik sebuah garis (diantara titik), Anda akan menemukan " -"fungsi tambahan sebagai berikut:" - -# a502a1dcea914ae694de22fcad2c3960 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:215 -msgid "Removing the line" -msgstr "Menghapus garis" - -# 26acf70c7f9e474aa8f5cf9f1f9a81db -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:217 -msgid "Forming the line into a circle" -msgstr "Membentuk garis menjadi sebuah lingkaran" - -# 499b07c4c651473d90b821bb7fe24a40 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:219 -msgid "Moving the line position" -msgstr "Memindahkan posisi garis" - -# 84945d9ec54d4d4996c14cd540036337 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:221 -msgid "Creating the angles of the line into right-angled line" -msgstr "Membuat sudut garis menjadi siku-siku" - -# 6367f62a3128413baec71425328c3229 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:223 -msgid "Reversing the line direction" -msgstr "Memutarbalikkan arah garis" - -# 4b8b61bf200a442892ddc4a348b466cb -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:230 -msgid "Adding an Area (Polygon)" -msgstr "Menambahkan Area (Poligon)" - -# f92a38d6d2b3403d93c522f71c2a7530 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:232 -msgid "To add an area, or polygon feature, click on the button below:" -msgstr "" -"Untuk menambahkan sebuah area, atau fitur poligon, klik pada gambar seperti " -"di bawah ini:" - -# 8742d9f1ce44422c9a2c7d85ab333d93 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:237 -msgid "" -"Again the cursor will change to a plus sign **(+)**. Using the imagery as a " -"guide, trace the area by clicking on the corners of the feature, as shown in " -"the figure below." -msgstr "" -"Kemudian kursor akan berubah menjadi tanda plus **(+)**. Gunakan citra " -"satelit sebagai panduan, gambar area dengan klik pada sudut fitur, seperti " -"ditunjukkan gambar dibawah ini. " - -# b3f530caf68548c5870e8f17cb0a32fb -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:243 -msgid "*Adding area/polygon in iD Editor*" -msgstr "*Menambahkan area/poligon di iD Editor*" - -# 0002848288e04b66acedacb743b52627 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:245 -msgid "" -"As with point and line features, when you click on one of the point on the " -"polygon, you will see additional editing functionality. Similarly, clicking " -"on the line of the polygon (between points) will reveal additional editing " -"operations available to you." -msgstr "" -"Sama seperti titik dan garis, ketika Anda mengklik salah satu titik dalam " -"poligon, Anda akan mendapatkan fungsi tambahan. Begitu pula ketika Anda " -"mengklik garis dari poligon (diantara titik) akan \n" -"Demikian pula, klik garis pada poligon (antara titik) akan muncul menu " -"pengeditan tambahan yang tersedia untuk Anda." - -# d32870718c7f42bea1919f04b1929985 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:250 -msgid "3.5 Saving your Changes" -msgstr "3.5 Menyimpan Perubahan Anda" - -# 5081022c212f42e892f2644f06f16140 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:252 -msgid "Click on the button below:" -msgstr "Klik pada tombol di bawah ini:" - -# 6040f3ffb64446558185301ebd833912 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:257 -msgid "" -"to save your changes. Pay attention to the panel on your left side that will " -"show something like this:" -msgstr "" -"untuk menyimpan perubahan Anda. Kemudian perhatikan panel di sebelah kiri " -"Anda, akan berubah seperti pada gambar di bawah ini:" - -# d17c60d978344ed1a4412be0b6e5a1df -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:262 -msgid "*Saving your changes in iD Editor*" -msgstr "*Menyimpan perubahan di iD Editor*" - -# b4aef9f90c44419b8659e24407f7b198 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:264 -msgid "" -"Fill in the :guilabel:`Comment column` with a brief note about the changes " -"made in that area so that other users can note your edits. Then click :" -"guilabel:`Save`." -msgstr "" -"Isilah komentar pada :guilabel:`Commit message` dengan catatan singkat " -"mengenai perubahan area yang Anda edit atau tambahkan agar pengguna lain " -"mengetahuinya. Kemudian klik :guilabel:`Simpan`." - -# d5505e0866e34d9eae9226f6e2c234c7 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:268 -msgid "3.6 Additional Attributes" -msgstr "3.6 Atribut Tambahan" - -# ec74f342d13147cea3d60723f16e7e5d -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:270 -msgid "" -"When you add attributes to features, you can make the data more useful by " -"adding more information. The icons shown in the figure below help you to add " -"additional details to your map data:" -msgstr "" -"Pada saat Anda menentukan atribut fitur, Anda dapat membuat data yang lebih " -"bermanfaat dengan menambahkan informasi tambahan. Dengan ikon-ikon yang akan " -"muncul seperti dibawah ini dapat membantu Anda dalam menambahkan rincian " -"tambahan di data peta Anda:" - -# 5bc1b3a98d1e48438a5825ae0876c7ba -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:274 -msgid "Adding elevation information" -msgstr "Menambahkan informasi ketinggian" - -# 9f018c0c3b984d07a481e67de3453b53 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:276 -msgid "Adding notes" -msgstr "Menambahkan catatan" - -# cf7c8b51b72b4c34bedd06cb49091dad -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:278 -msgid "Adding contacts/phone number" -msgstr "Menambahkan kontak/nomor telepon" - -# 6e1578704d704180a1d0413937af556c -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:280 -msgid "Adding sources" -msgstr "Menambahkan sumber" - -# d3efd5b5222a454b88776736eeb55610 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:282 -msgid "Adding website information" -msgstr "Menambahkan informasi situs" - -# 310f1bee190f445882b32944ba10478a -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:284 -msgid "" -"Add information on the availability of accessibility for people with " -"disabilities" -msgstr "" -"Menambahkan informasi pada ketersediaan aksesibilitas untuk penyandang cacat" - -# e1ba7985c10746ae9bd61df6986f3459 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:286 -msgid "Adding Wikipedia links" -msgstr "Menambahkan tautan Wikipedia" - -# 6bfee51c8ac74dd7aabcc58853d6fbd3 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:289 -msgid "**Tags list on iD Editor**" -msgstr "*Daftar tag di iD Editor*" - -# 7cc66892480648f7ab345ece5ce7f146 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:291 -msgid "" -"In addition, you can also add your own attributes by clicking on the icon" -msgstr "" -"Selain itu, Anda dapat menambahkan atribut sendiri dengan mengklik pada ikon" - -# ed4315542b5f40f7be99aed269d45bad -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:296 -msgid "This will raise a form allowing you to add your own attributes:" -msgstr "" -"Ini akan muncul formulir yang memungkinankan Anda untuk menambahkan atrribut " -"Anda sendiri:" - -# 17899f75ea2b4712bfe1f855dd326153 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:301 -msgid "" -"Click on the :guilabel:`+` sign to add a key and value that you want. For " -"guidance, consult the full list for key/value pairs here: `Wiki " -"OpenStreetMap Map Features `__\\" -msgstr "" -"Klik tanda :guilabel:`+` untuk menambahkan key dan value yang Anda inginkan. " -"Daftar lengkap key dan value dapat dilihat di `Wiki OpenStreetMap Map " -"Features `__\\" - -# 9938b40a0f264cc88ce43a2723b19db2 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:308 -msgid "*Adding a tag in iD Editor*" -msgstr "*Mengisi salah satu tag iD Editor*" - -# a5058d6fbb5d477fb08dedba8a31bc27 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:311 -msgid "Summary" -msgstr "Ringkasan" - -# cb37819f84d24900bddcd901800682a3 -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:313 -msgid "" -"You should now be able to add your data to OpenStreetMap using the in-" -"browser iD Editor. You also learned how to digitize the 3 types of objects " -"in OpenStreetMap: points, lines, and areas (polygons). In the next chapter, " -"we will learn about another editor, the Java OpenStreetMap editor, or JOSM " -"as it is popularly known." -msgstr "" -"Sekarang Anda sudah bisa menambahkan data-data Anda ke dalam OpenStreetMap " -"menggunakan browser iD Editor. Anda juga sudah mempelajari bagaimana " -"mendigitasi 3 tipe objek di OpenStreetMap: titik, garis, dan area (poligon). " -"Pada materi selanjutnya, kita akan mempelajari tentang editor yang lain, " -"yaitu Java OpenStreetMap atau yang lebih dikenal dengan JOSM." - -# 8671258679dd4230bd84b0f68ee1ea7e -#: ../../source/training/osm/Chapter-03-introducing-the-id-editor.rst:319 -msgid ":ref:`Go to next chapter --> `" -msgstr ":ref:`Bab selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-04-getting-started-with-josm.po b/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-04-getting-started-with-josm.po deleted file mode 100644 index 7006090f..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-04-getting-started-with-josm.po +++ /dev/null @@ -1,1067 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Richard Duivenvoorde , 2016\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 72e8d6b81def4fd6a117df210a5209ae -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:6 -msgid "Chapter 4: Getting started with JOSM" -msgstr "Bab 4: Memulai JOSM" - -# fabd5c2b22724ae5963702118d4546e8 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 7923244e1e634195b72a4c4340718e28 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:10 -msgid "Downloading JOSM" -msgstr "Mendownload JOSM" - -# fdbbeb3ff28b470ca258abb7eeafd57b -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:11 -msgid "Installing JOSM" -msgstr "Melakukan instalasi JOSM" - -# bfea5d48ff4749139a22e94523d60443 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:12 -msgid "Adjusting settings in JOSM" -msgstr "Mengubah pengaturan JOSM" - -# d037917c0a9848849f5050c1292862ac -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:13 -msgid "Using basic tools (move and draw the objects)" -msgstr "Menggunakan tools dasar (menggeser, menggambar objek)" - -# 4894371b23ea458b8519b61789817def -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:14 -msgid "Adding presets" -msgstr "Menambahkan presets" - -# f0be990af775405bad22e892dcc29e8f -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:16 -msgid "" -"We will now learn how to download and install JOSM step-by-step. JOSM is the " -"Java OpenStreetMap editor, a full-feature desktop editor. When using iD " -"Editor we always have be connected to the internet, while in JOSM we can use " -"it offline or with an intermittent internet connection." -msgstr "" -"Sekarang kita akan mempelajari langkah-langkah bagaimana cara mendownload " -"dan instalasi JOSM. JOSM merupakan editor Java OpenStreetMap pada desktop. " -"Jika menggunakan iD Editor kita harus selalu terhubung dengan internet, maka " -"di JOSM kita dapat mengerjakannya secara offline atau tidak harus selalu " -"terkoneksi dengan internet. " - -# ed987ebf66e942b784cc1abaa39c3d08 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:20 -msgid "" -"In this module, we will also change some JOSM settings that will help us in " -"using JOSM. We will then open a sample map and learn some basic operations " -"of this software. Recall in the introduction module, you were asked to draw " -"a map of the city or region around the neighborhood where you live. We will " -"draw it again in this module, but we will draw it digitally using JOSM. " -"After learning this chapter, you will have a good comprehension of how to " -"map using the JOSM editor." -msgstr "" -"Pada bab kali ini, kita juga akan mengubah beberapa pengaturan pada JOSM " -"agar memudahkan kita dalam menggunakan JOSM. Kemudian kita akan membuka " -"sebuah peta contoh dan mempelajari beberapa pengoperasian dasar dari " -"perangkat lunak ini. Masih ingatkan pada bab pengenalan ketika kita diminta " -"untuk menggambar sebuah peta mengenai kota atau wilayah lingkungan sekitar " -"tempat tinggal kita. Kita akan menggambar kembali di dalam bab ini, tetapi " -"kita akan menggambar secara digital dengan JOSM. Setelah mempelajari bab " -"ini, Anda akan memiliki pemahaman yang baik bagaimana cara menggambar peta " -"di editor JOSM." - -# aee16f2b7f084877a23effdfa2b5413e -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:27 -msgid "4.1 Downloading JOSM" -msgstr "4.1 Download JOSM" - -# 828b0ee84cf2422eb9c30322cc1239cb -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:29 -msgid "" -"If you have a copy of the JOSM installation file on a CD or flashdisk, you " -"can skip to the next session on JOSM installation. If you do not have the " -"JOSM installation package or you want the newest version of JOSM, you can " -"open your web browser (using Firefox, Chrome, Opera or Internet Explorer). " -"In the address bar at the top of the window, enter the following text and " -"press enter: `josm.openstreetmap.de `_. You " -"can also find JOSM site by searching for \"JOSM\" using your favorite search " -"engine. The JOSM site will look much like the figure below:" -msgstr "" -"Jika Anda memiliki salinan file instalasi JOSM pada sebuah CD atau flash " -"disk, Anda dapat langsung melanjutkan ke sesi selanjutnya yaitu instalasi " -"JOSM. Jika Anda tidak memiliki JOSM, atau ingin versi terbarunya, buka web " -"browser anda - (bisa menggunakan Firefox, Chrome, Opera atau Internet " -"Explorer). Pada kolom alamat di bagian atas jendela, masukan teks berikut " -"dan tekan enter:`josm.openstreetmap.de `_. " -"Anda juga dapat menemukan situs JOSM dengan mencari “JOSM” pada mesin " -"pencarian. Situs JOSM akan terlihat seperti ini:" - -# c7c00b4721204f1a82b1aa031f4d8b47 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:39 -msgid "*JOSM site interface*" -msgstr "*Tampilan situs JOSM*" - -# d12a962ed7d34a399804b7cff373ddd3 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:41 -msgid "" -"Select the installation file according to your computer's operating system. " -"If you are using a computer with Windows Operating System, click :guilabel:" -"`Windows installer` to download JOSM. If you have other operating systems, " -"click on the link that corresponds to your computer's operating system and " -"download the installation package. In this module, we assume you are using " -"Windows, but the instructions will be similar for other operating systems." -msgstr "" -"Pilih file instalasi sesuai dengan sistem operasi komputer Anda. Jika Anda " -"menggunakan komputer dengan sistem operasi windows , klik :guilabel:`Windows " -"installer` untuk mendownload JOSM. Jika Anda memiliki sistem operasi " -"lainnya, klik pada tautan yang sesuai dengan sistem operasi komputer Anda " -"dan download paket instalasi. Pada bab ini kami, kami akan mengasumsikan " -"Anda menggunakan Windows, tetapi petunjuknya hampir sama dengan sistem " -"operasi lainnya. " - -# a32fa16f1bf54d8c8559c40d75f22b65 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:48 -msgid "4.2 JOSM Installation" -msgstr "4.2 Instalasi JOSM" - -# e372265bfaa0480fb90a08930c255e2d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:50 -msgid "" -"Once the JOSM installation package has downloaded, we will install onto our " -"computer or laptop. Here are the steps for installing JOSM:" -msgstr "" -"File instalasi JOSM sudah berhasil di download, kita akan install ke dalam " -"komputer atau laptop. Berikut langah-langkah untuk instalasi JOSM:" - -# 6aeaf9539fdf4cdab1e9680b91d91ce0 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:53 -msgid "" -"Find the JOSM installer file on your computer. Double-click it to begin " -"setup." -msgstr "" -"Temukan file instalasi JOSM di dalam komputer Anda. Klik dua kali pada file " -"tersebut untuk memulai pengaturan." - -# 8800dac2deb7417cbc198e04fca0af0d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:55 -msgid "" -"Click :guilabel:`OK`, :guilabel:`Next`, :guilabel:`I Agree`, and :guilabel:" -"`Install`. When the installation is complete, click :guilabel:`Finish` to " -"lunch JOSM for the first time. Later, when you want to start JOSM, you can " -"do so by clicking on the :guilabel:`Start Menu` in the lower left corner of " -"your computer, and clicking the program JOSM." -msgstr "" -"Klik :guilabel:`OK`, :guilabel:`Next`, :guilabel:`I Agree`, dan :guilabel:" -"`Install`. Ketika instalasi selesai, klik :guilabel:`Finish` untuk membuka " -"JOSM pertama kalinya. Kemudian, ketika Anda ingin memulai JOSM, Anda dapat " -"melakukannya dengan mengklik :guilabel:`Start Menu` di sudut kiri bawah pada " -"komputer Anda, dan klik program JOSM." - -# e47c699ddce043159857a8158c4448d8 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:60 -msgid "" -"When JOSM starts, it will look something like the image in the figure below:" -msgstr "Ketika JOSM terbuka, maka akan terlihat tampilan seperti ini:" - -# eec2d5d2c4b147cea39ebba2dd80fc7a -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:65 -msgid "*JOSM home view*" -msgstr "*Tampilan awal JOSM*" - -# bb981c13e9ef46a19e679e690496890d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:68 -msgid "" -"You may have problems when installing JOSM if Java is not installed on your " -"computer. If you have" -msgstr "" -"Anda mungkin memiliki masalah ketika melakukan instalasi JOSM apabila Java " -"belum terinstal di komputer Anda. Jika Anda memiliki" - -# 1b04dd48993942308af85e9f7e6afa3e -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:68 -msgid "" -"problems during the installation in this section, try to download and " -"install Java. You can download here: `www.java.com/en/download/ `_" -msgstr "" -"masalah ketika melakukan instalasi pada bagian ini, cobalah mendownload dan " -"menginstal Java. Anda dapat mendownloadnya di sini: `www.java.com/en/" -"download/ `_" - -# 6c3c5ff934294135a0c74f843ca31dd4 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:70 -msgid "" -"When the first time you open JOSM, you might see a window appears there ask " -"to update the software. You do not need to update it because you just " -"downloaded a new software. :guilabel:`Cancel` button. If you don’t want to " -"see this message anymore, check a **box below** before clicking “Cancel”." -msgstr "" -"Ketika Anda membuka JOSM saat pertama kali, Anda mungkin akan melihat " -"jendela yang menanyakan untuk memperbaharui perangkat lunak tersebut. Anda " -"tidak perlu memperbaharuinya karena yang baru saja Anda download sudah " -"perangkat lunak terbaru. Tekan tombol :guilabel:`Cancel`. Jika Anda tidak " -"ingin melihat pesan ini lagi, **centang kotak di bawah** sebelum menekan " -"**Cancel**." - -# 9d7091d0a4234c30bab0f95de7300f08 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:73 -msgid "" -"JOSM used in this module is the newest version from the site. The display " -"version could possibly change if you are using another JOSM version." -msgstr "" -"JOSM yang digunakan dalam modul ini merupakan versi terbaru dari situs. " -"Tampilan berbagai versi mungkin bisa berubah jika Anda menggunakan versi " -"yang lain." - -# cd80d555f587430097dcc74b1e323b60 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:78 -msgid "4.3 JOSM Setup" -msgstr "4.3 Pengaturan JOSM" - -# b1c720a79d7b4f5cbf463460d77b10a0 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:81 -msgid "4.3.1 Change Language" -msgstr "4.3.1 Mengubah Bahasa" - -# 1ce29fe6d01146b78ac338630a4d4e68 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:83 -msgid "" -"There are many settings that you can adjust in JOSM. One of settings you " -"might want to adjust is the local JOSM language. JOSM has been localized " -"with many language options, and you should choose the language that you want." -msgstr "" -"Terdapat banyak pengaturan yang dapat Anda sesuaikan di dalam JOSM. Salah " -"satu pengaturan yang Anda mungkin ingin sesuaikan adalah bahasa yang " -"digunakan JOSM. JOSM telah diterjemahkan dengan berbagai macam bahasa, dan " -"Anda dapat memilih bahasa yang Anda inginkan." - -# 2b6e27e691024433a5680ab42cf12e42 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:87 -msgid "" -"To access Preferences windows, click :menuselection:`Edit ‣ Preferences...`" -msgstr "" -"Untuk mengakses jendela **Preferences**, klik :menuselection:`Edit ‣ " -"Preferences...`" - -# c760dc5ec43d4f3aa190ffae4dbd4215 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:92 -msgid "*Bring up the preferences menu in JOSM*" -msgstr "*Memunculkan menu preferensi di JOSM*" - -# b7f93bf82fbd4865834dbf84044e1d95 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:94 -msgid "" -"On the left side, click icon that looks like a **paint can** and " -"**paintbrush**." -msgstr "" -"Pada sisi sebelah kiri, klik ikon yang terlihat seperti kaleng cat dan kuas " -"cat." - -# 2ede2a6cc206492eb06dacaddec2e620 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:99 -msgid "" -"At the top of the window, click the tab that says :guilabel:`Look and Feel`." -msgstr "Di atas jendela, klik kotak yang bernama :guilabel:`Look and Feel`." - -# 617b0abd32d44db1bc2be7e21e2824ea -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:101 -msgid "" -"Choose your language in the dropdown box next to the word **Language** as " -"shown in the figure below." -msgstr "" -"Pilih bahasa Anda pada kotak daftar pilihan yang bertuliskan **Language** " -"seperti ditunjukkan pada gambar di bawah ini." - -# 0c3923d81ebe45ddb68ad50d8f7c3aa3 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:106 -msgid "*Change language in JOSM*" -msgstr "*Mengganti bahasa di JOSM*" - -# 95c50be44e4048018cf8c86dd6006b49 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:109 -msgid "4.3.2 Account and Proxy Settings" -msgstr "4.3.2 Mengatur AKun serta Proxy Jaringan" - -# eca84fc5a2a740b6a97970319392f737 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:111 -msgid "" -"After changing the language we also need to enter the username and password " -"of our OSM account in JOSM. This will be useful when we edit or add data on " -"the OSM map, the server will recognize that the edits belong to a registered " -"user. If you do not add your account information, you will not be able to " -"upload data into OpenStreetMap. Here are the steps to add your account " -"information:" -msgstr "" -"Setelah mengubah bahasa yang digunakan di JOSM kita juga harus memasukkan " -"nama akun OSM kita serta kata kuncinya di dalam JOSM. Tujuannya adalah agar " -"ketika kita melakukan edit atau menambahkan data di peta OSM, server akan " -"mengenali bahwa hasil edit tersebut adalah milik kita. Jika kita tidak " -"memasukkan nama akun, Anda tidak dapat mengupload data ke dalam " -"OpenStreetMap. Berikut cara untuk menambahkan informasi akun Anda:" - -# 18542c9d858b4ec584a2ac417d260461 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:116 -msgid "" -"Click icon that looks like a **Globe** at the left side of preferences box." -msgstr "" -"Silahkan klik ikon yang bergambar **Globe** di sebelah kiri kotak preferensi" - -# 0469739f716843ca99d237eb739e22f2 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:121 -msgid "Then enter your OSM username and password as shown in the figure below." -msgstr "" -"Kemudian masukkan nama akun OSM dan kata kunci seperti ditunjukkan di bawah " -"ini" - -# fa195d91da9a4eb8a57b60ad61d62615 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:126 -msgid "*Adding OSM username and password in JOSM*" -msgstr "*Memasukkan nama akun serta password OSM di JOSM*" - -# 9291ad5addcd41cf85ead887edef8eba -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:128 -msgid "" -"If your internet connection is using proxy, you can also enter the proxy on " -"the :guilabel:`proxy settings` tab then simply enter the appropriate proxy " -"for your internet network." -msgstr "" -"Jika koneksi internet Anda menggunakan proxy, Anda juga dapat memasukkan " -"proxy pada tab :guilabel:`Pengaturan proxy` kemudian silahkan masukkan proxy " -"sesuai jaringan internet Anda." - -# b897ae49d10d4fb08ae8fad0959abb5a -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:132 -msgid "4.3.3 Adding Presets" -msgstr "4.3.3 Menambahkan Presets" - -# e3e1ddd6162d486cb4629d83b3b74085 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:134 -msgid "" -"By now you should have entered your account name. Next is to configure JOSM " -"by adding menu presets. What are menu presets? Menu presets are small files " -"added to JOSM that can pre-supply the attribute fields for mapping features, " -"such as name and address for a building, or street name for a road. If you " -"are still a bit confused about presets, follow along and you. To add menu " -"presets, follow these steps:" -msgstr "" -"Sekarang kita telah memasukkan nama akun kita. Selanjutnya adalah pengaturan " -"untuk memasukkan presets di JOSM. Apa itu presets? Presets adalah sebuah " -"file yang dapat memberikan informasi terkait objek-objek yang kita petakan, " -"seperti nama dan alamat untuk sebuah bangunan, atau nama jalan untuk sebuah " -"jalan. Jika Anda belum jelas mengenai presets, kita akan mempelajarinya " -"seiring dengan panduan ini. Cara menambahkan presets adalah sebagai berikut:" - -# 3f141801d2a34a628fca6f1f3807c00c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:139 -msgid "Click the icon that looks like a grid:" -msgstr "Klik ikon yang terlihat seperti sebuah grid:" - -# a2059b6094394b5b873e0b4b6d7edee1 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:144 -msgid "Click the tab at the top that reads :guilabel:`Tagging Presets`." -msgstr "Klik tab di sebelah atas yang bernama :guilabel:`Tagging Presets`." - -# 8c7876c8c3e44f6b9e58fe7257ddf82b -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:146 -msgid "" -"Under **Available Presets** find and select the entry labelled **Buildings " -"Indonesia**. Then click the blue arrow to the right of this box, as shown in " -"the figure below." -msgstr "" -"Dibawah kotak **Presets Tersedia** cari dan pilih presets yang bernama " -"**Buildings Indonesia**. Lalu klik tanda panah biru yang berada di sebelah " -"kanan kotak, seperti ditunjukkan dibawah ini." - -# 357da02e79c641ceb1896b2c46938868 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:152 -msgid "*Adding presets in JOSM*" -msgstr "*Menambahkan presets di JOSM*" - -# ef214d72b2924bf7988f3f74d1b671a1 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:154 -msgid "" -"If you already have your own presets file on your computer, you can insert " -"it directly:" -msgstr "" -"Jika Anda sudah memiliki file presets Anda sendiri di komputer Anda, Anda " -"juga dapat langsung memasukkannya, dengan cara :" - -# fdd2444cbf7046adbca8129c96e3846d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:156 -msgid "Click :guilabel:`+` beside active presets box" -msgstr "Klik :guilabel:`+` di samping kotak presets aktif" - -# dbf43509c8b54896826ef0ff03cfb2f6 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:158 -msgid "Then click this icon below to find your presets file" -msgstr "" -"Kemudian klik ikon seperti di bawah ini untuk mencari file presets Anda" - -# 6b1dfd4c9b4043c58dc13e1fae222114 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:163 -msgid "" -"When you locate the presets file, click :guilabel:`Open` then :guilabel:`Ok`." -msgstr "" -"Jika sudah menemukan lokasi file presets, klik :guilabel:`Buka` kemudian :" -"guilabel:`Ok`" - -# 0da59d5006b045f99c9707fa9c9c9519 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:166 -msgid "4.3.4 Adding a Plugin" -msgstr "4.3.4 Menambahkan Plugin" - -# c73578cb62e54ddda98c9f97b0b5ae0c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:168 -msgid "" -"Now we will try to add a plugin in JOSM. A plugin is a tool that we can add " -"it as an extension in JOSM to help us during editing. Here are the steps to " -"add plugin in JOSM:" -msgstr "" -"Sekarang kita akan mencoba untuk menambahkan plugin di JOSM. Plugin " -"merupakan alat yang dapat kita tambahkan sebagai ekstensi di JOSM untuk " -"memudahkan kita dalam melakukan editing. Berikut adalah cara memasukkan " -"plugin di JOSM:" - -# f4d4075c6535413d9bcb7af37a7b4529 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:171 -msgid "Click :guilabel:`plugin` icon that looks like picture below" -msgstr "Klik ikon :guilabel:`plugin` yang bergambar seperti di bawah ini" - -# d1cbc0c8e63946c08cb1bc12e175e26c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:176 -msgid "" -"Then click :guilabel:`Download list` to download all plugins that available " -"in JOSM" -msgstr "" -"Kemudian klik :guilabel:`Download daftar` untuk mendownload semua plugin " -"yang tersedia di JOSM" - -# 75ee187e3c1641c58660cafd3ea48dd1 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:178 -msgid "" -"In search box, type the name of the plugin, for example :guilabel:" -"`building_tools`" -msgstr "" -"Di kotak pencarian, ketikkan plugin yang Anda cari, misalnya :guilabel:" -"`building_tools`" - -# 5c505783d17d4329a485c39fc8ebae39 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:180 -msgid "Then check the box beside the plugin name as shown in the figure below:" -msgstr "Kemudian centang kotak yang ada disamping tulisan plugin tersebut:" - -# be617222bcdc4cf3a90beacb2390cbe8 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:185 -msgid "*Download plugin in JOSM*" -msgstr "*Mendownload plugin di JOSM*" - -# 268e598852e34e048a805bf8f3a2d9ba -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:188 -msgid "4.3.5 Activate Remote Control" -msgstr "4.3.5 Mengaktifkan Remote Control" - -# b5be1d459ae34eabbfd01c1325b09f2e -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:190 -msgid "" -"*Remote Control* in JOSM needs to be set in order for other sites, such as " -"the HOT Tasking Manager to access your OpenStreetMap account and enable " -"editing. To activate the remote control function:" -msgstr "" -"*Remote Control* di JOSM perlu dilakukan agar kita bisa dapat mengambil dari " -"situs lainnya, seperti saat menggunakan HOT Tasking Manager untuk mengakses " -"akun OpenStreetMap dan memungkinkan melakukan editing. Untuk mengaktifkan " -"fungsi remote control adalah sebagai berikut:" - -# e6ef356121e94d098bd6ff1e8384b81b -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:193 -msgid "Click the icon depicted in the picture below" -msgstr "Silahkan klik ikon seperti di bawah ini" - -# 48de6c53f533462e9071ef4481ff34be -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:198 -msgid "Then check on the box beside :guilabel:`Enable remote control`" -msgstr "" -"Kemudian centang pada kotak disamping tulisan :guilabel:`Memperbolehkan " -"remote kontrol diguna­kan`" - -# 97a414501cb640cb801b12036870e3ce -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:200 -msgid "Check any other box shown in the figure below according to your needs." -msgstr "" -"Silahkan centang beberapa kotak yang ada di bawahnya sesuai dengan keinginan " -"Anda." - -# 6de96050ca844ecd835c6404132e6fd0 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:205 -msgid "*Activate remote control in JOSM*" -msgstr "*Mengaktifkan remote kontrol di JOSM*" - -# ae9ca39ebda4493eb57672564dae6b67 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:208 -msgid "4.3.6 Adding Satellite Imagery" -msgstr "4.3.6 Memasukkan Citra Satelit" - -# 07e1e05ffd3d47e8a3c19d62782c1391 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:210 -msgid "" -"We will want to use satellite imagery as a background to identify features " -"and trace them when making our map, so let’s add imagery from the Preference " -"window." -msgstr "" -"Kita akan menggunakan citra satelit sebagai latar belakang untuk " -"mengidentifikasi fitur dan mengikuti bentuk objek yang ada di citra ketika " -"membuat peta kita, sehingga kita akan perlu untuk memasukkan melalui jendela " -"Preferensi" - -# 7e5d6bb066ed4a698810eac362bac1e0 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:213 -msgid "Click on the icon that says **WMS TMS** like this:" -msgstr "Klik ikon yang menyatakan **WMS TMS** seperti di bawah ini:" - -# c791de7e941c4b24bb1355340a3d2d92 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:218 -msgid "" -"Bing Satellite imagery is often the default choice, so click on :guilabel:" -"`Bing Sat`. Then click :guilabel:`Activate` as shown in the figure below." -msgstr "" -"Citra satelit Bing seringkali menjadi pilihan pengaturan standar, klik :" -"guilabel:`Bing Sat`. Kemudian klik :guilabel:`Aktifkan` seperti gambar di " -"bawah ini." - -# 9f662e9faaf545b394d1a82c864a6811 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:224 -msgid "*Satellite imagery layer list in JOSM*" -msgstr "*Daftar layer citra satelit di JOSM*" - -# 1e8c36a8b1f042b984e62f98793a1123 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:227 -msgid "4.4 JOSM Interface" -msgstr "4.4 Tampilan Antar Muka JOSM" - -# 5310d2028fbf4bfcb63c3f1b11aabef6 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:229 -msgid "" -"At this point, you’ve should have learned to customize and pre-configure the " -"basic settings in JOSM, and now you’re ready to edit the map. In this " -"chapter, we turn attention to the important parts of the JOSM editor and how " -"to use them. The figure below shows the essential parts of the JOSM " -"interface." -msgstr "" -"Sekarang, Anda sudah melakukan beberapa kustomisasi dan pengaturan dasar " -"sebelum menggunakan JOSM, dan sekarang Anda sudah siap untuk melakukan " -"editing peta. Pada bab ini, kita harus memperhatikan beberapa bagian penting " -"dari editor JOSM dan bagaimana menggunakannya. Gambar di bawah ini " -"menunjukkan bagian penting dari antar muka JOSM. " - -# 94437ad194914884908914d3c4201982 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:236 -msgid "*JOSM interface*" -msgstr "*Tampilan Antar Muka JOSM*" - -# e25f64031f054357b702126c7c5847b6 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:238 -msgid "" -"The main window, as you have seen earlier, -is the map area, and where most " -"of the editing activity takes place. Here you will view, interrogate, edit, " -"and add data to OpenStreetMap." -msgstr "" -"Jendela utama yang sudah Anda kenal - ini adalah jendela peta, dan dimana " -"sebagian besar kegiatan editing berlangsung. Disini Anda akan melihat, " -"mengedit, dan menambahkan data ke OpenStreetMap." - -# 7cae9767c25b46ad8bbb4071198a84d8 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:241 -msgid "" -"To the right of the map area are stacked panels, each having a dedicated " -"function. Usually when the first time you install JOSM, several panels that " -"will be displayed with the default settings, such as **Layers, Properties**, " -"and **Selection**. When you **select a node, way, or polygon** in map area, " -"it'll be displayed on **Selection panel**. **Information about the object** " -"will be displayed on **Properties panel**, and **username of the object " -"author** will be displayed on **Author panel**." -msgstr "" -"Pada bagian kanan dari jendela peta adalah serangkaian panel, masing masing " -"memiliki fungsi tersendiri. Biasanya ketika Anda pertama kali menginstal " -"JOSM beberapa panel yang akan ditampilkan dengan pengaturan standar, seperti " -"**Layers, Properties**, and **Pilihan**. Ketika Anda memilih sebuah **titik, " -"garis, atau poligon** di dalam jendela peta, ini akan ditampilkan pada panel " -"**Pilihan**. Informasi mengenai objek akan ditampilkan di panel " -"**Properties**, dan nama pengguna dari pembuat objek yang akan ditampilkan " -"di panel **Pembuat**." - -# 433eb9d8c3e34270b00fce786db96abf -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:247 -msgid "" -"To the left of the map area is a vertical toolbar, each icon corresponds to " -"an editing function (see ‘Tools’ in figure above). For example, there are " -"buttons for editing such as **Select object(s)** tool and **Draw nodes** " -"tool. Other tools depicted in the above example include icons for deleting " -"an object, drawing a polygon, and creating a way that is parallel to the " -"other ways." -msgstr "" -"Pada bagian kiri dari area peta adalah toolbar vertikal, masing-masing ikon " -"digunakan untuk editing (seperti *Tools* di atas). Sebagai contoh, terdapat " -"tombol untuk mengedit seperti tool **Pilih Objek** dan tool **Gambar node**. " -"Tools lainnya yang digambarkan di atas termasuk ikon untuk menghapus objek, " -"menggambar sebuah poligon, dan membuat sebuah garis yang sejajar dengan " -"garis lainnya." - -# 995b0d773fdd415aaa7c7714c9254fdf -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:253 -msgid "4.5 Learn Basic Drawing in JOSM" -msgstr "4.5 Latihan Dasar Menggambar dengan JOSM" - -# 5187c61a30424cb98e62c04c8025c200 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:255 -msgid "" -"Let’s start by opening up a sample OSM file which we will use to learn the " -"basic ways to draw maps with JOSM. Note that this map is not real, in that " -"it is not a real map of a real place, so we will not save it on " -"OpenStreetMap." -msgstr "" -"Mari mulai dengan membuka file contoh OSM yang kita akan gunakan untuk " -"mempelajari cara dasar menggambarkan peta dengan JOSM. Perhatikan bahwa data " -"ini hanya sebuah contoh dengan tempat yang tidak nyata, jadi kita tidak akan " -"menyimpannya ke dalam OpenStreetMap." - -# 796a69a19af54750933465a77ef9afdc -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:258 -msgid "Download the file here: `bit.ly/osmsample `_" -msgstr "" -"Download file tersebut disini:`bit.ly/osmsample `_" - -# 34068a63a8d84516b4ef8fe69067095d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:260 -msgid "Open JOSM. Click the **Open** button in the upper left." -msgstr "" -"Sekarang buka JOSM. Klik tombol :guilabel:`Buka` di bagian atas pada sudut " -"kiri." - -# 7fe8bf3553b541438e7a631383fbfc4c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:265 -msgid "" -"Find the file :file:`sample.osm` on your computer and open it. Your JOSM " -"screen should look quite similar to the figure below:" -msgstr "" -"Temukan file :file:`sample.osm` di komputer Anda kemudian buka. Layar JOSM " -"Anda akan muncul tampilan seperti berikut ini:" - -# 82ccc93705d446279c963e85bb1bdfcd -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:271 -msgid "*Display of sample file in JOSM*" -msgstr "*Tampilan file latihan di JOSM*" - -# 0ca68f0b678d4444af102a83ca5adfeb -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:274 -msgid "4.5.1 Basic Operation" -msgstr "4.5.1 Operasi Dasar" - -# a724adf567cd410b8cb3e5e85835d1c6 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:276 -msgid "" -"To **move the map** left or right, up or down, **hold your right mouse** " -"button down, and **move your mouse**." -msgstr "" -"Untuk **menggerakkan peta** ke kanan atau ke kiri, naik atau turun, **klik " -"kanan** lalu **tahan dan gerakkan** mouse Anda." - -# 6f978fc7d8104997a32c64d64fac6005 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:278 -msgid "" -"There are several ways to **zoom in** and **zoom out** of the map. If you " -"have a mouse, you can use your scroll wheel to zoom in and out. If you are " -"using a laptop and don’t have a mouse, you can zoom in and out using the " -"scale bar in the upper left of the map window. **Drag the bar left and right " -"by holding your left mouse down** **and moving the bar left or right** with " -"your mouse." -msgstr "" -"Ada beberapa cara untuk **memperbesar dan memperkecil** peta. Jika Anda " -"memiliki mouse, Anda dapat menggunakan scroll roda untuk memperbesar dan " -"memperkecil peta. Jika Anda menggunakan sebuah laptop dan tidak memiliki " -"sebuah mouse, Anda dapat memperbesar dan memperkecil menggunakan garis skala " -"yang terletak di sebelah kiri atas dari jendela peta. Tahan dan geser ke " -"kiri dan ke kanan dengan mouse Anda." - -# c25a88621c344ee28bc0ada2e2834784 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:286 -msgid "" -"Look at the sample map. There a few different types of objects here. For " -"example, there is a river, a forest, some buildings, several roads, and a " -"couple of shops. **Select an object by clicking** on it with your left mouse " -"button. Click on each of these objects and note the information in the " -"panels on the right." -msgstr "" -"Lihat contoh data. Terdapat beberapa perbedaan jenis objek di sana. Sebagai " -"contoh, ada sungai, hutan, beberapa bangunan, jalan dan sepasang tempat " -"berbelanja. Untuk memilih objek-objek, klik dengan menggunakan mouse Anda. " -"Klik di masing-masing objek dan catatan informasi pada panels di sebelah " -"kanan." - -# fcc3c19a70a042ebb34cf3ee1dd93d0c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:291 -msgid "4.5.2 Node, Ways, and Polygons" -msgstr "4.5.2 Titik, Garis, dan Poligon" - -# 4a38f97563da4f7c81b129de02e0a3a4 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:293 -msgid "" -"As you click different objects on the sample map, notice that there are " -"three different types of objects on the map. There are **nodes, ways**, and " -"**polygons**." -msgstr "" -"Ketika Anda mengklik objek yang berbeda pada peta, perhatikan bahwa terdapat " -"3 jenis objek berbeda pada peta tersebut. Ketiga jenis objek tersebut adalah " -"**titik, garis, dan poligon**." - -# 9f01adccb8124a37a394d13189456af4 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:296 -msgid "" -"Points are a single location, represented by symbols. On this sample map, " -"there are two points, a clothing shop and a market. The clothing shop is " -"represented by a shirt symbol, and the market is represented by a shopping " -"cart. If you can not see these features clearly, please zoom in to the map." -msgstr "" -"Titik adalah suatu lokasi yang digambarkan dengan simbol. Dalam data contoh " -"ini terdapat dua titik, yaitu toko baju dan pasar. Toko baju digambarkan " -"dengan simbol kaos dan pasar digambarkan dengan keranjang belanja. Jika Anda " -"tidak dapat melihatnya dengan jelas silahkan perbesar petanya." - -# 4186cbb49c7f4da5b7a783ca6d214b8d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:300 -msgid "" -"There are several ways on the map as well, which represent roads. If you " -"look closely you will see that within the ways, there are nodes as well. " -"These nodes don’t have any symbols or other information associated with " -"them, but they define where the line is located and give it shape." -msgstr "" -"Terdapat beberapa garis yang terdapat dalam peta, yang dimana menggambarkan " -"jalan. Jika Anda melihat dengan lebih teliti Anda akan melihat dalam garis, " -"terdapat titik-titik. Titik-titik tersebut tidak memiliki simbol atau " -"informasi lainnya tetapi titik-titik tersebutlah yang membertuk garis " -"tersebut." - -# dc0d6345229d4a57830a27ec4b0884aa -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:304 -msgid "" -"Lastly, there are numerous polygons on the sample map, representing " -"different places - a forest, a river, and buildings. A polygon generally " -"represents an area, like a field or a building. A polygon is exactly like a " -"way - the only difference is that the way begins and ends at the same node. " -"That is to say, they are closed." -msgstr "" -"Terakhir, ada beberapa poligon dalam peta contoh ini yang menunjukkan tempat-" -"tempat yang berbeda seperti hutan, sungai, dan bangunan. Suatu poligon " -"secara umum mewakili suatu area seperti lapangan atau bangunan. Poligon sama " -"seperti garis - akan tetapi perbedaannya poligon terdiri dari beberapa garis " -"yang membentuk dimana titik akhir berada sama dengan titik awal garis " -"tersebut." - -# ef6ad01f979a4a4bacc975186abad576 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:308 -msgid "" -"It's easy to think about the map that contains three basic types of objects " -"- points, lines, and polygons. OpenStreetMap contained in specific terms " -"that you will learn as you progress. In OSM, a point called node, and lines " -"are ways. Polygon called closed way because this is just a line that starts " -"and ends at the same point." -msgstr "" -"Sangat mudah berpikir tentang peta yan berisi tiga jenis objek dasar - " -"titik, garis, dan poligon. OpenStreetMap terapat istilah khusus yang akan " -"Anda pelajari sebagai kemajuan Anda. Di OSM, titik disebut *nodes*, dan " -"garis disebut *ways*. Poligon disebut *closed way* karena ini hanya sebuah " -"garis yang berakhir pada titik awalan yang sama." - -# 69ae74fde2424478afcbba7ead9a830c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:312 -msgid "" -"You may notice that when you select an **object**, it will be highlighted in " -"**red** and a list appears to the right of the map in a window called " -"**“Properties”**. These are known as tags and are depicted in the figure " -"below.. **Tags** are **attributes of the selected point, line or polygon " -"that identify and describe** **that feature**. But for now, all you need to " -"know is that this information helps describe whether our object is a forest, " -"a river, a building, or something else. Think about drawing a map by hand, " -"and how you are also drawing points, lines, and shapes. What other places " -"are best represented by points? Lines? Shapes?" -msgstr "" -"Anda akan menyadari ketika **objek** yang Anda pilih, akan berwarna merah " -"dan muncul beberapa daftar di sebelah kanan jendela yang disebut " -"\"**Properties**\". Hal ini disebut sebagai tags. **Tags** adalah " -"**informasi yang dimana merupakan bagian dari sutu titik, garis, ataupun " -"poligon yang memberitahukan informasi objek tersebut**. Untuk sekarang yang " -"Anda butuhkan adalah mengetahui informasi ini untuk menjelaskan apakah objek " -"Anda itu hutan, sungai atau bangunan atau bentuk lainnya. Pikirkan tentang " -"menggambarkan peta dengan tangan, dan bagaimana Anda juga menggambar titik, " -"garis, dan bentuk. Objek apa yang paling tepat untuk mewakili titik? Garis? " -"Poligon?" - -# 355023af2455435fa54b1a61dd23f27a -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:321 -msgid "*Information of object in JOSM Properties Panel*" -msgstr "*Informasi objek di Panel Properti JOSM*" - -# d0e4354433674ab4b65e29f7eae45f6b -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:324 -msgid "4.5.3 How to Change Object" -msgstr "4.5.3 Cara Mengubah Objek" - -# 93a3b721482b414c9c5677176855d3b5 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:326 -msgid "" -"Select the forest on the left side of the map. Be sure to click on the line " -"around the forest, not one of the points on the line. Now **hold your left " -"mouse button down and drag your mouse**. You should be able to move the " -"forest to a new location on the map." -msgstr "" -"Pilih hutan yang berada di sebelah kiri peta. Pastikan Anda mengklik garis " -"pada hutan tersebut bukan pada titiknya. Sekarang **klik dan tahan objek " -"tersebut kemudian geser**. Anda akan dapat untuk menggerakkan hutan ke " -"lokasi yang baru pada peta." - -# c5a7efb5781147aca7a8848df9731216 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:330 -msgid "" -"**Click on one of the points** on the line around the forest. Hold your left " -"mouse button down and drag your mouse. You should be able to move the point. " -"This is how you can change the shape of an object, or move a point." -msgstr "" -"**Klik salah satu titik** pada garis sekitar hutan. Klik dan tahan titik " -"tersebut kemudian geser titiknya. Anda dapat menggerakan titik. Dengan " -"menggerakkan titik ini anda dapat mengubah bentuk dari sebuah objek. " - -# be0942aef70a44398b6165220487cc79 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:334 -msgid "4.5.4 Drawing an Object" -msgstr "4.5.4 Menggambar Objek" - -# 25d71799fe8449e8a0191e2d84c2e1bb -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:336 -msgid "" -"On the left side of a JOSM is a column of buttons. Many of these buttons " -"open new windows on the right side that provide more information about the " -"map. The most important buttons, however, are at the top of these column. " -"These buttons change the operations you do with your mouse." -msgstr "" -"Pada bagian sisi sebelah kiri JOSM terdapat kolom tombol. Terdapat banyak " -"tombol membuka jendela pada sisi kanan yang menyediakan lebih banyak " -"informasi mengenai peta. Tombol yang paling penting, terdapat di atas kolom " -"tersebut. Tombol - tombol ini mengubah apa yang Anda lakukan dengan mouse " -"Anda." - -# d8b5ab136c5f40d48e9d144ee2ad0439 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:340 -msgid "" -"**Select button** is one of the keys that you will use frequently. This " -"button is useful for selecting objects and to draw new objects. The **Select " -"button** looks like this:" -msgstr "" -"**Tombol Memilih Objek**, adalah salah satu tombol yang akan sering Anda " -"gunakan. Tombol ini berguna untuk memilih objek dan untuk menggambar objek " -"baru. **Tombol Memilih objek** yang akan terlihat seperti ini:" - -# eb27f3a62aea4bbfb1a154ad8c26466d -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:346 -msgid "" -"Before you draw, you need to make sure that nothing is selected. Click in " -"the black space on the map, where it is empty, to make sure nothing is " -"selected." -msgstr "" -"Sebelum Anda menggambar objek, Anda perlu memastikan bahwa tidak ada objek " -"yang terpilih. Klik diluar objek peta, dimana tidak terdapat objek, untuk " -"memastikan tidak ada yang terpilih." - -# 05a16266e03341a78e24f3b1e9aa2243 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:349 -msgid "Click on the second button, the **Draw** tool." -msgstr "Klik pada tombol kedua, yaitu **Tool Menggambar Objek**." - -# c8b58068caae46e384b8e8aa64fc318f -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:354 -msgid "" -"Find an empty area on the map, and **double-click** with your mouse. This " -"**will draw a single point**." -msgstr "" -"Temukan area kosong pada peta, dan **klik dua kali** dengan mouse Anda. " -"Kemudian akan tergambar sebuah titik tunggal." - -# 16cf6ebcff0143b883234ab068d9fdd5 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:356 -msgid "" -"To **draw a line, single-click** with your mouse. **Move your mouse** and " -"click again. **Continue until you are happy with your line**. To **end the " -"line, double-click** your mouse." -msgstr "" -"Untuk **Menggambar sebuah garis, klik sekali** dengan mouse Anda. **Gerakkan " -"mouse** Anda dan klik kembali. **Lanjutkan hingga membentuk sebuah garis**. " -"Untuk **mengakhiri garis, klik dua kali** pada mouse Anda." - -# 681c03da84e84105b7eadf2ca5de3137 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:359 -msgid "" -"**Draw a polygon** the **same way** that you **draw a line, but** finish the " -"polygon by double-clicking on the point where you started the line." -msgstr "" -"**Gambarlah sebuah poligon** dengan cara yang sama seperti **menggambar " -"garis**, tetapi untuk mengakhiri poligon dengan klik dua kali di atas titik " -"yang pertama kali kita buat. " - -# 6e2ab164cc3e443ebe9b1008195f5fd1 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:363 -msgid "4.5.5 How to Add Presets" -msgstr "4.5.5 Cara Menambahkan Presets" - -# 864b3c4d75934b208c781a1b2b578989 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:365 -msgid "" -"Now we know how to draw points, lines and shapes, but we still haven’t " -"defined what they represent. We want to be able to say that our points are " -"shops, schools, or something else, and whether our shapes are fields, " -"buildings, or something else. To provide information on the objects that we " -"create or edit we need to include presets in the object. Here are the steps:" -msgstr "" -"Sekarang kita telah memahami bagaimana menggambar titik, garis, dan poligon, " -"akan tetapi kita masih belum menemukan objek tersebut adalah apa. Kita ingin " -"supaya objek yang kita gambar memiliki informasi seperti apakah objek " -"tersebut merupakan toko, sekolah, atau sesuatu yang lain, dan apakah bentuk " -"yang kita buat itu bangunan atau lainnya. Untuk memberikan informasi " -"terhadap objek yang kita buat atau edit, kita perlu memasukkan presets di " -"objek tersebut. Berikut adalah langkah-langkahnya:" - -# 4429c534f4e447aba9309df4032606f2 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:370 -msgid "Click on the **Select tool**, in the column of buttons on the left." -msgstr "Klik pada **tombol Select**, pada kolom tombol di sebelah kiri." - -# 8292c88b6d7c424887039460036c48db -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:375 -msgid "" -"Select one of the objects that you drew with the Draw tool. On the top menu, " -"click :guilabel:`Presets`. Move your mouse through the sub-menu to the type " -"of location you would like to define." -msgstr "" -"Pilih salah satu objek yang akan Anda gambar dengan tombol Gambar. Pada menu " -"diatas klik :guilabel:`Presets`. Gerakkan mouse Anda ke sub menu ke lokasi " -"yang Anda ingin tentukan. " - -# 9d6389e5057b4e97a0340f2cd69ce5a4 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:378 -msgid "" -"Go to Preset menu. Click on item named **Building**, which has been added at " -"the bottom of the menu as shown in the figure below." -msgstr "" -"Pergilah ke menu Presets. Klik pada item yang bernama **Bangunan**, yang " -"saat ini telah ditambahkan di bagian bawah menu." - -# 4d53cbfeedb84c08bad1c0a07833a4c1 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:384 -msgid "*Building presets box in JOSM*" -msgstr "*Kotak presets bangunan di JOSM*" - -# d833daabd616417499f1d0b2a1e0d641 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:386 -msgid "" -"When you click on a preset, a form will pop up asking you for more " -"information. You do not have to fill in every field, but **you may wish to " -"add some of the important fields, such as the name of the object**." -msgstr "" -"Ketika Anda klik pada preset, akan muncul kolom-kolom dan menanyakan Anda " -"tentang informasi lebih lanjut tentang objek tersebut. Anda tidak harus " -"mengisi semua kolom tetapi **Anda harus mengisi kolom penting, seperti nama " -"dari objek yang Anda buat**." - -# 789d37d4445d4f6e82978c8d29281db0 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:389 -msgid "" -"When you are finished entering the information, click :guilabel:`Apply " -"Preset`. If all goes as expected, your point, line, or shape should change " -"colors or display a symbol. This is because you have defined what it is." -msgstr "" -"Ketika Anda sudah selesai memasukkan informasi, klik :guilabel:`Apply " -"Preset`. Jika semuanya berjalan dengan lancar, titik, garis, atau poligon " -"yang Anda buat akan berubah warna atau memiliki suatu simbol. Ini tergantung " -"dari informasi yang Anda masukkan ke dalam objek tersebut." - -# d203a29256eb4dbf9246bd0a65be00c3 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:393 -msgid "4.6 Draw Your Own Map" -msgstr "4.6 Menggambar Peta Anda Sendir" - -# 3c94527e8c5b47d9b74cd82085cad594 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:395 -msgid "" -"Now let’s draw a map in order to practice the techniques you have learned. " -"You may wish to redraw the map that you drew on paper in previous module." -msgstr "" -"Sekarang Anda akan membuat peta Anda sendiri untuk meningkatkan teknik-" -"teknik yang telah kita pelajari. Anda bisa saja menggambar peta yang telah " -"Anda buat di kertas ketika mempelajari bab sebelumnya." - -# 6f15a1330efe44f99f7bb87f6a06ad4f -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:398 -msgid "" -"**Drag the map away** from the sample map. Hold the right mouse button and " -"drag your mouse, **until you have a nice empty area** to draw on." -msgstr "" -"**Tahan dan geser** jendela dari peta contoh. Tahan tombol kanan dan geser " -"mouse Anda **hingga Anda mendapatkan area kosong** untuk Anda menggambar." - -# 9da57f6e27004ba5b8d4f0064ecf6b6c -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:401 -msgid "" -"**Use the Draw tool to create points, lines, and polygon**. Describe what " -"your objects are by selecting from the Presets menu." -msgstr "" -"**Gunakan alat menggambar untuk membuat titik, garis, dan poligon**. " -"Jelaskan objek apa yang Anda buat dengan memilih Menu Presets." - -# f80b1e74bd534f9888709b28e299a5f7 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:404 -msgid "" -"When you are finished, you should have your own map, similar to the sample " -"map that we opened in sample.osm." -msgstr "" -"Ketika Anda sudah selesai, Anda akan memiliki peta sendiri, yang sama dengan " -"contoh yang ada pada file sample.osm." - -# 5ac3fba4dcbc489384faa48d12758c0e -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:407 -msgid "Summary" -msgstr "Ringkasan" - -# 38214db668d44ae2b56b3824977a50a5 -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:408 -msgid "" -"At this point, you should have learned how to setup JOSM on your computer " -"and how to use basic editing tools available in JOSM. In the next module, we " -"will take a closer look into the process of editing OpenStreetMap using the " -"JOSM editor." -msgstr "" -"Jika semua berjalan dengan baik, Anda telah mempelajari bagaimana melakukan " -"pengaturan pada JOSM di komputer Anda dan juga mengenai bagaimana " -"menggunakan tools atau alat dasar dalam menggambar peta. Pada bab " -"selanjutnya, Anda akan melihat lebih dekat bagaimana proses mengedit peta " -"OpenStreetMap di editor JOSM." - -# e3e2643b5df04430bd249c74c0e0c3ca -#: ../../source/training/osm/Chapter-04-getting-started-with-josm.rst:412 -msgid ":ref:`Go to next chapter --> `" -msgstr ":ref:`Go to next chapter --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-05-editing-with-josm.po b/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-05-editing-with-josm.po deleted file mode 100644 index 4dd94f2b..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-05-editing-with-josm.po +++ /dev/null @@ -1,1851 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Dewi Sulistioningrum , " -"2016\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 639caf3f6d5d446db8790170f5a14827 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:6 -msgid "Chapter 5: Editing with JOSM" -msgstr "Bab 5: Mengedit dengan JOSM " - -# deb4d2daebc14e91a32f3a747d6b3d15 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 6cf3c769af144976b7a6446dbee1ecd1 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:10 -msgid "Using the editing tools in JOSM" -msgstr "Dapat menggunakan alat (tool) edit di JOSM" - -# c527f1dab3e8404a863e6595e5597369 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:11 -msgid "Knowing the shortcut buttons in JOSM" -msgstr "Mengetahui tombol-tombol pintas di JOSM" - -# 35fe0b8421054278aeccb60a8c1f2cee -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:12 -msgid "Extending functionality with JOSM plug-ins" -msgstr "Mengetahui plugin-plugin di JOSM" - -# 817cd97044dd4202967c7541951e4ceb -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:13 -msgid "Familiarity with errors and editing tips" -msgstr "Mengetahui kesalahan-kesalahan serta tips-tips mengedit" - -# 8e38f1b6986b4c399e5ae066a7ad2ed3 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:14 -msgid "Knowing and understanding the stages of editing in JOSM" -msgstr "Mengetahui dan memahami tahapan-tahapan mengedit di JOSM" - -# f6de3447bf6a492abdb0d31a4737a568 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:15 -msgid "Saving OSM file" -msgstr "Dapat menyimpan file OSM" - -# d038c9bb38de4adaa878b55e3ca8843f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:17 -msgid "" -"In a previous session, you have already installed and configured JOSM as " -"well as master basic operations in JOSM such as drawing points, lines, and " -"polygons. You also used menu presets to add attributes to an object you " -"created on the map. Finally, you are to the point where you can digitize and " -"edit features on the map using JOSM." -msgstr "" -"Pada sesi sebelumnya Anda telah menginstal JOSM dan mempelajari bagaimana " -"operasi-operasi dasar di JOSM seperti menggambar titik. garis, dan poligon. " -"Anda juga telah dapat menambah preset ke objek yang Anda buat untuk " -"melampirkan informasi mengenai objek tersebut . Pad aakhirnya, Anda dapat " -"menggambar peta Anda sendiri di JOSM." - -# 117e5c1b08644fbeac1081c65239bfbd -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:20 -msgid "" -"In this session, we will look closely at the JOSM interface and learn how to " -"stage the map editing process in JOSM and also how to maximize the tools " -"that exist in JOSM." -msgstr "" -"Pada sesi ini kita akan melihat lebih dekat pada antarmuka JOSM dan juga " -"bagaimana kita bisa memaksimalkan beberapa alat yang ada di JOSM untuk " -"membantu kita dalam melakukan editing." - -# 023bf8218b8b4f2c8c69a2afff6800d5 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:24 -msgid "5.1 Editing tools in JOSM" -msgstr "5.1 Tools Editing di JOSM" - -# 3c56599851bc4ec897d3bcb64edd1da4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:26 -msgid "" -"In this section, we build on our command of basic tools and techniques to " -"draw map features in JOSM and look closely at some advanced drawing tools. " -"To follow along with this section and practice using advanced JOSM tools, " -"please download in `Edit tools `_ then open JOSM " -"and point to the edittools package. It will look like the figure below:" -msgstr "" -"Di sini kita akan melihat beberapa tool dasar dan teknik yang ada untuk " -"menggambar fitur di JOSM, dan pada bab berikut kita akan melihat lebih dalam " -"untuk tool menggambar lanjutan. Jika Anda suka untuk mengikuti dan " -"mempraktikkan penggunaan tool JOSM, silahkan Anda download di `Edit tools " -"`_ kemudian buka JOSM dan file yang telah " -"didownload. Ini akan terlihat seperti ini:" - -# 19d137fc01e844b3b8deecdc382889c0 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:32 -msgid "*The display of editing file in JOSM*" -msgstr "*Tampilan file latihan mengedit di JOSM*" - -# b28c3c4ff9ad4eb2b9e665d89d1a2f8b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:36 -msgid "5.1.1 Drawing Tools" -msgstr "5.1.1 Alat Menggambar" - -# e44a7fa5155e474bac67538b61e62daf -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:38 -msgid "" -"JOSM has some additional tools to make it easier to create high quality " -"lines and polygons. These tools are found in the :guilabel:`Tools` menu at " -"the top of JOSM. A quick glance reveals many functions that can help when " -"drawing lines and polygons, and editing objects on the map. We discuss the " -"most important of those tools in this section." -msgstr "" -"JOSM memiliki beberapa tool tambahan yang menjadikan pembuatan garis dan " -"poligon dengann kualitas tinggi lebih mudah. Tool ini dapat ditemukan dalam " -"menu :guilabel:`Alat` di bagian atas JOSM. Anda juga dapat melihat terdapat " -"banyak fungsi lainnya yang dapat membantu Anda menggambar garis, poligon, " -"dan mengedit objek pada peta. Kita akan mendiskusikan alat-alat paling " -"enting pada sesi ini." - -# f555c83028864d0bafaa55aa78d97ce8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:46 -msgid "**Options in JOSM Tools Menu**" -msgstr "**Pilihan yang ada di Menu Alat pada JOSM**" - -# ae1e0d1520fd42b3939dc233520df35b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:48 -msgid "" -"In applying the functions in this menu, you first must select a point, line " -"or polygon in the map window. The sample file you already downloaded " -"contains various elements that are labeled the names of different tools on " -"the menu." -msgstr "" -"Dalam mengaplikasikan fungsi dalam menu ini, Anda terlebih dahulu harus " -"memilih sebuah titik, garis, atau poligon pada jendela peta. File contoh " -"yang berisi macam elemen yang berlabelkan nama tool yang berbeda-beda di " -"dalam menu." - -# afb03d1b822c4649a9d6e348e7568e03 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:50 -msgid "" -"Try to select one of the elements in the file. Then go to the :guilabel:" -"`Tools` menu and click on the function identified on the feature you have " -"selected." -msgstr "" -"Cobalah memilih salah satu elemen di file tersebut. Kemudian pergi ke menu :" -"guilabel:`Alat` dan klik fungsi yang diidentifikasi di sebelah fitur yang " -"Anda pilih." - -# eac5f5fe9f5643ca9909e47b90c0179a -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:52 -msgid "For example, click on the asymmetric circle." -msgstr "" -"Sebagai contoh, klik pada lingkaran yang tidak beraturan untuk memilihnya." - -# 9895441f41284d7ba8d87704d6004c27 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:57 -msgid "Next go to the :menuselection:`Tools ‣ Align Nodes in Circle`" -msgstr "" -"Selanjutnya, klik :menuselection:`Alat ‣ Sejajarkan Node Membentuk " -"Lingkaran` " - -# 79f7e09879674c7faf17f61bb7d1a434 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:59 -msgid "The irregular circle will be aligned and symmetrical." -msgstr "Lingkaran yang tidak beraturan akan menjadi lebih simetris." - -# 85c7d6569b674c32b1bf09d180ee75f2 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:61 -msgid "" -"Experiment with each of the tools using this sample file. A description of " -"some of the tools is provided below." -msgstr "" -"Percobaan dengan masing-masing tool menggunakan file contoh ini. Penjelasan " -"mengenai beberapa tool lainnya disediakan di bawah ini." - -# 07ab423b23d642e0bcab9e3249456b21 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:63 -msgid "" -"**Split Way:** This allows you to divide a way into two separate ways. This " -"is useful if you want to add the attribute to the different road, such as " -"bridge. To use this function, select a point in the middle of way that you " -"want to cut, then select **Split Way** from the :guilabel:`Tools` menu, and " -"your way should be split into two ways." -msgstr "" -"**Split Way/Memisahkan garis/way:** Memungkinkan Anda untuk membagi sebuah " -"garis menjadi dua garis terpisah. Ini berguna jika Anda ingin menambahkan " -"atribut ke bagian jalan yang berbeda, seperti jembatan. Untuk menggunakan " -"fungsi ini, pilih sebuah titik di tengah garis yang ingin Anda potong, " -"kemudian pilih :guilabel:`Memisahkan garis/way` dari menu :guilabel:`Tools`, " -"dan garis Anda seharusnya akan terpotong menjadi dua. " - -# b29d12f88ae84f569148c60b155883af -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:65 -msgid "" -"**Combine Way:** This is **the opposite of Split Way**. To combine two ways " -"into one way, they have to share a single point. To use this function, " -"select the way you want to combine. You can select more than one object by " -"holding the **SHIFT** button on your keyboard and click on each way. When " -"you have selected the both of the ways, select :menuselection:`Tools ‣ " -"Combine Way`." -msgstr "" -"**Combine Ways/Menggabungkan garis/way:** Ini merupakan **kebalikan dari " -"Split Way**. Untuk menggabungkan dua garis menjadi satu garis, mereka harus " -"berbagi satu titik. Untuk menggunakan fungsi ini, pilih kedua garis yang " -"ingin Anda gabungkan. Anda dapat memilih lebih dari satu objek dengan " -"menahan tombol **SHIFT** pada keyboard Anda dan mengklik di setiap garisnya. " -"Ketika Anda memilih kedua garis tersebut, pilih :menuselection:`Tools ‣ " -"Menggabungkan garis/way`." - -# 76ecc5970e3b49388a4b941ffde315fc -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:70 -msgid "*The result of the combine way operation in JOSM*" -msgstr "*Hasil menggabungkan garis/way di JOSM*" - -# b9fbbc359e8e4a069582aff072c173a1 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:72 -msgid "" -"That if you want to combine ways that have different directions, you will " -"see this warning:" -msgstr "" -"Jika Anda ingin menggabungkan jalan yang memiliki arah yang berbeda, Anda " -"akan mendapatkan peringatan seperti ini:" - -# d92c4b1b976a480aa5152b55470db08f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:77 -msgid "" -"If the ways are connected, they can be aligned in the same direction by " -"selecting :guilabel:`Reverse and Combine`." -msgstr "" -"Jika jalan sudah terhubung, dan ingin berada pada arah yang sama, caranya " -"dengan klik :guilabel:`Reverse and Combine`." - -# 380f1715c8dd4fae867eba8f3c8ef233 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:79 -msgid "" -"**Reverse Way**: This will change the direction of a way. All ways in OSM " -"have a direction, shown in JOSM with an arrow pointing in the direction of " -"alignment. Direction is usual not a problem, except in cases where the one " -"way roads and river that flow in a certain direction. In this case, you need " -"to reverse the way so that it flows in the right direction." -msgstr "" -"**Reserve Way/Membalikkan Jalur-Jalur**: Hal ini akan mengubah arah pada " -"garis. Semua garis di dalam OSM memiliki sebuah arah, yang ditunjukkan di " -"dalam JOSM dengan panah pada garis. Arah biasanya bukan masalah, kecuali " -"pada kasus dimana jalan satu arah dan sungai yang mengalir dalam arah " -"tertentu. Pada kasus ini Anda mungkin perlu membalikkan jalan sehingga garis " -"tersebut dalam arah yang benar. " - -# 2630049c7b9f40319e887b44dbbd909d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:84 -msgid "" -"**Simplify Way**: If your way has too many points in it and you want to make " -"it simpler, this operation will remove some points from a way without " -"adversely affecting the shape." -msgstr "" -"**Simplify Way/Sederhanakan Jalur**: Jika garis Anda memiliki terlalu banyak " -"titik di dalamnya dan Anda ingin membuatnya lebih sederhana, alat ini akan " -"menghapus beberapa titik dari sebuah garis tanpa mempengaruhi bentuk ." - -# 7ed8d223596b45eca8b3f43c0d217d95 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:89 -msgid "*The example of ways which will be simplified in JOSM*" -msgstr "*Contoh garis yang akan disederhanakan di JOSM*" - -# 5f8c834617b44d059d3bc80691ad6f64 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:91 -msgid "" -"**Align Nodes in Circle**: If you try to make a circle, you draw a circle as " -"best you can then select the object. This function will help distribute the " -"points to make a perfect circle." -msgstr "" -"**Align Nodes in Circle/Sejajarkan Node Membentuk Lingkaran**: Jika Anda " -"mencoba membuat sebuah bentuk lingkaran, gambarlah semampu Anda dan kemudian " -"pilih objeknya. Fungsi ini akan membantu mengatur titik-titik untuk membuat " -"lingkaran yang sempurna." - -# c576895a9ee04ab0aa46919ab446053b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:93 -msgid "" -"**Create Circle**: Alternatively, you can use this tool, it will make a " -"perfect circle. Draw a way that represents the diameter of your circle." -msgstr "" -"**Create Circle/Buat Lingkaran**: Sebagai alternatif, Anda dapat menggunakan " -"tool ini, tool ini akan membuat lingkaran yang sempurna. Menggambar sebuah " -"garis yang mewakili diameter dari lingkaran Anda." - -# 50ce13940ad648b394836c145944b6a4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:98 -msgid "" -"**Align Nodes in Line**: This function will align a series of points into a " -"straight way. With long ways it is best to select sections of the line to " -"straighten. Be careful as this does have the tendency to shift the line a " -"little bit." -msgstr "" -"**Align Nodes in Line/Sejajarkan Node dalam Garis**: Fungsi ini akan " -"menyelaraskan rangkaian titik menjadi garis lurus. Sebaliknya dengan garis " -"yang panjang untuk memilih bagian dari garis yang akan diluruskan hati-hati " -"karena hal ini memiliki kecenderungan untuk pergeseran garis walaupun " -"sedikit." - -# 6f4a9713b0024630b264e634942f836f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:103 -msgid "*The Concept of Making A Way That Turned into A Straight*" -msgstr "*Konsep membuat garis yang berbelok menjadi garis lurus*" - -# b887560156d641a2a2ecc43834553af4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:105 -msgid "" -"**Orthogonalize Shape**: This function is more useful to draw a regular " -"shape such as building. After you draw an area, this function will reshaped " -"it to have square corners." -msgstr "" -"**Orthogonalize Shape/Ortogonalisasi Bentuk**: Fungsi ini sangat berguna " -"untuk menggambar bentuk teratur seperti bangunan. Setelah Anda menggambar " -"sebuah area, fungsi ini akan membentuk kembali menjadi sudut-sudut persegi." - -# 4ad550e966f44e0f82080e9a3e87b7ec -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:110 -msgid "*The concept of perfect the shape of polygon*" -msgstr "*Konsep menyempurnakan bentuk poligon*" - -# fed6810303554d01bd91fd5e0df1329b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:112 -msgid "" -"**Unglue way**: This tool allows you to detach the nodes that are connected. " -"For example, the common error is for a road shares the point with the corner " -"of a building. Of course roads don’t run into buildings usually, so this is " -"a mistake, and you can unglue the objects from one another." -msgstr "" -"**Unglue Way/Memisahkan titik atau garis**: Tool ini memungkinkan Anda untuk " -"melepaskan titik-titik yang terhubung. Sebagai contoh, kesalahan yang sering " -"terjadi adalah jalan yang menempel dengan titik di sudut bangunan. Tentu " -"saja jalan tidak bergabung dengan bangunan, sehingga ini adalah kesalahan, " -"dan Anda dapat melepaskan objek satu dengan yang lain." - -# 473cc026024d41e69168b2bfc672c826 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:117 -msgid "" -"The common question is how to rotate a way or a polygon after the object was " -"drew." -msgstr "" -"Sebuah pertanyaan umum adalah bagaimana memutar sebuah garis atau poligon " -"setelah objek tersebut tergambar." - -# 0bd6166bf5324c0e8b01f893c321e833 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:119 -msgid "To rotate an object, first you need to select the object" -msgstr "Untuk memutar sebuah objek, pertama pilih objeknya." - -# 870789a667d545fa8b1967fc48693350 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:121 -msgid "Hold :kbd:`SHIFT+CTRL` in your keyboard" -msgstr "Tahan :kbd:`SHIFT+CTRL` pada keyboard Anda" - -# 2a9a432b4ee44f708b7a7c06fe294bbe -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:123 -msgid "Click and drag the mouse to rotate" -msgstr "Klik dan geser mouse untuk memutar" - -# a2c617bfdaf24d5fad8509a7000a8c83 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:128 -msgid "*The concept of rotating an object in JOSM*" -msgstr "*Konsep untuk memutar objek di JOSM*" - -# dd6c0593e9234ab2b3833cd9bf1a9dd1 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:132 -msgid "5.1.2 Keyboard Shortcuts" -msgstr "5.1.2 Tombol Pintas di Keyboard" - -# 5b144a462fab4751bb44aa2a160f2038 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:134 -msgid "" -"After editing in OpenStreetMap, you will realize that you are spending a lot " -"of time with each click on the menu and submenu. To overcome this, JOSM has " -"a shortcut button that substitutes the lengthy menu process. You can simply " -"select the object directly and press the button in your keyboard. Here are " -"the most important shortcut keys." -msgstr "" -"Setelah melakukan editing di OpenStreetMap, Anda akan menyadari bahwa Anda " -"banyak membuang waktu untuk mengklik pada menu dan submenu. Untuk mengatasi " -"hal ini, JOSM memiliki tombol pintas keyboard untuk mengganti proses menu " -"yang panjang. Anda dapat memilih objek langsung dan menekan sebuah tombol " -"pada keyboar Anda. Disini ada beberapa tombol pintas lain yang sering " -"digunakan. " - -# 177590ec552242e591509c3a62d3b97d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:139 -msgid "Select Tool" -msgstr "Pilih Objek" - -# b2903aafec96478b959e909f82e803b6 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:143 -msgid "Draw Tool" -msgstr "Gambar Node" - -# 211dbcc4693a458fba47d88aa3df03be -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:147 -msgid "Zoom Tool" -msgstr "Zoom Tool" - -# 4cc4f9816c0c4fb1bce07901ed904cf6 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:151 -msgid "Remove Object" -msgstr "Hapus Objek" - -# 0deda17250c14cdf8f9d108abdac52dc -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:155 -msgid "Zoom In" -msgstr "Perbesar" - -# 2c829894801d45d6831d4456317a9f4a -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:160 -msgid "Zoom Out" -msgstr "Perkecil" - -# 4d8606a16c254a1ab05d2f384b228362 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:163 -msgid "5.1.3 JOSM Plugins" -msgstr "5.1.3 Plugin di JOSM" - -# 3905d79107814f3e99d76ccd7d5e13a8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:165 -msgid "" -"After you have acquired some skill in editing the map, you may want to use " -"the additional JOSM features to improve your mapping skills. JOSM allows you " -"to install various plugins, extending the functionality of the software. In " -"this session, we will look some of the more useful plugins that exist for " -"JOSM." -msgstr "" -"Ketika Anda sudah bisa terampil dalam mengedit peta Anda, Anda mungkin ingin " -"menggunakan fitur JOSM tambahan untuk meningkatkan keterampilan pemetaan " -"Anda. JOSM memungkinkan Anda untuk menginstal berbagai plugin, kemudian " -"menambahkan fungsi tambahan ke perangkat lunak. Pada sesi ini kita akan " -"melihat beberapa plugin yang sangat berguna yang sudah tersedia di JOSM." - -# 44351563e3ee424dba83660d3478f125 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:168 -msgid "" -"**buildings_tools**: If you draw a lot of buildings, this tool will make the " -"process faster and easier. **Building Tools Plugin** is useful to digitize " -"the building. It allows you to digitize one side of square building and " -"extend the shapes with ease, saving mouse clicks and saving time. After the " -"plugin is installed, you will see the new button in left side of JOSM, that " -"look like this:" -msgstr "" -"**buildings_tools**: Jika Anda menggambar banyak bangunan, ini akan membuat " -"proses menggambar lebih cepat dan mudah. **Plugin Building Tools** sangat " -"membantu untuk digitalisasi bangunan. Ini memungkinkan Anda untuk " -"mendigitasi satu sisi bangunan persegi, dan dengan mudah memperpanjang " -"bentuk. Jika Anda mendijitasi banyak bangunan, plugin ini akan menghemat " -"klik, dan menghemat waktu Anda. Setelah plugin terinstal Anda akan melihat " -"tombol baru di bagian sisi kiri JOSM, yang terlihat seperti ini:" - -# 06f384991abe4c9d9582ef62ead7ed93 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:174 -msgid "Open JOSM and make a new layer" -msgstr "Buka JOSM dan membuat layer kosong baru" - -# 0e111145af2a43f09dde882680c5e25b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:176 -msgid "" -"Select :guilabel:`building_tools` and double click to draw a way on the map" -msgstr "" -"Pilih :guilabel:`building_tools` dan klik ganda untuk menggambar sebuah " -"garis pada peta" - -# 476bbb3b7d5c4569b9b018339bcb0038 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:178 -msgid "" -"Then drag your mouse and click again to draw a square as shown in the figure " -"below" -msgstr "" -"Kemudian geser mouse Anda dan klik kembali untuk menggambar sebuah persegi " -"seperti gambar dibawah ini" - -# 2de4e380450d4484927d10384cb18e6e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:186 -msgid "*The process of drawing a building with building tools plugin*" -msgstr "*Proses menggambar bangunan dengan building tools*" - -# 0b242d1eaa1c434084f6eb16d4013d3f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:188 -msgid "" -"The tool not only creates a square with a triple click, but it also will " -"automatically apply the **building=yes** tag into the polygon." -msgstr "" -"Ini tidak hanya membuat sebuah persegi panjang dengan tiga kali klik, tetapi " -"juga akan secara otomatis menerapkan tag **building=yes** ke poligon. " - -# 82d670bdd615410397da8afffcc90d59 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:191 -msgid "**Creating Complex Buildings**" -msgstr "**Membuat Bangunan Kompleks**" - -# 7edc86ff081e43259f7c7f68dcbb0538 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:193 -msgid "" -"You can also create building more complicated buildings by first drawing " -"some overlapping buildings and merging them together." -msgstr "" -"Anda juga dapat membuat bangunan yang lebih rumit dengan terlebih dahulu " -"menggambar beberapa overlap dan kemudian menggabungkan mereka bersama-sama." - -# 1b18535f937b49988a8571bb786bdaa7 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:195 -msgid "Draw two buildings which overlap, so that they form a L shape." -msgstr "Menggambar dua bangunan yang overlap, sehingga mereka berbentuk L." - -# 88576b7e69104cacbe172ba7d562b650 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:197 -msgid "" -"Select both buildings (hold :kbd:`SHIFT` to select more than one object)." -msgstr "" -"Pilih kedua bangunan (tahan :kbd:`SHIFT` untuk memilih lebih dari satu " -"objek)." - -# 0c522cdd68954eba83f7cda28fe36b7b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:199 -msgid "" -"Go to :menuselection:`Tools > Join overlapping areas` or hold :kbd:`SHIFT+J` " -"in your keyboard." -msgstr "" -"Pergi ke :menuselection:`Tools > Gabungkan area yang tumpang tindih` atau " -"tekan :kbd:`SHIFT+J` pada keyboard Anda. " - -# 2f50abc4bcf74636a4f0856b384ff91e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:204 -msgid "" -"**DirectUpload:** If you collect a lot of GPS tracks and you want to save to " -"the OSM database, this plugin will make it easier for bulk uploads." -msgstr "" -"**Direct Upload:** Jika Anda mengumpulkan banyak trek GPS dan Anda ingin " -"menyimpannya di database OSM, plugin ini akan mempermudah Anda." - -# 0412d18caef64aa68c2e2adcedbbb2ce -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:206 -msgid "" -"**editgpx**: If you want to upload the GPS track from Garmin device, you may " -"need to use this plugin. Due to a technical glitch, OSM will not receive GPS " -"track that have been saved on an external memory card in Garmin, but this " -"plugin can fix the file so they can be uploaded." -msgstr "" -"**editgps:** Jika Anda ingin mengupload trek GPS dari perangkat Garmin, Anda " -"mungkin perlu menggunakan plugin ini. OSM tidak akan menerima trek GPS yang " -"telah disimpan pada kartu memori eksternal di Garmin, tetapi plugin ini " -"dapat memperbaiki file sehingga mereka dapat diupload. " - -# ef190e6884be4037b8c4b25765eb81d8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:208 -msgid "" -"**fieldpapers**: This plugin loads Field Papers that have been scanned in " -"JOSM." -msgstr "" -"**fieldpapers**: Plugin ini memuat Field Papers yang telah discan di dalam " -"JOSM." - -# 8dd301ec2def4f47ae535cc087c80bb6 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:210 -msgid "" -"**imagery_offset_db**: This plugin for mappers who discover areas where the " -"Bing satellite imagery is not aligned. This will be explained in more detail " -"in the next chapter." -msgstr "" -"**imagery_offset_db**: Plugin ini bekerja sama dengan pembuat peta yang " -"menemukan citra satelit Bing yang tidak sejajar. Masalah ini dibahas lebih " -"detail dalam bab selanjutnya." - -# a64ab53c814a4d56a1e4cb9cb5fa5132 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:212 -msgid "" -"**mirrored_download**: With this plugin, you can download OSM data with a " -"wider area to edit." -msgstr "" -"**mirored_download**: Dengan plugin ini, Anda dapat mendownload data OSM " -"dengan area yang lebih luas untuk mengedit." - -# 1c8010581e5444f08fa8be971d8f66fc -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:214 -msgid "" -"**print**: To add Print function, if you want to print an area quickly and " -"where it need not look very good." -msgstr "" -"**print**: Menambahkan fungsi Print, Jika Anda ingin mencetak sebuah area " -"dengan cepat dan tidak perlu terlihat sangat baik." - -# 7270541de9f946888c7f9abda2af31c2 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:216 -msgid "**utilsplugin2**: To add additional tools and menus in JOSM." -msgstr "**utilsplugin2**: Menambahkan banyak tool tambahan dan menu pada JOSM." - -# 6fbe602ae6d04bf9b5c51385f4992585 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:218 -msgid "" -"If you haven’t done so already, install the plugin shown in the figure below " -"following the instructions for `JOSM Plugins `__." -msgstr "" -"Jika Anda belum selesai, berikut instruksi cara menginstal plugin ini di " -"JOSM Plugin `__." - -# 3ab8c2f70c744772ac4272ffd6068d27 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:223 -msgid "*The display of utilsplugin 2*" -msgstr "*Tampilan dari tilsplugin 2*" - -# aa2759ae22c34f038005982433845708 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:225 -msgid "" -"After you install this plugin and restart JOSM, you will have a new menu at " -"the top of JOSM labeled :guilabel:`More Tools` as shown in the figure below." -msgstr "" -"Setelah Anda menginstall plugin ini dan restart JOSM, Anda akan memiliki " -"sebuah menu baru di atas yang bernama :guilabel:`More Tools` seperti " -"ditunjukkan gambar di bawah." - -# 614234f18a7f499d918188c71b70b47e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:230 -msgid "*The option of more tools menu in JOSM*" -msgstr "*Pilihan menu more tools di JOSM*" - -# 7754c31bbf584da39c8a8fc4c238172d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:232 -msgid "" -"Create new layer and experiment with some of the new tools. We will explain " -"some of the new tools that are very useful:" -msgstr "" -"Membuat layer baru dan berlatih dengan beberapa tools baru. Kita akan " -"menjelaskan beberapa dari tools baru yang sangat berguna: " - -# 903716ad1c1145af92f56d92098ccad4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:234 -msgid "" -"**Add Nodes at Intersections**: This tool is very useful to add a missing " -"node in the selected way intersections. It’s good practice that the way " -"should have common nodes where they intersect." -msgstr "" -"**Add Node at Intersections**: Tambah node atau titik di persimpangan: Tool " -"ini sangat berguna untuk menambahkan titik yang hilang di persimpangan garis " -"yang terpilih. Ini baik untuk dipratekkan bahwa jalan seharusnya selalu " -"memiliki titik di mana mereka berpotongan." - -# afe3a3a637944a5cb86e409208d6d85c -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:239 -msgid "*Adding node at intersections*" -msgstr "*Menambahkan node/titik di persimpangan*" - -# 3fc605d95dfd494799eb2764177f60bb -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:241 -msgid "" -"**Copy Tags from Previous Selection**: This function is very useful for " -"copying a tag easily. Suppose you want to create a lot of objects with the " -"same tagging scheme. Click on an object with the tagging scheme you want to " -"apply and press :kbd:`SHIFT+R` to copy a tag from the previously selected " -"object. You can repeat this process for all objects that you want to apply a " -"tag. Remember that the tags will be copied from the previously selected " -"object, so if you click on an object that has not been tagged the copy " -"function will have no effect.." -msgstr "" -"**Copy Tags from Previous Selection/Salin tag dari pilihan sebelumnya**: " -"Fungsi ini sangat berguna untuk menyalin sebuah tag dengan mudah. Jika Anda " -"ingin membuat banyak objek dengan tag yang sama. Klik pada objek yang lain " -"dan tekan :kbd:`SHIFT+R` untuk menyalin tag dari objek yang dipilih " -"sebelumnya. Anda dapat melakukan ini untuk semua objek yang ingin Anda beri " -"tag. Ingatlah bahwa tag akan disalin dari objek yang terpilih sebelumnya, " -"jika Anda mengklik pada objek yang belum diberi tag, maka fungsi ini tidak " -"dapat berjalan." - -# 21fd61c3975c4c8ab9ab58470c489cad -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:246 -msgid "*Copying tag from the selected building*" -msgstr "*Menyalin tag dari bangunan yang dipilih*" - -# 754845769ebe4defa99c19a31740136d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:248 -msgid "" -"**Add Source Tag**: This tool simplifies adding a source tag, given that the " -"last specified source will be added as source tag to your object. You can " -"insert source with just one click." -msgstr "" -"**Add Source Tag/Tambahkan tag sumber**: Tool ini untuk menyederhanakan " -"dalam menambahkan sumber tag, ini mengingat bahwa sumber yang ditentukan " -"terakhir dan menambahkannya sebagai sumber data ke objek Anda. Anda dapat " -"memasukkan sumber dengan hanya mengklik satu kali." - -# 823a038a5a0548418ffd91dcb4839a0b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:250 -msgid "" -"**Replace Geometry**: This tool is very good if you want to improve the " -"drawing of an object, but retain the history, the attribute and the object " -"ID. Example, if you find a complex building drawn in a way that is not " -"appropriate, you can draw the object again, select the old object and new " -"object, select :guilabel:`Replace Geometry` to transfer all of the above " -"information." -msgstr "" -"**Replace Geometry/Ganti Geometri**: Tool ini sangat berguna jika Anda ingin " -"memperbaiki gambar objek, tetapi riwayat, atribut, dan objek ID tersebut " -"tetap tidak berubah. Contohnya, Jika Anda menemukan sebuah bangunan yang " -"rumit dan digambarkan dengan cara yang tidak sesuai, maka untuk mengubah " -"setiap titiknya, Anda dapat menggambar objeknya kembali, memilih objek lama " -"dan baru, dan pilih guilabel:`Ganti Geometri`, untuk mentransfer semua " -"informasi di atas. " - -# 6d5c7e1283c649b498e8442bcef3f305 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:255 -msgid "*Replace Geometry in JOSM*" -msgstr "*Mengganti bentuk objek di JOSM*" - -# 5cb242d5c5ea409290cd0308f742aa02 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:258 -msgid "**Selection**" -msgstr "**Tool Selection**" - -# fa86fdc2af624ff28dfb20b33c2fd2eb -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:260 -msgid "" -"Utilsplugin2 also provides a lot of tools in :guilabel:`Selection` menu. Try " -"experimenting with each of these tools." -msgstr "" -"**Utilsplugin2** juga menyediakan lebih banyak tool pada menu :guilabel:" -"`Selection`. Cobalah bereksperimen dengan tool tersebut." - -# 1b07a0e0bfff4cfd9b9981e61f875477 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:266 -msgid "*The display of menu in selection tools*" -msgstr "*Tampilan menu tools Selection*" - -# a1f1b21e80014154b99fc8f058fc9431 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:268 -msgid "" -"One of the selection tools which we use frequently is **Unselect Nodes**: " -"This tool deselects all points. This can be useful if you draw a square to " -"select a lof of objects, but you don’t want to select a point that contains " -"all the lines and polygons. An example is shown in the figure below." -msgstr "" -"Salah satu tool selection yang sering kita gunakan adalah **Membatalkan " -"pilihan node/titik**: Tool ini membatalkan pilihan semua titik. Ini dapat " -"berguna jika Anda menggambar kotak untuk memilih banyak objek, tetapi Anda " -"tidak ingin memilih titik yang berisi semua garis dan poligon. Seperti " -"ditunjukkan pada gambar di bawah ini" - -# 0468ba81f3a84e4886f86849acef0d47 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:275 -msgid "*The example cancel node in JOSM*" -msgstr "*Contoh membatalkan node/titik di JOSM*" - -# fe9b0dfe34e94574ab2e39f5170d00e3 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:279 -msgid "5.2 Editing Tips" -msgstr "5.2 Tips Editing" - -# dc90e6ab2e53470ba181f98b14fcae95 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:281 -msgid "" -"There are some common mistakes that mappers make when they start using " -"OpenStreetmap. In this chapter we’ll identify a few of the most frequent " -"errors and offer some tips for better mapping." -msgstr "" -"Ada beberapa kesalahan umum yang dilakukan pembuat peta ketika mereka " -"memulai menggunakan OpenStreetMap. Pada bab ini, kita akan mengidentifikasi " -"beberapa kesalahan yang sering dilakukan dan memberikan beberapa tips untuk " -"memetakan lebih baik." - -# 7d12b99efe3f41d98ff9c78354a10fc6 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:285 -msgid "5.2.1 Connecting Objects" -msgstr "5.2.1 Objek yang saling Terhubung" - -# ab0f482ab109460fbf37f62e0bccca62 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:287 -msgid "**Some objects should not connect...**" -msgstr "**Beberapa Objek Sebaiknya tidak Terhubung**" - -# a3e95a77ac66461ea0b8d55bda58954f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:289 -msgid "" -"When you are creating polygon and line that are not supposed to be " -"connected, make sure that they are not merged together by sharing a node. " -"For example, highway nodes should not be snapped to buildings, because no " -"one likes a road that leads directly into a wall! If you want to disconnect " -"two or more objects that share the same node, select node and go to :" -"menuselection:`Tools -> Unglue Ways` or press :kbd:`G` as shown in the " -"figure below." -msgstr "" -"Ketika Anda membuat poligon dan garis yang tidak seharusnya terhubung, " -"pastikan mereka tidak terhubung oleh satu titik. Sebagai contoh, titik pada " -"jalan sebaiknya tidak menempel ke bangunan, karena tidak ada jalan yang " -"langsung menempel dengan dinding! Jika anda ingin memutuskan hubungan dua " -"atau lebih objek yang menempel di titik yang sama, pilih titik dan pergilah " -"ke Menu :menuselection:`Tools -> Memisahkan titik/garis` atau tekan :kbd:`G` " -"seperti gambar di bawah ini." - -# 8bd5567cfb5c4ed58cc497a34acdb728 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:295 -msgid "*Building and Road Connected*" -msgstr "*bangunan dan jalan yang tersambung*" - -# e06aa64bbd224db0a22a315e1f42946a -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:300 -msgid "*Building and Road Separated*" -msgstr "*bangunan dan jalan yang terpisah*" - -# 33a15ec1e1b6486ca98af77e4cd53542 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:303 -msgid "**...but some objects should connect**" -msgstr "**Tetapi, Beberapa Objek Harus Terhubung** " - -# d58b422529d84e2b895afe6c4f256b07 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:306 -msgid "" -"Roads that intersect should always share a node as shown in the figure " -"below. If they do not share in a common node, then the computer has no way " -"of knowing that the roads actually connect to each other. Therefore if you " -"see the roads are not connecting to each other, please fix it by selecting " -"the node from the road that you want to connect then go to :menuselection:" -"`Tools -> Merge Node` or press :kbd:`M` in your keyboard and drag it." -msgstr "" -"Jalan yang bersinggungan seharusnya selalu terhubung pada titik. Jika mereka " -"tidak terhubung pada satu titik, maka komputer tidak mengetahui bahwa jalan " -"tersebut sebenarnya saling terhubung satu sama lain. Maka dari itu jika anda " -"melihat ada jalan yang tidak saling terhubung satu sama lain silahkan " -"perbaiki dengan pilih node/ titik dari jalan yang ingin dihubungkan " -"kemudian pergilah ke Menu :menuselection:`Tools -> Gabungkan Node` atau " -"tekan :kbd:`M` pada keyboard Anda dan geser." - -# a7e84eb49e8f41c79f6c46174d2966a4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:312 -msgid "*Road must connect to each other*" -msgstr "*Jalan harus terhubung satu sama lain*" - -# 184338e25b8a4d4db73702af59ca9423 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:316 -msgid "5.2.2 Overlapping Object" -msgstr "5.2.2 Objek yang Saling Overlap" - -# 7dd36808884f4f35885d72def8c9a6c2 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:318 -msgid "" -"A common error is to have overlapping polygons when the objects they " -"represent do not overlap in real life. A building can not overlap to another " -"building. For example, a polygon drawn to represent a park outside a " -"building should not overlap with the building. Instead it should be drawn " -"next to the building." -msgstr "" -"Salah satu kesalahan umum adalah poligon saling overlap ketika objek yang " -"digambarkan sebenarnya tidak saling overlap. Sebuah bangunan tidak bisa " -"overlap dengan bangunan yang lain. Sebagai contoh, poligon yang dibangun " -"untuk menggambarkan taman diluar bangunan sebaiknya tidak saling overlap " -"dengan bangunannya. Seharusnya digambar di sebelah bangunannya." - -# 595a7428135c4ffb9a388c07dfe98930 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:325 -msgid "*The example of overlap building*" -msgstr "*Contoh bangunan yang saling overlap*" - -# bc51f28a339d43f89d96aaa0779d79e0 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:327 -msgid "" -"There are some exceptions to this rule, such as school. Within a school yard " -"you might identify individual buildings using polygons, yet you also might " -"want to create a polygon around the entire school yard. In this case it is " -"fine for the polygons to overlap, but the rule to follow here is to make " -"sure that the buildings are completely inside the landuse polygon." -msgstr "" -"Ada beberapa pengecualian pada aturan ini, se­perti sekolah. Di dalam halaman " -"sekolah mungkin Anda ingin mengidentifikasi bangunan menggunakan poligon, " -"tapi mungkin Anda juga ingin membuat sebuah poligon yang meliputi seluruh " -"halaman sekolah. Dalam kasus seperti ini, poligon diper­bolehkan untuk " -"saling overlap, tetapi aturannya adalah pastikan bahwa bangunan­ se­cara " -"menyeluruh berada dalam poligon peng­gunaan lahan." - -# 4fa2217518304c55a685f8dd30bb68c4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:333 -msgid "*The example of overlap building that is true and false*" -msgstr "*Contoh overlap bangunan yang salah dan benar*" - -# cbba6dc6f0c047b6aea896ca7c5669cd -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:337 -msgid "5.2.3 Other Errors" -msgstr "5.2.3 Kesalahan-Kesalahan yang Lain" - -# c520a78ba7f345e6828153e57ddc43a7 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:340 -msgid "Tag given in the node rather than on building" -msgstr "Tag Diberikan pada Node, Bukan pada Bangunan" - -# ae377823206141cd8182337d204ff89c -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:345 -msgid "*The example of building given a false tag (left) and true tag (right)*" -msgstr "" -"*Contoh bangunan yang diberikan tag dengan salah (kiri) dan benar (kanan)*" - -# 61a46a08d8e745469951c5f86bbddac4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:347 -msgid "" -"A common error is adding tag on a node that makes up part of a line or " -"polygon. This often happens when someone draws a building and then select " -"one of the nodes that participate in the object. The way to avoid creating " -"an improper way is by clicking directly on the line." -msgstr "" -"Satu masalah umum yaitu menambahkan tag pada node yang terdapat pada bagian " -"dari sebuah garis atau poligon. Ini sering terjadi ketika seseorang " -"menggambar sebuah bangunan dan kemudian memilih satu dari titik yang ada " -"disekitar gambar tersebut. Cara untuk menghindari hal ini, dengan klik " -"secara langsung pada garis." - -# 63cede9d537445e685ddde2c65c709dd -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:352 -msgid "" -"Intersection that meets in road corner/ intersections should be separated" -msgstr "" -"Persimpangan yang Bertemu di Sudut Jalan/Persimpangan Jalan Harus Dipisah" - -# a18d74edb8a54f51b773546049973a49 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:357 -msgid "*The wrong intersection (left) and true intersection (right)*" -msgstr "*Pembuatan simpangan yang salah (kiri) dan benar (kanan)*" - -# b8d3f419d16e4cf3b49c96fd9dc9d709 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:359 -msgid "" -"When roads intersect each other at road corners, you should not create a " -"curved line at intersection. Line should form an angle of 90° that " -"represents the actual conditions." -msgstr "" -"Ketika jalan bersinggungan satu sama lain di sudut jalan, Anda tidak boleh " -"membuat garis melengkung di persimpangan. Garis seharusnya berbentuk sudut " -"90°, seperti dikondisi sebenarnya." - -# 7bce0b5751c54557b53b4928112ecf4d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:363 -msgid "There is no tag in a node or a line" -msgstr "Tidak ada Tag pada Node atau Garis" - -# 942e17857e754d2385194662a67eadd5 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:368 -msgid "" -"To fix this, select an object and tag the object in accordance with the " -"information that describes the object. Alternatively, the object can be " -"removed if the object is in error." -msgstr "" -"Untuk memperbaiki ini, pilih objek dan tag objek yang sesuai dengan " -"informasi yang dideskripsikan objek tersebut. Kemungkinan, objek bisa di " -"hapus bila itu adalah kesalahan." - -# c0a192ff2bff448eb7cd82122a88fb8d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:373 -msgid "Line near, or with another line but they are not connecting" -msgstr "Garis Berada Dekat dengan Garis Lain Tetapi Tidak Terhubung" - -# b9e0dbd13fbf42d782a98252b5da80a8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:375 -msgid "" -"The figure below shows an example of lines that should connect but do not." -msgstr "" -"Gambar di bawah ini menunjukkan sebuah contoh dari garis yang seharusnya " -"terhubung tetapi tidak " - -# 8049d00080344f0cb94c28ee07941c7f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:380 -msgid "*The example of lines not connecting to each other*" -msgstr "*Contoh dari garis tidak saling terhubung*" - -# 1d611787352a4859a7ab7bd769ee318f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:382 -msgid "" -"To fix it, you can select a node from the line that you want to connect, and " -"then select the :guilabel:`Draw Node` tool to add a node at the end of the " -"line. Alternatively, you can use the :guilabel:`Merge Node` tool (if the " -"front line is not connecting, that is a node), the following stages are:" -msgstr "" -"Untuk memperbaikinya, Anda bisa memilih titik dari garis yang ingin " -"dihubungkan dan kemudian pilih :guilabel:`Gambar node` untuk menambahkan " -"titik di akhir garis. Alternatif lainnya, Anda bisa menggunakan :guilabel:" -"`Gabungkan Node` (jika didepan garis yang belum terhubung tersebut merupakan " -"sebuah titik), caranya:" - -# 7dac99ad2dab464081b44f94b7b39d30 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:385 -msgid "" -"Select the two adjacent nodes, which is in the second line you want to " -"connect" -msgstr "" -"Pilih kedua titik yang berdekatan, yang berada di dalam kedua garis yang " -"ingin dihubungkan" - -# 35c41538428841f9b6f2e578a281b7bf -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:387 -msgid "Select :menuselection:`Merge Node > Tools` menu" -msgstr "pilih menu :menuselection:`Tools > Gabungkan Node`" - -# 91a085bb21ec4a9e8be831131a5dfc12 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:389 -msgid "" -"If the end of the first line is not yet connected, and there is not a point " -"to connect to in the second line, you can use the :menuselection:`Tools > " -"Join Node to Way`." -msgstr "" -"Jika di depan garis yang belum terhubung tersebut tidak terdapat sebuah " -"titik, Anda bisa menggunakan tool pada :menuselection:`Tools > Menggabungkan " -"node/titik men­jadi way/garis`." - -# 365be9bb5b2f4c3084c6d0ec7717309d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:393 -msgid "Way should not cross the building" -msgstr "Garis Tidak Boleh Melewati Bangunan" - -# 2a17b8c11f434b0fb990ea54ad3e9483 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:395 -msgid "In the figure below, a linear feature runs directly through a building." -msgstr "" -"Pada gambar di bawah, sebuah fitur linear berjalan langsung melalui sebuah " -"bangunan." - -# d5ae55dbbb7e43ef81c0e130c7fd074d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:400 -msgid "*The example of way cross the building*" -msgstr "*Contoh garis melewati bangunan*" - -# 2700aa138df44945bf587d42a79651ac -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:402 -msgid "" -"To fix this, you need to use the latest satellite imagery so you can " -"determine which objects are correctly placed. If you are already using the " -"latest imagery, simply move the object to the appropriate place and delete " -"any obsolete features." -msgstr "" -"Untuk mengatasinya, Anda perlu melihat menggunakan citra satelit objek mana " -"yang berada pada lokasi yang salah. Jika sudah, Anda tinggal menggeser " -"objek tersebut ke tempat yang sesuai." - -# ae8060902ddc4fd6b50c7d3acac0d978 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:406 -msgid "5.3 JOSM Editing Process" -msgstr "5.3 Tahapan Mengedit di JOSM" - -# f9ca9ada166c48f2a9592aae3f0ad412 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:408 -msgid "" -"Editing OpenStreetMap with JOSM is similar to editing with the iD editor. " -"But because JOSM is a desktop application, it works a little bit " -"differently. The general process of editing and adding to OpenStreetMap with " -"JOSM will always follow this pattern:" -msgstr "" -"Mengedit OpenStreetMap dengan JOSM sama dengan mengedit dengan iD editor. " -"Namun karena JOSM adalah aplikasi desktop, akan ada sedikit perbedaan. " -"Berikut adalah proses mengedit dan menambahkan ke OpenStreetMap dengan JOSM " -"yang tahapannya sebagai berikut:" - -# 9c092d9559c84c2fbb30b2fbb368f379 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:411 -msgid ":guilabel:`Download` the current map data from OSM" -msgstr ":guilabel:`Download` data peta yang terbaru dari OSM" - -# 85031d1101694223abf0154e94d4013a -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:413 -msgid ":guilabel:`Edit` it using satellite imagery, GPS or Field Papers" -msgstr ":guilabel:`Edit` ini menggunakan citra satelit, GPS atau FieldPapers" - -# 0690e93483344b64a1f9ae04d09cc945 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:415 -msgid ":guilabel:`Save` changes to OpenStreetMap" -msgstr ":guilabel:`Save` perubahan ke OpenStreetMap" - -# 7e34e2006e26434189b8eb3983257089 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:417 -msgid "In the following sections, we explore this pattern in greater detail." -msgstr "Pada bagian ini, kita akan mempelajari hal secara lebih rinci" - -# 620dcf592b724efc890ab597ec088e28 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:420 -msgid "5.3.1 Downloading OSM Data" -msgstr "5.3.1 Mendownload Data OSM" - -# 1dad5a196c194ff7bd7914305e757c0e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:422 -msgid "" -"The first step is to download the data for the area of interest that you " -"want to map. Remember that you need to do this every time that you want to " -"make changes to the map, because the map is often being updated by other " -"users and you will want the latest data." -msgstr "" -"Langkap pertama mengedit adalah mendownload data untuk area yang akan kita " -"tambahkan. Perhatikan bahwa Anda perlu melakukan ini setiap waktu sesuai " -"dengan keinginan Anda untuk melakukan perubahan pada peta, karena peta ini " -"sering kali diperbarui oleh pengguna lain." - -# 128b54f2c92843269683ac735d288882 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:425 -msgid "" -"Click on :guilabel:`File` in the top left corner of JOSM and click :guilabel:" -"`Download from OSM`. This will open up the download window. You can access " -"this window more simply by clicking on the :guilabel:`download` button, " -"shown here:" -msgstr "" -"Klik pada :guilabel:`File` di sudut kanan atas JOSM dan klik :guilabel:" -"`Download dari OSM`. Kemudian jendela download akan terbuka. Anda juga " -"dapat mengakses jendela ini dengan mengklik pada tombol :guilabel:" -"`download`, seperti ini:" - -# 7556b6700d0b4ba49d4ac4a080931619 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:431 -msgid "" -"When the download window opens, you should see a map with a pink box drawn " -"on it. If you don’t see the map, click on the tab marked :guilabel:`Slippy " -"map` as shown in the figure below." -msgstr "" -"Ketika jendela download terbuka, Anda akan melihat peta dengan kotak " -"berwarna merah muda yang tergambar di dalamnya. Jika peta Anda tidak muncul, " -"klik pada tab yang bertanda :guilabel:`Pencarian peta secara cepat` seperti " -"ditunjukkan gambar di bawah ini. " - -# 53084ac29bef4bf88a870c278a0d3156 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:437 -msgid "" -"3. The pink box represents the area of interest that we would like to " -"download for editing. Use your mouse to pan and zoom to an area that you " -"know very well, such as your hometown or neighborhood. The controls are the " -"same as in the JOSM map window. The right mouse button lets you drag the " -"map, and your scroll wheel allows you to zoom in and out." -msgstr "" -"3. Kotak berwarna merah muda merupakan area peta yang akan kita download. " -"Gunakanlah mouse Anda untuk menggeser dan memperbesar ke area yang ingin " -"anda edit, seperti tempat tinggal Anda atau lingkungan sekitarnya. Klik " -"kanan tahan berguna untuk menggeser peta, dan gulir mouse Anda berguna " -"untuk memperbesar dan memperkecil peta." - -# de62a50c193d4f60a6fde57da9eaa2e8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:441 -msgid "" -"4. Draw a box around the area that you want to download. To draw a new box, " -"click on the map, hold your left mouse button down, and drag your mouse to " -"create a box. Release the mouse button to finish drawing the box." -msgstr "" -"4. Gambarlah kotak disekitar area yang Anda ingin download. Untuk menggambar " -"kotak baru, klik dan tahan pada peta lalu geser mouse Anda untuk membuat " -"sebuah kotak. Lepaskan tom­bol mouse untuk mengakhiri menggambar ko­tak." - -# 30410edaa7824a28ad115c648ea186fc -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:444 -msgid "" -"5. When you are satisfied with the size and location of the box, click :" -"guilabel:`Download` at the bottom of the window. JOSM will fetch the data " -"for this area from OpenStreetMap and open it in your map window for editing." -msgstr "" -"5. Apabila kotak yang Anda buat sudah benar dengan ukuran dan lokasi kotak, " -"klik :guilabel:`Download` di bagian bawah jendela. JOSM akan mendownload " -"data untuk area ini dari OpenStreetMap dan membukanya di jendela peta Anda " -"untuk mengedit." - -# 2ddee426f30444c4bba261fb4f0baf42 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:451 -msgid "5.3.2 Add Imagery" -msgstr "5.3.2 Menambahkan Citra Satelit" - -# 1861e87673a746ddb1c4a2792b452b7e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:453 -msgid "" -"If you followed along when we added our first points with the iD editor, you " -"remember that beneath the map data there was a satellite image that helped " -"us identify objects on the ground. This imagery was licensed from Microsoft " -"Bing, which generously provides its imagery for OpenStreetMap users to use " -"as a reference while contributing to the map." -msgstr "" -"Jika Anda masih mengingat cara mengedit menggunakan iD editor, Anda " -"perhatikan bahwa di bawah data peta terdapat citra satelit yang dapat " -"membantu kita untuk mengidentifikasi objek di permukaan. Citra satelit ini " -"berasal dari Microsoft Bing, yang menyedikan citra satelit ini untuk para " -"pengguna OpenStreetMap secara gratis sebagai referensi dalam berkontribusi " -"untuk pemetaan." - -# 37ec6f5dc85d4a619886f0a1533e9115 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:457 -msgid "" -"To add the Bing satellite imagery in JOSM, click :guilabel:`Imagery` on the " -"top menu of JOSM and selecting :guilabel:`Bing Sat`." -msgstr "" -"Untuk menambahkan citra satelit Bing di JOSM, klik :guilabel:`Citra Satelit` " -"di bagian menu atas JOSM dan pilihlah :guilabel:`Bing Aerial Imagery`." - -# e16c1e4fc6914444a26576ca7890f7b9 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:464 -msgid "5.3.3 Edit with JOSM" -msgstr "5.3.3 Mengedit dengan JOSM" - -# 6f4e30d858244b4d878e2ab295aeaddd -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:466 -msgid "" -"To this point, we have been doing some pre-edit steps in JOSM starting with " -"downloading OSM data and adding satellite imagery as the background. Next, " -"we’ll edit the map and add new objects on it." -msgstr "" -"Sekarang, kita telah melakukan beberapa langkah sebelum mengedit di JOSM, " -"dimulai dengan mendownload data OSM dan menambahkan citra satelit sebagai " -"latar belakang. Selanjutnya, kita akan mengedit peta dan menambahkan objek " -"baru didalamnya." - -# e433b0edbb63458590da20141237292d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:469 -msgid "" -"You might rather see more or less data in your editing window. What you see " -"will depend on the size of your editable area. Please note, the data you are " -"working with is real data and the nodes, lines and polygon in your map area " -"represents actual objects on the ground." -msgstr "" -"Anda mungkin akan mendapat banyak atau sangat sedikit data peta di JOSM, " -"tergantung dari luas area yang Anda gunakan. Tetapi perhatikan bahwa data " -"itu adalah jenis data yang sama seperti data contoh yang telah kita pelajari " -"sebelumnya seperti titik, garis, dan poligon yang mewakili lokasi kehidupan " -"nyata." - -# a71da0ff102a4e3ab01495f97a94c47e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:472 -msgid "" -"Use same steps that you have learned before to add nodes to your map. If you " -"see any error in your object, please fix it." -msgstr "" -"Menggunakan cara seperti yang Anda telah pelajari sebelumnya untuk menambah " -"titik ke peta wilayah. Jika Anda melihat suatu kesalahan pada objek " -"tersebut, cobalah untuk memperbaikinya." - -# 9005a649fb9d40bc8e06b9e9889a3238 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:474 -msgid "" -"2. You do not need to hurry, take your time to understand the steps. If you " -"are not really sure about the outline or identify of some object, you should " -"leave these off the map." -msgstr "" -"2. Anda tidak perlu terburu-buru pada saat mempelajarinya. Jika Anda tidak " -"yakin mengenai suatu objek jangan memetakannya." - -# a5b7eec8176741eda98ebf83d00526ee -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:477 -msgid "" -"3. If you want to move nodes, lines, or polygon, you can use :guilabel:" -"`Select Tools`. Click the object that you want to move and drag it to where " -"it should be.This step could be used to fix location of objects which have " -"wrong position." -msgstr "" -"3. Jika Anda ingin memindahkan sebuah titik, garis, atau poligon, " -"menggunakan :guilabel:`Alat Memilih Ob­jek`. Klik pada sebuah objek dan " -"menggesernya ke tempat yang seharusnya. Hal ini dapat digunakan untuk " -"memperbaiki lokasi objek yang berada di tempat yang salah." - -# dca619f9a1e843d4b68d95a699cd75e4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:483 -msgid "" -"4. Use :guilabel:`Draw Tool` to draw nodes, lines, and polygon. Add " -"description and information of your object using Presets menu. You have done " -"this in previous chapter." -msgstr "" -"4. Gunakan :guilabel:`Alat Menggambar` untuk menggambar titik, garis, dan " -"poligon. Tambahkan deskripsi dan informasi objek tersebut dengan menggunakan " -"menu Presets. Anda telah melakukannya pada bab sebelumnya." - -# 150a8ed97687411a88f93842aa75b27f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:487 -msgid "JOSM Layer" -msgstr "Layer JOSM" - -# 300ab2bf617d49ac87bccd51af9cff9f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:489 -msgid "" -"You might be notice that everytime you add new object to JOSM, your object " -"will be added to layer panel at right side in JOSM. Your :guilabel:`Panel " -"Layer` should looks like this:" -msgstr "" -"Anda mungkin telah memperhatikan bahwa setiap Anda menambahkan objek baru " -"ke JOSM, objek Anda akan ditambahkan ke panel layer di sisi kanan JOSM. :" -"guilabel:`Panel Layers` Anda mungkin terlihat seperti ini:" - -# c117810b2f7f42818a4e1f17f4cef576 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:495 -msgid "" -"Every item listed is a different source of data that you have open in JOSM. " -"In the example shown in the figure above, :guilabel:`Data Layer 1` is the " -"OpenStreetMap data that we are currently editing. :guilabel:`BingSat` layer " -"is satellite imagery that is used as a background in JOSM." -msgstr "" -"Setiap item dalam daftar ini merupakan sumber data yang berbeda yang Anda " -"telah buka di JOSM. Pada contoh yang ditunjukkan gambar di atas, :guilabel:" -"`Data Layer 1` adalah data OpenStreetMap yang kita edit. :guilabel:`Bing " -"Sat` adalah layer citra satelit yang kita gunakan sebagai sebuah latar " -"belakang di JOSM." - -# 297355afa6a84497bde8e20a777cb52d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:499 -msgid "" -"Those layers that are used as background images help us identify and " -"digitize objects in JOSM. These include satellite imagery, but also GPS " -"tracks and scans of Field Papers. We call these layers **base layers** and " -"our OSM data layer is main layer that we use to digitize and edit, add " -"objects, move objects, etc." -msgstr "" -"Layer-layer yang digunakan sebagai latar belakang untuk membantu " -"identifikasi dan mendijitasi objek di JOSM. Seperti citra satelit, trek gps, " -"dan hasil scan FieldPapers. Kita menyebutnya sebagai **base layers atau " -"latar belakang** sedangkan layer dari data osm yang kita download adalah " -"layer utama yang kita gunakan untuk digitasi dan melakukan editing, " -"menambahkan objek, memindahkan objek, dsb." - -# 771c35257db549999248e0459a97f864 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:503 -msgid "" -"To move a layer, click on that layer in :guilabel:`Layers` panel and click :" -"guilabel:`up` or :guilabel:`down blue arrow` to move it." -msgstr "" -"Untuk memindahkan sebuah layer, klik pada :guilabel:`Layers` dan klik tanda " -"panah guilabel:`ke atas` atau :guilabel:`ke bawah` untuk memindahkannya." - -# 7f0fd80fefbf4bafb5de092b1cc76f09 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:508 -msgid "" -"To hide a layer, select layer with your mouse and you can click :guilabel:" -"`Show/Hide` button:" -msgstr "" -"Untuk menghilangkan sebuah layer, pilih layer dengan mouse Anda dan klik " -"tombol :guilabel:`Show/ Hide`:" - -# fbcb20268fee42288ff53cfb6f63645b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:513 -msgid "" -"You should see your layer that you select will be hide in JOSM. If you want " -"to show it again, you can click the show/hide button and it would be " -"automatically show in JOSM." -msgstr "" -"Anda seharusnya melihat layer yang Anda telah pilih akan menghilang pada " -"jendela peta. Klik tombol Show/Hide dan ini secara otomatis akan muncul di " -"JOSM." - -# ad0146c5591e4411b01dd3da7ff3409d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:516 -msgid "You also can delete a layer using the :guilabel:`delete` button:" -msgstr "" -"Anda dapat menghapus sebuah layer dengan menggunakan tombol :guilabel:" -"`delete`:" - -# 29451a25dc914432876568f67e26915b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:521 -msgid "" -"4. Last, it is very important to know that you only can edit the :guilabel:" -"`Active` layer in JOSM. If you can not edit your map in JOSM, it might be " -"because your layer is not active. Most layer, such as GPS point, Field " -"Papers, and Aerial Imagery cannot be edited. The only layer that can be " -"edited are data from OpenStreetMap, which are usually called **Data Layer " -"1**." -msgstr "" -"4. Terakhir, ini penting untuk mengetahui bahwa Anda hanya dapat mengedit " -"layer yang dianggap :guilabel:`Aktif` oleh JOSM. Jika Anda tidak dapat " -"mengedit peta di dalam jendela peta Anda, ini mungkin karena Anda tidak " -"memiliki layer yang aktif. Kebanyakan layer, seperti titik GPS, Field " -"Papers, dan citra satelit tidak dapat diedit. Satu-satunya layer yang dapat " -"diedit adalah data dari OpenStreetMap, yang biasa disebut **Data Layer 1**" - -# e57a9d7ab914405d94ef7de934f1d769 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:525 -msgid "" -"To make a layer active, select it in the :guilabel:`Layers` panel, and click " -"on the :guilabel:`Activate` button:" -msgstr "" -"Untuk mengaktifkan suatu layer, pilih nama layer Anda pada panel :guilabel:" -"`Layer`, kemudian klik tombol :guilabel:`Aktifkan`:" - -# c2c1bad3546a4568876006c15961a0cf -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:531 -msgid "Tag" -msgstr "Tag" - -# 94f7816a7d304111a6ba4d23748215fd -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:533 -msgid "" -"Tag is just like a label that you put to an object. For instance, if we add " -"an object in some area and that object is a mosque and its name is **Masjid " -"Raya Sabilal Muhtadin**; amenity that we can use is **place of worship** and " -"mosque as we know, is Muslim place of worship. Therefore, you can add a " -"**religion=Muslim** tag to the mosque as well as any other information you " -"can supply about that object. The tag will be saved as text, specifically as " -"a **key** and **value** combination. In OpenStreetMap, you can see all " -"information about an objects in properties panel at right side of your JOSM " -"window as shown in the figure below." -msgstr "" -"Sebuah tag adalah seperti sebuah label yang Anda dapat letakkan ke suatu " -"objek. Misalnya, jika kita menambahkan sebuah objek di beberapa area dan " -"objek adalah sebuah masjid dan itu bernama **Masjid Raya Sabilal Muhtadin**; " -"amenity adalah **place of worship** dan masjid merupakan tempat ibadah umat " -"muslim. Anda dapat menambahkan **religion=Muslim** untuk masjid sebagai " -"informasi lain yang Anda inginkan ke sebuah objek. Tag disimpan sebagai " -"sepasang teks, terutama sebagai sebuah **key** dan **values**. Di " -"OpenStreetMap, Anda dapat melihat semua informasi tentang sebuah objek di " -"panel properti di sebelah kanan dari jendela JOSM seperti ditunjukkan pada " -"gambar di bawah ini." - -# ab0941e450d64341beac5c5048225057 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:542 -msgid "*Example Tag of object in JOSM*" -msgstr "*Contoh Tag dari Objek di JOSM*" - -# 9dfee9aa157b4a66849e18499137eb0e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:546 -msgid "Editing Tags" -msgstr "Mengedit Tags" - -# 94c720852efd432983efa54a44bdd2d8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:548 -msgid "" -"You can add, edit, and remove tags directly from properties panel. But, tags " -"are automatically defined in English and sometimes it is confusing " -"especially if you do not understand English. Hence, non-English speakers may " -"find it is easier to manage tags using a Preset Menu. Needless to say, when " -"you add or edit tag, the attribute of object will be change as well." -msgstr "" -"Anda dapat menambah, mengedit, dan menghapus tag dari panel Properties. " -"Namun, tag secara manual dalam bahasa Inggris dan kadang-kadang dapat " -"membingungkan terutama jika Anda tidak mengerti bahasa Inggris. Oleh karena " -"itu, Anda lebih mudah mengatur tags menggunakan sebuah menu Presets. Ketika " -"Anda menambah atau mengubah tag, atribut objek akan berubah." - -# 294ebc4cda1c4f5a918138acd658f818 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:552 -msgid "To edit tag of an object, first **select the object**." -msgstr "Untuk mengedit tag objek, pertama **pilih ob­jeknya**." - -# 639f3e6abd6c48ddba1ccbe50e306097 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:554 -msgid "" -"You can edit the tag either: (1) **Using Presets Menu**, or (2) **Edit " -"Directly** in properties windows at right side of your JOSM." -msgstr "" -"Anda dapat mengedit tag: (1) **Menggunakan Menu Presets**, (2) **Mengedit " -"tag secara langsung** di jendela Properties di sebelah kanan dari JOSM Anda." - -# 18cf6b9da00c49e29124174885ddc8b1 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:557 -msgid "5.3.4 Save Changes" -msgstr "5.3.4 Menyimpan Perubahan" - -# a878dd8dee1a426d8d83cbfbc6cb7448 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:559 -msgid "" -"The third and final step to complete our edits is to upload changes we have " -"made to the OpenStreetMap database. To save the changes, you must be " -"connected to the internet." -msgstr "" -"Langkah ketiga dan terakhir untuk menyelesaikan hasil editan adalah untuk " -"mengupload perubahan yang telah kita buat di database OpenStreetMap. Untuk " -"menyimpan perubahan, kita harus terkoneksi dengan internet." - -# 384e3dced1ad4ea7986f3e3679c056ed -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:562 -msgid "" -"1. Click :guilabel:`File` on the top menu, and then click :guilabel: `Upload " -"Data`. This will open up the upload window. You can access this window more " -"simply by clicking on the :guilabel:`upload` button, shown here:" -msgstr "" -"1. Klik :guilabel:`File` di atas menu, dan kemudian klik :guilabel:" -"`Perbaharui Data`. Hal ini akan membuka jendela upload. Anda dapat " -"mengakses jendela ini dengan lebih cepat dengan mengklik tombol :guilabel:" -"`upload`, seperti di bawah ini:" - -# ae665258146140bdaffa76827e132175 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:568 -msgid "" -"2. The window that appears shows a list of the objects that you are adding " -"and the objects you are modifying or deleting. In the box at the bottom you " -"are asked to provide a comment about the changes that you are making. Type " -"in here a brief description of your edits." -msgstr "" -"2. Jendela yang muncul menunjukan daftar objek yang Anda telah tambahkan dan " -"objek yang Anda modifikasi atau hapus. Pada kotak di bagian bawah Anda " -"diminta untuk memberikan komentar mengenai perubahan yang telah Anda buat. " -"Ketikkan disini sebuah deskripsi singkat dari editing Anda." - -# ed7d42951f084253aa4d4568982690d4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:574 -msgid "Click :guilabel:`Upload Changes`" -msgstr "Klik :guilabel:`Upload Perubahan`" - -# 8a61f3caac1a4855a3f2e260e489f2e3 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:576 -msgid "" -"Wait a few seconds for your changes to be uploaded, and then you are " -"finished! You have edited OpenStreetMap!" -msgstr "" -"Anda perlu menunggu beberapa detik untuk melihat perubahan Anda yang telah " -"diupload, dan selesai! Anda telah mengedit di dalam OpenStreetMap." - -# feeffab8804e4c33bb31229ccd3eb6a0 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:580 -msgid "5.3.5 Save OSM File" -msgstr "5.3.5 Menyimpan File OSM" - -# a4c72f97d2534716b227377750831229 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:582 -msgid "" -"When you edit using JOSM, you should download, edit and upload your changes " -"at regular intervals. Do not be afraid to upload your changes several times " -"during an editing session. This insures your changes upload to OSM database " -"completely and you face less risk of losing your work. There are some cases " -"where you have not finished your work, or your internet connection may be " -"suddenly turned off. If that happens, you can save your work locally in " -"JOSM. These are the steps to save your work:" -msgstr "" -"Ketika Anda mengedit di JOSM, Anda sebaiknya mendownload, mengedit, dan " -"mengupload perubahan dalam interval waktu yang tidak lama. Jangan takut " -"untuk mengupload hasil edit Anda sesering mungkin. Hal ini memastikan bahwa " -"perubahan Anda akan disimpan ke dalam database OSM dan tidak akan kehilangan " -"hasil kerja Anda. Ada kasus dimana, Anda belum selesai mengerjakan pekerjaan " -"Anda, atau koneksi internet Anda terputus. Jika hal itu terjadi, Anda dapat " -"menyimpan pekerjaan Anda di komputer. Caranya adalah sebagai berikut :" - -# 428a685a5b9349328a0ff45f90fc55c5 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:587 -msgid "" -"1. To save your OSM file, make sure your layer active. Click :menuselection:" -"`File > Save`. Choose your location in your computer and give a name to your " -"file. You also can save your file by click this button:" -msgstr "" -"1. Untuk menyimpan file OSM, pastikan bahwa itu adalah layer aktif. Klik :" -"menuselection:`File > Simpan`. Pilih lokasi di komputer Anda untuk menyimpan " -"file dan berilah nama. Anda juga dapat menyimpan dengan mengklik tombol ini:" - -# fb5fbcd29c41430dbc48e11803fcc9a8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:593 -msgid "" -"You can close your JOSM and your works has been saved. When you want to open " -"your file, open JOSM and go to :menuselection:`File > Open`." -msgstr "" -"Anda sekarang dapat menutup JOSM dan data Anda akan tersimpan. Ketika Anda " -"ingin membuka file itu kembali, buka JOSM, kemudian pergilah ke menu :" -"menuselection:`File > Buka`." - -# dbd9662dfcad4ff18f8db6195724fc74 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:596 -msgid "5.3.6 See Your Changes on The Map" -msgstr "5.3.6 Melihat Perubahan Anda di Peta" - -# 54ad2ba9382f4cd0ac48ee713f3e84c8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:598 -msgid "To see your edits on the map, take the following steps:" -msgstr "" -"Untuk melihat perubahan Anda di peta, perhatikan langkah-langkah berikut:" - -# fff6a3256f034ce5962d891a15b56007 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:600 -msgid "" -"Open your internet browser and go to `openstreetmap.org `_" -msgstr "" -"Buka browser internet Anda dan pergilah ke `openstreetmap.org `_ " - -# 90146fdb1fe147f8a9264981f0477548 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:602 -msgid "Move the map to the area that you edited." -msgstr "Geser peta ke area yang telah Anda edit." - -# 6e3fe1c409184746bea275dceced631b -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:604 -msgid "" -"You should see your changes now appearing on the map! If you don’t, try " -"pressing :kbd:`CTRL+R` to refresh the web page. Sometimes the map doesn’t " -"update properly and needs to be reloaded." -msgstr "" -"Anda seharusnya dapat melihat perubahan Anda yang akan muncul di peta! Jika " -"tidak, coba me- nekan :kbd:`CTRL+R` untuk merefresh halaman situs. Biasanya " -"peta tidak memperbarui dengan sempurna dan perlu dimuat ulang" - -# d6f52d87ec4b4629bf4808be552ce6d6 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:606 -msgid "" -"What if you don’t see your changes? Don’t worry, it may take a few minutes " -"for the changes to be shown on the map. Also, check your additions in JOSM " -"to make sure that you added them correctly. A good general rule is, if your " -"point has an icon in JOSM, then it should be seen on the main map at the " -"OpenStreetMap website." -msgstr "" -"Bagaimana jika Anda tidak melihat perubahan? Jangan khawatir - mungkin " -"diperlukan beberapa menit untuk perubahan yang akan ditampilkan pada peta. " -"Kemudian, periksa penambahan Anda di JOSM untuk memastikan bahwa yang Anda " -"tambahkan benar. Aturan umum yang baik adalah jika titik Anda memiliki ikon " -"di JOSM, kemudian hal ini seharusnya terlihat di peta utama pada situs " -"OpenStreetMap." - -# abfd6de54286412ca46f59719299b49f -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:610 -msgid "5.4 JOSM Data Quality Assurance" -msgstr "5.4 Penjaminan Kualitas Data di JOSM" - -# e40b70ecc0b64ef7921df6a33a63e2e1 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:612 -msgid "" -"Contributing to OpenStreetMap is easy to learn, but difficult to master. " -"Everybody makes mistakes, but the system works because even when one person " -"does something the “wrong” way, there are always other mappers ready to help " -"and fix errors. As you map more and more, the process will continue to get " -"easier, and you will learn the “proper” way to do things. This chapter is " -"devoted to helping you make quality contributions to OpenStreetMap. We will " -"begin by discussing various editing techniques in JOSM that will improve " -"your workflow, and how to avoid common mistakes that beginning mappers make. " -"Lastly, we will then discuss the JOSM validator tool, which is an automated " -"way of checking for errors." -msgstr "" -"Berkontribusi di Openstreetmap merupakan hal yang mudah untuk dipelajari, " -"namun sulit untuk dikuasai. Setiap orang dapat melakukan kesalahan, akan " -"tetapi selalu ada orang lain yang siap membantu untuk menyelesaikan " -"kesalahan tersebut. Seiring Anda melakukan pemetaan secara terus menerus, " -"hal tersebut akan menjadi lebih mudah dan Anda akan mengerti cara yang " -"tepat untuk melakukan pemetaan. Bab ini ditujukan untuk membantu Anda " -"memberikan kontribusi yang lebih baik. Kita akan memulai dari mendiskusikan " -"berbagai macam teknik mengedit di JOSM yang akan membuat Anda bekerja lebih " -"baik dan mengerti kesalahan umum yang sering dibuat pada awal pemetaan. " -"Kita akan mendiskusikan alat validasi JOSM dimana merupakan cara otomatis " -"untuk mengecek kesalahan." - -# 204fbe3bfa2b4bed8f3a7ac13f3adf8a -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:620 -msgid "5.4.1 Warnings and Errors in JOSM" -msgstr "5.4.1 Peringatan dan Kesalahan di JOSM" - -# 92b381f04c314defaae16ba0687963a8 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:622 -msgid "" -"There is a stage when you upload your work to OpenStreetMap when you get a " -"window notification as in the figure below:" -msgstr "" -"Ada kalanya ketika Anda ingin upload hasil kerja Anda ke OpenStreetMap, " -"ketika Anda mendapatkan sebuah jendela pemberitahuan seperti dibawah ini:" - -# d3e8dbc434584f80b0f3ae5bb777dcfe -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:627 -msgid "" -"This is the way JOSM tells us that something is wrong with our data and it " -"needs to be fixed before we upload it to the server." -msgstr "" -"Ini adalah cara JOSM memberitahu kita bahwa data tersebut ada yang salah dan " -"harus diperbaiki sebelum mengupload ke server OSM." - -# 9409d590b1a44879a983fea23675b54e -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:629 -msgid "" -"JOSM comes with a :guilabel:`validation` tool that does an automated " -"analysis of possible mistakes. This is useful for finding errors that you " -"may have overlooked. When you run the validation tool, it returns two types " -"of problems:" -msgstr "" -"JOSM hadir dengan alat :guilabel:`validasi` yang berfungsi untuk " -"menganalisis secara otomatis kesalahan yang ada. Hal ini sangat membantu " -"untuk menemukan kesalahan yang tidak terlihat oleh Anda. Ketika Anda " -"menjalankan alat validasi ini, alat ini akan menghasilkan dua jenis masalah:" - -# 1c22dbb316fe4924b42cbcebb53d9aed -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:631 -msgid "" -"**Errors**: These are important to fix, and you should not ignore these. " -"Examples of errors include duplicated objects or overlapping lines and " -"polygons." -msgstr "" -"**Kesalahan**: Hal ini penting untuk diperbaiki, dan Anda seharusnya tidak " -"mengabaikannya. Sebagai contoh dari kesalahan ini adalah objek yang " -"terduplikasi atau garis dan poligon yang saling bertumpang tindih." - -# 6e33c2c560b34e2b803e4eb269345d9c -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:633 -msgid "" -"**Warning:** These are problems that are important to fix, but in some " -"cases, they are tolerable." -msgstr "" -"**Peringatan**: Kesalahan yang penting untuk diperbaiki, namun pada beberapa " -"kasus hal tersebut bisa ditoleransi." - -# a4e6719d20ea4295bcdcb9c07bc5991d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:635 -msgid "" -"One thing to note is that if you download a large area of the map and run " -"the validation tool, you may get a very long list of errors and warnings. " -"This is because the validation tool works on the whole map in your editing " -"extents, --not only the changes that you have made. So you may see mistakes " -"that other mappers have made which you are free to fix or ignore. But the " -"validation tool gives you the opportunity to look at the mistakes one by one " -"and evaluate them." -msgstr "" -"Satu hal yang perlu diperhatikan jika Anda mendownload area yang besar dan " -"menjalankan alat validasi, Anda mungkin akan mendapatkan daftar kesalahan " -"dan peringatan yang sangat panjang. Hal ini dikarenakan alat validasi ini " -"bekerja pada seluruh peta, tidak hanya perubahan yang telah Anda buat. " -"Sehingga Anda mungkin akan melihat kesalahan yang dibuat oleh orang lain " -"dan Anda bisa memperbaikinya atau menghiraukannya. Akan tetapi alat " -"validasi memberikan Anda kesempatan untuk melihat kesalahan satu persatu." - -# c0651555ba344c12b0c1738e7e9cc4be -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:641 -msgid "5.4.2 Validation Tool" -msgstr "5.4.2 Menggunakan Alat Validasi" - -# 6a9778eab96a4623baf77ba5154a6a99 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:643 -msgid "Let’s learn how to use validation tool." -msgstr "Mari kita lihat bagaimana cara menggunakan alat validasi" - -# 111333f713604532ad4910f0a3ac4a89 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:645 -msgid "" -"Download some area in JOSM. If you do not see :guilabel:`Validation Result` " -"at **right side panel** in your window, tick on the **blue checklist** icon " -"from the left panel in your JOSM window as circled in the figure below." -msgstr "" -"Pada JOSM, download satu daerah pada peta. Jika Anda tidak melihat :guilabel:" -"`Hasil Validasi` pada jendela di **panel bagian kanan**, klik pada ikon " -"**tanda centang berwarna biru** pada bagian kiri di jendela JOSM Anda " -"seperti gambar dibawah ini." - -# 1bf9268836414897937cff38d633f009 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:650 -msgid "*Validation Result Button*" -msgstr "*Posisi tombol Validasi*" - -# 71eb1d21b175436e91ffe7a10ba4cf53 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:652 -msgid "" -"**Ensure that nothing on the map is selected**. If you run the validation " -"tool with anything selected, it will only validate what you have selected, " -"and not the whole map. However your mouse in the validation window and " -"click :guilabel:`Validation`" -msgstr "" -"Pastikan bahwa tidak ada bagian pada peta yang dipilih. Jika Anda " -"menjalankan alat validasi dengan sesuatu yang dipilih, hal tersebut hanya " -"akan memvalidasi daerah yang Anda pilih, dan tidak seluruh peta. Arahkan " -"mouse Anda pada jendela validasi dan klik :guilabel:`Validasi`" - -# 3ec215b79e0c4048b63c8cd056d7eae2 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:657 -msgid "" -"The map will change and any warnings will be circled in yellow, errors in " -"red. In the :guilabel:`Validation Results` window, as shown in the figure " -"below, you will see a list of warnings and errors, if there are any." -msgstr "" -"Peta tersebut akan berubah dan segala macam Peringatan akan terlihat " -"berwarna kuning dan un- tuk kesalahan berwarna merah. Pada jendela :guilabel:" -"`Hasil Validasi` Anda akan melihat daftar peringatan dan kesalahan, jika " -"ada." - -# 7f057c583e5943b8b2f2be24dfdceb99 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:662 -msgid "*Validation Layer and Validation Result*" -msgstr "*Layer Validasi dan Hasil Validasi*" - -# 6d0c1d61ce5b4092aecabeaa358d490a -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:664 -msgid "" -"**Error** should almost always be fixed. You can zoom to an error, by right " -"clicking on it in the window and selecting :guilabel:`Zoom to Problem`. Then " -"you can fix the mistake manually." -msgstr "" -"**Kesalahan** harus seluruhnya diperbaiki. Anda dapat memperbesar di daerah " -"yang terdapat kesalahan dengan cara klik kanan pada kesalahan di jendela " -"tersebut dan kemudian pilihlah :guilabel:`Zoom to Problem`. Setelah itu Anda " -"bisa memperbaiki kesalahan tersebut secara manual." - -# e32534e352894e4083b62e24658ccb88 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:666 -msgid "" -"5. **Some errors can be automatically fixed**, such as **Duplicated node** " -"errors. You can click on the folder for these types of errors and click the :" -"guilabel:`Fix` button in the window. Many errors, however, need to be " -"corrected manually." -msgstr "" -"5. **Beberapa kesalahan dapat diperbaiki secara otomatis**, seperti " -"kesalahan **Titik yang terduplikasi**. Anda dapat melihat pada folder untuk " -"beberapa tipe kesalahan dan memilih tombol :guilabel:`Perbaiki` pada jendela " -"tersebut. Beberapa kesalahan membutuhkan untuk diperiksa secara manual." - -# 34899aa53d394482bef2a7da8ac48bd7 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:672 -msgid "" -"Usually there are many more warnings than errors. By giving you a warning, " -"JOSM is telling you that it is probably a mistake, but not always. So you " -"will need to use your judgement to see if it is an error or not." -msgstr "" -"Biasanya terdapat lebih banyak Peringatan daripada Kesalahan. Dengan " -"memberikan peringatan, JOSM memberitahukan Anda bahwa hal tersebut " -"kemungkinan kesalahan, tapi tidak selalu. Sehingga Anda akan menggunakan " -"keputusan anda untuk melihat apakah hal tersebut merupakan benar kesalahan " -"atau tidak." - -# 7ea7c219216d462b8f14a4b67d59c13d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:674 -msgid "" -"If you select a warning from the list and decide that it is not a problem, " -"click :guilabel:`Ignore` and it will be removed from the list." -msgstr "" -"Jika Anda memilih salah satu warning dari daftar dan memutuskan bahwa hal " -"tersebut bukanlah masalah, klik :guilabel:`abaikan` dan warning tersebut " -"akan di hapus dari daftar." - -# 1c6de1ee95204bcabee22b99dfb95fa4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:676 -msgid "" -"You can re-run the validation tool at any time by clicking :guilabel:" -"`Validation`." -msgstr "" -"Anda dapat menjalankan ulang alat validasi sewaktu-waktu dengan mengklik :" -"guilabel:`Validasi`." - -# e13a75ff2f8b4cc68c8f932e6012714d -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:679 -msgid "Summary" -msgstr "Ringkasan" - -# d4897bfa82b445508af43f12c8834ea5 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:681 -msgid "" -"Awesome! You have successfully learned how to edit OpenStreetMap in JOSM and " -"how to maximize some tools in JOSM to help us in editing our map. You also " -"know about mistakes and errors that should be avoided when editing in JOSM." -msgstr "" -"Luar Biasa! Anda telah berhasil mempelajari bagaimana tahapan-tahapan yang " -"tepat dalam mengedit peta OpenStreetMap di JOSM dan juga bagaimana kita bisa " -"memaksimalkan beberapa alat yang ada di JOSM untuk membantu kita dalam " -"melakukan editing peta kita. Anda juga mengetahui beberapa kesalahan-" -"kesalahan yang harus kita hindari ketika melakukan editing di JOSM." - -# 0ff2a045adc54bc5b0fd9124407ac5e4 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:684 -msgid "" -"In next chapter, we will learn how to use **Global Positioning System** " -"(GPS) to collect data when doing a field survey and how to add it to " -"OpenStreetMap." -msgstr "" -"Pada sesi selanjutnya kita akan belajar bagaimana menggunakan **Global " -"Positioning System** (GPS) untuk mengumpulkan data di lapangan ketika " -"melakukan survey lapangan dan bagaimana menambahkannya ke dalam OpenStreetMap" - -# b2cfaf78e5004ceb9a1d7c7057136037 -#: ../../source/training/osm/Chapter-05-editing-with-josm.rst:686 -msgid ":ref:`Go to next chapter --> `" -msgstr ":ref:`bab selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-06-using-gps.po b/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-06-using-gps.po deleted file mode 100644 index 543b9552..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-06-using-gps.po +++ /dev/null @@ -1,858 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Wulansari Khairunisa , 2016\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 98f2cfd852394b52ad5a0ce6eede45a0 -#: ../../source/training/osm/Chapter-06-using-gps.rst:6 -msgid "Chapter 6: Using GPS" -msgstr "Bab 6: Penggunaan GPS" - -# fd4b485bf5294b44a561f776ffa00ebd -#: ../../source/training/osm/Chapter-06-using-gps.rst:8 -msgid "**Learning objectives:**" -msgstr "**Tujuan Pembelajaran:**" - -# bfca61cebf9c43c3b095670d36b2e5dd -#: ../../source/training/osm/Chapter-06-using-gps.rst:10 -msgid "Understand GPS and the types of GPS" -msgstr "Memahami GPS dan tipe-tipe GPS" - -# cd467f9f07244d01903a40af7d51b0d9 -#: ../../source/training/osm/Chapter-06-using-gps.rst:11 -msgid "Turn on a GPS unit" -msgstr "Menyalakan perangkat GPS" - -# 632c9642834e497d8d7f002b70eb7ffb -#: ../../source/training/osm/Chapter-06-using-gps.rst:12 -msgid "Adjust GPS settings" -msgstr "Mengatur pengaturan GPS" - -# 928ed40ac12148cda89aac6855acf686 -#: ../../source/training/osm/Chapter-06-using-gps.rst:13 -msgid "Understand factors that affect GPS accuracy" -msgstr "Memahami faktor-faktor yang mempengaruhi akurasi GPS" - -# 73336677f58d4fdfa212b7f211a05c19 -#: ../../source/training/osm/Chapter-06-using-gps.rst:14 -msgid "Understand tracks and waypoints" -msgstr "Memahami *track* dan *waypoint*" - -# b51c3e2bf17b4455a9b48a49d203ec04 -#: ../../source/training/osm/Chapter-06-using-gps.rst:15 -msgid "Collect data using GPS" -msgstr "Mengumpulkan data menggunakan GPS" - -# 7e382349466647e294f23d607ae1fac9 -#: ../../source/training/osm/Chapter-06-using-gps.rst:16 -msgid "Copy GPS data (tracks and waypoints) to computer" -msgstr "*Copy* data GPS (*tracks* dan *waypoints*) ke dalam komputer" - -# 4dda42eb72e9442588795c113026350f -#: ../../source/training/osm/Chapter-06-using-gps.rst:17 -msgid "Open waypoints and tracks in JOSM" -msgstr "Buka *waypoints* dan *tracks* pada JOSM" - -# 19da7f27a55048348950a1a22be392e0 -#: ../../source/training/osm/Chapter-06-using-gps.rst:19 -msgid "" -"In this chapter we discuss one of the most important parts of mapping: how " -"to add actual information from field to map. We will learn several methods " -"to do field survey in this module. We will see what GPS is and how GPS work. " -"You will learn how to operate GPS and how to use the results for making a " -"map." -msgstr "" -"Pada Bab ini kita mendiskusikan salah satu dari bagian terpenting dalam " -"pemetaan: bagaimana menambahkan informasi aktual dari lapangan ke peta. Kita " -"akan mempelajari beberapa metode untuk melakukan survei lapangan pada modul " -"ini. Kita akan mengetahui apa itu GPS dan bagaimana GPS bekerja. Anda akan " -"belajar bagaimana mengoperasikan GPS dan menggunakan hasilnya untuk membuat " -"sebuah peta." - -# 0001776e69374deaae8568c53e026ef7 -#: ../../source/training/osm/Chapter-06-using-gps.rst:25 -msgid "" -"Here we will explain how to operate Garmin eTrex Vista HCx, a GPS that is " -"commonly use for mapping activities. There are so many other GPS model that " -"can use the same operation so if you use different model, don’t worry – in " -"principle it is still the same." -msgstr "" -"Di sini kami akan menjelaskan bagaimana mengoperasikan Garmin eTrex Vista " -"HCx, sebuah perangkat GPS yang umum digunakan untuk kegiatan pemetaan. " -"Terdapat banyak model GPS lain yang dapat melakukan hal yang sama, jadi jika " -"Anda mengerjakannya dengan perangkat GPS yang berbeda, jangan khawatir – " -"pada prinsipnya tetap sama." - -# 7cabad609dbe43649e71b5b721c11b92 -#: ../../source/training/osm/Chapter-06-using-gps.rst:31 -msgid "6.1 What is GPS?" -msgstr "6.1 Apa itu GPS?" - -# 224b8b561719443aa96b8a85ac42a992 -#: ../../source/training/osm/Chapter-06-using-gps.rst:33 -msgid "" -"A GPS is like a mobile phone, except that instead of receiving radio signals " -"from telephone companies, it receives signals from satellites that are going " -"around the Earth. By receiving these signals from the satellites, a GPS is " -"able to calculate its exact location on the planet. It records this location " -"in coordinates, which are two long numbers. One number tells you how far " -"east or west you are - this is called **longitude**. The second number tells " -"you how far north or south you are - this is called **latitude**. Every " -"place on Earth has unique geographic coordinates." -msgstr "" -"Sebuah GPS bekerja seperti ponsel, namun jika ponsel menerima sinyal radio " -"dari perusahaan telepon, GPS menerima sinyal dari satelit yang mengelilingi " -"bumi. Dengan menerima sinyal tersebut dari satelit, sebuah GPS dapat " -"memperhitungkan dengan tepat posisi Anda di permukaan bumi. GPS merekam " -"lokasi ini dalam bentuk koordinat, dimana terdapat dua buah nomor yang " -"panjang. Satu nomor menunjukan sejauh mana posisi Anda dari Timur atau Barat " -"- biasa disebut **garis bujur**. Nomor yang kedua menunjukan sejauh mana " -"posisi Anda dari Utara atau Selatan - biasa disebut **garis lintang**. " -"Setiap tempat di bumi memliki koordinat geografis yang unik." - -# a41b6c68558642d38849068862c140f2 -#: ../../source/training/osm/Chapter-06-using-gps.rst:50 -msgid "6.2 Turning on the GPS" -msgstr "6.2 Menyalakan perangkat GPS" - -# 67a930980e6b4eceb38d7aa4720575e2 -#: ../../source/training/osm/Chapter-06-using-gps.rst:53 -msgid "" -"Before turning on your GPS, go outside where you have a clear view of the " -"sky." -msgstr "" -"Sebelum menyalakan GPS Anda, pergilah keluar ruangan dimana kondisinya " -"terbuka dan tidak banyak tutupan lahan seperti pohon besar, gedung atau " -"bangunan lainnya." - -# 79bdfdaf0cdb4db0a694cca505e70416 -#: ../../source/training/osm/Chapter-06-using-gps.rst:53 -msgid "" -"Because the GPS determines your location by receiving signals from " -"satellites, **it will not work indoors**." -msgstr "" -"Karena GPS menentukan lokasi Anda dengan menerima sinyal dari satelit, **GPS " -"tidak akan bekerja di dalam ruangan**." - -# b216f521234e40089014b0cdcb3d93ad -#: ../../source/training/osm/Chapter-06-using-gps.rst:58 -msgid "" -"On the right side of the GPS, press and hold the :guilabel:`Power` button." -msgstr "Pada sisi kanan dari GPS, tekan dan tahan tombol :guilabel:`Power`." - -# 5561d178cabd4ecba9b347768939f9dd -#: ../../source/training/osm/Chapter-06-using-gps.rst:56 -msgid "" -"The GPS will start, and it will show you the Satellites page. You should see " -"something like the image below, where the GPS is seeking satellite signals. " -"When it has connected to three or more satellites, it can determine your " -"location." -msgstr "" -"Perangkat GPS akan menyala, dan akan menunjukkan halaman Satelit. Anda " -"seharusnya dapat melihat tampilan seperti pada gambar di bawah ini, dimana " -"GPS sedang mencari sinyal satelit. Ketika sudah terhubung dengan tiga " -"satelit atau lebih, GPS akan menentukan lokasi Anda." - -# 19ce5d548f554968ad4fca4436b87ef0 -#: ../../source/training/osm/Chapter-06-using-gps.rst:65 -msgid "" -"Once your location is determined, the Satellites page will disappear and" -msgstr "" -"Setelah lokasi Anda telah ditentukan, halaman Satelit akan menghilang dan" - -# 62c428f9fd344f5d9e4d1946264f2a74 -#: ../../source/training/osm/Chapter-06-using-gps.rst:65 -msgid "you will see the Main Menu." -msgstr "Anda akan melihat Menu Utama." - -# 00b13c8f639b4fd29f219788825493a3 -#: ../../source/training/osm/Chapter-06-using-gps.rst:72 -msgid "6.3 Navigating the GPS" -msgstr "6.3 Menavigasikan GPS" - -# 1258b8402a644f75aee0dd76245cdf32 -#: ../../source/training/osm/Chapter-06-using-gps.rst:74 -msgid "" -"The GPS has different pages and menus that allow you to do different things." -msgstr "" -"Perangkat GPS memiliki halaman dan menu-menu yang berbeda yang memungkinkan " -"Anda untuk melakukan hal-hal yang berbeda." - -# 14e247b31b034edf8d078870de88e5e7 -#: ../../source/training/osm/Chapter-06-using-gps.rst:80 -msgid "To switch between pages, press the button marked :kbd:`X`, just above" -msgstr "" -"Untuk beralih antar halaman, tekan tombol yang ditandai :kbd:`X`, tepat di " -"atas." - -# 6b68aaa699d04d08b4f5fac7b6005e74 -#: ../../source/training/osm/Chapter-06-using-gps.rst:78 -msgid "" -"the power button on the right side of the device. This button also serves to " -"go back. If you press something by mistake and would like to cancel or go " -"back, press the :kbd:`X` button." -msgstr "" -"tombol Power pada sisi kanan perangkat. Tombol ini juga berfungsi untuk " -"kembali. Jika Anda menekan sesuatu karena kesalahan dan Anda ingin " -"membatalkan atau kembali ke menu sebelumnya, tekan tombol :kbd:`X`." - -# 870ffeb552bf454b9b9a3031610f750c -#: ../../source/training/osm/Chapter-06-using-gps.rst:83 -msgid "" -"By pressing the :kbd:`X` button, you should be able to flip through different" -msgstr "" -"Dengan menekan tombol :kbd:`X`, Anda seharusnya dapat membolak-balik tampilan" - -# 5c82e3ae634c497f8f5fd983ef2fcf33 -#: ../../source/training/osm/Chapter-06-using-gps.rst:83 -msgid "screens that will look something like this:" -msgstr "layar yang berbeda seperti ini:" - -# c170ba123e714ad6a097e3f675f0908a -#: ../../source/training/osm/Chapter-06-using-gps.rst:90 -msgid "" -"If you return to Satellites page, you will see that you are connected to" -msgstr "" -"Jika Anda kembali ke halaman Satelit, Anda akan melihat bahwa Anda terhubung " -"ke" - -# 65f3ef6376384e0db49e7aa1539e7c83 -#: ../../source/training/osm/Chapter-06-using-gps.rst:89 -msgid "" -"three or more satellites. In the upper left corner are your coordinates, " -"your latitude and longitude." -msgstr "" -"tiga satelit atau lebih. Pada pojok kiri atas merupakan koordinat Anda, " -"lintang dan bujur." - -# 0b62d60deb74438bbd33e481f7485aa7 -#: ../../source/training/osm/Chapter-06-using-gps.rst:95 -msgid "Go to the Map page, and you can see a map of your current location. If" -msgstr "" -"Pergi ke halaman peta, dan Anda dapat melihat peta dari lokasi Anda saat " -"ini. " - -# 6221188535bd46e4ae9b2232140e1ab4 -#: ../../source/training/osm/Chapter-06-using-gps.rst:93 -msgid "" -"you have added OpenStreetMap maps to your GPS, you may see roads and points-" -"of-interest. Otherwise, the map may look quite blank. Zoom in and out by " -"pressing the up and down arrow buttons on the left side of the GPS." -msgstr "" -"Jika Anda telah menambahkan peta OSM pada GPS Anda, Anda mungkin melihat " -"jaringan jalan dan beberapa titik tempat. Selain itu, peta mungkin akan " -"terlihat kosong. Perbesar dan perkecil dengan menekan tombol atas dan bawah " -"pada sisi kiri GPS." - -# 42d5ed318bf24016b0541a25a2dc7e35 -#: ../../source/training/osm/Chapter-06-using-gps.rst:98 -msgid "6.4 Tracks and waypoints" -msgstr "6.4 *Track* dan *waypoints*" - -# d95accef91964a91b8c4f060258f7fe6 -#: ../../source/training/osm/Chapter-06-using-gps.rst:100 -msgid "" -"A GPS records two kinds of information that are useful for creating maps or " -"saving the coordinates of a place. First, it allows you to save your " -"location in the memory of the GPS. When you save a location, the coordinates " -"will be saved with a name. For example, by default your first saved point " -"will be named 001, the second 002, and so on." -msgstr "" -"Sebuah GPS merekam dua jenis informasi yang berguna untuk membuat peta atau " -"menyimpan koordinat dari sebuah tempat. Pertama, GPS dapat menyimpan lokasi " -"Anda pada memori GPS. Ketika Anda menyimpan satu lokasi, koordinat akan " -"disimpan dengan sebuah nama. Sebagai contoh, secara standar titik pertama " -"yang tersimpan oleh Anda akan diberi nama 001, kedua 002, dan seterusnya." - -# 7bf2eef9e39b4b23a49e73a4cc98ac83 -#: ../../source/training/osm/Chapter-06-using-gps.rst:106 -msgid "" -"When you save a point, you can write down the number on a piece of paper, " -"along with a note about what it is, and any attributes or indicators you " -"would like to collect. Saved locations on your GPS are called waypoints." -msgstr "" -"Ketika Anda menyimpan sebuah titik, Anda dapat menulis nomor tersebut pada " -"selembar kertas, dengan sebuah catatan tentang titik apakah itu, atribut " -"atau indikator apapun yang Anda ingin ketahui. Titik lokasi yang tersimpan " -"ke dalam GPS Anda disebut **waypoint**." - -# 2e468f014eda42d6ba6c2a7f379f1a96 -#: ../../source/training/osm/Chapter-06-using-gps.rst:111 -msgid "" -"Second, a GPS can save what are called tracks. While a waypoint only saves a " -"single location, a track will save a series of locations wherever you move. " -"For example, a track will record your location every one second, or every " -"one metre, and the result will be a series of dots that show the path of " -"where you have been. Tracks are useful for mapping objects that are " -"represented by lines or shapes, such as the course of a road or the shape of " -"a field." -msgstr "" -"Kedua, sebuah GPS dapat menyimpan apa yang disebut dengan *“track”*. Jika " -"*waypoint* hanya menyimpan sebuah lokasi, maka sebuah *track* akan menyimpan " -"sebuah seri lokasi kemanapun Anda bergerak. Sebagai contoh, *track* akan " -"merekam lokasi Anda setiap satu detik, atau setiap satu meter, dan hasilnya " -"akan berupa sebuah seri dari titik-titik yang menunjukan jalur lokasi dimana " -"Anda pernah berada. *Track* sangat berguna untuk memetakan objek yang " -"ditunjukan oleh garis atau bentuk, seperti sebuah jalan, atau bentuk dari " -"sebuah lapangan." - -# a12a9b6fcca442e4a9624ea52cd79539 -#: ../../source/training/osm/Chapter-06-using-gps.rst:122 -msgid "" -"If your GPS not started from 001 and you want to erase the previous point, " -"go to icon “Find” in the main menu. Press on “waypoint” and then submenu in " -"the right side to show Waypoint submenu. Drag to bottom and press “Delete” " -"and “all symbols” and then “Yes”." -msgstr "" -"Jika nomor *waypoint* pada GPS Anda tidak dimulai dari 001 dna Anda ingin " -"menghapus titik sebelumnya, pergi ke ikon \"Find\" pada Menu Utama. Tekan " -"pada \"waypoint\" kemudian submenu pada sisi kanan untuk menampilkan submenu " -"Waypoint. Geser ke bawah dan tekan \"Delete\" dan \"all symbols\" kemudian " -"\"Yes\"." - -# 4d5b5703aa1b4d149321c46f3bcb5c67 -#: ../../source/training/osm/Chapter-06-using-gps.rst:128 -msgid "6.5 Saving your location" -msgstr "6.5 Menyimpan lokasi Anda" - -# c75eeb1702544b14b0c180baf2a8130c -#: ../../source/training/osm/Chapter-06-using-gps.rst:130 -msgid "To save your current location as a waypoint:" -msgstr "Menyimpan lokasi Anda saat ini sebagai sebuah *waypoint*:" - -# 9d040d86dd7b45b6bc81bfc1e3a03794 -#: ../../source/training/osm/Chapter-06-using-gps.rst:134 -msgid "click the :kbd:`X` button until your reach the Main Menu." -msgstr "Klik tombol :kbd:`X` hingga Anda sampai ke Menu Utama." - -# a7ddcb30594649ee9442af4ebff26c7f -#: ../../source/training/osm/Chapter-06-using-gps.rst:133 -msgid "" -"Using the joystick, move it so that :guilabel:`Mark` is highlighted on the " -"screen. Push the joystick button down to open the **Save Waypoint** page." -msgstr "" -"Gunakan joystick, pindahkan hingga menu :guilabel:`Mark` disorot di pada " -"layar. Tekan joystick ke bawah untuk membuka halaman **Save Waypoint**." - -# 1c8c3b82157b4dcba69dca20ac7916e3 -#: ../../source/training/osm/Chapter-06-using-gps.rst:139 -msgid "" -"You can see on this page some information about the waypoint that you are " -"saving. First is the name. If this is your first waypoint, it probably reads " -"“001”. This is the number you should record on paper along with the " -"information you want to collect about this object, e.g. name, address, " -"phone, etc. Next you will see the time and date when the point is recorded. " -"Below that are the coordinates, followed by the altitude." -msgstr "" -"Pada halaman ini Anda dapat melihat beberapa informasi tentang *waypoint* " -"yang Anda simpan. Pertama adalah namanya. Jika ini *waypoint* pertama Anda, " -"kemungkinan akan terbaca “001”. Ini merupakan nomor yang harus Anda catat di " -"kertas bersamaan dengan informasi yang Anda ingin kumpulkan pada obyek ini, " -"sebagai contoh: nama, alamat, telepon, dst. Selanjutnya Anda akan melihat " -"jam dan tanggal ketika titik tersebut direkam. Di bawahnya terdapat " -"koordinat, diikuti dengan ketinggian." - -# 53a6055db99e4781b40bf207632120f3 -#: ../../source/training/osm/Chapter-06-using-gps.rst:150 -msgid "" -"Use the joystick to move to the :guilabel:`OK` button at the bottom of the " -"screen." -msgstr "" -"Gunakan joystick untuk berpindah ke tombol :guilabel:`OK` di bagian bawah " -"dari layar." - -# f857bf67d8de4665a56890a81bffbef0 -#: ../../source/training/osm/Chapter-06-using-gps.rst:148 -msgid "" -"Press the joystick button down to save this point. Be sure to write down in " -"your notebook the number of the point, along with a description of the place " -"and any other information you want to record about the place." -msgstr "" -"Tekan joystick untuk menyimpan untuk menyimpan titik ini. Pastikan untuk " -"menulis nomor titik pada kerta catatan Anda, beserta keterangan tempat " -"apakah itu dan berbagai informasi lainnya yang Anda ingin kumpulkan mengenai " -"tempat tersebut." - -# 1eda744c2dd14771bb098c672c98c1e6 -#: ../../source/training/osm/Chapter-06-using-gps.rst:157 -msgid "" -"Press the :kbd:`X` button to go to the Map page. You should now see your " -"point" -msgstr "" -"Tekan tombol :kbd:`X` untuk menuju halaman peta. Sekarang Anda seharusnya " -"melihat titik Anda" - -# 342f867ec8e34aa4b3d91051d77cc874 -#: ../../source/training/osm/Chapter-06-using-gps.rst:157 -msgid "on the map." -msgstr "pada peta." - -# cc7d41c25d504f209d68d330e1368101 -#: ../../source/training/osm/Chapter-06-using-gps.rst:160 -msgid "6.6 Turning on the Track Log" -msgstr "6.6 Menyalakan *Track Log*" - -# c1482a4ec54d481c94cae11a938d67fa -#: ../../source/training/osm/Chapter-06-using-gps.rst:162 -msgid "" -"Now that we have learned how to save points, let’s learn how to turn the " -"track log on and off. When the track log is turned on, it will automatically " -"record your path. It’s good practice to turn on the log when you begin " -"mapping, and turn it off when you are finished. You will then be able to " -"look at the track on a computer and see the path that you mapped. If you " -"would like to map the course of a road, it is a good idea to save a waypoint " -"at the beginning and end of the road, writing in your notebook the name and " -"type of the road, and any other important information about the road." -msgstr "" -"Sekarang kita telah mempelajari bagaimana caranya untuk menyimpan titik, " -"sekarang mari mempelajari bagaimana untuk menyalakan/mematikan *track log*. " -"Ketika *track log* dinyalakan, secara otomatis GPS akan merekam jalur Anda. " -"Pada saat mulai memetakan, sebaiknya *track log* dinyalakan, dan dimatikan " -"pada saat Anda telah selesai. Anda akan dapat melihat trek pada sebuah " -"komputer dan melihat jalur yang telah Anda petakan. Jika Anda ingin " -"memetakan jalur pada jalan raya, adalah ide yang bagus untuk menyimpan " -"sebuah *waypoint* pada awal dan akhir jalan, menuliskan nama dan tipe jalan, " -"serta informasi penting lainnya tentang jalan tersebut pada buku catatan." - -# cbea4078d3384c0080ce994441bed56c -#: ../../source/training/osm/Chapter-06-using-gps.rst:173 -msgid "" -"To turn track log, click the :kbd:`X` button until your reach the page that" -msgstr "" -"Untuk menyalakan *track log*, klik pada tombol :kbd:`X` hingga Anda mencapai " -"halaman" - -# ed78694cd6d743eb83d66bd607cf867e -#: ../../source/training/osm/Chapter-06-using-gps.rst:173 -msgid "says Track Log." -msgstr "yang bernama *Track Log*." - -# ccc7c8eb06324ff2a5ebad456beb9e38 -#: ../../source/training/osm/Chapter-06-using-gps.rst:180 -msgid "If you want To empty the track log (to delete earlier recordings), use" -msgstr "" -"Jika Anda ingin mengosongkan *track log* (menghapus rekaman sebelumnya), " -"gunakan" - -# c3e74cc5695443458a49a9c9b049f72d -#: ../../source/training/osm/Chapter-06-using-gps.rst:179 -msgid "" -"the joystick to select :guilabel:`Clear`, and press the joystick down. The " -"bar at the top should read “0%”" -msgstr "" -"joystick untuk memilih :guilabel:`Clear`, dan tekan joystick tersebut. Pada " -"bar di bagian atas akan terbaca \"0 %\"" - -# ea1eac2f24964fbea6708934b80f860c -#: ../../source/training/osm/Chapter-06-using-gps.rst:183 -msgid "" -"To turn on the log, move the joystick to highlight :guilabel:`On`, and press " -"the joystick down." -msgstr "" -"Untuk menyalakan *track log*, gerakan joystick untuk menyorot :guilabel:" -"`On`, kemudian tekan joystick." - -# 3c14a5e203b04a838cfb7745cb7e5331 -#: ../../source/training/osm/Chapter-06-using-gps.rst:183 -msgid "The track log is now recording your path." -msgstr "*Track log* sekarang akan merekam jalur Anda." - -# 767ab4e8b65642608e9a8f57b48f5c36 -#: ../../source/training/osm/Chapter-06-using-gps.rst:186 -msgid "" -"Press the :kbd:`X` button to go to the Map page. As you move you will see " -"your" -msgstr "" -"Tekan tombol :kbd:`X` untuk menuju halaman peta. Saat Anda bergerak Anda " -"akan melihat" - -# ef1171a8d1ff44c7bdee00ef447933de -#: ../../source/training/osm/Chapter-06-using-gps.rst:186 -msgid "track shown as a series of dots." -msgstr "*track* yang terlihat sebagai rangkaian dari titik-titik." - -# af2dac0e4765453597d1d5fd34414bd0 -#: ../../source/training/osm/Chapter-06-using-gps.rst:189 -msgid "6.7 Copying waypoints and tracks to the computer" -msgstr "6.7 Meng-copy *waypoint* dan *track* ke komputer" - -# 5a0f5590862741478516a79329bbfc85 -#: ../../source/training/osm/Chapter-06-using-gps.rst:191 -msgid "" -"When you are finished mapping with the GPS you will want to copy the points " -"and tracks to your computer so that you can open them in JOSM and begin " -"editing." -msgstr "" -"Ketika Anda selesai memetakan dengan GPS Anda akan menginginkan untuk " -"menyalin titik dan *track* ke dalam komputer agar Anda dapat membukanya di " -"dalam JOSM dan mulai mengeditnya." - -# 0cfe02d63a1a4d68b8885ae2ee13d830 -#: ../../source/training/osm/Chapter-06-using-gps.rst:194 -msgid "" -"One way to copy waypoints and tracks is using the free BaseCamp software " -"supplied by Garmin and available for download from the Garmin website. " -"However in this module, we will use an opensource program called GPSBabel, " -"that provides several additional features." -msgstr "" -"Satu cara untuk menyalin *waypoint* and *track* adalah menggunakan perangkat " -"lunak BaceCamp gratis yang disediakan oleh Garmin dan dapat didownload di " -"situs Garmin. Meskipun demikian pada modul ini, kita akan menggunakan sebuah " -"program opensource yang disebut GPSBabel yang menyediakan beberapa fitur " -"tambahan." - -# 0f7dec4fe531438b85b5a54fd4cc4103 -#: ../../source/training/osm/Chapter-06-using-gps.rst:200 -msgid "6.7.1 Installing GPS drivers" -msgstr "6.7.1 Menginstalasi driver GPS" - -# 4bdfac18c54e4f9785cda8815d16063b -#: ../../source/training/osm/Chapter-06-using-gps.rst:204 -msgid "" -"You may need to install GPS drivers on your computer. Open your training" -msgstr "" -"Anda mungkin perlu menginstal driver GPS pada komputer Anda. Buka folder " -"training" - -# f8a83394c7524586a65d0b9e529e8759 -#: ../../source/training/osm/Chapter-06-using-gps.rst:203 -msgid "" -"folder and find :file:`software/USBDrivers_23.exe`. Double-click it and " -"install." -msgstr "" -"dan temukan :file:`software/USBDrivers_23.exe`. Klik dua kali di sini dan " -"instal." - -# 7577a9477ee840bf917502b08f3e6cf7 -#: ../../source/training/osm/Chapter-06-using-gps.rst:208 -msgid "If you don’t have this file, you can download it. Open your internet" -msgstr "" -"Jika Anda tidak memiliki file ini, Anda dapat mendownloadnya. Buka browser " -"internet Anda" - -# d0d316b05d6744ee81cd87ed64624819 -#: ../../source/training/osm/Chapter-06-using-gps.rst:207 -msgid "" -"browser and go to: `http://www8.garmin.com/support/download_details .jsp?" -"id=591 `_" -msgstr "" -"dan pergi ke: `http://www8.garmin.com/support/download_details .jsp?id=591 " -"`_" - -# 31e5438cdb214ed49c7f12fa162f67cf -#: ../../source/training/osm/Chapter-06-using-gps.rst:212 -msgid "" -"3 Click :guilabel:`Download` to get the installation file. Locate it on your" -msgstr "" -"3 Klik :guilabel:`Download` untuk mendapatkan file instalasi. Cari pada " -"komputer Anda" - -# 640d9fa7335d4cc3915fc12294cafa3e -#: ../../source/training/osm/Chapter-06-using-gps.rst:211 -msgid "computer, and double-click to install." -msgstr " dan klik dua kali untuk menginstal." - -# 578b2078f7284ff2b70494a4d83d2c94 -#: ../../source/training/osm/Chapter-06-using-gps.rst:215 -msgid "6.7.2 Attaching GPS to the Computer" -msgstr "6.7.2 Menghubungkan GPS ke komputer" - -# 86427e6afeca43dcafa7045c99dad8a7 -#: ../../source/training/osm/Chapter-06-using-gps.rst:217 -msgid "" -"1. First, turn off the track log on your GPS by going to the Track page and " -"selecting :guilabel:`Off`." -msgstr "" -"1. Pertama, matikan *track log* GPS Anda dengan menuju ke halaman *Track* " -"dan memilih :guilabel:`Off`." - -# 5f69ed67b39c43d08e74692b96ae14b4 -#: ../../source/training/osm/Chapter-06-using-gps.rst:223 -msgid "" -"Attach the GPS to your computer with the cable. One end should plug into" -msgstr "" -"Sambungkan GPS ke komputer Anda dengan kabel data. Salah satu ujungnya harus " -"tersambung ke" - -# 74c995d831b946b3a9b496cbe2f52434 -#: ../../source/training/osm/Chapter-06-using-gps.rst:221 -msgid "" -"your computer’s USB port, and the other goes into the back of the GPS, " -"beneath the rubber flap at the top. The GPS should be turned on to " -"facilitate copying of the points and tracks." -msgstr "" -"USB port komputer Anda, dan ujung lainnya tersambung dengan GPS, di belakang " -"flap karet pada bagian atas belakang GPS. GPS harus dinyalakan untuk dapat " -"menyalin titik dan *track*." - -# 437bc7c03abc49aeafda63cc19f06c49 -#: ../../source/training/osm/Chapter-06-using-gps.rst:226 -msgid "6.7.2 Getting the GPSBabel setup program" -msgstr "6.7.2 Memperoleh pengaturan program GPSBabel" - -# 2aa7982dc7a54941b7d0bd7547705c4a -#: ../../source/training/osm/Chapter-06-using-gps.rst:228 -msgid "" -"GPSBabel is a program that allows us to copy data from the GPS. If you have " -"copy of GPSBabel in CD or flashdisk, you can skip this step and move to next " -"section. If you don’t have GPSbabel:" -msgstr "" -"GPSBabel adalah sebuah program yang memungkinkan kita untuk menyalin data " -"dari GPS. Jika Anda memiliki file GPSBabel dalam CD/flashdisk, Anda dapat " -"melewatkan langkah ini dan berpindah ke sesi berikutnya. Jika Anda tidak " -"memiliki file GPSBabel:" - -# 7d2f89f50bc046ac95aaeadc3f61a11c -#: ../../source/training/osm/Chapter-06-using-gps.rst:232 -msgid "" -"Open your web browser and go to `www.gpsbabel.org `_" -msgstr "" -"Buka browser internet Anda dan buka situs `www.gpsbabel.org `_" - -# d4b42078c83846c6b72ded3139f263c8 -#: ../../source/training/osm/Chapter-06-using-gps.rst:234 -msgid "Click :guilabel:`Downloads` at the top of the page." -msgstr "Klik :guilabel:`Downloads` pada bagian atas halaman." - -# 32422ade623c4b1f8f2901155d4120d7 -#: ../../source/training/osm/Chapter-06-using-gps.rst:239 -msgid "Scroll down the page. If your computer uses Windows, you want to" -msgstr "" -"Gulirkan halaman ke bawah. Jika komputer Anda menggunakan Windows, Anda ingin" - -# b73e638b67984480bf7de510eb343248 -#: ../../source/training/osm/Chapter-06-using-gps.rst:237 -msgid "" -"download the installation file for Windows. Click :file:`GPSBabel-1.5.1-" -"Setup.exe`. The file will be downloaded to your computer. Find GPSBabel " -"installation software and double click to install." -msgstr "" -"mendownload file instalasi untuk Windows. Klik :file:`GPSBabel-1.5.1-Setup." -"exe`. Filenya akan terdownload ke komputer Anda. Temukan perangkat lunak " -"instalasi GPSBabel dan klik dua kali untuk menginstalnya." - -# 9224d1876caf4b599beecc550b3f9816 -#: ../../source/training/osm/Chapter-06-using-gps.rst:241 -msgid "Click :guilabel:`Next`." -msgstr "Klik :guilabel:`Next`." - -# 8b6d950386544c0794ef23b518c745c1 -#: ../../source/training/osm/Chapter-06-using-gps.rst:243 -msgid "Clcik :guilabel:`I accept` and :guilabel:`Next`." -msgstr "Klik :guilabel:`I accept` dan :guilabel:`Next`." - -# 1c0b11efe145427bbcd966b85bc868ca -#: ../../source/training/osm/Chapter-06-using-gps.rst:245 -msgid "Continue clicking :guilabel:`Next` until the program installs." -msgstr "Lanjutkan klik :guilabel:`Next` hingga program mulai menginstal." - -# e954ca6a86104367963d6ddd9a4ca1ac -#: ../../source/training/osm/Chapter-06-using-gps.rst:247 -msgid "" -"When the program has finished installing, click :guilabel:`Finish` to start " -"GPSBabel." -msgstr "" -"Ketika program telah selesai diinstal, klik :guilabel:`Finish` untuk memulai " -"GPSBabel." - -# 3dd036785d89456997f6d9d09bee9cbd -#: ../../source/training/osm/Chapter-06-using-gps.rst:251 -msgid "6.7.3 Copying Tracks and Waypoints" -msgstr "6.7.3 Menyalin *Tracks* dan *Waypoints*" - -# 283e0930e77348a990b7ade65ac997a8 -#: ../../source/training/osm/Chapter-06-using-gps.rst:253 -msgid "" -"After you success install GPSBabel, it will automatically launch GPSBabel. " -"Otherwise, you can find GPSBabel icon in the desktop or start menu." -msgstr "" -"Setelah Anda berhasil menginstalasi GPSBabel, GPSBabel akan terbuka secara " -"otomatis. Jika tidak, Anda dapat temukan ikon GPSBabel pada Start Menu atau " -"di dekstop." - -# 265cac69c79f45a2a79281da9eb51adf -#: ../../source/training/osm/Chapter-06-using-gps.rst:258 -msgid "" -"Click in the circle next to the word :guilabel:`Device` at the top of the" -msgstr "Klik pada lingkaran dengan kata :guilabel:`Device` pada bagian atas" - -# 5b24bbad441145c4b0ea25fdee3cc3f0 -#: ../../source/training/osm/Chapter-06-using-gps.rst:258 -msgid "window." -msgstr "jendela." - -# 62f5659200cf41c49178fc48bc3ac3b4 -#: ../../source/training/osm/Chapter-06-using-gps.rst:263 -msgid "" -"In the drop-down menu labelled :guilabel:`Format`, select :guilabel:`Garmin " -"serial/USB protocol`" -msgstr "" -"Pada menu daftar pilihan yang berlabel :guilabel:`Format`, pilih :guilabel:" -"`Garmin serial/USB protocol`" - -# cf875335ca04488da42ffa17e6ae04a1 -#: ../../source/training/osm/Chapter-06-using-gps.rst:265 -msgid "" -"Go down to the middle of the window, under :guilabel:`Output`. In the drop-" -"down menu labelled :guilabel:`Format`, select :guilabel:`GPX XML`" -msgstr "" -"Lihat di bagian pertengahan jendela aplikasi di bawah :guilabel:`Output`. " -"Terdapat menu daftar pilihan yang berlabel :guilabel:`Format`, silahkan " -"pilih :guilabel:`GPX XML`:" - -# 7c0ac1ab9fe34f84b9f702b0ef0214e8 -#: ../../source/training/osm/Chapter-06-using-gps.rst:272 -msgid "Click :guilabel:`File Name` and type a name for your saved file." -msgstr "" -"Klik: :guilabel:`File Name` dan ketik nama untuk file yang akan Anda simpan." - -# 3cf69d0b98434a50b13c595d0495c808 -#: ../../source/training/osm/Chapter-06-using-gps.rst:271 -msgid "" -"It should be something that describes the data, such as the date and the " -"location. For example: :file:`jakarta-07-07-2014`." -msgstr "" -"Silahkan pilih nama file yang menggambarkan isi data di dalamnya, seperti " -"tanggal dan lokasi survei. Sebagai contoh: :file:`jakarta-07-07-2014`" - -# ad2d076aa2ea40ddb710e5566f8894e1 -#: ../../source/training/osm/Chapter-06-using-gps.rst:274 -msgid "Make sure your GPS is connected to the computer and turned on." -msgstr "Pastikan GPS Anda terhubung dengan komputer dalam keadaan menyala." - -# 7b60355cd13d45d4bb7a384edfdf7b82 -#: ../../source/training/osm/Chapter-06-using-gps.rst:276 -msgid "Click :guilabel:`Apply` in the bottom right corner of the window" -msgstr "Klik :guilabel:`Apply` di sisi pojok kanan bawah jendela" - -# 43a258347b594847b59e081d3b3f7aa9 -#: ../../source/training/osm/Chapter-06-using-gps.rst:281 -msgid "If all goes well you should see a bar move across the screen," -msgstr "" -"Jika berhasil dijalankan, anda akan melihat sebuah tanda yang melintasi " -"layar anda," - -# 3b15573eb0984cedbad5dcac77947ab2 -#: ../../source/training/osm/Chapter-06-using-gps.rst:279 -msgid "" -"indicating that the data is being retrieved from the GPS. When it is " -"finished, your points and track will be saved in the file that you selected" -msgstr "" -"yang mengindikasikan bahwa data anda sedang diambil dari GPS. Ketika sudah " -"selesai, titik dan trek survei anda akan disimpan dalam file yang telah anda " -"buat dan pilih sebelumnya" - -# a3d07d7b27b843489f577c04dafc3d9a -#: ../../source/training/osm/Chapter-06-using-gps.rst:284 -msgid "6.8 Open Waypoints and Tracks in JOSM" -msgstr "6.8 Membuka Waypoints dan Trek di JOSM" - -# 036cac486db349c59708e2c6fe699a90 -#: ../../source/training/osm/Chapter-06-using-gps.rst:286 -msgid "Now open JOSM. Go to :menuselection:`File → Open...`" -msgstr "Sekarang buka JOSM. Kemudian pilih :menuselection:`File → Open...`" - -# a97662b4095549bcb683e01022c634ab -#: ../../source/training/osm/Chapter-06-using-gps.rst:288 -msgid "" -"Find and select the file that you created with GPSBabel. Click :guilabel:" -"`Open`." -msgstr "" -"Cari dan pilih file yang telah Anda buat dengan GPSBabel. Klik :guilabel:" -"`Open`." - -# 3d101afb7f494524ae7f5e923713f304 -#: ../../source/training/osm/Chapter-06-using-gps.rst:290 -msgid "You should now see your points and tracks loaded into JOSM." -msgstr "Anda seharusnya dapat melihat titik dan track Anda termuat pada JOSM." - -# 0f406814a19546e99639d0ffcce88340 -#: ../../source/training/osm/Chapter-06-using-gps.rst:296 -msgid "6.8.1 Change waypoints and tracks colour in JOSM" -msgstr "6.8.1 Mengubah warna waypoints dan trek di JOSM" - -# 7801070a5a20479faa3221daaefa624e -#: ../../source/training/osm/Chapter-06-using-gps.rst:298 -msgid "" -"To change tracks and waypoints colour, right click on the :guilabel:`track` " -"layer or :guilabel:`waypoints` layer and then select :guilabel:`Customize " -"Colours` and choose your preferred colour." -msgstr "" -"Untuk mengubah warna trek dan waypoint, klik kanan pada layer :guilabel:" -"`track` atau :guilabel:`waypoints` kemudian klik guilabel:`Customize " -"Colours` dan pilih warna yang ingin anda gunakan." - -# 9cbaa887dc304010b103ce5d55db4a5d -#: ../../source/training/osm/Chapter-06-using-gps.rst:302 -msgid "" -"For tracks, not only you can change **line colour** but you can also change " -"**line width**. Right click on :guilabel:`track` layer and then select :" -"guilabel:`Customize Track Drawing`. Change :guilabel:`Drawing width of GPX " -"Lines` with your preferred number (The larger the number the thicker the " -"line)" -msgstr "" -"Untuk trek, anda tidak hanya dapat mengubah **warna garis* akan tetapi anda " -"juga dapat mengubah **tebal garis**. Klik kanan pada layer :guilabel:`track` " -"kemudian pilih :guilabel:`Customize Track Drawing`. Silahkan ganti :guilabel:" -"`Drawing width of GPX Lines` dengan angka tertentu (Semakin besar angkanya " -"maka akan semakin besar garisnya)" - -# b4bd7e507919424c92d6b48b12db1736 -#: ../../source/training/osm/Chapter-06-using-gps.rst:310 -msgid "Summary" -msgstr "Ringkasan" - -# 8ae4475239e541bfa8c378afec4ca26d -#: ../../source/training/osm/Chapter-06-using-gps.rst:312 -msgid "" -"Congratulations! Now you already learned about how to use GPS. If you still " -"need practice, try to save points from several location that you think " -"important." -msgstr "" -"Selamat! Anda sekarang telah mempelajari bagaimana menggunakan GPS. Jika " -"anda masih membutuhkan praktik, cobalah untuk menyimpan beberapa titik dari " -"lokasi yang berbeda yang anda rasa penting untuk dipetakan." - -# 554f1f76314944b798ed05a0080f5d1f -#: ../../source/training/osm/Chapter-06-using-gps.rst:316 -msgid "" -"In this chapter we have learned how to collect waypoints and tracks, " -"download them from the GPS, and display them in JOSM. Later we will use this " -"information to add new objects in OpenStreetMap." -msgstr "" -"Dalam bab ini kita telah belajar bagaimana cara mengambil waypoint dan trek " -"menggunakan GPS, menyimpannya dari GPS kemudian menampilkannya di JOSM. " -"Selanjutnya kita akan menggunakan informasi survei ini untuk menambahkan " -"objek-objek baru ke dalam OpenStreetMap." - -# 456ca3f40b4a42178ebb50cc90208fd2 -#: ../../source/training/osm/Chapter-06-using-gps.rst:320 -msgid "" -"In the next chapter, we will learn about another survey method called Field " -"Papers. Field Papers allows you to create map without a GPS!" -msgstr "" -"Di bab selanjutnya, kita akan mempelajarai tentang metode survei lapangan " -"lain yang bernama Field papers. Field Papers memungkinkan anda untuk membuat " -"peta dan melakukan survei tanpa menggunakan GPS!" - -# 25cc7aa84c444ed6a370d6de49b54f01 -#: ../../source/training/osm/Chapter-06-using-gps.rst:323 -msgid ":ref:`Go to next chapter --> `" -msgstr ":ref:`Pergi ke bab selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-07-field-papers.po b/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-07-field-papers.po deleted file mode 100644 index 47202b78..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-07-field-papers.po +++ /dev/null @@ -1,761 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Dewi Sulistioningrum , " -"2016\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 9adc9d76cd284fd1945c460e3f4a92bd -#: ../../source/training/osm/Chapter-07-field-papers.rst:6 -msgid "Chapter 7: Field Papers" -msgstr "Bab 7: Field Papers" - -# e96d8214f7954c5886a22a38c7ad7b14 -#: ../../source/training/osm/Chapter-07-field-papers.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# def27042d3404d35aaa23df84e9ac8d4 -#: ../../source/training/osm/Chapter-07-field-papers.rst:10 -msgid "How to use Field Papers" -msgstr "Memahami bagaimana cara kerja Field Papers" - -# 1c30907f90fc409fbc2008ce96d067dc -#: ../../source/training/osm/Chapter-07-field-papers.rst:11 -msgid "Make and print Field Papers" -msgstr "Membuat dan mencetak Field Papers" - -# 82d7bb5dc1534b84b676cf72cf9be804 -#: ../../source/training/osm/Chapter-07-field-papers.rst:12 -msgid "Add data to print using Field Papers" -msgstr "Menambahkan data untuk dicetak dengan menggunakan Field Papers" - -# bc6985209ea74076b01c5b8bbc878bca -#: ../../source/training/osm/Chapter-07-field-papers.rst:13 -msgid "Scan and upload Field Papers to Field Papers website" -msgstr "Melakukan scan dan upload Field Papers ke situs Field Papers" - -# a283600fae524e53ad4ac758468128bb -#: ../../source/training/osm/Chapter-07-field-papers.rst:14 -msgid "Open Field Papers into JOSM" -msgstr "Membuka Field Papers ke dalam JOSM" - -# 8e5404a2663146cdb4d1d38d33026644 -#: ../../source/training/osm/Chapter-07-field-papers.rst:16 -msgid "" -"In this module we will see how we can record the coordinates of places " -"without a GPS. We will use a paper-based tool called Field Papers, which " -"allows you to print a map of an area, draw on it, add notes, and load the " -"paper back into JOSM, where you can add your locations to OpenStreetMap." -msgstr "" -"Pada bab ini kita akan melihat bagaimana kita dapat merekam koordinat suatu " -"tempat tanpa menggunakan GPS. Kita akan menggunakan sebuah alat bernama " -"Field Papers, yang memungkinkan Anda untuk mencetak peta suatu wilayah, " -"menggambar di dalamnya, menambahkan catatan, dan membuka kertas tersebut di " -"dalam JOSM, dimana Anda dapat menambahkan lokasi Anda ke OpenStreetMap." - -# 91492f44bec145f9a20adbc44ac93e9a -#: ../../source/training/osm/Chapter-07-field-papers.rst:21 -msgid "7.1 Overview of Field Papers" -msgstr "7.1 Gambaran Field Papers" - -# 88df4323cc954f6ba614781d306ffe0a -#: ../../source/training/osm/Chapter-07-field-papers.rst:23 -msgid "" -"Before going into detail about Field Papers, let’s look at a general " -"overview of how the Field Papers process works:" -msgstr "" -"Sebelum kita mempelajari lebih jauh tentang Field Papers, mari kita lihat " -"gambaran bagaimana Filed Papers bekerja:" - -# a2a82a2367c4462db0516281f83b0419 -#: ../../source/training/osm/Chapter-07-field-papers.rst:25 -msgid "" -"Locate the area of interest you want to map on the Field Papers website. " -"Create a map for the area of interest. Print out a map of this area. You can " -"choose to print the area of interest using the default OpenStreetMap " -"backdrop, or you may choose to print aerial imagery, if it is a available in " -"your area." -msgstr "" -"Carilah wilayah yang Anda ingin petakan di dalam situs Field Papers. Buatlah " -"peta untuk wilayah itu. Anda dapat memilih untuk mencetak peta tersebut " -"dengan latar belakang OpenStreetMap atau Anda dapat mencetak dengan latar " -"belakang citra satelit, jika citra tersebut tersedia di wilayah Anda." - -# be46fde1c1b44bacb031f6d5d70be56b -# 41321ae0a84c4ffb8407eec5377e378b -#: ../../source/training/osm/Chapter-07-field-papers.rst:32 -#: ../../source/training/osm/Chapter-07-field-papers.rst:83 -msgid "*Interface Field Papers*" -msgstr "*Tampilan Awal Field Papers*" - -# 47b90d4e746d4a99ac9df744e7bd3025 -#: ../../source/training/osm/Chapter-07-field-papers.rst:34 -msgid "" -"Use your printed map to survey the area. Add more places by drawing them on " -"the map. Draw lines for roads, shapes for buildings, and so forth. Write " -"notes about each location directly on the map, or write numbers on the map " -"that relate to numbers in your notebook, where you can write more detailed " -"information about each object." -msgstr "" -"Gunakan Field Papers yang telah dicetak untuk melakukan survey pada wilayah " -"Anda. Tambahkan lebih banyak tempat dengan menggambarnya di atas peta. " -"Gambarlah garis untuk jalan, poligon untuk bangunan, dan seterusnya. Menulis " -"catatan setiap lokasi secara langsung pada peta, atau menulis angka pada " -"peta untuk menghubungkan gambar dengan kode pada catatan, dimana Anda dapat " -"menulis informasinya lebih rinci pada setiap objeknya." - -# e923e982684942b2a99bd31d1ab3a0ed -#: ../../source/training/osm/Chapter-07-field-papers.rst:39 -msgid "" -"Scan your paper into the computer. If you do not have a scanner, you can " -"take a photograph of the paper, if your camera is able to take high quality " -"pictures. Upload the image to the Field Papers website." -msgstr "" -"Scan Field Papers Anda ke dalam komputer. Jika Anda tidak memiliki sebuah " -"scanner, Anda dapat mengambil foto Field Papers tersebut, jika kamera Anda " -"dapat mengambil gambar dengan resolusi tinggi. Upload gambar ke situs Field " -"Papers." - -# f37aac904ab042298394bb3d16b80140 -# 235f9aadaa1949de91042295beba747d -#: ../../source/training/osm/Chapter-07-field-papers.rst:45 -#: ../../source/training/osm/Chapter-07-field-papers.rst:196 -msgid "*Field Papers Image*" -msgstr "*Foto Field Papers*" - -# 4cd5ac5c0ec0421596ca48f00d591f71 -#: ../../source/training/osm/Chapter-07-field-papers.rst:47 -msgid "" -"In JOSM, load the Field Papers. Use the objects you drew as a reference to " -"add the digitally into OpenStreetMap." -msgstr "" -"Pada JOSM, tambahkan Field Papers. Gunakan objek - objek yang telah Anda " -"gambar sebagai acuan untuk menambahkan secara digital ke dalam OpenStreetMap." - -# c3ae57d5618449f7807e3bfd936ec27a -# a0d83c70239e4f4bbfdc460c92dc29a3 -#: ../../source/training/osm/Chapter-07-field-papers.rst:52 -#: ../../source/training/osm/Chapter-07-field-papers.rst:299 -msgid "*Interface Field Papers in JOSM*" -msgstr "*Tampilan Field Papers di JOSM*" - -# ca90036eefbc4e0083ad0a27c191efc9 -#: ../../source/training/osm/Chapter-07-field-papers.rst:55 -msgid "7.2 How does Field Papers Work?" -msgstr "7.2 Bagaimana Field Papers Bekerja?" - -# 75b8e607fb4d427598c888e9385b25fb -#: ../../source/training/osm/Chapter-07-field-papers.rst:57 -msgid "" -"If you follow the Field Papers process described above, you will be " -"collecting accurate geographic coordinate of places with nothing more than " -"paper. How is this possible?" -msgstr "" -"Jika Anda mengikuti bagaimana cara kerja Field Papers, sebagaimana " -"dijelaskan di atas, Anda akan mengumpulkan koordinat geografis dari suatu " -"tempat dengan akurat hanya dengan menggunakan kertas. Bagaimana mungkin?" - -# aeb690bb85bc46a99c692b87bd446f0a -#: ../../source/training/osm/Chapter-07-field-papers.rst:63 -msgid "*Barcode Field Papers*" -msgstr "*Barcode Field Papers*" - -# acb746d16e914d939d1cf208119fcfb7 -#: ../../source/training/osm/Chapter-07-field-papers.rst:65 -msgid "" -"When you print a Field Papers, the paper comes with a square barcode on the " -"bottom of the page. This barcode allows Field Papers to determine the exact " -"location of the map that you are using to survey. Later, when you load the " -"paper back into JOSM, all the objects that you drew will be in shown " -"relative to their actual locations. This is same with you using GPS for " -"collecting actual coordinates, except all you need is paper!" -msgstr "" -"Ketika Anda mencetak sebuah Field Paper, kertas tersebut dengan sebuah " -"barcode di bagian bawah halaman. Barcode ini memungkinkan Field Papers untuk " -"menentukan lokasi yang akurat dari peta yang Anda gunakan untuk survey. " -"Selanjutnya, ketika Anda menambahkan Field Papers ke dalam JOSM, semua objek " -"yang Anda gambar akan ditampilkan pada lokasi sebenarnya. Hal ini seperti " -"menggunakan GPS untuk mengumpulkan koordinat yang tepat, kecuali semua yang " -"Anda butuhkan adalah kertas!" - -# 54769d22f7eb4ced80bdaa06a523bd6f -#: ../../source/training/osm/Chapter-07-field-papers.rst:70 -msgid "Now let’s learn how to create and use Field Papers." -msgstr "Sekarang mari belajar bagaimana membuat dan menggunakan Field Papers." - -# dd0b8bceeb3842a5bccba569018201eb -#: ../../source/training/osm/Chapter-07-field-papers.rst:73 -msgid "7.3 Create and Print Field Papers" -msgstr "7.3 Membuat dan Mencetak Field Papers" - -# 9cb7e70bcc054611b779d1ad8386e049 -#: ../../source/training/osm/Chapter-07-field-papers.rst:75 -msgid "" -"Open your web browser. In the address bar at the top of the window, enter " -"`http://fieldpapers.org/ `_ and press :kbd:`Enter`" -msgstr "" -"Buka browser internet. Pada kolom alamat situs di bagian atas jendela, " -"masukkan teks `http://fieldpapers.org/ `_ dan tekan :" -"kbd:`Enter`" - -# 24e595bb3f0e47a4803306b842b5ca08 -#: ../../source/training/osm/Chapter-07-field-papers.rst:78 -msgid "The website should look something like the figure below:" -msgstr "Situs seharusnya terlihat seperti ini:" - -# c34462aadf794049a0800fd8f92f5f24 -#: ../../source/training/osm/Chapter-07-field-papers.rst:85 -msgid "" -"Click :guilabel:`Make yourself an Atlas` to select the area that you want " -"print out." -msgstr "" -"Klik :guilabel:`Buat atlas anda sendiri` untuk memilih wilayah yang ingin " -"Anda cetak." - -# 3ecd7aeceb544288ae032d3b6740cf86 -#: ../../source/training/osm/Chapter-07-field-papers.rst:90 -msgid "*Make Field Papers*" -msgstr "*Membuat Field Papers*" - -# 29637d1eed6240f6a4404b87bfda89ab -#: ../../source/training/osm/Chapter-07-field-papers.rst:92 -msgid "" -"You will be directed to a page like this where you can see there are some " -"setting at left panel and main map at the right." -msgstr "" -"Anda akan diarahkan ke sebuah halaman seperti berikut dimana anda dapat " -"melihat beberapa pengaturan pada panel di sisi sebelah kiri dan peta utama " -"di sebelah kanan." - -# 938d5084569e4f529e283ec257814fcb -#: ../../source/training/osm/Chapter-07-field-papers.rst:98 -msgid "*Compose Field Papers*" -msgstr "*Membuat Field Papers*" - -# f9ab9259a4624a5e8983f27d2c58f795 -#: ../../source/training/osm/Chapter-07-field-papers.rst:100 -msgid "" -"On the main map, to find the area that you want to map, you can click search " -"button and type the location name OR you can drag manually the map with the " -"same way when you drag map in OpenStreetMap website, use the left button " -"your mouse for drag map, and scroll your mouse for zoom in and zoom out. " -"Click on :guilabel:`+` and :guilabel:`-` buttons in the upper left corner " -"for zoom in and zoom out." -msgstr "" -"Pada peta, arahkan ke area / lokasi yang ingin Anda survei, Anda dapat klik " -"tombol pencarian dan ketikkan nama lokasi ATAU Anda dapat menggeser peta " -"secara manual seperti yang Anda lakukan di peta situs OpenStreetMap, gunakan " -"tombol klik kiri pada mouse Anda untuk menggeser dan gulirkan roda di mouse " -"Anda untuk memperbesar dan memperkecil peta. Klik tombol :guilabel:`+` and :" -"guilabel:`-` di pojok kiri atas untuk memperbesar dan memperkecil." - -# da4bf90667b342ec9c57b738b4a63e1b -#: ../../source/training/osm/Chapter-07-field-papers.rst:106 -msgid "*Setting the area in Field Papers*" -msgstr "*Mengatur Wilayah di Field Papers*" - -# 5c301c0f14424f81ae5e34bbbf31fe4e -#: ../../source/training/osm/Chapter-07-field-papers.rst:108 -msgid "" -"Here you also can define the boundaries of your Field Papers. The boundaries " -"is displayed as hollow box with black border. You want to make sure that the " -"window displays the area of interest that you intend to map. You can add " -"more page or less page. Make sure that your map can display building and " -"road for field survey." -msgstr "" -"Anda juga dapat menentukan batas dari Field Papers Anda. Batas wilayah yang " -"ditampilkan berupa kotak transparan berwarna dengan sisi batas berwarna " -"hitam. Pastikan bahwa jendela peta menampilkan seluruh area yang ingin anda " -"survei. Anda dapat menambahkan halaman atau mengurangi halaman sesuai dengan " -"kebutuhan anda. Pastikan bahwa Field Papers anda sudah menampilkan bangunan " -"dan jalan untuk membantu anda melakukan survei lapangan." - -# 6b90c1f1d7fe4345a495dc02b122d5b2 -#: ../../source/training/osm/Chapter-07-field-papers.rst:115 -msgid "*Setting the page in Field Papers*" -msgstr "*Mengatur Halaman di Field Papers*" - -# 3aa52b23e6a6428b9b0dc7d2d610a04e -#: ../../source/training/osm/Chapter-07-field-papers.rst:117 -msgid "" -"At the left panel are some setting for print out Field Papers. The first is " -"give information to your atlas by type a name on the **Atlas Title** column. " -"If you want, you can add notes to be printed on the map, such as questions " -"you want to remember to answer or specific places you want to identity by " -"give a check mark on **Print notes** and type your notes on the **Notes** " -"column." -msgstr "" -"Pada panel di sebelah kiri terdapat beberapa pengaturan untuk mencetak Field " -"Papers. Pertama memberikan informasi tentang field papers Anda dengan " -"memasukkan nama Field Papers anda pada kolom **Atlas Title**. Jika ingin, " -"Anda dapat menambahkan catatan di field papers yang ingin anda cetak, " -"seperti pertanyaan yang ingin anda ingat untuk dijawab atau tempat spesifik " -"yang ingin anda tandai dengan memberikan tanda ceklis pada **Print notes** " -"dan ketik catatan anda di kolom **Notes**" - -# 0cf8bb0f01b348fcb768869c9e2662e3 -#: ../../source/training/osm/Chapter-07-field-papers.rst:125 -msgid "*Setting atlas information in Field Papers*" -msgstr "*Pengaturan Informasi Atlas di Field Papers*" - -# 8165574775074e1ea94430a8d7b83f3b -#: ../../source/training/osm/Chapter-07-field-papers.rst:127 -msgid "" -"The second is the Grid Layout setting. The **Paper Size** is used to adjust " -"the paper size that you want use for print out Field Paper. You can choose :" -"guilabel:`letter`, :guilabel:`A3`, or :guilabel:`A4`. Then the " -"**Orientation** is used to adjust the paper orientation that you want use " -"for print out Field Paper. You can choose between :guilabel:`portrait` or :" -"guilabel:`landscape` as shown in the figure below." -msgstr "" -"Pengaturan kedua yaitu pengaturan tampilan grid. **Paper Size** digunakan " -"untuk menentukan ukuran kertas yang akan digunakan saat mencetak Field " -"Paper. Anda dapat memilih ukuran :guilabel:`letter`, :guilabel:`A3`, or :" -"guilabel:`A4`. Kemudian, **Orientation** digunakan untuk mengatur orientasi " -"dari kertas yang akan digunakan saat mencetak Field Paper. Anda dapat " -"memilih antara :guilabel:`portrait` atau :guilabel:`landscape` seperti yang " -"ditunjukkan di bawah ini." - -# 12db909e9f2c494cbd34cf718ef94882 -#: ../../source/training/osm/Chapter-07-field-papers.rst:135 -msgid "*Setting the paper size and paper orientation in Field Papers*" -msgstr "*Mengatur ukuran kertas dan orientasi kerta di Field Papers*" - -# a9f571af02ed4aceb0fb6f5737e0b320 -#: ../../source/training/osm/Chapter-07-field-papers.rst:137 -msgid "" -"Still in Grid Layout setting, next you can select the type data for your " -"Field Papers. You can select different **Basemap** for change map " -"background. In this example shown in the figure below, we will select :" -"guilabel:`Satellite Only`." -msgstr "" -"Masih di pengaturan tampilan grid, Anda selanjutnya dapat memilih tipe data " -"yang ingin ditampilkan di Field Papers Anda. Anda dapat memilih beberapa " -"**Basemap** yang berbeda untuk menjadi latar belakang peta Field Paper Anda. " -"Dalam contoh yang ditunjukkan di bawah ini, kita akan menggunakan latar " -"belakang :guilabel:`Satellite Only`." - -# 02015e0c0fa74dfd97648f1fe94ebfd1 -#: ../../source/training/osm/Chapter-07-field-papers.rst:144 -msgid "*Setting Map Background on Field Papers*" -msgstr "*Mengatur Latar Belakang Peta pada Field Papers*" - -# 9a9fadfbb5cc41838e9b24b3b8c6520c -#: ../../source/training/osm/Chapter-07-field-papers.rst:146 -msgid "When you’re finished, click :guilabel:`MAKE ATLAS`" -msgstr "Ketika Anda telah selesai, klik :guilabel:`MAKE ATLAS`" - -# 123fb9764bf543f0bd0fbb7b247361ca -#: ../../source/training/osm/Chapter-07-field-papers.rst:151 -msgid "*Next step to create Field Papers*" -msgstr "*Langkah selanjutnya untuk membuat Field Papers*" - -# 48976a468fc34cdf90ba88f6c228461d -#: ../../source/training/osm/Chapter-07-field-papers.rst:153 -msgid "" -"It may take a few minutes to prepare your final Field Papers map. When " -"finished, you will see your Field Paper on this page, shown in the figure " -"below." -msgstr "" -"Tunggu beberapa menit untuk mempersiapkan peta Field Papers. Ketika selesai, " -"Anda akan melihat Field Papers pada halaman ini, seperti ditunjukkan pada " -"gambar di bawah." - -# 6cebc76e3d654609969999f4cb783ca2 -#: ../../source/training/osm/Chapter-07-field-papers.rst:159 -msgid "*The process preparing Field Papers*" -msgstr "*Proses penyelesaian Field Papers*" - -# 3ad5a711a56b4490bbf695f11cb7e54b -#: ../../source/training/osm/Chapter-07-field-papers.rst:161 -msgid "" -"When your print is ready, Click :guilabel:`Download PDF`. The Field Paper " -"should begin downloading. If it loads in your browser, you may need to save " -"it by going to :menuselection:`File ‣ Save`." -msgstr "" -"Ketika peta cetak Fied Paper Anda telah siap, klik :guilabel:`Men-download " -"PDF`. Field Paper mulai mendownload. Jika itu termuat di browser Anda, Anda " -"dapat menyimpannya dengan klik :menuselection:`File ‣ Save`." - -# ed77ad8e9a5c4bb78d08d437eacbf672 -#: ../../source/training/osm/Chapter-07-field-papers.rst:167 -msgid "*Download Field Papers*" -msgstr "*Download Field Papers*" - -# a7a6385e8f064118a3af7bf75e2c75cc -#: ../../source/training/osm/Chapter-07-field-papers.rst:169 -msgid "" -"When the download is finished, open the PDF file. Connect your computer to a " -"printer and print the page. If everything goes well, you should now have map " -"printed on paper." -msgstr "" -"Ketika proses telah selesai, buka file PDF. Koneksikan komputer Anda ke " -"perangkat printer dan cetak halaman tersebut. Jika semua berjalan dengan " -"baik, peta Anda telah tercetak di atas kertas." - -# 2535d758ac474d539fb582ffad270d9f -#: ../../source/training/osm/Chapter-07-field-papers.rst:173 -msgid "7.4 Mapping with Field Papers" -msgstr "7.4 Pemetaan dengan Field Papers" - -# efcf0063e5d446ee917cbc34edf890c7 -#: ../../source/training/osm/Chapter-07-field-papers.rst:175 -msgid "" -"Take your Field Papers outside, and use it as a guide to walk and identify " -"new places that are not on the map." -msgstr "" -"Bawalah Field Papers Anda keluar, dan gunakan Field Papers sebagai panduan " -"untuk berjalan dan mengidentifikasi tempat-tempat baru yang belum ada pada " -"peta." - -# 8df96036d8d44f45b7987def9071fe9f -#: ../../source/training/osm/Chapter-07-field-papers.rst:177 -msgid "" -"Draw lines for roads, shapes for buildings, and so forth. Write notes about " -"each location directly on the map, or write numbers on the map that relate " -"to numbers in your notebook, where you can write more detailed information " -"about each object." -msgstr "" -"Gambarlah garis untuk jalan, bentuk untuk bangunan, dan seterusnya. Tulislah " -"catatan tentang setiap lokasi secara langsung pada peta, atau tulislah angka " -"pada peta yang menghubungkan objek pada peta dengan catatan, dimana Anda " -"menuliskan informasi yang lebih detail tentang objek Anda." - -# 5d358da2eb7a4bf0a83396de20c03f14 -#: ../../source/training/osm/Chapter-07-field-papers.rst:181 -msgid "" -"When you are satisfied with your additions on the paper map, then you can " -"add them digitally into OpenStreetMap." -msgstr "" -"Ketika Anda sudah merasa puas dengan penambahan pada Field Papers, kemudian " -"Anda dapat menambahkannya secara digital ke dalam OpenStreetMap." - -# e35160e0e2bb4965b1e5b34fa051252a -#: ../../source/training/osm/Chapter-07-field-papers.rst:184 -msgid "7.5 Scan and Upload Field Papers" -msgstr "7.5 Scan dan Upload Field Papers" - -# cc22a317eb4743d1ac144a3a4c1cb522 -#: ../../source/training/osm/Chapter-07-field-papers.rst:186 -msgid "" -"Field Papers are very useful for mapping with nothing more than paper, but " -"they are not a 100% solution. We will still need to load our paper map into " -"JOSM, add our information digitally, and save our changes on OpenStreetMap." -msgstr "" -"Field Paper sangat berguna untuk pemetaan dengan tidak lebih dari kertas, " -"tetapi field papers bukan 100% solusi. Kita akan tetap perlu menambahkan " -"Field Paper kita ke dalam JOSM, menambahkan informasi kita secara digital, " -"dan menyimpan perubahan kita di OpenStreetMap." - -# 1bd25157fd394316abd5dadaf78e9723 -#: ../../source/training/osm/Chapter-07-field-papers.rst:189 -msgid "" -"The first step is to scan your Field Papers into your computer. You can do " -"this by attaching a scanner to your computer, scanning the paper, and saving " -"it as an image file. If you don’t have a scanner, you can take a photography " -"of the paper, but you should be careful to take a very good photo. Make sure " -"that the paper is flat and your camera is directly in front of it. Be sure " -"to include the barcode in the image, as Field Papers will not work without " -"it. Here is an example of a scanned/photographed image:" -msgstr "" -"Langkah pertama adalah men-scan Field Papers Anda ke dalam komputer Anda. " -"Anda dapat melakukan ini dengan memasang scanner ke komputer Anda, men-scan " -"kertas, dan menyimpannya sebagai sebuah file gambar. Jika Anda tidak " -"memiliki scanner, Anda dapat mengambil foto Field Paper dengan kamera, " -"tetapi Anda harus berhati-hati agar foto yang diambil sangat baik. Pastikan " -"bahwa Field Paper rata dengan kamera Anda secara langsung di depannya. " -"Pastikan untuk menyertakan barcode pada foto, Field Paper tidak akan bekerja " -"tanpa barcode. Di bawah ini terdapat contoh gambar yang telah di-scan/difoto:" - -# df8f7313951243a48eefb8b20c637a51 -#: ../../source/training/osm/Chapter-07-field-papers.rst:198 -msgid "" -"Once you have your Field papers scanned and saved on the computer, open your " -"web browser and return to Field Papers website just as before." -msgstr "" -"Setelah Anda memiliki Field Paper Anda yang telah discan dan disimpan di " -"komputer, bukalah browser internet Anda dan kembali ke situs fieldpapers." -"org, seperti sebelumnya." - -# 9f5a16e8e3394881aab574aabdaa08fa -#: ../../source/training/osm/Chapter-07-field-papers.rst:201 -msgid "Click the :guilabel:`Upload` tab at the top of the page." -msgstr "Klik pada :guilabel:`Upload` di sisi atas halaman." - -# 4644bfb5e4314de182b224e72742aaba -# 61e52a615a75453d826b1ba034e78f86 -#: ../../source/training/osm/Chapter-07-field-papers.rst:206 -msgid "*Upload Field Papers*" -msgstr "*Upload Field Papers*" - -# 43fe3c668a7a492ea400f7cb5b51c7cd -#: ../../source/training/osm/Chapter-07-field-papers.rst:208 -msgid "" -"Click :guilabel:`Browse...` and navigate to the file where you scanned/" -"photographed your Field Papers." -msgstr "" -"Klik :guilabel:`Browse...` dan arahkan menuju file tempat Anda menyimpan " -"hasil foto/scan dari Field Papers Anda." - -# 18f2746cc8a64480a3512a51039f9eaa -#: ../../source/training/osm/Chapter-07-field-papers.rst:213 -msgid "*Select the to be uploaded to Field Papers website*" -msgstr "*Pilih untuk diupload ke situs Field Papers*" - -# 4d703168d00e4f64ad7c70ab2d4809ab -#: ../../source/training/osm/Chapter-07-field-papers.rst:215 -msgid "" -"It may take a few minutes for your paper to upload, depending on the speed " -"of your connection." -msgstr "" -"Mungkin Anda harus menunggu beberapa saat agar Field Paper Anda selesai di " -"upload, hal ini tergantung dari kecepatan koneksi internet Anda." - -# e0ca510f572b4ab2bb95b3b00ce0c870 -#: ../../source/training/osm/Chapter-07-field-papers.rst:220 -msgid "*Field Papers uploading process*" -msgstr "*Proses Upload Field Papers*" - -# c6609aa4eb4748da8b07aafd80c13606 -#: ../../source/training/osm/Chapter-07-field-papers.rst:222 -msgid "" -"When the upload finished, you can see the page interface as in the figure " -"below:" -msgstr "" -"Ketika upload telah selesai, anda dapat melihat tampilan halaman seperti di " -"bawah ini:" - -# 5847962f23144dfd817c2652089343fa -#: ../../source/training/osm/Chapter-07-field-papers.rst:227 -msgid "*The result from upload Field Papers*" -msgstr "*Hasil Upload dari Field Papers*" - -# 0aa84cfc249044cf9de2f4e4a2128c9b -#: ../../source/training/osm/Chapter-07-field-papers.rst:230 -msgid "7.6 Add Plugin Field Papers" -msgstr "7.6 Menambahkan Plugin Field Papers" - -# 1ff4436156ae4d228d23ae8dcf92a8ce -#: ../../source/training/osm/Chapter-07-field-papers.rst:232 -msgid "" -"Before we open Field Papers in JOSM, we need install the Field Papers " -"plugin. The fieldpapers plugin enables JOSM to open Field Papers that have " -"been uploaded to the Field Papers website. The Field Papers will be used as " -"background, and we open it using the same procedure for opening satellite " -"imagery in JOSM." -msgstr "" -"Sebelum kita membuka Field Paper di JOSM, kita perlu menginstal plugin Field " -"Paper. Plugin Field Papers memungkinkan kita untuk membuka Field Paper yang " -"sudah terupload ke situs Field Papers. Field Papers akan digunakan sebagai " -"latar belakang, dan kita buka itu menggunakan metode yang sama dengan cara " -"membuka citra satelit di JOSM." - -# ee3da267c2a24a83839494729cb43754 -#: ../../source/training/osm/Chapter-07-field-papers.rst:236 -msgid "Open JOSM and go to :menuselection:`Edit --> Preferences`." -msgstr "Buka JOSM dan klik :menuselection:`Edit > Preferensi`" - -# f380636840d940be9ba9aa24221aeb0b -#: ../../source/training/osm/Chapter-07-field-papers.rst:238 -msgid "Click on :guilabel:`Plugins` tab." -msgstr "Klik pada tab :guilabel:`Plugin`." - -# e44a9350c799476bb7d1697bc48075e3 -#: ../../source/training/osm/Chapter-07-field-papers.rst:240 -msgid "" -"Type :kbd:`fieldpapers` in the :guilabel:`Search` box. After you find it, " -"tick the fieldpapers box and Click :guilabel:`OK` as shown in the figure " -"below." -msgstr "" -"Ketikkan :kbd:`fieldpapers` pada kotak :guilabel:`Cari`. Sesudah Anda " -"menemukannya, beri tanda centang pada kotak fieldpapers dan Klik :guilabel:" -"`OK` seperti ditunjukkan gambar di bawah ini. " - -# dcb8bbd9af3a4aa99e7ea07139e74106 -#: ../../source/training/osm/Chapter-07-field-papers.rst:246 -msgid "*Field Papers Plugin*" -msgstr "*Plugin Field Papers*" - -# 1adbad725f394c08b792b9567431bad5 -#: ../../source/training/osm/Chapter-07-field-papers.rst:248 -msgid "Restart JOSM so the plugin loads." -msgstr "Restart JOSM agar plugin berhasil terpasang." - -# c7bd8df9a9374b388508a4e2f287765b -#: ../../source/training/osm/Chapter-07-field-papers.rst:251 -msgid "7.7 Open Field Papers from JOSM" -msgstr "7.7 Membuka Field Papers di JOSM" - -# 0a116f88ba62475cabf0b46bfa19f03b -#: ../../source/training/osm/Chapter-07-field-papers.rst:253 -msgid "" -"Now you can add the results of your scanned Field Papers to JOSM and add " -"your information to OpenStreetMap. Return to the `Field Papers website " -"`_ in browser address bar." -msgstr "" -"Sekarang Anda dapat menambahkan hasil dari scan Field Papers ke JOSM dan " -"menambahkan informasi ke OpenStreetMap. Kembali ke `situs Field Papers " -"`_ pada browser." - -# 2f4a9789504442f2b757cf26fcaaaa1c -#: ../../source/training/osm/Chapter-07-field-papers.rst:256 -msgid "" -"Click :guilabel:`Watch` – move your mouse to the bottom and click :guilabel:" -"`Snapshots` until your browser page looks like the figure below:" -msgstr "" -"Klik :guilabel:`Pantau` - pindahkan mouse Anda ke bawah dan klik :guilabel:" -"`Foto` sampai halaman browser Anda terlihat seperti gambar di bawah:" - -# c60317050f644e22bf32719f8f4cfa9b -#: ../../source/training/osm/Chapter-07-field-papers.rst:262 -msgid "*List Field Papers in Snapshots*" -msgstr "*Daftar hasil upload foto Field Papers*" - -# 3cd8e0ff071d4753b68d13f0c6e9b7ca -#: ../../source/training/osm/Chapter-07-field-papers.rst:264 -msgid "" -"To open Field Papers in JOSM, we need copy the photo ID from the Field " -"Papers that have been scanned. We can get the ID from the snapshot URL at " -"the Field Papers website. Click on the image until the url appears as shown " -"below, then copy the URL for example: *http://fieldpapers.org/snapshots/" -"cdq5bfq4#17/-6.81299/107.61451*" -msgstr "" -"Untuk membuka Field Paper di JOSM, kita perlu menyalin ID foto dari Field " -"Papers yang telah di-scan. Kita bisa mendapatkan ID dari URL pada situs " -"Field Papers. Klik pada gambar sampai URL tersebut muncul seperti di bawah " -"ini, kemudian salin URL. Berikut contohnya: *http://fieldpapers.org/" -"snapshots/cdq5bfq4#17/-6.81299/107.61451*" - -# 7b9d8a673e08470cb3e0e5a9a5627f42 -#: ../../source/training/osm/Chapter-07-field-papers.rst:271 -msgid "*URL from Snapshot Field Papers*" -msgstr "*URL dari Foto Field Papers*" - -# 299ec47fc982466d989f1b61b8c40cdc -#: ../../source/training/osm/Chapter-07-field-papers.rst:273 -msgid "Copy the URL by selecting it and pressing :kbd:`CTRL + C`." -msgstr "*Copy* URL dengan memilihnya dan tekan :kbd:`CTRL + C`. " - -# 979743e657d24958b5fdad4741d5d4fe -#: ../../source/training/osm/Chapter-07-field-papers.rst:275 -msgid "" -"Open JOSM and make sure the Field Papers plugin is listed in the menu on the " -"top of toolbar. Click :menuselection:`Field Papers ‣ Scanned Map...`" -msgstr "" -"Buka JOSM dan pastikan plugin Field Papers sudah ada berada di atas menu " -"toolbar. Klik :menuselection:`Field Papers ‣ Scanned Map...`" - -# 51368834dc514c1293709be80093d96a -#: ../../source/training/osm/Chapter-07-field-papers.rst:281 -msgid "*Field Papers Menu in JOSM*" -msgstr "*Menu Field Papers di JOSM*" - -# 34556e571cd94724beaf7e7ed2a87c41 -#: ../../source/training/osm/Chapter-07-field-papers.rst:283 -msgid "" -"Then paste the URL that we have copied from the Field Papers site by " -"pressing :kbd:`Ctrl + V` on your keyboard." -msgstr "" -"Kemudian paste URL yang telah di-copy dari situs Field Papers dengan tekan :" -"kbd:`Ctrl + V` pada keyboard Anda." - -# 3c6d5538b2be4c80a10c3a897d2424e7 -#: ../../source/training/osm/Chapter-07-field-papers.rst:288 -msgid "*Input Field Papers URL in JOSM*" -msgstr "*Memasukkan URL Field Papers di JOSM*" - -# 9451a9188c7040189f85824f8a25237d -#: ../../source/training/osm/Chapter-07-field-papers.rst:290 -msgid "Click :guilabel:`OK`." -msgstr "Klik :guilabel:`OK`." - -# c4537eb60e2f45b2b50e6a4df984e5a5 -#: ../../source/training/osm/Chapter-07-field-papers.rst:292 -msgid "" -"If everything goes well, the Field Papers will open in JOSM. The next " -"module, we can see how to add objects from the scanned Field Papers to " -"OpenStreetMap." -msgstr "" -"Jika semuanya berjalan dengan baik, Anda seharusnya melihat Field Paper Anda " -"terbuka di dalam JOSM. Pada bab selanjutnya, kita akan melihat bagaimana " -"cara menambahkan objek-objek dari hasil scan Field Papers ke OpenStreetMap." - -# d053eedb884b49108ab873106f469900 -#: ../../source/training/osm/Chapter-07-field-papers.rst:301 -msgid "" -"Also note that you can use scanned Field Papers in other online editors such " -"as ID Editor or Potlatch2 by clicking the link :guilabel:`Edit in... ID` or :" -"guilabel:`Edit in... Potlatch` on page Field Papers that have been scanned." -msgstr "" -"Perhatikan pula bahwa Anda dapat juga menggunakan Field Papers yang telah " -"anda scan pada editor online yang lain seperti iD atau Potlatch2 dengan " -"mengklik tautan :guilabel:`Edit in... ID` atau :guilabel:`Edit in Potlatch` " -"di halaman Field Papers yang telah discan." - -# b81612d9fe484e6d8ba6c194da26e7b4 -#: ../../source/training/osm/Chapter-07-field-papers.rst:308 -msgid "*Editing Field Papers with iD Editor*" -msgstr "*Editing Field Papers dengan iD Editor*" - -# da15a028df13403d9f5338b1d7652ee1 -#: ../../source/training/osm/Chapter-07-field-papers.rst:313 -msgid "*Interface Editing OSM data on iD Editor*" -msgstr "*Tampilan editing data OSM di iD Editor*" - -# 89e2c6b018b44512b29dcca5dfa36b44 -#: ../../source/training/osm/Chapter-07-field-papers.rst:316 -msgid "Excercise!" -msgstr "Ulangi!" - -# 9c42a3b237b440358592dbf1cb2a85ce -#: ../../source/training/osm/Chapter-07-field-papers.rst:318 -msgid "" -"After you add your changes to OSM, they will be saved to the OSM servers. " -"When you want add some information to your map, you can print a Field Paper " -"that includes the changes you made. As this process is repeated, and you " -"acquire more details, the map will steadily improve!" -msgstr "" -"Setelah Anda menambah perubahan Anda ke OSM, mereka akan tersimpan ke server " -"OSM. Kemudian pada saat Anda ingin meningkatkan informasi peta, Anda dapat " -"mencetak sebuah Field Paper yang mencakup perubahan yang Anda buat. Proses " -"ini diulang, peta akan menjadi lebih baik dan lebih baik lagi, semakin " -"banyak Anda memetakan!" - -# a469f1987fa74e91973c3e69d87e8c92 -#: ../../source/training/osm/Chapter-07-field-papers.rst:323 -msgid "Summary" -msgstr "Ringkasan" - -# 8f3b3ab4f9d8428e92bf0a162a087f5f -#: ../../source/training/osm/Chapter-07-field-papers.rst:325 -msgid "" -"In this module, You have learned how to use Field Papers and how Field " -"Papers works as a data collection device. You have learned how to print, " -"mapping, and scans Field Paper, and how you can use them to improve " -"OpenStreetMap." -msgstr "" -"Pada bab ini, Anda telah mempelajari proses menggunakan Field Papers dan " -"bagaimana mereka bekerja sebagai sebuah koleksi data. Anda telah mempelajari " -"bagaimana mencetak, memetakan, dan men-scan sebuah Field Paper, dan " -"bagaimana Anda dapat menggunakan mereka untuk meningkatkan OpenStreetMap." - -# 57b9783a7f584554880affa5f6d4bc7a -#: ../../source/training/osm/Chapter-07-field-papers.rst:329 -msgid ":ref:`Go to next chapter --> `" -msgstr ":ref:`Pergi ke bab selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-08-conflict-resolution-in-osm.po b/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-08-conflict-resolution-in-osm.po deleted file mode 100644 index e72fa426..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-08-conflict-resolution-in-osm.po +++ /dev/null @@ -1,481 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Richard Duivenvoorde , 2016\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# dd25d1d07c3e4ad48d6e3a49f9d29d3e -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:6 -msgid "Chapter 8: Conflict Resolution in OSM" -msgstr "Bab 8: Penyelesaian Konflik di OSM" - -# 9e96445897404088bc35f7b5b0057f3c -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 6fcc1cfb2eb748a792a55885e854cf2f -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:10 -msgid "Finding and resolving conflicts in JOSM" -msgstr "Menemukan dan menyelesaikan konflik di JOSM" - -# 3124514c06e7445288e53a3dd7a9a15a -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:12 -msgid "Learning ways to avoid conflicts (using tasking manager)" -msgstr "Mengetahui cara-cara menghindari konflik (menggunakan tasking manager)" - -# 4187456375424e9e95dc2a6ee7dcdced -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:15 -msgid "8.1 Conflict in JOSM" -msgstr "8.1 Konflik di JOSM" - -# e9303292e7694a688ffbb42458bf212f -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:17 -msgid "" -"When we are working with JOSM and about to upload the changes, sometimes we " -"encounter this message:" -msgstr "" -"Ketika Anda sedang bekerja di JOSM dan ketika Anda mengupload peta yang " -"telah diedit, Anda mendapatkan pesan seperti ini:" - -# bb03c01bc03242be95a9ce88649b48ec -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:22 -msgid "" -"This happens when you download a group of data that includes a particular " -"point, let’s say point A. At the same time there are other people who also " -"downloaded point A, making changes to it and upload it back to OSM. Now when " -"you try to upload your changes (including point A) with your version, the " -"version is already different from the server version. This causes the server " -"to be confused on which version of Point A that is correct." -msgstr "" -"Hal yang terjadi ketika Anda mendownload sekelompok data yang termasuk " -"sebuah point/node, kita sebut titik A. Kemudian saat Anda sedang mengedit, " -"ada orang lain yang juga mendownload titik A, mengubahnya, dan menyimpan " -"kembali perubahannya pada OpenStreetMap. Sekarang saat Anda mencoba " -"mengupload perubahan (termasuk titik A) dengan versi Anda akan berbeda " -"dengan yang tesimpan pada OSM. Oleh karena itu, JOSM tidak tahun versi mana " -"dari titik A yang benar." - -# cb161e2a67724db6941771120e310935 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:28 -msgid "8.1.1 Resolving a Conflict" -msgstr "8.1.1 Cara Menyelesaikan Konflik" - -# e9ae38a24fa2440b8ac8c1e01fea3221 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:30 -msgid "" -"The process of resolving conflicts in JOSM is pretty simple, even though it " -"might be confusing at first. Basically, all conflicts that occur in JOSM " -"will leave you with two options – Your Version of the object and Their " -"Version of the object that is on the server. You just need to choose which " -"version you want to use, -your version or the new version in the server." -msgstr "" -"Proses dalam menyelesaikan konflik cukup sederhana di JOSM, walaupun awalnya " -"membingungkan. Pada dasarnya, untuk semua konflik yang terjadi JOSM akan " -"menyediakan dua pilihan - objek versi Anda dan satu lagi versi orang lain " -"yang berada di server. Anda harus memilih apakah ingin tetap menggunakan " -"versi Anda atau versi baru di server." - -# 6355b5b92e7b4e8eafb63855c3ec49d5 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:35 -msgid "" -"When a conflict window appears, you might want to choose the “Syncronize " -"node ... only”, but this will only resolve the conflict that occurs on the " -"particular node. That is why it is better to choose the :guilabel:" -"`Synchronize Entire Dataset` option so that you can resolve the conflicts " -"all together." -msgstr "" -"Ketika jendela konflik muncul, Anda mungkin akan memilih tombol “Hanya " -"mensinkronkan ...” , tetapi ini hanya akan memperbaiki konflik yang terjadi " -"pada node tertentu. Oleh karena itu sebaiknya Anda memilih tombol :guilabel:" -"`Sinkronisasi seluruh dataset` agar anda dapat menyelesaikan seluruh konflik " -"sekaligus." - -# 43fa156845e64bcb896273edf8a91432 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:42 -msgid "" -"When you click on that button, there will be a new window that includes all " -"of the conflict details. The conflict messages might seems complicated, but " -"actually they are quite simple. You will know the type of conflict you " -"encounter by indicating where the symbol" -msgstr "" -"Ketika Anda klik tombol tersebut, akan muncul jendela baru yang yang " -"berisikan detail konflik Anda. Pesan konflik tersebut mungkin terlihat " -"rumit, namun sebenarnya sederhana. Anda akan tahu jenis konflik apa yang " -"Anda dapatkan ditunjukkan oleh simbol" - -# 738690d7c80e47da98754c461ce78128 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:49 -msgid "" -"located. Conflict in this example indicating that it is on the properties, " -"such as location or the object’s position. You can see that the coordinate " -"and state are deleted." -msgstr "" -"Konflik dalam contoh ini mengacu pada properti, seperti lokasi dan " -"keberadaan objek. Inilah sebabnya mengapa koordinat dan negara yang dihapus " -"terdaftar." - -# 04e0404a1b0947dba0aa1f142fae052d -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:52 -msgid "**Types of Conflict:**" -msgstr "**Jenis Konflik**" - -# 3d6f33ae9f07495992268fd31daf67ae -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:54 -msgid "**Properties:**  Object has been moved (coordinate) or deleted" -msgstr "**Properti:** Objek telah dipindahkan (koordinat) atau dihapus" - -# 43c262e27eb140bebf8191a685307b22 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:56 -msgid "**Tag**:  Object has different tags on both version" -msgstr "**Tag:** Objek memiliki tag yang berbeda di kedua versi" - -# 392909b703f849439e1a732c7aca8704 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:58 -msgid "**Node**:  There are differences on the node list" -msgstr "**Node:** Ada perbedaan dalam daftar node" - -# e36d439d7f0e4bc5ab5291aee72f9a48 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:60 -msgid "**Members**: There are differences regarding the members of a relation" -msgstr "**Anggota:** Ada perbedaan pada daftar anggota dalam relasi" - -# e2c0927f827d426ca810e2a010c621cf -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:65 -msgid "" -"Conflict just shows up on two different edits at the same time. If there are " -"three or more different edits happen at the same time, chain of conflicts " -"will occurs. You can only solve two conflicts at the same time. You can " -"choose Your Version, Their Version, or merge the two changes." -msgstr "" -"Konflik hanya muncul pada dua edit yang berbeda pada saat yang bersamaan. " -"Jika ada tiga atau lebih edit yang berbeda pada saat bersamaan, maka rantai " -"konflik akan bermunculan. Anda hanya dapat menyelesaikan dua konflik pada " -"saat yang sama. Anda dapat memilih atau menggabungkan dua konflik pada saat " -"yang sama. Anda dapat memilih versi Anda, versi yang lain, ataupun " -"menggabungkan kedua perubahannya." - -# fc3cb8c6e3f3403f9d5204d46bd7a3eb -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:69 -msgid "" -"In this example, you don’t have option to merge the changes. Click on the :" -"guilabel:`My Version` column if you are sure that your version is the right " -"one. Click on :guilabel:`Their Version` if you think that other mapper’s " -"edit should be retained." -msgstr "" -"Dalam contoh ini Anda tidak memiliki pilihan untuk penggabungan. Klik pada " -"kolom pertama, atau :guilabel:`Versi saya` jika Anda yakin bahwa editan Anda " -"lebih tepat. Klik pada :guilabel:`Versi mereka` jika Anda berpikir bahwa " -"versi edit orang lain lebih baik." - -# cb7140beca92405b85168a373aba10d7 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:76 -msgid "" -"After you choose which version is best, click on the :guilabel:`Apply " -"Resolution` as shown in the figure above. After you finished resolving all " -"the conflicts, you can start to upload your changes." -msgstr "" -"Setelah Anda memilih versi mana yang menurut Anda paling baik, kemudian " -"klik :guilabel:`Terapkan Penyelesaian` seperti ditunjukkan gambar di bawah. " -"Setelah Anda selesai menyelesaikan semua konflik, Anda dapat memulai untuk " -"upload hasil perubahan data OSM Anda." - -# 760f562b14bc4ae4b7bde2727fced4dc -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:79 -msgid "" -"Do some more editing. Then click :guilabel:`Upload`. You will get a pop-up " -"like the one below that says:" -msgstr "" -"Lakukan editing lebih lanjut, Kemudian klik :guilabel:`Perbarui data`. Anda " -"akan mendapatkan tampilan jendela seperti ini:" - -# 8fb0b1832a604c1189db3b8112a5b884 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:84 -msgid "On your Windows menu you have a **Conflict List Dialog**" -msgstr "Pada jendela menu, Anda memiliki sebuah **Daf­ tar Konflik** " - -# b1ba6c6d2b694f01a66255a31901eb44 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:89 -msgid "" -"This window displays a list of conflicts. The total number of unresolved " -"conflicts is shown in the header. You can select or resolve a conflict by " -"clicking on it. This is useful when you have many conflicts to deal with." -msgstr "" -"Jendela ini menampilkan daftar konflik. Jumlah konflik yang belum " -"terselesaikan ditunjukan pada bagian jendela tersebut. Anda dapat memilih " -"dan menyelesaikan konflik dengan mengklik salah satunya. Ini sangat berguna " -"apabila Anda berhadapan dengan banyak konflik." - -# 6cb7fb3bfe7441de8bc53935bc7e0826 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:95 -msgid "" -"You cannot upload your changes until this list is empty and all conflicts " -"have been resolved." -msgstr "" -"Anda tidak dapat mengupload perubahan sampai jendela ini kosong dan semua " -"konflik harus diselesaikan semua." - -# ad21a6f1124f455ab0db274541051baa -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:99 -msgid "8.1.2 Tips to Avoid Conflict" -msgstr "8.1.2 Cara Menghindari Konflik" - -# 72883ddea8e94b928a78b35d1ae19b3e -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:101 -msgid "**Upload frequently**" -msgstr "**Upload Hasil Editan Secara Berkala**" - -# cfa8454fb18b419385e21481c0441f1a -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:103 -msgid "" -"To minimise the chance and number of conflicts it is important to upload " -"your edits regularly. Conflicts appear more frequently for those who tend to " -"save the area they are working on in their local computer, but wait a while " -"to upload their changes. It is best to download the area you are working on, " -"edit it and then immediately upload it. The longer the time between " -"downloading data and uploading changes to that data, the more likely it is " -"that someone has edited something in the meantime." -msgstr "" -"Untuk meminimalkan perubahan dan sejumlah konflik, sangat penting untuk " -"mengupload editan Anda secara rutin. Konflik muncul lebih banyak bagi mereka " -"yang mengedit seluruh wilayahnya terlebih dahulu dan menunda untuk " -"menguploadnya. Hal yang terbaik adalah, download wilayah yang Anda " -"kerjakan, edit, kemudian upload secepatnya secara berkala. Semakin lama " -"waktu antara mendownload data dengan mengupload perubahannya, maka semakin " -"besar kemungkinan seseorang telah mengedit/mengubah data tersebut pada saat " -"itu." - -# bae130aa169b49df90d78bfa994f578d -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:109 -msgid "**ONLY edit in the area you download**" -msgstr "**Mengedit pada Area yang Anda Download**" - -# 358ae60a0aa7442083093d781745474a -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:111 -msgid "" -"Editing in the specific area you have downloaded minimises the risk of " -"conflict. Make sure you do not edit outside of the area that you have " -"downloaded. You can easily see the areas outside your download area in JOSM, " -"because the background is made up of diagonal lines instead of being solid " -"black." -msgstr "" -"Mengedit di area yang spesifik mengurangi resiko konflik. Anda harus yakin " -"bahwa Anda tidak mengedit diluar area yang telah Anda download dan Anda bagi " -"berdasarkan Task Manager. Langkah ini dapat menghindari banyak pengguna " -"mengedit wilayah yang sama. Anda dapat dengan mudah melihat mana daerah luar " -"dari daerah yang Anda download di JOSM, karena latar belakang daerah luat " -"tersebut terdapat garis-garis diagonal, bukan hanya warna hitam." - -# f5e3f3e4c5e14e9c901e43b098580353 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:119 -msgid "**Using the tasking manager**" -msgstr "**Menggunakan Tasking Manager**" - -# a8b36fc9f1cd415992a540c6c5d2abae -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:121 -msgid "" -"The OSM Tasking Manager is a **tool** that mappers can use to **sort an area " -"into a grid**, and work together **to map in an organised way**. Apart from " -"being more organised, the tasking manager is also one way to avoid editing " -"conflicts, because it helps prevent more than one person from editing the " -"same area at the same time." -msgstr "" -"HOT Tasking Manager adalah sebuah **alat** dimana pembuat peta dapat membagi " -"sebuah daerah menjadi banyak grid, lalu dapat bekerja bersama pembuat peta " -"lainnya untuk meme­takan suatu daerah dengan cara yang lebih terorganisir. " -"Selain lebih terorganisir, tasking manager juga merupakan salah satu cara " -"untuk menghindari konflik, karena tidak memungkinkan lebih dari satu orang " -"memetakan satu area yang sama." - -# aa67252f78da4c449bbf24b6ea1b01bc -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:126 -msgid "" -"The way the tasking manager operates is every mapper on a project selects " -"one box from a grid overlaid on the mapping project area. This box " -"represents a subsection of the mapping project area. When a mapper finishes " -"mapping all features in their box, they can mark it as complete. This way, a " -"team distributed in different areas can coordinate and work together to " -"finish mapping in that grid." -msgstr "" -"Para pelaku pemetaan di area tersebut dapat memilih sebuah kotak pada grid " -"yang ingin dipetakan, dan ketika mereka selesai memetakannya, mereka dapat " -"menandai kotak tersebut sebagai komplit atau sudah selesai dipetakan. Dengan " -"cara ini, sebuah tim yang berisi banyak orang yang tersebar di berbagai " -"daerah dapat berkoordinasi bersama untuk menyelesaikan pemetaan pada grid " -"tersebut." - -# 238509650217406d91c625a8c16b77ce -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:131 -msgid "To see how tasking manager works, let’s practice a bit more." -msgstr "" -"Untuk melihat bagaimana tasking manager bekerja, marilah kita lihat lebih " -"dekat." - -# 0399dac975d54b5fbde0e99844c47ff0 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:133 -msgid "" -"Open your internet browser and go to `tasks.hotosm.org `_. You will see a page like this:" -msgstr "" -"Bukalah browser internet Anda dan buka website `tasks.hotosm.org `_. Anda akan melihat sebuah halaman seperti ini:" - -# 46652397d4de4ee394aa43b37ba21b61 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:139 -msgid "Click :guilabel:`Log in to OpenStreetMap`" -msgstr "Klik :guilabel:`Log in to OpenStreetMap`" - -# 04caa58375bb48669034ea9ac1042cd1 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:144 -msgid "" -"Here you must agree to allow this application some access to your OSM " -"account. To do so, click :guilabel:`Save Changes`." -msgstr "" -"Disini Anda harus menyetujui untuk memperbolehkan aplikasi ini mendapatkan " -"akses kedalam akun OSM anda. Jika Anda setuju, klik :guilabel:`Simpan " -"Perubahan`." - -# 2ab52c0649d9447faf78839828ff2e1a -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:149 -msgid "" -"Now you will see a list of projects that currently active from many country " -"where they doing coordination for mapping activities." -msgstr "" -"Sekarang Anda akan melihat sebuah daftar berisi proyek-proyek yang sedang " -"ada saat ini dari banyak negara yang melakukan koordinasi untuk melakukan " -"aktivitas pemetaan." - -# ecb035d3a7ae4281a54d475edd4767d2 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:154 -msgid "" -"Click on a project to see further information related to the task as shown " -"in the figure below." -msgstr "" -"Klik pada salah satu proyek untuk melihat informasi lebih lanjut seperti " -"ditunjukkan pada gambar di bawah." - -# 1499bf14033f4ce6be203481e6e28f8e -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:159 -msgid "" -"This page shows you everything you need to know about the project. On the " -"left side of the page is a description of the mapping project and how it is " -"being organised. You can click on the different tabs to get more " -"information. On the right side is a grid showing the area to be mapped. Red " -"grid squares have been completed, green squares have been completed and " -"checked by another person, and the remaining squares still need to be mapped " -"or are being worked on." -msgstr "" -"Halaman ini menunjukkan semua hal yang Anda perlu ketahui mengenai proyek " -"tersebut. Pada sebelah sisi kiri halaman adalah sebuah deskripsi dari proyek " -"pemetaan tersebut dan bagaimana mengaturnya. Anda dapat klik pada beberapa " -"tab yang ada untuk melihat informasi lebih lanjut. Pada sisi kanan terdapat " -"sebuah grid yang menunjukkan area yang sedang dipetakan. Kotak grid yang " -"berwarna merah memiliki arti bahwa daerah tersebut telah selesai dipetakan, " -"kotak berwarna hijau telah selesai dipetakan dan telah dilakukan pengecekan " -"oleh orang lain dan divalidasi datanya, kotak dengan pinggiran berwarna " -"kuning berarti sedang ada orang lain yang mengerjakan peta pada area " -"tersebut, sedangkan kotak kosong lainnya belum ada atau belum selesai " -"dipetakan." - -# 42fdc06a32704b249298f513592757a7 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:165 -msgid "In the right side show an area that currently being map." -msgstr "" -"Pada sisi kanan terdapat sebuah grid yang menunjukkan area yang sedang " -"dipetakan." - -# 9d64d9cfe15048e4b512e55b80a3277b -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:167 -msgid "**Orange** box represent an area that already mapped" -msgstr "kotak **Orange** menunjukkan sebuah area yang siap dipetakan" - -# 7d53410fdfb1478db4222948962e2449 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:169 -msgid "" -"**Green** box represent an area that already mapped and validated by other " -"people" -msgstr "" -"kotak **Hijau** menunjukkan sebuah area yang telah selesai dipetakan dan " -"telah divalidasi oleh orang lain" - -# 56fbf81acbee447f919c69e9ba299d21 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:171 -msgid "" -"**Orange outline** box represent there is someone who currently map in that " -"area" -msgstr "" -"kotak **Garis berwarna kuning** menunjukkan adanya orang lain yang " -"mengerjakan peta pada area tersebut" - -# 6c548dcde36a43cf8c2c2ee9f8e43469 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:173 -msgid "**Grey/empty** box represent the task is unfinished." -msgstr "" -"Kotak **kosong/abu-abu** menunjukkan pekerjaan belum selesai dipetakan." - -# 589a4e8127e4418aa850b3e35364ebb6 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:175 -msgid "" -"You can click on tab :guilabel:`Contribute`, with click on :guilabel:`Take a " -"task at random` if you want to pick task randomly or you can select a task " -"manually in slippy map and then click :guilabel:`Start Mapping`" -msgstr "" -"Anda dapat klik pada tab :guilabel:`Contribute`, dengan melakukan klik " -"pada :guilabel:`Take a task at random`. Jika Anda ingin mengambil sebuah " -"kotak grid secara acak atau Anda ingin memilih sebuah pekerjaan secara " -"manual pada *slippy map* dan kemudian klik :guilabel:`Start Mapping` " - -# c31ae046edc24d44995909e717bb2b8d -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:178 -msgid "" -"After that select :guilabel:`Edit with JOSM` (You need to open JOSM and " -"enable remote control first)" -msgstr "" -"Setelah pilih :guilabel:`Edit with JOSM` (Jika tidak berhasil silahkan buka " -"JOSM dan aktifkan memperbolehkan remote kontrol digunakan)" - -# c90ea267797045c589ca96720be2d7b1 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:183 -msgid "" -"You can also open another editing software such as iD Editor, Potlach 2 and " -"Field Papers" -msgstr "" -"Anda juga dapat membuka perangkat lunak editing lainnya seperti iD Editor, " -"Potlach 2, dan Field Papers" - -# 40c40f214f9f4fc8ab321e915f3a1e7f -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:185 -msgid "" -"After you finish editing and upload the data into OSM server, you need to go " -"back to the tasking manager and click :guilabel:`Mark task as done` making " -"sure to add a changeset comment for the edits you created. It’s important to " -"let other mappers know that you have finished the grid square. If you cannot " -"finish the task, click :guilabel:`Unlock it` so another mapper can finish " -"your task." -msgstr "" -"Ketika Anda selesai melakukan editing dan menguploadnya ke server OSM, Anda " -"dapat kembali ke tasking manager dan menambahkan komentar mengenai perubahan " -"yang Anda buat. Klik :guilabel:`Mark task as done` agar pembuat peta lainnya " -"tahu bahwa Anda telah menyelesaikan kotak grid tersebut. Jika Anda tidak " -"dapat menyelesaikan kotak tersebut, klik :guilabel:`Unlock it` sehingga " -"kotak tersebut dapat dikerjakan oleh pembuat peta lainnya." - -# cb83e955478940b698b17bf505de7de6 -#: ../../source/training/osm/Chapter-08-conflict-resolution-in-osm.rst:190 -msgid ":ref:`Go to next chapter --> `" -msgstr ":ref:`Pergi ke bab selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-09-inserting-tag.po b/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-09-inserting-tag.po deleted file mode 100644 index 66494502..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-09-inserting-tag.po +++ /dev/null @@ -1,342 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 1dc2b026be2b4674b7aae300cd094c51 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:6 -msgid "Chapter 9: Inserting Special Tag in JOSM" -msgstr "Bab 9: Memasukkan Tag Khusus di JOSM" - -# 3e6a48bc69ff452dbe557baa6bd36304 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 9e3627b4335844528254227ca52d4daf -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:10 -msgid "Be able to insert tag in iD Editor" -msgstr "Dapat memasukkan tag di iD Editor" - -# fd8317e550634472840daca7f6c0c585 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:11 -msgid "Be able to insert tag in JOSM" -msgstr "Dapat memasukkan tag di JOSM" - -# 0445349bdbd74395b90e2396627cbaef -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:12 -msgid "Understanding standard tags that are used in OpenStreetMap" -msgstr "Mengetahui tag-tag standar yang digunakan di OpenStreetMap" - -# 2050de8897354fbc94311febc98959e8 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:14 -msgid "" -"You understand how to add data in OpenStreetMap and how to maintain the " -"quality of existing data so that we can contribute better. In this training " -"we want the objects that we mapped in OpenStreetMap to also appear as an " -"article in Wikipedia. Therefore we need to insert some special tags so that " -"later, articles based on mapped objects, can be uniformly displayed and in " -"accordance with applicable rules." -msgstr "" -"Anda memahami bagaimana memasukkan data di OpenStreetMap serta dapat menjaga " -"kualitas data yang ada sehingga kita dapat berkontribusi dengan lebih baik. " -"Dalam pelatihan kali ini kita ingin agar objek-objek yang kita petakan di " -"OpenStreetMap dapat juga muncul di Wikipedia sebagai artikel. Oleh karena " -"itu kita membutuhkan untuk memasukkan beberapa tag khusus agar nantinya " -"artikel yang dibuat berdasarkan objek-objek yang dipetakan bisa seragam dan " -"sesuai dengan aturan yang berlaku." - -# 965efe769c844a90a129d406296b109c -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:20 -msgid "9.1 Inserting Tag in iD Editor" -msgstr "9.1 Memasukkan Tag di iD Editor" - -# 149bbe539c7849cbb961b3393fae22d0 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:22 -msgid "" -"When we want to add special tags in iD Editor we must ensure that we are " -"connected to the Internet. Here are the steps for inserting a tag in iD " -"Editor." -msgstr "" -"Ketika kita ingin menambahkan tag khusus di iD Editor kita harus memastikan " -"bahwa kita sudah terhubung oleh internet. Berikut adalah langkah-langkah " -"memasukkan tag di iD Editor." - -# ecb43745b8544348adeb1d3b18b35a20 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:25 -msgid "Open the site: `www.openstreetmap.org `_" -msgstr "Buka situs: `www.openstreetmap.org `_" - -# ebb35714e81349a1828c0a3941435865 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:27 -msgid ":guilabel:`Sign in` with your OSM account" -msgstr "Silahkan :guilabel:`sign up` dengan akun OSM Anda" - -# 2ea8a27bc6a5426baea8dc1f0258fc5c -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:29 -msgid "Select edit with :guilabel:`iD Editor`" -msgstr "Pilih edit dengan :guilabel:`iD Editor`" - -# 43c9c3a83c854a43a84617972ff7f648 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:31 -msgid "Select object that you want to add the tag" -msgstr "Pilih objek yang ingin Anda tambahkan tag nya" - -# c3dcc4fef1cb4c02bc190a5daa80daed -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:36 -msgid "*Display of tag in iD Editor*" -msgstr "*Tampilan tag di iD Editor*" - -# f26d080f899e466a8ee0e192a9c1220d -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:38 -msgid "" -"Then select :guilabel:`All tags` and click :guilabel:`+` and add tag that " -"you want." -msgstr "" -"Kemudian pilih :guilabel:`All tags` dan klik tanda :guilabel:`+` dan " -"masukkan tag yang Anda inginkan." - -# d48a5c3bee0544e0b5ee3310a38ee2b0 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:43 -msgid "*Tag box in iD Editor*" -msgstr "*Kotak tag di iD Editor*" - -# 5e0596ca7db8476c976fda4899e3ca58 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:45 -msgid "After that, let’s :guilabel:`Save` your changes." -msgstr "Setelah itu silahkan :guilabel:`Save` perubahan Anda." - -# 27f0c49ccd154b418215ac0d6ff25955 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:48 -msgid "9.2 Inserting Tag in JOSM" -msgstr "9.2 Memasukkan Tag di JOSM" - -# 28997d96e1044c028b823a062dcee4c8 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:50 -msgid "" -"Besides inserting a special tag to the object using iD Editor we can also " -"insert the tags to objects using JOSM. Basically inserting tags in JOSM " -"almost equal to iD Editor. Here are the steps:" -msgstr "" -"Selain menambahkan tag khusus terhadap objek meng- gunakan iD Editor kita " -"juga bisa menambahkan tag kepada objek menggunakan JOSM. Pada dasarnya " -"menambahkan tag di JOSM hampir sama dengan iD Editor. Berikut adalah " -"langkah-langkahnya :" - -# 02b8977a50e24a8c9d764ce701e6301b -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:53 -msgid "Open JOSM in your computer/laptop" -msgstr "Buka JOSM di komputer/laptop Anda" - -# e2d1ad14cfdb48df8ef888081584330f -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:55 -msgid "Download area you want to edit" -msgstr "Silahkan download area yang ingin Anda edit" - -# 766e90fc5f764f85a02f2cb190176fd2 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:57 -msgid "**Select the object** you want to add tags" -msgstr "**Pilih objek** yang ingin Anda tambahkan tag" - -# d63d277d3c13448a9aa72e79bc787922 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:59 -msgid "" -"Then click :guilabel:`Add` on properties box on the right side as shown in " -"the figure below" -msgstr "" -"Kemudian klik :guilabel:`Tambahkan` pada kotak properties di sebelah kanan" - -# 1108268ef1844010aa98ac63e8aabf21 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:64 -msgid "*Adding tag in JOSM*" -msgstr "*Menambahkan tag di JOSM*" - -# 9b399147b8794bb9adf276f9f1a25970 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:66 -msgid "Type the **tag** that you want to use as shown in the figure below:" -msgstr "" -"Ketikkan **tag** yang ingin Anda gunakan seperti ditunjukkan gambar di bawah " -"ini:" - -# 6ef0d496edea46e78c9fe03eb79617cb -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:71 -msgid "*Adding key and value box*" -msgstr "*menambahkan key dan value*" - -# 0b8bf7f5afa243b5a73810c04689e0af -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:73 -msgid "Then click :guilabel:`OK`" -msgstr "Kemudian klik :guilabel:`OK`" - -# cdc4142b5be54ac1b3219395085050a2 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:76 -msgid "9.3 Presets Standardization" -msgstr "9.3 Standarisasi Presets" - -# 7188bea5eb4d4abe9a0cf24c2c56d47e -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:77 -msgid "" -"OpenStreetMap allows all users to provide as many details as they can about " -"their map. This information can be imprinted on each object using the menu " -"presets available on OSM editor. We often find inconsistencies in the " -"provision of information on various objects. Therefore the presets help " -"standardization and uniformity of data." -msgstr "" -"OpenStreetMap memperbolehkan seluruh penggunanya untuk memberikan informasi " -"sebanyak-banyaknya mengenai peta mereka. Informasi ini dapat dicantumkan " -"pada tiap objek yang dipetakan menggunakan menu presets yang tersedia pada " -"editor OSM. Kita seringkali menemukan ketidakkonsistenan dalam pemberian " -"informasi pada berbagai objek. Oleh karena itulah dibuat standardisasi " -"presets dan keseragaman data." - -# 4f97570e413543ba8d17c4cff0f9f57e -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:81 -msgid "Menu Presets are made for these purposes:" -msgstr "Menu Presets dibuat dengan tujuan:" - -# 2e19b2c53e5c4a5a92e61bf7c3ad1514 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:83 -msgid "To ensure the stability (consistency) of data" -msgstr "Menjamin stabilitas (konsistensi) data" - -# 142508b2192d408894417b6023598eac -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:85 -msgid "To facilitate the search and processing data" -msgstr "Memudahkan pencarian dan pengolahan data" - -# 4bab65bb0c834ebf877e1fd54091fd37 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:87 -msgid "As a benchmark in the provision of information through the presets" -msgstr "Sebagai patokan dalam pemberian informasi melalui presets" - -# 92aa818f419445dbbfebabc1c3e2ba6d -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:89 -msgid "As a reference if you want to make improvements or validate the data" -msgstr "Sebagai acuan apabila ingin melakukan perbaikan atau validasi data" - -# 084b253308c64706ac0c269b27ed5c0b -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:91 -msgid "Maximizing the use of existing Internal Presets in JOSM" -msgstr "Memaksimalkan penggunaan Internal Presets yang sudah ada di JOSM" - -# 412774b36f2b41169679a04e17020fba -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:93 -msgid "Maximizing data visualization on OpenStreetMap website" -msgstr "Memaksimalkan visualisasi data pada website OpenStreetMap" - -# ef7f7abc4a624748be2e31f7d44a7344 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:95 -msgid "" -"By using presets, standardization is enforced for all OSM users that use the " -"standard menu preset when editing the map. One of the advantages of using " -"internal presets that are already available in JOSM is the object " -"visualization will render correctly on the OSM website." -msgstr "" -"Dengan adanya standardisasi preset ini, diharapkan seluruh pengguna OSM mau " -"menggunakan standard ini ketika melakukan editing. Salah satu keuntungan " -"menggunakan internal preset yang sudah tersedia pada JOSM adalah nantinya " -"visualisasi objek tersebut akan muncul pada website OpenStreetMap." - -# c573970f013c46cb81ee3e896c074010 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:99 -msgid "" -"To see standardized features used in JOSM menu presets please visit the " -"following address: `http://wiki.openstreetmap.org/wiki/Id:Map_Features " -"`_" -msgstr "" -"Untuk melihat standarisasi preset yang digunakan di menu presets JOSM, " -"silahkan kunjungi alamat berikut ini :\n" -"`http://wiki.openstreetmap.org/wiki/Id:Map_Features `_" - -# 7ac9a60edc2e4ea5b51e79d8af5f9911 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:105 -msgid "*Amenities list in Wiki OSM*" -msgstr "*Daftar amenitas di wiki osm*" - -# 1068f79ea4a244ba98022bc74fab1d3f -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:108 -msgid "Here are some informations that you should put into this project:" -msgstr "" -"Berikut beberapa informasi yang seharusnya Anda masukkan ke dalam project " -"kali ini adalah :" - -# 203d612f6aeb491aae86e810f158cfd0 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:110 -msgid "**Building**" -msgstr "**Bangunan**" - -# 7be8e1c6530545a98cbe14f18a2ebc7e -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:112 -msgid "Building name (key : name)" -msgstr "Nama bangunan (key : name)" - -# bfc19a82588b4584bb639fc7c5785cd4 -# 72782f2d24034d37b1341a6a6996c075 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:113 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:122 -msgid "Ownership (key : operator)" -msgstr "Kepemilikan (key : operator)" - -# 4d9f6d2933574996ba97e5a5dbe9e523 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:114 -msgid "Building type (key : amenity)" -msgstr "Jenis Bangunan (key : amenity)" - -# 61cbb2c7b73a4230a31167b521f3b09e -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:115 -msgid "Building level (key : building:levels)" -msgstr "Jumlah Lantai (key : building_levels)" - -# 4f4d4f7f98f34c37a9982c18bfaf73d4 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:116 -msgid "Address (key : addr:full)" -msgstr "Alamat (key : addr:full)" - -# f7f1437a8589465b88a8655a82d8d3fc -# 1069a95d5a32476c9cd0d6ba143cc1b3 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:117 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:124 -msgid "Reference (key : source:ref)" -msgstr "Referensi (key : source:ref)" - -# 7da629dd5df04d46a5a73bcfd62a26ab -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:119 -msgid "**Highway**" -msgstr "**Jalan Raya**" - -# abb09597f86f4ae28c0617d628a966a3 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:121 -msgid "Highway name (key : name)" -msgstr "Nama Jalan (key : name)" - -# ae7d4ce9364e40eeb7a40fc7bb6737d2 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:123 -msgid "Highway type (key : highway)" -msgstr "Tipe Jalan (key : highway)" - -# 4dd98194e33a496ab8c461cf5db8247d -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:125 -msgid "Highway width (key : width)" -msgstr "Lebar Jalan (key : width)" - -# b4be34e621af4f18af8f849c2d1c3a62 -#: ../../source/training/osm/Chapter-09-inserting-tag.rst:127 -msgid ":ref:`Go to next chapter --> `" -msgstr ":ref:`Pergi ke bab selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-10-imagery-offset.po b/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-10-imagery-offset.po deleted file mode 100644 index e47e7b9e..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-10-imagery-offset.po +++ /dev/null @@ -1,254 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Dewi Sulistioningrum , " -"2016\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# cfe12206b86c4fc489b2e1dcae62c6a5 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:6 -msgid "Chapter 10: Imagery Offset" -msgstr "Bab 10: Pergeseran Citra Satelit" - -# 6ad92495e25540d38d2fde6a5cf2d742 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 41be876735b649cd9046a2c90a1771fc -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:10 -msgid "Understanding definition of Imagery Offset" -msgstr "Memahami pengertian pergeseran citra satelit" - -# ed9ea07b930241cf97fdec7a51cc1ba4 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:11 -msgid "How to adjust the Imagery Offset" -msgstr "Bagaimana menyesuaikan pergeseran citra satelit" - -# 6df098a94ca8444da175587578f51e83 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:14 -msgid "10.1 Overview of Imagery Offset" -msgstr "10.1 Ulasan Singkat Pergeseran Citra Satelit" - -# a501e0c165a5486ab0af00db19fdcab1 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:16 -msgid "" -"Using aerial imagery is the most widely used approach to mapping in " -"OpenStreetMap. Mappers typically use Bing Satellite, or imagery from another " -"provider as a background layer while mapping. We have already seen this in " -"previous sections." -msgstr "" -"Menggunakan citra satelit merupakan pendekatan yang paling sering digunakan " -"dalam membuat peta di OpenStreetMap. Pembuat peta biasanya menggunakan citra " -"satelit Bing atau citra satelit dari penyedia yang lain sebagai latar " -"belakang ketika membuat peta. Kita sudah mempelajari ini pada bab sebelumnya." - -# 494b1592175345fa95662c21996df8e3 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:20 -msgid "" -"Imagery providers usually do a pretty good job of georeferencing their " -"imagery, but occasionally the images can be out of position. This is " -"particularly true in hilly or mountainous areas, where it can be difficult " -"to stretch a flat image over an area of the Earth with many contours. When " -"you load imagery in JOSM, it can sometimes be ten meters or more from its " -"true position. This is called imagery offset." -msgstr "" -"Penyedia layanan citra satelit biasanya telah melakukan georeferensi citra " -"satelit mereka, tetapi terdapat beberapa citra satelit yang posisinya tidak " -"sesuai. Ini biasanya terjadi di daerah berbukit atau pegunungan, dimana ini " -"sulit untuk menarik gambar datar sesuai permukaan Bumi yang memiliki kontur. " -"Ketika Anda memuat citra satelit di JOSM, terkadang mengalami pergeseran " -"sejauh sepuluh meter atau lebih dari posisi sebenarnya. Ini yang dinamakan " -"pergeseran citra satelit." - -# 838c0827a5c3461fbd8fcaa71cfdbfba -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:25 -msgid "" -"We’ve learned about two major ways of making maps – one is by utilizing " -"aerial imagery to identify features on the ground, and another is by using " -"GPS to record tracks and waypoints and then add them to OpenStreetMap. The " -"advantages of aerial imagery is obvious. It is easier for you to see the " -"whole picture, to observe various details from the image, consider your " -"knowledge of the area, and easily trace roads, buildings, and areas." -msgstr "" -"Kita telah mempelajari tentang dua cara untuk membuat peta – pertama dengan " -"menggunakan citra satelit untuk mengidentifikasi kenampakan di permukaan " -"Bumi, dan salah satunya menggunakan GPS untuk merekam trek dan *waypoint* " -"dan kemudian ditambahkan ke OpenStreetMap. Banyak sekali keuntungan dalam " -"penggunaan citra satelit. Ini akan memudahkan Anda melihat gambar secara " -"keseluruhan, untuk mengamati berbagai detail dari gambar tersebut, Anda " -"mendapatkan pengetahuan tentang area tersebut, dan memudahkan kita dalam " -"menggambar jalan, bangunan, dan area." - -# f3c8c036d9f54fd7afc3a2614da7c5b3 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:29 -msgid "" -"One key advantage of GPS, is that it doesn’t suffer from offset like " -"imagery. A GPS will always provide you with a correct latitude and " -"longitude. The only exception is when the satellite signals are interrupted " -"by high buildings and mountains, but in this case it is easy to recognize " -"the error. Showing the GPS track in this image, compared with Bing aerial " -"imagery layer in the below figure:" -msgstr "" -"Salah satu keunggulan utama dari GPS, bahwa ini lebih baik dibandingkan " -"dengan citra satelit. Sebuah GPS akan selalu memberikan posisi lintang dan " -"bujur yang benar. Satu-satunya pengecualian adalah ketika sinyal satelit " -"terganggu oleh bangunan tinggi dan pegunungan, tetapi dalam kasus ini sangat " -"mudah untuk dikenali kesalahannya. Menampilkan trek GPS pada gambar ini, " -"kemudian dibandingkan dengan *layer* citra satelit Bing seperti gambar di " -"bawah:" - -# 3fe88570202c4e86837c50b37c3774dc -# e0b7ca9db0d844bcadcbd975cf806a1c -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:36 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:66 -msgid "*Imagery Offset*" -msgstr "Pergeseran citra satelit" - -# 79993d163a2d4cfb882321d57de7a901 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:38 -msgid "" -"It is clear that the GPS track is likely to be accurate and the satellite " -"imagery beneath it is out of place." -msgstr "" -"Dengan begitu kita akan tahu bahwa trek GPS akurat dan citra satelit " -"dibawahnya mengalami pergeseran." - -# 397ecf05f0cd4e458beeb8de273c765e -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:40 -msgid "" -"So now we must ask, “if the imagery may be out the place, how can we still " -"use it and make accurate maps?”" -msgstr "" -"Sekarang kita pasti bertanya, \"jika citra satelit mengalami pergeseran, " -"bagaimana kita dapat menggunakan dan membuat peta yang akurat?\"" - -# e7e0d7da189945a5816112c55d8ff23c -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:43 -msgid "10.2 CORRECTING IMAGERY OFFSET" -msgstr "10.2 Memperbaiki Pergeseran Citra Satelit" - -# a3299a239fd044c69c87e0dd7a431a0e -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:45 -msgid "" -"The best references for adjusting imagery are GPS tracks that follow roads. " -"And the more GPS tracks that you have to reference, the more accurate you " -"will be able to align your imagery. Since OpenStreetMap users often upload " -"their GPS tracks to the OSM database, we can download them and use them to " -"align our imagery." -msgstr "" -"Salah satu referensiterbaik untuk mengatur citra satelit adalah menggunakan " -"trek GPS yang mengikuti jalan. Semakin banyak trek GPS yang Anda miliki " -"untuk referensi, semakin akurat Anda untuk memperbaiki citra satelit. Saat " -"ini pengguna OpenStreetMap sering kali mengunggah trek GPS mereka ke " -"database OSM, sehingga kita dapat mengunduhnya dan menggunakan untuk " -"memperbaiki citra satelit. " - -# 09df8cf4f55a4f16bbe157cbe02857a0 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:49 -msgid "Click on the :guilabel:`Download` button." -msgstr "Klik pada tombol :guilabel:`Download`" - -# f73f57cacebc4b609825736d37685f06 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:54 -msgid "" -"Check the box next to :guilabel:`Raw GPS Data` near the top of the Download " -"window. Select your area and click :guilabel:`Download`." -msgstr "" -"Centang kotak di samping :guilabel:`Data GPS` di bagian atas jendela " -"Download. Pilih area Anda dan klik :guilabel:`Download`." - -# 0f9ff72b4350463cb455e1e966cd5155 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:60 -msgid "" -"This will download an additional layer to JOSM containing GPS tracks. " -"Depending on how many tracks have been uploaded by OSM users, you may see " -"few tracks (or even no tracks):" -msgstr "" -"Ini akan mendownload layer tambahan di JOSM yang terdiri dari track GPS. " -"Tergantung dari seberapa banyak track yang sudah diupload oleh pengguna OSM, " -"Anda mungkin akan melihat beberapa track (bisa juga tidak ada track GPS sama " -"sekali):" - -# 55df30b222e94c5daf65b81037782287 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:68 -msgid "" -"To adjust an imagery layer, click on the :guilabel:`Adjust imagery offset` " -"button at the top of JOSM." -msgstr "" -"Untuk mengatur citra satelit, klik pada tombol :guilabel:`Atur Offset Citra` " -"di bagian atas JOSM." - -# e0b0e8d3a88e46278c8429fb01a70675 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:73 -msgid "" -"Ignoring the box that pops up, use your mouse to drag the imagery layer so " -"that it aligns correctly with the GPS tracks. The GPS tracks should line up " -"with the roads on the imagery as closely as possible. You will see the " -"offset numbers in the box change." -msgstr "" -"Abaikan kotak yang muncul, gunakan mouse Anda untuk menggeser citra sehingga " -"akan terposisi sejajar dengan track GPS. Track GPS harus terposisikan sama " -"dengan gambar jalan sedekat mungkin. Anda akan melihat angka offset berubah " -"di kotak tersebut." - -# dea49b733bc549138dbfac7055b9a2c0 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:80 -msgid "*Setting Imagery Offset*" -msgstr "*Mengatur Pergeseran Citra Satelit*" - -# a1119cf0743e4777b967951caf628d3c -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:82 -msgid "" -"If you like, you can save these offset settings by entering a bookmark name " -"and then clicking :guilabel:`OK`. You can then automatically apply the same " -"settings later by going to :menuselection:`Imagery ‣ Imagery Offset` and " -"clicking on your bookmark." -msgstr "" -"Jika ingin, Anda bisa menyimpan pengaturan pergeseran ini dengan memasukkan " -"nama penanda dan klik :guilabel:`OK`. Anda kemudian dapat secara otomatis " -"mengaplikasikan pengaturan yang sama dengan menuju ke :menuselection:" -"`Imagery ‣ Imagery offset` dan klik penanda yang Anda simpan." - -# 432054244a4141faaa18dc72772e4a91 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:86 -msgid "" -"If you do not want to save the offset, simply click :guilabel:`OK` without " -"entering a bookmark name." -msgstr "" -"Jika Anda tidak ingin menyimpan pergeserannya, klik :guilabel:`OK` tanpa " -"harus memasukkan nama penanda." - -# 75b78d124e0d4e7da3c7ba3c436ad98d -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:88 -msgid "" -"What if there are no GPS tracks on OpenStreetMap, and you don’t have a GPS? " -"Without GPS tracks, it is difficult to align imagery. If it is a relatively " -"empty area (not much mapped), you might choose to simply use the imagery as " -"it is and correct the data later." -msgstr "" -"Bagaimana jika tidak ada trek GPS di OpenStreetMap, dan anda tidak mempunyai " -"GPS? Tanpa trek GPS, akan sulit untuk mengatur citra satelit tersebut. Jika " -"area tersebut merupakan area kosong (belum terpetakan semua), anda mungkin " -"bisa memilih untuk menggunakan citra satelit sebagai landasan dan " -"membetulkan data tersebut nantinya." - -# 2f709f179c3442c8a708988f87a1cb55 -#: ../../source/training/osm/Chapter-10-imagery-offset.rst:92 -msgid ":ref:`Go to next chapter --> `" -msgstr ":ref:`Pergi ke bab selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-11-export-osm-data.po b/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-11-export-osm-data.po deleted file mode 100644 index 2528fbe3..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/osm/Chapter-11-export-osm-data.po +++ /dev/null @@ -1,398 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# ff1336339ed540078f2ce5d73dee2582 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:6 -msgid "Chapter 11: Export OSM data" -msgstr "Bab 11: Mendapatkan data OSM" - -# e8f22071b0954a3192bfb37fa5877a32 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:8 -msgid "**Learning Objectives:**" -msgstr "**Tujuan Pembelajaran**" - -# b823dbf199cf4e2bbfe0d778f0a1f775 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:10 -msgid "Learn how to use HOT Export" -msgstr "Memahami bagaimana menggunakan HOTExport" - -# 8b397142d23b40ce84dada6cab44b341 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:11 -msgid "Learn how to use overpass turbo" -msgstr "Memahami bagaimana menggunakan overpass-turbo" - -# fb186cfebdf64d3ab6529ff1843ca1e4 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:13 -msgid "" -"After you learn how to add and edit in *OpenStreetMap (OSM)*, you may want " -"to export OSM data as back-up or for processing using GIS software such as " -"**QGIS** `www.qgis.org `_. In this chapter we will " -"learn how to use these tools." -msgstr "" -"Setelah anda mempelajari bagaimana menambahkan dan mengubah data di " -"*OpenStreetMap (OSM)*, anda mungkin menginginkan untuk mengambil data OSM " -"sebagai backup atau untuk proses lebih lanjut menggunakan software SIG " -"seperti **QGIS** `www.qgis.org `_. Pada bab ini kita " -"akan mempelajari bagaimana menggunakan alat ini." - -# 2d41fbcd1f1945e7873c7e47f1e5a656 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:19 -msgid "11.1 Hot Export Tool" -msgstr "11.1 Hot Export Tool" - -# f21fbe6e379a4f9a995501489d30c631 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:21 -msgid "" -"Open your browser and type `export.hotosom.org `_ " -"and it will show like this:" -msgstr "" -"Buka browser anda dan ketikkan `export.hotosom.org `_ dan akan muncul seperti ini:" - -# 8634f8ea881f4935bc3bb857e29f2656 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:26 -msgid "*Hot Export front page*" -msgstr "*Halaman depan HOTExport*" - -# c06351b980114434acf980fbc94bca06 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:28 -msgid "" -"To get data from this website, you will need to login into your " -"OpenStreetMap account first before you can use HOT Export. Click :guilabel:" -"`Login to OpenStreetMap`" -msgstr "" -"Untuk mendapatkan data dari situs ini, Anda membutuhkan login terlebih " -"dahulu ke akun OpenStreetMap dahulu sebelum anda bisa menggunakan HOTExport. " -"Klik :guilabel:`Login ke OpenStreetMap`" - -# 6dd89665b9aa46f3adc6509438facf07 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:33 -msgid "*Screenshot Login into OSM Account Page*" -msgstr "*Halaman login ke akun OSM*" - -# dc85511c1f044dc095aeab1ae83a2e63 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:35 -msgid "" -"3. if you do not already have one, you have to create it. The first step is " -"you can click :guilabel:`here` in the sentence '**if you don't have an " -"OpenStreetMap account you can register for one here**' of HOT Export front " -"page." -msgstr "" -"3. Jika anda tidak mempunyai akun, anda harus membuatnya terlebih dahulu. " -"Anda bisa membuat akun dengan mengklik :guilabel:`disini` pada kalimat " -"'**Jika anda tidak mempunyai akun OpenStreetMap Anda bisa membuatnya " -"disini**' dari halaman depan HOTExport." - -# 2d34b8534aaa450cb9439200d51ecf7e -# 413be35319714943ab2a8e74a78d5995 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:41 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:48 -msgid "*Screenshot in Create OSM Account Page*" -msgstr "*Halaman depan akun OSM*" - -# 2883e94e786740258f3000652a347a56 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:43 -msgid "" -"After that fill in your email, display name, password and password " -"confirmation. Then click :guilabel:`Sign Up` and open your email to confirm " -"the email from OpenStreetMap." -msgstr "" -"Setelah Anda memasukkan email, username, password dan konfirmasi password. " -"Sekarang klik label :guilabel:`Sign Up` dan buka email anda untuk " -"mendapatkan konfirmasi email dari OpenStreetMap." - -# 784a1218240344a2bf3da790b6558b6e -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:50 -msgid "" -"After you confirm the email, come back to HOT Export front page and login " -"with your OSM account. Fill in your email and password and then click :" -"guilabel:`Log in`." -msgstr "" -"Setelah Anda mengkonfirmasi email, kembali lagi ke halam depan HOTExport dan " -"klik login untuk login dengan menggunakan akun OSM anda. Tulis email dan " -"password dan kemudian klik :guilabel:`Log in`." - -# a5b562d0f7ef4e1ab9085e2c0d9274b8 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:53 -msgid "" -"6. After you successfully log in to the website, you automatically directed " -"into New Export page. In tab :guilabel:`Describe Export` you can fill your " -"export file name, description about the export and the project name that " -"using this export file." -msgstr "" -"6. Setelah anda sukses login pada situs, anda akan diarahkan langsung ke " -"halaman export. Pada tab :guilabel:`Describe Export` anda bisa memasukkan " -"nama ekspor anda, deskripsi mengenai ekspor dan nama proyek yang menggunakan " -"ekspor tersebut." - -# 3209ad499d2b40caaed4aa0d6c404909 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:56 -msgid "" -"7. In right side of the page, you can define the exported area. You can " -"search by type area name in **search box** or you can select manually by " -"click :guilabel:`Export Area` and draw the area box." -msgstr "" -"7. Pada bagian kanan dari halaman, Anda bisa mengatur area ekspor anda. Anda " -"bisa mencari dengan menulis nama area pada kotak pencarian atau anda bisa " -"memilih secara manual dengan cara mengklik :guilabel:`Export Area` dan " -"gambar kotak area." - -# 767af2a293c44424ad2dbc0195d3bb1f -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:62 -msgid "*Screenshot in New Export Page*" -msgstr "*Halaman Ekspor*" - -# d5c7861f84d14854afe5eb5b839cb26d -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:64 -msgid "" -"8. If you finish define name and area for your export, click :guilabel:`File " -"Formats` tab to select file format for your export file. There are some file " -"format that you can select such as Esri SHP, Garmin File, Google KMZ, OSM " -"OBF File and SQlite SQL. For Esri SHP file, there are 2 format types which " -"provide different data. OSM Schema will provide 3 type data OSM like point, " -"line and polygon and Thematic Schema will provide data based on its type in " -"OSM such as health, landuse, school, etc." -msgstr "" -"8. Setelah Anda selesai mendefinisikan area dan nama dari ekspor anda, klik :" -"guilabel:`File Format` untuk memilih format dari file export anda. Disana " -"terdapat berbagai macam format yang anda bisa pilih seperti ESRI SHP, file " -"Garmin, Google KMZ, OSM OBF File dan SQlite SQL. Untuk ESRI SHP, terdapat 2 " -"tipe format yang diberikan untuk data yang berbeda. OSM Schema akan " -"memberikan 3 tipe data OSM seperti titik, garis dan area dan Thematic Schema " -"akan memberikan data tergantung dari tipe OSM yang dipilih." - -# f6212d82a9374c19b31228f46a1721fb -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:71 -msgid "*Screenshot in Export Format Page*" -msgstr "*Halaman format export*" - -# 39649c66dff541a4b4844df53ce20057 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:73 -msgid "" -"9. After select file format, you can click :guilabel:`Tree Tag` tab to chose " -"feature for result data tag of your export. There are 2 options that you can " -"select. Humanitarian Data Model only export all tags that related with " -"humanitarian information such as hazard, public services and utilities, " -"whereas OSM Data Model export all tag in OSM." -msgstr "" -"9. Setelah memilih format file, Anda bisa mengklik :guilabel:`Tree Tag` " -"untuk memilih fitur untuk data tag dari ekspor anda. Terdapat 2 opsi yang " -"anda bisa pilih. Humanitarian Data Model hanya akan mengekspor semua tag " -"yang berkaitan dengan informasi kemanusiaan seperti bencana, rumah sakit, " -"fasilitas publik; sementara OSM data model akan mengekspor semua tag di OSM." - -# a355117ed5c54485a9666735e3d6d2d2 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:79 -msgid "*Screenshot in Tree Tag Page*" -msgstr "*Halaman tree tag*" - -# 4d562930536249b992f330ed68527ee9 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:81 -msgid "" -"Then, click :guilabel:`Preset File` tab add specific preset file if you have " -"any. Using specific preset file will export your data with specific tag " -"based on the presets. Moreover, tag from previous data model both " -"Humanitarian and OSM Data Model will be cleared. However, if you do not have " -"any specific preset you can skip this step." -msgstr "" -"Kemudian, klik :guilabel:`Preset file` untuk menambahkan file preset " -"spesifik yang anda miliki. Dengan menggunakan file presets yang Anda miliki, " -"Anda akan bisa mengambil semua data yang terkait dengan file presets anda. " -"Lebih lanjut, tag dari data model sebelumnya akan dihapus. Tetapi jika Anda " -"tidak mempunyai tag yang spesifik, Anda bisa melewati step ini." - -# 8517338f5e2d4779bc011da91b8f4d29 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:86 -msgid "*Screenshot in Preset File Page*" -msgstr "*Halaman Preset File*" - -# 2b6dc669d7f8432f9da5a486ad5ce24a -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:88 -msgid "" -"11. Last step to make an export file in HOT Export is click :guilabel:" -"`Export Details` tab and you can see summary of your export details file and " -"please select at least one of three options in Export Options about how your " -"export result will be share to other users. If you finish, please click :" -"guilabel:`Create Export` ." -msgstr "" -"11. Tahapan terakhir untuk mengekspor file di HOTExport adalah dengan " -"mengklik :guilabel:`Export Detail` dan anda bisa melihat deskripsi dari " -"ekspor anda dan silahkan pilih setidaknya satu dari tiga opsi di Export " -"Options mengenai bagaimana hasil ekspor anda akan di sebarkan ke orang lain. " -"Jika Anda selesai, silahkan pilih :guilabel:`Create Export`." - -# 9cdda820772e41788a0333cc2feb7183 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:94 -msgid "*Screenshot in Export Details Page*" -msgstr "*Halaman detail ekspor*" - -# 77db2dd62b8545afb62ccf766652bb81 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:96 -msgid "" -"12. After the running process finished and export status is completed, you " -"can download your export file result in some file format data which have " -"been defined previously. You also can delete, clone or rerun this export " -"project if you want. All other request for HOT Export can be found in :" -"guilabel:`Exports` menu." -msgstr "" -"12. Stelah proses selsai dan status ekspor telah selesai, Anda bisa " -"mengunduh file ekspor anda dengan file format yang telah kita tentukan " -"sebelumnya. Anda juga bisa menghapus, menduplikasi atau menjalanakn ulang " -"ekspor anda, jika Anda mau. Semua request HOTExport dapat ditemukan pada " -"menu :guilabel`Exports`." - -# 441bea2ce811486db1cd88de844ac171 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:102 -msgid "*Screenshot in Export Result Page*" -msgstr "*Halaman hasil ekspor*" - -# 3890dcbed835483bb55e899efbead50c -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:105 -msgid "11.2 Overpass-Turbo" -msgstr "11.2 Overpass-Turbo" - -# 904297ad5300453eb501356fd4b17e5a -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:107 -msgid "" -"If you only want specific object in OSM data, the right choice is to use " -"`Overpass Turbo `_. For example you only need " -"schools data in Jakarta and surrounding area. To download OpenStreetMap data " -"using Overpass Turbo you can follow this step:" -msgstr "" -"Jika Anda menginginkan data/objek yang spesifik pada OSM, pilihan yang tepat " -"adalah dengan menggunakan `Overpass Turbo `_. " -"Sebagai contoh Anda hanya membutuhkan data sekolah di seluruh Jakarta. Untuk " -"menggunakan Overpass-Turbo anda bisa mengikuti tahapan ini:" - -# d6dbdee17963411d8b0700038eb29bea -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:111 -msgid "Point your web browser to `Overpass Turbo `_" -msgstr "Buka situs `Overpass Turbo `_." - -# 3332c99cc7d6499c80829779a876fa1f -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:113 -msgid "" -"You can start find to your area of interest in OpenStreetMap using the " -"Slippy Map in the right side. You can drag and zoom in map with **(+)** and " -"zoom out map using **(-)**. You can also search directly with typing in " -"search box as shown in the Jakarta example shown below. There will be " -"several arear related to Jakarta and you can choose the right area that you " -"want to download." -msgstr "" -"Anda bisa memulai dengan memilih area yang anda mau di OpenStreetMap dengan " -"dan menggunakan Slippy Map pada sebelah kanan. Anda bisa menggeser, " -"memperbesar dan memperkecil peta dengan menggunakan **(+)** dan **(-)**. " -"Anda juga bisa mencari secara langsung pada kotak pencarian seperti yang " -"terlihat pada dibawah ini. Banyak sekali hasil yang ditunjukkan untuk " -"Jakarta dan Anda bisa memilih area yang tepat jika Anda ingin mengunduh." - -# 5130cb3708ca4f1b9b2be9cbba95e8ae -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:122 -msgid "" -"If you don’t want to download the larger area you can resize the area and " -"draw a border by yourself with click :guilabel:`manually select box` from " -"the toolbar in the left side of the map. Draw a box in the slippy map to " -"define the target area." -msgstr "" -"Jika Anda tidak mau mengunduh area besar Anda bisa mengatur area dan " -"menggambar garis batas sesuai dengan kemauan Anda sendiri dengan mengklik :" -"guilabel:`manually select box` dari toolbar disebelah kiri dari peta. Gambar " -"kotak pada peta untuk mendefinisikan area yang dipilih." - -# 12cc477bd29d4be1b63add2cc7a70ffb -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:129 -msgid "*Select area manually*" -msgstr "*Memilih area secara manual*" - -# f365d143d87d40868d072839eb8e464e -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:131 -msgid "" -"To download OSM data specific to one feature, for example schools, click :" -"guilabel:`Wizard` menu. In the Wizard menu, you can filter your data with " -"using `JOSN `_ query, in the simple way it can be a " -"tag contains Key and Value, for example if you want to download schools " -"type :kbd:`amenity=school` in :guilabel:`Query Wizard`." -msgstr "" -"Untuk mengunduh data OSM secara spesifik satu fitur, seperti contohnya " -"sekolah, klik :guilabel:`Wizard` menu. Pada pilihan Wizard menu, Anda bisa " -"memfilter data anda dengan menggunakan kueri `JOSN `_ dengan secara simpel itu bisa merupakan tag yang mengandung Key dan " -"Value, contohnya jika Anda ingin mengunduh sekolah, ketik :kbd:" -"`amenity=school` di :guilabel:`Query Wizard`." - -# e255b03172394f04a33571b9dd153777 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:139 -msgid "*Query box in Overpass Turbo*" -msgstr "*Kotak kueri di Overpass Turbo*" - -# bb044db5400b44a2b18b758b5194db70 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:141 -msgid "" -"Click :guilabel:`Build and Run Query`, wait for a moment until school " -"objects are displayed in the area of interest. You should see something like " -"the screenshot below which shows all the school objects in OSM in the area " -"of interest." -msgstr "" -"Klik :guilabel:`Build and Run Query`, tunggu sebentar hingga obyek sekolah " -"muncul di area yang Anda inginkan. Anda seharusnya bisa melihat seperti " -"gambar dibawah, yang menunjukkan semua objek sekolah di OSM pada area yang " -"Anda inginkan." - -# c9166bb4327c4eb2b143bb53f3293f55 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:147 -msgid "" -"If you only want data type in point/node format, you can specify that in the " -"query box in the left side. To do this, erase school with way and relation " -"type, and then click :guilabel:`Run` menu in the top left side. The result " -"will be a school objects with only point/node data type filtered. You can " -"also add more detailed query in the query box and then click :guilabel:`Run`." -msgstr "" -"Jika Anda hanya menginginkan tipe data dalam bentuk titik, Anda bisa secara " -"spesifik mengatur pada kotak kueri disebelah kiri. Untuk melakukannya, hapus " -"sekolah dengan tipe way dan relation, dan klik :guilabel:`Run` pada bagian " -"kiri. Hasilnya akan berupa obyek sekolah dengan tipe titik saja yang " -"tersaring. Anda juga bisa menambahkan kueri lebih detail pada kotak kueri " -"dan kemudian klik :guilabel:`Run`." - -# 3a42cea00dca42e48d921403b4a2a6fe -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:156 -msgid "*Erase several query in query box*" -msgstr "*Menghapus beberapa kueri di kotak kueri*" - -# 317f8554580a49a8b3059ba07b343936 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:158 -msgid "" -"To download the schools data you can click Export menu, there are several " -"data formats that you can choose such as **geoJSON, GPX, KML, .osm**, etc. " -"If you not familiar with geoJSON, you can select :guilabel:`level0` to " -"download .osm data format that you can use later with QGIS or other mapping " -"software." -msgstr "" -"Untuk mengunduh data sekolah Anda bisa mengklik menu Export, terdapat " -"beberapa format data yang bisa anda pilih seperti **geoJSON, GPX, KML, ." -"osm**, dsb. Jika Anda tidak familiar dengan tipe geoJSON, Anda bisa memilih :" -"guilabel:`level0` untuk mengunduh data sebagai format .osm dan anda bisa " -"gunakan pada QGIS atau software pemetaan lainnya." - -# a46c7d7e78e34e789590cf05c295e5d6 -#: ../../source/training/osm/Chapter-11-export-osm-data.rst:165 -msgid "*Export Overpass Turbo result*" -msgstr "*Hasil ekspor Overpass Turbo*" diff --git a/docs/i18n/id/LC_MESSAGES/training/osm/index.po b/docs/i18n/id/LC_MESSAGES/training/osm/index.po deleted file mode 100644 index 9e2b3deb..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/osm/index.po +++ /dev/null @@ -1,25 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 8f51d64d27674d949373d14860805431 -#: ../../source/training/osm/index.rst:4 -msgid "Data Collection Using OpenStreetMap" -msgstr "Pengumpulan Data Menggunakan OpenStreetMap" diff --git a/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-00-Preface.po b/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-00-Preface.po deleted file mode 100644 index 95d8a799..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-00-Preface.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2016\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 6840389a11ae47bdbb01673f10c9f558 -# 7e89ac9a24934bc0a1cbc5ca5fe1dd53 -#: ../../source/training/qgis/Chapter-00-Preface.rst:4 -#: ../../source/training/qgis/Chapter-00-Preface.rst:92 -msgid "Preface" -msgstr "Pengantar" - -# 937467e00786475bbbe655a65232c6f3 -#: ../../source/training/qgis/Chapter-00-Preface.rst:7 -msgid "Disclaimer" -msgstr "Ketentuan" - -# 6c76bf91c8454d1584bb4bbd025c9032 -#: ../../source/training/qgis/Chapter-00-Preface.rst:9 -msgid "" -"This document is initial draft and still in reviewing phase by these parties:" -msgstr "" -"Dokumen ini merupakan rancangan awal dan masih dalam tahap peninjauan oleh " -"pihak-pihak sebagai berikut:" - -# 54ff8e02a89845f5bbc709adc7384df5 -#: ../../source/training/qgis/Chapter-00-Preface.rst:11 -msgid "Badan Nasional Penanggulangan Bencana (BNPB)" -msgstr "Badan Nasional Penanggulangan Bencana (BNPB)" - -# 3d8f012c7e8745d0b659cb1848c0812e -#: ../../source/training/qgis/Chapter-00-Preface.rst:13 -msgid "Disaster Management Innovation (formerly AIFDR)" -msgstr "Disaster Management Innovation (formerly AIFDR)" - -# ab8271c2a71d4a4baa27605fe2bcbaee -#: ../../source/training/qgis/Chapter-00-Preface.rst:15 -msgid "Humanitarian OpenStreetMap Team (HOT)" -msgstr "Humanitarian OpenStreetMap Team (HOT)" - -# 5d15ec37d58e4063b3e8097080c5a658 -#: ../../source/training/qgis/Chapter-00-Preface.rst:17 -msgid "" -"All contents and materials on this document possibly changed without public " -"notice." -msgstr "" -"Seluruh isi dan materi dalam dokumen ini kemungkinan masih dapat mengalami " -"perubahan tanpa pemberitahuan publik." - -# 23714405f767452b843b40263397ae65 -#: ../../source/training/qgis/Chapter-00-Preface.rst:20 -msgid "License" -msgstr "Lisensi" - -# 7855f996ce5040cf9a837f54ac14eb30 -#: ../../source/training/qgis/Chapter-00-Preface.rst:26 -msgid "" -"All contents and materials on this document is licensed as Creative Commons" -msgstr "Seluruh isi dan materi pada dokumen ini berlisensikan Creative Commons" - -# 989b482689e94dda9d73ffae84b7f16c -#: ../../source/training/qgis/Chapter-00-Preface.rst:28 -msgid "Attribution Australia (CCbyA)." -msgstr "Attribution Australia (CCbyA)." - -# 247545ca285a496db71681ee5ce53f52 -#: ../../source/training/qgis/Chapter-00-Preface.rst:30 -msgid "You are free:" -msgstr "Anda dapat secara bebas:" - -# 9bf2a10d84554c08b13a629e44e4a6c1 -#: ../../source/training/qgis/Chapter-00-Preface.rst:32 -msgid "to copy, distribute, display, and perform the work" -msgstr "menyalin, mendistribusikan, menampilkan, dan melakukan pekerjaan" - -# b8461370603042428e8e6b44a523ac7f -#: ../../source/training/qgis/Chapter-00-Preface.rst:34 -msgid "to make derivative works" -msgstr "membuat karya-karya turunan" - -# 578917a5a27940c08602f3a3ad4dc9c3 -#: ../../source/training/qgis/Chapter-00-Preface.rst:36 -msgid "to make commercial use of the work" -msgstr "membuat penggunaan komersial dari karya tersebut" - -# 4b937b1bbb9747edafaecc6c773dafa6 -#: ../../source/training/qgis/Chapter-00-Preface.rst:38 -msgid "You must give the original author credit." -msgstr "Anda harus mencantumkan kredit penulis asli." - -# 48159265cd134c72b6bf88d5418d53f4 -#: ../../source/training/qgis/Chapter-00-Preface.rst:40 -msgid "More information about CCbyA License:" -msgstr "Informasi lebih lanjut tentang CCbyA License:" - -# 2ed296bbafbf4806919968be15e7af33 -#: ../../source/training/qgis/Chapter-00-Preface.rst:42 -msgid "http://creativecommons.org/licenses/by/3.0/au/deed.en_GB" -msgstr "http://creativecommons.org/licenses/by/3.0/au/deed.en_GB" - -# 45a8df61bcb945ac9b05bf7fbdc95213 -#: ../../source/training/qgis/Chapter-00-Preface.rst:45 -msgid "About Us" -msgstr "Tentang Kami" - -# 6b532545c806452b9f139fd880759feb -#: ../../source/training/qgis/Chapter-00-Preface.rst:47 -msgid "**Badan Nasional Penanggulangan Bencana (BNPB)**" -msgstr "**Badan Nasional Penanggulangan Bencana (BNPB)**" - -# c640ecf7f6814cd296fda6900e1fd1e0 -#: ../../source/training/qgis/Chapter-00-Preface.rst:52 -msgid "" -"BNPB is Indonesia’s National Disaster Management Agency. BNPB is a non-" -"departmental ministerial-level government agency, tasked with providing " -"guidance and direction to the efforts of disaster management that includes " -"disaster prevention, emergency response, rehabilitation, and reconstruction " -"in a fair and equal. National Disaster Management Agency has the function as " -"a policy maker, formulator, and Refugee (IDP) management to act quickly and " -"appropriately and effectively and efficiently; and coordinating the " -"implementation of disaster management activities in a planned, integrated, " -"and comprehensive." -msgstr "" -"BNPB adalah Badan Nasional Penanggulangan Bencana Indonesia. BNPB merupakan " -"lembaga pemerintah non-departemen di tingkat kementrian yang bertugas untuk " -"menyediakan panduan dan pengarahan di bidang manajemen bencana, termasuk " -"pencegahan bencana, respon keadaan darurat, rehabilitasi, dan rekonstruksi " -"secara adil dan merata. BNPB memiliki fungsi sebagai pembuat kebijakan, " -"melakukan formulasi dan manajemen pengungsian (IDP) untuk bertindak secara " -"cepat, tepat, efektif dan efisien; dan mengkoordinasikan implementasi dari " -"aktifitas manajemen bencana secara terencana, terintegrasi, dan komprehensif." - -# a724440e023f43a08837c4bd4e306412 -#: ../../source/training/qgis/Chapter-00-Preface.rst:60 -msgid "http://bnpb.go.id" -msgstr "http://bnpb.go.id" - -# 83feeb715c8045248647378b8a9a73fe -#: ../../source/training/qgis/Chapter-00-Preface.rst:62 -msgid "**Disaster Management Innovation (formerly AIFDR)**" -msgstr "**Disaster Management Innovation (sebelumnya AIFDR)**" - -# 2fdcfbfcc1e04bf3bca71c13f450ea41 -#: ../../source/training/qgis/Chapter-00-Preface.rst:67 -msgid "" -"Disaster Management Innovation is the new Australian Government aid " -"investment delivered by Geoscience Australia in Indonesia. DMInnovation " -"builds on the success of The Australia-Indonesia Facility for Disaster " -"Reduction (AIFDR) which was a joint initiative between the governments of " -"Australia and Indonesia. AIFDR was launched by the Australian and Indonesian " -"governments at a special ceremony on 15 July 2010 and was officially closed " -"in August 2015. DMInnovation will maintain the important scientific " -"technical assistance program delivered in partnership between Indonesian " -"science agencies and Geoscience Australia." -msgstr "" -"Disaster Management Innovation adalah program investasi dari pemerintah " -"Australia yang dikembangkan oleh Geosains Australia di Indonesia. " -"DMInnovation dibangun berdasarkan kesuksesan dari Australia-Indonesia " -"Facility for Disaster Reduction (AIFDR) dimana yang merupakan program " -"inisiatif antara pemerintah Australia dan Indonesia. AIFDR diluncurkan oleh " -"pemerintah Australia dan Indonesia diacara khusus pada tanggal 15 Juli 2010 " -"dan secara resmi ditutup pada Agustus 2015. DMInnovation akan terus " -"mempertahankan program bantuan teknis secara ilmiah dengan kerjasama antara " -"badan sains Indonesia dan Geosains Australia." - -# c89369dbb97f439daac81f063aea99d2 -#: ../../source/training/qgis/Chapter-00-Preface.rst:74 -msgid "**Humanitarian OpenStreetMap Team (HOT)**" -msgstr "**Humanitarian OpenStreetMap Team (HOT)**" - -# af49265ef6fc4728968eb1c6c26866c0 -#: ../../source/training/qgis/Chapter-00-Preface.rst:79 -msgid "" -"Free, collaborative maps are uniquely valuable to humanitarian work, " -"especially in places where base map data is often scarce, out of date, or " -"rapidly changing. OpenStreetMap is a web project to create a free and open " -"map of the entire world, built entirely by volunteers surveying with GPS, " -"digitizing aerial imagery, and collecting and liberating existing public " -"sources of geographic data. The Humanitarian OpenStreetMap Team (HOT) is an " -"initiative to apply the principles and activities of open source and open " -"data sharing towards humanitarian response and economic development." -msgstr "" -"Peta gratis dan kolaboratif mempunyai keunikan yang berharga untuk pekerjaan " -"kemanusiaan, terutama di tempat-tempat dimana peta dasar sangat jarang " -"ditemukan, datanya sudah lama, atau seringkali berubah. OpenStreetMap adalah " -"sebuah web project untuk membuat peta yang gratis dan terbuka untuk seluruh " -"dunia, dibangun sepenuhnya oleh sukarelawan dengan survey menggunakan GPS, " -"digitasi citra satelit, dan mengumpulkan dan membebaskan sumber publik yang " -"bersumber dari data geografis.\n" -"Humanitarian OpenStreetMap Team (|HOT|) merupakan sebuah inisiatif yang baru " -"untuk mengaplikasikan prinsip dan aktifitas dari sumber terbuka dan berbagi " -"data terbuka untuk menuju respon kemanusiaan dan pembangunan ekonomi." - -# 1f365f241c3b4c18b77d10dd849c7f2f -#: ../../source/training/qgis/Chapter-00-Preface.rst:87 -msgid "http://hot.openstreetmap.org" -msgstr "http://hot.openstreetmap.org" - -# 3755eee63d0e46b88f9083bdc977a70b -#: ../../source/training/qgis/Chapter-00-Preface.rst:94 -msgid "" -"A Geographic Information System (GIS) is a system designed to enable people " -"to work with data related to places on the Earth. A GIS allows the creation, " -"storage, manipulation, and analysis of geographic data. GIS is a very broad " -"concept and can involve complex hardware and software. But for most people’s " -"purposes, a simple GIS software application is all that is required" -msgstr "" -"Sistem Informasi Geografi (SIG) adalah sebuah sistem yang dirancang untuk " -"memungkinkan orang-orang bekerja dengan data yang berhubungan dengan " -"keberadaan suatu tempat di bumi. SIG memungkinkan pembuatan, penyimpanan, " -"manipulasi, dan analisis data geografis. SIG merupakan konsep yang sangat " -"luas dan dapat melibatkan perangkat lunak dan perangkat keras yang rumit. " -"Tetapi, untuk memenuhi tujuan dari kebanyakan orang, maka yang dibutuhkan " -"adalah sebuah aplikasi perangkat lunak SIG sederhana." - -# 89c2a4047c864a3894cc23033b01a9f0 -#: ../../source/training/qgis/Chapter-00-Preface.rst:99 -msgid "" -"GIS in general can be used for a variety of fields, including in disaster " -"management. Unfortunately, the GIS software currently on the market are very " -"expensive. Therefore we make a guide how to analyze the data with GIS " -"software, which is free and open for the purposes of disaster management, " -"particularly in the preparation of contingency plans." -msgstr "" -"SIG secara umum dapat digunakan untuk berbagai macam bidang, termasuk dalam " -"manajemen kebencanaan. Sayangnya, software SIG saat ini sangat mahal " -"harganya di pasaran. Maka dari itu kami membuat panduan bagaimana untuk " -"menganalisis data menggunakan software SIG, yang mana software tersebut " -"gratis dan terbuka untuk tujuan manajemen kebencanaan, khususnya dalam " -"persiapan rencana kontinjensi." - -# 2b8fd8da873d425a8789a329e443bad2 -#: ../../source/training/qgis/Chapter-00-Preface.rst:105 -msgid "" -"The software used is QGIS (QGIS) is a Geographic Information System (GIS) " -"that is user-friendly and open-source. InaSAFE is a free software and open-" -"source, that can create realistic scenario of natural disasters impact for " -"planning, preparation, and better response. InaSAFE is developed by AIFDR " -"through consultation with BNPB." -msgstr "" -"Perangkat lunak yang digunakan adalah QGIS, (QGIS) merupakan Sistem " -"Informasi Geografis (SIG) yang sangat mudah digunakan dan bersifat open-" -"source. InaSAFE adalah sebuah perangkat lunak bebas dan bersifat open-" -"source, yang dapat membuat skenario realistis dari dampak bencana alam untuk " -"perencanaan, persiapan, dan respon bencana yang lebih baik. InaSAFE " -"dikembangkan oleh AIFDR melalui konsultasi dengan BNPB." - -# a839d34daea64d29bb786e00581252c6 -#: ../../source/training/qgis/Chapter-00-Preface.rst:109 -msgid "" -"Analyzing Data with QGIS and InaSAFE is designed to complement the previous " -"unit to collect spatial data with OpenStreetMap for disaster management." -msgstr "" -"Menganalisis data menggunakan QGIS dan InaSAFE telah dirancang untuk " -"melengkapi unit sebelumnya dalam pengumpulan data spasial menggunakan " -"OpenStreetMap untuk manajemen bencana." - -# accc91bb308e4bdf84b7ebc470225e2f -#: ../../source/training/qgis/Chapter-00-Preface.rst:112 -msgid "We hope it can be useful." -msgstr "Semoga bermanfaat." - -# 9b47bd80a1de4ba3a0dcd7187dedbf92 -#: ../../source/training/qgis/Chapter-00-Preface.rst:114 -msgid ":ref:`Go to next chapter --> `" -msgstr ":ref:`Bab selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-01-GIS_for_Disaster_Management.po b/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-01-GIS_for_Disaster_Management.po deleted file mode 100644 index 16a1317d..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-01-GIS_for_Disaster_Management.po +++ /dev/null @@ -1,172 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# e40f0552c09f4aeca84676cfa5316ced -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:6 -msgid "Chapter 1: GIS for Disaster Management" -msgstr "Bab 1: SIG untuk Managemen Bencana" - -# a9de71f1654648aa98079f2462c896eb -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:8 -msgid "**Learning Objectives:**" -msgstr "**Tujuan Pembelajaran**" - -# d85efa9e7f204b76a7c3ddc8d8295c99 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:10 -msgid "Distinguishing between data and information" -msgstr "Membedakan antara data dan informasi" - -# 764465c5907f4141845ca29ddc4d2e29 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:12 -msgid "Understand the concept of GIS" -msgstr "Memahami konsep SIG" - -# ffdf544c96484a5d98560a9e8c208a80 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:15 -msgid "1.1 The difference between data and information" -msgstr "1.1 Perbedaan antara data dan informasi" - -# c2fd2d63d6914d86a1f5ef94a02bfe3d -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:17 -msgid "" -"In the first unit, we looked at OpenStreetMap and how to collect data and " -"add it to the worldwide map. But what do we mean when we say that we collect " -"data? Is this the same as collecting information? Well, not exactly." -msgstr "" -"Pada unit pertama, kita melihat OpenStreetMap dan bagaimana cara " -"mengumpulkan data dan menambahkannya ke dalam peta dunia. Tapi apa yang kita " -"maksudkan ketika kita mengatakan bahwa kita mengumpulkan data? Apakah ini " -"sama dengan mengumpulkan informasi? Jawabanya, tidaklah sama." - -# 0ec20eb61b9541c69c8d7c24a193eb19 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:20 -msgid "" -"Data are raw facts. Information is data that is organised and presented in " -"such a way as to be useful. In other words, when we go mapping to collect " -"locations and facts about those locations, we have collected data - we have " -"collected facts. To turn this data into information, we must make sense of " -"it. We must present the data in such a way that it can be easily understood." -msgstr "" -"Data adalah fakta yang belum diolah. Informasi adalah data yang " -"diorganisasikan dan disajikan sedemikian rupa agar lebih berguna. Dengan " -"kata lain, ketika kita melakukan pemetaan untuk mengumpulkan lokasi dan " -"fakta tentang lokasi tersebut, kita telah mengumpulkan data - kita telah " -"mengumpulkan fakta. Untuk mengubah data tersebut menjadi informasi, kita " -"harus memahami hal ini. Kita harus menyajikan data sedemikian rupa sehingga " -"dapat dipahami dengan mudah ." - -# b667e319bd8a4ecd8d0cb8a06dea08ca -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:25 -msgid "" -"OSM data is already made informative in an obvious way. The map that you see " -"when you visit the OSM website is there because a computer has processed all " -"of the OSM data and used it to paint a nice looking map. The map is " -"informative, and useful for us to see where places are in relation to us." -msgstr "" -"Data OSM telah dibuat secara einformatif dengan cara yang jelas. Peta yang " -"Anda lihat ketika Anda mengunjungi situs OSM dapat ditampilkan karena " -"komputer telah memproses semua data OSM dan menggunakannya untuk membuat " -"peta yang terlihat lebih baik. Peta OSM menjadi terlihat lebih informatif, " -"dan berguna bagi kita untuk melihat tempat yang berkaitan dengan kita." - -# 06546b30ddc14104b02ecb3714d8044b -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:30 -msgid "" -"In this unit we will take this even further. We will learn how to perform " -"geographic data analysis, and thereby learn how to make our data more " -"useful, informative and effective." -msgstr "" -"Pada unit ini, kita akan belajar lebih jauh. Kita akan belajar bagaimana " -"melakukan analisis data geografis, dan dengan demikian kita belajar " -"bagaimana membuat data kita lebih berguna, informatif, dan efektif." - -# 3e0967ec58004b0eafee89bec3cb7092 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:34 -msgid "1.2 Terminology of Geographic Information System (GIS)" -msgstr "1.2 Pengertian Sistem Informasi Geografi (SIG)" - -# 5b636b9b5e414c00a4dbb01820223899 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:36 -msgid "" -"A Geographic Information System (GIS) is a system designed to enable people " -"to work with data related to places on the Earth. A GIS allows the creation, " -"storage, manipulation, and analysis of geographic data. GIS is a very broad " -"concept and can involve complex hardware and software. But for most people’s " -"purposes, a simple GIS software application is all that is required, and in " -"this unit we will learn how to use the excellent open-source application, " -"QGIS." -msgstr "" -"Sistem Informasi Geografis (SIG) adalah sebuah sistem yang dirancang untuk " -"memungkinkan orang-orang bekerja dengan data yang berkaitan dengan suatu " -"tempat di bumi. SIG memungkinkan pembuatan, penyimpanan, manipulasi, dan " -"analisis data geografis. SIG merupakan konsep yang sangat luas dan dapat " -"melibatkan perangkat keras dan perangkat lunak yang rumit. Tetapi, untuk " -"memenuhi tujuan kebanyakan orang, yang dibutuhkan adalah sebuah perangkat " -"lunak SIG yang sederhana, dan pada unit ini kita akan mempelajari bagaimana " -"menggunakan aplikasi *open-source* yang unggul, QGIS. " - -# 05cee11b20034fec8f49673b47c2fdeb -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:42 -msgid "" -"GIS provides different ways to analyse data. It enables us to ask complex " -"questions, such as:" -msgstr "" -"SIG menyediakan berbagai macam cara untuk menganalisis data. SIG " -"memungkinkan kita untuk menanyakan pertanyaan yang rumit, misalnya: " - -# 07aa9ddf9ccc4bd69441f57cb98ca91c -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:44 -msgid "*Where are all schools with more than 100 students?*" -msgstr "*Di mana sekolah-sekolah yang memiliki lebih dari 100 siswa?*" - -# 466d5c6750974acb84dff4ee6b6c0f87 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:46 -msgid "*How many children live in a certain district?*" -msgstr "*Berapa banyak anak-anak yang tinggal di suatu kecamatan?*" - -# 76e01e12c0604c55b2856be045fc97dd -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:48 -msgid "*How many women live within 500 meters of a certain hospital?*" -msgstr "" -"*Berapa banyak perempuan yang tinggal dalam jangkauan 500 meter dari rumah " -"sakit tertentu?*" - -# 3fcf81e620c24f4cb8bf2d0df72fca1e -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:50 -msgid "*What is the shortest walking path from a given point to a hospital?*" -msgstr "" -"*Apa rute jalan kaki terdekat dari satu titik tertentu menuju ke sebuah " -"rumah sakit?*" - -# e4d9f54666754ac8b64130c820f2f29f -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:52 -msgid "" -"GIS helps us to answer these sorts of questions. In the previous unit we " -"learned how to collect data, and in this unit we will see how to analyse it." -msgstr "" -"SIG membantu kita untuk menjawab pertanyaan-pertanyaan semacam ini. Pada " -"unit sebelumnya kita belajar bagaimana mengumpulkan data, dan pada unit ini " -"kita akan melihat bagaimana untuk menganalisanya." - -# 308e68d86994422196ab3ed2bcf33885 -#: ../../source/training/qgis/Chapter-01-GIS_for_Disaster_Management.rst:55 -msgid ":ref:`Go to next chapter --> `" -msgstr ":ref:`Bab selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.po b/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.po deleted file mode 100644 index 5c8d2484..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.po +++ /dev/null @@ -1,299 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# a16541491a3e4e01a14ee19cbfd90f51 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:6 -msgid "Chapter 2: QGIS and InaSAFE in Disaster Management" -msgstr "Bab 2: QGIS dan InaSAFE dalam Managemen Bencana" - -# 7deaa4f96f2d423abcff729a3c4a0745 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:8 -msgid "**Learning Objective:**" -msgstr "**Tujuan Pembelajaran**" - -# 7b35477b425c4aaaa71cac4ba63f29bf -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:10 -msgid "Understand the role of GIS in disaster management" -msgstr "Memahami peran SIG dalam manajemen bencana" - -# 12585697627847b8be5e6583c9bfabf2 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:12 -msgid "Understand the importance of data" -msgstr "Memahami pentingnya data" - -# 9aa8f3d2edb54c489ab5f9a80d8de939 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:14 -msgid "Understand the benefits of QGIS/InaSAFE in disaster management." -msgstr "Memahami manfaat dari QGIS/InaSAFE dalam manajemen bencana." - -# a25403fe89ea4b52a798e2f23405ad2c -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:17 -msgid "2.1 GIS for Disaster Management" -msgstr "2.1 SIG untuk Managemen Bencana" - -# 0a266ca2e2a9415b853247c1ab6bf09c -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:19 -msgid "" -"GIS has an important role in disaster management. A disaster management is " -"intended to manage and support both government and community preparedness, " -"mitigation, prevention, response and recovery of a potentially hazardous " -"event, such as an earthquake or tsunami. The purpose of this disaster " -"management is to minimize casualties and losses in case of such an event." -msgstr "" -"SIG mempunyai peran yang penting dalam manajemen bencana. Sebuah manajemen " -"bencana dibuat untuk mendukung kesiapsiagaan komunitas untuk mengantisipasi " -"datangnya suatu potensi ancaman kejadian, misalnya gempa bumi atau tsunami. " -"Tujuan dari rencana tersebut adalah untuk meminimalisir korban dan kerugian " -"pada saat kejadian tersebut." - -# 06f5655b5b58451299a02a47f142cbee -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:25 -msgid "" -"Before contemplating a disaster management, one must first consider " -"potential disaster scenarios. A good disaster management will likely answer " -"questions such as:" -msgstr "" -"Sebelum memikirkan sebuah manajemen bencana, satu hal yang harus pertama " -"kali dipertimbangkan adalah potensi skenario bencana. Manajemen bencana yang " -"baik kurang lebih akan menjawab pertanyaan-pertanyaan seperti:" - -# 32e83e770a614c838294610b57760614 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:28 -msgid "*What sort of disaster is likely to happen?*" -msgstr "*Apa jenis bencana yang mungkin terjadi?*" - -# c29a5fec6d074b219be5373d726866c4 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:30 -msgid "*How we prevent the disaster?*" -msgstr "*Bagaimana kita mencegah bencana?*" - -# cd6685c07ad74a2aab976d321285701a -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:32 -msgid "*How widespread will the impact be?*" -msgstr "*Bagaimana persebaran dampak dari bencana tersebut?*" - -# 4f066a97650e47da8250d92726c539bd -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:34 -msgid "*Who is responsible for helping?*" -msgstr "*Siapa yang bertanggung jawab untuk membantu?*" - -# d8a00903a6dd441d99a7689ef6261c28 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:36 -msgid "*What should be given as aid?*" -msgstr "*Apa yang dapat diberikan sebagai bantuan?*" - -# 7d5800c186954e4da3edf1ed43117610 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:38 -msgid "*What should we do when the disaster already happen?*" -msgstr "*Apa yang harus kita lakukan ketika bencana terjadi?*" - -# ec34eb1355ed46bcb2471c58ff945847 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:40 -msgid "*Where are the priority areas?*" -msgstr "*Dimana wilayah prioritas?*" - -# b848494d2568410fb21fbbc6c9fe182b -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:42 -msgid "" -"In other words, disaster management answers the question, **who does what, " -"where and when?**" -msgstr "" -"Dengan kata lain, manajemen bencana menjawab pertanyaan, **siapa melakukan " -"apa, dimana, dan kapan?**" - -# 6d1d3fa219a24d949d7cbdf6e0493e73 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:44 -msgid "" -"A Geographic Information System is able to help planners answer these " -"questions, especially the important spatial elements of contingency " -"planning. GIS may be used to model hazardous events so that they can be " -"better predicted." -msgstr "" -"Sebuah Sistem Informasi Geografis dapat membantu perencana menjawab " -"pertanyaan-pertanyaan terutama elemen spasial yang penting untuk manajemen " -"bencana. SIG dapat digunakan untuk model peristiwa berbahaya sehingga mereka " -"dapat lebih diprediksi." - -# 6ce16c70bc04429ba3ce77288788c862 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:48 -msgid "" -"It may be used to plan evacuation routes prior to a disaster. When a " -"disaster occurs, GIS may also play a role in the emergency response phase. " -"It can be used to map the area affected and position of refugee camps, so " -"that helpers can be directed to the most useful locations to aid those " -"affected. After a disaster, GIS may also be used to plan for rehabilitation " -"and reconstruction. Overall, GIS helps to perform analysis of a disaster, " -"damage and losses caused, and opportunities for reducing risk." -msgstr "" -"Sistem Informasi Geografi juga dapat digunakan untuk menyusun rencana " -"evakuasi ketika ada bencana. Ketika suatu bencana terjadi, SIG juga bisa " -"digunakan untuk membantu dalam tahap respon darurat. SIG juga bisa digunakan " -"untuk memetakan area terdampak dan lokasi pengungsian, sehingga para pemberi " -"bantuan bisa langsung diarahkan ke tempat yang membutuhkan bantuan. Setelah " -"bencana terjadi, SIG juga bisa digunakan untuk fase rehabilitasi dan " -"rekonstruksi. Secara umum, SIG dapat digunakan untuk melaksanakan analisis " -"manajemen bencana, dari menghitung dampak, kerugian, dan kemungkinan untuk " -"mengurangi resiko." - -# 0d7e8086ff6a4d01b406f76a7b906a50 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:56 -msgid "2.2 The Importance of Data" -msgstr "2.2 Pentingnya Data" - -# a403a9a5a60d4da0a7030b1af3ee8840 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:58 -msgid "" -"We previously learned how to start collecting exposure data. When thinking " -"about GIS it is important to remember that if your data is bad, your " -"analysis will be bad also. Hence the more detailed and accurate your data " -"is, the better your analysis and action may be during a disaster." -msgstr "" -"Sebelumnya kita telah mengetahui bagaimana untuk mulai mengumpulkan data " -"keterpaparan. Ketika berpikir tentang SIG, sangat penting untuk diingat " -"bahwa jika data Anda tidak lengkap, maka hasil analisisnya juga akan buruk. " -"Sebaliknya semakin detail dan akurat data Anda, maka analisis dan tindakan " -"Anda pada saat terjadi bencana yang sesungguhnya juga akan lebih baik." - -# 39f532ea7e614ba18334b82f5fb046dd -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:63 -msgid "" -"As we shall see in this unit, some data may be obtained from various " -"agencies that specialize in certain kinds of data. For example, we will " -"obtain our hazard models (hazard data) from various organizations that " -"specialize in this. As for exposure data, some data we may find through " -"agencies, such as population data. For infrastructure data, collecting data " -"at a community level is key, which is why in the previous unit we learned " -"how to utilize the crowd-sourced OpenStreetMap platform." -msgstr "" -"Seperti yang akan kita lihat dalam unit ini, beberapa data mungkin " -"didapatkan dari berbagai lembaga yang ahli dalam berbagai jenis data. " -"Sebagai contoh, kita akan memperoleh model data ancaman (data ancaman) dari " -"berbagai organisasi yang ahli dalam bidangnya. Untuk data keterpaparan atau " -"data eksposur, beberapa data mungkin kita dapat temukan melalui lembaga, " -"misalnya data populasi. Untuk data infrastruktur penting, mengumpulkan data " -"di tingkat komunitas merupakan kunci, dimana mengapa kita pada unit " -"sebelumnya telah mempelajari bagaimana memanfaatkan pemetaan berbasis " -"partisipatif dalam platform OpenStreetMap." - -# b77a325070114388b301a44c4a0ecda4 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:70 -msgid "2.3 QGIS and InaSAFE" -msgstr "2.3 QGIS dan InaSAFE" - -# b37eda5561f14b6ebc2ab399a08887a3 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:72 -msgid "" -"QGIS is a user-friendly open-source Geographic Information System (GIS). It " -"runs on Windows, Mac OSX, and Linux. QGIS provides a continually growing " -"number of capabilities provided by core functions and plugins. You can " -"visualize, manage, edit, analyse data and compose printable maps." -msgstr "" -"QGIS merupakan sebuah Sistem Informasi Geografis (SIG) yang mudah terhadap " -"pengguna dan *open-source*. QGIS dapat dijalankan pada Windows, Mac OSX, dan " -"Linux. QGIS menyediakan berbagai kemampuan yang jumlahnya terus berkembang " -"dengan fungsi dan plugin utama. Anda dapat melakukan visualisasi, mengatur, " -"mengedit, menganalisis data, dan membuat peta yang dapat dicetak." - -# b222aa1d536b44ee91b9eb11d89db16f -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:76 -msgid "QGIS is great because:" -msgstr "QGIS hebat karena:" - -# d3c12ff0bd824437bfb1c7d4f54396d4 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:78 -msgid "It’s completely free. It doesn’t cost anything." -msgstr "Gratis sepenuhnya. Tidak membutuhkan biaya apapun." - -# ec532d1762cb478ab60acb420288f03b -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:81 -msgid "" -"It’s free, as in liberty. If you think a feature is missing, you can sponsor " -"the development of a feature," -msgstr "" -"Bebas, dalam arti kebebasan. Jika Anda berpikir ada sebuah fitur yang " -"hilang, Anda dapat mendukung pengembangan sebuah fitur," - -# 42346b0839de4c8bbdef8c478a8e21ba -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:81 -msgid "or add it yourself if you are familiar with programming." -msgstr "" -"atau menambahkannya sendiri jika Anda sudah terbiasa dengan pembuatan " -"program." - -# b4cb22eb322d4ed485a7a593842b1601 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:83 -msgid "" -"It’s constantly developing and improving. Because many people continue " -"adding features, it keeps getting better." -msgstr "" -"Dikembangkan dan ditingkatkan secara berkala. Karena banyak orang yang " -"menambahkan fitur, sehingga QGIS semakin lebih baik." - -# 775bb80cb9f448a192a9c0590a0919ef -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:86 -msgid "" -"Extensive help and documentation is available. If you have problems you can " -"always turn to the software documentation," -msgstr "" -"Tersedia bantuan dan dokumentasi yang lengkap. Jika Anda memiliki masalah, " -"anda selalu dapat melihat pada dokumentasi perangkat lunak, " - -# de418582c8044151a1839dd3ff9b6adf -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:86 -msgid "other QGIS users, or even the developers." -msgstr "menghubungi pengguna QGIS lain atau bahkan pengembangnya." - -# 38869ea2599d4f6b9c22ff011031168a -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:88 -msgid "" -"QGIS has many **plugins** which extend the core functionality of the " -"software. One of these plugins is InaSAFE, which can be used to analyse the " -"impact of a disaster and create a list of actions needed to be taken when a " -"disaster occurs. QGIS and InaSAFE can also help to determine the location of " -"ideal places of refuge, evacuation routes, areas likely to be damaged, and " -"more." -msgstr "" -"QGIS memiliki banyak *plugin* yang meningkatkan fungsi utama perangkat " -"lunak. Salah satu plugin ini adalah **InaSAFE**, yang dapat digunakan untuk " -"menganalisis dampak dari kejadian sebuah bencana dan membuat daftar aksi " -"yang perlu ditindak lanjuti ketika bencana tersebut terjadi. QGIS dan " -"InaSAFE juga dapat menentukan lokasi ideal untuk pengungsi, rute evakuasi, " -"area yang kemungkinan akan terdampak, dan lebih banyak lagi." - -# 66f5ed3eb0fd467780f6026097392ed2 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:97 -msgid "" -"InaSAFE provides overviews of potential disaster scenarios, of their " -"outcomes, as well as maps which can aid decision makers when disaster " -"strikes. Maps are an effective way of communicating disaster impact, by " -"showing in a simple way the areas of damage, such as the extent of flood-" -"affected areas and buildings affected by a flood." -msgstr "" -"InaSAFE menyediakan gambaran umum dari skenario bencana yang potensial, " -"dampaknya dan juga peta yang dapat membantu pembuat keputusan ketika bencana " -"terjadi. Peta merupakan sebuah cara yang efektif untuk mengkomunikasikan " -"dampak bencana, namun dapat menunjukkan secara sederhana area terdampak, " -"misalnya luasan area dan bangunan yang terdampak bencana banjir ." - -# 0f6ee9d78b604f1dacf7d59777bf7504 -#: ../../source/training/qgis/Chapter-02-QGIS_and_InaSAFE_for_Disaster_Management.rst:102 -msgid ":ref:`Go to next chapter --> `" -msgstr ":ref:`Modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-03-Basic_QGIS.po b/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-03-Basic_QGIS.po deleted file mode 100644 index 9c9aba95..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-03-Basic_QGIS.po +++ /dev/null @@ -1,1055 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Ranie Dwi Anugrah , 2016\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# c45771c889b14dd7bdb9d329e08ab910 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:6 -msgid "Chapter 3: The Basics of QGIS" -msgstr "Bab 3: Dasar-dasar QGIS" - -# ef145e4964e7429cb758a459ee15f822 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 42b245deedae4ff5bbd1f9de1f3e1de9 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:10 -msgid "Downloading QGIS" -msgstr "Men-*download* QGIS" - -# f4a4ae6d56e94e6bba6b8b051ddca52b -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:11 -msgid "Install QGIS" -msgstr "Meng-*install* QGIS" - -# 2dd10d647497497b9fcf70ac8e2219fd -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:12 -msgid "Open a previously created QGIS project" -msgstr "Membuka proyek QGIS yang telah disimpan sebelumnya" - -# 81ca044057814c8c874634295e30ff6d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:13 -msgid "Understand the layers panel" -msgstr "Memahami panel *layer*" - -# 8ea7cb6cfedd418283b0b85966915fd1 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:14 -msgid "Access basic tools through toolbar" -msgstr "Mengakses tool dasar melalui *toolbar*" - -# 0670e44cb81c4996aac815cb76324877 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:15 -msgid "Clean up the toolbar" -msgstr "Membersihkan *toolbar*" - -# 672cc69459004466a62ffcaaf9b4b3d7 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:16 -msgid "Show a map in the map window" -msgstr "Menampilkan peta melalui jendela peta" - -# 934f388998bf4d7b82595660df36b9fb -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:18 -msgid "" -"In this chapter we begin using QGIS. We’ll see how to install the software " -"and understand the layout, interface and core functions of the software. By " -"the end of this chapter, you’ll be on your way to becoming a competent GIS " -"user!" -msgstr "" -"Pada bab ini kita mulai menggunakan QGIS. Kita akan lihat bagaimana cara " -"menginstal memahami *layout*, tampilan antarmuka dan fungsi utama dari " -"perangkat lunak ini. Pada akhir bab ini, Anda akan memulai jalan Anda untuk " -"menjadi pengguna SIG yang kompeten!" - -# 82b260b2d1c8419da9a111d8d73e0701 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:22 -msgid "" -"Note that if you have previously installed QGIS, feel free to skip ahead to " -"*section three*. Otherwise, let’s start here and get QGIS installed." -msgstr "" -"Perhatikan jika Anda telah menginstal QGIS, lewati bagian pada *sesi tiga*. " -"Sebaiknya, mari mulai dan QGIS terinstal." - -# db9a3b1fe7ed47b681b31450a6184c49 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:26 -msgid "3.1 Getting QGIS" -msgstr "3.1 Mendapatkan QGIS" - -# a040a5950634435aa9e39fd7c90a2d4b -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:28 -msgid "" -"Open your web browser and in the address bar at the top of the window, type :" -"kbd:`qgis.org`. Press :guilabel:`Enter`." -msgstr "" -"Buka browser internet Anda dan ketikkan pada bagian atas jendela browser " -"Anda dengan tulisan :kbd:`qgis.org`. Kemudian tekan :guilabel:`Enter`." - -# e03585457f4245ce8b0ad1573b988825 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:33 -msgid "The QGIS website will look something like this:" -msgstr "Situs resmi QGIS akan terlihat seperti ini:" - -# 27e7562cd50d46abafbad99c8e38e72d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:38 -msgid "Click :guilabel:`Download Now`" -msgstr "Klik :guilabel:`Download Now`" - -# 05acbbf094814d9f84044926aef3f990 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:43 -msgid "" -"If you are using Windows, scroll down to the :menuselection:`Long Term " -"Release` version and click on :guilabel:`QGIS Standalone Installer Version " -"2.14 (32 bit).` Your exact version number may be different." -msgstr "" -"Jika Anda menggunakan Windows, temukan versi :menuselection:`Long Term " -"Release` dan klik pada :guilabel:`QGIS Standalone Installer Version 2.14 (32 " -"bit)`. Nomor versi komputer Anda mungkin berbeda." - -# 56c78231afe845edbffd653cc8bad46d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:50 -msgid "" -"If you are not using Windows, select your Operating System from the menu. " -"Follow the installation instructions." -msgstr "" -"Jika Anda tidak menggunakan Windows, pilih Sistem Operasi Anda dari menu " -"yang tersedia. Ikuti intruksi instalasi." - -# a4ba6d1cb1a148d8bc4f51fe6b46f5d3 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:56 -msgid "" -"When the file is downloaded, run it and follow the instructions to install " -"QGIS." -msgstr "" -"Ketika file selesai didownload, jalankan dan ikuti perintah untuk menginstal " -"QGIS." - -# f0832d062d9d49cbaa68094306ad8365 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:59 -msgid "3.2 Installing QGIS" -msgstr "3.2 Instalasi QGIS" - -# e6444037b6fb49f59b1c7eaee24d15bf -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:60 -msgid "Open the folder where you have the QGIS installation file." -msgstr "Buka folder dimana anda menyimpan file instalasi QGIS." - -# 71f3773b92ca43da96d6a77246187dc0 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:65 -msgid "" -"Run the installation file. If you are installing QGIS version 2.x, it should " -"look like this:" -msgstr "" -"Jalankan file instalasi tersebut. Jika Anda menginstal QGIS versi 2.x, akan " -"terlihat seperti ini:" - -# 45d62de749fd4afa84b2cc361b0e541a -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:70 -msgid "Click on :guilabel:`Next`." -msgstr "Klik :guilabel:`Next`." - -# c4e80606e4ef49ab9e9e78934d72505d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:72 -msgid "" -"Click :guilabel:`I Agree` to agree with the conditions in the license " -"agreement." -msgstr "" -"Klik :guilabel:`I Agree` untuk setuju dengan syarat dan ketentuan yang " -"berlaku pada persetujuan lisensi." - -# 5736169f6c4149919c17cff8c5bc4f92 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:77 -msgid "" -"The next window asks where you would like to install QGIS. In most cases, " -"the default should be fine. Click on :guilabel:`Next`." -msgstr "" -"Pada jendela berikutnya adalah pertanyaan dimana Anda akan menginstal QGIS. " -"Pada kasus umum, pengaturan bawaan yang ada sudah dapat digunakan. Klik :" -"guilabel:`Next`." - -# 45d176a453cd426799480e8e01d9c0a1 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:82 -msgid "" -"In the next window, click :guilabel:`Install` without checking any of the " -"boxes." -msgstr "" -"Pada jendela berikutnya, klik :guilabel:`Install` tanpa mencentang apapun " -"yang ada di dalam kotak." - -# ee522574c5854c58a47c22be6b9de7a4 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:87 -msgid "QGIS will begin to install. It may take a few minutes to complete." -msgstr "" -"QGIS akan memulai untuk menginstall. Ini mungkin akan membutuhkan beberapa " -"waktu untuk selesai." - -# 9839862ce7aa4575ac553a08c2e1bbd1 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:92 -msgid "" -"click :guilabel:`Finish` to complete the installation. Your computer will " -"automatically reboot." -msgstr "" -"Klik :guilabel:`Finish` untuk melengkapi instalasi. Kemudian komputer Anda " -"akan me-reboot secara otomatis." - -# 077a25ab59d7406d9d9e09bcd2689be5 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:97 -msgid "Now open QGIS from the Start Menu." -msgstr "Sekarang buka QGIS dari Start Menu." - -# 2cfca0eb0f244c2cad7ad997b85c415a -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:102 -msgid "QGIS will look something like this:" -msgstr "Tampilan QGIS akan terlihat seperti ini:" - -# eed8035a1bc24d0f84089702d9bbc085 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:109 -msgid "3.3 QGIS user interface layout" -msgstr "3.3 Layout tampilan antarmuka pengguna QGIS" - -# 810b4b6880a84354aff57735ac043a97 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:111 -msgid "" -"Next we will open up a QGIS project, and take a look at the different pieces " -"of the QGIS interface. If you installed InaSAFE previously, make sure it is " -"closed by clicking on the X in the upper right corner of the InaSAFE panel. " -"If it isn’t open or you haven’t installed it yet, carry on. We will come " -"back to this later." -msgstr "" -"Selanjutnya kita akan membuka sebuah proyek QGIS dan melihat beberapa " -"perbedaan dari tampilan antarmuka QGIS. Jika Anda sebelumnya Anda sudah " -"menginstal InaSAFE, pastikan QGIS tersebut sudah tertutup dengan mengklik " -"tombol :guilabel:`X` pada bagian kanan atas dari panel InaSAFE. Jika belum, " -"teruskanlah. Kita akan kembali lagi pada hal ini nantinya." - -# 3e81055cafc04f3aa56750d9934524eb -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:116 -msgid "" -"Click on the folder icon on the upper toolbar or go to :menuselection:" -"`Project --> Open...`" -msgstr "" -"Klik ikon folder pada toolbar paling atas atau pergi ke :menuselection:" -"`Project ‣ Buka...`" - -# ce4ed4c3a05340099d8e0ba670ba4bf1 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:121 -msgid "" -"Navigate to the tutorial files and go into the **QGIS for Disaster " -"Management/ directory**. Open the file named **Chapter_3_Basic QGIS.qgs**. " -"QGIS should now look something like the following image. Let’s pause for a " -"moment and go over the various components of the QGIS interface." -msgstr "" -"Navigasikan ke file tutorial QGIS dan masuk ke ** direktori QGIS for " -"Disaster Management/**. Buka file bernama **Chapter_3_BasicQGIS.qgs**. " -"Tampilan QGIS akan terlihat seperti gambar di bawah ini. Mari kita berhenti " -"sejenak dan pergi ke beberapa komponen yang terdapat pada tampilan antarmuka " -"QGIS." - -# 75e7e8f8d7024948ab0c51d3d1db6457 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:128 -msgid "**Map Canvas**" -msgstr "**Kanvas Peta**" - -# 52acd4579ddf4cbeb868d0514a79a2a5 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:130 -msgid "" -"This is the window where the map is shown. Our project has two different " -"files open, one which shows districts of the Sleman regency, and another " -"that shows the railway line running through the area. Both of these files " -"are drawn together in the map canvas." -msgstr "" -"Ini akan membuka jendela dimana peta yang kita buat ditampilkan. Proyek kita " -"terdiri dari dua file yang berbeda, satu yang menggambarkan kecamatan dari " -"kabupaten Sleman, dan satu lagi menjelaskan bahwa terdapat rel kereta yang " -"melintas melalui area. Anda dapat melihat kedua file ini akan digambar pada " -"area yang sama di Map Canvas." - -# 7902db14786d4ffe8c649a0f26927065 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:135 -msgid "**Layers Panel**" -msgstr "**Panel Layer**" - -# f5444f1d337d4c069e1afa54692cd501 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:137 -msgid "" -"On the left side of QGIS is the layers list. This lists the layers, or " -"files, that are loaded into our QGIS project. In this project, we have two " -"layers, **Kecamatan_Sleman** and **railway_Sleman_OSM**." -msgstr "" -"Pada bagian kiri QGIS terdapat daftar layer. Daftar ini menampilkan layer-" -"layer, atau file, yang dimasukkan ke dalam proyek QGIS. Pada proyek ini, " -"kita memliki dua layer, **Kecamatan_Sleman** dan **railway_Sleman_OSM**." - -# d35dbe32a7024e068a2d6066bb82e9ce -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:140 -msgid "" -"The layers panel not only shows all the files that are currently opened, but " -"also determines the order that they are drawn on the map canvas. A layer " -"that is at the bottom of the list will be drawn first, and any layers above " -"it will be drawn on top." -msgstr "" -"Panel layer tidak hanya menunjukkan semua file yang kita buka, tetapi juga " -"menjelaskan susunan urutan yang akan kita gambar pada map canvas. Sebuah " -"layer yang terdapat di posisi paling bawah akan tergambar pertama kali dan " -"beberapa layer yang terdapat diatasnya akan digambar pada posisi paling atas." - -# 8dd8a086945a4af69a7655f1fadaec6d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:143 -msgid "" -"Click on the layer :guilabel:`railway_Sleman_OSM` and drag it below the " -"layer named **Kecamatan_Sleman**." -msgstr "" -"Klik pada layer :guilabel:`railway_Sleman_OSM` dan geser ke bawah layer yang " -"bernama **Kecamatan_Sleman**." - -# 6d4c9b43305d4e95b44478e75a6dd717 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:149 -msgid "" -"Notice how the map canvas changes. The railway layer is now shown below the " -"district layer, and part of the railway is now obscured. A map should never " -"show railway hidden beneath district areas, so go ahead and move the layers " -"back." -msgstr "" -"Perhatikan bahwa tampilan peta berubah. Layer rel kereta api sekarang " -"terlihat di bawah layer kecamatan dan bagian dari rel kereta sekarang " -"diburamkan. Peta tidak akan menampilkan rel kereta yang terletak tersembunyi " -"di bawah area kecamatan. Sekarang kembalikan layer tersebut ke posisi semua." - -# f344997ec5454eb5ba4c34ebd700b420 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:152 -msgid "" -"Uncheck the box next to a layer’s name. It will be hidden from the map " -"canvas." -msgstr "" -"Hilangkan semua tanda centang pada layer yang ada. Hal tersebut akan " -"menyembunyikan layer dari map canvas." - -# ea7a054f0d2d4a9e879643773d870b6a -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:155 -msgid "" -"Expand collapsed items by clicking the arrow or plus symbol beside them. " -"This will provide you with more information on the layer’s current " -"appearance." -msgstr "" -"Anda dapat menampilkan detail dari layer dengan meng-klik tombol panah atau " -"simbol plus di samping layer Anda. Hal ini akan memberikan Anda infomasi " -"lebih lanjut mengenai tampilan layer saat ini." - -# 93818df660824ed6845ef50e75f03980 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:161 -msgid "" -"Right-click on a layer to view a menu with menu extra options. You’ll be " -"using some of them before long, so take a look around!" -msgstr "" -"Klik kanan pada layer untuk melihat menu dengan tampilan pilihan tambahan. " -"Nantinya Anda akan menggunakan beberapa menu tersebut, jadi sekarang saatnya " -"Anda mengeksplorasi sejenak. Selamat mencoba!" - -# 5b3bcce90e3046ce863416f3de96e35d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:164 -msgid "**Toolbars**" -msgstr "**Toolbars**" - -# 0bc4022e6b944949802efcc68e773d85 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:166 -msgid "" -"At the top of QGIS are a large number of tools, which are contained with " -"various *toolbars*. For example, the *File* toolbar allows you to save, " -"load, print, and start a new project. We have already used one of these " -"tools when we opened this project." -msgstr "" -"Pada bagian atas dari QGIS terdapat banyak sekali *tools*, dimana masing-" -"masing *tool* tersebut masuk ke dalam beberapa kategori “toolbar”. Sebagai " -"contoh, *toolbar File* memungkinkan Anda untuk menyimpan, membuka, mencetak " -"dan memulai proyek baru. Kita telah menggunakan salah satu *tool* dari " -"*toolbar File* ketika kita membuka proyek baru." - -# fdf88574766947ab863e007d9c8e3d90 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:173 -msgid "" -"By hovering your mouse over an icon, the name of the tool will appear to " -"help you identify each tool." -msgstr "" -"Dengan mengarahkan mouse Anda kepada icon yang tersedia, nama *tool* " -"tersebut akan muncul untuk membantu Anda mengidentifikasi setiap *tool*." - -# 2edab9889ce34d9c9fe74c990def1d6f -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:175 -msgid "" -"The number of tools (buttons) can seem a bit overwhelming at first, but you " -"will gradually get used to them. The tools are grouped into related " -"functions on toolbars. If you look closely, you can see a vertical array of " -"ten dots to the left of each toolbar. By dragging these with your mouse, you " -"can move the toolbar to a more convenient position, or separate it so that " -"it stands on its own." -msgstr "" -"Jumlah *tool* (tombol) yang ada akan tampak sangat banyak pada awalnya, tapi " -"Anda perlahan akan mengenalnya. *Tools* yang ada dikelompokkan sesuai dengan " -"fungsi pada *toolbars*. Jika Anda melihat lebih dekat, Anda akan melihat 10 " -"titik-titik vertikal pada bagian kiri dari setiap toolbar. Jika Anda meng-" -"klik dan menahannya dengan menggunakan *mouse* Anda, Anda dapat menggerakkan " -"toolbar ke tempat yang lebih sesuai atau memisahkannnya sesuai dengan " -"keinginan Anda." - -# 685d9f2e9c1f42abbff2a26b7f612b27 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:184 -msgid "" -"If you feel overwhelmed by the number of toolbars, you can customize the " -"interface to see only the tools you use most often, adding or removing " -"toolbars as necessary." -msgstr "" -"Jika Anda merasa terganggu dengan jumlah toolbar yang ada, Anda dapat " -"mengubah tampilannya dengan menampilkan tool yang Anda sering gunakan saja, " -"menambahkan atau menghapus toolbar sesuai keperluan." - -# fc04a912e2ab499e898c330109f93e97 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:187 -msgid "" -"To add or remove a toolbar, right-click on any of the toolbars, or go to :" -"menuselection:`View --> Toolbars`." -msgstr "" -"Untuk menambahkan atau menghapus toolbar, klik kanan pada toolbar atau pergi " -"ke :menuselection:`Tampilan ‣ Panel alat-alat`." - -# 57e2985b384147239937f6b9e67fd00a -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:192 -msgid "" -"Let’s remove some of the toolbars that we will not be using in this " -"training, to make the interface a bit cleaner. Right-click on the toolbar, " -"and uncheck the boxes next to the following toolbars:" -msgstr "" -"Mari sekarang kita hilangkan beberapa toolbar yang kita rasa tidak digunakan " -"pada pelatihan ini, untuk membuat tampilan lebih bersih. Klik kanan pada " -"toolbar, dan hilangkan tanda centang kotak yang berada di toolbar berikut " -"ini:" - -# 8da1a7bf63cf489ea2ec2bbf7a891812 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:195 -msgid "Advanced Digitizing" -msgstr "Digitalisasi Tingkat Lanjut" - -# 559650b0c4c4442e8d942ffea8b40a4d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:197 -msgid "Database" -msgstr "Basis Data" - -# a1c3466ffcea44bebce9fe7964df1f66 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:199 -msgid "GRASS" -msgstr "GRASS" - -# 74c5f7d9794a4a3f84c6901a226566c0 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:201 -msgid "Label" -msgstr "Label" - -# f3e79549d81b428fb3fc1c3a30936570 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:203 -msgid "Raster" -msgstr "Raster" - -# 910102edc4e2453e94fbcadc0f8870fa -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:205 -msgid "Vector" -msgstr "Vektor" - -# 51d47d1cc2464a0a998da7dba6899359 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:207 -msgid "" -"After removing these toolbars and moving them around, your tools should look " -"like this:" -msgstr "" -"Setelah menghilangkan dan memindahkan beberapa toolbar, tampilan tools Anda " -"mungkin akan terlihat seperti ini:" - -# b978db020782432eb021555c50041a76 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:212 -msgid "" -"Even if they are not visible in a toolbar, all of your tools will remain " -"accessible via the menus. For example, if you remove the *File* toolbar " -"(which contains the *Save* button), you can still save your map by going to :" -"menuselection:`Project --> Save`." -msgstr "" -"Meskipun tidak terlihat pada toolbar, semua tool-tool Anda akan tetap bisa " -"diakses melalui Menu. Sebagai contoh, jika Anda menghilangkan toolbar *File* " -"(yang terdapat tombol *Simpan*), Anda masih dapat menyimpan peta Anda dengan " -"pergi ke :menuselection:`Project ‣ Simpan`." - -# b6323fa58bfa40299cb646398b983ebc -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:216 -msgid "**Status Bar**" -msgstr "**Status Bar**" - -# 5786f557add644dbbbbc87ada841993c -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:218 -msgid "" -"The status bar shows information about the current map. It allows you to " -"adjust the map scale and see the mouse cursor’s coordinates on the map." -msgstr "" -"Status bar akan menampilkan informasi mengenai peta Anda. Ini juga " -"memperbolehkan Anda untuk mengatur skala peta dan melihat koordinat yang " -"mouse Anda arahkan pada peta." - -# 415220bc091d484aa7a08bd9cd6846fb -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:224 -msgid "" -"The coordinates of this map are the same type of coordinates that are " -"recorded by GPS devices. The status bar show shows the longitude and " -"latitude of your mouse cursor." -msgstr "" -"Koordinat peta ini sama dengan tipe koordinat yang telah Anda pelajari " -"ketika Anda belajar mengenai GPS. Status bar ini akan menunjukkan posisi " -"lintang dan bujur dari kursor mouse Anda." - -# 55897c1cb061423793d38b26e7d76754 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:227 -msgid "" -"This may not all be clear right now, but as you progress in your knowledge " -"of GIS it will make more and more sense." -msgstr "" -"Mungkin hal ini masih belum terlalu jelas untuk Anda, tapi seiring dengan " -"berjalannya training dan peningkatan kemampuan Anda di SIG, hal ini akan " -"terlihat masuk akal." - -# 8f0ad5d88420438c8333006086b94f04 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:230 -msgid "3.4 Adding a Vector Layer" -msgstr "3.4 Menambah Layer Vektor" - -# 2c06f5a365be4f688c8ff7f056c76eb7 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:232 -msgid "Now we will add an additional layer containing roads to our project." -msgstr "" -"Sekarang kita akan menambahkan layer tambahan yang terdiri dari jaringan " -"jalan ke dalam proyek kita." - -# c06f080caba648149f7b849231859db8 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:234 -msgid "Click on the :guilabel:`Add Vector Layer` button on the toolbar." -msgstr "Klik pada tombol :guilabel:`Tambahkan Layer Vektor` pada toolbar." - -# 5c300d75a696404da2e9d47dbfee621e -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:239 -msgid "A dialog box will open. Click the :guilabel:`Browse` button." -msgstr "Sebuah kotak dialog akan muncul. Klik tombol :guilabel:`Navigasi`." - -# 01af215a96c745f48d35a44e2d983601 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:244 -msgid "" -"Navigate to the file :file:`QGIS for Disaster Management/Sleman/" -"Jalan_Sleman_OSM.shp`. Select the file and click :guilabel:`Open`." -msgstr "" -"Pergilah menuju *file* :file:`QGIS for Disaster Management/Sleman/" -"Jalan_Sleman_OSM.shp`. Pilih *file* dan klik :guilabel:`Open`." - -# 2ae2f773a6c74773bf42eea3f3dcde54 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:247 -msgid "" -"One of the most common file formats are **shapefiles**, which end with the " -"extension **.shp**. Shapefiles are often used to save geodata, and are " -"commonly used with GIS applications like QGIS." -msgstr "" -"Salah satu format file yang umum adalah **shapefiles**, dengan ekstensi file " -"**.shp**. Shapefiles sering digunakan untuk menyimpan geodata, dan umumnya " -"digunakan pada aplikasi SIG seperti QGIS." - -# c5b81561d1b84dc8a0d67a8e2039d3c7 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:250 -msgid "" -"You should now see your new layer appear both in the map canvas and in the " -"layers panel. It should be drawn above both the district and railway layers." -msgstr "" -"Anda sekarang dapat melihat layer baru pada map canvas dan di daftar layer. " -"Layer baru tersebut muncul di atas layer kecamatan dan layer rel kereta api." - -# 4d78a3ebfa584b98aabe720f7e0f8aa7 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:257 -msgid "3.5 Basic QGIS Tools" -msgstr "3.5 Tool-tool Dasar QGIS" - -# 313a46994ed84d97bc1806467fd4f861 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:259 -msgid "" -"We’ve already taken a look at the QGIS toolbar and seen the tools for " -"opening a project and adding a new layer. Here’s a list of some other " -"commonly used tools. Feel free to play around with them if you like. The " -"important thing for now is to start getting familiar with QGIS." -msgstr "" -"Kita telah melihat pada toolbar QGIS dan melihat tool untuk membuka proyek " -"dan menambahkan layer baru. Di bawah ini akan ditampilkan beberapa daftar " -"tool yang sering digunakan. Silahkan jika Anda ingin mengeksplorasi tools " -"tersebut. Hal ini bertujuan untuk membuat kita merasa familiar dan terbiasa " -"dengan QGIS." - -# 2173753867d141dfb16481af79181647 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:265 -msgid "Toggle Editing" -msgstr "Toggle Editing" - -# 85dbf269140f43238d27deaf20252dad -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:265 -msgid "Edit features in a layer" -msgstr "Mengedit suatu fitur pada layer" - -# 46d8e81096494df596b6b00643812873 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:267 -msgid "Pan Map" -msgstr "Menggerakkan Peta" - -# 6a0a8291ab874ec780513801c9b142ea -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:267 -msgid "Drag the map to a new location" -msgstr "Menggeser peta ke lokasi yang kita inginkan" - -# 2afa330b2fa041a5be83c6278594305b -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:269 -msgid "Zoom In" -msgstr "Perbesar" - -# d4c5f74c38ab42709d02a917388a9207 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:269 -msgid "Zoom in on the map" -msgstr "Perbesar peta" - -# f838591f5d2a4d8cbfc9e518fd4d00f6 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:271 -msgid "Zoom Out" -msgstr "Perkecil" - -# 385df475910347e3aef9d2820444a054 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:271 -msgid "Zoom out on the map" -msgstr "Perkecil peta" - -# b509eb6fa2474173a806117c41801186 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:273 -msgid "Zoom Full" -msgstr "Perbesar keseluruhan" - -# adc3bf53da6d4ca4918ce34d776769e3 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:273 -msgid "Zoom so that all layers fit in the map window" -msgstr "Perbesar agar semua layer tampak pada jendela peta" - -# 22ffedc2380a4dc7913d0b2267f07014 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:275 -msgid "Open Attribute Table" -msgstr "Buka Tabel Attribut" - -# 03a9a37d56d34d12af6b20c434c8f945 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:275 -msgid "Open a layer’s attribute table" -msgstr "Membuka tabel atribut dari sebuah layer" - -# ef23ba8630474a57ad8fbcf2598b9e99 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:277 -msgid "Select Single Feature" -msgstr "Memilih satu fitur" - -# 046bf362f9484879992a9b4350169a76 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:277 -msgid "Select a feature in the selected layer" -msgstr "Memilih fitur dari layer yang dipilih" - -# 26ab9a9d1c354285885b05d5bb958173 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:281 -msgid "3.6 Navigating the Map" -msgstr "3.6 Menavigasikan Peta" - -# 8032ad77922842ada63cc4edf87db966 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:283 -msgid "" -"Before we examine the attributes of individual features, let’s take a quick " -"look at how to navigate the map. The main controls for moving the map around " -"and zooming in and out are by default on the panels at the top of QGIS." -msgstr "" -"Sebelum kita melihat atribut dari fitur secara individual, mari kita lihat " -"bagaimana menggerakkan peta. Kontrol utama untuk menggerakkan peta dan " -"memperbesar atau memperkecil secara pengaturan bawaan pada panel di bagian " -"atas QGIS." - -# 55e801a95ee5491cae5f5c97565400fa -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:289 -msgid "" -"When you click on one of these buttons, it changes what you can do with your " -"mouse in the main map window." -msgstr "" -"Ketika Anda meng-klik salah satu tombol tersebut akan mengubah fungsi mouse " -"Anda pada jendela peta." - -# dc5bc276c8824eb4b5454f82e5983f9b -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:291 -msgid "" -"Select the first button that looks like a hand. Now hold the left mouse " -"button down and drag the mouse in the map window. This allows you to pan the " -"map, or move it around." -msgstr "" -"Pilih tombol pertama yang terlihat seperti gambar tangan. Sekarang klik kiri " -"mouse Anda dan tahan kemudian geser pada jendela peta. Ini memungkinkan Anda " -"dapat menggerakkan peta ke arah yang Anda inginkan." - -# def91eda80bb49d3884a1cdc132064dd -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:295 -msgid "" -"The button which has a plus sign below a magnifying glass allows you to zoom " -"in on the map. Select this button. Using your mouse, draw a box around an " -"area where you want to zoom in, and release your mouse." -msgstr "" -"Tombol yang berbentuk kaca pembesar dengan tanda tambah membuat Anda dapat " -"memperbesar peta. Pilih tombol ini dan buatlah kotak di sekitar area yang " -"ingin Anda perbesar dan lepaslah mouse Anda." - -# 74ea281c5c344f9e99f2e99a1e27705d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:299 -msgid "" -"The button which has a minus sign below a magnifying glass allows you to " -"zoom out on the map. Select this button and click on the map." -msgstr "" -"Tombol yang berbentuk kaca pembesar dengan tanda minus membuat Anda dapat " -"memperkecil peta. Pilih tombol ini dan klik pada peta." - -# 3f97c050cbb34c13b975e32128c618cd -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:302 -msgid "" -"The button that looks like a magnifying glass with red arrows pointing away " -"from it lets you zoom to the full extent of your map. Click this button to " -"see all of the data that is loaded in the project fit into the map canvas." -msgstr "" -"Tombol yang berbentuk kaca pembesar dengan tanda panah berwarna merah " -"mengarahkan Anda menuju tampilan peta secara keseluruhan. Ketika Anda meng-" -"klik tombol ini, Anda dapat melihat semua data yang Anda masukkan pada map " -"canvas." - -# d21588f26a06453fb177df5a68b9d1b9 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:306 -msgid "3.7 Managing Plugins" -msgstr "3.7 Mengatur Plugin" - -# d1b620f566054e3daaf66f4acd357f55 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:308 -msgid "" -"QGIS has core functionality, which we will continue to explore in this " -"guide, but it also allows the use of additional **plugins**, which allow you " -"to add functionality to the software. Again, these plugins are free. To use " -"them, you simply need to connect to the internet and install. To install new " -"plugins, make sure you are connected to the internet. They first need to be " -"downloaded, and then activated. Some plugins are already downloaded and " -"available, and you can see them by going to :menuselection:`Plugins ‣ Manage " -"and Install Plugins`." -msgstr "" -"QGIS mempunyai menu utama, dimana kita akan melanjutkan eksplorasi lebih " -"jauh pada panduan ini, tapi pada QGIS juga memungkinkan penggunaan " -"**plugin** tambahan, sehingga menambah fungsi dari perangkat lunak ini. Dan " -"lagi, plugin ini tidak berbayar. Untuk menggunakannya, Anda hanya butuh " -"terhubung dengan internet dan menginstallnya. Pertama-tama mendownload " -"pluginnya kemudian mengaktifkannya. Beberapa plugin telah terdownload dan " -"dapat digunakan, Anda dapat melihatnya dengan pergi ke :menuselection:" -"`Plugins ‣ Kelola dan Install Plugin`." - -# 2e7a19a922c74edab7130c0decfb48a6 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:320 -msgid "" -"This displays a list of plugins that have already been downloaded and can be " -"activated. To enable a plugin, check the box next to it in this menu. For " -"now, let’s leave all the plugins as they are. We’re going to download and " -"activate a new plugin in the next section." -msgstr "" -"Jendela ini menampilkan daftar plugin yang telah terdownload dan dapat " -"diaktifkan. Untuk mengaktifkan sebuah plugin, centanglah kotak disampingnya " -"pada menu ini. Untuk sekarang, mari kita biarkan dahulu plugin-plugin ini " -"apa adanya. Kita akan mencoba mendownload dan mengaktifkan plugin baru di " -"sesi berikutnya." - -# e1cfc9ae021e4d23be7f4808a971ff6e -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:329 -msgid "3.7.1 Installing Plugins" -msgstr "3.7.1 Instalasi Plugin" - -# 25ad7a806f3149948773382deeda4a5f -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:331 -msgid "" -"There are numerous plugins available, but they must first be downloaded. To " -"download a plugin, click the *Not installed* tab. This will load available " -"plugin repositories, and you will see a list of all available plugins for " -"download." -msgstr "" -"Terdapat lebih banyak lagi plugin, tetapi mereka harus didownload terlebih " -"dahulu. Untuk mendownload sebuah plugin, pergilah ke tab guilabel:`Tidak " -"terpasang`. Langkah ini akan menampilkan plugin yang tersedia di dalam " -"repositori, dan Anda akan melihat daftar plugin yang dapat didownload." - -# 610a7f8b13b54906a16bcd0c13ade938 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:337 -msgid "" -"Note that plugins which have already been downloaded can be activated or " -"deactivated from the *Installed* tab. If it has not yet been downloaded, " -"downloading a plugin from the *Not installed* tab will automatically " -"activate it." -msgstr "" -"Perlu diingat bahwa plugin yang telah didownload dapat diaktifkan atau dinon-" -"aktifkan dari tab *Terinstall*. Jika belum terdownload, mendownload sebuah " -"plugin dari tab *Tidak terpasang* akan secara otomatis mengaktifkan plugin " -"tersebut." - -# d940f4fe66d04e4e95d17acff92c01ab -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:341 -msgid "3.7.2 The OpenLayers Plugin" -msgstr "3.7.2 Plugin OpenLayers" - -# 9e07108a0c294a4c82fe62aae551e066 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:343 -msgid "" -"The OpenLayers plugin allows you to view various web maps as a layer in " -"QGIS. This means that you can access the OSM slippy map, Google Maps and " -"Bing Maps from QGIS directly. Follow along and we’ll see how this works." -msgstr "" -"Plugin OpenLayer akan memperkenankan Anda untuk melihat berbagai variasi " -"peta berbasis web sebagai sebuah layer di dalam QGIS. Ini artinya Anda dapat " -"mengakses peta OSM, Google Maps, dan Bing Maps, dari QGIS. Ikutilah langkah " -"ini dan kita akan memahami bagaimana cara kerjanya." - -# c427571556474817a8cc8f7d5a4ec76a -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:347 -msgid "" -"Go to :menuselection:`Plugins --> Manage and Install Plugins…` and click on " -"the :guilabel:`Not installed` tab. Type :kbd:`openlayers` into the Search " -"box." -msgstr "" -"Pergilah ke :menuselection:`Plugins ‣ Kelola dan Install Plugins...` dan " -"klik pada tab :guilabel:`Tidak terpasang`. Ketik :kbd:`openlayers` di dalam " -"kotak pencarian." - -# a53257f48c574bf9ad12e17473376316 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:353 -msgid "" -"Select :guilabel:`OpenLayers Plugin` from the list and click :guilabel:" -"`Install plugin`." -msgstr "" -"Pilih :guilabel:`OpenLayers Plugin` dari list yang tersedia dan klik :" -"guilabel:`Install plugin`." - -# a4914ea95fd24647b5056ab7b81c6406 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:358 -msgid "It may take a few minutes to download." -msgstr "Mungkin akan membutuhkan beberapa menit untuk mendownload plugin." - -# 9af2e5ebb9ed465181b35630d0ec3c2c -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:363 -msgid "When the download finishes click :guilabel:`OK`." -msgstr "Ketika proses download selesai, klik :guilabel:`OK`." - -# 81bc8bc3ac1e43fa9cc9a87d2ebe3735 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:368 -msgid "" -"Now the OpenLayers plugin is installed and activated. Click the :guilabel:" -"`Installed` tab to see it in your list of active plugins. Click :guilabel:" -"`Close` when you are finished." -msgstr "" -"Sekarang plugin OpenLayers telah terinstal dan diaktifkan. Klik pada tab :" -"guilabel:`Terinstall` untuk melihatnya di daftar plugin aktif. Klik :" -"guilabel:`Close` jika anda sudah selesai." - -# 21afc8285c474f09adab39cbe0c4ed4c -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:375 -msgid "" -"The new plugin provides a menu which offer extra functionality. Go to :" -"menuselection:`*Web --> OpenLayers plugin*` to see various map layers that " -"can be loaded." -msgstr "" -"Plugin OpenLayers ini menyediakan menu yang memberikan fungsi ekstra. Pergi " -"ke :menuselection:`Web ‣ OpenLayers plugin` untuk melihat berbagai layer " -"peta yang dapat ditampilkan." - -# d4b65351a0f94d5c9b9f26c8699da35b -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:381 -msgid "" -"Go to :menuselection:`Web --> OpenLayers plugin --> Bing Maps --> Bing " -"Aerial`. A new layer called “Bing Aerial” will be added to the Layers panel, " -"and the imagery will load in the map canvas. If the layer is above your " -"other layers, drag it to the bottom of the layers list." -msgstr "" -"Pergi ke :menuselection:`Web ‣ OpenLayers plugin ‣ Bing Maps ‣ Bing Aerial`. " -"Sebuah layer baru bernama “Bing Aerial” akan ditambahkan di panel layer, dan " -"citranya akan muncul di kanvas peta Anda. Jika layer tersebut berada di atas " -"layer-layer Anda yang lain, drag layer Bing tersebut ke urutan paling bawah " -"dari daftar layer." - -# fba2ca061a014088975d2d2c928c7f62 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:388 -msgid "Your project should now look like this:" -msgstr "Proyek Anda seharusnya sekarang terlihat seperti ini:" - -# 2a3552bf99914b4db8bdfb0e0cf235ef -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:393 -msgid "" -"If you pay attention, there is something wrong with the maps. Can you guess " -"what it is? All three layers above Bing Aerial layers should be shown on the " -"map." -msgstr "" -"Jika Anda perhatikan, ada sesuatu yang salah dengan petanya. Dapatkah Anda " -"menebak apa itu? Ketiga layer yang berada di atas layer Bing Aerial " -"seharusnya terlihat di dalam peta." - -# cbd87b4567f343bc94569a5a0f88b268 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:397 -msgid "" -"To fix this, go to :menuselection:`View --> Panels` and check the box next " -"to :guilabel:`Layer Order Panel`." -msgstr "" -"Untuk memperbaikinya, pergilah ke :menuselection:`Tampilan ‣ Panel-panel`, " -"dan aktifkan panel :guilabel:`Layer Order Panel`." - -# 5c4cbab1e21e4a31a38258470bb2ff62 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:402 -msgid "" -"The Layer order panel will appear next to Layers panel (1). Click that panel " -"and uncheck :guilabel:`Control Rendering Order` (2)." -msgstr "" -"Kemudian, panel urutan layer akan muncul di sebelah panel Layer (1). Klik " -"panel tersebut dan hilangkan tanda centang pada :guilabel:`Kontrol urutan " -"render` untuk memperbaiki masalah (2)." - -# 943e04802824429ababcf7a590ca3983 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:408 -msgid "" -"Return to the Layers panel. The map should appear in correct order. All " -"layers above Bing Aerial will show up on the map canvas as in the image " -"below." -msgstr "" -"Kembali ke panel Layer. Peta Anda akan tampil dengan urutan yang benar. " -"Semua layer yang berada di atas Bing Aerial akan terlihat di dalam kanvas " -"peta seperti gambar di bawah." - -# 0e07bb2d2bb54abcab712ebaa16391ee -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:414 -msgid "" -"Adding a layer such as Bing Aerial will change the Coordinate Reference " -"System, or CRS, of your project. Essentially this means that your project is " -"not using longitude and latitude coordinates anymore. This shouldn’t affect " -"you right now, but it will make sense later when we cover CRSes." -msgstr "" -"Menambahkan sebuah layer seperi imagery dari Bing Aerial akan mengubah " -"Sistem Referensi Koordinat, atau CRS, proyek Anda. Artinya, proyek Anda " -"tidak lagi menggunakan koordinat garis lintang dan bujur. Ini mungkin tidak " -"banyak mempengaruhi projek Anda sekarang, tapi ini akan terasa nanti ketika " -"kita mempelajari mengenai CRS." - -# b583aa39f8c44c8c8c87f0c3f943de54 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:418 -msgid "" -"If the map data does not appear to match up correctly with the aerial " -"imagery, it may be due to different CRSes. You can fix this problem by going " -"to :menuselection:`*Project --> Project Properties*` and checking the box " -"next to *Enable ‘on the fly’ CRS transformation*." -msgstr "" -"Jika data peta tidak sesuai dengan citra satelitnya, hal ini mungkin karena " -"perbedaan CRS-nya. Anda dapat memperbaiki masalah ini dengan menuju ke :" -"menuselection:`Project ‣ Project Properties...` dan periksalah kotak di " -"sebelah :guilabel:`Aktifkan transformasi CRS ‘on the fly’`." - -# 29fd800d4724442081e1bef5206e8a60 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:428 -msgid "" -"Great! Now we can see our map data on top of an aerial photograph of the " -"earth. Note that this is the same imagery provided by Microsoft Bing that " -"you would load for editing in JOSM. Try unchecking the box next to the " -"layer :guilabel:`Kecamatan Sleman` so that you can see the area better. Zoom " -"in close to see detailed imagery with our street and railway layers " -"displayed on top." -msgstr "" -"Sekarang kita bisa melihat data pada peta kita berada di atas citra satelit. " -"Perhatikan bahwa citra ini merupakan citra yang sama yang disediakan oleh " -"Bing Microsoft yang Anda tampilkan untuk mengedit data menggunakan JOSM. " -"Cobalah untuk menghilangkan centang pada layer :guilabel:`Kecamatan_Sleman` " -"sehingga Anda dapat melihat area dengan lebih baik. Perbesar tampilan untuk " -"melihat detail citra dengan layer jaringan jalan dan jalur kereta " -"ditampilkan di atas citra." - -# 6781502b7d1d473e8964f90315f39900 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:436 -msgid "" -"Remove the Bing Aerial layer by right-clicking it in the Layers panel and " -"clicking :guilabel:`Remove`." -msgstr "" -"Hapuslah layer Bing Aerial dengan cara klik kanan pada layer tersebut dan " -"pilih :guilabel:`Buang`." - -# dcfdd1bdf26f4f089a220686bdd52ca6 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:438 -msgid "" -"Try out other layers that are available to you from the :menuselection:`Web " -"--> OpenLayers plugin` menu.." -msgstr "" -"Cobalah terapkan untuk layer-layer lainnya yang memungkinkan di menu :" -"menuselection:`Web ‣ OpenLayers plugin`." - -# 59eb1c577d42480c8391753f651f9967 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:441 -msgid "3.7.3 Install InaSAFE Plugin" -msgstr "3.7.3 Instalasi Plugin QGIS" - -# 8be92d5b2b91410e960b9926f9a3e7c5 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:443 -msgid "Now, we are going to install InaSAFE plugin." -msgstr "Sekarang kita akan menginstal plugin InaSAFE." - -# 3d7c89f0c7d34767bf7f573a25ad6b98 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:445 -msgid "Go to :guilabel:`Plugins Manage and install plugins` menu" -msgstr "Pergi ke menu :menuselection:`Plugins > Kelola dan Install Plugin`." - -# 3795609a9dbb43e19cf65a0fe2f9da0a -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:450 -msgid "Go to the Search box and type :kbd:`“inasafe”`" -msgstr "Arahkan ke kotak pencarian dan ketikkan :kbd:`“inasafe”`" - -# db828777f983414eac8103f77f73117e -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:455 -msgid "" -"Select InaSAFE and click :guilabel:`Install plugin` and wait for a moment " -"until a pop-up notification showing that plugin has installed successfully." -msgstr "" -"Pilih InaSAFE dan klik :guilabel:`Install plugin` dan tunggu hingga muncul " -"pemberitahuan yang menunjukkan bahwa plugin sudah terinstal dengan sukses." - -# 401ddb407989462ca775b2a88f8772d4 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:460 -msgid "" -"Close the plugin manager window and we will learn about InaSAFE later in " -"Chapter 8." -msgstr "" -"Tutup jendela pengaturan plugin dan kita akan belajar tentang InaSAFE pada " -"bab selanjutnya, Bab 8." - -# 372140b0e2e34580b158d568485bd96d -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:462 -msgid "" -"Now you already know basic QGIS from installation, understand QGIS layout, " -"learning useful toolbar and basic operation in QGIS. You also already learn " -"about how to install InaSAFE, a plugin that we will learn more in the last " -"chapter of this module." -msgstr "" -"Sekarang Anda sudah mengetahui dasar QGIS mulai dari cara menginstal, " -"memahami *layout* QGIS, mempelajari toolbar penting dan operasi dasar pada " -"QGIS. Anda juga sudah belajar begaimana menginstal InaSAFE, sebuah plugin " -"yang akan kita pelajari lebih lanjut pada bab terakhir dari modul ini." - -# 65bf9722093b493db85378cbdd7651b2 -#: ../../source/training/qgis/Chapter-03-Basic_QGIS.rst:465 -msgid ":ref:`Go to next chapter --> `" -msgstr ":ref:`Pergi ke bab selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-04-Map_Projection_Basic.po b/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-04-Map_Projection_Basic.po deleted file mode 100644 index bd0955e4..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-04-Map_Projection_Basic.po +++ /dev/null @@ -1,773 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Ranie Dwi Anugrah , 2016\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 650c8d038b024dd689c0421908f46302 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:6 -msgid "Chapter 4: Map Projection Basics" -msgstr "Bab 4 : Dasar Proyeksi Peta" - -# e8940f9abaf442cda52e6de487cb0e98 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 34fc289c9907414d95e7f4d096ee1059 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:10 -msgid "Understand Coordinate Reference Systems (CRS)" -msgstr "" -"Pemahaman Sistem Referensi Koordinat (Coordinate Reference System - CRS)" - -# 9657973d4b1b4c3fa183885e2ec57011 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:12 -msgid "Identify the CRS of a vector dataset" -msgstr "Identifikasi CRS pada dataset vektor" - -# a50d718657f249fdbaaacdc2982fd8cb -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:14 -msgid "Doing “on the fly” reprojection" -msgstr "Melakukan proyeksi ulang “on the fly”" - -# a6064ab708824b7ab39408ab0106f3f6 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:16 -msgid "Save dataset with a different CRS" -msgstr "Simpan dataset dalam CRS yang berbeda" - -# 8cde9447b4714be4b13b1ef10e1b8cfc -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:18 -msgid "Georeference Digital Image" -msgstr "Melakukan Georeferensi pada Gambar Digital" - -# a1f90422924f4b17affcee6e01c177ad -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:20 -msgid "" -"We’ve talked a little bit about Coordinate Reference Systems (CRSs) " -"previously, but haven’t covered it in depth. In this chapter, we’ll look " -"more at what a CRS means practically, and how it affects our work in QGIS." -msgstr "" -"Kita telah berbicara sedikit tentang sistem referensi koordinat (CRS) " -"sebelumnya, tetapi belum mendalaminya lebih jauh. Pada bab ini, kita akan " -"melihat lebih jauh pada apa yang dimaksud CRS secara praktis, dan bagaimana " -"pengaruhnya terhadap pekerjaan kita di QGIS." - -# 9de4f55848fe4c2a88a8ba57d4b126c6 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:25 -msgid "4.1 Coordinate Reference System (CRS)" -msgstr "4.1 Sistem Referensi Koordinat (CRS)" - -# 5efb75376026417faa06133cb7ef7464 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:27 -msgid "" -"The CRS that all the data as well as the map itself are in right now is " -"called WGS84. This is a very common Geographic Coordinate System (GCS) for " -"representing data. But there’s a problem, as we will see." -msgstr "" -"CRS yang semua data maupun peta itu sendiri berada sekarang WGS84. Sistem " -"Koordinat Geografis (GCS) ini sangat umum untuk mempresentasikan data. " -"Tetapi ada sebuah masalah, seperti yang akan kita lihat." - -# 1a1104dbdbd94157baceedd7bdbdd92e -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:31 -msgid "" -"Open the project :file:`Chapter_4_Map Projection.qgs`, located in the :file:" -"`QGIS for Disaster Management/` folder" -msgstr "" -"Buka file project :file:`Chapter_4_Map Projection.qgs`, yang terletak di " -"folder :file:`QGIS for Disaster Management/`" - -# 4549bd672dc74eebba41eda611793cf6 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:33 -msgid "Zoom in to Indonesia by using the :guilabel:`Zoom In tool`." -msgstr "" -"Perbesar ke wilayah Indonesia menggunakan tool :guilabel:`Perbesar` / zoom " -"in." - -# 19269dd9681f4b91bab767503120c6cc -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:38 -msgid "" -"Setting the scale in the Scale field, which is in the Status Bar along the " -"bottom of the screen. While over Indonesia, set this value to 1:20000000 " -"(one to twenty million)." -msgstr "" -"Atur skala di kotak Skala yang berada di Status Bar bagian bawah. Untuk di " -"Indonesia, tetapkan nilai skala menjadi 1:20000000 (satu banding dua puluh " -"juta)." - -# 6dfab1444f4d4a52a25c7ad4b3ff9c64 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:44 -msgid "Now pan around the map while keeping an eye on the Scale field." -msgstr "" -"Sekarang arahkan ke sekitar peta sembari tetap memperhatikan kotak Skala." - -# c8db81586f1b4da6a75120185c69d432 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:46 -msgid "" -"Notice that the scale is changing? That’s because you’re moving away from " -"the one point that you zoomed into at 1:20000000, which was at the center of " -"your screen. All around that point, the scale is different." -msgstr "" -"Sadarkah bahwa skalanya berubah? Itu karena Anda beralih terlalu jauh dari " -"poin yang telah Anda zoom hingga 1:20000000 sebelumnya, yang mana telah " -"menjadi pusat dari tampilan layar komputer Anda. Pada intinya, skalanya " -"telah berubah." - -# d34225e296d749e48019331bd4426ebe -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:49 -msgid "" -"To understand why, think about a globe of the Earth. It has lines running " -"along it from North to South. These longitude lines are far apart at the " -"equator, but they meet at the poles. In a GCS, you’re working on this " -"sphere, but your screen is flat. When you try to represent the sphere of the " -"earth on a flat surface, it becomes distorted, as if you took an orange peel " -"and tried to flatten it. What this means on a map is that the longitude " -"lines stay equally far apart from each other, even at the poles (where they " -"are supposed to meet). This means that, as you travel away from the equator " -"on your map, the scale of the objects that you see gets larger and larger. " -"What this means for us, practically, is that there is no constant scale on " -"our map!" -msgstr "" -"Untuk memahami alasannya, pikirkanlah sebuah globe Bumi. Disana terdapat " -"garis-garis yang melintang dari utara hingga selatan. Garis-garis melintang " -"tersebut saling berjauhan dari garis khatulistiwa, tetapi mereka akan " -"bertemu di kedua kutub. Dalam sebuah GCS, Anda bekerja dalam bentuk bidang " -"ini, tetapi layar Anda datar. Ketika Anda mencoba untuk merepresentasikan " -"bentuk bidang dari bumi dalam suatu bidang datar, itu akan terdistorsi, sama " -"seperti bila Anda mengupas kulit jeruk dan meratakannya. Apa artinya ini, " -"alam sebuah peta ialah bahwa garis lintang tetap saling berjauhan satu sama " -"lain, bahkan di kutub sekali pun (dimana mereka seharusnya saling " -"berimpitan). Hal ini diartikan bahwa saat Anda melakukan perjalanan jauh " -"dari garis khatulistiwa di dalam peta Anda, skala objek yang Anda lihat akan " -"lebih besar dan lebih besar. Apa artinya ini untuk kita, secara praktis, " -"bahwa tidak ada skala konstan di dalam peta kita!" - -# 9a28b05aba984dd5af8792af65baffab -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:60 -msgid "" -"To solve this, we’ll use a Projected Coordinate System (PCS) instead. A PCS " -"“projects” or converts the data in a way that makes allowance for the scale " -"change and corrects it. Therefore, to keep the scale constant, we should " -"reproject our data to use a PCS." -msgstr "" -"Untuk menyelesaikan ini, kita akan menggunakan Sistem Koordinat yang telah " -"Terproyeksi (PCS). Sebuah PCS memproyeksi atau mengubah data dengan cara " -"membuatnya memungkinkan untuk perubahan skala dan mengoreksinya. Oleh karena " -"itu, untuk mempertahankan skalanya, kita harus memproyeksi ulang data kita " -"menggunakan PCS." - -# d1aceabec50b4d2395641a323182ae1f -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:64 -msgid "" -"**Projection** is the act of taking coordinates on a sphere (like the " -"earth), and manipulating them so that they can be displayed on a flat " -"surface." -msgstr "" -"**Proyeksi** adalah tindakan untuk mengambil koordinat dari sebuah bidang " -"bulat (misalnya bumi), dan memanipulasinya sehingga dapat ditampilkan dalam " -"sebuah bidang datar." - -# ebb3f650b4a64174830a41760c7371aa -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:68 -msgid "4.2 “On the Fly” Reprojection" -msgstr "4.2 Proyeksi ulang \"On the Fly\"" - -# c252803819ec4ab9a71996a4f5dc133f -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:70 -msgid "" -"Every QGIS project has a CRS, and each of the data layers have a CRS too. " -"Often these are the same. Your project may be in WGS84, and the layers too. " -"But sometimes you will add a layer that is not in the same CRS as the " -"project, and you need QGIS to convert it so that it can be displayed along " -"with the rest of the data. The term that we use for this is reprojecting *on " -"the fly*." -msgstr "" -"Setiap proyek QGIS memiliki sebuah CRS dan setiap layer data juga memiliki " -"CRS. Sering kali memiliki CRS yang sama. Proyek Anda mungkin dalam WGS84, " -"dan layernya juga. Tetapi kadang Anda akan menambah layer yang dengan CRS " -"berbeda pada proyek yang sama, dan Anda butuh QGIS untuk mengubahnya " -"sehingga dapat ditampilkan bersama dengan data lainnya. Istilah yang kita " -"gunakan untuk hal ini adalah proyeksi ulang *on the fly*." - -# 314b68b49e4c41f8be1a1ffef2a8b4d4 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:76 -msgid "" -"To enable “on the fly” projection, click on the :guilabel:`CRS` Status " -"button in the Status Bar along the bottom of the QGIS window:" -msgstr "" -"Untuk mengaktifkan proyeksi \"on the fly\", klik pada tombol :guilabel:`CRS " -"Status` di Status Bar pada bagian bawah jendela QGIS:" - -# 93a0129bb9974f4da7c80831abe53247 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:82 -msgid "" -"In the dialog that appears, check the box next to :guilabel:`Enable ‘on the " -"fly’` CRS transformation." -msgstr "" -"Pada kotak dialog yang muncul, centang kotak di sebelah :guilabel:`Aktifkan " -"transformasi CRS ‘on the fly’`." - -# f7cfd9835957403489db5cdaff42cea6 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:87 -msgid "" -"Type the :kbd:`NSIDC` into the Filter field. One CRS :guilabel:`NSIDC EASE-" -"Grid Global` will appear in the list below." -msgstr "" -"Ketikan :kbd:`NSIDC` di dalam kolom Saring. Satu CRS :guilabel:`NSIDC EASE-" -"Grid Global` akan muncul pada daftar di bawah." - -# b97a531336bf459eb749a197730a6ab2 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:92 -msgid "Click on it to select it, then click :guilabel:`OK`." -msgstr "Klik pada CRS tersebut untuk memilihnya, kemudian klik :guilabel:`OK`." - -# eafc74cbad824c538215f098179061ad -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:94 -msgid "" -"Notice how the shape of Indonesia changes. All projections work by changing " -"the apparent shapes of objects on Earth." -msgstr "" -"Perhatikan bagaimana bentuk Indonesia berubah. Semua proyeksi bekerja dengan " -"mengubah bentuk nyata objek di permukaan Bumi." - -# 3e64fcb76ab448b6a9afc226ead01676 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:96 -msgid ":guilabel:`Zoom in` to a scale of 1:20000000 again, as before." -msgstr ":guilabel:`Perbesar` ke skala 1:20000000 lagi seperti sebelumnya." - -# 56917aa1525041119b3ea6830950c55a -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:98 -msgid ":guilabel:`Pan` around the map." -msgstr ":guilabel:`Geser` sekitar peta." - -# 56c871df3d3c47fcabbffe57e084318f -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:100 -msgid "Notice how the scale stays the same!" -msgstr "Perhatikan bagaimana skala tetap sama!" - -# 315fa2e4218f4dd6a8ed6a9f73dd48a7 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:102 -msgid "" -"'On the fly' reprojection is useful for combining datasets that are in " -"different CRSes." -msgstr "" -"Proyeksi ulang 'On the fly' berguna untuk menggabungkan dataset yang berada " -"pada CRS yang berbeda." - -# aba1801d8c59445ebac2ff9ff8eda1aa -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:104 -msgid "" -"Deactivate “on the fly” reprojection again, by unchecking the box next to :" -"guilabel:`Enable ‘on the fly’` CRS transformation." -msgstr "" -"Me-non-aktifkan proyeksi ulang 'on the fly' kembali, dengan menghilangkan " -"centang pada kotak di sebelah :guilabel:`Aktifkan transformasi CRS ‘on the " -"fly’`. " - -# 8d734e19dc6d4c6882aed38d61cd11d3 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:106 -msgid "" -"Now let’s add another vector layer, located in :file:`QGIS for Disaster " -"Management/peta_dunia/Indonesia.shp`. What do you notice? The layer isn’t " -"visible! But that’s easy to fix,right?" -msgstr "" -"Sekarang tambahkan layer vektor lainnya, yang terletak di :file:`QGIS for " -"Disaster Management/peta_dunia/Indonesia.shp`. Apa yang Anda sadari? Layer " -"tersebut tidak terlihat. Namun ini bukan sebuah masalah yang besar." - -# 95ae0ee7f8374961acf41ba4e96a6ec5 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:108 -msgid "Right-click on the layer in the Layers list." -msgstr "Klik kanan pada layer di daftar Layer." - -# 5aaf1bc28b9841969ae6eaa6e0e4d055 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:110 -msgid "Select :guilabel:`Zoom to Layer Extent`." -msgstr "Pilih :guilabel:`Perbesar ke Layer`." - -# 9572f950834a40648a556b765bb0d8ce -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:112 -msgid "OK, so now we see Indonesia... but where is the rest of the world?" -msgstr "" -"Oke, sekarang kita melihat wilayah Indonesia... Tapi dimanakah wilayah muka " -"bumi yang lainnya?" - -# 34babd0159c54211be8ab2ac57a921a4 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:114 -msgid "" -"It turns out that we can zoom between these two layers, but we can’t ever " -"see them at the same time. That’s because their Coordinate Reference Systems " -"are so different. The **continents** layer is in degrees, but the " -"**Indonesia** layer is in meters. In other words, one feature in the " -"continents layer might be 8.5 degrees away from the equator, but the same " -"feature in the Indonesia layer might be 900000 meters away from the equator." -msgstr "" -"Ternyata kita dapat perbesar antara dua layer ini, tetapi kita tidak dapat " -"melihat mereka pada posisi yang sama. Hal ini karena Sistem Referensi " -"Koordinat mereka berbeda. Layer **continents** dalam derajat, tetapi layer " -"**Indonesia** dalam meter. Dengan demikian, satu fitur di layer continent " -"mungkin 8,5 derajat dari khatulistiwa, tetapi fitur yang sama di layer " -"Indonesia mungkin 900000 meter dari khatulistiwa." - -# abfe11900b254bb49eaeaffaebd9325d -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:120 -msgid "" -"8.5 degrees and 900000 meters is about the same distance, but QGIS doesn’t " -"know that! One of our layers must be reprojected to match the other layer." -msgstr "" -"8,5 derajat dan 900000 meter adalah jarak yang sama, tetapi QGIS tidak " -"mengetahui itu! Salah satu dari layer harus diproyeksi ulang untuk " -"menyesuaikan dengan layer lainnya." - -# 2df4a6b070734ef9b1a258575a3b95ab -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:123 -msgid "To correct this:" -msgstr "Untuk memperbaiki ini:" - -# f58e9abbbb0143ebb18cc4e567958aed -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:125 -msgid "" -"Switch :guilabel:`Enable ‘on the fly’` CRS transformation on again as before." -msgstr "" -"Ganti :guilabel: `Aktifkan transformasi CRS ‘on the fly’` kembali seperti " -"sebelumnya." - -# 7e8986e0da8f4461a09e90ef78c23a6c -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:127 -msgid "Zoom to the extents of the Indonesia dataset." -msgstr "Perbesar ke wilayah dataset Indonesia" - -# a4a931b9f5754c069047e0444579a602 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:129 -msgid "" -"Now, because they’re made to project in the same CRS, the two dataset fit " -"perfectly:" -msgstr "" -"Sekarang, karena mereka membuat proyek dengan CRS yang sama, kedua dataset " -"akan saling bertampalan dengan sempurna:" - -# 45fc5f31e34e49f7903ddc7e7d8fe3f2 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:134 -msgid "" -"When combining data from different sources, it’s important to remember that " -"they might not be in the same CRS. 'On the fly' reprojection helps you to " -"display them together." -msgstr "" -"Ketika menggabungkan data dari sumber yang berbeda, ini sangat penting untuk " -"diingat bahwa mereka mungkin tidak memiliki CRS yang sama. Proyeksi ulang " -"'on the fly' membantu Anda untuk menampilkan mereka secara bersamaan." - -# 70e6005558be4aa585cb98ec93e22ac6 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:138 -msgid "4.3 Dataset with different CRS" -msgstr "4.3 Dataset dengan CRS berbeda" - -# 5f63505751824cf287e5613e49adb82f -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:140 -msgid "" -"It’s great that QGIS can reproject layers on the fly so that we can work " -"with them in the same project. But this requires more time for our computer " -"to reproject the layers, and can slow down our work. For this, or for other " -"reasons, we might want to be able to reproject a dataset, and save it with " -"the new projection." -msgstr "" -"QGIS dapat memproyeksi ulang layer sehingga kita dapat bekerja dengan layer " -"tersebut dalam satu proyek yang sama. Tetapi ini membutuhkan banyak waktu " -"untuk komputer kita dalam memproyeksi ulang layer, dan dapat memperlamban " -"pekerjaan kita. Untuk ini, atau untuk alasan lain, kita mungkin ingin " -"memproyeksi ulang dataset, dan menyimpannya dengan proyeksi baru." - -# b162d5d1d7c44cd2bdcee6d96960de63 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:145 -msgid "" -"Let’s reproject the :guilabel:`Indonesia` layer so that it is in the same " -"CRS as the project. To do this, we will need to export the data to a new " -"file using a new projection." -msgstr "" -"Mari memproyeksi ulang layer :guilabel:`Indonesia` sehingga layer ini " -"memiliki CRS yang sama seperti proyeknya. Untuk melakukan ini, kita akan " -"butuh mengekspor data ke file baru menggunakan proyeksi baru." - -# 0963b0e1d71349aaa52cf4526520b8d2 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:148 -msgid "Right-click on the :guilabel:`Indonesia` layer in the Layers list." -msgstr "" -"Klik kanan pada layer :guilabel:`Indonesia` yang terdapat dalam daftar layer." - -# 1f3053a324d245ebaea4684741ecd36e -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:150 -msgid "" -"Select :guilabel:`Save As...` in the menu that appears. You will be shown " -"the :guilabel:`Save vector layer as...` dialog." -msgstr "" -"Pilih :guilabel:`Simpan sebagai...` pada menu yang muncul. Anda akan melihat " -"kotak dialog :guilabel:`Simpan layer vektor sebagai...`" - -# 0c7fcdddd2aa4c73a873505f0a2096df -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:152 -msgid "Click on the :guilabel:`Browse` button next to the Save as field." -msgstr "Klik tombol :guilabel:`Navigasi` di samping kolom *Simpan sebagai*." - -# 3b900c4427424117b4653082adf422fe -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:154 -msgid "" -"Navigate to :file:`QGIS for Disaster Management/peta_dunia/` and specify the " -"name of the new layer as :kbd:`Indonesia_terproyeksi.shp`." -msgstr "" -"Navigasikan ke :file:`QGIS for Disaster Management/peta_dunia/` dan tentukan " -"nama layer baru sebagai :kbd:`Indonesia_terproyeksi.shp`. " - -# 773633dea2f94f5fa9efa765a35c063e -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:156 -msgid "Leave the :guilabel:`Encoding` unchanged." -msgstr "Biarkan :guilabel:`Encoding` tidak berubah." - -# e79c70f1e86d43289aa725c463e20ff7 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:158 -msgid "" -"Change the value of the Layer CRS dropdown by clicking on :guilabel:`Select " -"CRS` icon in the right panel." -msgstr "" -"Ubah CRS dari layer tersebut dengan mengklik pada :guilabel:`Pilih CRS` yang " -"ada disebelah kanan." - -# 5e849479f22e44369d43bc0ededf23bd -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:164 -msgid "" -"A :guilabel:`Coordinate Reference System Selector` window will appear. Type :" -"kbd:`4326` in :guilabel:`Filter Box`" -msgstr "" -"Sebuah jendela :guilabel:`Pemilihan Sistem Referensi Koordinat` akan muncul. " -"Ketik :kbd:`4326` pada kotak :guilabel:`Saring`" - -# a541d4c269aa43c18796959c26539205 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:164 -msgid "and select :guilabel:`WGS 84` in the bottom side of the window." -msgstr "dan pilih :guilabel:`WGS 84` pada bagian bawah dari jendela tersebut." - -# b93aa44043bc47eda51d4a04b34c0704 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:169 -msgid "Click :guilabel:`OK`. You will back to :guilabel:`Save As…` window." -msgstr "" -"Klik :guilabel:`OK`. Anda akan kembali ke jendela :guilabel:`Simpan sebagai…`" - -# c4468f602b20474ca4a41f91c797d571 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:171 -msgid "Check the box next to :guilabel:`Add saved file to map`." -msgstr "" -"Centang kotak di sebelah :guilabel:`Tambahkan berkas tersimpan ke dalam " -"peta`." - -# 464a4addf0b148f2a1e4069511ef1ec7 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:173 -msgid "The :guilabel:`Save vector layer as...` window now looks like this:" -msgstr "" -"Jendela :guilabel:`Simpan layer vektor sebagai...` sekarang terlihat seperti " -"ini:" - -# 0e3152719f4141c9baeaf5f6e887321b -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:178 -msgid "" -"Click :guilabel:`OK` and after a minute, you should be presented with a " -"notification above map canvas telling that the process is finished." -msgstr "" -"Klik :guilabel:`OK` dan setelah beberapa menit, Anda akan melihat sebuah " -"notifikasi di atas kanvas peta yang memberitahukan bahwa prosesnya sudah " -"selesai." - -# a70c6d216e264e278c87d0cde742fc49 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:180 -msgid "" -"Now your new layer, :guilabel:`Indonesia\\_terproyeksi`, will be shown in " -"the layers panel. If you turn off :guilabel:`on the fly` reprojection, this " -"layer will still be shown correctly, because it has been reprojected into " -"the same CRS as the project (and the :guilabel:`continents` layer)." -msgstr "" -"Sekarang layer baru Anda, :guilabel:`Indonesia_terproyeksi`, akan terlihat " -"di panel layer. Jika Anda mematikan :guilabel:`proyeksi ulang “on the fly”`, " -"layer ini akan tetap muncul dengan benar, karena telah diproyeksi ulang ke " -"dalam CRS yang sama sebagai proyek (dan layer :guilabel:`continents`)." - -# fd4270a37aa6426989aebec5322a86d7 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:185 -msgid "4.4 Georeferencing Scanned Image" -msgstr "4.4 Melakukan Georeferensi pada Gambar yang di-scan" - -# 80e0065bce7c44fba71b73641d56a1e6 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:187 -msgid "" -"Georeference is the process of associating a physical map or raster image of " -"a map with spatial locations and may be applied to any kind of object or " -"structure that can be related to a geographic location, such as point of " -"interest, roads, places, bridges, or buildings. Georeferencing is crucial to " -"enable aerial or satellite imagery and also raster images to be overlayed " -"with other spatial data, like vector data and raster data." -msgstr "" -"Georeferensi merupakan sebuah proses mengasosiasikan peta fisik atau gambar " -"raster dari sebuah peta dengan informasi spasial dan mungkin diaplikasikan " -"ke objek manapun atau struktur yang terkait dengan lokasi geografis, seperti " -"titik penting, jalan, tempat, bangunan atau jalan. Georeferensi ini " -"merupakan unsur yang penting untuk memastikan citra satelit dan juga gambar " -"raster untuk di tampalkan dengan data spasial lain, seperti data vektor dan " -"data raster." - -# 1bbda8578394450891b36ab8f09d3b42 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:193 -msgid "" -"To georeference an image, we need to establish point with geographic " -"coordinates in these point, known as control points. This control point " -"refer to actual position of objects on Earth. These coordinates are obtained " -"by doing field survey. For example, we need to georeference an aerial image " -"and we know location an object in aerial image with exact location on Earth. " -"To georeference this, simply input the control points with coordinates that " -"we know from field survey. We need 4 control points or more to georeference " -"the image." -msgstr "" -"Untuk melakukan georeferensi sebuah gambar, kita membutuhkan sebuah titik " -"dengan koordinat geografi pada titik tersebut, yang dikenal sebagai titik " -"kontrol/ground control points. Titik kontrol ini merepresentasikan ke posisi " -"aktual sebuah objek pada kenyataan sebenearnya. Titik ini bisa didapatkan " -"dengan melakukan survey lapang. Sebagai contoh, kita ingin " -"menggeoreferensikan sebuah citra satelit dan kita mengetahui lokasi dari " -"citra satelit yang kita dapatkan. Untuk melakukan georeferensi ini, kita " -"cukup memasukkan titik kontrol dengan koordinat yang kita ketahui dari " -"survey lapang. Kita membutuhkan sekurang-kurangnya 4 titik kontrol atau " -"lebih." - -# 4386da2f1ab94c36a563883469e1df04 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:200 -msgid "" -"Let’s start to georeference an image that we got from `Geospasial BNPB " -"`_." -msgstr "" -"Mari mulai lakukan georeferensi sebuah gambar yang kita dapat dari " -"`Geospasial BNPB `_." - -# 5d2dbee2f3014913ad7ddc6b579fcdd8 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:202 -msgid "" -"Georeferencing in QGIS is done via the :guilabel:`Georeferencer GDAL` " -"plugin. This is a core plugin - meaning it is already part of your QGIS " -"Installation. You just need to enable it. Go to :menuselection:`Plugins --> " -"Manage and Install Plugins…` and enable the Georeferencer GDAL plugin in the " -"Installed tab." -msgstr "" -"Georeferensi pada QGIS bisa dilakukan melalui :guilabel:`Georeferencer " -"GDAL`. Ini merupakan plugin utama - yang berarti ini sudah menjadi bagian " -"dari installasi QGIS. Anda hanya cukup mengaktifkannya dengan menggunakan :" -"menuselection:`Plugins --> Atur dan kelola Plugins...` dan aktifkan plugin " -"Georeferenser GDAL pada bagian pugin terinstall." - -# 2f59826534ae44acb8d5485cafe1db56 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:206 -msgid "Go to :menuselection:`Raster --> Georeferencer --> Georeferencer…`." -msgstr "Pergi ke :menuselection:`Raster ‣ Georeferencer ‣ Georeferencer...`." - -# 17b049c26ba04d6a965768aa92e9f3d3 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:208 -msgid "" -"A new window will appear. Click :guilabel:`Open Raster` icon in upper left " -"side of the window." -msgstr "" -"Sebuah jendela baru akan muncul. Klik ikon :guilabel:`Tambahkan layer " -"raster` di bagian kiri atas dari jendela." - -# be680d4667d649c29c16be1163601348 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:213 -msgid "" -"Select :file:`QGIS for Disaster Management/Sleman/Merapi/" -"peta_krb_merapi_2002.jpg` and click :guilabel:`Open`." -msgstr "" -"Pilih :file:`QGIS for Disaster Management/Sleman/Merapi/peta_krb_merapi_2002." -"jpg` dan klik :guilabel:`Open`." - -# f84e77cbaa6a4a0395196a72f5ca6cc0 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:215 -msgid "" -"In Coordinate Reference System Selector type :kbd:`4326` in filter box and " -"select :guilabel:`WGS 84` as CRS." -msgstr "" -"Pada jendela Pemilihan Sistem Referensi Koordinat, ketik :kbd:`4326` di " -"kolom Saring dan pilih :guilabel:`WGS 84` sebagai CRS-nya." - -# 33620de4de8c408e85b704c8ca85b86a -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:217 -msgid "An image will appear in Georeferencer Window." -msgstr "Sebuah gambar akan muncul pada jendela Georeferensi." - -# 583d4e2f98104c32970dcdeb4a2cac8f -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:219 -msgid "" -"You can use the :guilabel:`zoom/pan` controls in the toolbar to learn more " -"about the map." -msgstr "" -"Anda dapat gunakan kontrol :guilabel:`Perbesar/Geser` pada toolbar untuk " -"lebih memahami petanya." - -# 486b0be878454eb8a0d2ad63ae716c50 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:224 -msgid "" -"If you look closely, you will see coordinate grid with markings. Using this " -"grid, you can determine the X and Y coordinates of the points where the grid " -"intersect. Click on :guilabel:`Add Point` in the toolbar." -msgstr "" -"Jika Anda perhatikan lebih dekat, Anda akan melihat grid koordinat dengan " -"penanda. Dengan grid ini, Anda dapat menentukan koordinat X dan Y untuk " -"titik perpotongan grid tersebut. Klik :guilabel:`Tambah Poin` pada toolbar." - -# 0ed61d121f0a43aab7c7dceb81d15764 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:234 -msgid "A new pop-up window will appear, enter the coordinates." -msgstr "Sebuah jendela akan muncul, masukkan koodinatnya." - -# 798a2319ae054df4a4dd81b542dc282e -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:232 -msgid "" -"For Indonesia enter X for Bujur (BT) and Y for Lintang (LS). Click :guilabel:" -"`OK`. It can use decimal degree (dd,dd), projected coordinates/UTM (mmmm," -"mmm) and degree minutes seconds (dd mm ss,ss) format. **Don’t forget to put " -"Negative ( - ) in Y/North value for area in the South part of equator**." -msgstr "" -"Untuk Indonesia masukkan X untuk Bujur (BT) dan Y untuk Lintang (LS). Klik :" -"guilabel:`OK`. Ini bisa berupa decimal degree (dd,dd), koordinat terproyeksi/" -"UTM (mmmm,mmm) dan derajat menit detik (dd mm ss,ss). **Jangal lupa untuk " -"memasukkan nilai Negatif (-) untuk Y/Lintang untuk daerah yang ada pada " -"bagian Selatan dari garis khatulistiwa**." - -# 23ce57665c0a419bbefaefc385a70c48 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:239 -msgid "" -"Notice that GCP table in the bottom of window has a row with detail of your " -"first GCP." -msgstr "" -"Perhatikan bahwa tabel bagian bawah dari jendela georeferensi mempunyai " -"baris dengan detil dari titik kontrol utama Anda." - -# 0892a853239a4fa9ab5b0706820b8dca -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:241 -msgid "" -"Now, let’s add at least 4 GCPs that covers entire image. More GCP’s points " -"will result to a more accurate image." -msgstr "" -"Sekarang, mari tambahkan setidaknya 4 titik kontrol yang melingkupi seluruh " -"bagian dari gambar. Titik kontrol lebih dari 4 akan menghasilkan gambar yang " -"lebih akurat." - -# 67a7c9e1b0d04862ad41ad1a14149375 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:246 -msgid "" -"After inputting 4 or more points, click :guilabel:`Transformation Setting` " -"in toolbar." -msgstr "" -"Setelah memasukkan 4 atau lebih titik kontrol, klik pada :guilabel:" -"`Transformation Setting` pada bagian toolbar." - -# 94dbf800bec143bca676a2bb6c1069ad -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:248 -msgid "" -"Right click the entry in :guilabel:`GCP Table` to delete the GCP Point or " -"select :guilabel:`Delete Control Point` tool in toolbar above the image, " -"then use it to click on the Control Point in either the GCP table or " -"Workspace Window" -msgstr "" -"Klik kanan pada keseluruhan :guilabel:`Tabel GCP` untuk menghapus titik GCP " -"atau pilih tool :guilabel:`Delete Control Point` pada toolbar di atas " -"gambar, kemudian gunakan ini untuk meng-klik pada Titik Kontrol baik pada " -"Tabel GCP atau jendela area kerja" - -# 837da4e4faf349db8e75fac10ac19435 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:255 -msgid "" -"The Transformation Setting Window is displayed. Follow all setting like this:" -msgstr "" -"Jendela Pengaturan Transformasi ditampilkan. Ikuti semua pengaturan seperti " -"ini:" - -# bebb058662ce4219b80a45ffdcea2a19 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:260 -msgid "" -"In QGIS there are several method s for transforming the image, these are " -"linear, Helmert, the 1\\ :sup:`st`, 2\\ :sup:`nd` and 3\\ :sup:`rd` order " -"polynomials, and the thin plate spline. These different Transformation " -"Methods interpret your Control Point in different ways, and control how the " -"map is fitted and warped to your georeferenced base map." -msgstr "" -"Dalam QGIS terdapat beberapa metode untuk mentransformasi gambar, yaitu " -"linear, *Helmert*, 1\\ :sup:`st`, 2\\ :sup:`nd` dan 3\\ :sup:`rd` *order " -"polynomials*, dan *the thin plate spline*. Metode-metode transformasi ini " -"menginterpretasikan Titik Kontrol Anda dalam cara yang berbeda, dan " -"mengontrol bagaimana peta disesuaikan posisinya ke peta dasar Anda yang " -"tergeoreferensi." - -# d0017358c3dd4216b2d09c6138f6f6a8 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:265 -msgid "" -"For best fit, the thin-plate spline or higher-number polynomial " -"transformations are often best. Its look like a true rubber sheeting method, " -"transforms the source Control Point exactly to the target Control Points, " -"and optimize for local accuracy opposed to global accuracy." -msgstr "" -"Untuk posisi terbaik, transformasi *thin-plate spline* atau *higher-number " -"polynomial* merupakan yang paling sering digunakan. Transformasi ini " -"terlihat seperti metode *true rubber sheeting*, mentransformasikan langsung " -"sumber Titik Kontrol ke target Titik Kontrol, dan mengoptimalkan untuk " -"membandingkan akurasi lokal dengan akurasi global." - -# 47aeaf15012f417a88e12b8d1e88e23e -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:270 -msgid "" -"To finish and export your georeferenced map, click the :guilabel:`Start " -"Georeferencing` button" -msgstr "" -"Untuk menyelesaikan dan mengekspor peta yang telah Anda georeferensikan, " -"klik tombol :guilabel:`Start Georeferencing` " - -# 47cc919c702f4f9e8f43ecbbef9da6fd -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:270 -msgid "in the :guilabel:`Main Toolbar` at the top of the QGIS Workspace." -msgstr "pada :guilabel:`toolbar utama` di bagian atas halaman." - -# a024268f68a047deb058fa0ec8dd828a -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:275 -msgid "" -"The Georeferencing is now complete. The georeferenced layer will be loaded " -"in QGIS Map Canvas." -msgstr "" -"Saat ini proses georeferensi telah selesai. Layer hasil georeferensi akan " -"muncul pada kanvas peta QGIS anda." - -# e33485a779274e7184e4aebdfcc5aea9 -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:280 -msgid "" -"Knowing how to georeference is important when we want to digitize from a " -"paper map or an image that is not already georeferenced. Once the image is " -"georeferenced like this, it can be used at the same digitization techniques " -"that we will learn later. In the next chapter, we will create vector " -"shapefiles that can be used in QGIS and InaSAFE." -msgstr "" -"Mengetahui cara untuk meng-georeferensi itu penting karena ketika Anda ingin " -"mendigitasi dari sebuah peta kertas atau gambar yang belum memiliki " -"informasi spasial. Ketika Anda telah meng-georeferensikan sebuah gambar " -"dengan cara ini, Anda dapat melakukan teknik digitasi sesuai dengan apa yang " -"telah kita pelajari sebelumnya, yang nantinya dapat digunakan untuk QGIS dan " -"InaSAFE." - -# 8a98b9c7e07d40d48ecfb01d38d8bdca -#: ../../source/training/qgis/Chapter-04-Map_Projection_Basic.rst:284 -msgid ":ref:`Go to next chapter --> `" -msgstr ":ref:`Pergi ke bab selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-05-Working_with_Vector_Data.po b/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-05-Working_with_Vector_Data.po deleted file mode 100644 index 959eb854..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-05-Working_with_Vector_Data.po +++ /dev/null @@ -1,2154 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Yantisa Akhadi , 2016\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# fdbcaa6303d944ba912f5f8778021bfc -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:6 -msgid "Chapter 5: Working with Vector Data" -msgstr "Bab 5: Bekerja dengan Data Vektor" - -# ae86270fc9f54ff08af04c31f0227c50 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 2e9bd6d06a7e44e9bc76e95b4b893281 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:10 -msgid "Understand vector data" -msgstr "Memahami data vektor" - -# 271f8600f3a1426aa5af183b3f416b4b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:11 -msgid "Identify attribute of vector data" -msgstr "Mengidentifikasi atribut data vektor" - -# b676d51b467e4dafb529876becd93985 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:12 -msgid "Create vector data" -msgstr "Pembuatan data vektor" - -# 08f67a4cbcd3401fbea6f81fe8b70cdf -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:13 -msgid "Add vector layers" -msgstr "Menambah layer vektor" - -# aeb03e9776cd4cd08feaeaf117846ffa -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:14 -msgid "Symbolize vector layers" -msgstr "Simbologi layer vektor" - -# ae5658b0ca13407bbaaddbd7104f88b5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:15 -msgid "Add labels to vector layers" -msgstr "Menambahkan label ke *layer* vektor" - -# d1da7a15111f4ede836012907bd72f88 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:17 -msgid "" -"In this chapter, we will learn what is meant by vector data. We will " -"practice adding it to our QGIS projects, and we will learn how to style the " -"data in different ways." -msgstr "" -"Pada modul ini, kita akan mempelajari apa itu data vector. Kita akan " -"melakukan praktek untuk menambahkan data vektor pada proyek QGIS, dan kita " -"akan mempelajari bagaimana untuk melakukan perancangan data dengan berbagai " -"cara." - -# 930af21720534ba7b1e8a5c052f85d36 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:21 -msgid "5.1 Vector Data" -msgstr "5.1 Data Vektor" - -# 84ab037ec78c485fa1fc13a904f3f04e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:23 -msgid "" -"Vector data is the most common type of data found in GIS. A vector is " -"essentially something in the form of a dots, or lines connecting those dots. " -"In other words, points, lines, and polygons are all **vectors**. (curved " -"lines are vectors too, but we won’t worry about that for now) We are already " -"quite familiar with vector data because in the previous unit, we used JOSM " -"to create it!" -msgstr "" -"Data vektor merupakan tipe data yang umum ditemukan dalam SIG. Sebuah vektor " -"pada intinya merupakan sesuatu yang berbentuk sebuah titik, atau garis yang " -"menghubungkan titik-titik tersebut. Dengan kata lain, titik, garis, dan " -"poligon merupakan **vektor** (garis lengkung merupakan vektor juga, tetapi " -"kita tidak akan mengkhawatirkan hal tersebut sekarang). Kita sudah paham " -"dengan data vektor karena di unit sebelumnya, kita sudah menggunakan JOSM " -"untuk membuatnya!" - -# e42ad942f86e42fea2921a347ed2d349 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:31 -msgid "" -"Each object in a vector dataset is referred to as a feature. When we are " -"using JOSM we often refer to them as objects, but in traditional GIS " -"terminology they are features. A polygon that represents a building is a " -"feature, as is a line that represents a river. Each feature has a geographic " -"location, and is attached to other data that describe the feature." -msgstr "" -"Setiap objek dalam sebuah set data vektor direferensikan sebagai sebuah " -"‘fitur.’ Ketika kita menggunakan JOSM kita seringkali mereferensikannya " -"sebagai sebuah objek, tetapi pada terminologi SIG tradisional, mereka " -"direferensikan sebagai fitur. Sebuah poligon yang merepresentasikan sebuah " -"bangunan adalah sebuah fitur, sebagaimana garis yang merepresentasikan " -"sungai. Setiap fitur memiliki lokasi geografis, dan terlampirkan pada data " -"lain yang mendeskripsikan fitur." - -# 36fb0bdf2c8c43c59af5773cd85dc4a8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:36 -msgid "" -"One important thing to note is that QGIS layers can only contain one type of " -"feature. That is, one layer can’t contain both point features and line " -"features, because they are different types of data. Hence if you have a file " -"that contains school polygons and another file that contains school points, " -"you would add them as two separate layers." -msgstr "" -"Salah satu hal yang penting untuk dicatat adalah *layer* QGIS hanya " -"mengandung satu tipe fitur. Artinya, satu layer tidak dapat mengandung fitur " -"titik dan fitur graris, karena mereka merupakan tipe data yang berbeda. " -"Namun apabila anda ingin memiliki sebuah file yang memiliki poligon sekolah " -"dan file lain yang memiliki titik-titik sekolah, anda dapat menambahkan " -"mereka sebagai dua layer yang terpisah." - -# 9f4df6a0cef7484e81c824a68267e7eb -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:40 -msgid "" -"Almost always, polygon layers will be at the bottom of your layer list, line " -"layers in the middle, and point layers at the top. You don’t generally want " -"your polygons overlapping your lines and points." -msgstr "" -"Perhatikan selalu, layer poligon sebaiknya ada di daftar layer paling bawah, " -"layer garis di tengah, dan layer titik di atas. Pada umumnya anda tidak " -"ingin poligon anda menimpa garis dan titik." - -# 23590e989ffd417c832e2c3ae510d9d3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:44 -msgid "5.2 Attribute Data" -msgstr "5.2 Data Atribut" - -# 97dfc9466ded4aa3a51123a7d9315038 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:46 -msgid "" -"It’s important to know that the data you will be working with does not only " -"represent where objects are in space, but also tells you what those objects " -"are." -msgstr "" -"Sangat penting bahwa data yang akan Anda kerjakan tidak hanya " -"merepresentasikan obyek yang ada di lapangan, tetapi juga memberi tahu objek " -"apakah itu." - -# e9493f1004104d728da724d89efcf460 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:49 -msgid "" -"Open the project :file:`Chapter_5_Working with vector.qgs`. This is the same " -"project that you worked with previously." -msgstr "" -"Buka proyek :file:`Chapter_5_Working with vector.qgs`. Ini merupakan proyek " -"yang sama yang telah Anda kerjakan sebelumnya." - -# 80c2e58ba44c48df953ab1e1d8b477e6 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:51 -msgid "Close the InaSAFE panel if you still have it open." -msgstr "Tutup panel InaSAFE jika masih terbuka." - -# 91988c2483d34f24a1a930feb6304acf -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:53 -msgid "" -"You can see in your project the position of Sleman districts, the railway, " -"and some roads, but you can’t see all of the data contained in those layers." -msgstr "" -"Anda dapat lihat di proyek Anda posisi dari Kecamatan Sleman, jalur rel, dan " -"jalan, tetapi Anda tidak dapat melihat seluruh data yang terkandung dalam " -"layer-layer tersebut." - -# cc29088d7b4c4468aff6330fb61ae4d2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:56 -msgid "Select :guilabel:`Jalan_Sleman_OSM` in the layers list." -msgstr "Pilih :guilabel: `Jalan_Sleman_OSM` pada panel daftar layer." - -# bbe7a49c38cb4420b599d2ee30629d71 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:61 -msgid "Click the :guilabel:`Open Attribute Table` button:" -msgstr "Klik kanan, dan klik tombol :guilabel:`Open Attribute Table` :" - -# 49cf458407854185b4ee9945677e18eb -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:66 -msgid "" -"You will see a table with more data about the streets layer. This extra data " -"is called **attribute data**. The lines that you can see on your map " -"represent where the streets go - this is the **spatial data**. You will " -"remember in JOSM that there was the same division. The points, lines, and " -"shapes you drew tell us **where** , but the tags, or attributes, tell us " -"**what**. These definitions are commonly used in GIS, so it’s essential to " -"remember them!" -msgstr "" -"Anda akan melihat tabel dengan data yang lebih banyak tentang layer jalan. " -"Data ekstra tersebut disebut **data atribut**. Garis-garis yang anda dapat " -"lihat pada peta anda menggambarkan kemana garis tersebut menuju – ini " -"merupakan *data spatial*. Anda akan mengingat pada JOSM dimana terdapat " -"bagian yang sama. Titik, garis, dan bentuk yang anda gambar memberitahu kita " -"**dimana**, tetapi tags, atau atribut, memberitahukan kita **apa**. Definisi " -"tersebut sangat umum digunakan di SIG, jadi sangat penting untuk diingat!" - -# 5438303de3f1437c9df7fb61749f7bb0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:75 -msgid "" -"Take a look at the attribute table. Each row in the table is associated with " -"one feature in the streets layer. Each column contains one of the " -"attributes. If you select other layers and click on the :guilabel:`Open " -"Attribute Table` button, you’ll see different tables." -msgstr "" -"Lihatlah pada tabel atribut. Setiap baris tabel menghubungkan satu fitur " -"pada layer jalan. Setiap kolom mengandung satu atribut. Jika Anda memilih " -"layer lain dan mengklik tombol :guilabel:`Open Attribute Table`, maka Anda " -"akan melihat tabel yang berbeda." - -# e4e2a68e63a7424b813db3064857f507 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:79 -msgid "Close the attribute table." -msgstr "Tutup tabel atribut." - -# 2dab9df2574c4d47a9b84c347d75a8b9 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:82 -msgid "5.3 Creating Vector Data" -msgstr "5.3 Membuat Data Vektor" - -# a303ecfe5f2f4e23b41da173173fb703 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:84 -msgid "" -"Before you can add new vector data, you need a vector dataset (a layer to " -"add it to). In our case, we’ll begin by creating a new data layer, and then " -"we will discuss how to edit existing vector layer in QGIS, and how to create " -"an entirely new dataset." -msgstr "" -"Sebelum Anda menambahkan data vektor baru, Anda perlu dataset vektor " -"(*sebuah layer untuk menambahkan data*) . Dalam hal ini, kita akan memulai " -"dengan membuat *layer* data baru, dan kemudian kita akan mempelajari " -"bagaimana mengubah data vektor yang sudah ada di QGIS dan bagaimana membuat " -"dataset yang baru." - -# 69fc3c7b0a974866a68e3b58b02bafb4 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:88 -msgid "" -"Create a new project in QGIS by clicking on the :guilabel:`New Project` icon." -msgstr "" -"Membuat proyek baru di QGIS, dengan mengklik di ikon :guilabel:`New Project`." - -# 75fe83dfb47b43628ee5725ce7b701d7 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:90 -msgid "" -"Go to :menuselection:`Layer ‣ Create Layer ‣ New Shapefile Layer`. You’ll be " -"presented with the following dialog:" -msgstr "" -"Pergi ke :menuselection:`Layer ‣ Buat Lapisan ‣ Layer Shapefile Baru`. Anda " -"akan disajikan dengan dialog berikut ini:" - -# 5e8735fe015044c7b958a1a2361c1345 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:95 -msgid "" -"At this point we must decide what kind of dataset we want to create. " -"Remember that a data layer can only contain feature of points, lines, or " -"polygons – never a mix. When we create the layer, we must define what type " -"of data it will contain." -msgstr "" -"Pada intinya kita harus memutuskan jenis dataset apa yang ingin kita buat. " -"Ingat bahwa layer data hanya dapat mengandung fitur titik, garis, atau " -"poligon – tidak pernah bercampur. Jadi kita harus mendefinisikan disini, " -"ketika kita membuat *layer*, jenis data apa yang akan kita inginkan." - -# cc3d8b093c0c471283d01305bd7b448a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:99 -msgid "" -"Since polygon are made up of points and lines. Let’s jump into polygons. " -"Once you’ve mastered this, creating a point or a line should be easy!" -msgstr "" -"Karena polygon terdiri dari titik dan garis, mari kita coba dengan polygon. " -"Setelah Anda menguasai ini, membuat layer titik atau garis seharusnya " -"mudah! " - -# 2e432204445442e79b4abe48af5b827b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:102 -msgid "Check the box next to **Polygon**." -msgstr "Beri tanda centang pada kotak :guilabel:`Poligon`." - -# db6da8583bf34cfe9469aa90ec0f0564 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:107 -msgid "" -"We’ll specify the Coordinate Reference System (CRS) in the next box. By " -"default the box will contain the CRS of the project, which for us will be " -"WGS84. This is a widely used and very useful CRS, so let’s stick with it!" -msgstr "" -"Kita akan menentukan Sistem Referensi Koordinat (CRS) di kotak sebelah. " -"Secara standar kotak akan berisi project CRS, kita akan gunakan WGS 84. Ini " -"adalah CRS yang banyak digunakan dan sangat berguna, jadi mari kita gunakan " -"itu! " - -# 2218a6ce00f340a0a19a76612d9b63ac -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:113 -msgid "" -"When we create our new layer, the attribute table will only have one column " -"by default - **id**. This attribute contains a unique id number for every " -"feature. We can add additional fields to the attribute table now, when we " -"create the layer. Let’s add a name field." -msgstr "" -"Ketika kita membuat *layer* baru, tabel atribut hanya akan memiliki satu " -"kolom standar - **id**. Atribut ini berisi nomor id unik untuk setiap " -"fiturnya. Kita dapat menambah *field* baru ke tabel atribut sekarang, ketika " -"kita membuat layer. Mari tambahkan nama field." - -# f29caf87b3ee462e8ccae87987795f16 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:117 -msgid "" -"Type :kbd:`keterangan` into the boxt next to Name. The setting should match " -"those shown here:" -msgstr "" -"Ketik :kbd:`nama` di dalam kotak disebelah Name. Pengaturan harus sesuai " -"dengan yang ditampilkan disini:" - -# abb81867968b438bbde11bfd722b51ea -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:122 -msgid "" -"Click the :guilabel:`Add to attributes list` button. Your attributes list " -"should now look like this." -msgstr "" -"Klik tombol :guilabel:`Tambahkan ke list attribut`. Daftar attribut anda " -"akan terlihat seperti ini." - -# b40bfdca83ab47e5a27fcdce4ab80911 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:127 -msgid "Click :guilabel:`OK`. A save dialog will appear." -msgstr "Klik :guilabel:`OK`. Simpan dialog yang akan muncul. " - -# cb5f5add1a7345149f24f4f4e466fd8a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:129 -msgid "Navigate to a directory of your choosing." -msgstr "Navigasikan ke direktori yang Anda pilih." - -# 18d7b7da88dc48b1b1e595e390ada357 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:131 -msgid "Save the new layer as :file:`krb_merapi.shp`." -msgstr "Simpan layer baru Anda sebagai :file:`krb_merapi.shp`" - -# dc91affbf64e4b52b44a785f9b2c4b10 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:133 -msgid "The new layer should appear in your Layer panel." -msgstr "Layer baru harus muncul di daftar Layers Anda. " - -# bcfd7c5eb69a4c3b94d91dea92c5785c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:135 -msgid "" -"Shapefile is a commonly used geographic file format. It can easily be " -"converted into other formats, and most GIS software can read this type of " -"file." -msgstr "" -"Shapefile merupakan format file yang umum digunakan didalam istilah " -"geografi. File ini dapat dengan mudah diubah menjadi format lain dan hampir " -"semua aplikasi SIG bisa membaca file ini." - -# d4bd18fb6371409fb0029362a72ecd4e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:139 -msgid "5.3.1 Digitising Vector Data" -msgstr "5.3.1 Menggambar Data Vektor" - -# 57ef212fe38d4d54b78cd989b666ac74 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:141 -msgid "" -"Digitising, as you might have guessed, is the art (or science) of creating " -"digital vector data from another source, such as a raster image. In order to " -"begin digitising, we must firt enter edit mode. GIS software commonly " -"requires a separate mode for editing, to prevent user from accidentally " -"editing or deleting important data. Edit mode is switched on or off " -"individually for each layer." -msgstr "" -"Digitalisasi, yang seperti sudah Anda bisa duga, adalah seni (atau ilmu) " -"untuk membuat data vektor digital dari sumber lain, seperti gambar raster. " -"Untuk memulai dijitasi, kita harus masuk ke mode edit. Perangkat lunak SIG " -"pada umumnya memerlukan mode terpisah untuk mengedit, untuk mencegah " -"pengguna dari kesalahan mengedit atau menghapus data penting. Mode edit " -"diaktifkan atau dimatikan secara individual untuk setiap layernya." - -# c01692ac8a4c4bfa84457ca86abbbfc8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:146 -msgid "" -"Open raster layer :file:`peta_krb_merapi_2002_modified.tif` in left QGIS " -"toolbar:" -msgstr "" -"Buka layer raster :file:`peta_krb_merapi_2002_modified.tif` didalam toolbar " -"QGIS disebelah kiri:" - -# 59c18eb325aa426fa17f790efcff0625 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:151 -msgid "Open vector layer :file:`krb_merapi.shp`:" -msgstr "Buka layer vektor :file:`krb_merapi.shp`:" - -# a5096ca22b4b401a91642df8fea00459 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:156 -msgid "Select :file:`krb_merapi.shp` in the Layers panel." -msgstr "Pilih :file:`krb_merapi.shp` di panel layer." - -# f6ef841b6baf4a8eb1bf317be0c8f894 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:158 -msgid "Click on the :guilabel:`Toggle Editing` button:" -msgstr "Klik pada tombol :guilabel:`Toggle Editing`:" - -# 30dff679b593477da5b71da709ffcb88 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:163 -msgid "" -"If you can’t find this button, ensure that the Digitising toolbar is " -"enabled. There should be a check mark next to the :menuselection:`View ‣ " -"Toolbars ‣ Digitizing` menu entry." -msgstr "" -"Jika Anda tidak dapat menemukan tombol ini, pastikan bahwa toolbar " -"Digitizing diaktifkan. Harus ada tanda centang di sebelah :menuselection:" -"`Tampilan ‣ Panel-panel ‣ Digitasi` menu entri." - -# 4fe8f049a6c24792aaab21c8382a1531 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:166 -msgid "One you are in edit mode, the digitising tools will become active:" -msgstr "Setelah Anda pada mode edit, alat dijitasi akan aktif:" - -# 2fbcc3e10b9f45738d502266af08894d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:171 -msgid "From left to right on the image above, they are:" -msgstr "Dari kiri ke kanan pada gambar di atas, mereka adalah :" - -# 93fb5ca6ffa9447d9ae751cf1d7ecb96 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:173 -msgid "**Toggle Editing**: activates / deactivates edit mode." -msgstr "**Toggle untuk Mengedit**: mengaktifkan/menonaktifkan mode edit." - -# f64cefd899c04ca080fce957aa795160 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:174 -msgid "**Save Layer Edits**: saves changes made to the layer." -msgstr "**Simpan pengeditan layer**: menyimpan perubahan yang dibuat di layer." - -# a1493dc4b41644b8a533a1f5bc672ec5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:175 -msgid "**Add Feature**: start digitising a new feature." -msgstr "**Add Feature**: memulai dijitasi fitur baru." - -# 3f9fb0f6a8fa443399a846e2fa16fbb2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:176 -msgid "**Move Feature(s)**: move an entire feature around." -msgstr "**Move Feature(s)**: memindahkan seluruh fitur ke sekitar." - -# 30814e3dbf4f48d8a61e6c4543dccbe8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:177 -msgid "**Node Tool**: move only one part of a feature." -msgstr "**Node Tool**: memindahkan hanya satu bagian fitur. " - -# 4b3af2da2eef4a38b1b6c6b939842de8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:178 -msgid "" -"**Delete Selected**: delete the selected feature (only active if a feature " -"is selected)." -msgstr "" -"**Delete Selected**: menghapus fitur terpilih (hanya aktif jika fitur " -"dipilih)." - -# 666f4f63744e44cb884e97af43b1dec4 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:179 -msgid "" -"**Cut Features**: cut the selected feature (only active if a feature is " -"selected)." -msgstr "" -"**Cut Features**: memotong fitur terpilih (hanya aktif jika fitur dipilih)." - -# aa9c9068ecd14cadb74bc73ba88e616c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:180 -msgid "" -"**Copy Features**: copy the selected feature (only active if a feature is " -"selected)." -msgstr "" -"**Copy Features**: menyalin fitur terpilih (hanya aktif jika fitur dipilih)." - -# 6f183f0fca194e389227e46949f474fe -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:181 -msgid "" -"**Paste Features**: paste a cut or copied feature back into the map (only " -"active if a feature has been cut or copied)." -msgstr "" -"**Paste Features**: menyisipkan fitur dipotong atau disalin kembali ke peta " -"(hanya aktif jika fitur sudah dipotong atau disalin)." - -# a364d611e0b8426f90a9e4ba6b0bc30e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:184 -msgid "" -"Before you start digitising, go to :menuselection:`Setting ‣ Snapping " -"Options…`" -msgstr "" -"Sebelum anda memulai mendigitasi, pergi ke :menuselection:`Setting -> " -"Snapping Options...`" - -# ae4a628c769e49f1ace57bd7ebd6847c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:186 -msgid "" -"Change Snapping mode to **Advanced**, and check **krb_merapi** layer with " -"Mode **to vertex and segment** and Tolerance value is 1 and then set Units " -"to pixels:" -msgstr "" -"Ubah Snapping mode ke **Advanced**, dan aktifkan layer **krb_merapi** dengan " -"Mode **to vertex and segment** dan nilai toleransi 1 dan kemduain atur Unit " -"ke pixel:" - -# 0763335270a044b0b054c70e2cbf8081 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:192 -msgid "" -"It’s important to check Avoid intersection if you want to create a polygon " -"with each feature snap each other." -msgstr "" -"Sangatlah penting untuk mengaktifkan Avoid Intersection jika anda ingin " -"membuat poligon saling menempel satu sama lainnya." - -# 2362bc79f8e843d0b621b53458d3f2d8 -# 4f738611aff843cf82a2e03ec5ebf6d1 -# 53a7690db51e41bbb958759f6f1974ee -# 89de36e070ea412eb05007fb8bbbf66a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:195 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:223 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:405 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:454 -msgid "Click :guilabel:`OK`." -msgstr "Klik :guilabel:`OK`." - -# a21cfc30444b4fd8aa311a9d20943b6d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:197 -msgid "" -"Let’s add new feature. Click on the :guilabel:`Add Feature` button to start " -"digitising:" -msgstr "" -"Mari menambahkan fitur baru. Klik pada tombol :guilabel:`Add Feature` untuk " -"memulai mendigitasi:" - -# 3b2f479cf4514db686126a4bda018ff5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:202 -msgid "" -"You’ll notice that your mouse cursor become a crosshair. This allow you to " -"more accurately place the points you’ll be digitising. Remember that even as " -"you’re using the digitising tool, you can zoom in and out on your map by " -"rolling the mouse wheel, and you can pan around by holding down the mouse " -"wheel and dragging around in the map.*" -msgstr "" -"Anda akan melihat bahwa kursor Anda menjadi tanda plus. Hal ini memungkinkan " -"Anda untuk lebih akurat menempatkan titik yang Anda digitasi. Ingat bahwa " -"saat Anda menggunakan alat digitasi, Anda dapat perbesar dan perkecil peta " -"dengan menggulir roda mouse, dan Anda dapat menjelajah sekitar dengan " -"menekan roda mouse dan menarik ke peta sekitar." - -# 5650e284c0f1436c96691fdbb48ac008 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:207 -msgid "" -"Start by clicking on a point somewhere along the edge of the dark pink area." -msgstr "" -"Mulailah dengan mengklik titik di suatu tempat diujung area warna pink." - -# 735ca832628a4dc0b38e77f9ee087bd7 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:209 -msgid "" -"Place more points by clicking further along the edge, until the shape you’re " -"drawing completely covers the field. This is very similar to drawing a " -"polygon in JOSM." -msgstr "" -"Tempatkan titik lebih banyak dengan mengklik sepanjang tepi, sampai bentuk " -"Anda tergambar lengkap menutup lapangan. Ini sangat mirip dengan menggambar " -"polygon di JOSM." - -# d38589b89386490385a50d8743b91c2e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:215 -msgid "" -"To place the last point, right-click where you want it to be. This will " -"finalise the feature and bring up the Attribute form filling dialog." -msgstr "" -"Untuk menempatkan titik terakhir, klik kanan dimana Anda ingin " -"menempatkannya. Ini akan melengkapi fitur dan menunjukkan Anda dialog " -"Attributes." - -# 50beeb5b958744dea05028901ca2c3c2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:218 -msgid "Fill in the values as shown here:" -msgstr "Isi nilai-nilai seperti yang ditampilkan disini: " - -# 31336a0df33b41aca12685b38ea9b6ca -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:225 -msgid "" -"If you make a mistake while digitising a feature, you can always edit it " -"later. Simply finish digitising the feature and then follow these steps:" -msgstr "" -"Jika Anda membuat kesalahan selama mendijitasi fitur, Anda dapat mengeditnya " -"nanti. Selesaikan dijitasi fitur dan kemudian ikuti langkah berikut ini:" - -# d779cd7722784a7085e6ffb7e14ba85d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:228 -msgid "Select the feature with the :guilabel:`Select Feature` tool:" -msgstr "Pilih fitur dengan alat :guilabel:`Pilih Fitur`:" - -# 756b437eb3c44feb9be79ce44fc8fbb2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:233 -msgid "Then use one of these tools to edit the feature:" -msgstr "Kemudian gunakan satu dari alat ini untuk mengedit fitur: " - -# 863c7e0224e8469ea42d1e82023afe0a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:236 -msgid "Move feature(s) tools" -msgstr "Move feature(s) tools" - -# 2dfc6aa139ed4402940e49742772baaa -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:236 -msgid "Move entire feature(s)" -msgstr "Untuk memindahkan seluruh fitur" - -# cd4dfdbcb76745ca898e00a77d7d1aa3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:238 -msgid "Node tools" -msgstr "Node tools" - -# 3b163ad209154a34ab579fdceaff5ade -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:238 -msgid "Move only one point where you may have misclicked" -msgstr "" -"Untuk memindahkan hanya satu titik dimana Anda mungkin telah keliru pada " -"saat menempatkan titik tersebut." - -# 0375e7cd08b64f13a9e0f1484fcc64c3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:241 -msgid "Delete selected" -msgstr "Delete selected" - -# 29e075ae08b64b5eb0bc3af20aa93054 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:241 -msgid "Get rid of the feature entirely so you can try again" -msgstr "" -"Untuk menyingkirkan fitur seluruhnya sehingga Anda dapat mencobanya lagi " - -# 707d990cf1514109bd0fc240788cdcd5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:244 -msgid "Undo" -msgstr "Membatalkan pilihan" - -# a329a1aa39cc4f46a2171b3a8aa8051e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:244 -msgid "Undo mistakes or press :kbd:`Ctrl + Z` on keyboard" -msgstr "Untuk membatalkan kesalahan atau tekan :kbd:`Ctrl + Z` pada keyboard" - -# cc48dac5f66d4adba68459821b725dcf -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:248 -msgid "Now try it on your own:" -msgstr "Sekarang cobalah sendiri: " - -# 5325dde85ce14560bcd16886979c99fc -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:250 -msgid "" -"Digitise all the hazard prone area from inner circle and then to outer " -"circle. Use the image to assist you and if you confused about what " -"information for each colours, you might need to look at the legend on the " -"right side." -msgstr "" -"Gambar semua area terdampak dari lingkar terdalam dan kemudian ke lingkar " -"terluar. Gunakan gambar untuk membantu anda dan jika anda bingung mengenai " -"informasi dari setiap warna, anda bisa melihat legenda pada bagian kanan." - -# 1132dd2f34234744970242c39f24aca9 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:256 -msgid "Remember that each new feature need to have a unique id value!" -msgstr "Ingat bahwa setiap fitur baru butuh memiliki nilai id unik! " - -# d6d83173a7894eeb8282baa1f154a115 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:258 -msgid "" -"When you are finished adding feature to a layer, you must savee the changes " -"to that layer." -msgstr "" -"Ketika Anda menyelesaikan menambah fitur ke layer, Anda harus menyimpan " -"perubahan ke layer tersebut." - -# 40f430f92d144edb86fbd0664b97679a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:260 -msgid "Click on the :guilabel:`Toggle Editing` button." -msgstr "Klik pada tombol :guilabel:`Toggle Editing`." - -# 54ef7513fa5c460bbeeab610f7b67d58 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:262 -msgid "You will be asked to save your edits. Click :guilabel:`Save`." -msgstr "" -"Anda akan ditanya untuk menyimpan hasil edit Anda. Klik :guilabel:`Simpan`." - -# 1b4872cc7ea441f28e4bd701ccfd0706 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:267 -msgid "" -"Now you know how to create polygon feature! Creating points and line layer " -"is just as easy – you simply need to define the type of layer when you " -"create it, and of course you can only create point in point layers and lines " -"in line layers." -msgstr "" -"Sekarang Anda mengetahui bagaimana cara untuk membuat fitur poligon! Membuat " -"*layer* titik dan garis juga sama mudahnya - anda hanya butuh untuk " -"menentukan tipe dari *layer* ketika anda membuatnya, dan tentu saja anda " -"hanya bisa membuat titik di *layer* titik dan garis di *layer* garis." - -# 0482b456b8d6429da0d2738505af4144 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:272 -msgid "5.4 Adding Vector Data" -msgstr "5.4 Menambahkan Data Vektor" - -# 7b66f71c1f3f4e2f935b8c0cf819d73d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:274 -msgid "" -"As we mentioned previously, a shapefile is a commonly used geographic file " -"format. It can easily be converted into other formats, and most GIS software " -"can read this type of file. You may notice when adding a shapefile that " -"there are numerous files in your shapefile directory with the same name. " -"This is because a shapefile actually relies on a collection of several other " -"files to store the data and keep various settings. When you add a shapefile " -"to your project, you should always add the one that ends in **.shp**, but " -"the rest of the files are important too!" -msgstr "" -"Anda sudah menambahkan data vektor pada sebuah proyek, dalam format sebuah " -"shapefile. Sebagaimana yang kami jelaskan sebelumnya, sebuah shapefile " -"merupakan format yang umum digunakan untuk format file geografi. Shapefile " -"dapat dengan mudah dikonversikan ke dalam berbagai macam format lain, dan " -"kebanyakan perangkat lunak SIG dapat membaca jenis file ini. Anda mungkin " -"akan menyadari bahwa ketika menambahkan sebuah shapefile, terdapat sejumlah " -"file pada folder shapefile anda dengan nama yang sama. Ini karena sebuah " -"shapefile sebenarnya bergantung pada sekumpulan beberapa file untuk " -"menyimpan data dan menetapkan berbagai pengaturan. Ketika anda menambahkan " -"sebuah shapefile ke proyek anda, anda harus menambahkan satu yang " -"berakhiran .shp, tetapi file yang lain juga sangat penting!" - -# 3cf75a4a518d4d53af521fa50a322c04 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:280 -msgid "" -"Do you remember how to add a shapefile? Try adding the layer :file:" -"`POI_Sleman_OSM`, from the shapefile located in the tutorial directory. If " -"you don’t remember how to add a new vector layer, refer to the instructions " -"in chapter 2." -msgstr "" -"Apakah Anda ingat cara menambahkan shapefile? Cobalah untuk menambahkan " -"layer :file:`POI_Sleman_OSM`, dari shapefile yang terletak di folder " -"tutorial. Jika Anda tidak ingat bagaimana menambahkan layer vektor, bukalah " -"kembali petunjuknya di Modul 2." - -# a144b0a366694a059642c9713becccb2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:284 -msgid "Your project should look like this after the new layer has been added:" -msgstr "" -"Proyek Anda seharusnya akan terlihat seperti ini setelah Anda menambahkan " -"layer yang baru:" - -# 8577461f7ee44578977a6cf05fa30a59 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:289 -msgid "**Databases**" -msgstr "**Database**" - -# ff035704b246435a901294a9694b43f5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:291 -msgid "" -"Shapefiles (and other types of files) are one way to store geographic data. " -"You can also load a vector layer into QGIS from a database. You may already " -"be familiar with Database Management Systems (DBMS) such as Microsoft " -"Access. GIS applications also make use of databases to store geographic " -"data. Databases can be hosted and used locally on your computer, or could be " -"shared between users over a network or even the internet." -msgstr "" -"Shapefiles (dan tipe file lainnya) merupakan sebuah cara untuk menyimpan " -"data geografis. Anda juga dapat memuat layer vektor pada QGIS dari sebuah " -"database. Anda mungkin paham dengan Sistem Manajemen Database (Database " -"Management System/DBMS) seperti Microsoft Access. Aplikasi SIG juga dapat " -"memanfaatkan database untuk menyimpan data geografi. Database dapat disimpan " -"dan digunakan secara lokal pada komputer anda, atau dapat dibagikan kepada " -"pengguna lain di sebuah jaringan atau bahkan internet." - -# 476a4da5630e48ad9d98581ef8e23903 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:296 -msgid "" -"Let’s try adding a layer from a database. Click on the following icon. If " -"you can’t find it, right-click on the toolbar and make sure that the “Manage " -"Layers” toolbar is enabled." -msgstr "" -"Mari mencoba menambahkan sebuah layer dari sebuah database. Klik pada ikon :" -"guilabel:`Add SpatiaLite Layer`. Jika Anda tidak dapat menemukannya, klik " -"kanan pada toolbar dan pastikan toolbar “Manage Layers” diaktifkan." - -# 23233154862f4157bc474a7e3247bc7f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:302 -msgid "You will see a dialog box. Click :guilabel:`New`." -msgstr "Anda akan melihat sebuah kotak dialog. Klik :guilabel:`New`." - -# e35ecce0b5df460f833ac454c98a862a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:307 -msgid "" -"Navigate to the :file:`QGSI for Disaster Management/Sleman` folder and find " -"the file :file:`guna_lahan.db`. Select the file and click :guilabel:`Open`." -msgstr "" -"Arahkan ke folder :file:`QGIS for Disaster Management/Sleman` dan carilah :" -"file:`file guna_lahan.db`. Pilih file tersebut dan klik :guilabel:`Open`." - -# 0a501d6a7b9a45df9920016a96dac9b2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:310 -msgid "" -"Now in the original dialog box, you will see that the dropdown button now " -"contains **guna_lahan.db @...**, followed by the path of the database file " -"on your computer." -msgstr "" -"Sekarang di kotak dialog sebelumnya, anda dapat melihat sebuah tombol klik " -"bawah yang mengandung *“guna_lahan.db @ ...”*, diikuti dengan lokasi file " -"database pada komputer anda." - -# a152eb510321435bb5ce4d13b7616c5f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:313 -msgid "Click :guilabel:`Connect`. You will see the following in the box:" -msgstr "" -"Klik :guilabel:`Connect`. Anda akan melihat kotak seperti pada gambar " -"berikut:" - -# 38f4ca29d7074a08b80e3b814e9f085e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:318 -msgid "" -"This database actually has three different layers available, all saved in " -"the database. Click on the first layer to select it, then hold SHIFT and " -"click the last layer to select them all." -msgstr "" -"Database ini sebenarnya memiliki tiga layer berbeda, semua tersimpan pada " -"database. Klik pada layer pertama untuk memilihnya, kemudian tahan :kbd:" -"`SHIFT` dan klik layer terakhir untu memilih seluruh layer. " - -# 838b8b6980314fb799f7616c362adaa5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:321 -msgid "Click :guilabel:`Add`. This will add all three layers to our project." -msgstr "" -"Klik :guilabel:`Add`. Nantinya semua layer akan termuat pada proyek kita. " - -# c6179770f92d4f3681673679451aa4ae -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:323 -msgid "" -"Remember frequently to save your map! Your QGIS project file does not save " -"the data (data is saved in a shapefile or a database), but it does remember " -"the layers that you have added to the project, their order, and any settings " -"that you adjust." -msgstr "" -"Ingatlah untuk menyimpan peta Anda secara rutin! File proyek QGIS Anda tidak " -"menyimpan data (data disimpan ke dalam sebuah shapefile atau sebuah " -"database), tetapi hanya mengingat layer-layer yang Anda tambahkan ke proyek, " -"urutannya, dan pengaturan yang telah Anda lakukan. " - -# b089954544334c5b9e1faece85845eb8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:327 -msgid "" -"The layers you have just added are all polygon layers, so you will want to " -"drag them down below the line and point layers. If you have a checkbox " -"beneath your layers list that reads **Control rendering order**, go ahead " -"and check it." -msgstr "" -"*Layer-layer* yang telah anda tambahkan adalah layer poligon, jadi anda akan " -"menggesernya di bawah *layer* garis dan titik. Jika anda mempunyai sebuah " -"kotak centang di bawah daftar lain yang terbaca :guilabel:`Control rendering " -"order` silahkan berikan tanda centang pada kotak tersebut." - -# 7b8f3c76e5704421bb114377865694b7 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:331 -msgid "" -"Let’s remove a couple of layers to make it easier to deal with our data. " -"Right-click on the railway and district layers and click :guilabel:`Remove`. " -"Then order your layers like this:" -msgstr "" -"Mari kita hilangkan beberapa layer untuk membuatnya semakin mudah dalam " -"mengatur data kita. Klik kanan pada layer **jalur rel** dan layer " -"**kecamatan** kemudian klik :guilabel:`Remove`. Kemudian urutkan layer Anda " -"seperti ini:" - -# 5b9cf1d729f641139303a4ee97761a04 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:338 -msgid "5.5 Symbology" -msgstr "5.5 Simbologi" - -# 8c7e330c4a704e69b3cf66182a9a8c74 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:340 -msgid "" -"The symbology of a layer is its visual appearance on the map. One of the " -"basic strengths of GIS is that you have a dynamic visual representation of " -"the data you’re working with. Therefore, the visual appearance of the map " -"(which depends on the symbology of the individual layers) is very important. " -"The end user of the maps you produce will need to be able to easily see what " -"the map represents. Equally as important, you need to be able to explore the " -"data as you’re working with it, and good symbology helps a lot." -msgstr "" -"Simbologi *layer* merupakan visualisasi tampilan pada peta. Salah satu " -"kekuatan dasar SIG adalah anda dapat memiliki suatu representasi visual yang " -"dinamis terhadap data yang anda kerjakan. Kemudian, penampilan visual dari " -"suatu peta (dimana bergantung dari simbologi di setiap layernya) sangat " -"penting. Pengguna peta dari peta yang anda hasilkan akan membutuhkan " -"kemudahan dalam melihat apa yang direpresentasikan dalam peta. Keseimbangan " -"sangat penting, anda perlu mendalami data anda saat anda bekerja dengannya, " -"dan simbologi yang bagus akan sangat membantu." - -# b00179517fdf478a83469c02e5343c8e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:346 -msgid "" -"In other words, having proper symbology is not a luxury or just nice to " -"have. In fact, it’s essential for you to use a GIS properly and produce maps " -"and information that people will understand and be able to use." -msgstr "" -"Dengan kata lain, memiliki simbologi yang sesuai bukan merupakan suatu " -"kemewahan atau hanya sekedar polesan semata. Faktanya, sangat penting bagi " -"anda untuk menggunakan SIG dengan baik serta menghasilkan peta dan informasi " -"yang mudah dimengerti dan digunakan oleh orang lain. " - -# 3523fb0fe9a0464da14e25b7f4366f0e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:350 -msgid "5.5.1 Changing colors" -msgstr "5.5.1 Merubah warna" - -# 99fc2739c6e64184a49e128d2e5ad30e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:352 -msgid "" -"To change a layer’s symbology, we will open its Layer Properties. Let’s " -"begin by changing the color of the **pemukiman** layer." -msgstr "" -"Untuk merubah simbologi pada sebuah layer, kita perlu membuka :guilabel:" -"`Layer Properties`. Mari kita mulai dengan merubah warna pada layer " -"*pemukiman*." - -# fd40e01aea5741bdaab4c2ba00f184c5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:355 -msgid "Right-click on the **pemukiman** layer in the Layers list." -msgstr "Klik kanan pada layer **pemukiman** di daftar Layer." - -# 54eacf6f2d0344daa431d9f2c2008a9c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:357 -msgid "Select the menu item Properties in the menu that appears." -msgstr "Pilih :guilabel:`Properties` di menu yang muncul." - -# 26cb354385c54a4c971ba418c33c954d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:359 -msgid "" -"By default you can also access the Properties menu by double-clicking on the " -"name of the layer." -msgstr "" -"Secara standar, anda juga dapat mengakses menu Properties dengan mengklik " -"dua kali pada nama layer." - -# 95b2d76fabe54408a824ee4502a55334 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:361 -msgid "In the Properties window select the :guilabel:`Style` tab." -msgstr "Pada jendela Properti, pilih tab :guilabel:`Style`." - -# 3352e935f26a4e219be65e714c373c9f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:366 -msgid "Click the color button to change the color" -msgstr "Klik pada tombol warna untuk mengubah warna." - -# dcf6381a10584542832f7bcd3e9de86f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:371 -msgid "" -"A standard color dialog will appear. Choose a **grey** color and click :" -"guilabel:`OK`." -msgstr "" -"Sebuah dialog pewarnaan standar akan muncul. Pilih **warna abu-abu** dan " -"klik :guilabel:`OK`." - -# cc5917c86fd74d98b616cab2ebf19e8a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:376 -msgid "" -"Click :guilabel:`OK` again in the Layer Properties window, and you will see " -"the color change being applied to the layer." -msgstr "" -"Klik :guilabel:`OK` lagi pada jendela Properti Lapisan, dan Anda akan dapat " -"melihat perubahan warna yang telah diaplikasikan pada layer." - -# e319924f680b4198bc3d2913d1189f6b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:383 -msgid "5.5.2 Changing Symbol Structure" -msgstr "5.5.2 Merubah Struktur Simbol" - -# 77adf469712048c388ed51ffb79f4b6f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:385 -msgid "" -"This is good stuff so far, but there’s more to a layer’s symbology than just " -"its color. Next we want to change the color of the vegetation, but we also " -"want to eliminate the lines between the different types of vegetation so as " -"to make the map less visually cluttered." -msgstr "" -"Ini merupakan hal yang menarik sejauh ini, tetapi terdapat hal lebih menarik " -"dari simbologi layer daripada hanya merubah warnanya saja. Selanjutnya kita " -"akan merubah warna vegetasi, tetapi kita juga akan menghilangkan garis " -"diantara tipe vegetasi yang berbeda sehingga peta kita tidak tergambarkan " -"secara mengelompok." - -# 7b825100209f4159a9aca280c9923d24 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:389 -msgid "" -"Open the Layer Properties window for the **vegetasi** layer. Under the Style " -"tab, you will see the same kind of dialog as before. This time, however, we " -"will do more than just change the color." -msgstr "" -"Buka jendela :guilabel:`Layer Properties` untuk layer **vegetasi**. Di bawah " -"tab Style, Anda akan dapat melihat dialog yang sama seperti sebelumnya. Kali " -"ini bagaimana pun, kita akan melakukan lebih daripada hanya mengubah " -"warnanya saja." - -# 45e3754db85640678f12f6b1ec44260c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:392 -msgid "" -"Click on the Simple Fill under the symbol layer column panel. Then Symbol " -"layer dialog will appear next to the symbol layer column panel." -msgstr "" -"Klik pada Pengisian Sederhana di bawah panel kolom Lapisan Simbol. Kemudian " -"kotak dialog Tipe Lapisan Simbol akan muncul disamping panel kolom Lapisan " -"Simbol." - -# b07e0459817643a3809576d4d128b838 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:398 -msgid "" -"Change the color inside the polygons in the layer by clicking the button " -"next to the Fill label:" -msgstr "" -"Ubahlah warna di dalam poligon pada layer dengan mengklik tombol di sebelah " -"label :guilabel:`Fill`: " - -# ef999648e80243f8b2d784400c3553b3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:403 -msgid "" -"In the dialog that appears, choose a new color (that seems to suit " -"vegetation)." -msgstr "" -"Pada dialog yang muncul, pilihlah sebuah warna yang baru (yang terlihat " -"sesuai untuk vegetasi)." - -# 23afe21cc157465eae694a2037688349 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:407 -msgid "Next, we want to get rid of the lines between all the farms." -msgstr "Selanjutnya, kita akan menghapus garis diantara seluruh ladang." - -# 6a00226fcb5b49ddb567e9df0795a5f9 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:409 -msgid "" -"Click on the Border style dropdown. At the moment, it should be showing a " -"short line and the words Solid Line." -msgstr "" -"Klik pada tombol bawah :guilabel:`Border style`. Saat ini, seharusnya " -"menunjukan sebuah gambar garis pendek dan tertulis :guilabel:`Solid Line`." - -# 73519971337b4f98895616cd53cf96cc -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:414 -msgid "Change this to **No Pen**." -msgstr "Ubah ini ke :guilabel:`No Pen`." - -# 7999f74d228147e0a4801355570d9571 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:416 -msgid "" -"Click :guilabel:`OK`, and then :guilabel:`OK` again. Now when we look at our " -"map, the **vegetasi** layer will have a new color and no lines between " -"polygons." -msgstr "" -"Klik :guilabel:`OK`, kemudian :guilabel:`OK` lagi. Sekarang ketika kita " -"melihat pada peta kita, layer vegetasi akan memiliki sebuah warna yang baru " -"dan tidak ada garis diantara poligon." - -# 7f7f8a001283478aa6983e4345941c1c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:422 -msgid "" -"Try changing the symbology of the **pemukiman** layer so that it also does " -"not have outlines." -msgstr "" -"Cobalah untuk merubah warna pada layer pemukiman sehingga layer tersebut " -"tidak memiliki garis luar. " - -# 1e816148167648d0a82a704878dbd6be -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:425 -msgid "5.5.3 Scale-based Visibility" -msgstr "5.5.3 Penampakan Berdasarkan Skala" - -# 147b519b03e4493cb5bd855f4358b3b3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:427 -msgid "" -"Sometimes you will find that one of your layers is not suitable for a given " -"scale. For example, if you have a layer which shows the earth’s continents " -"but not with very much detail, the continent lines may not be very accurate " -"when you are zoomed in very far to see streets." -msgstr "" -"Terkadang anda akan menemukan bahwa salah satu layer anda tidak sesuai untuk " -"sebuah ukuran skala tertentu. Sebagai contoh, jika anda memiliki sebuah " -"layer yang menunjukan benua di permukaan bumi tetapi tidak menunjukan banyak " -"detail, garis benua mungkin tidak akan akurat ketika anda melakukan " -"perbesaran sangat jauh untuk melihat jalan." - -# 3868cf016fa041918362a0757a30a56f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:431 -msgid "" -"Scale is a reference to how your map references what is actually on the " -"ground in terms of size. Scale is usually given in terms like 1:10000, which " -"means that one centimeter of length on your map is equal to 10000 " -"centimeters in the real world. When you zoom in or out on a map, the scale " -"changes, as you can see in the status bar at the bottom of QGIS." -msgstr "" -"Skala adalah referensi bagaimana peta anda terlihat sebenarnya di permukaan " -"bumi dalam suatu besaran. Skala biasanya diberikan misalnya 1:10000 artinya " -"satu sentimeter di peta anda sama dengan 10000 sentimeter di dunia nyata. " -"Ketika anda melakukan perbesaran atau pengecilan tampilan, skalanya berubah, " -"dan anda dapat meilhat perubahannya pada status bar di bawah QGIS." - -# 17f3b66a22364c668f4c199e2208087e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:436 -msgid "" -"In our case, we may decide to hide our streets layer when we are zoomed out " -"very far (a small scale). For example, the streets layer is not very useful " -"when we are zoomed out far and it looks like a blob." -msgstr "" -"Pada kasus kita, kita mungkin ingin menyembunyikan layer jalan ketika kita " -"melakukan pengecilan sangat jauh (untuk skala kecil). Sebagai contoh, layer " -"jalan tidak akan sangat berguna ketika kita memperkecil tampilan peta sangat " -"jauh dan akan terlihat aneh. " - -# a41626bc5133418ea903b7af9ebf15d5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:439 -msgid "Let’s enable scale-based rendering:" -msgstr "Mari kita atur penggambaran berdasarkan skala: " - -# e278b7bc7d154b609a1889c0680c886a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:441 -msgid "Open the Layer Properties dialog for the **Jalan_Sleman_OSM** layer." -msgstr "" -"Buka dialog :guilabel:`Layer Properties` untuk layer **Jalan_Sleman_OSM**." - -# 5cf4810cdeb94291bcb6a98d6e5da913 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:443 -msgid "Activate the General tab." -msgstr "Aktifkan tab :guilabel:`General`." - -# d1288ead8af640649b1a9edc3dea5b5f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:448 -msgid "" -"Enable scale-based rendering by clicking on the checkbox labeled :guilabel:" -"`Scale dependent visibility`. Then change the value in “Maximum” to 1:10 and " -"“Minimum” to 1:100000" -msgstr "" -"Aktifkan rendering berdasarkan skala dengan mengklik pada boks centang yang " -"bertuliskan :guilabel:`Visibilitas berdasarkan skala` kemudian ubah nilai " -"“Maximum” menjadi 1:10 dan “Minimum” menjadi 1:100000 " - -# 3beff9404eb04e79a40a57f52b4ec3ac -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:456 -msgid "" -"Now look at your map and see what happens when you zoom in and out. The " -"streets layer should appear when you are at a large scale and disappear at " -"small scales." -msgstr "" -"Sekarang lihat pada peta Anda dan lihat apa yang terjadi ketika Anda " -"melakukan perbesaran dan pengecilan tampilan. Layer jalan seharusnya muncul " -"ketika Anda berada pada skala besar dan menghilang pada skala kecil. " - -# 59d83cf71b8146fa82281d8efc59dcd5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:459 -msgid "" -"You can use your mouse wheel to zoom in increments. Alternatively, use the " -"zoom tools to draw a box and zoom to it:" -msgstr "" -"Anda dapat menggunakan roda gulir pada mouse anda untuk melakukan " -"perbesaran. Alternatifnya, anda dapat menggunakan tool perbesaran untuk " -"menggambar sebuah kotak dan memperbesar pada tampilan kotak tersebut:" - -# 7299497773b8470a856afdb40d2f4ab6 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:466 -msgid "5.5.4 Adding Symbol Layers" -msgstr "5.5.4 Menambahkan Layer Simbol" - -# 57d394d7557547169b043ea04a3a2fed -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:468 -msgid "" -"Now that you know how to change simple symbology for layers, the next step " -"is to create more complex symbology. QGIS allows you to do this using symbol " -"layers." -msgstr "" -"Sekarang anda telah mengetahui bagaimana untuk mengubah simbol secara " -"sederhana pada layer, langkah selanjutnya adalah membuat simbologi yang " -"lebih kompleks. QGIS memperbolehkan anda untuk melakukan ini dengan " -"menggunakan layer simbol." - -# cba71e2391ec4f78940896372107bbd5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:471 -msgid "Go back to the **vegetasi** layer’s Symbol properties dialog as before." -msgstr "" -"Pergilah menuju dialog Symbol properties seperti sebelumnya pada layer " -"**vegetasi**." - -# 363bd6901b9b4e95901efac58c7a8d35 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:473 -msgid "" -"In this example, the current symbol has no outline (i.e., it uses the No Pen " -"border style)." -msgstr "" -"Pada contoh ini, simbol saat ini tidak memiliki garis luar (dikarenakan ia " -"menggunakan batas garis No Pen)." - -# 2d4fbe9ca9114e9ab13849f27d10438b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:478 -msgid "Click on :guilabel:`Fill` then click :guilabel:`+` button on the left." -msgstr "Pilih :guilabel:`Fill` dan Klik tombol :guilabel:`+` di sebelah kiri. " - -# 8788208dc2ff47c1a8fb25b2997b54a2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:483 -msgid "Click on it and another symbol layer will be added to the list:" -msgstr "" -"Klik pada tombol tersebut dan tambahkan layer simbol lain yang akan " -"ditambahkan pada daftar: " - -# b74b486d67ca47e0be0d402544c42355 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:488 -msgid "" -"Note that it may appear different in color, but we’re going to change that " -"anyway." -msgstr "" -"Catatan, mungkin simbol akan muncul dengan warna yang berbeda, tetapi kita " -"akan mencoba untuk merubahnya. " - -# 3914313e8c3e4effaad49a434e62c41b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:490 -msgid "" -"Now this layer has two different symbologies. In other words, both the green " -"color AND the blue color will be drawn. However, the blue color will be " -"drawn above the green, and since it is a solid color, it will completely " -"hide the green color. Let’s change it." -msgstr "" -"Sekarang layer ini memiliki dua simbologi yang berbeda. Dengan kata lain, " -"warna hijau dan warna biru keduanya akan digambarkan. Bagaimana pun, warna " -"biru akan tergambarkan di atas warna hijau, dan karena warna biru merupakan " -"warna yang solid, maka ia akan menutupi warna hijau. Mari kita ubah." - -# e51fc211f291484499b7b4143c09fe5f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:494 -msgid "" -"It’s important not to get confused between a map layer and a symbol layer. A " -"map layer is a vector (or raster) that has been loaded into the map. A " -"symbol layer is part of the symbol used to represent a map layer. This " -"course will usually refer to a map layer as just a layer, but a symbol layer " -"will always be called a symbol layer, to prevent confusion." -msgstr "" -"Sangat penting untuk tidak bingung dalam membedakan antara layer peta dan " -"layer simbol. Sebuah layer peta merupakan vektor (atau raster) yang telah " -"dimuat dalam peta.Sebuah layer simbol merupakan bagian dari simbol yang " -"digunakan untuk menggambarkan sebuah layer peta. Latihan ini biasanya akan " -"menggambarkan sebuah layer peta sebagai sebuah layer, tetapi sebuah layer " -"simbol akan selalu disebut layer simbol, untuk menghindari kebingungan. " - -# de56450f055c4de789b29d723564b659 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:499 -msgid "Set the border style to **No Pen**, as before." -msgstr "Pilih :guilabel:`Border style` ke *No Pen*, seperti sebelumnya. " - -# af37514388b0419ebb0a0cad1fb2f4a1 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:501 -msgid "" -"Change the fill style to something other than Solid or No brush. For example:" -msgstr "" -"Ubah fill style menjadi sesuatu yang lain dari Solid atau No brush. Sebagai " -"contoh: " - -# 870473929c3240198569e335010b835e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:506 -msgid "" -"Click :guilabel:`OK` and then :guilabel:`OK` and take a look at your layers " -"new symbology." -msgstr "" -"Klik :guilabel:`OK` dan kemudian :guilabel:`OK` dan lihatlah hasilnya pada " -"layer simbologi anda yang baru." - -# b2efe83982f442a085ef94d98230a49c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:511 -msgid "" -"Now try it yourself. Add an additional symbology layer to the " -"**Jalan_Sleman_OSM** layer." -msgstr "" -"Sekarang cobalah. Tambahkan sebuah layer simbol pada layer " -"**Jalan_Sleman_OSM**" - -# 0018387cc5ea4506a2a62d0e56cc8caf -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:513 -msgid "Give the thickness of the original layer a value of 2.0" -msgstr "Berikan ketebalan layer simbologi asli menjadi 2.0 " - -# 0a9833f7f71d4400851692b02428daf7 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:515 -msgid "Give the thickness of the new symbology layer a value of 1.0" -msgstr "Berikan ketebalan dari layer simbologi yang baru menjadi 1.0" - -# bef283205caf48fab5ec9c388e2e7bfa -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:517 -msgid "This will result in your roads looking something like this:" -msgstr "Hasilnya, jalan raya anda akan terlihat seperti ini: " - -# 50f3300004394b81a898ffd02cd3ec07 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:522 -msgid "" -"Our streets now appear to have an outline, but they seem disjointed, as if " -"they don’t connect with each other. To prevent this from happening, you can " -"enable symbol levels, which will control the order in which the different " -"symbol layers are rendered." -msgstr "" -"Layer jalan kita sekarang sudah muncul dan memiliki garis luar, tetapi " -"mereka terlihat tidak tersambung, seolah-olah mereka terlihat tidak " -"menyambung satu sama lain. Untuk mencegah hal ini terjadi, Anda dapat " -"mengaktifkan simbol level, dimana kita akan mengontrol urutan dari layer " -"simbol berbeda yang akan diproses. " - -# cee43a267cf0446c816506378eb5d47b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:526 -msgid "" -"In the Layer Properties dialog, click on :menuselection:`Advanced ‣ Symbol " -"levels`:" -msgstr "" -"Pada dialog **Layer Properties**, klik pada :menuselection:`Advanced ‣ " -"Symbol levels...`:I" - -# f71a3d6110d04370aeca84231364014a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:531 -msgid "" -"The Symbol Levels dialog will appear. Check the box next to **Enable symbol " -"levels**." -msgstr "" -"Dialog Symbol Level akan muncul. Beri tanda centang pada kotak bertuliskan :" -"guilabel:`Enable symbol levels`." - -# 4fb0f0c644714f63ab66cee8123d0663 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:536 -msgid "Your map will now look like this:" -msgstr "Peta anda sekarang akan terlihat seperti ini: " - -# 4a507c17fc6d4476bf41a30a1b33237c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:541 -msgid "" -"When you’re done, you can save the symbol itself in QGIS so that you won’t " -"have to do all this work again if you want to use the symbol again in the " -"future. Save your current symbol style by clicking the :guilabel:`Save " -"Style ...` button under the Style tab of the Layer Properties dialog." -msgstr "" -"Jika anda sudah selesai, anda dapat menyimpan simbol anda sendiri pada QGIS " -"sehingga anda tidak harus mengatur ulang seperti ini lagi jika anda ingin " -"menggunakan kembali simbol yang sama ke depannya. Simpan simbol anda dengan " -"mengklik tombol :guilabel:`Save Style...` di bawah tab Style dari dialog " -"Layer Properties." - -# 85c64fb0da6e4626877156c7da0342c2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:548 -msgid "" -"Give your style file a name and save. You can load a previously saved style " -"at any time by clicking the :guilabel:`Load Style ...` button. Before you " -"change a style, keep in mind that any unsaved style you are replacing will " -"be lost." -msgstr "" -"Berikan style anda sebuah nama dan simpan. Anda dapat memuat ulang style " -"yang disimpan sebelumnya dengan mengklik tombol:guilabel:`Load Style ...` " -"Sebelum anda merubah sebuah style, perhatikan bahwa semua style yang anda " -"ganti akan hilang. " - -# 99309baea845434fa9e5f8b20842b5bf -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:552 -msgid "" -"Symbol levels also work for classified layers (i.e., layers having multiple " -"symbols). We will cover classification in the next section, but you can see " -"how it works here with roads." -msgstr "" -"Simbol level juga berguna untuk *layer* yang memiliki kelas (misalnya, " -"*layer* yang memiliki berbagai macam simbol). Kita akan membahas klasifikasi " -"ini di bab selanjutnya, tetapi anda dapat melihat bagaimana caranya " -"klasifikasi simbol bekerja dengan objek jalan." - -# b2a0b5f75bbb434f94877e8813ea9eb4 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:556 -msgid "5.5.5 Symbol layer types" -msgstr "5.5.5 Tipe Layer Simbol" - -# 29cd582f812842359ff08136f0612ada -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:558 -msgid "" -"In addition to setting fill colors and using predefined patterns, you can " -"use different symbol layer types entirely. The only type we’ve been using up " -"to now was the Simple Fill type. The more advanced symbol layer types allow " -"you to customize your symbols even further." -msgstr "" -"Sebagai tambahan untuk mengatur isi warna dan menggunakan pola yang sudah " -"tersedia, Anda dapat menggunakan tipe simbol layer yang berbeda. Tipe yang " -"hanya kita gunakan hingga saat ini adalah tipe Simple Fill. Semakin mahir " -"tentang tipe layer simbol maka Anda dapat mengatur simbol-simbol anda lebih " -"jauh lagi." - -# f9650184f1e14626bb0277f6e946e89d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:562 -msgid "" -"Each type of vector (point, line and polygon) has its own set of symbol " -"layer types. First we will look at the types available for points." -msgstr "" -"Setiap tipe vektor (titik, garis, dan poligon) memiliki beberapa pengaturan " -"dari tipe layer simbol. Pertama kita akan melihat tipe yang tersedia untuk " -"titik. " - -# 72b1124dcfeb4740b7ff7a186971843e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:566 -msgid "a. Vector Points" -msgstr "a. Vektor Titik" - -# 5b9face028cf40a38b3e760989d5158a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:568 -msgid "Change the symbol properties for the **POI_Sleman_OSM** layer:" -msgstr "Ubahlah simbol properties untuk layer POI_Sleman_OSM:" - -# cb8f1a7ba13d4f8ab388c3383b05f692 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:573 -msgid "" -"You can access the various symbol layer types by clicking a symbol layer (1) " -"then clicking the dropdown box in the upper right corner (2)" -msgstr "" -"Anda dapat mengakses berbagai macam tipe simbol layer dengan mengklik sebuah " -"simbol lapisan (1) kemudian mengklik daftar pilihan pada pojok kanan atas (2)" - -# 67b251b007a04a409d9e72da79c8f14b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:579 -msgid "" -"Investigate the various options available to you, and choose a symbol layer " -"type other than the default **Simple Marker**." -msgstr "" -"Periksalah berbagai macam pilihan yang tersedia untuk anda, dan pilihlah " -"sebuah tipe simbol selain Simple Marker. " - -# 741bab0082924e5a97cbf867a6d86083 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:582 -msgid "If in doubt, use an **Ellipse Marker**." -msgstr "Jika anda ragu, gunakan *Ellipse Marker*." - -# 4f957655571b482b8509765da4f4fc55 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:584 -msgid "" -"Choose a light outline and dark fill, with a symbol width of 2.00 and symbol " -"height of 4.00." -msgstr "" -"Pilihlah sebuah garis luar berwarna putih dan fill warna gelap, dengan " -"menggunakan lebar simbol 2.00 dan panjang simbol 4.00." - -# 0f30d69772c846a9a089cc116840bb07 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:593 -msgid "b. Vector Lines" -msgstr "b. Vektor Garis" - -# 20b71faba08840e68c461134484d1cda -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:595 -msgid "" -"To see the various symbology options for vector lines, open the streets " -"layer properties and click on the dropdown box:" -msgstr "" -"Untuk melihat berbagai macam pilihan simbologi pada vektor garis, buka :" -"guilabel:`layer properties` **jalan** dan klik pada kotak daftar pilihan: " - -# 18407be14d52492daca666a92068bcdb -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:601 -msgid "Click on :guilabel:`Marker line`." -msgstr "Klik pada :guilabel:`Marker line`." - -# 85af2e2271604872aa3c43937dc15076 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:606 -msgid "Click :guilabel:`Simple Marker` on symbol layers (1)" -msgstr "Klik :guilabel:`Penanda Sederhana` pada Lapisan Simbol (1)" - -# 2c1d07620e344a659aecc60226108ca3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:611 -msgid "Change the symbol properties to match this dialog:" -msgstr "Ubahlah simbol properti dengan menyamakan dialog ini: " - -# 28605e1deedd40a59e8f55ff7cc08fc7 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:616 -msgid "" -"Now, click on :guilabel:`Marker line` on symbol layers panel, then change " -"the interval to 2.00:" -msgstr "" -"Sekarang, klik pada :guilabel:`Penanda Garis` pada panel Lapisan Simbol, " -"kemudian ubah interval menjadi 2.00:" - -# 4ebf6bf188954f869bae14a9ea257853 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:621 -msgid "Your road should now look something like this:" -msgstr "Jalan anda seharusnya akan terlihat seperti ini: " - -# dcf07b2b07d24b41b98397a2a1f01aa3 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:626 -msgid "" -"Once you have applied the style, take a look at its results on the map. If " -"the dots not shown up, check the advanced setting and go back to Symbol " -"level. Change the upper symbol layer to “2”. Then click OK. As you can see, " -"these symbols change direction along with the road but don’t always bend " -"along with it. This is useful for some purposes, but not for others. If you " -"prefer, you can change the symbol layer in question back to the way it was " -"before." -msgstr "" -"Setelah anda mengaplikasikan style, lihat kembali bagaimana hasilnya pada " -"peta. Jika titik-titiknya tidak terlihat, cek pada pengaturan lanjutan dan " -"kembali ke Simbol Level. Ubah Simbol Lapisan yang berada di atas menjadi " -"“2”. Sebagaimana yang dapat Anda lihat, simbol-simbol ini berubah arahnya " -"sesuai dengan jalan tetapi tidak selalu menikung. Ini sangat berguna untuk " -"beberapa tujuan, tetapi tidak untuk tujuan lain. Jika Anda menghendaki, Anda " -"dapat mengubah kembali Simbol Lapisan Anda seperti sedia kala." - -# 680a4d6147c4466da16a7b390f4860f0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:632 -msgid "" -"Try to change the appearance of the streets layer again, so that the roads " -"are dark gray or black, with a thin yellow outline, and a dashed white line " -"running in the middle." -msgstr "" -"Cobalah untuk mengubah tampilan dari layer jalan kembali sehingga jalan " -"berwarna abu-abu atau hitam, dengan sebuah garis luar tipis berwarna kuning, " -"dan sebuah garis putih putus-putus di tengahnya. " - -# 04aa325169c34f858824175a9e383bac -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:639 -msgid "c. Vector Polygons" -msgstr "c. Vektor Poligon" - -# e45f925feafa4ac39099f2c0fbd924d4 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:641 -msgid "" -"Now let’s change the symbol layer type for the :guilabel:`pemukiman` layer. " -"Take a look at the dropdown menu as you’ve done for the point and line " -"layers, and see what the various options can do." -msgstr "" -"Sekarang mari kita ubah jenis layer simbol untuk layer :guilabel:" -"`pemukiman`. Lihat pada menu pilihan seperti yang Anda lakukan pada layer " -"titik dan garis, dan lihat berbagai macam pilihan yang dapat Anda lakukan." - -# 380d5d892c92410fb6711e1065377b88 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:647 -msgid "" -"Feel free to play around with the various options. We will use the Point " -"pattern fill with the following settings:" -msgstr "" -"Cobalah untuk menggunakan berbagai pilihan berbeda. Kita akan mencoba " -"mengisi pola titik dengan pengaturan sebagai berikut: " - -# 785e4f9840c34e1a95bcfc75caf3ab83 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:655 -msgid "Add a new symbol layer with a normal Simple fill." -msgstr "Tambahkan sebuah layer simbol baru dengan normal *Simple fill*." - -# e230183f7c7e4329b3851c87f3594c40 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:657 -msgid "Make it gray with no outlines." -msgstr "" -"Ubah warnanya menjadi abu-abu tanpa garis luar *gray with no outlines*.. " - -# 479a849b1fd64dfe896cf660badb03e0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:659 -msgid "" -"Move it underneath the point pattern symbol layer with the Move down button:" -msgstr "Ubah posisinya ke bawah dengan tombol :guilabel:`Move down`:" - -# bdc277ab85444a98b1ad78cff21e61fd -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:664 -msgid "The symbol properties should look like this:" -msgstr "Properti simbol seharusnya terlihat seperti ini:" - -# 5c06936bfcbd45ad9ca3657998188b1e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:669 -msgid "" -"As a result, you have a textured symbol for the urban layer, with the added " -"benefit that you can change the size, shape and distance of the individual " -"dots that make up the texture." -msgstr "" -"Hasilnya, Anda memiliki sebuah simbol tekstur untuk layer pemukiman, dengan " -"tambahan tertentu, Anda dapat merubah besar, bentuk, dan jarak dari setiap " -"titik individu yang membentuk tekstur tersebut." - -# 4bc4b867b1fe431ebda15c140741fbdc -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:673 -msgid "5.5.6 Classified Symbology" -msgstr "5.5.6 Klasifikasi Pengaturan Simbol" - -# 926c6f089fff45f6867c034165158b5d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:675 -msgid "" -"By classifying vector data according to their type, we can give them " -"different symbologies and they will still appear to flow into each other." -msgstr "" -"Dengan mengklasifikasikan data vektor berdasarkan tipe data mereka, kita " -"bisa memberikan simbol yang berbeda dan data tersebut akan muncul sesuai " -"dengan klasifikasi yang kita berikan." - -# 216f1a727956467fb09f20a4fcbe7914 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:682 -msgid "a. Classifying nominal data" -msgstr "a. Mengklasifikasikan data nominal" - -# 760fd1c086a7465099ec40a0aef4a1df -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:684 -msgid "Open Layer Properties for the :guilabel:`vegetasi` layer." -msgstr "Buka Properti Layer dari layer :guilabel:`vegetasi`." - -# fb21563b973943db9f3fa0f3d435dc85 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:686 -msgid "Go to the :guilabel:`Style` tab." -msgstr "Pilih tab :guilabel:`Style`." - -# a5f699331c7c42888e45fd7ac538ee99 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:688 -msgid "Click on the dropdown that says :guilabel:`Single Symbol`:" -msgstr "Klik pada kotak pilihan yang bertuliskan :guilabel:`Single Symbol`:" - -# a05cd2d8d7ea41fb8d67f071c79be1d6 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:693 -msgid "Change it to :guilabel:`Categorized` and the interface will change:" -msgstr "Ubah menjadi :guilabel:`Dikategorikan`. Tampilannya akan berubah: " - -# 4a36a00a0feb4875a5247e74dd0849f0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:698 -msgid "Change the Column to **guna_lahan** and the Color ramp to **Spectral**:" -msgstr "Ubah Column menjadi **guna_lahan** dan Color ramp menjadi *Spectral*: " - -# 56b719bfb3fb44d9b0c24b786bf6dc4e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:703 -msgid "Click the button labeled :guilabel:`Classify`:" -msgstr "Klik pada tombol berlabel :guilabel:`Classify`:" - -# ebcba81c17244243af4ec380e0bb22b0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:708 -msgid "Click :guilabel:`OK`. You’ll see something like this:" -msgstr "Klik :guilabel:`OK`. Anda akan melihat seperti ini:" - -# 6495a429c3564dcb871325b9f3e8c446 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:713 -msgid "" -"Click the arrow (or plus sign) next to rural in the Layer list, you’ll see " -"the categories explained:" -msgstr "" -"Klik pada tanda panah (atau tanda tambah) di samping vegetasi pada Daftar " -"Layer, Anda akan melihat kategorinya seperti di bawah ini: " - -# c6e5fb4385d54fb780fb64b2c75bfacb -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:718 -msgid "" -"So, this is useful! But it hurts your eyes to look at it, so let’s see what " -"we can do about that." -msgstr "" -"Lihatlah, ini sangat berguna! Namun agak mengganggu bagi mata untuk dilihat, " -"jadi mari kita lihat apa yang dapat kita lakukan. " - -# 4a9c60bde9924338b041b02ba884ec20 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:720 -msgid "" -"Open :guilabel:`Layer Properties` and go to the :guilabel:`Style` tab again." -msgstr "" -"Buka :guilabel:`Layer Properties`dan pergi ke tab :guilabel:`Style` lagi. " - -# f0519d4b23994854a5901dbd19b64990 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:722 -msgid "Click the :guilabel:`Change` button next to Symbol." -msgstr "Klik tombol :guilabel:`Change` di sebelah Symbol. " - -# 0f0c95ace637436f802e8a3d3f559b0d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:727 -msgid "" -"Remove the outline as you did in the previous chapter. (change the border " -"style to “No Pen”)" -msgstr "" -"Hilangkan outline seperti yang Anda lakukan pada modul sebelumnya. (Ubah " -"style border menjadi “No Pen”) " - -# c45105bb96db4d34a3230c9aa2791d65 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:729 -msgid "Click the Delete all button:" -msgstr "Klik tombol :guilabel:`Delete all`:" - -# 385fe65f04824065ba2c680318c591ce -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:734 -msgid "Now click :guilabel:`Classify` again, and the new symbols will appear." -msgstr "" -"Sekarang klik lagi :guilabel:`Classify`, lalu simbol baru pun akan muncul. " - -# 73b610fece684c7b8ce601de4858fe3d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:736 -msgid "" -"You’ll notice they don’t have outlines. This is because because you just " -"removed the outlines!" -msgstr "" -"Anda akan melihat bahwa sudah tidak ada outlines disitu, hal tersebut " -"dikarenakan Anda baru saja menghapus outline tersebut! " - -# 77c9a97cdb864683acaddbbe6d76f526 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:738 -msgid "" -"Change the color for each type of vegetation by double-clicking on the " -"colored block next to its name. You can change the color for each type of " -"vegetation to something that you think is more applicable, as we’ve done " -"here:" -msgstr "" -"Ubahlah warna untuk tiap jenis vegetasi dengan melakukan klik dua kali pada " -"kotak warna yang terletak di sebelah namanya. Anda dapat mengganti warna " -"untuk tiap jenis vegetasi sesuai dengan yang Anda inginkan, seperti yang " -"kita lakukan di bawah ini: " - -# a1354845c52141c78d5ff71b73f8efac -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:745 -msgid "" -"Notice that the category on the bottom is empty. Select it, and click the :" -"guilabel:`Delete` button." -msgstr "" -"Perhatikan bahwa kategori yang paling bawah kosong. Pilihlah kategori yang " -"kosong tersebut, dan klik tombol :guilabel:`Hapus`." - -# 7a98f289c4b449dfb2e9dfc1d8dce1da -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:747 -msgid "When we click :guilabel:`OK` our map looks like this:" -msgstr "Ketika kita klik :guilabel:`OK`, peta kita akan tampak seperti ini: " - -# b4236354652d498b9ffbe85d692718a9 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:752 -msgid "" -"If you feel confident in your new classification skills, try to classify the " -"residential layer yourself. Use darker colors to distinguish it from " -"vegetation." -msgstr "" -"Jika Anda sudah percaya diri dengan kemampuan klasifikasi ini, cobalah untuk " -"melakukan klasifikasi layer permukiman. Gunakan warna yang lebih gelap untuk " -"membedakannya dengan layer vegetasi. " - -# 253dfa1895a7406eb825807cd3a1c9e6 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:757 -msgid "b. Ratio classification" -msgstr "b. Klasifikasi data rasio" - -# 47bdc7d143014cd3a372a942fb9f0055 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:759 -msgid "" -"In the previous example, we classified the **vegetasi** layer by what is " -"known as **nominal classification**. This type of classification is when " -"categories are defined based on names. Next we will classify the " -"**pemukiman** layer based on the size of each feature. Classifiying with " -"attributes that contain only positive numbers, such as land area, is known " -"as **ratio classification**." -msgstr "" -"Pada contoh sebelumnya, kita mengklasifikasikan layer vegetasi dengan cara " -"yang dikenal dengan Kliasifikasi nominal. Tipe klasifikasi ini adalah ketika " -"kategori disusun berdasarkan nama. Berikutnya kita akan melakukan " -"klasifikasi terhadap layer pemukiman berdasarkan tiap fiturnya. Melakukan " -"klasifikasi atribut yang hanya berisi nomor positif, seperti area lahan, " -"diketahui sebahai Klasifikasi Rasio. " - -# 1a07ab685c7b4c82a90992e7430a8f59 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:764 -msgid "" -"Open the attribute table for the **pemukiman** layer. Notice the final " -"column, **luas_ha**. This attribute contains the size of the land area " -"contained within that feature polygon." -msgstr "" -"Buka :guilabel:`attribute table` dari layer **pemukiman**. Anda dapat " -"melihat pada kolom terakhir, *luas_ha*. Atribut ini berisi ukuran dari luas " -"lahan yang terdapat pada fitur poligon tersebut. " - -# 34870b41b6fc450bb0421c76d04ba16d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:770 -msgid "Open the layer properties for **pemukiman**." -msgstr "Buka :guilabel:`layer properties` dari **pemukiman**." - -# 539d487758414399b5fbb3582eca4d1f -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:772 -msgid "" -"Change the Style type to **Graduated**, and use **luas_ha** as the column." -msgstr "" -"Ubah tipe :guilabel:`Style` menjadi **Graduated**, dan gunakan *luas_ha* " -"sebagai kolomnya." - -# cfa03047fc604052b033defdb2ff4555 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:777 -msgid "" -"Because we are categorizing with numbers this time, a color gradient will be " -"useful for representing our categories. Click on “Oranges” in the color " -"ramp, and then click :guilabel:`Classify`." -msgstr "" -"Karena kita melakukan kategorisasi berdasarkan angka kali ini, gradasi warna " -"akan lebih berguna merepresentasikan kategorinya. Klik pada :guilabel:" -"`Oranges` pada color ramp, lalu klik :guilabel:`Classify`. " - -# 058b5a1f78a2409094507c1c78ce1d72 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:783 -msgid "Now you’ll have something like this:" -msgstr "Sekarang Anda akan melihat seperti ini: " - -# f00b0cea52ad4a9aa28e468a815d3d19 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:788 -msgid "" -"Now you already know how to symbolize vector data into various types. You " -"can try to symbolize another data such as line or point to make your vector " -"data more informative." -msgstr "" -"Sekarang anda telah mengetahui bagaimana melakukan perubahan simbol pada " -"data vektor kedalam berbagai jenis. Anda bisa mencoba untuk mengubah data " -"lain seperti garis atau titik untuk membuat data vektor anda menjadi lebih " -"informatif." - -# 61d91f3514fe459fa08435c3fef2f9fa -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:792 -msgid "5.6 The Label Tool" -msgstr "5.6 Tool Label" - -# 8ac26d8e8c9741ff8b1c9b43d3c84053 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:794 -msgid "" -"Labels can be added to a map to show any information about an object. Any " -"vector layer can have labels associated with it. Labels rely on the " -"attribute data of a layer for their content." -msgstr "" -"Label dapat ditambahkan ke dalam peta untuk menunjukkan informasi tentang " -"objek. Suatu *layer* vektor dapat memiliki label yang berkaitan dengan layer " -"tersebut. Label bergantung pada data atribut dari *layer* terkait." - -# f0691ba0f9d047c8ae93813538b1f36c -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:796 -msgid "" -"There are several ways to add labels in QGIS, but some are better than " -"others. You may notice that when you open the Layer Properties window for a " -"layer, there is a tab called “Labels.” While this tab is designed to put " -"labels on your map, it is not nearly as good as the so-called “Label Tool”, " -"which we will learn in this section." -msgstr "" -"Ada beberapa cara untuk menambahkan label pada QGIS, tetapi beberapa cara " -"lebih baik dibandingkan yang lain. Anda mungkin memperhatikan bahwa ketika " -"Anda membuka jendela Properti dari sebuah layer, terdapat tab yang " -"bertuliskan “Labels.” Walaupun tab ini dirancang untuk memberikan label " -"dalam peta Anda, tab ini fungsinya tidak sebaik “Tool Label,” yang mana akan " -"kita pelajari pada bagian ini. " - -# ea52465c41f64b8c89ab328a86c511b1 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:801 -msgid "5.6.1 Labeling Points" -msgstr "5.6.1 Label Titik" - -# e24ca3d6d4874c19aab1227f5d5a9a14 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:803 -msgid "" -"Before being able to access the Label tool, you will need to ensure that it " -"has been activated." -msgstr "" -"Sebelum kita dapat mengakses tool Label, Anda harus memastikan bahwa fitur " -"ini telah diaktifkan." - -# d1de358ef0b2453aab6cfc549cbda0f5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:805 -msgid "Go to the menu item :menuselection:`View ‣ Toolbars`." -msgstr "Pergi ke menu item :menuselection:`View ‣ Toolbars`." - -# 6dfab45eaa884ea78bad4a9b19c9dfea -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:807 -msgid "" -"Ensure that the Label item has a checkmark next to it. If it doesn’t, click " -"on the :guilabel:`Label` item, and it will be activated. The :guilabel:" -"`Label` toolbar looks like this:" -msgstr "" -"Pastikan bahwa item Label telah memiliki tanda centang di sebelahnya. Jika " -"belum, klik pada item Label, dan fitur ini akan diaktifkan. Toolbar Label " -"tampak seperti ini:" - -# 6d528cd7f1104744b1002fdd6127dd8a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:813 -msgid "" -"Click on the **POI_Sleman_OSM** layer in the :guilabel:`Layers` list, so " -"that it is highlighted." -msgstr "" -"Klik pada layer :guilabel:`POI_Sleman_OSM` yang terdapat di daftar layer, " -"hingga layer tersebut tersorot." - -# 5a7129545dd4417bac0428a0c297fca0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:815 -msgid "Click on the :guilabel:`Labeling` button:" -msgstr "Klik pada tombol :guilabel:`Labelling` :" - -# dcff7582b588401eb96d755bd7f8e957 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:820 -msgid "This gives you the :guilabel:`Layer labeling settings` dialog." -msgstr "" -"Ketika Anda klik tombol tersebut, maka akan muncul halaman pengaturan Layer " -"Labelling." - -# c11522e41e8f46d6a9c87eb1ea741ae2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:822 -msgid "" -"Click drop down box in :guilabel:`no label` box and select :guilabel:`Show " -"labels for this layer` in drop down box." -msgstr "" -"Klik kotak di :guilabel:`no label` dan pilih :guilabel:`Show labels for this " -"layers` di kotak tersebut." - -# 171706d3ae104844b841642c80d36a05 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:827 -msgid "" -"We must indicate which of the attribute fields we want to use for the " -"labels. The **NAME** field is the mostly likely candidate for a label, so " -"let’s select **NAME** from the list:" -msgstr "" -"Kita harus menentukan atribut dari field mana atau informasi mana yang ingin " -"kita tampilkan sebagai label. Field **NAME** tampaknya merupakan field yang " -"paling tepat untuk mewakili objek dan dijadikan label, jadi mari kita pilih " -"NAME dari daftar tersebut:" - -# a87ce941d6714fa7b5faa3c70829a8fb -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:833 -msgid "Click :guilabel:`OK`. The map should now have labels like this:" -msgstr "" -"Klik :guilabel:`OK`. Sekarang peta tersebut sudah muncul dengan label di " -"dalamnya seperti ini:" - -# 322e3de3ee084312bb931a6b63a2ce68 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:838 -msgid "" -"What we have so far is good, but as you can see, the labels are overlapping " -"the points that they are associated with. That doesn’t look very nice. The " -"text is also a bit larger than it needs to be. Let’s fix these problems!" -msgstr "" -"Apa yang ada saat ini tampak cukup baik, namun seperti yang dapat Anda " -"lihat, labelnya masih tumpang tindih dengan titiknya. Hal tersebut tidak " -"tampak baik. Teks nya pun agak tampak terlalu besar dari yang seharusnya. " -"Mari kita perbaiki kekurangan-kekurangan tersebut!" - -# 41f4cfca483148349e377c1b9d415864 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:841 -msgid "" -"Open the :guilabel:`Label` tool again by clicking on its button as before." -msgstr "Buka :guilabel:`Label tool` lagi dengan melakukan klik pada tombolnya." - -# cba3af33a636430ca6c3c36acd35d191 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:843 -msgid "Click on the :guilabel:`Text` tab button to change the text properties:" -msgstr "Klik pada tab :guilabel:`Teks` untuk mengubah pengaturan teks: " - -# 421a115ededd46e4a78e2350a775e5f2 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:848 -msgid "" -"A standard text change dialog appears, similar to those in many other " -"programs. Change the font to Arial size 9." -msgstr "" -"Sebuah kotak dialog untuk mengubah teks akan muncul, serupa dengan yang " -"tampil di berbagai program lainnya. Ubah ukuran huruf menjadi *Arial dengan " -"ukuran 9*. " - -# 9ca08b2912d441a89857523aed949318 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:850 -msgid "" -"Now click on :guilabel:`Buffer` tab to add buffer on the text. Check box " -"labelled :guilabel:`Draw text buffer`" -msgstr "" -"Sekarang klik pada tab :guilabel: `Penyangga`untuk menambah efek penyangga " -"pada teks. Centanglah boks yang bertulisakan :guilabel:`Gambar penyangga " -"teks`" - -# 9191fd6fa9094c0890f877f6193b6bb8 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:855 -msgid "Your labels will now look like this:" -msgstr "Label Anda akan tampak seperti ini:" - -# 9d77591c08e7468c86b124f4ea2ff9f5 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:860 -msgid "Now you can see why we usually need label buffers!" -msgstr "Sekarang Anda dapat melihat mengapa kita membutuhkan label buffer!" - -# f9e0a3d2aacd4e47b554ee7d74ae0000 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:862 -msgid "" -"That’s the font problem solved! Now let’s look at the problem of the labels " -"overlapping the points." -msgstr "" -"Begitulah caranya mengatur tampilan huruf! Sekarang mari kita lihat " -"permasalahan label yang tumpang tindih dengan titik." - -# 7bd4717951a94130b54386d8797a011e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:864 -msgid "In the Label tool dialog, click on :guilabel:`Placement` tab." -msgstr "Pada kotak dialog pengaturan label, klik tab :guilabel:`Penempatan`." - -# 61867db3e28f4057be43bb6a4a5c0745 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:866 -msgid "Change the value of Label distance to 2." -msgstr "Ubah nilai *Label distance atau jarak label menjadi 2*." - -# 64d31f8e01de49c49610b14d45b43fb9 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:871 -msgid "" -"Click :guilabel:`OK`. The labels no longer hover over the icons, but are " -"“buffered” a short distance away:" -msgstr "" -"Klik :guilabel:`OK`. Dapat kita lihat, label tidak lagi berada di atas ikon " -"nya, namun sudah diberi sedikit jarak:" - -# f011a4222f84497c9b831c10434857ad -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:877 -msgid "5.6.2 Labeling lines" -msgstr "5.6.2 Memberi label pada objek garis" - -# 3120501c2d784ff2a5f2c70adfce43e0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:879 -msgid "" -"Now that you know how labeling works, there’s an additional problem. Points " -"and polygons are easy to label, but what about lines? If you label them the " -"same way as the points, your results would look like this:" -msgstr "" -"Sekarang Anda tahu bagaimana cara kerja label, namun ada masalah lainnya. " -"Titik dan poligon mudah untuk diberi label, bagaimana dengan garis? Jika " -"Anda memberikan label pada garis dengan cara yang sama seperti Anda melabeli " -"titik, maka hasilnya akan tampak seperti ini::" - -# 58841b179f314c14b9f7634728d983ef -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:885 -msgid "" -"This is not very useful! To make lines behave, we’ll need to edit some " -"options." -msgstr "" -"Ternyata tampilan tersebut kurang membantu! Untuk mengaturnya, kita " -"membutuhkan beberapa pilihan." - -# 64144ec286804df891b39816ff12f56a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:887 -msgid "Hide the **POI_Sleman_OSM** layer so that it doesn’t distract you." -msgstr "" -"Sembunyikan layer **POI_Sleman_OSM** sehingga tidak mengganggu perhatian " -"Anda. " - -# d2b8c6ec3932462f826287539fd941e4 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:889 -msgid "Activate labels for the **Jalan_Sleman_OSM** layer as before." -msgstr "Aktifkan label untuk layer **Jalan_Sleman_OSM** sama seperti tadi." - -# 57d4c300e0584bac8e9f7cd7295c8f27 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:891 -msgid "" -"Set the font Size to 9 and activate the buffer so that you can see more " -"labels." -msgstr "" -"Aturlah ukuran huruf menjadi ukuran 9 sehingga Anda dapat melihat lebih " -"banyak label. " - -# be45175985e24c5c99c309945e885816 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:893 -msgid "Zoom in so that the scale is around 1:10000." -msgstr "Perbesar sehingga skalanya akan menjadi *sekitar 1: 10000*." - -# 67e7a2e3145d4151a74b88cd551612c0 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:895 -msgid "" -"In the Label tool dialog’s :guilabel:`Placement` tab, choose the following " -"settings:" -msgstr "" -"Pada tab :guilabel:`Penempatan` pada kotak dialog Label, pilihlah pengaturan " -"seperti ini: " - -# 2b18392f517a4bbbbfd978a9b854434a -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:900 -msgid "The map will look somewhat like this, depending on scale:" -msgstr "Peta akan tampak seperti ini, tergantung pada skala:" - -# 710a630b985a483fa7d9e425e856567d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:905 -msgid "" -"It’s better than before, but still not ideal. For starters, some of the " -"names appear more than once, and that’s not always necessary. To prevent " -"that from happening:" -msgstr "" -"Ini sudah tampak lebih baik daripada sebelumnya, namun tetap belum ideal. " -"Beberapa nama jalan muncul lebih dari sekali, dan hal tersebut tidak " -"diperlukan. Untuk mencegah hal tersebut terjadi:" - -# f44039dbf7f240ee844e522b55b02ece -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:908 -msgid "Go to :guilabel:`Rendering` tab" -msgstr "Pergi ke :guilabel:`Rendering` tab" - -# 38f9ea2a36e84f5cb2c42e12deaf4b9b -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:910 -msgid "" -"Enable the option Merge connected lines to avoid duplicate labels (also " -"under the Rendering tab - you may need to scroll down to see it)." -msgstr "" -"Aktifkan pilihan :guilabel:`Merge connected lines` untuk menghindari label " -"yang terduplikasi (juga terletak di bawah tab Advanced – Anda mungkin harus " -"menggeser ke bawah untuk melihatnya). " - -# 2a236b60b6a24652b103b2a2defa0d1e -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:913 -msgid "" -"Another useful function is to prevent labels being drawn for features too " -"short to be of notice." -msgstr "" -"Fungsi lainnya yang berguna untuk mencegah label digambar untuk fitur-fitur " -"yang terlalu pendek untuk digambarkan." - -# 2e542102eab94b6c91a0d122ab710479 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:915 -msgid "" -"Set the value of Suppress labeling of features smaller than ... to 5 mm and " -"note the results when you click :guilabel:`Apply`." -msgstr "" -"Atur nilai dari :guilabel:`Suppress labeling of features smaller than ...` " -"menjadi *5 mm* dan perhatikan hasilnya ketika Anda klik :guilabel:`Apply`." - -# 06f1c7920d4d4d7295c8e45f7e829b75 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:918 -msgid "" -"Try out different Placement settings as well (also under the Placement tab). " -"As we’ve seen before, the horizontal option is not a good idea in this case, " -"so let’s try the curved option instead!" -msgstr "" -"Cobalah berbagai perbedaan :guilabel:`Placement settings` (berada di bawah " -"tab Advanced). Seperti yang kita lihat sebelumnya, opsi horizontal bukanlah " -"ide yang baik untuk kasus ini, mari kita coba opsi curved! " - -# 672a746df5254ff4bec3f550fa42dab6 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:921 -msgid "" -"Select the :guilabel:`curved` option under the :guilabel:`Placement` tab of " -"the :guilabel:`Layer labeling settings` dialog." -msgstr "" -"Pilih :guilabel:`curved` dibawah tab :guilabel:`Placement` dari dialog :" -"guilabel:`Layer labelling settings`." - -# daf25c7268374e2c9b84ca37acf311bb -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:924 -msgid "Here’s the result:" -msgstr "Ini lah hasilnya:" - -# a1c96525b8d6455591af9c06e5976d6d -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:929 -msgid "" -"As you can see, this hides a lot of the labels that were previously visible, " -"because of the difficulty of making some of them follow twisting street " -"lines and still be legible. You can decide which of these options to use, " -"depending on what you think seems more useful or what looks better." -msgstr "" -"Seperti yang Anda lihat, ada banyak label yang sebelumnya tampak namun kini " -"tersembunyi, karena karena kesulitan membuat beberapa dari mereka mengikuti " -"garis jalan memutar dan masih dapat dibaca. Anda dapat memutuskan mana dari " -"pilihan ini yang akan Anda gunakan, tergantung dari mana yang menurut Anda " -"berguna." - -# 95716b6c97f841feaa9e511f53651ad6 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:933 -msgid "" -"Now that you know how attributes can make a visual difference for your map, " -"how about using them to change the symbology of objects themselves? That’s " -"the topic for the next section!" -msgstr "" -"Sekarang Anda tahu bagaimana atribut dapat membuat perbedaan tampilan visual " -"pada peta Anda, bagaimana menggunakannya untuk mengubah simbologi dari objek-" -"objek itu sendiri? Itulah topik yang akan kita bahas pada bagian berikutnya!" - -# 19c950a68d194b9f93807ce00ed9b0d1 -#: ../../source/training/qgis/Chapter-05-Working_with_Vector_Data.rst:936 -msgid ":ref:`Go to next chapter --> `" -msgstr ":ref:`Pergi ke bab selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-06-Working_with_Raster_Data.po b/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-06-Working_with_Raster_Data.po deleted file mode 100644 index fcb21c1d..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-06-Working_with_Raster_Data.po +++ /dev/null @@ -1,688 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Dewi Sulistioningrum , " -"2016\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 1ee150908776411b9081a2e34c1f6b8f -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:6 -msgid "Chapter 6: Working with Raster Data" -msgstr "Bab 6: Bekerja dengan Data Raster" - -# d38eca356d154446b1f180311f22b96a -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 96f30e137aa746b797551f339596c8ff -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:10 -msgid "Load Raster Data" -msgstr "Memuat Data Raster" - -# 0ffe9288b0ab44c0ad8a1bc78e03be70 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:11 -msgid "Change Raster Symbology" -msgstr "Mengubah simbologi raster" - -# df3c15156952412491e4ff2ef161d75f -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:12 -msgid "Terrain Analysis" -msgstr "Analisis Terrain" - -# c573207bf2d148fdb3d122e03248ffd7 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:14 -msgid "" -"Thus far we’ve worked mostly with vector data, which consists of features, " -"and these features are themselves made up of points and lines. In this " -"chapter we will learn about raster data. Remember when you were editing " -"OpenStreetMap in JOSM? The points, lines and shapes that you drew were " -"vector data. But when you loaded Bing aerial imagery in the background, that " -"was raster data. So what’s the difference?" -msgstr "" -"Sampai sekarang kita selalu bekerja dengan data vektor, yang terdiri dari " -"fitur, dan fitur itu sendiri terdiri dari titik dan garis. Dalam bab ini " -"Anda akan mempelajari mengenai data raster. Ingat ketika Anda mengedit " -"dengan data OpenStreetMap di JOSM? Titik, garis, dan bentuk yang Anda gambar " -"adalah data vektor. Tetapi ketika Anda menambahkan citra satelit Bing Aerial " -"sebagai latar belakang yang membantu Anda dalam mengedit data OSM, itu " -"disebut data raster. Jadi apa perbedaannya? " - -# fb66f2dfeb5942db98dc4c7ddd44f44c -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:17 -msgid "" -"Raster data essentially comes in the form of an image. It is made up of " -"pixels, like a photograph, and a raster image will always be some number of " -"pixels wide and some number of pixels high. If you zoom in far enough on a " -"raster image, it will start to become blurry, just as if you opened a photo " -"on your computer and zoomed in very close. As we’ll see in this chapter, " -"however, a raster image can mean more than just a photograph from the sky. " -"Follow along and we’ll learn all about rasters!" -msgstr "" -"Data raster berasal dalam bentuk gambar. Data raster terdiri dari pixel, " -"seperti fotografi, dan sebuah gambar raster selalu memiliki beberapa jumlah " -"pixel lebar dan beberapa jumlah pixel tinggi. Jika Anda memperbesar sampai " -"cukup jauh pada gambar raster, itu akan menjadi blur/tidak jelas, hanya jika " -"Anda membuka foto di komputer dan diperbesar sampai jauh. Sebaiknya Anda " -"akan melihat didalam bab ini, bagaimanapun, sebuah gambar raster dapat " -"berarti lebih dari sekedar fotografi dari udara. Ikuti bersama dan kita akan " -"mempelajari semua tentang raster!" - -# eb850fa50a63460ea842f30cbd63095e -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:21 -msgid "6.1 Loading Raster Data" -msgstr "6.1 Cara Memuat Data Raster" - -# 393b4e0e18dc45c6b441612d47c0ef3b -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:23 -msgid "" -"Not all raster data consist of aerial photographs. There are many other " -"forms of raster data, and in many of those cases, it’s essential to " -"symbolise the data so that it becomes properly visible and useful. In this " -"section we’ll add a new kind of raster and see how to change its symbology." -msgstr "" -"Tidak semua data raster terdiri dari foto udara. Ada banyak bentuk lain dari " -"data raster, dan dalam banyak kasus, sangat penting untuk melakukan " -"simbolisasi data sehingga data raster tersebut menjadi lebih terlihat dengan " -"baik dan lebih berguna. Pada bagian ini kita akan menambahkan jenis data " -"raster yang baru dan melihat bagaimana mengubah simbologinya." - -# 6bcf37a53b574aa0892b9a5cf2c1fc52 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:26 -msgid "Click on the :guilabel:`Load Raster Layer` button:" -msgstr "Klik pada tombol :guilabel:`Tambahkan Layer Raster`:" - -# 595714f270604b57848faf4fd8c744f6 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:31 -msgid "" -"The Load Raster Layer dialog will open. Find the file named :file:" -"`popmap10_all.tif` in :file:`QGSI for Disaster Management/Working with " -"Raster` folder. Open it." -msgstr "" -"Kotak dalog Tambahkan Layer Raster akan terbuka. Temukan file dengan nama :" -"file:`popmap10_all.tif` di folder :file:`QGIS for Disaster Management/" -"Working with Raster`. Buka file tersebut." - -# 7b79ae50aafc4fdd974253d61b888b00 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:33 -msgid "" -"When it appears in the Layers Panel, right-click on it and click :guilabel:" -"`Rename`. Give it the name *Indonesian Population*." -msgstr "" -"Ketika file tersebut muncul pada Daftar Layer, klik kanan pada nama layer " -"dan klik :guilabel:`Ubah nama`. Beri nama *Indonesian Population*." - -# 20c8e9556e2d4e4e8b38ec781331cdcb -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:35 -msgid "" -"High resolution, contemporary data on human population distributions are a " -"prerequisite for the accurate measurement of the impacts of population " -"growth, for monitoring changes and for planning Interventions. The AsiaPop " -"project was initiated in July 2011 with an aim of producing detailed and " -"Freely-available population distribution maps for the whole of Asia.*" -msgstr "" -"Resolusi tinggi, yang kontemporer pada distribusi populasi manusia adalah " -"prasyarat untuk pengukuran yang akurat dari dampak pertumbuhan populasi, " -"untuk memantau perubahan dan untuk merencanakan intervensi. Proyek AsiaPop " -"dimulai pada Juli 2011 dengan tujuan untuk menghasilkan peta distribusi " -"penduduk yang rinci dan tersedia gratis untuk seluruh Asia." - -# 3705299d82c94e50a581f98d3b8fd87b -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:37 -msgid "" -"When it loads, you’ll notice that the new raster image appears as whole " -"Indonesia’s Islands in grey colour." -msgstr "" -"Ketika layer dimuat, Anda akan mendapat gambar raster yang baru muncul " -"sebagai seluruh kepulauan indonesia yang berwarna abu-abu." - -# a66838f1de534d3a8a07af6859cb521a -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:42 -msgid "" -"The layer appears grey (and doesn’t give us any information) because its " -"symbology hasn’t been customised yet. In the colour aerial photograph we " -"loaded via *OpenLayer* Plugin, everything is already defined. But if you load " -"a raster image and it’s just a grey rectangle, then you know there’s no " -"symbology for it yet. It still needs to be defined. That’s what we will do " -"next." -msgstr "" -"Layer mucul dengan warna abu-abu (dan tidak memberikan informasi apapun) " -"karena simbologinya belum diatur. Dalam warna foto udara yang dimuat " -"sebelumnya melalui plugin *OpenLayer*, semuanya sudah ditentukan. Tetapi " -"jika Anda memuat data raster dan tampilannya hanya abu-abu, Anda mengetahui " -"bahwa belum ada simbologi untuk layer ini. Simbologi untuk layer ini perlu " -"didefinisikan. Itulah yang akan kita lakukan sekarang. " - -# c9434b0628cb4813aa99d1325109785a -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:47 -msgid "6.2 Symbolise Raster Data" -msgstr "6.2 Simbologi Data Raster" - -# 156b1553eb7f4f269949b7c6892de5b1 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:49 -msgid "" -"Open the :guilabel:`Layer Properties dialog` for the Population layer, which " -"is now named *Indonesian Population*." -msgstr "" -"Buka kotak dialog :guilabel:`Properti Layer` untuk layer Populasi, yang " -"dinamakan *Indonesian Population*. " - -# 25169c5e1f6c40fe8e3d41eae6b22718 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:51 -msgid "" -"Switch to the :guilabel:`Style` tab. This shows the current symbology " -"settings, and as we’ve seen, they don’t give us much information on the " -"layer. Let’s make sure the layer has data in it." -msgstr "" -"Arahkan ke tab :guilabel:`Style`. Tab ini menunjukkan pengaturan simbologi " -"yang saat ini diterapkan pada layer, dan seperti yang kita lihat, simbologi " -"tersebut tidak memberi kita banyak informasi pada layer. Mari kita pastikan " -"layer ini memiliki data di dalamnya." - -# c9fc0da7ac394819a5bb395ce3195524 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:53 -msgid "" -"Change the :guilabel:`Render type` to :guilabel:`Singleband pseudocolor`. " -"Set colour to :guilabel:`YlOrBr` and change mode to :guilabel:`Equal " -"Interval` with :guilabel:`6 Classes`. Click :guilabel:`Classify` to show 6 " -"classes. As shown below:" -msgstr "" -"Ubah :guilabel:`tipe render` ke :guilabel:`Pitatunggal pseudocolor`. Atur " -"warna menjadi :guilabel:`YlOrBr` dan ubah mode ke :guilabel:`Equal " -"Interval` dengan :guilabel:`6 Classes`. Klik :guilabel:`Klasifikasi` untuk " -"menunjukkan 6 kelas. Seperti dibawah ini: " - -# 3638516c182f42be9a20dd06b000c92f -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:58 -msgid "Click *OK*. The raster should look like this:" -msgstr "Klik :guilabel:`OK`. Raster akan terlihat seperti ini:" - -# e6e4bf00180a47e0aa89b6dfe96d5886 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:63 -msgid "" -"Good! This tell us that there is data in this layer. And by looking at it we " -"can get an idea in Java Island, population number higher than other island " -"in Indonesia." -msgstr "" -"Benar! Ini memberitahu kita bahwa ada data dalam layer ini. Dengan melihat " -"itu kita bisa mendapatkan ide di Pulau Jawa, angka populasi lebih besar " -"daripada pulau lainnya di Indonesia." - -# 05f8ebe98eb4408b90df83e596377c61 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:65 -msgid "" -"Let’s stop for a minute and understand what is happening here. Remember that " -"an image is made up of pixels, individual cells that contain a value, which " -"is usually a colour value. For example, if you zoom in very closely on a " -"photograph you can see those individual pixels, like this:" -msgstr "" -"Mari berhenti beberapa menit dan memahami apa yang terjadi. Ingatlah bahwa " -"data raster terdiri dari piksel, dimana setiap piksel memiliki sebuah nilai, " -"yang biasanya digambarkan dengan nilai warna. Sebagai contoh, jika Anda " -"memperbesar sebuah foto hingga sangat dekat, Anda dapat melihat setiap " -"piksel-piksel tersebut, seperti ini:" - -# e21c586528ab4506873a64489e6aeed6 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:70 -msgid "" -"The value of each cell is saved in the file. Imagine the file being saved " -"something like this, where each square is a pixel:" -msgstr "" -"Nilai dari setiap sel disimpan dalam file. Bayangkan file disimpan sesuatu " -"seperti ini, dimana setiap persegi adalah pixel:" - -# 5dc237a510c34b2a8e6c090e8c627352 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:75 -msgid "" -"Of course the computer doesn’t understand words for colours. In fact the " -"value of each cell would be a number, which the computer then associates " -"with a certain colour. For our aerial image, this is already defined. Since " -"it is a normal image, it knows to associate the numbers for each pixel in " -"the file with the common colours that we see every day. But this new raster " -"image is different, because the values of each pixel don’t represent " -"colours, but rather altitude, and QGIS doesn’t know automatically how to " -"display it. Hence it shows every pixel in the image as grey, even if the " -"values in each pixel are different. When we change the symbology to " -"Psuedocolor, we can see all the different pixel values shown with various " -"colours." -msgstr "" -"Tentunya komputer tidak mengerti kata untuk warna. Pada kenyetaannya nilai " -"dari setiap sel memiliki angka, yang mana komputer kemudian " -"mengasosiasikannya dengan warna tertentu. Untuk citra satelit, angka-angka " -"tersebut sudah didefinisikan. Jika gambar kita adalah gambar yang normal " -"sebagaimana gambar pada umumnya, komputer dapat mengasosiasikan angka-angka " -"pada setiap piksel dalam file dengan warna-warna pada umumnya yang kita " -"lihat setiap hari. Tapi, data raster baru ini berbeda, karena nilai-nilai " -"dari setiap piksel tidak merepresentasikan warna, melainkan ketinggian, dan " -"QGIS tidak tahu bagaimana untuk secara otomatis menampilkannya. Oleh karena " -"itu, QGIS merepresentasikan setiap piksel dalam layer raster dengan warna " -"abu-abu, bahkan jika nilai dalam setiap piksel berbeda. Ketika kita mengubah " -"simbologi menjadi Psuedocolor, kita dapat melihat semua nilai piksel yang " -"berbeda yang ditunjukkan dengan warna yang berbeda-beda pula." - -# 198d1ce9eac1486e8334503f64690e31 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:79 -msgid "" -"It would be nice to represent our Indonesian Population layer as a greyscale " -"spectrum, rather than a variety of bright colours. Next we will tell QGIS to " -"symbolise the layer with colours in a spectrum, beginning at the lowest " -"pixel value in the file and ending at the highest pixel value. In other " -"words, if the pixel values looked like this:" -msgstr "" -"Akan lebih tepat untuk menampilkan layer Populasi Indonesia sebagai spektrum " -"abu-abu daripada menggunakan variasi warna yang terang. Selanjutnya kita " -"akan mempelajari QGIS untuk melakukan simbolisasi layer dengan warna dalam " -"spektrum, dimulai dari nilai piksel terendah dalam file dan diakhiri dengan " -"nilai piksel tertinggi. Dengan kata lain, piksel akan terlihat seperti ini:" - -# f1923c6e47524311b15993181a55d7f6 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:84 -msgid "QGIS would create a spectrum equating numbers to colours like this:" -msgstr "" -"QGIS akan membuat spektrum dengan menyamakan angka-angka untuk warna " -"tertentu seperti ini:" - -# 00dbdd0ca466440a81f913377383b867 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:89 -msgid "And render the image like this:" -msgstr "Dan citra akan terlihat seperti ini:" - -# 94f7acb290f44f688b58f2b702be7ab4 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:94 -msgid "To do that, let’s start to symbolise Indonesia Population:" -msgstr "" -"Untuk melakukan itu, mari mulai untuk melakukan simbologi Populasi Indonesia:" - -# d64e6e86349546a39c17aabb81bf3ca3 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:96 -msgid "Open the :guilabel:`Layer Properties` Again." -msgstr "Buka :guilabel:`Properti Layer` lagi." - -# bd30723855f6405198dcc125d3b4a8aa -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:98 -msgid "Switch the render type back to :guilabel:`Singleband gray` (1)." -msgstr "Ubah kembali tipe render menjadi :guilabel:`Pitatunggal abu-abu` (1)." - -# 8c93b9a276ec49ef96a7d1a49b5d1902 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:100 -msgid "Check the box next to :guilabel:`Min / max` (2)." -msgstr "Beri tanda centang pada kotak di samping :guilabel:`Min / max` (2)." - -# 92487dd074e4465cb8d2d45c071f03ef -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:102 -msgid "" -"Next to :guilabel:`Contrast enhancement` select :guilabel:`Stretch to " -"MinMax` (3)." -msgstr "" -"Di samping :guilabel:`Perbaikan Kontras`, pilih :guilabel:`Stretch to " -"MinMax` (3)." - -# 67282e5cd82641a59dd6f31e3c1c431b -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:104 -msgid "" -"Under :guilabel:`Load min / max values`, select :guilabel:`Estimate " -"(faster)`." -msgstr "" -"Di bawah :guilabel:`Panggil nilai min/maks`, piilih :guilabel:`Estimasi " -"(lebih cepat)`." - -# 694674fce2ed4b83907e41360ce79f93 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:106 -msgid "Click the :guilabel:`Load` button:" -msgstr "Klik tombol :guilabel:`Muat`:" - -# 9b140d1d2a2742038813a89990ecbd16 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:111 -msgid "" -"Notice how the custom Min and Max values have changed. The lowest pixel " -"value in this image file is 0 and the highest is about 3024.93. But what are " -"the minimum and maximum values that should be used? The current values are " -"those that just gave us a grey rectangle. Instead, we should be using the " -"minimum and maximum pixel values that are actually in the image. You can " -"determine those values easily by loading the minimum and maximum values of " -"the raster." -msgstr "" -"Perhatikan bahwa nilai Min dan Max telah berubah. Nilai piksel terendah " -"adalah 0 dan nilai tertinggi adalah 3024.93. Tetapi berapa nilai minimum dan " -"maksimum yang harus digunakan? Nilai saat ini adalah hanya memberi kita " -"sebuah persegi panjang abu-abu. Sebaliknya, kita harus menggunakan nilai " -"piksel minimum dan maksimum yang sebenarnya pada gambar. Anda dapat " -"menentukan nilai dengan mudah dengan memuat nilai-nilai minimum dan maksimum " -"dari raster. " - -# ca8b483263164594b325d25378adc43f -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:116 -msgid "" -"Click *OK.* You should see the values of the raster properly displayed, with " -"the darker colour representing small number of population in each pixel and " -"the lighter one, high number of population in each pixel:" -msgstr "" -"Klik :guilabel:`OK`. Anda akan melihat nilai dari layer raster tertampilkan, " -"dengan warna yang lebih gelap merepresentasikan angka terkecil dari populasi " -"di setiap piksel dan warna yang lebih terang merepresentasikan angka " -"terbesar dari populasi di setiap piksel:" - -# 4ec537b5ef8240e381e4e5d6e709d3ec -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:121 -msgid "" -"We’ve learned to do this the tricky way, but can we do it faster? Of course! " -"Now that you understand what needs to be done, you’ll be glad to know that " -"there’s a tool for doing all of this more easily." -msgstr "" -"Kita telah belajar untuk melakukan hal ini dengan cara yang sulit, namun " -"bisakah kita melakukannya dengan lebih cepat. Tentu saja! Sekarang bahwa " -"Anda telah memahami apa yang perlu dilakukan, Anda akan senang mengetahui " -"bahwa ada alat untuk melakukan semua ini dengan mudah." - -# d43b1dd6eec3416299acc7edbf537e0c -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:123 -msgid "" -"Remove :guilabel:`Indonesian Population` from the Layers panel, by right-" -"clicking it and clicking :guilabel:`Remove`" -msgstr "" -"Hapus :guilabel:`Populasi Indonesia` dari panel Daftar Layer, dengan cara " -"klik kanan pada nama layer dan :guilabel:`Buang`" - -# b49fc9cb09b045ec8fdc7414ac6e0dd2 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:125 -msgid "" -"Load the raster image again, renaming it to *Indonesian Population* as " -"before. It will be a grey rectangle again." -msgstr "" -"Muat kembali data raster, dan ubah nama layernya menjadi *Indonesian " -"Population* seperti sebelumnya. Layer tersebut akan tertampilkan dalam " -"bentuk persegi abu-abu kembali. " - -# 8f2a0c6f4cbd4c6ea2f4c4b5843bc3dc -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:127 -msgid "" -"Enable the tool you’ll need by enabling :guilabel:`View → Toolbars → Raster` " -"These icons will appear in the interface:" -msgstr "" -"Aktifkan tool yang Anda perlukan dengan :menuselection:`Tampilan ‣ Panel " -"alat-alat ‣ Raster`. Gambar icon seperti dibawah ini: " - -# 39a2fb1f997e46028a8eeff7ebd2a251 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:132 -msgid "" -"The button on the right will stretch the minimum and maximum values to give " -"you the best contrast in the local area that you’re zoomed into. It’s useful " -"for large datasets. The button on the left will stretch the minimum and " -"maximum values to constant values across the whole image." -msgstr "" -"Tombol di sebelah kanan akan meregangkan nilai minimum dan maksimum untuk " -"memberikan kontras terbaik di daerah setempat yang diperbesar. Ini berguna " -"untuk dataset yang berukuran besar. Tombol di sebelah kiri akan meregangkan " -"nilai minimum dan maksimum nilai konstan di seluruh gambar." - -# c8f4e9806a834ed08aecafc6c7a13030 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:134 -msgid "" -"Click the right button labelled :guilabel:`(Stretch Histogram to Full " -"Dataset)`. You’ll see the data is now correctly represented as before!" -msgstr "" -"Klik tombol yang berada di sebelah kanan dengan tulisan :guilabel:" -"`(Regangkan histogram ke seluruh dataset)`. Anda akan melihat data raster " -"kini tampil lebih baik daripada sebelumnya. " - -# 051ad95e358d4eaeb66cd0c2fa2f864b -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:137 -msgid "6.3 Terrain Analysis" -msgstr "6.3 Analisis Terrain" - -# 15323a5e641e4beeb65cd097dc424aef -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:139 -msgid "" -"Certain types of rasters allow you to gain more insight into the terrain " -"that they represent. Digital Elevation Models (DEMs) are particularly useful " -"in this regard. In this section we’ll do a little bit more with our DEM " -"raster, in order to try to extract more information from it." -msgstr "" -"Beberapa jenis raster memungkinkan Anda untuk mendapatkan wawasan yang lebih " -"mendalam tentang medan yang mereka representasikan. Model Elevasi Digital " -"(DEM) sangat berguna dalam hal ini. Pada bagian ini, kita akan melakukan " -"praktek yang lebih banyak dengan raster DEM untuk mendapatkan informasi yang " -"lebih banyak dari data raster tersebut. " - -# e214cc5117e546ba84722c82b15c50b7 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:142 -msgid "6.3.1 Calculating a hillshade" -msgstr "6.3.1 Menghitung Hillshade" - -# e879be3932e14770a51cab1733329dd4 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:144 -msgid "" -"The DEM you have on your map right now does show you the elevation of the " -"terrain, but it can sometimes seem a little abstract. It contains all the 3D " -"elevation information about the terrain that you need, but it doesn’t really " -"look 3-Dimensional. To get a better look at the terrain, it is possible to " -"calculate a hillshade, which is a raster that maps the terrain using light " -"and shadow to create a 3D-looking image." -msgstr "" -"DEM yang Anda miliki di peta sekarang tidak menunjukkan ketinggian medan, " -"tetapi kadang-kadang tampak sedikit abstrak. Ini berisi semua informasi " -"elevasi 3D tentang medan yang Anda butuhkan, tetapi tidak benar-benar " -"melihat 3-Dimensi. Untuk mendapatkan lebih baik untuk melihat medan, adalah " -"dengan menghitung hillshade, yang merupakan raster untuk memetakan medan " -"menggunakan cahaya dan bayangan untuk menciptakan gambar 3D yang tampak." - -# 71989287188041689abab6c699147dfd -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:147 -msgid "" -"To work with DEMs, we will use the all-in-one DEM (Terrain models) analysis " -"tool." -msgstr "" -"Untuk bekerja dengan DEM, kita akan menggunakan tool analisis all-in-one DEM " -"(Terrain models)." - -# b33986d65f7f47b980fc60a4360c84ba -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:149 -msgid "" -"Open the file named :file:`SRTM_Merapi.tif`, which is located in :file:`QGIS " -"for Disaster Management/Working with Raster` folder." -msgstr "" -"Buka file dengan nama :file:`SRTM_Merapi.tif`, yang berlokasi di folder :" -"file:`QGIS for Disaster Management/Working with Raster`." - -# c4828df4fdfc4ab2a6c3ddb005a0a7c0 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:151 -msgid "When it appears in the :guilabel:`Layer` panel, rename it to **DEM**." -msgstr "Ketika muncul di panel :guilabel:`Layer`, ubah nama ke **DEM**. " - -# e732789e39354fa5a5a82d10b446468e -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:153 -msgid "Click :guilabel:`Stretch Histogram to Full Dataset` button." -msgstr "Klik tombol :guilabel:`Regangkan histogram ke seluruh dataset`." - -# fd086bd7891346df94ee94a79582797a -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:155 -msgid "Go to :guilabel:`Raster → Analysis → DEM (Terrain Models)…`" -msgstr "Pergi ke :guilabel:`Raster → Analisis → DEM (Terrain Models)…`" - -# 2b7d66b8f6bc4dae971a58fcb100e819 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:160 -msgid "" -"In the dialog that appears, ensure that the input file is the **DEM** layer." -msgstr "" -"Pada kotak dialog yang muncul, pastikan input filenya adalah layer :kbd:" -"`DEM`. " - -# abf708cd4f18491883f7110573951bbb -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:163 -msgid "" -"Set the output file to :guilabel:`hillshade.tif` in the directory :guilabel:" -"`Merapi/SRTM/`." -msgstr "" -"Atur file output dengan nama :kbd:`hillshade.tif` simpan dalam :file:`Merapi/" -"SRTM/`." - -# e4cba23ddb5145b68e9b7dd3e890f2e4 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:168 -msgid "Check the box next to :guilabel:`Load into canvas` when finished." -msgstr "" -"Beri tanda centang pada kotak di samping :guilabel:`Muat ke dalam kanvas " -"ketika selesai`." - -# d45c0b414af647c98201b5c6c808db4a -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:173 -msgid "Leave all the other option unchanged." -msgstr "Pengaturan yang lain tidak perlu diubah. " - -# fb02bde2861d494fb51795e1518adb71 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:175 -msgid "Click :guilabel:`OK` to generate the hillshade." -msgstr "Klik :guilabel:`OK` untuk memproses hillshade." - -# 0863b818f69742ea92fd364139e8350b -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:177 -msgid "" -"When the processing is complete. Click :guilabel:`OK` on the notification." -msgstr "" -"Ketika proses selesai, klik :guilabel:`OK` pada pesan pemberitahuan yang " -"muncul. " - -# e0069a80094b40b28107b51a893abbe8 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:179 -msgid "Click :guilabel:`Close` in the dialog." -msgstr "Klik :guilabel:`Close` pada kotak dialog." - -# d04022e0f7e34b3c9ea3d9e04d66fecd -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:181 -msgid "" -"There should now be a new layer called *hillshade* that looks like this:" -msgstr "" -"Anda sekarang seharusnya memiliki layer baru yang disebut *hillshade* yang " -"terlihat seperti ini:" - -# c2163494b922415689f0e1788b6daf85 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:186 -msgid "" -"This looks more Three-Dimensional, but can we improve on this? When you " -"open :guilabel:`DEM (Terrain Models)` tools, you will notice in the Mode " -"Options for hillshade there’re *Azimuth of the light* and *Altitude of the " -"light*." -msgstr "" -"Ini terlihat lebih tiga dimensi, tetapi Bisakah kita memperbaiki ini? Ketika " -"Anda membuka tools :guilabel:`DEM (Terrain Models)`, Anda akan memperhatikan " -"mode pilihan untuk hillshade yaitu *Azimut cahaya* dan *Ketinggian cahaya*. " - -# 64f656608e1149eeab2a26df59ecbed2 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:188 -msgid "" -":guilabel:`Azimuth of the light` defines in which direction the sun is, " -"whereas 0° represent north, east is 90°, south is 180° and west is 270°. " -"While :guilabel:`Altitude of the light` is the angle between the horizon and " -"the centre of the sun’s disc." -msgstr "" -":guilabel:`Azimut cahaya` menunjukkan arah matahari, dimana 0° menggambarkan " -"utara, timur 90°, selatan 180° dan barat 270°. Sedangkan :guilabel:" -"`ketinggian cahaya` adalah sudut antara horison dan pusat dari matahari." - -# c9ced26d6281409d89a55955fe9115a4 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:191 -msgid "" -"On its own, the hillshade looks like a plaster cast. It will look better if " -"we can combine it with our more colourful DEM. We can do this by making the " -"hillshade layer an overlay." -msgstr "" -"Hillshade tampak seperti gips. Ini akan terlihat lebih baik jika kita bisa " -"memadukannya dengan DEM yang lebih berwarna. Kita dapat melakukan ini dengan " -"membuat layer hillshade sebagai overlay." - -# aef5d6d11c1b420f93c02cfc7e3a0a9b -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:194 -msgid "6.3.2 Using a hillshade as an overlay" -msgstr "6.3.2 Menggunakan hillshade sebagai overlay" - -# 42d9c0612d5849c29a3a3600b8210672 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:196 -msgid "" -"Hillshade can provide very useful information about the sunlight at a given " -"time of day. But it can also be used for aesthetic purposes, to make the map " -"look better. The key to this is setting the hillshade to being mostly " -"transparent." -msgstr "" -"Hillshade dapat memberikan informasi yang sangat berguna mengenai sinar " -"matahari pada waktu tertentu. Tetapi itu dapat juga digunakan untuk tujuan " -"estetika, untuk membuat peta terlihat tampak lebih baik. Kunci untuk " -"melakukan itu dengan pengaturan pada hillshade menjadi transparan. " - -# ef712e25651847f0ab6db301b9faa373 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:198 -msgid "" -"Change the symbology of the original :guilabel:`DEM` layer to use the :" -"guilabel:`Pseudocolor` scheme." -msgstr "" -"Ubah simbologi layer :guilabel:`DEM` asli menjadi :guilabel:`Pseudocolor` " - -# 1e0f212b39fd4194b547352f3c8c7d7e -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:200 -msgid "" -"Click and drag the :guilabel:`DEM` layer beneath the :guilabel:`hillshade` " -"layer in the Layers panel." -msgstr "" -"Klik dan pindahkan layer :guilabel:`DEM` dibawah layer :guilabel:`hillshade` " -"pada panel Daftar Layer." - -# 882fb80077274eac9b842784cf4028bb -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:205 -msgid "Ensure that :guilabel:`Control rendering order` is checked." -msgstr "Pastikan bahwa :guilabel:`Kontrol urutan render` diaktifkan." - -# c16e26b26bf74316898f9414b522a63a -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:210 -msgid "" -"Now we will make the hillshade layer somewhat transparent. Open its :" -"guilabel:`Layer Properties` and go to the :guilabel:`Transparency` tab." -msgstr "" -"Sekarang Anda akan membuat layer hillshade menjadi transparan. Buka :" -"guilabel:`Properti Layer` dan pergi ke tab :guilabel:`Transparan`." - -# 585010e7e1fc42139b85c5e61e7ac6c4 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:212 -msgid "Set the :guilabel:`Global transparency` to 50%:" -msgstr "Aturlah :guilabel:`Transparansi umum` menjadi 50%:" - -# 52aaf79b498c4dd28c04ed555b8ad2e9 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:217 -msgid "" -"Click :guilabel:`OK` in the Layer Properties dialog. You should get a result " -"similar to this:" -msgstr "" -"Klik :guilabel:`OK` pada kotak dialog Properti Layer. Anda akan mendapatkan " -"hasil seperti ini:" - -# f8083cd867964c8eaf283a77ced9b05f -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:222 -msgid "" -"Using a hillshade in this way, it’s possible to enhance the topography of " -"the landscape. If the effect doesn’t seem strong enough to you, you can " -"change the transparency of the hillshade layer; but of course, the brighter " -"the hillshade becomes, the dimmer the colours behind it will be. You will " -"need to find a balance that works for you." -msgstr "" -"Menggunakan hillshade dengan cara ini, memungkinkan kita untuk menajamkan " -"tampilan topografi muka bumi. Jika efek yang tampak tidak cukup kuat bagi " -"Anda, Anda dapat mengubah transparansi dari layer hillshade tersebut; namun " -"tentu semakin terang hillshade, semakin suram warna dibelakangnya. Anda " -"perlu menemukan keseimbangan yang sesuai untuk Anda." - -# 8bc04e35e6d3494d811db381b5ecf6f9 -#: ../../source/training/qgis/Chapter-06-Working_with_Raster_Data.rst:224 -msgid ":ref:`Go to next chapter --> `" -msgstr ":ref:`Pergi ke bab selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-07-Using_Map_Composer.po b/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-07-Using_Map_Composer.po deleted file mode 100644 index 0a87e741..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-07-Using_Map_Composer.po +++ /dev/null @@ -1,698 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Richard Duivenvoorde , 2016\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# c458bc6b9de9424bbef2d6650fc4c0a1 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:6 -msgid "Chapter 7: Using Map Composer" -msgstr "Bab 7: Menggunakan Map Composer" - -# 81fec65a3aaf479c9d03b5cb55877fd6 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# a699c19b901d4316802d420bedf02e4b -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:10 -msgid "Arrange map layout" -msgstr "Merancang layout peta " - -# 9469baafd2414c23b1edcd294091b285 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:11 -msgid "Add new map" -msgstr "Menambahkan peta baru" - -# 04ff3dc5e17b451db0bdffdb47dc48cb -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:12 -msgid "Add title to a map" -msgstr "Menambahkan judul pada sebuah peta " - -# 05322b2954b347feac6b633366dfb9a3 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:13 -msgid "Add graphic and numeric scales" -msgstr "Menambahkan skala grafik dan numerik " - -# aab66241940a49aaaacbb61766aeb6aa -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:14 -msgid "Add grid to a map" -msgstr "Menambahkan grid pada sebuah peta " - -# f1e3d9c771d44e089885247954a0004d -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:15 -msgid "Add an inset" -msgstr "Menambahkan sebuah inset" - -# 3c5afa6697aa483197daa6b7ac72f97c -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:16 -msgid "Customise the content of the legend" -msgstr "Menyesuaikan isi legenda" - -# 660874a6cf6c4d9986ca7de7dd3cb1ea -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:17 -msgid "Export a map to different formats (pdf, jpeg, svg)" -msgstr "" -"Meng-eksport sebuah peta ke dalam format yang berbeda (pdf, jpeg, jpeg, svg)" - -# a67587f17e94415c818060b3ad6b152a -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:19 -msgid "" -"A map is a means to communicate information (as well as new ideas) tothe " -"audience. We use symbology to convey the contents of our data so it can be " -"easily understood. When we create a map layout, we go one step further - we " -"present your map so that it becomes a means of information." -msgstr "" -"Sebuah peta merupakan sarana untuk menyampaikan informasi (serta ide-ide " -"baru) kepada pembaca peta. Kita menggunakan simbologi untuk menyampaikan isi " -"dari data kita sehingga dapat mudah dipahami. Ketika kita membuat layout " -"peta, kita sudah satu langkah lebih jauh - kita menyajikan peta Anda " -"sehingga menjadi sarana informasi. " - -# 2fdfd606c6eb4d5790d5a1bf2812614a -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:22 -msgid "" -"No matter what media we plan to distribute your map by (whether it’s printed " -"or sent over the internet), we must pay attention to how you compose your " -"map elements in the layout. In this module we will discuss the presentation " -"of printed maps, and create our very own." -msgstr "" -"Apapun media yang Anda gunakan untuk mendistribusikan peta Anda (baik versi " -"cetak maupun melalui internet), kita harus memperhatikan bagaimana Anda " -"mengemas elemen-elemen yang ada di dalam peta ke dalam sebuah layout. Pada " -"bab ini kita akan mendiskusikan bagaimana mempresentasikan peta cetak, dan " -"membuat peta Anda sendiri." - -# 6dce0fc89a2f4a1793c0647543e9ffc0 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:26 -msgid "7.1 The Map Composer" -msgstr "7.1 Map Composer" - -# 21d808a46f814c2ba79f311ba372fe05 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:28 -msgid "" -"The QGIS Map Composer allows you to prepare it for printing. Apart from the " -"map, you are able to add additional information such as images, labels, " -"legends, and scalebars." -msgstr "" -"Map Composer pada QGIS memungkinkan Anda untuk mempersiapkannya untuk " -"dicetak. Selain menambahkan peta, Anda dapat menambahkan informasi tambahan " -"seperti gambar, label, dan skala." - -# 7a04d23002fb4cfebca71639e3f2b7bc -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:30 -msgid "" -"Let’s start with some data in the Sleman regency that has already been " -"symbolised. Open the project named :file:`Chapter_7_Map Composer.qgs` in " -"the :file:`QGIS for Disaster Management` directory." -msgstr "" -"Mari kita mulai dengan beberapa data pada Kabupaten Sleman yang telah " -"disimbolisasi. Buka sebuah project dengan nama :file:`Chapter_7_Map Composer." -"qgs` yang terletak di direktori :file:`QGIS for Disaster Management` ." - -# a8f9216e83ad4b42aea6850698dad0be -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:35 -msgid "" -"This map shows some familiar layers from the previous module. We have the " -"roads and vegetation of Sleman, along with the three impact zones from a " -"Merapi eruption model." -msgstr "" -"Peta ini menunjukkan beberapa layer yang telah kita gunakan pada bab-bab " -"sebelumnya. Kita memiliki layer jalan dan vegetasi dari Sleman, begitu pula " -"dengan tiga buah zona dampak dari model erupsi Gunung Merapi." - -# eb1cf76f8b084ac7939189cf4f8c9163 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:37 -msgid "" -"Let’s see how we can use Map Composer to adjust the layout and prepare this " -"map for printing." -msgstr "" -"Mari kita lihat bagaimana kita dapat menggunakan Map Composer untuk mengatur " -"layout dan mempersiapkan peta ini untuk dicetak." - -# 945d72b7ae0746e5b75c93b7b82ef04a -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:39 -msgid "" -"Go to :menuselection:`Project ‣ New Print Composer`. Then, give an unique " -"title name for your layout, for example: :kbd:`Sleman`. Click :guilabel:" -"`OK`, then a new window will load that looks like this:" -msgstr "" -"Pergi ke :menuselection:`Project ‣ New Print Composer`. Kemudian, berilah " -"sebuah nama unik untuk layout peta Anda, misalnya :kbd:`Sleman`. Klik :" -"guilabel:`OK`, kemudian jendela baru akan terbuka dan tampak seperti ini:" - -# f06598b895ce4900acc74340dc2d826f -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:44 -msgid "" -"This is the window where you can compose the layout of a map that you want " -"to print. The blank white area is your “canvas”.It is a model of the paper " -"you are going to print out. You can put various elements onto this canvas, " -"such as your map (obviously), a title, scalebar, and legend. These are " -"elements commonly used on printed maps." -msgstr "" -"Ini adalah jendela dimana Anda dapat membuat sebuah layout dari peta yang " -"ingin Anda cetak. Area putih kosong adalah \"kanvas\" Anda. Ini merupakan " -"sebuah model dari kertas yang nantinya akan dicetak. Anda dapat menaruh " -"berbagai macam elemen pada kanvas ini, seperti peta Anda (secara jelas), " -"judul, skala, dan legenda. Inilah elemen-elemen yang biasa digunakan pada " -"peta cetak." - -# e2c4f07482ad49858942cad61121c29e -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:47 -msgid "" -"Take a look at the right panel. In Composition tab, you change paper size, " -"number of pages, and quality of output." -msgstr "" -"Lihat pada panel sebelah kanan. Pada tab :guilabel:`Komposisi`, Anda dapat " -"mengubah ukuran kertas, jumlah halaman, dan kualitas gambar peta. " - -# 09bfda9a429b4e569144d3680027ea2b -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:52 -msgid "" -"Take a look at the icons on the left of the window. We will use some of " -"these as we lay our map out, so here’s an overview of what they do:" -msgstr "" -"Lihatlah pada ikon-ikon yang ada pada bagian kiri jendela. Kita akan " -"menggunakan beberapa ikon ketika melakukan layout peta, jadi inilah garis " -"besar dari apa yang kita lakukan:" - -# 94f2085d917d47769568bfed1a7b1dff -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:55 -msgid "" -"**Add New Map** will add a map element. This is what we will use to add the " -"map from our project into our print layout. It should be noted, however, " -"that if we change the map in our QGIS project, it will not update the same " -"map that we have added to our print composer, as we shall see later." -msgstr "" -"**Tambahkan Peta Baru** akan menambahkann elemen peta. Inilah yang akan kita " -"gunakan untuk menambahkan peta dari proyek kita yang akan kita desain hingga " -"layak untuk dicetak. Perlu diingat, bahwa, jika kita mengubah peta pada " -"projek QGIS kita, maka hasil dari perubahan itu tidak akan memperbaharui " -"peta yang telah kita tambahkan pada print komposer kita, nanti akan kita " -"lihat lebih lanjut." - -# 55bdc3eb433a4c108bd61ad8f56e4058 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:61 -msgid "" -"**Add Image** allows us to add a picture. You can add a company or " -"organisational logo, or simply display images from a particular location. " -"You can also add an image of a compass (to point North)." -msgstr "" -"**Tambahkan Gambar** memungkinkan kita untuk menambahkan gambar. Anda dapat " -"menambahkan logo perusahaan atau organisasi, atau jika Anda hanya ingin " -"menampilkan gambar dari lokasi peta tersebut. Anda juga dapat menampilkan " -"gambar dari sebuah kompas atau arah mata angin (untuk menunjukkan arah " -"Utara)." - -# 6dec62e07f0041efb0e4c5dfa31b9f71 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:66 -msgid "" -"**Add New Label** is used for adding text to the layout, such as titles or " -"other information." -msgstr "" -"**Tambahkan Label Baru** digunakan untuk menambahkan teks pada layout, " -"seperti judul atau informasi lainnya. " - -# 2dbc53c00d21438791c65c626728f761 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:69 -msgid "" -"**Add New Legend** is for adding a legend, which will conform to the active " -"layer in the QGIS window." -msgstr "" -"**Tambahkan Legenda Baru** untuk menambahkan legenda, yang akan dihubungkan " -"dengan layer aktif pada jendela QGIS." - -# 9f4c0c5ac0c54fce8eb0126f95e6c525 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:72 -msgid "**Add New Scalebar** is used to add a scale to the layout." -msgstr "**Tambahkan Skala Bar Baru** untuk menambahkan skala pada layout." - -# 4c175906300a4623a3f4298d50528e26 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:74 -msgid "" -"**Add Ellipse/Triangle/Rectangle** is used to add one of these geometric " -"shapes. For example, this might be used to indicate special areas or " -"highlight things on the map." -msgstr "" -"**Tambahkan Ellips/Segitiga/Persegi Panjang** digunakan untuk menambahkan " -"salah satu dari bentuk geometrik ini. Contohnya, ini bisa digunakan untuk " -"mengindikasikan area-area tertentu atau untuk memberikan *highlight* pada " -"suatu objek pada peta." - -# b2e28a5caafa4141b840423c862b3c59 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:79 -msgid "**Add Arrow** is used to draw an arrow on the map layout." -msgstr "" -"**Tambah Panah** digunakan untuk menggambar sebuah panah pada layout peta." - -# bd36208322004c2c831fe596d7b61d55 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:81 -msgid "" -"**Select / Move Item** allows us to choose and move the elements that are in " -"the map layout. With this tool selected, you can right-click on an element " -"to lock its position." -msgstr "" -"**Pilih / Pindahkan Item** untuk memilih atau memindahkan elemen yang ada " -"pada layout peta. Dangan tool ini, Anda dapat melakukan klik kanan pada " -"sebuah elemen untuk mengunci posisi elemen tersebut." - -# 351ef7de74734085a2fa9695e58a2323 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:88 -msgid "7.2 Adding a New Map" -msgstr "7.2 Menambahkan Peta Baru" - -# ec169a7b164c47898f753370b2f5da28 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:90 -msgid "" -"In the Print Composer window, click on the :guilabel:`Add new map` button." -msgstr "" -"Pada jendela Print Komposer, klik pada ikon :guilabel:`Tambahkan peta baru`." - -# c94d75eb367445eba1d8e96f42a89829 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:96 -msgid "Next, click and drag your mouse across the canvas, creating a box." -msgstr "" -"Berikutnya, klik dan geser mouse pada kanvas untuk membuat sebuah kotak." - -# 7750223794ae47cd88ac7f2805ec5baa -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:96 -msgid "Your map layout should look similar to this when you are done:" -msgstr "" -"Layout peta Anda seharusnya terlihat seperti ini ketika Anda sudah selesai:" - -# 1d7802cb69074e3f91d64f3cb48f36a0 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:101 -msgid "" -"If you are not happy with the placement of your map, you can drag the " -"corners to change the size, or drag the entire element around the canvas." -msgstr "" -"Jika Anda tidak senang dengan penempatan dari peta Anda, Anda dapat " -"menggeser ujung-ujungnya untuk mengubah ukuran, atau geser seluruh elemen di " -"sekitar kanvas." - -# 2e5e0f1a0e944572b6eb635beefd65b4 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:103 -msgid "" -"Once you are happy set the scale of your map by going to the :guilabel:`Item " -"Properties` tab on the right panel." -msgstr "" -"Setelah Anda puas, silahkan atur skala peta Anda dengan pergi ke tab :" -"guilabel:`Properti Item` pada panel sebelah kanan." - -# 9ed8bd026d1e48b393dac68491c03de1 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:108 -msgid "" -"Edit the Scale and press :kbd:`Enter`. You’ll see that the scale (zoom " -"level) of the map element changes. A scale of about 200000 should be good " -"for this project." -msgstr "" -"Edit Skala dan tekan :kbd:`Enter`. Anda akan melihat skala (tingkat " -"perbesaran) dari perubahan elemen peta. Skala sebesar 200000 tampaknya sudah " -"cukup untuk proyek ini." - -# be185f4e1e5243e19d5bcacbe7c32a0c -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:110 -msgid "" -"Add a frame clicking the box next to :guilabel:`Frame`. Configure the frame " -"color and border thickness." -msgstr "" -"Tambahkan sebuah bingkai dengan mengklik pada kotak di samping :guilabel:" -"`Frame`. Ubah warna bingkai dan ketebalan garisnya." - -# 522e5e2121a24c879381a10a086a2eef -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:116 -msgid "" -"When you change the scale some parts of your map may become invisible. Click " -"on the :guilabel:`Move item content` button and drag the map so that it is " -"all visible." -msgstr "" -"Ketika Anda mengubah skala, beberapa bagian peta Anda akan menghilang. Klik " -"pada tombol :guilabel:`Pindahkan Konten Item` dan geser peta sehingga " -"seluruhnya terlihat." - -# f0aeb75a849447e992309b48d1c5f753 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:123 -msgid "7.3 Adding a Title" -msgstr "7.3 Menambahkan Judul" - -# 18870da7954543129e01163e64f335ab -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:125 -msgid "" -"Now we’ve got the most important thing added to our map layout - the map! " -"But let’s add some additional elements to make it more informative." -msgstr "" -"Sekarang kita telah memasukkan hal paling penting yang ingin kita tambahkan " -"pada layout peta kita - peta! Tetapi mari kita tambahkan beberapa elemen " -"tambahan untuk membuat peta ini lebih informatif. " - -# 7c697b55c15146d59ceb864a832793a8 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:127 -msgid "" -"Let’s add a title to our map. Click on the :guilabel:`Add new label` button." -msgstr "" -"Mari menambahkan judul pada peta kita. Klik pada tombol :guilabel:" -"`Tambahkan label baru`" - -# 29a67bbd800241ce9e07c2432bfb5785 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:132 -msgid "" -"Adjust the size of the element. We will edit the text and the text " -"properties in the panel on the right." -msgstr "" -"Sesuaikan ukuran dari elemen. Kita akan mengedit teks dan pengaturan teks " -"terdapat pada panel di sebelah kanan." - -# 9392827f204a4020bca0c8868e1b927a -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:134 -msgid "" -"Click the :guilabel:`Font` button and change the text size to 18 and make it " -"bold. Change the aligment to :guilabel:`Center`. Lastly, add the following " -"text, or create your own:" -msgstr "" -"Klik pada tombol :guilabel:`Huruf` dan ubah ukuran huruf menjadi 18 dan buat " -"menjadi tebal. Ubah penjajaran teks menjadi :guilabel:`Tengah`. Terakhir, " -"tambahkan teks berikut ini, atau buat teks Anda sendiri:" - -# 3cfa7751004e42be8fc03d47bd67a2e4 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:143 -msgid "Your map layout should now look similar to this:" -msgstr "Layout peta Anda akan tampak seperti ini:" - -# 963226199c074165b6e8a12f7c0abecc -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:150 -msgid "7.4 Adding a Scale Bar" -msgstr "7.4 Menambahkan Skala Bar" - -# b4dfcf261ad54a3e8829c8bee4fefcb3 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:152 -msgid "" -"Let’s add a scale bar, so that anyone who looks at our map will have an idea " -"what size area this map shows." -msgstr "" -"Mari menambahkan skala bar agar siapapun yang melihat peta kita dapat " -"memperkirakan ukuran area yang ditunjukkan pada peta ini." - -# 12542969f5e94d4b8946be9e9358942b -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:154 -msgid "Click on the :guilabel:`Add scale bar` button." -msgstr "Klik pada tombol :guilabel:`Tambahkan skala bar baru`" - -# 7e936c63168f44d6b5f0c035b254869e -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:159 -msgid "" -"Draw the new scalebar element on your map. A good location for it is in the " -"lower left corner of your map layout." -msgstr "" -"Gambarkan elemen skala bar baru pada peta Anda. Lokasi yang tepat untuk " -"menggambarnya adalah di sebelah pojok kiri dari *layout* peta" - -# 9170e42e527f4f4d9d2f1340f970f7cc -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:161 -msgid "" -"Next we need adjust the scalebar options. Since our project is in a PCS " -"(Projected Coordinate System), our measurements are in meters. Enter the " -"following values in the scalebar options:" -msgstr "" -"Berikutnya kita perlu menyesuaikan pilihan skala. Karena proyek kita " -"menggunakan PCS (Projected Coordinate System), maka pengukuran kita dalam " -"meter. Masukkan nilai berikut ini pada pilihan skala:" - -# b2465c49b46347ad9793c3b591d31be9 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:166 -msgid "This should result in a scalebar that looks like this:" -msgstr "Nantinya akan muncul sebuah skala bar yang tampak seperti ini:" - -# 50f2e5a8a64a4512a84ef614763d43fc -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:173 -msgid "7.5 Creating a Grid" -msgstr "7.5 Menambahkan Grid" - -# e954515a915c4aaea0f629eee9ab019f -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:175 -msgid "Now let’s create a grid for our map." -msgstr "Sekarang mari kita buat sebuah grid untuk peta Anda." - -# 7704b451c40e426085e64b8ffca14769 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:177 -msgid "Choose the :guilabel:`Select` tool and click on the map." -msgstr "Pilih pada tool :guilabel:`Pilih/pindahkan item` dan klik pada peta." - -# 6e6e3571419548e1a00775237fe1cbb6 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:182 -msgid "" -"In the panel on the right you should see the word :guilabel:`Grid`. Click on " -"it." -msgstr "" -"Pada panel di sebelah kanan Anda akan melihat :guilabel:`Grid`, kemudian " -"klik." - -# d906c7ebafc1417bbce481936b518821 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:184 -msgid "Click on the box + and enter the following values:" -msgstr "Klik pada kotak :guilabel:`+` dan masukkan seperti dibawah ini:" - -# 2322a75ac71640aa80c7305bf6feb124 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:189 -msgid "" -"We used coordinate reference systems with UTM (metre) on the project QGIS " -"and all map layers." -msgstr "" -"Kita menggunakan sistem koordinat dengan UTM (meter) pada proyek QGIS dan " -"semua layer peta." - -# 098a60496c1f47bbba0311c20303f5be -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:191 -msgid "" -"Scrool down :guilabel:`Item Properties` dialog and Check the box next to :" -"guilabel:`Draw Coordinates` and enter the following values:" -msgstr "" -"Gulir ke bawah pada dialog :guilabel:`Propeti Item` dan beri tanda centang " -"pada :guilabel:`Gambar koordinat` dan masukkan nilai seperti berikut ini:" - -# dfa297be7cb242529997a4c26aeaaa9f -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:196 -msgid "" -"Your map should now have a grid appear over it, which will look something " -"like this:" -msgstr "" -"Peta Anda saat ini seharusnya sudah memiliki grid yang muncul di atasnya, " -"akan muncul seperti ini:" - -# aa9c380ad69a483fbd160683d0b066ae -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:203 -msgid "Tips:" -msgstr "Tips:" - -# aeee591616bf401da37d1774b17510ee -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:205 -msgid "" -"Play around a little bit with coordinate format. You can change decimal " -"degree as the coordinate fromat or change it into Degree Minute format (DD " -"MM) or Degree Minute Second (DD MM SS)." -msgstr "" -"Coba berlatih dengan format koordinat. Anda dapat mengubah format koordinat " -"*decimal degree* atau mengubahnya ke dalam format *Degree Minute* (DD MM) " -"atau *Degree Minute Second* (DD MM SS)." - -# 275577fa86db43c085e34399cb7e8f45 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:207 -msgid "" -"You can also adjust the coordinate placement. You can place the text inside " -"or outside the frame, and make the orientation either vertical or horizontal." -msgstr "" -"Anda juga dapat menyesuaikan penempatan koordinat. Anda dapat meletakkan " -"teksnya di bagian dalam atau luar dari bingkai, dan mengubah orientasi peta " -"menjadi vertikal atau horizontal." - -# 4b4c0578ed0f4fbb9b517397ea715ba4 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:209 -msgid "" -"Change the font type and font size by clicking :guilabel:`Font` in the panel." -msgstr "" -"Ubah tipe huruf dan ukurannya dengan cara klik pada :guilabel:`Huruf` pada " -"panel." - -# c555647988354764a68b08e013e6244f -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:213 -msgid "7.6 Overview Inset" -msgstr "7.6 Gambaran Inset" - -# bcef0757700c4cb8a40646ed035d8995 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:215 -msgid "" -"Next, let’s add an inset that gives viewers of our map a little more " -"information about what they are looking at." -msgstr "" -"Berikutnya, mari kita tambahkan sebuah inset yang dapat memberi pengguna " -"sedikit informasi mengenai apa yang mereka lihat pada peta." - -# 77cbb28d209243428a0100649a15f404 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:217 -msgid "Click on the Map and go to :guilabel:`Item` tab." -msgstr "Klik pada peta dan pergi ke tab :guilabel:`Item`." - -# 4358bd4392fb495fb3e5887177d4bec2 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:219 -msgid "Check the box next to Map 0 item to lock the item." -msgstr "Centang kotak di sebelah :guilabel:`Peta 0` untuk mengunci item." - -# 64cede4e44a642338dc2fd4d49493d5e -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:224 -msgid "Minimize the Print Composer and go back into QGIS." -msgstr "Perkecil jendela :guilabel:`Print Composer` dan kembali ke QGIS." - -# 5f880af35b524ecd9bc11b8ae9f0c01a -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:226 -msgid "" -"Add the layer :guilabel:`Indonesia.shp`, which is located in **qgis/" -"peta\\_dunia**. Cllick :guilabel:`Zoom Full`." -msgstr "" -"Tambahkan layer :file:`Indonesia.shp`, yang terletak pada folder :file:`../" -"qgis/peta_dunia`. Klik :guilabel:`Zoom Full`. " - -# 98cc4368121e4b3eadfffba22fdf7efa -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:231 -msgid "The new layer will load." -msgstr "Anda akan melihat sebuah layer baru akan dimasukkan." - -# 95562374f4d44b5d8a8bb1a279e08908 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:236 -msgid "" -"Return to the Map Composer and create a new map with the :guilabel:`Add new " -"map` button." -msgstr "" -"Kembali ke Map Composer dan buat sebuah peta baru dengan tombol :guilabel:" -"`Tambahkan Peta Baru`." - -# 9eb82305815a445c9b82e27dea29d66d -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:241 -msgid "Draw a small box on the right side of your map layout." -msgstr "Gambar sebuah kotak kecil pada sisi kanan dari layout peta Anda." - -# 5e5c3db0c0bc4979876ff5c097f10132 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:243 -msgid "" -"7. The current view of your QGIS project will appear in the new map element " -"(but notice that the old map element doesn’t change. It’s because we locked " -"the Map 0 in :guilabel:`Item` tab). Add a frame for the inset, so it will " -"look like this:" -msgstr "" -"7. Tampilan saat ini dari proyek QGIS akan muncul pada elemen peta yang baru " -"(namun perhatikan elemen yang lama tidak berubah. Hal ini karena kita telah " -"mengunci Peta 0 tab :guilabel:`Item`). Tambahkan sebuah bingkai untuk inset, " -"sehingga akan terlihat seperti ini:" - -# 6f41904df71b46c59e0fa485b593f68b -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:251 -msgid "7.7 Adding a Legend" -msgstr "7.7 Menambahkan Legenda" - -# 434f33a39a13462b87b6fb18c916d784 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:253 -msgid "" -"Now let’s add a legend so that viewers of our map will know what our " -"symbology represents." -msgstr "" -"Sekarang mari kita tambahkan sebuah legenda sehingga pembaca peta Anda akan " -"mengetahui apa saja yang diwakili oleh simbol-simbol tersebut." - -# cc73008255b741efa1972a2d04c037c8 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:255 -msgid "Click on the :guilabel:`Add legend` button." -msgstr "Klik pada tombol :guilabel:`Tambahkan legenda baru`." - -# 94560aebf59343838daab691ce93712e -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:260 -msgid "" -"Draw a box in the remaining empty space on your map layout. You will see a " -"legend with symbologies shown in a list." -msgstr "" -"Gambarkan sebuah kotak pada tempat kosong yang tersisa pada layout peta " -"Anda. Anda akan melihat sebuah legenda dengan simbologinya yang ditampilkan " -"pada sebuah daftar." - -# 56573e23eaca4aafa326bde9ca8b7ea5 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:262 -msgid "" -"3. In the panel on the right, click on :guilabel:`Legend items`. Uncheck :" -"guilabel:`Auto update` and use the edit button to change the names on the " -"legend. Use the :kbd:`+` and :kbd:`-` buttons to add or remove items from " -"the legend. Choose which elements are important to include." -msgstr "" -"3. Pada panel di sebelah kanan, klik pada :guilabel:`Item Legenda`. " -"Hilangkan :guilabel:`Perbarui otomatis` dan menggunakan tombol edit untuk " -"mengubah nama pada legenda. Gunakan tombol :kbd:`+` dan :kbd:`-` untuk " -"menambahkan atau menghapus item dari legenda. Pilih elemen penting untuk " -"dimasukkan." - -# 027f901e0e44452eaba6674e8baf998d -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:268 -msgid "Our legend look like this:" -msgstr "Legenda yang kita buat akan tampil seperti ini:" - -# e3e48782ff564808a087df741a6a7a8f -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:273 -msgid "When you are finished, your map layout should look similiar to this:" -msgstr "Ketika Anda sudah selesai, layout peta Anda akan tampak seperti ini:" - -# fa957116383b4978bb89a772540f156f -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:279 -msgid "" -"For save your map composer that you created, you can click on the :" -"menuselection:`Composer > Save Project`.So if you open the project QGIS and " -"you want use map composer that you saved, click on :menuselection:`Project > " -"Print Composer > My Layout 1`" -msgstr "" -"Untuk menyimpan *map composer* yang telah dibuat, Anda dapat klik pada :" -"menuselection:`Composer > Simpan Proyek`. Jika Anda buka proyek QGIS dan " -"Anda ingin menggunakan *map composer* yang Anda simpan, klik pada :" -"menuselection:`Project > Print Composer > Layout Saya 1`." - -# 870fcd7f27ff4a9798dd63193d2c8dad -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:283 -msgid "7.8 Printing the Map" -msgstr "7.8 Mencetak Peta" - -# e08f87ec51954d939961891d54b48563 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:285 -msgid "" -"Lastly, you can print your map. Simply click the :guilabel:`Print` button " -"and follow the dialog." -msgstr "" -"Yang terakhir, kita dapat mencetak peta tersebut. Klik pada tombol :guilabel:" -"`Cetak` dan ikuti instruksi selanjutnya." - -# 600663e8aca74a8cb992fa38c9a7f97a -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:290 -msgid "You may also save the map as PNG image." -msgstr "Anda juga dapat menyimpan petanya sebagai gambar PNG." - -# ced815bf2d66424e89d9d4fee6408013 -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:295 -msgid "" -"Additionally you can save the map as a PDF, which you can easily send over " -"email or print later when you have a chance." -msgstr "" -"Sebagai tambahan Anda dapat menyimpan peta yang Anda buat dalam format PDF, " -"yang nantinya dapat dengan mudah Anda kirim melalui email atau ingin Anda " -"cetak di kemudian hari." - -# abcdf141290a4237831e54b01b32151e -#: ../../source/training/qgis/Chapter-07-Using_Map_Composer.rst:300 -msgid ":ref:`Go to next chapter --> `" -msgstr ":ref:`Pergi ke modul selanjutnya --> `" diff --git a/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-08-Using_InaSAFE.po b/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-08-Using_InaSAFE.po deleted file mode 100644 index d924c698..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/qgis/Chapter-08-Using_InaSAFE.po +++ /dev/null @@ -1,1403 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# e0934c9e746c4c80854c0c3481043d2d -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:6 -msgid "Chapter 8: Using InaSAFE" -msgstr "Bab 8 Menggunakan InaSAFE" - -# 6a43e49e7f844da0a3b31d0ba4167cb4 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:8 -msgid "**Learning Objectives**" -msgstr "**Tujuan Pembelajaran**" - -# 863bfa89e4634227af8d76b6b8f522c3 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:10 -msgid "Understand Hazard, Exposure and Impact" -msgstr "Mengerti Ancaman, Paparan dan Dampak" - -# 8b68d36545a945c7a15e2c8c259b935f -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:11 -msgid "Learn InaSAFE interface" -msgstr "Mengerti tampilan antarmuka InaSAFE" - -# a0da77c6e77d4dd6b809f78889705fb3 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:12 -msgid "Run InaSAFE for Infrastructure" -msgstr "Menjalankan InaSAFE untuk infrastruktur" - -# 6ed76ded86cf4fdb88d6c6c776b41215 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:13 -msgid "Use InaSAFE OpenStreetMap downloader" -msgstr "Menggunakan InaSAFE OpenStreetMap downloader" - -# b12d99d86b1d4c0c99f3acec6df9336a -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:14 -msgid "Add keyword metadata" -msgstr "Menambahkan kata kunci metadata" - -# 59fcb9234237423ea0ab2d58b4801cb0 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:15 -msgid "Set outline impact analysis" -msgstr "Menetapkan batasan analisis dampak" - -# af6a8eca81b440359814af047f063611 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:16 -msgid "Run InaSAFE for Population" -msgstr "Menjalankan InaSAFE untuk Populasi" - -# c4cc23d7d2d24f38bc60296b03a7d73b -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:17 -msgid "Use aggregation layer" -msgstr "Menggunakan layer agregasi" - -# d74f973bf8c04d52b261893640d72d41 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:18 -msgid "Customize minimum needs" -msgstr "Mengatur kebutuhan minimum" - -# e8864d6adde74d9c8632e94fb767bf24 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:19 -msgid "Print InaSAFE Result" -msgstr "Mencetak Hasil InaSAFE" - -# f1a6997a0bc748a49ae6e11c805d831b -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:20 -msgid "Save Impact Result data into new layer" -msgstr "Menyimpan data Hasil Dampak menjadi layer baru" - -# ce3972d82a7c439fbac0060b8658da01 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:22 -msgid "" -"InaSAFE provides overviews of potential disaster scenarios, of their " -"outcomes, as well as map which can aid decision makers when disaster " -"strikes. In this chapter we will learn about how to use InaSAFE along with " -"other usefull features in InaSAFE for flood hazard scenario. If you interest " -"to learn more about InaSAFE with other hazard beside flood, you go and learn " -"in `InaSAFE website `_." -msgstr "" -"InaSAFE menyediakan gambaran umum dari skenario bencana potensial, berupa " -"dampak bencana tersebut dan juga peta yang dapat membantu pembuat keputusan " -"ketika bencana tersebut terjadi. Dalam bab ini kita akan mempelajari tentang " -"bagaimana menggunakan InaSAFE dengan berbagai macam fitur bermanfaat di " -"dalamnya untuk skenario ancaman banjir. Jika Anda tertarik untuk mempelajari " -"lebih lanjut tentang InaSAFE terhadap ancaman yang lain selain banjir, " -"Silahkan anda lihat di `Situs InaSAFE `_." - -# e762677092844199a1e05fdc695adcca -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:29 -msgid "8.1 Hazards, Exposure and Impact" -msgstr "8.1 Ancaman, Keterpaparan dan Dampak" - -# 9c07df0acfda47f2ae05c17e3e617713 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:31 -msgid "" -"Let’s begin by reviewing the inputs and outputs of InaSAFE – **hazard**; " -"**exposure**; and **impact**. These terms are important for you to remember " -"because the analysis process depend on these three things." -msgstr "" -"Mari kita mulai dengan mengingat kembali data yang kita masukkan dan hasil " -"yang dikeluarkan dari InaSAFE - **ancaman**; **keterpaparan**; and " -"**dampak**. Ketiga hal ini penting untuk diingat karena proses analisis " -"InaSAFE akan sangat bergantung pada ketiga hal ini." - -# 6bf6484971344761b4149388734c55a3 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:35 -msgid "" -"**Hazards** (also called disasters) are what we call the data layers that " -"describe the extent and magnitude of natural events (such as earthquakes, " -"tsunamis, volcanic eruptions) that could potentially cause an event or " -"series of events that threaten and disrupt the lives and livelihoods of " -"people." -msgstr "" -"**Ancaman** (dikenal juga dengan bencana) adalah sebuah data layer yang " -"menjelaskan gambaran dan besaran dari suatu kejadian alam (seperti gempa, " -"tsunami, letusan gunung berapi) yang berpotensi menyebabkan suatu kejadian " -"atau rangkaian kejadian yang mengancam dan mengganggu kehidupan manusia." - -# 5788f342046649a8a89fcebe7173c848 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:40 -msgid "" -"In general, the hazards data we use in InaSAFE represents a single hazard " -"scenario. A scenario means that the hazard:" -msgstr "" -"Secara umum, data ancaman yang kita gunakan di InaSAFE mewakili satu " -"skenario ancaman. Skenario ancaman tersebut maksudnya bahwa ancaman:" - -# ee970ca1500344e48a235059163729bc -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:43 -msgid "is at a particular location" -msgstr "berada di lokasi tertentu" - -# 6a27f76b8ba4474f9f8623e494c323ad -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:44 -msgid "has a measured intensity" -msgstr "memiliki intensitas yang bisa diukur" - -# d9ce220965de46ac819c74b6e85762ec -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:45 -msgid "has a measured duration" -msgstr "memiliki durasi yang bisa diukur" - -# 892e876531d746a19da3feba0d1059e1 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:46 -msgid "has a certain time frame" -msgstr "memiliki kurun waktu tertentu" - -# 8617209e7a4540969347140537850b70 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:48 -msgid "" -"**Exposure** data represents things that are at risk when faced with a " -"potential hazard. This can be man-made features such as public buildings, " -"houses, roads and bridges, or it can be so-called natural features, such as " -"population, rice paddies and lakes. These exposed elements can be divided " -"into various categories, including physical elements (houses, power lines), " -"economic elements (agricultural land, access to employment), social elements " -"(vulnerable groups, population count), and environmental elements (air, " -"water, plants and animals)." -msgstr "" -"Data **Paparan** menggambarkan sesuatu yang beresiko jika berhadapan dengan " -"potensi ancaman. Ini bisa berupa sebuah hasil karya manusia seperti bangunan " -"umum, rumah, jalan dan jembatan, atau bisa berupa fitur natural seperti " -"populasi, padi dan danau. Elemen yang terpaparkan ini bisa dibagi kedalam " -"beberapa kategori, termasuk elemen fisik (rumah, kabel listrik), elemen " -"ekonomi (kebun, dan akses ke pekerja), elemen sosial (kelompok rentan dan " -"kepadatan populasi) dan elemen lingkungan (air, udara, tanaman dan binatang)." - -# 66c515711b53433c9bfe132de2028dbb -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:56 -msgid "" -"**Impact** is the result we get after InaSAFE processes the effect of the " -"hazard data upon the exposure data. For example, if there is an earthquake " -"model in Lembang, and we process it against building data in Bandung, our " -"impact layer may show those houses that would be severely damaged, those " -"somewhat damaged, and those mildly damaged. In other words, what goes in to " -"InaSAFE are hazards and exposure. What comes out is impact." -msgstr "" -"**Dampak** merupakan hasil yang kita dapatkan setelah InaSAFE memproses data " -"ancaman dan data keterpaparan. Sebagai contoh, jika terdapat model gempa " -"bumi di Lembang dan kita memproses bersama dengan data bangunan di Bandung, " -"hasil layer dampak akan menunjukkan bangunan yang mungkin akan terkena " -"dampak dari gempa bumi beserta dengan tingkat kerusakannya yaitu parah, " -"medium, dan ringan. Dengan kata lain, apa yang dimasukkan dan diproses di " -"InaSAFE adalah ancaman dan keterpaparan. Kemudian, Apa yang dihasilkan oleh " -"proses itu disebut dengan dampak." - -# 7ca918d31348404693ba657b2ea41def -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:63 -msgid "8.2 The InaSAFE Interface" -msgstr "8.2 Tampilan Antarmuka InaSAFE" - -# 029a15cfdf5c4ad8bb218985c6dc950c -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:65 -msgid "" -"Before we run any scenarios, let’s take a closer look at the InaSAFE " -"interface." -msgstr "" -"Sebelum kita mulai menjalankan skenario, mari lihat lebih dekat tampilan " -"antarmuka dari InaSAFE." - -# 942fe841940d45b9bba082344fde3a24 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:67 -msgid "" -"First, make sure you’ve installed the InaSAFE plugins. Follow the plugin " -"instructions in :ref:`chapter 3 `. Find and install the " -"plugin called InaSAFE." -msgstr "" -"Pertama, pastikan anda sudah menginstal plugin InaSAFE. Ikuti petunjuk yang " -"dijelaskan di :ref:`Bab 3 `. Temukan dan Install plugin " -"yang bernama InaSAFE." - -# 41a498a020014dd9a5bb5e7190fd0335 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:70 -msgid "Open a new project in QGIS." -msgstr "Buka proyek di QGIS." - -# 67b5e2d2968d4dde9840de5dbf46dd32 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:72 -msgid "" -"If the InaSAFE toolbar is not visible, right-click on the toolbars and make " -"sure that :guilabel:`InaSAFE` plugin is checked. The toolbar looks like this:" -msgstr "" -"Jika toolbar InaSAFE tidak terlihat, klik kanan pada toolbar dan pastikan " -"plugin :guilabel:`InaSAFE` telah tercentang. Tampilan toolbar akan terlihat " -"seperti ini:" - -# 3de4eb85f17b4f55b53431d30d2bdc1d -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:78 -msgid "" -"To show the InaSAFE panel, click on the :guilabel:`Toggle InaSAFE dock` " -"button." -msgstr "" -"Untuk menampilkan panel InaSAFE, klik pada tombol :guilabel:`Toggle InaSAFE " -"dock`." - -# 2f0f82b3ac414a9fb8c43071072ce5b5 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:83 -msgid "" -"Just like QGIS toolbars, you can drag and drop the InaSAFE dock panel to " -"change its position on the QGIS interface. You can pull it away as a " -"separate window, or place it below the Layers panel. It’s convenient in its " -"location on the right side of QGIS, so we will leave it there." -msgstr "" -"Seperti toolbar QGIS, Anda dapat menggeser jendela panel InaSAFE untuk " -"mengganti posisinya dari tampilan antarmuka QGIS. Anda dapat menariknya " -"menjadi sebuah jendela terpisah, atau meletakkannya dibawah panel daftar " -"layer. Tampilan awalnya berada di sebelah kanan dari QGIS, jadi jika Anda " -"tidak ingin mengubahnya, biarkan seperti itu." - -# c1e343b43e5448d19bfc16d5ef1d7894 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:91 -msgid "" -"The InaSAFE panel consists of three parts: Questions, Results and Buttons. " -"The questions are mixed in with dropdown boxes - this is where we establish " -"our input data and define the scenario that we want InaSAFE to process. The " -"purpose of InaSAFE is to make your impact analysis very simple and easy to " -"do. The Questions section provides a simple way for you to formulate what " -"you want to know. All questions are created in the following format:" -msgstr "" -"Tampilan jendela panel InaSAFE terdiri dari tiga bagian: Pertanyaan, Hasil, " -"dan Tombol. Pertanyaan dibuat menjadi kotak tombol daftar pilihan kebawah – " -"dimana disini kita menentukan data yang ingin kita masukkan dan menentukan " -"skenario apa yang kita inginkan untuk diproses oleh InaSAFE. Tujuan InaSAFE " -"adalah membuat proses analisis dampak yang anda lakukan bisa menjadi " -"sederhana dan mudah digunakan. Bagian pertanyaan menyajikan cara mudah untuk " -"memformulasikan apa yang ingin Anda ketahui. Semua pertanyaan dibuat dalam " -"format:" - -# d661a151fdd04ada9ec50c2540facae0 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:97 -msgid "In the event of [**hazard**] how many [**exposure**] will be affected?" -msgstr "" -"*Pada kejadian [**ancaman**] berapa banyak [**keterpaparan**] yang mungkin " -"terdampak?" - -# 74e21b9f26944a60b7d9442eecff843c -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:99 -msgid "" -"For example: \"In the event of an earthquake how many buildings will be " -"affected?\"" -msgstr "" -"Sebagai contoh:”Pada kejadian gempa bumi berapa banyak bangunan yang mungkin " -"rusak?”" - -# 66c7096964ea4be89ed6ed6ded78e4c9 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:101 -msgid "" -"The Results section is filled in with information after InaSAFE is run, as " -"we shall see. The buttons at the bottom allow us to run a scenario, print " -"and access help." -msgstr "" -"Bagian hasil akan diisi dengan beberapa informasi setelah InaSAFE berhasil " -"dijalankan, seperti yang akan kita lihat. Tombol-tombol di bagian bawah " -"memungkinkan kita untuk menjalankan skenario, mencetak hasil dan mengakses " -"ke bantuan." - -# cc0ffdd6c967404f8b5a9236801f782a -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:105 -msgid "8.3 Run InaSAFE for Infrastructure" -msgstr "8.3 Menjalankan InaSAFE untuk Infrastruktur" - -# 7bf4196fb9cc420e84e900b52b30664c -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:108 -msgid "8.3.1 Adding Hazard Data" -msgstr "8.3.1 Menambahkan Data Ancaman" - -# 0de49bb34360427d9a3ccf6e0bd84177 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:110 -msgid "" -"We will learn about how to use InaSAFE to run impact scenario based on " -"Infrastructure data. Before we start, let's find out how to add hazard data " -"first. Hazards can be represented by vector layers or by raster layers. " -"Remember that raster layers are like images with many pixels, and each pixel " -"represents some data about an area on the ground. A raster that shows " -"elevation, for example, will contain pixels with different values based on " -"the altitude of the location. Similarly, a raster that represents a flood " -"will contain the depth of the flood in every pixel in the raster." -msgstr "" -"Kita akan mempelajari bagaimana menggunakan InaSAFE untuk menghitung " -"skenario dampak berdasarkan data-data infrastruktur. Sebelum kita mulai " -"menghitung, mari mempelajari cara menambahkan data ancaman. Ancaman dapat " -"berbentuk layer vektor atau layer raster. Ingat bahwa layer raster itu " -"seperti sebuah foto dimana terdiri dari piksel-piksel dan masing-masing " -"piksel mewakili informasi data tertentu di suatu area. Misalnya sebuah layer " -"raster dapat menunjukkan ketinggian, sebagai contoh, masing-masing piksel " -"memiliki nilai-nilai yang berbeda berdasarkan ketinggian lokasinya. Begitu " -"juga bahwa sebuah raster yang menggambarkan suatu kejadian banjir di suatu " -"area akan memiliki ketinggian banjir yang berbeda-beda di masing-masing " -"pikselnya." - -# aa364b7ac05e49f9acf233755fd09768 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:118 -msgid "" -"Let’s begin by adding our hazard layer to QGIS. It’s a raster model of flood " -"in Jakarta." -msgstr "" -"Mari kita mulai dengan menambahkan layer ancaman ke dalam QGIS. Layer " -"ancaman ini merupakan data raster dari Banjir di Jakarta." - -# f7020fa33c8a4bddadb3ae93a548e998 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:120 -msgid "Click the :guilabel:`Add Raster Layer` button." -msgstr "Klik tombol :guilabel:`Add Raster Layer`." - -# d1b3ac7bcbdf4430b7f81e465e3f42f4 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:125 -msgid "" -"Open :file:`Jakarta_Flood_HKV_WGS84.tif`. This data is raster data (in .tif " -"format) which represents the flood prone area. The layer will look like this:" -msgstr "" -"Buka :file:`Jakarta_Flood_HKV_WGS84.tif`. Data raster ini (dalam format ." -"tif) menggambarkan area banjir. Layer ancaman tersebut akan terlihat seperti " -"berikut: " - -# de785c5b329241fcae9d648fa81c51d2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:131 -msgid "" -"You will notice that the hazard drop-down box has been automatically filled " -"in the InaSAFE panel. This is because the data file has already been " -"prepared for us with keyword metadata (fancy words for settings) that tells " -"InaSAFE whether it’s a hazard or exposure layer. When we add the exposure " -"data, we will learn how to add these InaSAFE keywords ourselves." -msgstr "" -"Anda akan melihat bahwa kotak daftar isian ancaman telah otomatis terisi di " -"panel InaSAFE. Hal ini terjadi karena file data yang digunakan sudah " -"memiliki metadata kata kunci (kata lain untuk pengaturan) yang memberitahu " -"InaSAFE jenis layer tersebut apakah itu layer ancaman atau layer " -"keterpaparan. Ketika kita menambahkan data keterpaparan, kita akan " -"mempelajari bagaimana untuk memberikan kata kunci secara sendiri di InaSAFE." - -# 6610c406133347948bd5cf54faf3bcbc -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:137 -msgid "8.3.2 Adding Exposure Data" -msgstr "8.3.2 Menambahkan Data Keterpaparan" - -# f0d3c044f0f541cb9189c281e3f516f4 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:139 -msgid "" -"We can get the data from OpenStreetMap using OpenStreetMap Downloader. We " -"will get any OpenStreetMap data based on the current map extent in QGIS. If " -"your map extent displaying Indonesia, that will take a while to download it " -"since there will be a whole lot of OpenStreetMap data. It would be better to " -"zoom in in specific location to minimize the bandwidth. Let’s learn how to " -"use OpenStreetMap Downloader in QGIS to get OpenStreetMap data." -msgstr "" -"Kita dapat mendapatkan data dari OpenStreetMap menggunakan OpenStreetMap " -"Downloader. Kita akan mendapatkan data OpenStreetMap berdasarkan luasan peta " -"yang tampil di QGIS. Jika luas area peta di QGIS anda menampilkan seluruh " -"Indonesia, maka akan membutuhkan waktu yang sangat lama untuk mendownload " -"datanya dan juga tergantung dari koneksi internet anda. Lebih baik jika anda " -"memperbesar ke lokasi spesifik untuk mengurangi beban download anda. Mari " -"mempelajari bagaimana menggunakan OpenStreetMap Downloader untuk mendapatkan " -"data OpenStreetMap." - -# d96dfc29f9754c65ad86ff7746d10d21 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:145 -msgid "Click on :guilabel:`OpenStreetMap Downloader` button." -msgstr "Klik tombol :guilabel:`OpenStreetMap Downloader`." - -# fad061036e9449b698b720c6dcc3adcc -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:150 -msgid "" -"In the *Feature Types* you can choose all the OpenStreetMap data or specific " -"data that you want download such as :guilabel:`building polygons` and :" -"guilabel:`Roads`. Also you can download :guilabel:`political boundaries` and " -"select level administration in your area such as RW Jakarta is level 8." -msgstr "" -"Di *Feature Types* anda dapat memilih semua bentuk data OpenStreetMap atau " -"data tertentu yang ingin anda download seperti :guilabel:`building polygons` " -"dan :guilabel:`Roads`. Anda juga dapat mendownload :guilabel:`political " -"boundaries` dan memilih tingkat administrasi yang anda inginkan seperti " -"tingkat administrasi RW di Jakarta adalah level 8." - -# dfdbf074c8ca40a7bd9c1e9cd3879c22 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:155 -msgid "" -"Set you *output directory* to the destination you want by clicking “…” " -"button on the right side." -msgstr "" -"Atur tujuan *output directory* anda untuk menyimpan hasilnya dengan klik " -"tombol “…” di sisi sebelah kanan." - -# 49e36c56d3114227b464e3d13aef470e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:160 -msgid "" -"If you want to use some prefix, for example :kbd:`jakarta` you can type in :" -"guilabel:`File name prefix` area." -msgstr "" -"Jika anda ingin menggunakan prefix, sebagai contoh :kbd:`jakarta` maka anda " -"dapat ketik di area :guilabel:`File name prefix` " - -# 45e5a6799a194a15a02b2cf3d83628a4 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:163 -msgid "" -"We can download all the map canvas extent but it would take a long time. " -"Otherwise if you want to download specific area, click on :guilabel:`Drag on " -"Map` button and create a bounding box by dragging it to set download area." -msgstr "" -"Kita dapat mendownload semua data yang ada di luasan peta kita tapi hal " -"tersebut akan membuat proses download menjadi lama. Oleh karena itu, jika " -"anda ingin mendownload di area tertentu, silahkan klik tombol :guilabel:" -"`Drag on Map` dan gambarkan sebuah kotak sebagai batas dari area yang akan " -"anda download" - -# d426160629864ec7975fc3bf99044f42 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:167 -msgid "Click on :guilabel:`OK` and wait until the download is finished." -msgstr "Klik :guilabel:`OK` dan tunggu hingga proses download selesai." - -# 854ad4e553d640dfb339e5605aafa1bc -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:172 -msgid "" -"You can hide the **Roads** by clicking the box next to :guilabel:`Roads` " -"layer list." -msgstr "" -"Anda dapat menyembunyikan **Roads** dengan mengklik kota disamping daftar " -"layer :guilabel:`Roads`." - -# 94276b31ae7441589dd60a241932008b -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:175 -msgid "8.3.3 Adding Keyword Metadata" -msgstr "8.3.3 Menambahkan Kata Kunci Metadata" - -# b6366d960af24ee19fe2e8edde87beaf -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:177 -msgid "" -"In order for InaSAFE to know that our layers are hazard or exposure " -"datasets, we need to assign keywords to the layers using the InaSAFE keyword " -"tool. Let’s take a look at the keywords that have already been created on " -"the hazard layer." -msgstr "" -"Untuk mengatur agar InaSAFE mengetahui layer kita merupakan data ancaman " -"atau keterpaparan, kita butuh menambahkan kata kunci di dalam layer tersebut " -"menggunakan tool kata kunci InaSAFE. Mari kita lihat kata kunci yang telah " -"kita buat pada layer ancaman." - -# d636901fc1d249c3aebd3d955f7fc825 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:181 -msgid "" -"Select the :guilabel:`buildings` layer in the Layers panel, and click on " -"the :guilabel:`Keywords Creation Wizard` button." -msgstr "" -"Pilih layer :guilabel:`buildings` di panel Daftar Layer, dan klik tombol :" -"guilabel:`Keywords Creation Wizard`." - -# 46dda570a57c4e83a9592d7f0d1fcc1c -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:187 -msgid "" -"In the *InaSAFE Keywords Creation Wizard* window, firstly, choose :guilabel:" -"`Exposure` since building is one of the exposure affected by hazard. Then, " -"click :guilabel:`Next`." -msgstr "" -"Pada jendela *InaSAFE Keywords Creation Wizard*, pertama, pilih :guilabel:" -"`Paparan` karena bangunan adalah salah satu jenis data yang terpapar oleh " -"bencana. Kemudian, klik :guilabel:`Lanjut`." - -# 3f1679f80ac84e55888c5e68b8eaacb8 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:193 -msgid "" -"In the next step, we have to choose what kind of exposure the building layer " -"represents. Choose :guilabel:`Structures` and then click :guilabel:`Next`." -msgstr "" -"Pada step berikutnya, kita harus memilih apa jenis paparan yang " -"merepresentasikan layer bangunan. Pilih :guilabel:`Struktur` dan kemudian " -"klik :guilabel:`Lanjut`." - -# 80d65b177e9546b7b771500f5a36999c -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:196 -msgid "" -"Choose what kind of data the building layer represents. Since the building " -"layer data has been classified, choose :guilabel:`Classified` and then " -"click :guilabel:`Next`." -msgstr "" -"Memilih jenis data apa yang merepresentasikan bangunan. Karena layer " -"bangunan telah diklasifikasi, pilih :guilabel:`Klasifikasi` dan kemudian " -"pilih :guilabel:`Lanjut`." - -# 545fda0a2c8641eea80212ceec9f8d03 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:199 -msgid "" -"In the next step, we have to select the attribute in the building layer that " -"represents the classes. Then click :guilabel:`Next`." -msgstr "" -"Pada step berikutnya, kita harus memilih atribut dari layer bangunan yang " -"merepresentasikan kelas. Kemudian klik :guilabel:`Next`." - -# a152de29e16140e59e9d582b45cedfb6 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:202 -msgid "" -"Select the type of classification we want to use and then click :guilabel:" -"`Next`." -msgstr "" -"Pilih tipe klasifikasi yang kita mau gunakan dan kemudian pilih :guilabel:" -"`Lanjut`." - -# 196e17376ac145cb84e5a06551dc63a3 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:204 -msgid "" -"Drag unique values from the list on the left into the panel on the right and " -"place them in the appropriate categories and then click :guilabel:`Next`." -msgstr "" -"Pilih nilai unik dari daftar sebelah kiri kedalam panel sebelah kanan dan " -"tempatkan pada kategori yang sesuai dan kemudian pilih :guilabel:`Lanjut`." - -# f4f38bc8bd77482599e2b7af93000fe5 -# 93bf8279627c494594f20d9f13917476 -# d00935a195dc4c38bd6cd1fd2b8cb2e4 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:207 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:323 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:360 -msgid "" -"The next step is optional. We can write a short comment about the source of " -"the data. Then click :guilabel:`Next`." -msgstr "" -"Pada tahapan berikutnya merupakan opsional. Kita bisa menulis komentar " -"singkat mengenai sumber data. Kemudian klik :guilabel:`Lanjut`." - -# 1fb8b2c848a7423d9739798b5fcfbe32 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:209 -msgid "Give title to the building layer and then click :guilabel:`Next`." -msgstr "Berikan judul pada layer bangunan dan kemudian klik :guilabel:`Next`." - -# 0addcb4e0bf147cc90faa85e8ba211df -# 5631c8d133e54f88a5e81215f3341f9e -# 87a6e0748e394285ac20a8377ee4c077 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:211 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:327 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:364 -msgid "Click :guilabel:`Finish`." -msgstr "Klik :guilabel:`OK`." - -# 449879faa56a4ff2bbc4abbf2e2d12df -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:213 -msgid "" -"Select the :guilabel:`Roads` layer. Open the keyword editor and do the steps " -"above all over again." -msgstr "" -"Pilih layer :guilabel:`Roads`. Buka editor kata kunci dan lakukan step yang " -"sama dengan sebelumnya." - -# 54c6130be3b74db69c8dd2026c0d5d3b -# 17f9858ec40a4da7a0da46be1fbea8c6 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:215 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:329 -msgid "Notice that the layer now appears in the InaSAFE panel." -msgstr "" -"Perhatikan bahwa layer kita sekarang sudah tampil pada panel jendela InaSAFE." - -# 33c9f7596a244968a1e0d915ad5d4ac1 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:221 -msgid "8.3.4 Set Outline Impact Analysis" -msgstr "8.3.4. Menetapkan batasan analisis dampak" - -# f3e886950e1847a4aa9133f45ddf9bb4 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:223 -msgid "" -"If you have a laptop with small RAM, run InaSAFE for large area with so many " -"data will take a long time to finish. To solve the problem, we can set the " -"analysis area to a smaller area to make the analysis quicker." -msgstr "" -"Jika Anda memiliki laptop dengan ram yang kecil, menjalankan InaSAFE untuk " -"area besar dengan data yang cukup banyak akan membutuhkan waktu yang lama " -"untuk selesai. Untuk mengatasi masalah ini, kita bisa mengatur area analisis " -"menjadi bagian kecil untuk membuat analisis lebih cepat." - -# f78ea3b0f83541568ddd0d8fab3295f2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:227 -msgid "" -"Select :guilabel:`Toggle Scenario Outlines` to show analysis outline area." -msgstr "Pilih :guilabel:`Atur area skenario` untuk menunjukkan area analisis." - -# 5928b4cec276459084918a6492673c70 -# a116112a781f406881d76cd85799b7ba -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:232 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:379 -msgid "Green box will appear around the map canvas." -msgstr "Sebuah kotak hijau akan muncul disekitar kanvas peta." - -# 2e78fb7ca1f74f959e05b1ca9287f04c -# 36ff7e66ea954791a78d89ce3f761a98 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:237 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:384 -msgid "" -"This green box is the analysis area. InaSAFE will calculate all the data " -"inside the green box." -msgstr "" -"Kotak hijau ini merupakan area analisis. InaSAFE akan menghitung semua data " -"didalam kotak analisis hijau ini." - -# 18c5e5f70143468288cad7f249eff409 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:239 -msgid "" -"To change the analysis area, click :guilabel:`Set analysis area` button." -msgstr "" -"Untuk mengganti area analisis, klik tombol :guilabel:`Atur area analisis`." - -# 52f9e47ced3b4258800e6343d818a565 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:244 -msgid "" -"Click :guilabel:`Use intersections of hazard, exposure and this bounding " -"box` and click on :guilabel:`Drag on map` button and create a box to set " -"analysis area. This will create blue box around map canvas." -msgstr "" -"Klik :guilabel;`Gunakan perpotongan antara ancaman, paparan dan kotak batas " -"ini` dan klik pada :guilabel:`Geser peta` dan buat sebuah kotak analisis " -"area. Ini akan menghasilkan sebuah kotak berwarna biru pada kanvas peta Anda." - -# 87c33159809d4a45ae4cb971670f782f -# 06e7e81e68984edb8cff2de5b3520b0e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:251 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:397 -msgid "After that click :guilabel:`OK`." -msgstr "Kemudian klik :guilabel:`OK`." - -# 3d113f2856f644729f4d942d2fd546b1 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:254 -msgid "8.3.5 Impact Analysis" -msgstr "8.3.5. Analisis Dampak" - -# 904e9dbe8ed2441b88c0fe520f3a91c2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:256 -msgid "" -"Now our hazard and exposure data are set in the InaSAFE panel, because the " -"appropriate keywords have been added to our layers. Note that if we were to " -"add a second exposure layer to our project, we would be able to choose which " -"exposure layer we wanted from the InaSAFE drop-down menu. The same applies " -"to hazard layers." -msgstr "" -"Sekarang data ancaman bencana dan data keterpaparan sudah diatur kedalam " -"InaSAFE, karena kata kunci sudah ditambahkan pada layer kita. Perhatikan " -"jika kita menambahkan layer keterpaparan kedua pada proyek kita, kita akan " -"bisa menentukan layer keterpaparan apa yang kita inginkan melalui menu " -"pilihan InaSAFE. Hal ini diaplikasikan juga pada layer ancaman bencana." - -# de2fc64d71824596bbf465fa8dbf6f41 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:262 -msgid "" -"The third drop-down box is the impact function. This concludes our question, " -"and defines the function that InaSAFE will run behind the scenes. InaSAFE " -"developers have written many of these functions to analyse all sorts of " -"hazard and exposure layers. The function that is selected for us here will " -"process the hazard and exposure layers spatially to determine how the " -"exposure layer will “be flooded.”" -msgstr "" -"Menu pilihan ketiga adalah fungsi dampak (“Might”). Ini termasuk pertanyaan " -"kita dan menentukan fungsi yang akan InaSAFE jalankan melalui skenario ini. " -"Pengembang InaSAFE telah menulis beberapa fungsi untuk menganalisis layer " -"ancaman bencana dan keterpaparan. Fungsi yang telah dipilihkan untuk kita " -"disini akan memproses layer ancaman bencana dan keterpaparan secara spasial " -"untuk menentukan bagaimana layer keterpaparan akan \"be affected\"." - -# 9e6979bb718e49c397abd613345c29b7 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:268 -msgid "" -"Click the :guilabel:`Run` button at the bottom to start the impact analysis. " -"At the end of the process, the statistics will be displayed in the Results " -"section, and a new layer will be added to the Layers panel that describes " -"the result of the analysis. The map will show which buildings that are " -"affected and which are not." -msgstr "" -"Klik tombol :guilabel:`Hitung` di bagian bawah untuk menjalankan analisis " -"dampak. Pada akhir proses, statistik akan muncul di bagian hasil dan layer " -"baru akan ditambahkan ke panel Daftar Layer yang menjelaskan hasil dari " -"analisis. Peta tersebut akan membedakan antara bangunan yang terdampak dan " -"bangunan yang tidak terdampak." - -# 21ab84b1e89f4bf6bc7aef270802b341 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:277 -msgid "8.4 Run InaSAFE for Population" -msgstr "8.4 Menjalankan InaSAFE untuk Populasi" - -# c4e7f8b070f14d1894eae11fade6a331 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:279 -msgid "" -"In this section we will learn how to run impact analysis for population data " -"with InaSAFE. We are going to use the same raster hazard data for flood in " -"Jakarta and we will add another exposure data: population from AsiaPop." -msgstr "" -"Pada bagian ini, kita akan belajar mengenai bagaimana menjalankan analisis " -"dampak untuk data populasi dengan InaSAFE. Kita akan menggunakan data " -"bencana yang sama untuk banjir di Jakarta dan kita akan menambahkan beberapa " -"data paparan baru: populasi data dari AsiaPop." - -# c41b1f3822f441c2b5aaee415cbaa569 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:284 -msgid "8.4.1 Adding Exposure Data" -msgstr "8.4.1 Menambahkan data paparan" - -# 738d5b1edfde48788aaa96b14181ed1b -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:286 -msgid "" -"We have already learned about how to change the symbol for this data in " -"previous chapter (chapter 6), so if the appearance of this AsiaPop’s data is " -"different than yours, you may need to change it." -msgstr "" -"Kita telah mempelajari bagaimana mengganti simbol untuk data ini pada bab " -"sebelumnya (bab 6), jika tampilan dari data AsiaPop ini berbeda, Anda bisa " -"menggantinya." - -# d181b177b54d4d489dbac717c9741d3c -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:290 -msgid "" -"Click :guilabel:`Add Raster Layer` button and add :file:" -"`Java_Population_WGS84.tif`." -msgstr "" -"Klik :guilabel:`Menambahkan Layer Raster` dan tambahkan :file:" -"`Java_Population_WGS84.tif`." - -# f8a32a99d6604768871410a94220c775 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:292 -msgid "Change the layer order like this:" -msgstr "Ubah urutan menjadi seperti ini:" - -# c1fd58a11226402eab66b91bf585bc4e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:297 -msgid "" -"You can hide the vector data such as roads and buildings to create clearer " -"view in map canvas." -msgstr "" -"Anda bisa menutup data vektor lainnya seperti bangunan dan jalan untuk " -"membuat tampilan kanvas peta menjadi lebih bersih." - -# a6b9d8131af94bdd86e87b901eec5845 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:300 -msgid "8.4.2 Adding Keyword Data for Population" -msgstr "8.4.2 Menambahkan kata kunci untuk populasi" - -# b27a563754a14bdc9b1abd82a2f715c2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:302 -msgid "" -"Select the **Java_Population_WGS84** layer in the Layers panel, and click on " -"the :guilabel:`Keywords Creation Wizard` button." -msgstr "" -"Pilih layer **Java_Population_WGS84** di panel Daftar Layer, dan klik " -"tombol :guilabel:`Keywords Creation Wizard`." - -# 3e514d2bc86541e88d5591547576d447 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:308 -msgid "" -"In the *Keywords Creation Wizard* window choose :guilabel:`Exposure` as " -"category layer, then click :guilabel:`Next`." -msgstr "" -"Pada jendelan *Wizard Pembuat Kata Kunci* pilih :guilabel:`Exposure` sebagai " -"kategori layer dan kemudian klik :guilabel:`Next`." - -# 48315f4ea54641899ba323699e568ed2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:313 -msgid "" -"In the next step, we have to choose what kind of exposure the population " -"layer represents. Choose :guilabel:`Population` and then click :guilabel:" -"`Next`." -msgstr "" -"Pada step berikutnya, kita harus memilih apa jenis paparan yang " -"merepresentasikan layer populasi. Pilih :guilabel:`Populasi` dan kemudian " -"klik :guilabel:`Lanjut`." - -# 3e38a22bb7374ffe8e73980d9fbc259a -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:316 -msgid "" -"Choose what kind of data the building layer represents. Choose :guilabel:" -"`Continuous` and then click :guilabel:`Next`." -msgstr "" -"Pilih jenis data untuk layer populasi direpresentasikan. Pilih :guilabel:" -"`Kontinyu` dan kemudian pilih :guilabel:`Lanjut`." - -# 1b3181a0e80c47e0843f2b44d0b9d38c -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:318 -msgid "" -"We have to choose what units the continuous data are in. Then, click :" -"guilabel:`Next`." -msgstr "" -"Kita harus memilih unit apa untuk data yang saat ini kita masukkan. Kemudian " -"pilih :guilabel:`Next`." - -# 2b2a91845a184f0aa717cfd8190c64e7 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:320 -msgid "" -"In the next step, we can select the checkbox if we want InaSAFE to resample " -"the layer to the hazard layer resolution during analyses. Then, click :" -"guilabel:`Next`." -msgstr "" -"Pada tahap berikutnya, kita bisa mengaktifkan kotak jika kita menginginkan " -"InaSAFE untuk melakukan resample layer terhadap resolusi layer hazard ketika " -"analisis. Kemduian klik :guilabel:`Next`." - -# 4a42dd5fef7e4f87a7668123fd44bc90 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:325 -msgid "" -"We can fill the :guilabel:`Title` with :kbd:`People` and then click :" -"guilabel:`Next`." -msgstr "" -"Kita bisa mengisi :guilabel;`Judul` dengan :kbd:`Orang` dan kemudian klik :" -"guilabel:`Lanjut`." - -# 021d9d8ee163436b8d6ad6d28ae08ded -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:335 -msgid "8.4.3 Using boundary as aggregation layer" -msgstr "8.4.3 Menggunakan garis batas sebagai layer agregasi" - -# 120ade521c01476894d2dc8ab3a5ab13 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:337 -msgid "" -"We can use InaSAFE to give impact result according to the whole area or " -"divide it by administrative boundary. InaSAFE will provide impact analyst " -"result for each administration area that we provide. This method will help " -"us to know the result specifically for each area, so we are able to know how " -"many people that might be affected and how many logistic we should prepare " -"for each administration area. To do this, we need to define aggregation " -"layer first using :guilabel:`Keyword Creation Wizard`." -msgstr "" -"Kita bisa gunakan InaSAFE untuk memberikan hasil analisis dampak untuk area " -"keseluruhan atau dibagi berdasarkan batas administrasi yang sudah kita " -"berikan. Metode ini akan membantu kita untuk mengetahui hasil analisis " -"spesifik untuk setiap area, sehingga kita bisa mengetahui berapa banyak " -"orang yang mungkin akan terdampak dan berapa logistik yang harus kita " -"persiapkan untuk setiap area administrasi. Untuk melakukan ini, kita harus " -"mendefinisikan layer aggregasi dengan menggunakan :guilabel:`Wizard pembuat " -"kata kunci`." - -# b0e9d244d90642ff9c4de6a75dff9164 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:344 -msgid "" -"Click :guilabel:`Add Vector Layer` button and add :file:" -"`Jakarta_District_Boundary_WGS84.shp`." -msgstr "" -"Klik :guilabel:`Tambahkan layer vektor` dan masukkan :file:" -"`Jakarta_District_Boundary_WGS84.shp`." - -# 6fdec6629f6046538d256204f8b70ca6 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:346 -msgid "" -"Select the :file:`Jakarta District.shp` layer in the Layers panel, and click " -"on the :guilabel:`Keywords Creation Wizard` button." -msgstr "" -"Pilih :file:`Jakarta Distrct.shp` pada panel layer dan klik pada :guilabel:" -"`Wizard Pembuat Keyword`." - -# 9923c26a84154a1f8afc2f344fb8e770 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:349 -msgid "" -"In the *Keywords Creation Wizard* window choose aggregation as category " -"layer." -msgstr "Pada jendela *Wizard Pembuat Kata Kunci* gunakan kategori aggregasi." - -# c548aa5fc4c54c4090c6cd8fc9d95bf4 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:354 -msgid "" -"Select the attribute in the layer that has the name of the aggregation " -"areas. Then click :guilabel:`Next`." -msgstr "" -"Pilih atribut pada layer yang mempunyai nama area agregasi. Kemudian klik :" -"guilabel:`Next`." - -# f46d2c498353482a8142ccd5d15cf7a2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:357 -msgid "" -"Choose the field in the layer that represents specified concept of field or/" -"and set default value if there is no value and then click :guilabel:`Next`." -msgstr "" -"Pilih field pada layer yang merepresentasikan spesifik konsep dari field dan " -"set nilai awalan jika tidak ada nilai dan kemudian klik :guilabel:`Next`." - -# f607147502a34a6cb6232dbb538ca0ec -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:362 -msgid "" -"We can fill the :guilabel:`Title` with :kbd:`District Jakarta` and then " -"click :guilabel:`Next`." -msgstr "" -"Kita bisa mengisi :guilabel:`Judul` dengan :kbd:`District Jakarta` dan " -"kemudian klik :guilabel:`Next`." - -# 89367be13d034901adb24897d0f8858d -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:367 -msgid "8.4.4 Set Outline Analysis" -msgstr "8.4.4 Menetapkan area analisis" - -# 03805943f0314132adb4747fc7baa2d7 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:369 -msgid "" -"We have already set the analysis area for imapct calculation for the " -"building. This time we will set the analysis area for population data." -msgstr "" -"Kita sudah menetapkan area analisis untuk bangunan dan sekarang kita akan " -"menetapkan area analisis untuk populasi." - -# e31596b1e75148479f00febbdfa037f9 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:372 -msgid "" -"Right click on :guilabel:`A flood similar to the 2007 Jakarta event` layer " -"and click :guilabel:`Zoom to Layer`" -msgstr "" -"Klik kanan pada :guilabel:`A flood similar to the 2007 Jakarta event` dan " -"klik :guilabel:`Perbesar ke layer`" - -# e744a312f0bd4ad0bdab02854cad7e76 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:374 -msgid "" -"Select :guilabel:`Toggle Scenario Outlines` to show the analysis outline " -"area." -msgstr "" -"Pilih :guilabel:`Aktifkan garis batas skenario` untuk menunjukkan area " -"analisis." - -# 1b9839425de346bfae40d247a5fcecfe -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:386 -msgid "To change the analysis area, click *Set analysis area* button." -msgstr "Untuk mengganti area analisis, klik *Terapkan area analisis*." - -# b6bef739c3104ee9a8f3ada9c2430b06 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:391 -msgid "" -"Click :guilabel:`Drag on map` button and create a box to set around the **A " -"flood similar to the 2007 Jakarta event** area. This will create a blue box " -"around map canvas." -msgstr "" -"Klik :guilabel:`Geser pada peta` dan buat sebuah kotak disekitar layer area " -"**A flood similar to the 2007 Jakarta event**. Ini akan membuat kotak biru " -"disekitar kanvas peta." - -# 930794f6b11047b4bda7f518b0daf75c -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:399 -msgid "" -"We will run InaSAFE with Jakarta boundary as aggregation layer. To do this, " -"simply change :guilabel:`Summarise the result by` in the InaSAFE panel into " -"district boundary." -msgstr "" -"Kita sekarang akan menjalankan InaSAFE dengan batas Jakarta sebagai area " -"agregasi. Untuk melakukan ini, pilih :guilabel:`Rangkum analisis " -"berdasarkan` pada panel InaSAFE menjadi batas administrasi." - -# 9dcd26bf6b424010bcdf64b8cf2c0b65 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:405 -msgid "" -"Now click, :guilabel:`Run` to calculate impact analysis and wait for a " -"moment." -msgstr "" -"Sekarang klik :guilabel:`Jalankan` untuk menghitung analisis dampak dan " -"tunggu sesaat." - -# 5e65788dae974792933a0d6676348631 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:410 -msgid "" -"You will get impact result in the InaSAFE panel in the right side divided by " -"5 municipal in Jakarta." -msgstr "" -"Anda akan mendapatkan hasil pada panel InaSAFE sebelah kanan dibagi menjadi " -"5 kotamadya di Jakarta." - -# c96beac937394d7cad3f28d1b9df3897 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:417 -msgid "8.4.5 Configure Minimum Needs" -msgstr "8.4.5 Kebutuhan Minimum" - -# a35ff5cc20ab4d59a3d1d99d28c92830 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:419 -msgid "" -"When you scroll impact result from running InaSAFE scenario, you will notice " -"that there are some statistic that show how many rice, drinking water, clean " -"water, family kits and toilet for each municipals in Jakarta. It's called " -"minimum needs per week for each people evacuated. The purpose of this " -"minimum needs is to provide quick method calculating support requirements " -"(in terms of food, water, etc) for displaced persons." -msgstr "" -"Ketika anda menggeser hasil analisis dari menjalankan InaSAFE, anda akan " -"sadar bahwa terdapat beberapa statistik yang menunjukkan berapa banyak " -"beras, air minum, air bersih, family kits dan toilet untuk setiap kota madya " -"di Jakarta Ini disebut kebutuhan minimum per minggu untuk setiap orang yang " -"dievakuasi. Tujuan dari kebutuhan minimum ini adalah untuk memberikan " -"perhitungan kebutuhan untuk setiap orang yang dievakuasi(contohnya makanan, " -"minuman,dsb)." - -# c4dd3dd4dcdc4fa1bc7174fcaf1476af -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:425 -msgid "" -"The minimum needs (by default) are based on ‘Perka 7/2008’ BNPB according to " -"the following default formulas:" -msgstr "" -"Kebutuhan minimum (pengaturan awal) dibuat berdasarkan 'Perka 7/2008' dengan " -"rumus berikut:" - -# 8c731cc666734e0c87feaefa4dc30d84 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:428 -msgid "400g rice per person per day (2.8 kg per week)" -msgstr "400g nasi per orang per hari (2.8kg per minggu)" - -# 4a711bc4029a4308aec3cb2abe9c34df -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:429 -msgid "2.5l drinking water per person per day (17.51 L per week)" -msgstr "2.5l air minum per orang per hari (17.5l per minggu)" - -# 8f5ed1565c354288b5d640a1615cd0cf -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:430 -msgid "15l clean water per person per day (105 L per week)" -msgstr "15l air bersih per orang per hari (105l per minggu)" - -# e6e21e2f0a2e43a8b0b2883cca8303da -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:431 -msgid "" -"One family kits per family per week (assumes five people per families which " -"is not specified in perka)" -msgstr "" -"Sebuah perlengkapan keluarga untuk setiap 1 keluarga per minggu (diasumsikan " -"satu keluarga terdiri dari 5 orang, namun hal ini tidak ditentukan dalam " -"perka)" - -# 278ce869883f44caa193ab465644762e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:433 -msgid "20 people per toilet" -msgstr "20 orang per toilet" - -# 9a0799e6551e475ba3892d764c34852f -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:435 -msgid "" -"If you are not satisfied with these configuration, you can define your " -"custom minimum needs for your own area using *Minimum Needs Configuration*" -msgstr "" -"Jika Anda tidak puas dengan pengaturan ini, Anda bisa mengatur kebutuhan " -"minimum Anda sendiri dengan menggunakan *Pengaturan Kebutuhan Minimum*" - -# 874e2996217a4e72990359c9b83041d2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:438 -msgid "" -"Click in :menuselection:`Plugin → InaSAFE → Minimum Needs Configuration`" -msgstr "" -"Klik di :menuselection:`Plugin → InaSAFE → Pengaturan Kebutuhan Minimum`" - -# 0f2e0f1c829e44738edc060e9e4e756e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:443 -msgid "" -"*Minimum Needs Manager* Window will appear. You can see in the :guilabel:" -"`Profile` selection there are 4 profile defined, **BNPB_en**, **Philippine " -"Minimum Needs_en**, **BNPB_id**, **SPHERE**, and **Tanzania**." -msgstr "" -"Jendela *Kebutuhan Minimum* akan muncul. Anda bisa melihat di :guilabel:" -"`Profil` yang terdapat 4 profil yang sudah didefinisikan, **BNPB_en**, " -"**Phillippine Minimum Needs_en**, **BNPB_id**, **SPHERE**, dan **Tanzania**." - -# 2c543278d8254af3b43c17849557a2fd -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:450 -msgid "" -"If you want to change the default minimum needs for each item in each " -"profile, simply select an item that you want to change and click" -msgstr "" -"Jika Anda ingin mengganti nilai kebutuhan minimum untuk setiap item dalam " -"setiap profil, pilih item yang mau Anda ganti dan kemudian klik" - -# 8ce0dada049b49f38e49f88767ae6d56 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:456 -msgid "button in the right upper side of the window." -msgstr "di bagian kanan atas." - -# f1c1e7b80e3042bcb11ca6888d66b89b -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:458 -msgid "" -"You will enter *Resource editor* and from these editor, you can add or " -"modify resource by filling each field that you think is important." -msgstr "" -"Anda akan memasuki *Resource Editor* dan melalui editor ini, Anda bisa " -"menambahkan atau memodifikasi setiap resource dengan memasukkan nilai setiap " -"field yang menurut Anda penting." - -# 5a742a295cd54796acbc5057c8eff43f -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:461 -msgid "" -"Click :guilabel:`Save Resource` if you have already changed the value from " -"an item or click :guilabel:`Discard Changes` if you didn’t change anything." -msgstr "" -"Klik :guilabel:`Save Resource` jika Anda telah mengubah nilai dari sebuah " -"item atau klik :guilabel:`Discard Changes` jika Anda tidak merubah apapun." - -# fa628d84c60649a284d0f1c7e2bf2812 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:464 -msgid "" -"If you want to create your own custom minimum needs, click :guilabel:`New` " -"in the bottom side of the window and you can start adding new item by " -"clicking the :guilabel:`+` button in the right upper side of the window to " -"open *Resource editor.*" -msgstr "" -"Jika Anda mau membuat kebutuhan minimum Anda sendiri, klik :guilabel:`New` " -"pada bagian bawah dari jendela dan anda bisa memulai menambahkan item baru " -"dengan mengklik :guilabel:`+` pada bagian kanan atas." - -# 95e9a430777143dc912de8f041b51a4c -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:468 -msgid "" -"Click :guilabel:`Save` after adding several items to your custom minimum " -"needs." -msgstr "" -"Klik :guilabel:`Simpan` setelah menambahkan beberapa item ke kebutuhan " -"minimum anda." - -# afbf2dfb31734cb5949e60da9ad389fb -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:471 -msgid "8.4.6 Run Impact Analyst with Modified Minimum Needs" -msgstr "" -"8.4.6 Menjalankan Analisis Dampak dengan Kebutuhan Minimum yang telah diubah" - -# d933a3a8c2304a88b469db538ab88ce4 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:473 -msgid "" -"After creating your custom minimum needs you can run InaSAFE with your own " -"minimum needs:" -msgstr "" -"Setelah membuat kebutuhan minimum buatan anda, Anda bisa menjalankan InaSAFE " -"dengan kebutuhan minimum anda sendiri:" - -# 59c1f7f896534007b5d97d11ba5d63e8 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:475 -msgid "Go to :menuselection:`Plugins ‣ InaSAFE ‣ Minimum Needs Configuration`" -msgstr "" -"Klik di :menuselection:`Plugin → InaSAFE → Pengaturan Kebutuhan Minimum`" - -# 86f5aae6ba714e179ce2cbebed70b232 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:477 -msgid "" -"In *Minimum Needs Manager* Window, select your custom profile in Profile " -"selector. After that, close the *Minimum Needs Manager* Window." -msgstr "" -"Pada jendela *Kebutuhan Minimum*, pilih profil yang Anda inginkan. Setelah " -"itu, tutup jendela *Pengaturan Kebutuhan Minimum*." - -# 1fae5c91c3c749f08bb8c7ab1154e59d -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:480 -msgid "" -"Click :guilabel:`Run` to see the InaSAFE result with your custom minimum " -"needs." -msgstr "" -"Klik :guilabel:`Jalankan` untuk melihat analisis InaSAFE dengan kebutuhan " -"minimum anda." - -# 77b8bd62a3004ea98aafcc3a4ba5a06e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:483 -msgid "8.5 Print InaSAFE Result" -msgstr "8.5 Mencetak Hasil InaSAFE" - -# 2330c6bcffb44ae4a42bda85e7d1a316 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:485 -msgid "" -"The data displayed on the screen can be saved to a PDF file by clicking :" -"guilabel:`Print` at the bottom of the InaSAFE panel." -msgstr "" -"Data yang diperlihatkan pada layar dapat disimpan ke file PDF dengan " -"mengklik :guilabel:`Cetak` di bagian bawah panel InaSAFE." - -# ef610b6fdd3b45ad976f4df5226dd682 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:488 -msgid "Click on the InaSAFE result layer and click :guilabel:`Print`." -msgstr "" -"Klik pada layer hail analisis |project_name| dan kemudian klik :guilabel:" -"`Cetak`." - -# 61e20543f6c94b3da30aeb36434be634 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:490 -msgid "" -"The analysis results will automatically open in pdf format. If you want to " -"print it, click File -- Print or if you want to save it click File -- Save " -"As." -msgstr "" -"Hasil analisis akan secara otomatis dibuka pada format pdf. Jika Anda mau " -"mencetaknya, klik File - Print atau jika anda ingin menyimpannya klik Flie - " -"Save As." - -# fc7c4ff4a198497695e9b89665f91a5e -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:494 -msgid "8.6 Save Your Results" -msgstr "8.6. Menyimpan Hasil Analisis Anda" - -# d1cd2e09b1ca4134acfb8ba07a2407ab -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:496 -msgid "" -"You can save the impact layer that InaSAFE created, and you can save the " -"QGIS project to come back to it later, but note that the InaSAFE’s symbology " -"style cannot be saved. It will show you only black and white layer and you " -"need to symbolise again." -msgstr "" -"Anda bisa menyimpan layer dampak yang InaSAFE buat, dan Anda bisa menyimpan " -"proyek QGIS untuk kembali lagi nanti, tetapi harap diingat bahwa simbologi " -"InaSAFE tidak dapat disimpan. Hasilnya hanya berupa hitam dan putih dan Anda " -"butuh mengubahnya lagi." - -# 4c9b222d908447b0a7a785572fa12aea -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:501 -msgid "8.6.1 Save your InaSAFE result style" -msgstr "8.6.1 Menyimpan Hasil Anda" - -# 850c4125c60f4d189d687b283187d88f -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:503 -msgid "" -"To get the style from your InaSAFE result, you need to save the InaSAFE " -"result’s style first." -msgstr "" -"Untuk mendapatkan style dari hasil InaSAFE, Anda butuh menyimpan style " -"InaSAFE terlebih dahulu." - -# b6435aba234544ca8edcae9dda4efbfe -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:505 -msgid "" -"Right click on :guilabel:`Number of People`, and go to :guilabel:" -"`Properties`." -msgstr "" -"Klik kanan pada :guilabel:`Jumlah penduduk`, dan pilih :guilabel:" -"`Properties`." - -# 29126bba25254413a55e284c389cbc60 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:508 -msgid "" -"Go to :guilabel:`Style` button on the bottom side the properties window, " -"click :guilabel:`Save Style` and choose :guilabel:`QGIS Layer Style File …`." -msgstr "" -"Klik :guilabel:`Style` dibagian bawah dari jendela properti dan klik :" -"guilabel:`Simpan Style` dan pilih :guilabel:`QGIS Layer Style File...`" - -# bf2f6b1456ba4dc0b4009950be6134c2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:514 -msgid "" -"Save your symbology style as :kbd:`population_result_style` and click :" -"guilabel:`Save button`." -msgstr "" -"Simpan simbologi anda dengan nama :kbd:`population_result_style` dan klik :" -"guilabel:`Save`." - -# bfb1672fcc9b4a7fa75daf9eca085804 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:519 -msgid "" -"To save the newly generated layer, right-click on it in the Layers panel. " -"Click :guilabel:`Save As …`" -msgstr "" -"Untuk menyimpan layer yang baru dibuat, klik kanan pada panel layer. Klik :" -"guilabel:`Simpan sebagai ...`" - -# 0944f84bc6ba4bd4a3452c1108dd9fc4 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:523 -msgid "8.6.2 Save InaSAFE Result layer" -msgstr "8.6.2 Menyimpan Layer Hasil Analisis InaSAFE" - -# 65f60ecaaa1c454483558d9c3e82a082 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:525 -msgid "" -"After you saved your InaSAFE result style now you can save your InaSAFE " -"result layer and get the same style like the InaSAFE Result." -msgstr "" -"Setelah Anda menyimpan style InaSAFE sekarang anda bisa menyimpan layer " -"hasil InaSAFE dan mendapatkan style yang sama dengan hasil InaSAFE." - -# 99b45c1161a64a2f92bb68e70bb8ea78 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:528 -msgid "" -"Right click on :guilabel:`Number of People`, and go to :guilabel:`Save As…`" -msgstr "" -"Klik kanan pada :guilabel:`Jumlah penduduk` dan pergi ke :guilabel:`Simpan " -"sebagai...`" - -# 727deb48e7154782a67b621432068ac2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:531 -msgid "" -"Click on :guilabel:`Browse` button and select a name and location for the " -"file. Click :guilabel:`OK`." -msgstr "" -"Klik pada :guilabel:`Browse` dan pilih nama serta lokasi dari file. Klik :" -"guilabel:`OK`." - -# 7cbbd4006ab7491ca8db00297e113ee7 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:534 -msgid "Load your saved layer using :guilabel:`Add Raster Layer` button." -msgstr "" -"Muat layer yang telah Anda simpan dengan menggunakan :guilabel:`Tambahkan " -"layer raster`." - -# ba149d49c5ca4dcdaef48f0ccbcdf2e9 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:536 -msgid "" -"You will see black and white layer in map extent. Open the properties of " -"your saved layer to resolve this." -msgstr "" -"Anda akan melihat layer hitam dan puti di peta anda. Buka properti dari " -"layer yang anda telah simpan untuk mengatasi ini." - -# c1a2324977024427b3a153e82606634d -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:539 -msgid "" -"Go to :guilabel:`Style` button on the bottom side the properties window and " -"click :guilabel:`Load Style…`" -msgstr "" -"Pergi ke :guilabel:`Style` pada bagian jendela properti dan klik :guilabel:" -"`Load Style...`" - -# ee7393311f0f4d5db1b70a5369cc4eb2 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:545 -msgid "" -"Select your :file:`population_result_style` and click :guilabel:`Open` " -"button." -msgstr "Pilih :file:`population_result_style` dan klik :guilabel:`Buka`" - -# e363b7cd4ee7430b8744b3718d866e19 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:547 -msgid "" -"Now your saved layer will have the same style with your temporary InaSAFE " -"result layer." -msgstr "" -"Sekarang layer anda sudah memiliki style yang sama dengan layer InaSAFE." - -# ebb6bff1ad454c5a9b607052b29e1d00 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:549 -msgid "" -"To use this style as default style you can click :guilabel:`Save as Default` " -"under :guilabel:`Style` button." -msgstr "" -"Untuk menggunakan style ini sebagai style bawaan Anda bisa mengklik :" -"guilabel:`Save as Default` dibawah tombol :guilabel:`Style`." - -# f31cddc41395430fba19da6dc2874fc4 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:556 -msgid "8.6.3 Save Project" -msgstr "8.6.3 Menyimpan proyek" - -# ca24adc8eb5e46138028f0dfbee254c0 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:558 -msgid "Click :guilabel:`Save As` button in toolbar." -msgstr "Klik :guilabel:`Simpan sebagai` di tombol toolbar." - -# 2bb3e793786b493a8a2d61ad988fbfcf -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:563 -msgid "" -"Give a name to the project and put it in the directory where you want to " -"save your work. Then click :guilabel:`Save`." -msgstr "" -"Berilah nama untuk proyek ini dan masukkan kedalam direktori yang Anda " -"inginkan untuk menyimpan pekerjaan Anda. Kemudian klik :guilabel:`Simpan`." - -# db150b7a9e4a479aa5e65899db5204d7 -#: ../../source/training/qgis/Chapter-08-Using_InaSAFE.rst:569 -msgid "" -"Now you have learned about how to use InaSAFE from using InaSAFE Keyword " -"Wizard to define keyword attribute, how to run InaSAFE with InaSAFE dock and " -"Impact Function Wizard, how to modify minimum needs, and how to use OSM " -"Downloader to download OpenStreetMap data directly. InaSAFE is really " -"helpful for us to know the impact of disaster and how we can create some " -"plans if the disaster were to happen in real life." -msgstr "" -"Sekarang Anda sudah mempelajari bagaimana cara menggunakan InaSAFE dari " -"menggunakan Wizad Pembuat Kata Kunci InaSAFE untuk mendefinisikan atribut " -"keyword, mempelajari bagaimana menjalankan InaSAFE dengan wizard fungsi " -"dampak, bagaimana memodifikasi kebutuhan minimum, dan bagaimana menggunakan " -"alat pengunduh data OpenStreetMap di InaSAFE. InaSAFE sangat membantu kita " -"untuk mengetahui dampak dari bencana dan bagaimana kita bisa membuat sebuah " -"rencana jika bencana terjadi di kehidupan nyata kita." diff --git a/docs/i18n/id/LC_MESSAGES/training/qgis/index.po b/docs/i18n/id/LC_MESSAGES/training/qgis/index.po deleted file mode 100644 index b69eaa31..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/qgis/index.po +++ /dev/null @@ -1,25 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# ada3d350d9f54bd7808ab430a9f6a51e -#: ../../source/training/qgis/index.rst:4 -msgid "QGIS and InaSAFE for Disaster Management" -msgstr "QGIS dan InaSAFE untuk Manajemen Bencana" diff --git a/docs/i18n/id/LC_MESSAGES/training/socialisation/datasets.po b/docs/i18n/id/LC_MESSAGES/training/socialisation/datasets.po deleted file mode 100644 index 6af71768..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/socialisation/datasets.po +++ /dev/null @@ -1,1168 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Sheila Amalia , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 36010ba007eb41a4990cf90a641782b0 -#: ../../source/training/socialisation/datasets.rst:4 -msgid "Datasets" -msgstr "Dataset" - -# e983d89a332544f79a70ee6f30adfa99 -#: ../../source/training/socialisation/datasets.rst:5 -msgid "" -"The data used in this course is available for download at `data.inasafe.org " -"`_. Ask your trainer what data you will need to " -"download for the course, if it is not provided." -msgstr "" -"Data yang digunakan dalam latihan ini dapat di download di `data.inasafe.org " -"`_. Tanyakan pada pelatih Anda data apa saja yang " -"perlu Anda download untuk latihan ini, jika tidak tersedia." - -# ed67dfe299154f77a038f9c2bf6c2b55 -#: ../../source/training/socialisation/datasets.rst:9 -msgid "" -"If you are working through the training independently, use the following " -"data packages:" -msgstr "" -"Jika Anda melakukan pelatihan secara independen, silakan gunakan paket data " -"berikut:" - -# 64eac7614de343b08819b263a0438c30 -#: ../../source/training/socialisation/datasets.rst:12 -msgid "" -"`Introduction to QGIS.zip `_" -msgstr "" -"`Introduction to QGIS.zip `_" - -# 56ba659b9c874e98ad8bab0cb873af97 -#: ../../source/training/socialisation/datasets.rst:13 -msgid "" -"`Run Basic InaSAFE.zip `_" -msgstr "" -"`Run Basic InaSAFE.zip `_" - -# 3259839adacd404a9d84d9d64442b91b -#: ../../source/training/socialisation/datasets.rst:14 -msgid "" -"`Run Intermediate InaSAFE.zip `_" -msgstr "" -"`Run Intermediate InaSAFE.zip `_" - -# ebe02907dd6e4167816116b04fdb12e9 -#: ../../source/training/socialisation/datasets.rst:15 -msgid "" -"`Other Hazards.zip `_" -msgstr "" -"`Other Hazards.zip `_" - -# 3b74b71ab3b14971aaaa77f6af53bcd2 -#: ../../source/training/socialisation/datasets.rst:18 -msgid "Hazard data" -msgstr "Data Ancaman" - -# 2dfc4e49849d489da14b1d6a287e3936 -#: ../../source/training/socialisation/datasets.rst:20 -msgid "Flood Model" -msgstr "Permodelan Banjir" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "File name" -msgstr "" - -# 3482c3edd3de4024a9b9813d9bbc5cc2 -#: ../../source/training/socialisation/datasets.rst:22 -msgid "Jakarta_Flood_HKV_WGS84.tif" -msgstr "Jakarta_Flood_HKV_WGS84.tif" - -# e5293de04c804f88aa51deaee6cf6be0 -# e080ae26a51f46ff91acae2f2949b60e -# 0aa97473835d4ce58c10b9a10218b9b8 -# d14057d0983d48f5a3c6bbeeeaee402b -#: ../../source/training/socialisation/datasets.rst:0 -#, fuzzy -msgid "Training data" -msgstr "Data pelatihan yang tersedia:" - -# 83a1c82904364457b1bea91669f681a5 -#: ../../source/training/socialisation/datasets.rst:23 -msgid "A flood similar to the 2007 Jakarta event" -msgstr "Banjir serupa dengan banjir Jakarta tahun 2007" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Geometry" -msgstr "" - -# 8f31b6f225884fd98ef3206f9adfef5d -# c3af48e8b9c14fd6a5fe1cc82828d45e -# f56b67e74a6341b599f306fa09298778 -# 71c115fcfe474a86a05fd25ec7b43227 -#: ../../source/training/socialisation/datasets.rst:24 -#: ../../source/training/socialisation/datasets.rst:72 -#: ../../source/training/socialisation/datasets.rst:100 -#: ../../source/training/socialisation/datasets.rst:237 -msgid "Raster" -msgstr "Raster" - -# 959321e1b0b546f49800c6ff9cef347e -# 2fcdde3a432b4d89bf0ea5535a8eedb9 -#: ../../source/training/socialisation/datasets.rst:0 -#, fuzzy -msgid "Data Type" -msgstr "Jenis" - -# d354d5f099854c5b9da8e6b9795b87fb -# 1bd5dbb079214d6b9f8e0b6d77d3c131 -# 8b471e7ae400467e99360e3356da7d12 -# d2a1e8d3d6524b4cb0b7485afc1d6066 -#: ../../source/training/socialisation/datasets.rst:25 -#: ../../source/training/socialisation/datasets.rst:73 -#: ../../source/training/socialisation/datasets.rst:101 -#: ../../source/training/socialisation/datasets.rst:238 -msgid "Continuous" -msgstr "Kontinu" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Scenario" -msgstr "" - -# 21f6496f550f4e128547716930f216b2 -# aaeac556086648ed86c7b58b5807655a -# b86269697fe7452292fbe8c8bb29b7b8 -# 73cca060c9ad4372a08d829594b0081e -# 97c93d46df094e77a53923e10d3e33a6 -# 0a96e906f9d643acba1bc35dac49c375 -#: ../../source/training/socialisation/datasets.rst:26 -#: ../../source/training/socialisation/datasets.rst:50 -#: ../../source/training/socialisation/datasets.rst:74 -#: ../../source/training/socialisation/datasets.rst:102 -#: ../../source/training/socialisation/datasets.rst:178 -#: ../../source/training/socialisation/datasets.rst:201 -msgid "Single event" -msgstr "Kejadian tunggal" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Unit" -msgstr "" - -# 149e8ffb6e764840b1edccba96b2666a -#: ../../source/training/socialisation/datasets.rst:27 -msgid "metres" -msgstr "meter" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Source" -msgstr "" - -# 71423240e7dd4da4b533e82e993b5964 -#: ../../source/training/socialisation/datasets.rst:28 -msgid "HKV" -msgstr "HKV" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "URL" -msgstr "" - -# 54be83fd656a41809f13f485a241669c -#: ../../source/training/socialisation/datasets.rst:29 -msgid "http://deltares.nl" -msgstr "http://deltares.nl" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Date" -msgstr "" - -# 8db6ca876b79414a949513b606b91945 -# bb435b5eeb594694b3d76b619040bdfe -# e3dfc78fa1ad4741b1d57b968510fac6 -#: ../../source/training/socialisation/datasets.rst:30 -#: ../../source/training/socialisation/datasets.rst:77 -#: ../../source/training/socialisation/datasets.rst:104 -msgid "2012" -msgstr "2012" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Licence" -msgstr "" - -# 6e92a0b0135b4b618efee53552d7d935 -# c86d51d8f3ff403fa6db1633d14d3314 -# 57c4f2d9a4934c4cb7d29c2cd73baf04 -# 9047e418091a4132a6b1bbcefcc20aec -# 5cc543869f6e437da56fba93737f69a1 -#: ../../source/training/socialisation/datasets.rst:31 -#: ../../source/training/socialisation/datasets.rst:55 -#: ../../source/training/socialisation/datasets.rst:78 -#: ../../source/training/socialisation/datasets.rst:105 -#: ../../source/training/socialisation/datasets.rst:243 -msgid "" -"`Creative Commons by Attribution (CCbyA) `_" -msgstr "" -"`Creative Commons by Attribution (CCbyA) `_" - -# 51f76a52bddb4f0c84103d4f2e6b0cbc -# 63464ee5eb9942e5a88709e6101faa82 -# 05f12c5de5594cc0ae4b9d5f90d33c8b -# 2c1c502ea3a841d480505f401c5c3456 -#: ../../source/training/socialisation/datasets.rst:0 -#, fuzzy -msgid "Coverage" -msgstr "**Cakupan**" - -# 8b3f3a12cda1444e804612f75f88284d -# f854b2b4571b454aadda00b02aa011bd -# 4ecc58d623c24a0a8a3642b9b81e8b91 -# 34a8d76958b64b8eaa3af2f166425b5b -# a99b2152cf1f4bdd9b69a62cbc18df65 -# afd4f76343504231bb1046a762f0aa45 -# cebe3920a6e74ef1a70ccd9d5832e4f3 -# 18f6bdd888194fa196dc1c8396615b0b -#: ../../source/training/socialisation/datasets.rst:0 -#: ../../source/training/socialisation/datasets.rst:32 -#: ../../source/training/socialisation/datasets.rst:56 -#: ../../source/training/socialisation/datasets.rst:265 -#: ../../source/training/socialisation/datasets.rst:266 -#: ../../source/training/socialisation/datasets.rst:309 -#: ../../source/training/socialisation/datasets.rst:375 -#: ../../source/training/socialisation/datasets.rst:402 -#: ../../source/training/socialisation/datasets.rst:403 -msgid "Jakarta" -msgstr "Jakarta" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Description" -msgstr "" - -# d70ec1b1dfd4424f85019618f1c9ea30 -#: ../../source/training/socialisation/datasets.rst:33 -msgid "" -"The flood model was created by scientists/engineers in coordination with DKI " -"Jakarta Public Works based on the 2007 flood conditions. The water depth is " -"the maximum depth occurring across the entire flooding period." -msgstr "" -"Permodelan banjir dibuat oleh para ilmuwan/teknisi berkoordinasi dengan " -"Dinas Pekerjaan Umum DKI Jakarta berdasarkan pada kondisi banjir tahun 2007. " -"Kedalaman air adalah kedalaman maksimal yang terjadi di seluruh periode " -"banjir." - -# 4c064772e98445329faed23ded14aee8 -#: ../../source/training/socialisation/datasets.rst:44 -msgid "Flood Footprint" -msgstr "Riwayat Banjir " - -# 5ae5e32fe71340afb24b706a224c426e -#: ../../source/training/socialisation/datasets.rst:46 -msgid "Jakarta_Flood_18113_WGS84.shp" -msgstr "Jakarta_Flood_18113_WGS84.shp" - -# 0647ac50a2ec4cefb1503b753af32704 -#: ../../source/training/socialisation/datasets.rst:47 -msgid "A flood in Jakarta like 2013" -msgstr "Banjir di Jakarta seperti tahun 2013" - -# cbdf09ed623b446f92d63407ee0b4b50 -# da97b471f1294e10bf082fa20df91193 -# a4a45d45937c4924acf9e476e0170395 -# 0bf12b1fb06d4cc7bdce602c88d25348 -# f9be5d2b9dc94edab737b56fec44ea96 -#: ../../source/training/socialisation/datasets.rst:48 -#: ../../source/training/socialisation/datasets.rst:128 -#: ../../source/training/socialisation/datasets.rst:176 -#: ../../source/training/socialisation/datasets.rst:199 -#: ../../source/training/socialisation/datasets.rst:386 -msgid "Polygon" -msgstr "Poligon" - -# d4d800075769493b8fc528a57af28cb6 -# 12b87bf9b81843cd905def804ebf9aab -# b562f43657eb4d0ea9b25edb827269b3 -# 4a77bd00a27b460d992c3fd45205abee -# e3d0f1af688e487a9ac7de1c7726d117 -# 308befd0204142d7a112cd6b0342feb6 -# 93b45815f08941b9ab3197dba46551f3 -# ed83577125e041689c3438abffc29055 -#: ../../source/training/socialisation/datasets.rst:49 -#: ../../source/training/socialisation/datasets.rst:129 -#: ../../source/training/socialisation/datasets.rst:153 -#: ../../source/training/socialisation/datasets.rst:177 -#: ../../source/training/socialisation/datasets.rst:200 -#: ../../source/training/socialisation/datasets.rst:277 -#: ../../source/training/socialisation/datasets.rst:350 -#: ../../source/training/socialisation/datasets.rst:387 -msgid "Classified" -msgstr "Terklasifikasi" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Attribute field" -msgstr "" - -# bca5770b8fdc4bdaaadfed12767505b5 -#: ../../source/training/socialisation/datasets.rst:51 -msgid "FLOODPRONE" -msgstr "FLOODPRONE" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Attribute value map" -msgstr "" - -# 424e841f79ac4d3da1ddfe544f15ec9e -#: ../../source/training/socialisation/datasets.rst:52 -msgid "Wet (Yes), Dry (No)" -msgstr "Basah (Yes), Kering (No)" - -# 7046bbd47503481383981b566daecc3c -#: ../../source/training/socialisation/datasets.rst:53 -msgid "|OSM| and BPBD DKI Jakarta" -msgstr "|OSM| dan BPBD DKI Jakarta" - -# 524ec28bc5e841f4ab7c5ed923a975fa -#: ../../source/training/socialisation/datasets.rst:54 -msgid "18 January 2013" -msgstr "18 January 2013" - -# 38012497a7204439baead6e0ce799f72 -#: ../../source/training/socialisation/datasets.rst:57 -msgid "" -"Along with sub-village boundaries that were mapped during the DKI mapping " -"project, this dataset was used to identify flood areas based on information " -"provided by the villages." -msgstr "" -"Bersamaan dengan batas RW yang dipetakan selama proyek pemetaan DKI Jakarta, " -"dataset ini digunakan untuk mengidentifikasi area banjir berdasarkan " -"informasi yang diberikan oleh pihak kelurahan." - -# d216a69e89644cceb05ea524ec2da149 -#: ../../source/training/socialisation/datasets.rst:68 -msgid "Earthquake" -msgstr "Gempa bumi" - -# cea1c54c57c84170995439ef2260ab9b -#: ../../source/training/socialisation/datasets.rst:70 -msgid "Padang_EQ_2009_WGS84.tif" -msgstr "Padang_EQ_2009_WGS84.tif" - -# e77643b6c6744f6a8485fe193346d140 -#: ../../source/training/socialisation/datasets.rst:71 -msgid "Earthquake in Padang 2009" -msgstr "Gempa di Padang tahun 2009" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Data type" -msgstr "" - -# 3cabb942c1b2471da6d03c3bba736ff1 -#: ../../source/training/socialisation/datasets.rst:75 -msgid "MMI" -msgstr "MMI" - -# 1a71cca2cfb3418185e392363a270048 -#: ../../source/training/socialisation/datasets.rst:76 -msgid "Badan Geologi and |GoA|" -msgstr "Badan Geologi and |GoA|" - -# ba33bef128f2438489e58f0e2d1978aa -# 047274b9d43549b0bab303d8ccf6f6a6 -# c01b7b7ff62947298c61a0a053cf8fe0 -# 5c96d632622040d89986538d3a7b7080 -#: ../../source/training/socialisation/datasets.rst:0 -#: ../../source/training/socialisation/datasets.rst:79 -#: ../../source/training/socialisation/datasets.rst:267 -#: ../../source/training/socialisation/datasets.rst:310 -#: ../../source/training/socialisation/datasets.rst:406 -msgid "Padang" -msgstr "Padang" - -# 4cad55996668433ca5ef2181abacf171 -#: ../../source/training/socialisation/datasets.rst:80 -msgid "" -"A shakemap is a representation of ground shaking produced by an earthquake. " -"This particular scenario was modelled on the 30th September 2009 Mw 7.9 " -"earthquake in Padang. ShakeMaps are generated automatically following " -"moderate and large earthquakes by USGS. For more information go to " -"http://earthquake.usgs.gov/earthquakes/map/. Pre-event / scenario based " -"shakemaps must be modelled by earthquake specialists." -msgstr "" -"Peta guncangan adalah gambaran pergerakan tanah yang dihasilkan dari gempa " -"bumi. Skenario gempa bumi ini dimodelkan berdasarkan gempa bumi di Padang " -"pada 30 September 2009 Mw 7.9. Peta guncangan secara otomatis dihasilkan " -"berdasarkan kejadian gempa sedang dan besar oleh USGS. Untuk informasi lebih " -"lanjut silakan kunjungi http://earthquake.usgs.gov/earthquakes/map/. Peta " -"pra bencana berdasarkan peta guncangan harus dimodelkan oleh spesialis " -"kebencanaan gempa bumi. " - -# 463862cbc6784e04a6fbf0ef5950693b -#: ../../source/training/socialisation/datasets.rst:96 -msgid "Tsunami" -msgstr "Tsunami" - -# 7d8dd7658f48433494797d30c79661c0 -#: ../../source/training/socialisation/datasets.rst:98 -msgid "Maumere_Tsunami_WGS84.tif" -msgstr "Maumere_Tsunami_WGS84.tif" - -# 8d1e2dcf155044c29f07ad553578cbfa -#: ../../source/training/socialisation/datasets.rst:99 -msgid "Tsunami in Maumere (Mw 8.1)" -msgstr "Tsunami di Maumere (Mw 8.1)" - -# 88ddc799e260421089e61f00e26a4d86 -#: ../../source/training/socialisation/datasets.rst:103 -msgid "|GoA| and Badan Geologi" -msgstr "|GoA| dan Badan Geologi" - -# 4cf325caf78f4567b8c4bed275227bf9 -#: ../../source/training/socialisation/datasets.rst:106 -msgid "Maumere, Flores" -msgstr "Maumere, Flores" - -# fe83097656694d648615797f9d35f4ad -#: ../../source/training/socialisation/datasets.rst:107 -msgid "" -"In September 2011, the Indonesian government held a national exercise in " -"Maumere, Flores. |AIFDR| and |GoA| assisted Badan Geology to develop a " -"tsunami model for Maumere based on an Mw 8.1 earthquake. The Tsunami was " -"modelled using open source software called ANUGA and elevation data from " -"NEXTMap. The water depth is the maximum depth occurring across the entire " -"tsunami event. For more information visit http://anuga.anu.edu.au/ and " -"http://intermap.com/" -msgstr "" -"Pada bulan September 2011, Pemerintah Indonesia mengadakan pelatihan tingkat " -"nasional di Maumere, Flores. |AIFDR| dan |GoA| membantu Badan Geologi untuk " -"mengembangkan model tsunami untuk Maumere berdasarkan gempa bumi " -"berkekuatan 8.1 Mw. Pembuatan model tsunami dilakukan dengan menggunakan " -"perangkat lunak terbuka yaitu ANUGA dan data ketinggian dari NEXTMap. " -"Kedalaman air merupakan kedalaman maksimal yang terjadi selama kejadian " -"tsunami. Untuk informasi lebih lanjut kunjungi http://anuga.anu.edu.au/ dan " -"http://intermap.com/" - -# e6b8ebedcce144f6aac26e844f3c9289 -#: ../../source/training/socialisation/datasets.rst:124 -msgid "Volcano" -msgstr "Gunung Berapi" - -# a6157c7cf4834ea4ab270e4f39adfa5b -#: ../../source/training/socialisation/datasets.rst:126 -msgid "Sinabung_Hazard_Map_2015_WGS84.shp" -msgstr "Sinabung_Hazard_Map_2015_WGS84.shp" - -# c74fc3f28a7f4938a11ebaf4b6f3d51f -#: ../../source/training/socialisation/datasets.rst:127 -msgid "Sinabung Hazard Map" -msgstr "Peta Ancaman Sinabung" - -# 42fb111d16664c9ab0900865333e6562 -# 733887d791934a61bb772422069fc8e6 -#: ../../source/training/socialisation/datasets.rst:130 -#: ../../source/training/socialisation/datasets.rst:154 -msgid "Multiple event" -msgstr "Kejadian majemuk" - -# e9158d53abb148caa3b97a918695a21a -# 1bd89371dda44c459cc7bbcf6637bf4a -# bd9b70959ad34fc1bc93627459cce0b8 -#: ../../source/training/socialisation/datasets.rst:131 -#: ../../source/training/socialisation/datasets.rst:179 -#: ../../source/training/socialisation/datasets.rst:202 -msgid "KRB" -msgstr "KRB" - -# e4085ef697ef4694a8fcba7b7973ab7f -#: ../../source/training/socialisation/datasets.rst:132 -msgid "" -"Kawasan rawan bencana III - High; Kawasan rawan bencana II - Medium; Kawasan " -"rawan bencana I - Low" -msgstr "" -"Kawasan rawan bencana III - Tinggi; Kawasan rawan bencana II - Menengah; " -"Kawasan rawan bencana I - Rendah" - -# 37ec4fa85c3e471cbd5aa3c7b8b515f6 -#: ../../source/training/socialisation/datasets.rst:133 -#: ../../source/training/socialisation/datasets.rst:157 -#: ../../source/training/socialisation/datasets.rst:206 -msgid "PVMBG" -msgstr "PVMBG" - -# 1669d1e00b814e65b626cad1484a4016 -#: ../../source/training/socialisation/datasets.rst:134 -msgid "" -"http://vsi.esdm.go.id/gallery/picture.php?/63/category/7 (published map)" -msgstr "" -"http://vsi.esdm.go.id/gallery/picture.php?/63/category/7 (peta terpublikasi)" - -# 20b411c92d484f1b9771f94c19f1b9b4 -# 52208957f6314225a2f3fe299d4ed9eb -#: ../../source/training/socialisation/datasets.rst:135 -#: ../../source/training/socialisation/datasets.rst:159 -msgid "2015" -msgstr "2015" - -# f82ff5a114e349c49e8d3b3d645b48c7 -# b90cc276fc8843fb823004897fd7c066 -# f37cc19633f54f708595ec73e9342937 -# cb6a70f9ec614de88151f86c82a4d4bb -# 31545b432b024195878011a74807c1e8 -#: ../../source/training/socialisation/datasets.rst:137 -#: ../../source/training/socialisation/datasets.rst:156 -#: ../../source/training/socialisation/datasets.rst:161 -#: ../../source/training/socialisation/datasets.rst:313 -#: ../../source/training/socialisation/datasets.rst:314 -msgid "Sinabung" -msgstr "Sinabung" - -# c53f02cfa1f045a281779db2cce22897 -#: ../../source/training/socialisation/datasets.rst:138 -msgid "" -"This map contains information about the hazard level for each zone. It can " -"be used to identify the potential impact." -msgstr "" -"Peta ini berisi informasi mengenai tingkat ancaman setiap kawasan. Peta ini " -"dapat digunakan untuk mengidentifikasi dampak potensial. " - -# ca520c588cbe44a1808aa8bf747fb0cd -#: ../../source/training/socialisation/datasets.rst:148 -msgid "Volcano Point" -msgstr "Titik Gunung Berapi" - -# 3d3911dcea8c4d0088083563b77513df -#: ../../source/training/socialisation/datasets.rst:150 -msgid "Sinabung_Mount_WGS84.shp" -msgstr "Sinabung_Mount_WGS84.shp" - -# f416931eec684a558b0ba069ddd6f3c4 -#: ../../source/training/socialisation/datasets.rst:151 -msgid "Sinabung Mt" -msgstr "Gunung Sinabung" - -# cda49e6ea5e648e695a67b3cfc4a62a5 -#: ../../source/training/socialisation/datasets.rst:152 -msgid "Point" -msgstr "Titik" - -# d19eb7494fc7473eb7189771d5579873 -#: ../../source/training/socialisation/datasets.rst:0 -#: ../../source/training/socialisation/datasets.rst:155 -msgid "Name" -msgstr "Nama" - -#: ../../source/training/socialisation/datasets.rst:0 -msgid "Attribute value" -msgstr "" - -# 7339574d143548a09c7c79fde3982e1a -#: ../../source/training/socialisation/datasets.rst:158 -msgid "http://vsi.esdm.go.id/gallery/picture.php?/63/category/7 (publish map)" -msgstr "" -"http://vsi.esdm.go.id/gallery/picture.php?/63/category/7 (peta terpublikasi)" - -# 7fc03f8e52644c36abcc5b60c963bc90 -#: ../../source/training/socialisation/datasets.rst:162 -msgid "The data shows the location of Mount Sinabung peak." -msgstr "Data menunjukkan lokasi puncak gunung Sinabung" - -# 46284776b91b41b1b3a6892a65e5cd5d -#: ../../source/training/socialisation/datasets.rst:172 -msgid "Volcanic Ash" -msgstr "Abu Vulkanik" - -# a99469771ee943218c5fe7f83732839c -#: ../../source/training/socialisation/datasets.rst:174 -msgid "Sinabung_Volcanic_Ash_1Feb14_WGS84.shp" -msgstr "Sinabung_Volcanic_Ash_1Feb14_WGS84.shp" - -# 15f966f49a5d445ba5acb92e436b3a44 -#: ../../source/training/socialisation/datasets.rst:175 -msgid "Sinabung Volcanic Ash" -msgstr "Abu Vulkanik Sinabung" - -# 29c79b0bcef045cb9f59ccb7922ce764 -#: ../../source/training/socialisation/datasets.rst:180 -msgid "High; Medium; Low" -msgstr "Tinggi; Menengah; Rendah" - -# a56e5b74bb804bb5908177afbfca246c -#: ../../source/training/socialisation/datasets.rst:181 -msgid "PVMBG - BNPB" -msgstr "PVMBG - BNPB" - -# a18053d244e1474a9172c84cfeedab86 -#: ../../source/training/socialisation/datasets.rst:183 -msgid "2014" -msgstr "2014" - -# 914c1ccaadbf42768ff20faeb56098ac -#: ../../source/training/socialisation/datasets.rst:185 -msgid "Sinabung region" -msgstr "Wilayah Sinabung" - -# 2001a5416834425aac1a22630e56b3af -#: ../../source/training/socialisation/datasets.rst:186 -msgid "" -"The data show the spread of volcanic ash from Mount Sinabung during the 2014 " -"eruption." -msgstr "" -"Data menunjukkan sebaran abu vulkanik Gunung Sinabung selama erupsi tahun " -"2014" - -# df566daa16ee4c7bb6e6aa47f697ae6a -#: ../../source/training/socialisation/datasets.rst:195 -msgid "Landslide" -msgstr "Tanah Longsor" - -# c1dd084ca02f4fcabed64052a4ac94d0 -#: ../../source/training/socialisation/datasets.rst:197 -msgid "NGK_Landslide_Vulnerability_WGS84.shp" -msgstr "NGK_Landslide_Vulnerability_WGS84.shp" - -# 2470a9cc7cc44d9587149754989f8ada -#: ../../source/training/socialisation/datasets.rst:198 -msgid "Landslide Hazard Zone" -msgstr "Zona Ancaman Tanah Longsor" - -# 56396c730fdf42f5b00eb97c5c26d7ff -#: ../../source/training/socialisation/datasets.rst:203 -msgid "" -"High Landslide Vulnerability Zone - High; Moderate Landslide Vulnerability " -"Zone - Medium; Low Landslide Vulnerability Zone - Low" -msgstr "" -"High Landslide Vulnerability Zone - Tinggi; Moderate Landslide Vulnerability " -"Zone - Menengah; Low Landslide Vulnerability Zone - Rendah" - -# 82c3808e6fc24995beccb1a6518d54ab -#: ../../source/training/socialisation/datasets.rst:207 -msgid "" -"http://vsi.esdm.go.id/gallery/picture.php?/230/category/14 (published map)" -msgstr "" -"http://vsi.esdm.go.id/gallery/picture.php?/230/category/14 (peta " -"terpublikasi)" - -# 0ae48b22aa894ffdb45225e62752ac6a -#: ../../source/training/socialisation/datasets.rst:208 -msgid "2009" -msgstr "2009" - -# b4e0b661230243eb9bc3c7ee43dbd563 -#: ../../source/training/socialisation/datasets.rst:211 -msgid "" -"Landslide vulnerability maps show the regions where landslides may occur. " -"Topographic and landuse changes after mapping can change the landslide zone " -"in the map. The high vulnerability zone is to be avoided for settlement " -"areas or strategic infrastructure. If it can't be avoided, build on the " -"moderate zone, but detailed research is needed to avoid landslide happen. In " -"moderate zone, detailed research is also needed when planning to cut the " -"slope." -msgstr "" -"Peta kerentanan tanah longsor menunjukkan lokasi dimana tanah longsor " -"kemungkinan dapat terjadi. Topografi dan perubahan penggunaan lahan setelah " -"pemetaan dapat mengubah zona tanah longsor pada peta. Zona kerentanan " -"tinggi harus harus dihindari untuk daerah pemukiman atau infrastruktur " -"strategis. Jika hal tersebut tidak dapat dihindari, bangun di zona menengah, " -"tetapi penelitian lebih detail diperlukan untuk menghindari longsor terjadi. " -"Pada zona menengah, penlitian yang detail juga diperlukan ketika perencanaan " -"untuk memotong lereng. " - -# 9123112aa20349eeb444fbcb32d7df80 -#: ../../source/training/socialisation/datasets.rst:229 -msgid "Exposure data" -msgstr "Data keterpaparan" - -# 97f5f3d6a2fd4accbafa81f7b8a233c0 -#: ../../source/training/socialisation/datasets.rst:232 -msgid "Population" -msgstr "Populasi" - -# 320d560dc6934bbca5f9efcd111cada1 -#: ../../source/training/socialisation/datasets.rst:235 -msgid "World_Population" -msgstr "World_Population" - -# f038a5fc3ab24f8f8859028ce74c816a -# c775a35d8c0740e5b4ad878d9385a9a6 -#: ../../source/training/socialisation/datasets.rst:236 -#: ../../source/training/socialisation/datasets.rst:275 -#: ../../source/training/socialisation/datasets.rst:348 -#: ../../source/training/socialisation/datasets.rst:385 -msgid "see table below" -msgstr "lihat tabel di bawah" - -# d35d4c1c6aff447d9c9f0b1789230926 -#: ../../source/training/socialisation/datasets.rst:239 -msgid "Count" -msgstr "Jumlah" - -# 645f6d0c78244ac994fb44619df1c59d -#: ../../source/training/socialisation/datasets.rst:240 -msgid "World Pop" -msgstr "World Pop" - -# 3c7b070c97ce47b1afabe806ca13fc8f -#: ../../source/training/socialisation/datasets.rst:241 -msgid "http://worldpop.org.uk" -msgstr "http://worldpop.org.uk" - -# 54d4289c9fd349409ba116754d27ecf8 -# 05c1665f419941efb7932623f2500536 -#: ../../source/training/socialisation/datasets.rst:242 -#: ../../source/training/socialisation/datasets.rst:392 -msgid "2010" -msgstr "2010" - -# 1f38f636a8af4a9ea35a114b11f8f48b -#: ../../source/training/socialisation/datasets.rst:244 -msgid "ASEAN +" -msgstr "ASEAN +" - -# 0629f88d31c94b0689987e12818ce8ed -#: ../../source/training/socialisation/datasets.rst:245 -msgid "" -"High resolution (1 pixel represents 100m x 100m, contemporary data on human " -"population distributions are a prerequisite for the accurate measurement of " -"the impacts of population growth, for monitoring changes and for planning " -"interventions. The AsiaPop project was initiated in July 2011 with the aim " -"of producing detailed and freely-available population distribution maps for " -"the whole of Asia. This project has expanded as the World Pop project to " -"include other continents." -msgstr "" -"Resolusi tinggi (1 pixel mewakili 100m x 100m), data kontemporer tentang " -"distribusi populasi manusia merupakan prasyarat untuk pengukuran akurat dari " -"dampak pertumbuhan penduduk, untuk memantau perubahan dan intervensi " -"perencanaan. Proyek AsiaPop dimulai sejak Juli 2011 dengan tujuan untuk " -"menghasilkan peta penyebaran penduduk yang rinci dan bebas-tersedia untuk " -"seluruh Asia. Proyek ini telah diperluas sebagai proyek World Pop untuk " -"menyertakan benua lain. " - -# e5293de04c804f88aa51deaee6cf6be0 -# e080ae26a51f46ff91acae2f2949b60e -# 0aa97473835d4ce58c10b9a10218b9b8 -# d14057d0983d48f5a3c6bbeeeaee402b -#: ../../source/training/socialisation/datasets.rst:261 -#: ../../source/training/socialisation/datasets.rst:305 -#: ../../source/training/socialisation/datasets.rst:371 -#: ../../source/training/socialisation/datasets.rst:398 -msgid "Training data provided:" -msgstr "Data pelatihan yang tersedia:" - -# a63dfff360b64d3fbbd6951324fd1b6d -# 3d602a05639a40d28111a4356ad31692 -# 824d2293a32f4fbeb261cbd559b880bb -# ce947515492e473a87c67eef36e76738 -#: ../../source/training/socialisation/datasets.rst:264 -#: ../../source/training/socialisation/datasets.rst:308 -#: ../../source/training/socialisation/datasets.rst:374 -#: ../../source/training/socialisation/datasets.rst:401 -msgid "**Training Package**" -msgstr "**Paket Pelatihan**" - -# ddfae41ff14a43fd81862c5320dae490 -# af043a409a7d49129bfe1284c67e2b91 -# 82544a88203d4642a79d4a54cadbc6c2 -# 55577286200c47b881f002e54f4d84ee -#: ../../source/training/socialisation/datasets.rst:264 -#: ../../source/training/socialisation/datasets.rst:308 -#: ../../source/training/socialisation/datasets.rst:374 -#: ../../source/training/socialisation/datasets.rst:401 -msgid "**Name**" -msgstr "**Nama**" - -# 51f76a52bddb4f0c84103d4f2e6b0cbc -# 63464ee5eb9942e5a88709e6101faa82 -# 05f12c5de5594cc0ae4b9d5f90d33c8b -# 2c1c502ea3a841d480505f401c5c3456 -#: ../../source/training/socialisation/datasets.rst:264 -#: ../../source/training/socialisation/datasets.rst:308 -#: ../../source/training/socialisation/datasets.rst:374 -#: ../../source/training/socialisation/datasets.rst:401 -msgid "**Coverage**" -msgstr "**Cakupan**" - -# c52adc38f16a4eb39dedf3bb93d2ce30 -# 1727da6a65924756a40b90131c9ff179 -#: ../../source/training/socialisation/datasets.rst:265 -#: ../../source/training/socialisation/datasets.rst:309 -msgid "Basic InaSAFE" -msgstr "InaSAFE Tingkat Dasar" - -# d79dcb510c1a44db8f6e0820183cc41f -# 20e5afedfc5942bba6a57b18660ba59c -#: ../../source/training/socialisation/datasets.rst:265 -#: ../../source/training/socialisation/datasets.rst:266 -msgid "Jakarta_Population_WGS84" -msgstr "Jakarta_Population_WGS84" - -# 10b564ce4d6c4681ab0ceb253ec2abd6 -#: ../../source/training/socialisation/datasets.rst:266 -msgid "Intermediate InaSAFE" -msgstr "Inasafe Tingkat Menengah " - -# ca8348cca5e54c8fbe2410d69e22fd6f -# acc68363f30f4ac388585b6237fa5953 -# 226ce3cc8e3a426796bf00478826573a -# 0deb06e45b6648f196e74805953dd329 -# 5afd5e96603f4c42bf3ccfe639b72c66 -# 830e338043bf45a5abf8bae78b97e5a4 -# 2ca4ea56875b475986c6737dc6ea5494 -# a5d0288f5a96437fa862ceeedd1854f7 -# ba26faa3f6394ec19ed258a8cb5e07db -# 05b1f148e5a143039a90baec48fc84bf -#: ../../source/training/socialisation/datasets.rst:267 -#: ../../source/training/socialisation/datasets.rst:268 -#: ../../source/training/socialisation/datasets.rst:310 -#: ../../source/training/socialisation/datasets.rst:311 -#: ../../source/training/socialisation/datasets.rst:312 -#: ../../source/training/socialisation/datasets.rst:313 -#: ../../source/training/socialisation/datasets.rst:314 -#: ../../source/training/socialisation/datasets.rst:404 -#: ../../source/training/socialisation/datasets.rst:405 -#: ../../source/training/socialisation/datasets.rst:406 -msgid "Other Hazards" -msgstr "Bencana Lainnya" - -# 0b4491c58d364371ac69c00589e80426 -#: ../../source/training/socialisation/datasets.rst:267 -msgid "West_Sumatera_Population_WGS84" -msgstr "West_Sumatera_Population_WGS84" - -# e4be0bacd64a45ed98927c4d5cd1fd4f -#: ../../source/training/socialisation/datasets.rst:268 -msgid "NGK_Population_WGS84" -msgstr "NGK_Population_WGS84" - -# 24d463f49ccf431c9c1360c6135e0813 -# dc7849fa89e44d309bd3de6aeb3d6db8 -#: ../../source/training/socialisation/datasets.rst:268 -#: ../../source/training/socialisation/datasets.rst:312 -msgid "Nagekeo" -msgstr "Nagekeo" - -# 9de9f62a15244824b39ed77e7761d449 -#: ../../source/training/socialisation/datasets.rst:272 -msgid "Buildings" -msgstr "Bangunan" - -# f01ff0ae510a420f90bc300271296a99 -#: ../../source/training/socialisation/datasets.rst:274 -msgid "OSM Buildings" -msgstr "OSM Buildings" - -# e5012f1df09c418c80a75d7fcc3e6ff3 -#: ../../source/training/socialisation/datasets.rst:276 -msgid "Polygon or point" -msgstr "Poligon atau titik" - -# 959321e1b0b546f49800c6ff9cef347e -# 2fcdde3a432b4d89bf0ea5535a8eedb9 -#: ../../source/training/socialisation/datasets.rst:278 -#: ../../source/training/socialisation/datasets.rst:351 -msgid "Type" -msgstr "Jenis" - -# d5ee4d29c94f4867a09568de8590aaa5 -#: ../../source/training/socialisation/datasets.rst:279 -msgid "hospital, school, clinic, etc" -msgstr "hospital, school, clinic, etc" - -# 6f1ef79fbdc04b9c9ec91a6a7a23ce58 -# 2fa710505f09415889c8a75658deb5ca -#: ../../source/training/socialisation/datasets.rst:282 -#: ../../source/training/socialisation/datasets.rst:353 -msgid "OpenStreetMap" -msgstr "OpenStreetMap" - -# 58a34119da79454eba3e7718819c09b2 -# 35ec34d831234a5098de376a29866854 -#: ../../source/training/socialisation/datasets.rst:283 -#: ../../source/training/socialisation/datasets.rst:354 -msgid "http://openstreetmap.org" -msgstr "http://openstreetmap.org" - -# 6cbdf43903b4484f9db1adc44678ef5d -# 0d16e5989759407dad64d2d2cf310ed2 -#: ../../source/training/socialisation/datasets.rst:284 -#: ../../source/training/socialisation/datasets.rst:355 -msgid "July 2015" -msgstr "Juli 2015" - -# e9487f8da3624017a4e25e507c82fce3 -# b5a1af07513d44bdbbc4bb722b621a63 -#: ../../source/training/socialisation/datasets.rst:285 -#: ../../source/training/socialisation/datasets.rst:356 -msgid "" -"`Open Data Commons Open Database License (ODbL) `_" -msgstr "" -"`Open Data Commons Open Database License (ODbL) `_" - -# faeda11d8b804e0dabf132f4337a45e0 -# 70c8be89efb747459a19b0d71e3de4a2 -#: ../../source/training/socialisation/datasets.rst:286 -#: ../../source/training/socialisation/datasets.rst:357 -msgid "World - incomplete" -msgstr "Dunia - tidak lengkap" - -# 43d101cf381d46a49fc1242bb195a175 -#: ../../source/training/socialisation/datasets.rst:287 -msgid "" -"OpenStreetMap is a collaborative project to create a free editable map of " -"the world. Two major driving forces behind the establishment and growth of " -"OSM have been restrictions on the use or availability of map information " -"across much of the world and the advent of inexpensive portable satellite " -"navigation devices." -msgstr "" -"OpenStreetMap merupakan sebuah proyek kolaborasi untuk membuat peta yang " -"dapat diedit secara bebas di seluruh dunia. Dua kekuatan utama dibalik " -"pembentukan dan pertumbuhan OSM terletak pada pengguna serta ketersediaan " -"informasi peta di seluruh dunia dan munculnya perangkat navigasi satelit " -"portabel yang murah. " - -# 064d69bbc450427f8324205ac06cdb7c -#: ../../source/training/socialisation/datasets.rst:299 -msgid "" -"|GoA| has been working with the Humanitarian OpenStreetMap Team (HOT) since " -"2011 to pilot and train OpenStreetMap data capture in Indonesia. So far over " -"12 million buildings have been mapped. Some of the scenarios we use in the " -"training materials are situated in Jakarta, Yogyakarta (Merapi), Sumatra " -"(Padang) and Flores (Maumere)." -msgstr "" -"|GoA| telah bekerjasama dengan Humanitarian OpenStreetMap Team (HOT) sejak " -"tahun 2011 untuk memulai dan melatih teknik pengambilan data OpenStreetMap " -"di Indonesia . Sejauh ini, lebih dari 12 juta bangunan telah dipetakan. " -"Beberapa skenario yang akan digunakan dalam pelatihan ini berlokasi di " -"Jakarta, Yogyakarta (Merapi), Sumatra (Padang) dan Flores (Maumere). " - -# 234cd2fac1aa4e588fcdf53cf8631d10 -#: ../../source/training/socialisation/datasets.rst:309 -msgid "Jakarta_Buildings_WGS84" -msgstr "Jakarta_Buildings_WGS84" - -# bfed202a8a064e638a0b6c3a6f5cf7e5 -#: ../../source/training/socialisation/datasets.rst:310 -msgid "Padang_Buildings_WGS84" -msgstr "Padang_Buildings_WGS84" - -# 0c8af832f5064510a3fe872da7cf90f0 -#: ../../source/training/socialisation/datasets.rst:311 -msgid "Maumere_Buildings_WGS84" -msgstr "Maumere_Buildings_WGS84" - -# 39b8c7774ac5466d983e2f53aa02f4c6 -# 8a5f33a86e78439694726aaef100352a -#: ../../source/training/socialisation/datasets.rst:311 -#: ../../source/training/socialisation/datasets.rst:404 -msgid "Maumere" -msgstr "Maumere" - -# 92d84694fb5a4f9fb6ccfe0e7c127384 -#: ../../source/training/socialisation/datasets.rst:312 -msgid "NGK_Buildings_WGS84" -msgstr "NGK_Buildings_WGS84" - -# 76e52862e0e04e4da4c0a9b8334048df -#: ../../source/training/socialisation/datasets.rst:313 -msgid "Sinabung_Buildings_WGS84" -msgstr "Sinabung_Buildings_WGS84" - -# 267e94aa89fb4aa8bc08f9683f2aa3c5 -#: ../../source/training/socialisation/datasets.rst:314 -msgid "Sinabung_Building-points_WGS84" -msgstr "Sinabung_Building-points_WGS84" - -# 8466ffed68c24835bc05e6edf9278531 -#: ../../source/training/socialisation/datasets.rst:318 -msgid "" -"Each one of these areas has a different OpenStreetMap data collection " -"methodology. Below the data collection methodologies used in Jakarta and " -"Padang are explained:" -msgstr "" -"Masing-masing daerah memiliki metodologi pengumpulan data OpenStreetMap yang " -"berbeda. Metodologi pengumpulan data yang digunakan di Jakarta dan Padang " -"akan dijelaskan sebagi berikut:" - -# 1179b6aee2c240618d9e077738c63199 -#: ../../source/training/socialisation/datasets.rst:322 -msgid "" -"BPBD DKI Jakarta (Regional Disaster Managers) and |BNPB| (National Disaster " -"Managers) with assistance from |GoA|, the World Bank, UNOCHA, HOT and " -"University of Indonesia, held workshops in each of Jakarta's six districts " -"in order to help village heads map their community boundaries and major " -"infrastructure. Over 500 representatives from Jakarta's 267 villages " -"participated in these workshops and have mapped an impressive 6,000 " -"buildings and all 2,668 sub-village boundaries (Rukun Warga-RW). For more " -"information go to `AIFDR Website `_" -msgstr "" -"BPBD (Badan Penanggulangan Bencana Daerah) DKI Jakarta dan |BNPB| (Badan " -"Nasional Penanggulangan Bencana) dengan bantuan dari |GoA|, Bank Dunia, " -"UNOCHA, HOT dan Universitas Indonesia, melaksanakan pelatihan di 6 wilayah " -"kotamadya di Jakarta untuk membantu Kepala Kelurahan memetakan batas wilayah " -"dan infrastruktur penting di masing-masing kelurahan. Lebih daru 500 " -"perwakilan dari 267 kelurahan berpartisipasi dalam pelatihan ini dan telah " -"memetakan 6,000 bangunan dengan 2,668 batas RW (Rukun Warga). Untuk " -"informasi lebih lanjut kunjungi `Website AIFDR `_" - -# d655885f935d43d089e486b34458080a -#: ../../source/training/socialisation/datasets.rst:332 -msgid "" -"After the Haiti earthquake in 2010, there was a large effort to map Haiti " -"through OSM. Coordinating this effort was difficult, and so |GoA| funded the " -"creation of the OSM Tasking Manager. The OSM Tasking Manager is a web-based " -"tool in which a designated area is easily divided into a grid, and " -"individual users can select one piece at a time to quickly work together and " -"digitally map the target area. The tool was first piloted in Padang, where " -"contributors from around the world helped digitise over 95,000 buildings. " -"However, the buildings are only footprints - an on the ground mapping effort " -"is needed to record attributes about each building. The tool is now being " -"used across the world to coordinate OSM mapping efforts. It is available at " -"`tasks.hotosm.org `_" -msgstr "" -"Pasca bencana gempa bumi di Haiti tahun 2010, ada upaya besar untuk " -"memetakan Haiti menggunakan |OSM|. Namun, mengkoordinasikan hal ini sangat " -"sulit, sehingga |GoA| kemudian mendanai pembuatan server tasking manager " -"OSM. Server Tasking Manager OSM merupakan sebuah perangkat berbasis web yang " -"membagi sebuah area menjadi beberapa grid berbeda, sehingga masing-masing " -"pengguna dapat memilih gridnya masing-masing dan secara digital mampu " -"memetakan wilayah yang sama dalam waktu bersamaan. Perangkat ini digunakan " -"pertama kali di Padang, dimana para kontributor dari seluruh dunia berhasil " -"memetakan 95.000 bangunan. Bagaimanapun, bangunan-bangunan yang dipetakan " -"hanyalah batas tapak bangunannya saja - upaya pemetaan lapangan diperlukan " -"untuk mengidentifikasi jenis bangunannya. Perangkat ini terus digunakan " -"untuk mengkoordinasikan pemetaan menggunakan OSM. Kunjungi `tasks.hotosm.org " -"`_" - -# 5764b09adff2484d92aae3259c50c8f7 -# 9113dfc86e9642c5a07295c2f4bdd4b6 -#: ../../source/training/socialisation/datasets.rst:345 -msgid "Roads" -msgstr "Jalan" - -# 1d5badf44f00444fa0d6888ff027347e -#: ../../source/training/socialisation/datasets.rst:347 -msgid "OSM Roads" -msgstr "OSM Roads" - -# 0b500f97b96f462488c5d8002d0dac6d -#: ../../source/training/socialisation/datasets.rst:349 -msgid "Line" -msgstr "Garis" - -# 48ceb85836504bd98acb6b1b3af06646 -#: ../../source/training/socialisation/datasets.rst:352 -msgid "types of roads" -msgstr "Tipe jalan" - -# 23f1198a3d8b4277b746575e70204c6f -#: ../../source/training/socialisation/datasets.rst:358 -msgid "" -"OpenStreetMap is a collaborative project to create a free editable map of " -"the world. Two major driving forces behind the establishment and growth of " -"OSM have been restrictions on use or availability of map information across " -"much of the world and the advent of inexpensive portable satellite " -"navigation devices." -msgstr "" -"OpenStreetMap adalah proyek kolaborasi untuk membuat peta yang dapat diedit " -"secara bebas di seluruh dunia. Dua kekuatan pendorong utama dibalik " -"pembentukan dan pertumbuhan OSM terletak pada pengguna serta ketersediaan " -"informasi peta di dunia dan munculnya perangkat navigasi satelit portabel " -"yang murah." - -# 6bffe1233b3a4d7d94d9a0d3e7277911 -#: ../../source/training/socialisation/datasets.rst:375 -msgid "QGIS Introduction" -msgstr "Pengantar QGIS" - -# 1e5d7d12e3014f938f31edd15f0ffb22 -#: ../../source/training/socialisation/datasets.rst:375 -msgid "Jakarta_Roads_WGS84" -msgstr "Jakarta_Roads_WGS84" - -# 3f9acfb868e04532b2482c9474cc88a6 -#: ../../source/training/socialisation/datasets.rst:379 -msgid "Aggregation Data" -msgstr "Data Agregasi" - -# a11850b69c1248b4ad106551824e0fda -# 334e14ab17844aa38099da17b45596f6 -#: ../../source/training/socialisation/datasets.rst:382 -#: ../../source/training/socialisation/datasets.rst:384 -msgid "Administrative Boundary" -msgstr "Batas Administrasi" - -# 7fc1b96da57041f6b4d14cad21a3ad58 -#: ../../source/training/socialisation/datasets.rst:388 -msgid "Kabupaten / Kecamatan / Desa" -msgstr "Kabupaten / Kecamatan / Desa" - -# c0f48d3d36704f089b1fa36a58b5d8a2 -#: ../../source/training/socialisation/datasets.rst:389 -msgid "toponymy of the area" -msgstr "Toponimi area" - -# 29d5b476894b40659edee1ae251c1d86 -#: ../../source/training/socialisation/datasets.rst:390 -msgid "BPS" -msgstr "BPS" - -# 2c4ebe29b5cb48d7920cfc26ab7eb1cd -#: ../../source/training/socialisation/datasets.rst:395 -msgid "Administrative boundaries in Indonesia" -msgstr "Batas administrasi di Indonesia" - -# eadaac501937467390f1736030625e2f -# ce246f0f52f14b17ac50ebc026fb48d3 -#: ../../source/training/socialisation/datasets.rst:402 -#: ../../source/training/socialisation/datasets.rst:403 -msgid "Run Intermediate InaSAFE" -msgstr "InaSAFE Tingkat Menengah" - -# c26add1d6a4b41709b740ed82a81e84f -#: ../../source/training/socialisation/datasets.rst:402 -msgid "Jakarta_District_Boundary_WGS84" -msgstr "Jakarta_District_Boundary_WGS84" - -# 5f16b5c5890d4c38a3bf5dcbeab39153 -#: ../../source/training/socialisation/datasets.rst:403 -msgid "Jakarta_Subdistrict_Boundary_WGS84" -msgstr "Jakarta_Subdistrict_Boundary_WGS84" - -# b05546b311cf44a48d95ef72c7727d1b -#: ../../source/training/socialisation/datasets.rst:404 -msgid "Sikka_Village_Boundary_WGS84" -msgstr "Sikka_Village_Boundary_WGS84" - -# f9cf124bece547ab99db06bcdc8c2449 -#: ../../source/training/socialisation/datasets.rst:405 -msgid "NGK_Villages_BPS_WGS84" -msgstr "NGK_Villages_BPS_WGS84" - -# f3ba70b11bf44ca89b34c1db17043aa4 -#: ../../source/training/socialisation/datasets.rst:405 -msgid "Nagakeo" -msgstr "Nagakeo" - -# 9d58d97fd76143d8beb5a438417854f0 -#: ../../source/training/socialisation/datasets.rst:406 -msgid "Padang_Village_Boundary_WGS84" -msgstr "Padang_Village_Boundary_WGS84" diff --git a/docs/i18n/id/LC_MESSAGES/training/socialisation/faq.po b/docs/i18n/id/LC_MESSAGES/training/socialisation/faq.po deleted file mode 100644 index 53b6e74e..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/socialisation/faq.po +++ /dev/null @@ -1,318 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2016\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 955217cd8b0a41b3a43492ee8e3c4725 -#: ../../source/training/socialisation/faq.rst:4 -msgid "Frequently Asked Questions" -msgstr "Pertanyaan Yang Sering Muncul" - -# 3bfcf0559da84ab7893c6ef4570d440d -#: ../../source/training/socialisation/faq.rst:5 -msgid "" -"A short list of questions to assist course participants with the common " -"questions asked by new users when performing a natural disaster scenario " -"analysis with QGIS and InaSAFE." -msgstr "" -"Pelatihan singkat yang ditujukan untuk \"mengenalkan\" kepada peserta " -"mengenai dasar alur kerja yang biasanya dijalankan ketika menjalankan " -"analisis skenario bencana dengan QGIS dan |project_name|." - -# 349b913c42d04ef48bff08e2381ca5e4 -#: ../../source/training/socialisation/faq.rst:11 -msgid "" -"*What are the important things that need to be prepared before running " -"InaSAFE?*" -msgstr "*Hal penting apa yang harus dipersiapkan sebelum menjalankan InaSAFE?*" - -# 14f4365fa67644afa0b0f3a64f85ea6d -#: ../../source/training/socialisation/faq.rst:13 -msgid "To run InaSAFE you need one hazard dataset and one exposure dataset." -msgstr "" -"Untuk menjalankan InaSAFE Anda membutuhkan satu data bencana dan satu data " -"paparan." - -# bf77b1ecfa5c4a47b894ea6af7511d6f -#: ../../source/training/socialisation/faq.rst:14 -msgid "" -"The data must have keywords defined (current version) and it must be turned " -"on." -msgstr "" -"Data tersebut harus mempunyai kata kunci yang terdefinisikan (berdasarkan " -"versi saat ini) dan harus dalam keadaan aktif." - -# 6076903db7df41b6b638137d5cc5b18a -#: ../../source/training/socialisation/faq.rst:15 -msgid "There must be an overlap between the hazard and exposure layers." -msgstr "" -"Data ini juga harus saling bertumpang tindih antara data ancaman dan data " -"paparan." - -# e3bb55b6917a4e60833ca7ab78ebfa60 -#: ../../source/training/socialisation/faq.rst:18 -msgid "*Why are there is no active layers available in the InaSAFE dock?*" -msgstr "*Mengapa tidak ada layer aktif yang muncul pada panel InaSAFE?*" - -# 74d6ae82f89946adb04344ee7672ccaf -#: ../../source/training/socialisation/faq.rst:20 -msgid "Check that your data layers are turned on" -msgstr "Pastikan bahwa data anda sudah dalam keadaan aktif" - -# 7b2f0ed0dc854a90a80ae71481f0a0e2 -#: ../../source/training/socialisation/faq.rst:21 -msgid "Check that the layers have keywords defined." -msgstr "Pastikan bahwa layer anda mempunyai kata kunci yang terdefinisikan." - -# 4ff0323a0d7e40e9b8419cd22cb40675 -#: ../../source/training/socialisation/faq.rst:22 -msgid "" -"If keywords are not defined or are not current, use the keywords wizard." -msgstr "" -"Jika kata kunci tidak terdefinisikan atau tidak sesuai dengan versi sat ini, " -"gunakan keyword wizard." - -# 2e071260b4fd43e0b0719b51e40c1aee -#: ../../source/training/socialisation/faq.rst:25 -msgid "" -"*The data has keywords defined, but it is not showing up in the dock as an " -"option for InaSAFE analysis?*" -msgstr "" -"*Data sudah mempunyai kata kunci, tapi tidak muncul pada panel InaSAFE " -"sebagai opsi untuk analisis InaSAFE?*" - -# b06202732f234364bcf3847f6335726d -#: ../../source/training/socialisation/faq.rst:27 -msgid "Check the keyword version is the same with the InaSAFE version." -msgstr "Cek kembali versi kata kunci sesuai dengan versi InaSAFE." - -# 61f3e360721941e789df85ca1c257929 -#: ../../source/training/socialisation/faq.rst:28 -msgid "Use the keywords wizard tools and update your keywords if necessary." -msgstr "" -"Gunakan tool wizard kata kunci dan update kembali kata kunci anda jika " -"dibutuhkan." - -# 4a6b64ecf5494c9b8a1150ff23d195c2 -#: ../../source/training/socialisation/faq.rst:29 -msgid "Check that the layer appears in the map and is turned on." -msgstr "Cek jika layer tersebut muncul di peta dan dalam kondisi aktif." - -# 96b9304b74364e4db046a710be44ba77 -#: ../../source/training/socialisation/faq.rst:32 -msgid "" -"*The data has keywords and is showing up in the dock, but there is no option " -"in the \"might\" list?*" -msgstr "" -"*Data sudah mempunyai kata kunci dan muncul di dok tetapi tidak ada opsi di " -"kolom \"mungkin\"?*" - -# 74d84c6c4b3a49088e11ad467ea5156c -#: ../../source/training/socialisation/faq.rst:34 -msgid "The impact function for that data might not be available yet." -msgstr "Fungsi dampak untuk data tersebut mungkin belum tersedia." - -# 8b3366f5abd548e491c345a3a94fbcfb -#: ../../source/training/socialisation/faq.rst:35 -msgid "" -"`See the list of available impact functions in InaSAFE concepts .. `__" -msgstr "" -"`Lihat kembali fungsi dampak yang tersedia pada Konsep InaSAFE .. `__" - -# 181ee2e2db7a4b09936c26aa0aeacfe4 -#: ../../source/training/socialisation/faq.rst:38 -msgid "*Can InaSAFE summarise the impact summary results for different areas?*" -msgstr "" -"*Bisakah InaSAFE memberikan ringkasan analisis dampak untuk area yang " -"berbeda?*" - -# 376846bd52bf4b5484ef0ae5634b5665 -#: ../../source/training/socialisation/faq.rst:40 -msgid "" -"Yes, you can use the aggregation feature in InaSAFE to summarise the impact " -"summary results for smaller areas such as administration districts." -msgstr "" -"Ya, Anda bisa menggunakan fitur agregasi di InaSAFE untuk membagi hasil " -"analisis dampak untuk area kecil seperti batas administrasi." - -# 1cf9b9c856c14689bd2abb5c383fe4e5 -#: ../../source/training/socialisation/faq.rst:44 -msgid "" -"*Why are there no options for population in the keyword for my vector " -"population data?*" -msgstr "" -"*Mengapa tidak ada opsi untuk populasi didalam kata kunci untuk data vektor " -"populasi saya?*" - -# 719515cdb74a45f4a49fdb8b72ba4be9 -#: ../../source/training/socialisation/faq.rst:46 -msgid "Make sure that your population data in raster format" -msgstr "Pastikan bahwa data populasi anda dalam format raster" - -# 177451b809c241fc9f2e10226d18bd4c -#: ../../source/training/socialisation/faq.rst:47 -msgid "The current version of InaSAFE only supports raster population data." -msgstr "Versi InaSAFE saat ini hanya mendukung data raster untuk populasi." - -# ba83eae8effd4fdab8beccc030045885 -#: ../../source/training/socialisation/faq.rst:48 -msgid "" -"`See more in InaSAFE concepts .. `__" -msgstr "" -"`Lihat kembali fungsi dampak yang tersedia pada Konsep InaSAFE .. `__" - -# 57d74f9dd3de42318a991ead6420f923 -#: ../../source/training/socialisation/faq.rst:51 -msgid "" -"*Can InaSAFE be used to analyse hazard data besides flood, tsunami, " -"earthquake and volcanic hazard?*" -msgstr "" -"*Bisakah InaSAFE digunakan untuk analisis data ancaman selain banjir, " -"tsunami, gempa dan letusan gunung berapi?*" - -# f5dab60655bd4d83a215de9b75d2870e -#: ../../source/training/socialisation/faq.rst:53 -msgid "" -"Yes it can. InaSAFE has a Generic Hazard Impact Function that can be used to " -"analyse other hazards as long as the data are classified." -msgstr "" -"Ya itu memungkinkan. InaSAFE mempunyai fungsi dampak generik yang bisa " -"digunakan untuk menganalisis bencana lain selama data tersebut berupa kelas " -"data." - -# 241bcf0ca3234cfba4edb2368f88ce0b -#: ../../source/training/socialisation/faq.rst:55 -msgid "Classified data will have values such as Low, Medium and High." -msgstr "" -"Klasifikasi data akan mempunyai nilai seperti Rendah, Sedang, dan Tinggi." - -# c159269c57d44b7a8bafaff9f072f1cc -#: ../../source/training/socialisation/faq.rst:58 -msgid "" -"*Why is there some data that is not relevant showing on my pdf map when I " -"print?*" -msgstr "" -"*Mengapa terdapat data yang tidak relevan muncul dalam peta pdf saya ketika " -"saya cetak?*" - -# 9c886b503dc54db39ec406084e6982c7 -#: ../../source/training/socialisation/faq.rst:60 -msgid "" -"Before you click the \"Print\" button, please turn off any layers you do not " -"want to see on the map." -msgstr "" -"Sebelum anda mengklik tombol \"Print\", harap non aktifkan layer yang tidak " -"ingin anda tampilkan di peta." - -# 42f4c19a897549389586ee86b42ba949 -#: ../../source/training/socialisation/faq.rst:62 -msgid "" -"Rearrange the order of layers to make sure the important things are on top." -msgstr "" -"Atur urutan layer untuk memastikan hal yang penting muncul di bagian atas." - -# 270ee931c0be4f61af9a04683c4f09f7 -#: ../../source/training/socialisation/faq.rst:65 -msgid "" -"*Why are the impact results different in different parts of the impact " -"report?*" -msgstr "" -"*Mengapa hasil analisis dampak berbeda dari apa yang ada di laporan analisis " -"dampak secara detail?*" - -# 451f069a69a344a28df5c9f247ff6c7c -#: ../../source/training/socialisation/faq.rst:67 -msgid "In the general report the results are rounded." -msgstr "" -"Didalam laporan analisis secara umum nilai yang muncul telah dibulatkan." - -# 97c8d58e9a3245cfbcb380a1f4eb2565 -#: ../../source/training/socialisation/faq.rst:68 -msgid "In the detailed report the results may not be rounded as much." -msgstr "" -"Namun didalam laporan detail dari hasil analisis dampak tidak dibulatkan." - -# ba6ef663f81e4e11b9cf5f2909e741f8 -#: ../../source/training/socialisation/faq.rst:69 -msgid "" -"InaSAFE provides an estimate of the impact. Rounded numbers are good " -"estimates." -msgstr "" -"InaSAFE menyediakan estimasi dari dampak. Angka yang dibulatkan merupakan " -"contoh estimasi yang baik." - -# 3907cf35b1cd46869b8d7932e302af69 -#: ../../source/training/socialisation/faq.rst:72 -msgid "" -"*My hazard and exposure data have different projections, can I still run an " -"InaSAFE analysis on these data?*" -msgstr "" -"*Data ancaman dan data paparan saya mempunyai proyeksi yang berbeda, bisakah " -"saya menjalankan analisis InaSAFE menggunakan data tersebut?*" - -# 2dd645c560de4887899733c7001f2901 -#: ../../source/training/socialisation/faq.rst:74 -msgid "Yes you can, but you need to enable on the fly projection." -msgstr "Tentu bisa, tetapi anda harus mengaktifkan proyeksi 'on the fly'." - -# 3e9201632f604efe897281b56c6f29d8 -#: ../../source/training/socialisation/faq.rst:78 -msgid "In QGIS, activate OTF CRS Transformation" -msgstr "Didalam QGIS, aktifkan OTF CRS Transformation" - -# b256776306d146f4ad9d8a3576cedeed -#: ../../source/training/socialisation/faq.rst:76 -msgid ":menuselection:`Project > Project Properties > CRS`" -msgstr ":menuselection:`Project > Project Properties > CRS`" - -# c71254f4e48749c5b08cb0c1b100e031 -#: ../../source/training/socialisation/faq.rst:77 -msgid "checkbox in the :guilabel:`Enable 'on the fly' CRS transformation`." -msgstr "" -"aktifkan kotak ceklis di :guilabel:`Enable 'on the fly' CRS transformation`." - -# c57325e18c4d4049b4d164b70faa55f5 -#: ../../source/training/socialisation/faq.rst:80 -msgid "" -"*My flood polygon hazard data includes a flood depth. Why can't I run an " -"analysis in InaSAFE and set the threshold with these data?*" -msgstr "" -"*Poligon ancaman banjir saya mempunyai nilai kedalaman banjir. Mengapa saya " -"tidak bisa menjalankan analisis InaSAFE dan mengatur ambang batas dengan " -"menggunakan data ini?*" - -# 5679af072a804c41936ab083f6c9c24a -#: ../../source/training/socialisation/faq.rst:82 -msgid "" -"At this moment, users can only set a flood depth threshold for raster data." -msgstr "" -"Saat ini, pengguna hanya bisa mengatur batas kedalaman untuk data raster." - -# feb9efaa3c974987b0944bb431e4c41f -#: ../../source/training/socialisation/faq.rst:83 -msgid "" -"If you would like to build a new impact function to work with different " -"types of hazard data, please contact the developer team." -msgstr "" -"Jika anda ingin membuat fungsi dampak baru dengan tipe data yang berbeda, " -"harap hubungi tim pengembang." diff --git a/docs/i18n/id/LC_MESSAGES/training/socialisation/inasafe_concepts.po b/docs/i18n/id/LC_MESSAGES/training/socialisation/inasafe_concepts.po deleted file mode 100644 index 9c0b75eb..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/socialisation/inasafe_concepts.po +++ /dev/null @@ -1,1465 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Fatisya Ilani Yusuf , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# d1dafb1c8da6476a8c995c880c4fb0f1 -#: ../../source/training/socialisation/inasafe_concepts.rst:4 -msgid "|project_name| concepts" -msgstr "Konsep |project_name|" - -# 108cc514e7924feda4a1d329cb44c6f4 -#: ../../source/training/socialisation/inasafe_concepts.rst:6 -msgid "" -"In this section we explain the key concepts of |project_name| and explore " -"the merits of disaster management planning." -msgstr "" -"Dalam sesi ini kita akan membahas tentang konsep utama dari |project_name| " -"dan memahami ciri-ciri dari rencana manajemen penanggulangan bencana." - -# 2ec8dfb5188f480bba3591ec5248d5b0 -#: ../../source/training/socialisation/inasafe_concepts.rst:10 -msgid "How does |project_name| work?" -msgstr "Bagaimana |project_name| bekerja?" - -# a40d2389d61c4bd9b98d29b9e3a1eb68 -#: ../../source/training/socialisation/inasafe_concepts.rst:11 -msgid "" -"|project_name| combines one exposure data layer (e.g. location of buildings) " -"with one hazard scenario (e.g. the footprint of a flood) and returns a " -"spatial impact layer along with a statistical summary and action questions. |" -"project_name| is framed around answering questions such as: *'In the event " -"of a flood similar to the 2013 Jakarta event how many people might need " -"evacuating.'*" -msgstr "" -"|project_name| menggabungkan satu layer data keterpaparan (co: bangunan) " -"dengan satu layer ancaman (co: kejadian banjir) kemudian akan menghasilkan " -"layer dampak spasial dari bencana tersebut beserta dengan ringkasan " -"informasi statistik dan beberapa pertanyaan untuk mengambil suatu tindakan. |" -"project_name| ditujukan untuk bisa menjawab beberapa pertanyaan seperti: " -"*'Dalam kejadian banjir di Jakarta pada tahun 2013, berapa banyak penduduk " -"yang mungkin butuh untuk dievakusi.'*" - -# 755fca0784b9478b8e40749f7bb3b1f6 -#: ../../source/training/socialisation/inasafe_concepts.rst:22 -msgid "" -"|project_name| is also able to divide the impact results by administrative " -"boundary and provide a breakdown of information about the gender and age of " -"affected people." -msgstr "" -"|project_name| juga dapat menampilkan hasil dampak dengan batas administrasi " -"dan menyediakan rincian informasi terkait dengan jenis kelamin dan usia dari " -"penduduk terdampak." - -# 4a2abc403fa843979dc2c5c471e200b0 -#: ../../source/training/socialisation/inasafe_concepts.rst:27 -msgid "Definitions:" -msgstr "Definisi:" - -# 613786e61ffc4b95aa186dab3d61a6b2 -#: ../../source/training/socialisation/inasafe_concepts.rst:28 -msgid "Before we start, here are some definitions you may find useful." -msgstr "" -"Sebelum kita mulai, berikut adalah beberapa definisi yang mungkin akan " -"berguna untuk Anda." - -# 626efeeea7094b9d844db2e707676f93 -#: ../../source/training/socialisation/inasafe_concepts.rst:31 -msgid "**Risk assessment:**" -msgstr "**Kajian Risiko:**" - -# 3d7c3cfc3ff04a3da3772e315f3070bc -#: ../../source/training/socialisation/inasafe_concepts.rst:31 -msgid "" -"*\"A methodology to determine the nature and extent of risk by analysing " -"potential hazards and evaluating existing conditions of vulnerability that " -"together could potentially harm exposed people, property, services, " -"livelihoods and the environment on which they depend. \"*" -msgstr "" -"*\"Sebuah metodologi untuk menentukan besaran risiko suatu bencana dengan " -"menganalisa potensi ancaman dan melakukan evaluasi kondisi kerentanan di " -"suatu wilayah yang berpotensi dapat membahayakan penduduk, harta benda, " -"layanan, kehidupan dan lingkungan masyarakat di wilayah tersebut.\"*" - -# 691f409d0cdf456093525109bdb252dc -#: ../../source/training/socialisation/inasafe_concepts.rst:38 -msgid "**Contingency planning:**" -msgstr "**Rencana Kontinjensi:**" - -# 676a96e4420746eda0adc4582b024415 -#: ../../source/training/socialisation/inasafe_concepts.rst:38 -msgid "" -"*\"A management process that analyses specific potential events or emerging " -"situations that might threaten society or the environment and establishes " -"arrangements in advance to enable timely, effective and appropriate " -"responses to such events and situations.\"*" -msgstr "" -"*\"Proses manajemen perencanaan yang menganalisa secara spesifik potensi " -"terjadinya kejadian dan situasi bencana yang dapat membahayakan penduduk " -"atau lingkungan sekitar serta dapat membuat suatu kebijakan dalam melakukan " -"respon secara tepat dan efektif jika kejadian dan situasi bencana tersebut " -"benar-benar terjadi.\"*" - -# a83f0fd5bdc64499b9dcee62e39dd3cb -#: ../../source/training/socialisation/inasafe_concepts.rst:45 -msgid "**Response:**" -msgstr "**Respon:**" - -# 0f039cd954ab48eebc80b55318f7eb7c -#: ../../source/training/socialisation/inasafe_concepts.rst:45 -msgid "" -"*\"The provision of emergency services and public assistance during or " -"immediately after a disaster in order to save lives, reduce health impacts, " -"ensure public safety and meet the basic subsistence needs of the people " -"affected.\"*" -msgstr "" -"*\"Aktifitas yang harus dilakukan berupa pelayanan untuk kondisi darurat dan " -"layanan publik ketika atau tepat setelah terjadinya suatu bencana dalam " -"rangka untuk menyelamatkan nyawa, meminimalisir dampak gangguan kesehatan, " -"memastikan penduduk aman dan menyediakan kebutuhan dasar untuk penduduk yang " -"terdampak.\"*" - -# f5c0f1b172c74dffabec5b7630aec2da -#: ../../source/training/socialisation/inasafe_concepts.rst:52 -msgid "Source: ``_" -msgstr "Sumber: ``_" - -# 02ac0d40e06c40d39b07021a7cc70abd -#: ../../source/training/socialisation/inasafe_concepts.rst:55 -msgid "What is disaster management?" -msgstr "Apa itu manajemen penanggulangan bencana?" - -# fee462ab2e204ccebd092e86f6fefcbd -#: ../../source/training/socialisation/inasafe_concepts.rst:56 -msgid "" -"In the context of disaster management, the expected 'normal' situation is " -"that there is no disaster in progress, and people are going about their " -"normal daily lives. Disaster managers need to plan for the occasions when " -"the 'normal' situation has been replaced by a disaster and people can no " -"longer go about their normal daily lives. In order to prepare for such " -"situations, disaster managers need to have a basic understanding of " -"questions like:" -msgstr "" -"Dalam konteks manajemen penanggulangan bencana, situasi 'normal' adalah " -"kondisi dimana tidak terdapat potensi bencana akan terjadi, dan masyarakat " -"menjalani kehidupan sehari-hari mereka dengan normal. Manajer penanggulangan " -"bencana butuh untuk memiliki suatu rencana jika sewaktu-waktu kondisi " -"'normal' tersebut berubah menjadi kondisi bencana dan masyarakat menjadi " -"terancam serta tidak dapat menjalani kehidupan sehari-hari mereka dengan " -"normal. Dalam rangka mempersiapkan situasi seperti itu, manajer " -"penanggulangan bencana perlu untuk memiliki pengertian mendasar untuk " -"menjawab pertanyaan-pertanyaan sebagai berikut:" - -# 80726af82ef64c51b5b4e79a60ad87f8 -#: ../../source/training/socialisation/inasafe_concepts.rst:63 -msgid "how many people might be in the affected area?" -msgstr "berapa banyak jumlah orang yang berada di area terdampak?" - -# 3ba46cbc47c145d3a85e82e22c9a07b2 -#: ../../source/training/socialisation/inasafe_concepts.rst:65 -msgid "how might those people be impacted?" -msgstr "bagaimana dampak yang dapat ditimbulkan untuk masyarakat?" - -# 769a8c3796d24ff4af758e4e87fc47e2 -#: ../../source/training/socialisation/inasafe_concepts.rst:67 -msgid "" -"For example are they likely to be injured, stranded, deceased, or unable to " -"continue with their normal economic activities; have they lost access to " -"food and water?" -msgstr "" -"Sebagai contoh apakah penduduk akan terluka, hilang, meninggal dunia, atau " -"tidak dapat menjalankan aktifitas ekonomi mereka; apakah mereka kehilangan " -"akses untuk mendapatkan makanan dan air?" - -# c098c22d49e34ea6beffdcd16a378a4e -#: ../../source/training/socialisation/inasafe_concepts.rst:71 -msgid "how will roads in the affected area be impacted?" -msgstr "bagaimana dampak terhadap jalan-jalan yang berada di area terdampak?" - -# 8bc8579c835d40e593ffecf71b71d7c1 -#: ../../source/training/socialisation/inasafe_concepts.rst:73 -msgid "" -"how many dwellings in the affected will be affected? And to what degree?" -msgstr "" -"berapa banyak rumah penduduk yang terdampak? seberapa parah tingkat " -"kerusakannya?" - -# 0a8e5870dafb44e7a5a8c05f94370744 -#: ../../source/training/socialisation/inasafe_concepts.rst:75 -msgid "" -"For example in a flood are buildings dry, wet (but still possibly habitable) " -"or flooded (with occupants evacuated)?" -msgstr "" -"Sebagai contoh di suatu kejadian banjir apakah bangunan-bangunan tersebut " -"kering, basah (tapi masih dapat ditempati) atau kebanjiran (dengan penghuni " -"harus dievakuasi)?" - -# ca77973155bd4634b779d1c4b57f58f5 -#: ../../source/training/socialisation/inasafe_concepts.rst:78 -msgid "" -"if people are affected, how many of them are likely to be women, children, " -"pregnant, elderly etc.?" -msgstr "" -"jika penduduk terdampak, berapa banyak dari mereka yang merupakan wanita, " -"anak-anak, wanita hamil, orang tua, dsb.?" - -# 22ab6457404b40d9b1482ba2e63099f7 -#: ../../source/training/socialisation/inasafe_concepts.rst:81 -msgid "" -"Knowing the likely answers to these questions can be helpful to disaster " -"managers. For example if you are aware of how many people live in flood " -"prone areas you can estimate how many temporary shelters might be needed in " -"the event of a disaster, how many provisions should be stockpiled in order " -"to provide for the daily needs of affected people and so on. Having " -"demographic breakdowns for the people likely to be affected, can help " -"disaster managers include things like special dietary requirements for " -"lactating women in their disaster management planning." -msgstr "" -"Mengetahui jawaban untuk pertanyaan-pertanyaan tersebut akan sangat membantu " -"untuk manajer penanggulangan bencana. Sebagai contoh jika anda mengetahui " -"berapa banyak penduduk yang tinggal di wilayah rawan banjir maka anda dapat " -"mengestismasi berapa banyak pos-pos evakuasi yang butuh disediakan jika " -"banjir terjadi di wilayah tersebut, berapa banyak persediaan yang sebaiknya " -"disediakan dalam rangka memenuhi kebutuhan dari penduduk yang terdampak dan " -"seterusnya. Memiliki rincian demografis dari penduduk yang mungkin akan " -"terdampak, akan membantu manajer penanggulangan bencana untuk memasukkan hal-" -"hal khusus seperti kebutuhan untuk ibu menyusui dalam rencana penanggulangan " -"bencana yang mereka miliki." - -# 87bf32059a9145628ea68ebc5180bb8f -#: ../../source/training/socialisation/inasafe_concepts.rst:90 -msgid "" -"This planning might also take into account expected impacts on " -"infrastructure - for example by planning to have sufficient rescue boats " -"should all the local roads be flooded." -msgstr "" -"Rencana penanggulangan bencana ini juga dapat memasukkan beberapa kebutuhan " -"untuk fasilitas infrastruktur yang terdampak - sebagai contoh dengan " -"memasukan jumlah perahu karet yang dibutuhkan jika jalan-jalan lokal yang " -"ada terdampak banjir." - -# 28f1ccd3d1a340529d3d9b94b78713d4 -#: ../../source/training/socialisation/inasafe_concepts.rst:95 -msgid "What is a hazard?" -msgstr "Apa itu ancaman?" - -# 9b4acd91dff24e808136ec930c82713f -#: ../../source/training/socialisation/inasafe_concepts.rst:100 -msgid "" -"In the context of |project_name| a hazard is any natural or human caused " -"event or series of events that may negatively impact the population, " -"infrastructure or resources in an area." -msgstr "" -"Dalam konteks |project_name| sebuah ancaman merupakan kejadian yang " -"disebabkan oleh alam ataupun manusia atau sebuah rangkaian kejadian yang " -"memiliki dampak negatif untuk penduduk, infrastruktur ataupun sumber daya di " -"suatu wilayah." - -# fc191e71b2754747ab4893d12fee9b1a -#: ../../source/training/socialisation/inasafe_concepts.rst:104 -msgid "Some examples of natural hazards:" -msgstr "Beberapa contoh dari ancaman alam:" - -# bc3d0cf2b28b47eea5cdf579f9eb447f -#: ../../source/training/socialisation/inasafe_concepts.rst:106 -msgid "" -"a flood (caused by overflowing rivers, storm surge, localised precipitation " -"that cannot drain effectively, or by engineering failure such as a dam or " -"levee breach)" -msgstr "" -"banjir (disebabkan oleh luapan sungai, hujan/badai, aliran air yang tidak " -"diresap/dialirkan secara sempurna, atau kegagalan teknis seperti bendungan " -"atau tanggul yang retak)" - -# d9ca050efa0f4f189f80b7fa186df6ef -#: ../../source/training/socialisation/inasafe_concepts.rst:108 -msgid "an earthquake and the resulting ground shaking that is produced by it" -msgstr "gempa bumi yang menyebabkan getaran di dalam dan permukaan tanah." - -# 64a25a33b90c4e0d8cfc62215f2038da -#: ../../source/training/socialisation/inasafe_concepts.rst:110 -msgid "" -"a volcano eruption and its associated hazards (lava flow, ash fall, lahar, " -"pyroclastic flow)" -msgstr "" -"letusan gunung berapi dan ancaman lain yang dibawanya (aliran lava, abu " -"vulkanik, lahar, aliran piroklastik)" - -# 0d4a644b2f4e40588c443e595a06354e -#: ../../source/training/socialisation/inasafe_concepts.rst:112 -msgid "a tsunami" -msgstr "tsunami" - -# 5989fe7fb3704f249fdd7d8a6c8bfd6b -#: ../../source/training/socialisation/inasafe_concepts.rst:114 -msgid "Some examples of non-natural hazards:" -msgstr "Beberapa contoh dari ancaman non-alam:" - -# d508c84fbcc54651bcbc36dfb6393808 -#: ../../source/training/socialisation/inasafe_concepts.rst:116 -msgid "a chemical spill" -msgstr "tumpahan bahan kimia" - -# 37a9574f95a34788b2378d0bcca0a78a -#: ../../source/training/socialisation/inasafe_concepts.rst:118 -msgid "a nuclear plant failure" -msgstr "kegagalan pembangunan teknologi nuklir" - -# b012ebd662d24354afd5e67aba8de53c -#: ../../source/training/socialisation/inasafe_concepts.rst:120 -msgid "an industrial fire / explosion" -msgstr "ledakan / kebakaran pabrik atau kawasan industri" - -# 61196fad57dc49a0a011a2baf6712aa2 -#: ../../source/training/socialisation/inasafe_concepts.rst:122 -msgid "" -"It is important to note that |project_name| is not a hazard modelling tool. " -"That means that you need to obtain your hazard data from elsewhere and bring " -"it along ready to use in |project_name|. In this training course we will " -"focus on natural hazards, so we will take a moment here to explain how " -"hazard datasets might be made." -msgstr "" -"Sangat penting untuk diingat bahwa |project_name| bukan alat utuk membuat " -"suatu model ancaman. Artinya, Anda harus memiliki data ancaman yang dapat " -"Anda dapatkan dari tempat lain dan setelah itu dapat digunakan di |" -"project_name|. Dalam panduan pelatihan ini kita akan fokus dalam ancaman " -"alam, jadi sekarang kami akan menjelaskan bagaimana sebuah dataset ancaman " -"dibuat." - -# 17c2f9039bfb4407a4169065a41608c8 -#: ../../source/training/socialisation/inasafe_concepts.rst:132 -msgid "There are three main ways that can be used to generate hazard datasets:" -msgstr "" -"Ada tiga cara utama yang dapat digunakan untuk membuat dataset ancaman:" - -# 99a84474e66348529043b00cad513a0a -#: ../../source/training/socialisation/inasafe_concepts.rst:134 -#: ../../source/training/socialisation/inasafe_concepts.rst:141 -msgid "Local knowledge" -msgstr "Pengetahuan Lokal" - -# 0454ec9feb5d4771bdff47478b535408 -# 501e5b0ed46841c68cfdf5bf7001c213 -#: ../../source/training/socialisation/inasafe_concepts.rst:136 -#: ../../source/training/socialisation/inasafe_concepts.rst:164 -msgid "Modelling" -msgstr "Pemodelan" - -# e1556fcfd23c4c309ea2503e95f307a7 -#: ../../source/training/socialisation/inasafe_concepts.rst:138 -msgid "Mapping" -msgstr "Pemetaan" - -# fa56ea042fe94a44afd4d4eb512f4102 -#: ../../source/training/socialisation/inasafe_concepts.rst:143 -msgid "" -"This is probably the most practical way to gather hazard data quickly. One " -"approach that has been effective in Indonesia is to hold mapping workshops " -"where village chiefs and local officials are invited. The officials are " -"asked to indicate which villages and sub-villages within their area of " -"responsibility flood regularly." -msgstr "" -"Ini mungkin merupakan cara paling praktis untuk mendapatkan data ancaman " -"secara cepat. Satu kajian yang telah terbukti efektif dilakukan di Indonesia " -"adalah melakukan lokakarya pemetaan dimana melibatkan perwakilan desa " -"seperti kepala desa dan aparat pemerintahan lokal terkait. Aparat " -"pemerintahan lokal kemudian akan diminta untuk menjelaskan wilayah mana saja " -"di desa mereka yang sering terkena banjir." - -# 95b0de9184864ba08d5d51ddcb95043a -#: ../../source/training/socialisation/inasafe_concepts.rst:149 -msgid "" -"Instead of simply mapping which areas are flooded, it is also possible to " -"take another approach and map each flood event, using the same boundaries " -"(village / sub-village). During the event community officials can use online " -"systems to update the status of the flood waters in their area." -msgstr "" -"Disamping memetakan area mana saja yang terkena banjir, dimungkinkan pula " -"menggunakan pendekatan lain dan memetakan setiap kejadian banjir yang pernah " -"terjadi menggunakan batas administrasi yang sama (desa/RW). Selama kegiatan " -"tersebut, aparat pemerintah lokal dapat menggunakan sistem online untuk " -"memperbaharui kondisi banjir di area mereka." - -# 3a5c796dc5ce43bd84b974c909ff63d0 -#: ../../source/training/socialisation/inasafe_concepts.rst:154 -msgid "" -"A key requirement for any local knowledge based process is that there are " -"suitable mapping units available to use for deciding if an area is flood " -"prone or not. In some cases participants may need to capture these, in other " -"cases village or sub-village boundaries can be used. Using administrative " -"boundaries may not always be ideal since the flood extents are unlikely to " -"align well with the boundaries, but it may be sufficient for broad planning " -"purposes; especially when response activities are managed at the same " -"administrative level." -msgstr "" -"Syarat kunci untuk proses yang berbasiskan pengetahuan lokal adalah tedapat " -"unit pemetaan yang sesuai yang tersedia untuk digunakan dalam menentukan " -"apakah suatu wilayah merupakan rawan banjir atau tidak. Dalam beberapa " -"kasus, peserta mungkin butuh untuk melihat hal tersebut, dalam kasus yang " -"lain penggunaan batas administrasi desa atau RW juga dimungkinkan. " -"Menggunakan batas administrasi mungkin tidak dapat selalu menjadi ide yang " -"baik karena luasan banjir biasanya tidak selalu sama dengan batas " -"administrasi, akan tetapi mungkin akan cocok untuk tujuan jangka panjang; " -"khususnya ketika respon tanggap bencana diaktifkan dan dikelola di tingkat " -"administrasi yang sama." - -# dfe779fa6ed94aafb1872f86cc139bbd -#: ../../source/training/socialisation/inasafe_concepts.rst:166 -msgid "" -"Modelling floods is an entire discipline in its own right. Flood modelling " -"can be carried out by combining factors such as precipitation, geology and " -"runoff characteristics, terrain etc. to derive a model of impending or " -"current flood. Modelling can use data interpolation techniques - e.g. by " -"taking flood depth readings manually or using telemetry from various sites " -"around the flood prone area, flood depths can be interpolated to estimate " -"the depth at places that were not sampled." -msgstr "" -"Pemodelan banjir adalah seluruh disiplin ilmu dalam banjir itu sendiri. " -"Pemodelan banjir dapat dilakukan dengan menggabungkan beberapa faktor " -"seperti curah hujan, geologi dan karakteristik limpasan, kondisi medan dll " -"untuk mendapatkan model banjir yang akan datang atau banjir saat ini. " -"Pemodelan ini dapat menggunakan teknik interpolasi Data - contohnya dengan " -"mengambil kedalaman banjir secara manual atau menggunakan telemetri dari " -"berbagai tempat di sekitar wilayah rawan banjir, kedalaman banjir dapat " -"diinterpolasi untuk memperkirakan kedalaman di tempat-tempat yang belum " -"diberikan sampel." - -# e6234e9e978b4e3ab0ef8cfbf00dac91 -#: ../../source/training/socialisation/inasafe_concepts.rst:174 -msgid "" -"Another modelling approach used by engineers is to install depth sensors " -"upstream of the catchment and then try to model how much water is coming " -"into the catchment area based on depth and flow rates. This has the " -"potential advantage of giving early warning before floods enter the flood " -"prone area, although it also has the disadvantage that localised rainfall " -"may not be accurately considered in the model." -msgstr "" -"Metode pemodelan lain yang digunakan oleh para peneliti adalah menginstal " -"sensor kedalaman permukaan dari area tangkapan dan mencoba memodelkan berapa " -"banyak air yang akan masuk ke area tangkapan tersebut berdasarkan kedalaman " -"dan kecepatan aliran air. Metode ini memiliki keuntungan karena dapat " -"memberikan peringatan awal sebelum banjir memasuki wilayah rawan bencana, " -"walaupun metode ini juga memiliki kekurangan yaitu perhitungan model ini " -"akan menjadi kurang akurat apabila yang dihitung adalah curah hujan lokal." - -# 99ccda1eb5ff4769b1f6f895ac898dff -#: ../../source/training/socialisation/inasafe_concepts.rst:181 -msgid "" -"Using a digital elevation model (DEM) and a stream network, it is also " -"possible to generate a simple model of which areas might be inundated by a " -"water rise in the river network of a certain amount. DEM cells adjacent to " -"the stream network which are below the flood-rise threshold will be " -"considered flooded and then those cell neighbours can in turn be considered " -"so as to ensure that only contiguous areas in the DEM are flagged as " -"inundated. There are various other approaches that can be used to model " -"flood potential that involve using a DEM." -msgstr "" -"Menggunakan model ketinggian dijital (DEM) dan jaringan sungai, juga dapat " -"menjadi salah satu cara untuk membuat model banjir sederhana dimana suatu " -"area dapat tergenang akibat dari kenaikan air di salah satu jaringan sungai. " -"Sel DEM yang bertampalan dengan jaringan sungai dan berada di bawah ambang " -"batas kenaikan banjir akan dianggap terdampak banjir begitu juga sel-sel " -"yang berada di sekitarnya sehingga hanya DEM yang berada di area itu saja " -"yang ditandai sebagai area terdampak. Terdapat beberapa macam pendekatan " -"yang dapat digunakan untuk membuat model potensi banjir menggunakan DEM." - -# 3104e66695034d70a15b4a6ff915c563 -#: ../../source/training/socialisation/inasafe_concepts.rst:190 -msgid "" -"One advantage of using a modelling approach is that it allows us to forecast " -"less frequent events. For example, there may not be localised knowledge " -"about 1 in 50 or 100 year flood events and their impacts, but these can be " -"estimated using modelling techniques." -msgstr "" -"Salah satu keuntungan menggunakan metode pemodelan adalah dapat memungkinkan " -"kita untuk membuat model untuk kejadian bencana yang jarang terjadi. Sebagai " -"contoh, mungkin kejadian banjir yang terjadi setiap 50 hingga 100 tahun " -"sekali tidak dapat diukur menggunakan pengetahuan lokal, akan tetapi dengan " -"menggunakan teknik pemodelan hal ini dapat dilakukan." - -# d288204d84df4f6bbf45b5c48af6be27 -#: ../../source/training/socialisation/inasafe_concepts.rst:196 -msgid "Single-event versus multiple-event hazards" -msgstr "Ancaman kejadian-tunggal melawan ancaman kejadian-majemuk" - -# 64f7314bc3554ea889d5dc7619095c31 -#: ../../source/training/socialisation/inasafe_concepts.rst:197 -msgid "" -"Hazard data used in |project_name| can represent either single-event or " -"multiple-event. Single event hazards are useful when you want to estimate " -"scenarios like *'how many people would be affected if we had another flood " -"like in 2013'.* A single event hazard covers a short span of time - like a " -"single flood or earthquake event. Single event data is also the most " -"suitable to use for events which are stochastic e.g. earthquakes which " -"seldom occur at the same place and with the same intensity more than once." -msgstr "" -"Data ancaman yang digunakan dalam |project_name| dapat mewakili kejadian-" -"tunggal ataupun kejadian-majemuk. Ancaman kejadian tunggal berguna ketika " -"Anda ingin menghitung skenario seperti *'berapa banyak penduduk yang dapat " -"terdampak jika terjadi banjir seperti di tahun 2013'.* Suatu ancaman " -"kejadian tunggal terjadi dalam kurun waktu yang cepat dan spesifik- seperti " -"kejadian banjir tunggal ataupun kejadian gempa bumi. Data kejadian tunggal " -"juga cocok digunakan dalam kejadian bencana seperti gempa bumi dimana akan " -"sangat jarang terjadi suatu gempa bumi di tempat dan waktu yang sama dengan " -"intensitas yang sama untuk kedua kalinya." - -# 22e853f935cf431f87622a475bfcd348 -#: ../../source/training/socialisation/inasafe_concepts.rst:205 -msgid "" -"Multiple-event data are useful when you would like to plan for disasters " -"that repeatedly affect the same area. For example over the course of 10 " -"years, the same districts or sub-districts may get flooded, though not on " -"every event. Flood and volcano eruptions may be good candidates for using " -"multiple-event data in your disaster management planning." -msgstr "" -"Data kejadian-majemuk berguna ketika anda ingin membuat suatu rencana untuk " -"bencana yang terjadi secara terus-menerus di area yang sama. Sebagai contoh " -"lebih dari 10 tahun, suatu kabupaten atau kecamatan hampir selalu terkena " -"banjir, walaupun tidak dalam setiap kejadian. Banjir dan letusan gunung " -"berapi merupakan contoh yang baik untuk mewakili data kejadian-majemuk dalam " -"rencana manajemen penanggulangan bencana anda." - -# 89bd84b98a194e7a80e9ea25ae7c6a4d -#: ../../source/training/socialisation/inasafe_concepts.rst:212 -msgid "Requirements for using flood data in |project_name|" -msgstr "Persyaratan untuk menggunakan data banjir di |project_name|" - -# 2459e9e41eac4b2f97c50f146eb6eb69 -#: ../../source/training/socialisation/inasafe_concepts.rst:216 -msgid "**Key notes for floods**" -msgstr "**Catatan penting untuk banjir**" - -# d8dd1c7abb3c4329aad9806a40a4b5fc -# 3af9d90bdec047e89dfc265b138fdf54 -# f4486d9b45344046bdf146c7e0afcddc -# b3944cfe3918423ba3b752d918049991 -#: ../../source/training/socialisation/inasafe_concepts.rst:218 -#: ../../source/training/socialisation/inasafe_concepts.rst:271 -#: ../../source/training/socialisation/inasafe_concepts.rst:299 -#: ../../source/training/socialisation/inasafe_concepts.rst:328 -#: ../../source/training/socialisation/inasafe_concepts.rst:350 -#: ../../source/training/socialisation/inasafe_concepts.rst:372 -msgid "Format" -msgstr "Format" - -# 780e5d4a761d493b8f98a55f9fd2bdb4 -#: ../../source/training/socialisation/inasafe_concepts.rst:218 -msgid "Vector polygon data or raster data" -msgstr "Data vektor poligon atau data raster" - -# 0653e1e92d594e42b1bb4240c970ac69 -#: ../../source/training/socialisation/inasafe_concepts.rst:220 -msgid "Vector" -msgstr "Vektor" - -# 5449794bd1fd4c85aec790a6a4e0df12 -#: ../../source/training/socialisation/inasafe_concepts.rst:220 -msgid "A field representing whether the polygon is flood prone or not." -msgstr "" -"Sebuah area menunjukkan apakah poligon tersebut merupakan area terdampak " -"banjir atau tidak." - -# fc1c776435a942539c1b4a4df3981473 -#: ../../source/training/socialisation/inasafe_concepts.rst:222 -msgid "Raster" -msgstr "Raster" - -# e7d1078e2a9c45178ea67acc898edd83 -#: ../../source/training/socialisation/inasafe_concepts.rst:222 -msgid "A simple grid with cell values that represent water depth" -msgstr "Sebuah kotak yang memiliki nilai piksel yang menunjukan ketinggian air" - -# c8d1d6c117db4303bc187b79b34f3105 -# 108cfd6301284eea97d6b10944a3e221 -# a3191f3b4717439aa7c71e71c2573d5c -# d5af0bd8f71e4debaa945a810ff4b3f8 -#: ../../source/training/socialisation/inasafe_concepts.rst:224 -#: ../../source/training/socialisation/inasafe_concepts.rst:277 -#: ../../source/training/socialisation/inasafe_concepts.rst:305 -#: ../../source/training/socialisation/inasafe_concepts.rst:334 -#: ../../source/training/socialisation/inasafe_concepts.rst:356 -#: ../../source/training/socialisation/inasafe_concepts.rst:378 -msgid "Source" -msgstr "Sumber" - -# a7fb8c205a80465dac3a13cc61a0959c -# 9335520208ed424fa3593fbe858f2fa4 -# eb59ed9b1c074840a5def4fd29d33733 -#: ../../source/training/socialisation/inasafe_concepts.rst:224 -#: ../../source/training/socialisation/inasafe_concepts.rst:277 -#: ../../source/training/socialisation/inasafe_concepts.rst:305 -msgid "Can be obtained from community mapping or a national mapping agency" -msgstr "" -"Dapat didapatkan dari komunitas pemetaan atau Badan Informasi Geospasial" - -# ccd35e3eca444602b098e07718f980f3 -#: ../../source/training/socialisation/inasafe_concepts.rst:229 -msgid "What is exposure?" -msgstr "Apa itu keterpaparan?" - -# 9efb025a812c4d318c62c6dec4ec61c9 -#: ../../source/training/socialisation/inasafe_concepts.rst:234 -msgid "" -"In the context of |project_name|, exposure refers to people, infrastructure " -"or land areas that may be affected by a disaster. Currently |project_name| " -"supports four kinds of exposure data:" -msgstr "" -"Dalam konteks |project_name|, keterpaparan merujuk kepada penduduk, " -"infrastruktur atau area penggunaan lahan yang mungkin terdampak akibat dari " -"kejadian suatu bencana. Saat ini |project_name| telah dapat mendukung 4 " -"jenis data keterpaparan:" - -# 10c3052303614bf6bdbe305e28d45377 -#: ../../source/training/socialisation/inasafe_concepts.rst:238 -msgid "roads" -msgstr "jalan" - -# ce36a3cf1dd640c987b466e86f1e5e3f -#: ../../source/training/socialisation/inasafe_concepts.rst:240 -msgid "buildings" -msgstr "bangunan" - -# 6a09fc9cab96414c972e5e9194a60be0 -#: ../../source/training/socialisation/inasafe_concepts.rst:242 -msgid "population / people" -msgstr "populasi / penduduk" - -# fe165ff8d2274e149e9519aaa1c740ee -#: ../../source/training/socialisation/inasafe_concepts.rst:244 -msgid "landcover" -msgstr "tutupan lahan" - -# bcbfb6223f5c4156944c2fcbe1ecdab4 -#: ../../source/training/socialisation/inasafe_concepts.rst:248 -msgid "Roads data" -msgstr "Data jalan" - -# a8f858d1062c48c1b91adae94695838f -#: ../../source/training/socialisation/inasafe_concepts.rst:254 -msgid "" -"Road datasets are a useful data source when you want to understand the " -"impact of a flood on roads infrastructure. With the |project_name| flood on " -"roads impact functions; you can calculate which roads of which type might be " -"impacted by a flood." -msgstr "" -"dataset jalan merupakan sumber data yang sangat berguna ketika anda ingin " -"melihat dampak suatu kejadian banjir terhadap infrastruktur jalan. Dengan " -"fungsi dampak banjir terhadap jalan di |project_name|; anda dapat menghitung " -"jalan mana saja dan tipe jalan apa yang terdampak banjir." - -# 4e406ec22d2e49f4bb8a998ca3291c5d -#: ../../source/training/socialisation/inasafe_concepts.rst:259 -msgid "" -"Very often there will be national datasets available for roads. In this " -"case you should contact your national mapping agency for up-to-date " -"datasets. The OpenStreetMap project is an excellent source of exposure data. " -"The data is freely available, generally well maintained and a vital resource " -"for disaster management planners. There are numerous ways to download " -"OpenStreetMap roads data, but our recommended way is to download the data " -"using the OSM download tool provided with |project_name|." -msgstr "" -"Seringkali terdapat dataset nasional untuk jalan yang tersedia. Dalam hal " -"ini anda harus menghubungi Badan Informasi Geospasial untuk memeriksa dan " -"memperbaharui dataset tersebut. Proyek OpenStreetMap merupakan salah satu " -"sumber data keterpaparan yang sangat baik. Data yang ada tersedia secara " -"gratis, secara umum mudah untuk dikelola, dan merupakan sumber penting untuk " -"rencana penanggulangan bencana. Terdapat beberapa cara untuk men-download " -"data OpenStreetMap seperti jalan, tetapi kami merekomendasikan untuk " -"menggunakan alat Download OSM yang telah disediakan di |project_name|." - -# b0ae74ddfb6d444492bd135419bfdda6 -#: ../../source/training/socialisation/inasafe_concepts.rst:269 -msgid "**Key notes for road data**" -msgstr "**Catatan penting untuk data jalan**" - -# 400cb595f4aa4933952a32761d3ba14e -#: ../../source/training/socialisation/inasafe_concepts.rst:271 -msgid "Vector line data" -msgstr "Data vektor garis" - -# 70a8ce9a29ca41ce8d7fed4574d38a63 -# 94163c7d5844444094a3a03a4bd5f513 -#: ../../source/training/socialisation/inasafe_concepts.rst:273 -#: ../../source/training/socialisation/inasafe_concepts.rst:301 -#: ../../source/training/socialisation/inasafe_concepts.rst:352 -#: ../../source/training/socialisation/inasafe_concepts.rst:374 -msgid "Field" -msgstr "Field" - -# 02ef8d80eb9049969764143667412144 -#: ../../source/training/socialisation/inasafe_concepts.rst:273 -msgid "A field representing road type" -msgstr "Sebuah field yang menunjukkan jenis jalan" - -# 6a26353c859346dfa4f84920cc485f5e -# e86c14bad7d64c8b9f62d9509e0b85a5 -# 3a11587e5f40495a91419a3181799461 -#: ../../source/training/socialisation/inasafe_concepts.rst:275 -#: ../../source/training/socialisation/inasafe_concepts.rst:303 -#: ../../source/training/socialisation/inasafe_concepts.rst:332 -#: ../../source/training/socialisation/inasafe_concepts.rst:354 -#: ../../source/training/socialisation/inasafe_concepts.rst:376 -msgid "Notes" -msgstr "Catatan" - -# 5371265949dd400eaf6d08eff2c5dc62 -#: ../../source/training/socialisation/inasafe_concepts.rst:275 -#: ../../source/training/socialisation/inasafe_concepts.rst:354 -msgid "Topologically correct data are best but not essential" -msgstr "Koreksi topologi data itu bagus tetapi tidak esensial" - -# 39e4252162af4bdca6b8097c9cc9976d -#: ../../source/training/socialisation/inasafe_concepts.rst:282 -msgid "Buildings (structure) data" -msgstr "Data bangunan (struktur)" - -# e5f0819601ef4b71a759d0b81add59ba -#: ../../source/training/socialisation/inasafe_concepts.rst:288 -msgid "" -"Like roads, building footprints can be a useful dataset to have for " -"understanding the impacts of a flood. For example you may wish to know 'how " -"many buildings might be flooded, and what types of buildings are they?'. In |" -"project_name| you do not need to use engineering quality data. We are more " -"concerned with the numbers and types of structures affected by a disaster " -"and do not work at engineering tolerances needed when, for example, planning " -"a new water mains system." -msgstr "" -"Seperti jalan, bangunan juga merupakan dataset yang sangat berguna untuk " -"memahami dampak dari kejadian banjir. Sebagai contoh, Anda mungkin ingin " -"mengetahui 'berapa banyak bangunan yang mungkin terdampak banjir dan jenis " -"bangunan apa saja?'. Dengan |project_name| anda tidak perlu untuk " -"menggunakan teknik kualitas data. Kami sangat memperhatikan jumlah serta " -"jenis struktur bagunan terdampak dari suatu bencana dan tidak menggunakan " -"teknik toleransi, sebagai contoh, merencanakan membuat sistem saluran air " -"baru." - -# f1638209e8fa458e832087119bc7f65c -#: ../../source/training/socialisation/inasafe_concepts.rst:297 -msgid "**Key notes for buildings data**" -msgstr "**Catatan penting untuk data bangunan**" - -# 34b981b5474b45c4878269b9646408ae -#: ../../source/training/socialisation/inasafe_concepts.rst:299 -#: ../../source/training/socialisation/inasafe_concepts.rst:350 -msgid "Vector polygon data" -msgstr "Data vektor poligon" - -# 5ea12410182a4c7b82c82293fbf68f92 -#: ../../source/training/socialisation/inasafe_concepts.rst:301 -msgid "A field representing building type" -msgstr "Field yang menunjukkan jenis bangunan" - -# 40b6b608022b419e9976d087d7dd3b8c -#: ../../source/training/socialisation/inasafe_concepts.rst:303 -msgid "|project_name| does not need 'engineering quality' data" -msgstr "|project_name| tidak membutuhkan data dengan 'kualitas teknik'" - -# 2b069bab51a445db901f3491eb805e93 -#: ../../source/training/socialisation/inasafe_concepts.rst:309 -msgid "Population data" -msgstr "Data populasi" - -# be3e179c824c4d7cbccc4663078ab447 -#: ../../source/training/socialisation/inasafe_concepts.rst:314 -msgid "" -"Population data can often be obtained from your census bureau or through " -"various online data sources. One problem with population data is that it is " -"often quite coarse (represented using a raster with a large pixel size) and " -"so analysis at large scales (e.g. a small neighbourhood) using population " -"data may not always be the best idea. Currently |project_name| only " -"supports raster based census data, but in the near future we will be " -"releasing a version that supports assigning population estimates to " -"buildings using census data. One of the best online resources for population " -"data is 'WorldPop' - a project that aims to provide population data for " -"anywhere in the globe produced in a standardised and rigorous way." -msgstr "" -"Data populasi sering didapatkan dari badan sensus atau melalui sumber data " -"secara online. Satu masalah yang sering didapat dengan data populasi adalah " -"nilai data yang dimiliki kasar (diwakili oleh data raster dengn ukuran " -"piksel yang besar) sehingga analisis menggunakan skala besar ( contohnya " -"wilayah administrasi RT) untuk data populasi bukan menjadi hal yang baik. " -"Saat ini |project_name| hanya mendukung data raster berdasarkan data sensus, " -"akan tetapi di masa yang akan datang kami akan mengeluarkan versi terbaru " -"yang sudah mendukung perkiraan populasi untuk bangunan menggunakan data " -"sensus. Salah satu sumber data populasi yang bagus dapat anda dapatkan di " -"'WorldPop' - sebuah proyek yang menyediakan data populasi seluruh dunia dan " -"diproduksi secara global serta distandarisasi secara cermat." - -# 296aad71fa964703b7564e17da31bb82 -#: ../../source/training/socialisation/inasafe_concepts.rst:326 -msgid "**Key notes for population data**" -msgstr "**Catatan penting untuk data populasi**" - -# 56e44ab3655d487f88cf44d902b4ebff -#: ../../source/training/socialisation/inasafe_concepts.rst:328 -msgid "Raster 'cell' data" -msgstr "'Sel' data raster" - -# ee7ba2ee3cac42d784fed88cacae9035 -#: ../../source/training/socialisation/inasafe_concepts.rst:330 -msgid "Requirements" -msgstr "Persyaratan" - -# f9b25a835ba4429db684a5ac76358a00 -#: ../../source/training/socialisation/inasafe_concepts.rst:330 -msgid "Currently the data should be in EPSG:4326 CRS" -msgstr "" -"Saat ini data harus sudah memiliki sistem referensi koordinat EPSG:4326" - -# f9ecd4546c4247b0ad7793ab09e725a6 -#: ../../source/training/socialisation/inasafe_concepts.rst:332 -msgid "Make sure you know if your data represent density or count" -msgstr "" -"Pastikan anda mengetahui bahwa data populasi anda menunjukkan kepadatan atau " -"jumlah penduduk" - -# 3080dfd9e2134dd186d9f6e89a6e9d03 -#: ../../source/training/socialisation/inasafe_concepts.rst:334 -msgid "Can be obtained from a national mapping agency" -msgstr "Dapat diperoleh dari Badan Informasi Geospasial" - -# a6f7cc51396141659a637d282fd5e515 -#: ../../source/training/socialisation/inasafe_concepts.rst:338 -msgid "Landcover data" -msgstr "Data tutupan lahan" - -# 0c9cd47588054ea5a7472dc2f087b9ca -#: ../../source/training/socialisation/inasafe_concepts.rst:343 -msgid "" -"Landcover data can often be obtained from national mapping agencies or " -"through various online data sources. Landcover data are useful if you want " -"to assess the impact of a hazard event such as a volcanic eruption on crops." -msgstr "" -"Data tutupan lahan dapat diperoleh dari Badan Informasi Geospasial atau " -"melalui berbagai sumber data yang dapat anda temukan di internet. Data " -"tutupan lahan akan sangat berguna jika anda ingin menghitung dampak dari " -"suatu kejadian bencana seperti letusan gunung berapi pada ladang ataupun " -"sawah." - -# b4b2f690706540aab8078fa41f296e2d -#: ../../source/training/socialisation/inasafe_concepts.rst:348 -msgid "**Key notes for landcover data**" -msgstr "**Catatan penting untuk data tutupan lahan**" - -# b00989c4ac6a4e2aa0b9ed5b4e55b603 -#: ../../source/training/socialisation/inasafe_concepts.rst:352 -msgid "A field representing landcover type" -msgstr "Field yang menunjukkan jenis tutupan lahan" - -# 34c285b53ad148a08d4faf63a87360e0 -# 86452abcd8c1484f844489e95cd04d53 -#: ../../source/training/socialisation/inasafe_concepts.rst:356 -#: ../../source/training/socialisation/inasafe_concepts.rst:378 -msgid "National mapping agency" -msgstr "Badan Informasi Geospasial" - -# d2bb3fc0902149dfa582ad1ee7767cce -#: ../../source/training/socialisation/inasafe_concepts.rst:360 -msgid "Places data" -msgstr "Tempat data" - -# fe5575ffd83f44b6bf2a8620774e0847 -#: ../../source/training/socialisation/inasafe_concepts.rst:365 -msgid "" -"Places data can often be obtained from national mapping agencies or through " -"various online data sources. Places data are useful if you want to assess " -"the impact of a hazard event such as a volcanic ash event on place." -msgstr "" -"Tempat data dapat diperoleh dari Badan Informasi Geospasial atau melalui " -"berbagai sumber data online. Tempat data berguna jika anda ingin menilai " -"dampak dari kejadian ancaman seperti kejadian abu vulkanik." - -# d632640180f646e6a0c3e0ae68e919cc -#: ../../source/training/socialisation/inasafe_concepts.rst:370 -msgid "**Key notes for places data**" -msgstr "**Catatan kunci untuk data tempat**" - -# 4e500c21497a497995ae284b12b20b72 -#: ../../source/training/socialisation/inasafe_concepts.rst:372 -msgid "Vector point data" -msgstr "Data titik vektor" - -# 37a99a38c8e14f3c85fbba5f7b8873cf -#: ../../source/training/socialisation/inasafe_concepts.rst:374 -msgid "A field representing place name" -msgstr "Sebuah field mewakili nama tempat" - -# b2ad34754e6c44d6a73409dd5d757b8d -#: ../../source/training/socialisation/inasafe_concepts.rst:376 -msgid "There must be a field representing place name" -msgstr "Terdapat field yang mewakili nama tempat" - -# fdd4ea0b12674703ba8cd23c0ec89245 -#: ../../source/training/socialisation/inasafe_concepts.rst:383 -msgid "What is aggregation?" -msgstr "Apa itu aggregasi?" - -# 3fad5c7b981048f3949f4bdd2eacf555 -#: ../../source/training/socialisation/inasafe_concepts.rst:384 -msgid "" -"Aggregation is the process whereby we group the results of the analysis by " -"district so that you can see how many people, roads or buildings were " -"affected in each area. This will help you to understand where the most " -"critical needs are, and to generate reports as shown in the image below. " -"Aggregation is optional in |project_name| - if you do not use aggregation, " -"the entire analysis area will be used for the data summaries. Typically " -"aggregation layers in |project_name| have as attributes the name of the " -"district or reporting area. It is also possible to use extended attributes " -"to indicate the ratio of men and women; youth, adults and elderly living in " -"each area. Where these are provided and the exposure layer is population, |" -"project_name| will provide a demographic breakdown per aggregation area " -"indicating how many men, women etc were probably affected in that area." -msgstr "" -"Agregasi adalah proses dimana kita mengelompokkan hasil analisis berdasarkan " -"batas administrasi seperti kabupaten sehingga Anda dapat mengetahui berapa " -"banyak penduduk, jalan atau bangunan yang terkena dampak di masing-masing " -"wilayah adminitrasi. Hal ini akan membantu Anda untuk memahami dimana area " -"yang paling membutuhkan bantuan , dan untuk menghasilkan laporan seperti " -"yang ditunjukkan pada gambar di bawah. Agregasi merupakan pilihan yang " -"terdapat di |project_name| - Jika Anda tidak ingin menggunakan agregasi, " -"maka hasil dampak anda akan ditunjukkan sebesar area analisis. Layer " -"aggregasi di |project_name| memiliki nama masing-masing wilayah administrasi " -"di area analisis. Selain itu, dimungkinkan juga memasukkan atribut lain " -"seperti untuk menunjukkan rasio laki-laki dan perempuan ; remaja , dewasa " -"dan orang tua di masing-masing wilayah administrasi. Ketika aggregasi ini " -"digunakan beserta dengan layer keterpaparan penduduk, |project_name| akan " -"memberikan rincian demografis per area agregasi yang menunjukkan berapa " -"banyak pria, wanita dll yang mungkin terkena dampak di daerah itu." - -# b1e71095e59f44fb87ce9e4a2a271ea5 -#: ../../source/training/socialisation/inasafe_concepts.rst:403 -msgid "What is contextual data?" -msgstr "Apa itu data kontekstual" - -# 0676e2cc54e5446981377e8b79a2e804 -#: ../../source/training/socialisation/inasafe_concepts.rst:405 -msgid "" -"Contextual data are data that provide a sense of place and scale when " -"preparing or viewing the results of analysis, while not actually being used " -"for the analysis. For example you may include online maps to show the " -"underlying relief of the study area, or an aerial image to show what " -"buildings and infrastructure exist in the area." -msgstr "" -"Data kontekstual adalah data yang menyediakan gambaran dan skala menyeluruh " -"dari suatu lokasi untuk membantu kita melihat hasil dari analisis dengan " -"lebih baik, akan tetapi tidak digunakan sebagai data utama dalam membuat " -"analisis. Sebagai contoh, Anda mungkin butuh untuk memasukkan peta online " -"untukmenunjukkan kondisi topografi area analisis anda, atau sebuah citra " -"satelit untuk menunjukkan bangunan serta infrastruktur apa saja yang ada di " -"area tersebut." - -# 5e8354c698324e14b3053d34d37b654c -#: ../../source/training/socialisation/inasafe_concepts.rst:415 -msgid "Bing Aerial imagery for Jakarta, courtesy Bing Maps Open Layers" -msgstr "Citra satelit Bing untuk Jakarta, berasal dari Open Layers Bing Maps" - -# 25a64b21d344475c87e423db5c281d16 -#: ../../source/training/socialisation/inasafe_concepts.rst:418 -msgid "What is the difference between raster and vector data?" -msgstr "Apa perbedaan antara data raster dan vektor?" - -# 388055728db74492a1ce9ad3f9747323 -#: ../../source/training/socialisation/inasafe_concepts.rst:419 -msgid "" -"Vector data is arguably the most common kind of data you will find in the " -"daily use of GIS. It describes geographic data in terms of points that may " -"be connected into lines and polygons. Every object in a vector dataset is " -"called a feature, and is associated with data that describes that feature. " -"The basic shape of objects stored in the vector data is defined with a two-" -"dimensional coordinate system / Cartesian (x, y)." -msgstr "" -"Data vektor dapat dikatakan sebagai jenis data yang paling umum yang akan " -"Anda temukan dalam penggunaan SIG sehari-hari. Data Ini menggambarkan data " -"geografis dalam bentuk poin, yang dapat dihubungkan menjadi garis dan " -"poligon. Setiap objek dalam dataset vektor disebut fitur, dan berhubungan " -"dengan data yang menggambarkan fitur tersebut. Bentuk utama dari objek data " -"vektor ditunjukkan dengan bentuk dua dimensi dan memiliki sistem koordinat / " -"kartesius (x,y)." - -# c141f826e23341e5801faee9961a88b0 -#: ../../source/training/socialisation/inasafe_concepts.rst:430 -msgid "" -"Raster data is different from vector data. While vector data has discrete " -"features constructed out of vertices, and perhaps connected with lines and/" -"or areas; raster data, is like an image. Although it may portray various " -"properties of objects in the real world, these objects don't exist as " -"separate objects; rather, they are represented using pixels or cells of " -"various different numerical values. These values can be real and represent " -"different characteristics of the geography, such as water depth or amount of " -"volcanic ash; or they can be a code than is related to the type of land use " -"or the hazard class." -msgstr "" -"Data raster berbeda dengan data vektor. Jika data vektor memiliki bentuk " -"yang tersusun dari titik dan simpul yang saling terhubung satu sama lain " -"sehingga dapat menghasilkan bentuk garis dan/atau area; data raster, lebih " -"mirip sebuah foto. Walaupun data raster ini menangkap berbagai macam bentuk " -"informasi objek di dunia nyata, informasi tersebut tidak terpisah satu " -"dengan yang lain; bahkan, informasi atribut tersebut direpresentasikan " -"dengan piksel atau sel yang memiliki nilai angka yang berbeda-beda. Nilai " -"ini dapat merupakan nilai nyata dan menunjukkan karakteristik geografi yang " -"berbeda, seperti kedalaman air atau jumlah dari abu vulkanik; atau mereka " -"bisa berupa kode yang menunjukkan jenis penggunaan lahan atau tingkatan " -"ancaman." - -# 42719c8f136b448f97311d2bcebf3ecf -#: ../../source/training/socialisation/inasafe_concepts.rst:444 -msgid "" -"Creating vector data is like using a pen, where you can draw a point, a line " -"or a polygon, Raster data is like taking a picture with a camera, where each " -"square has one value, and all the squares (pixels) combine to make a picture." -msgstr "" -"Membuat data vektor seperti menggunakan sebuah pulpen, dimana Anda dapat " -"menggambar sebuah titik, garis atau poligon. Data raster seperti mengambil " -"sebuah gambar dengan kamera, dimana setiap kotak memiliki nilai, dan semua " -"kotak (pixel) tergabung menjadi sebuah gambar." - -# 5da005ef4f404a71bc7c6afe2476f3c3 -#: ../../source/training/socialisation/inasafe_concepts.rst:449 -msgid "" -"Both vector and raster data can be used in |project_name|. For example, we " -"use vector data for the extent of a flood hazard and as well as roads and " -"building footprint; but we use raster data for modelled hazards such as " -"flood depth, tsunami inundation and for population exposure." -msgstr "" -"Baik data vektor maupun raster dapat digunakan dalam |project_name|. Sebagai " -"contoh, kita menggunakan data vektor untuk ancaman banjir serta jalan dan " -"bangunan; tetapi kita menggunakan data raster untuk model ancaman seperti " -"kedalaman banjir, genangan tsunami dan keterpaparan populasi. " - -# 585faf152ce64d6bae4a7fbf9d2351d0 -#: ../../source/training/socialisation/inasafe_concepts.rst:455 -msgid "What is the difference between continuous and classified data?" -msgstr "Apa perbedaan antara data kontinyu dan data terklasifikasi?" - -# 68604645efaa48b9bd1d5b92ba9fe4a4 -#: ../../source/training/socialisation/inasafe_concepts.rst:457 -msgid "" -"In |project_name| we differentiate between data which is continuous and data " -"which is classified. The terms can be applied equally to both hazard and " -"exposure data. **Continuous** data represent a **continuously varying " -"phenomenon** such as depth in meters, population counts and so on." -msgstr "" -"Dalam |project_name| kita membedakan antara data mana yang merupakan data " -"kontinyu dan mana yang merupakan data terklasifikasi. Ketentuan tersebut " -"juga dapat digunakan baik untuk data ancaman dan data keterpaparan. Data " -"**Kontinyu** mewakilkan sebuah **fenomena yang bervasiasi secara terus " -"menerus** seperti kedalaman air dalam meter, jumlah penduduk dan seterusnya." - -# cd8fa642724a4a28b749c0e9cf184afa -#: ../../source/training/socialisation/inasafe_concepts.rst:466 -msgid "Continuous population data - courtesy WorldPop" -msgstr "Data kontinyu populasi - berasal dari WorldPop" - -# 487612500eda44c5aad6eb691333a344 -#: ../../source/training/socialisation/inasafe_concepts.rst:468 -msgid "" -"**Classified** data represent **named groups of values**, for example, high, " -"medium and low hazard. Grouping values works well when you wish to reduce " -"data preparation complexity or deal with local variances in the " -"interpretation of data. For example, a flood depth of 50cm may represent a " -"high hazard zone in an area where people commonly have basements in their " -"houses, and a low hazard zone in areas where people commonly build their " -"houses on raised platforms." -msgstr "" -"Data **terklasifikasi** menunjukkan **kelompok dari sebuah nilai**, sebagai " -"contoh ancaman tinggi, medium, dan rendah. Mengelompokkan nilai akan " -"membantu ketika anda ingin menyederhanakan data atau ketika memiliki banyak " -"variasi nilai dalam melakukan intrepetasi data. Sebagai contoh, kedalaman " -"banjir sebesar 50 cm mungkin akan dianggap area ancaman tinggi pada area " -"yang penduduknya memiliki rumah sejajar dengan permukaan tanah, tetapi " -"dianggap area ancaman rendah pada area yang penduduknya memiliki rumah " -"panggung / tinggi. " - -# e291d9f56a1c4af8bcef789f7a233f20 -#: ../../source/training/socialisation/inasafe_concepts.rst:480 -msgid "Classified raster flood data - courtesy BNPB/Australian Government" -msgstr "Data Raster Banjir Terklasifikasi - sumber BNPB/Pemerintah Australia" - -# d16b1b81f6a4452ab80095f4b94b9de6 -#: ../../source/training/socialisation/inasafe_concepts.rst:483 -msgid "What is the analysis extent?" -msgstr "Apa itu area analisis?" - -# ee8e881bb7fe4b6ebd9f86ac0f77908a -#: ../../source/training/socialisation/inasafe_concepts.rst:485 -msgid "" -"In |project_name| you need to explicitly state what the intended analysis " -"extent should be. In other words, you need to tell InaSAFE where the " -"analysis should be carried out. There is a tool in InaSAFE that will allow " -"you to drag a box around the intended analysis area - you should always " -"check that you have done this before starting your analysis." -msgstr "" -"Di |project_name| Anda butuh untuk secara eksplisit menjelaskan seberapa " -"besar luas area analisis Anda. Dengan kata lain, Anda butuh memberitahukan " -"InaSAFE dimana area analisis yang anda inginkan. Terdapat sebuah alat di " -"InaSAFE yang akan membantu anda membuat sebuah kotak untuk menentukan area " -"analisis Anda - Anda sebaiknya mengecek apakah area analisis Anda sudah " -"sesuai sebelum memulai analisis." - -#: ../../source/training/socialisation/inasafe_concepts.rst:-1 -msgid "Analysis extent in |project_name|" -msgstr "" - -# f2ebabcfc29b4c45a0f1abf23568480c -#: ../../source/training/socialisation/inasafe_concepts.rst:496 -msgid "" -"|project_name| will show you what your current desired analysis extent is " -"(blue line in green box), what the extent of your last analysis was (red box " -"in the image above) and what your effective extent is (green box in the " -"image above). The effective extent may not correspond exactly to your " -"desired analysis extent because |project_name| always aligns the extent to " -"the edge of raster pixels." -msgstr "" -"|project_name| akan menunjukkan batas dan luasan area analisis anda saat ini " -"(garis biru di dalam kotak hijau), batas dan luasan area analisis anda " -"sebelumnya (kotak merah pada gambar di atas) serta batas dan luasan area " -"analisis yang efektif untuk anda (kotak hijau pada gambar di atas). Area " -"analisis yang efektif mungkin tidak akan terlalu sesuai dengan area analisis " -"yang anda inginkan karena |project_name| selalu mensejajarkan luasan area " -"analisis dengan luas dari piksel data raster." - -# 8173c776961d4a9d84f78009b5be6749 -#: ../../source/training/socialisation/inasafe_concepts.rst:504 -msgid "What is an Impact Function?" -msgstr "Apa itu Fungsi Dampak?" - -# 789128e4b0bf4600b3119ced2de76dd4 -#: ../../source/training/socialisation/inasafe_concepts.rst:510 -msgid "" -"An Impact Function (often abbreviated to IF) is software code in |" -"project_name| that implements a particular algorithm to determine the impact " -"of a hazard on the selected exposure. Running an impact function is done " -"when you have prepared all your input data, defined your analysis extent and " -"wish to now see the impact outputs." -msgstr "" -"Fungsi Dampak (biasa disingkat dengan IF) adalah kode perangkat lunak di |" -"project_name| yang mengimplementasikan algoritma tertentu untuk menentukan " -"dampak dari suatu ancaman terhadap data keterpaparan tertentu. Menjalankan " -"fungsi dampak dapat dilakukan jika Anda telah memasukkan semua data yang " -"ingin anda analisis, menentukan area analisis anda dan melihat bentuk hasil " -"dari dampak analisa." - -# 6ed7e0ee8d964731bc2f6b864f608300 -#: ../../source/training/socialisation/inasafe_concepts.rst:516 -msgid "" -"Again, we should emphasise here that Impact Functions **do not model " -"hazards** - they **model the effects** of one or more hazard events on an " -"exposure layer. |project_name| groups its impact functions according to the " -"kind of hazard they work on:" -msgstr "" -"Tetapi, perlu diingat bahwa Fungsi Dampak itu **tidak membuat model " -"ancaman** - dia hanya **memodelkan dampak** dari satu atau lebih kejadian " -"ancaman untuk sebuah layer keterpaparan. |project_name| mengelompokkan " -"fungsi dampak berdasarkan jenis ancaman yang dikerjakan:" - -# ade655d0150547829ab6950bdc59a15d -#: ../../source/training/socialisation/inasafe_concepts.rst:522 -msgid "Supported data types for each hazard type in |project_name|" -msgstr "" -"Tipe data yang didukung oleh masing-masing tipe ancaman di |project_name|" - -# 842177d6e85342159116c354c3241763 -#: ../../source/training/socialisation/inasafe_concepts.rst:527 -msgid "Name Impact Functions" -msgstr "Nama Fungsi Dampak" - -# ffc6791b4e4b46ceaa88252f3e1a2ee2 -#: ../../source/training/socialisation/inasafe_concepts.rst:527 -msgid "Detail" -msgstr "Rincian" - -# 56bd7819f8fc40cc8ba58cb4560754c4 -#: ../../source/training/socialisation/inasafe_concepts.rst:530 -msgid "**Earthquake Impact Functions**" -msgstr "**Fungsi Dampak Gempa Bumi**" - -# 9aa6bbd69f034b209ff702fe0c7d6ef5 -#: ../../source/training/socialisation/inasafe_concepts.rst:533 -msgid "" -"**Earthquake hazard**: continuous raster, classified raster, and classified " -"polygon" -msgstr "" -"**Ancaman Gempa Bumi**: raster kontinyu, raster klasifikasi, dan poligon " -"terklasifikasi." - -# fbf23b53aa494063897cdd01f7fd7285 -# a3050f23b54e4934bc42873c73dbce07 -# 32cd0ab1800f491d904d8cf4e467805e -# 80e1d16d676745c6b2954c717bff6d4d -#: ../../source/training/socialisation/inasafe_concepts.rst:535 -#: ../../source/training/socialisation/inasafe_concepts.rst:548 -#: ../../source/training/socialisation/inasafe_concepts.rst:561 -#: ../../source/training/socialisation/inasafe_concepts.rst:574 -#: ../../source/training/socialisation/inasafe_concepts.rst:586 -#: ../../source/training/socialisation/inasafe_concepts.rst:608 -msgid "**Population exposure**: continuous raster with counts" -msgstr "" -"**Populasi terpapar**: raster kontinyu dengan nilai pre pixel menunjukkan " -"jumlah populasi" - -# fdf568af480443fabde7bf4d93914534 -# f2e03758b4734ce291b1a51c4174c30a -#: ../../source/training/socialisation/inasafe_concepts.rst:537 -#: ../../source/training/socialisation/inasafe_concepts.rst:550 -msgid "" -"**Building exposure**: classified polygon or point with a type attribute" -msgstr "" -"**Bangunan terdampak**: poligon terklasifikasi atau titik dengan atribut tipe" - -# 7de3bba4292a49b3bf88c164a0e580a9 -#: ../../source/training/socialisation/inasafe_concepts.rst:543 -msgid "**Flood Impact Functions**" -msgstr "**Fungsi Dampak Banjir**" - -# f51dbd36282140e6abb2f8a012281986 -#: ../../source/training/socialisation/inasafe_concepts.rst:546 -msgid "**Flood hazard**: continuous raster or classified polygon" -msgstr "**Ancaman banjir**: raster kontinyu atau poligon terklasifikasi" - -# 3e61d320102e42769a59810798b1b683 -# 1156c3a3011d4f6fa6d4679866fce5d4 -#: ../../source/training/socialisation/inasafe_concepts.rst:552 -#: ../../source/training/socialisation/inasafe_concepts.rst:565 -msgid "**Road exposure**: classified line with a type attribute" -msgstr "**Jaringan jalan terpapar**: klasifikasi garis dengan tipe attribut" - -# a9f0a29455e94cb5aee3178e27c31258 -#: ../../source/training/socialisation/inasafe_concepts.rst:556 -msgid "**Tsunami Impact Functions**" -msgstr "**Fungsi Dampak Tsunami**" - -# 7d9f05691b7c49cc904bbc59c4d8d457 -#: ../../source/training/socialisation/inasafe_concepts.rst:559 -msgid "**Tsunami hazard**: continuous raster or classified polygon" -msgstr "**Ancaman Tsunami**: raster kontinyu atau poligon terklasifikasi" - -# c58192c5369b430dad97f6fe801ae887 -# 3542555330bf4e7984d5f77b397e379d -#: ../../source/training/socialisation/inasafe_concepts.rst:563 -#: ../../source/training/socialisation/inasafe_concepts.rst:576 -#: ../../source/training/socialisation/inasafe_concepts.rst:588 -#: ../../source/training/socialisation/inasafe_concepts.rst:598 -#: ../../source/training/socialisation/inasafe_concepts.rst:610 -msgid "**Building exposure**: classified polygon with a type attribute" -msgstr "**Bangunan terpapar**: poligon terklasifikasi dengan tipe atribut" - -# 53e827664f894142ae0f2947fdde387c -#: ../../source/training/socialisation/inasafe_concepts.rst:569 -msgid "**Volcano Impact Functions**" -msgstr "**Fungsi Dampak Gunung Berapi**" - -# 6c4e1c5e18874e6b830e7f8044d35033 -#: ../../source/training/socialisation/inasafe_concepts.rst:572 -msgid "**Volcano hazard**: continuous polygon, classified polygon, and point" -msgstr "" -"**Ancaman Gunung Berapi**: poligon kontinyu, poligon terklasifikasi, dan " -"titik" - -# fed60db15d214de1b38418157b2fa53f -#: ../../source/training/socialisation/inasafe_concepts.rst:581 -msgid "**Volcanic Ash Impact Functions**" -msgstr "**Fungsi Dampak Abu Vulkanik**" - -# 62506dadfc534ff98dc6beac3054cf59 -#: ../../source/training/socialisation/inasafe_concepts.rst:584 -msgid "**Volcano hazard**: clasified polygon or continuous raster" -msgstr "**Ancaman Abu Vulkanik**: poligon terklasifikasi atau raster kontinyu" - -# 7de6bb92193a4ca898b4491ea93fa90f -#: ../../source/training/socialisation/inasafe_concepts.rst:593 -msgid "**Cyclone Impact Functions**" -msgstr "**Fungsi Dampak Angin Topan**" - -# c497f850733b4acc836dc5f6b61a8aa9 -#: ../../source/training/socialisation/inasafe_concepts.rst:596 -msgid "**Cyclone hazard**: clasified polygon or continuous raster" -msgstr "**Ancaman Angin Topan**: poligon terklasifikasi atau raster kontinyu" - -# 8063dfe3fdce43c0bda4ec0676be5823 -#: ../../source/training/socialisation/inasafe_concepts.rst:603 -msgid "**Generic Impact Functions**" -msgstr "**Fungsi Dampak Umum**" - -# bdf39d4b229f4a83ae3d57eba0965742 -#: ../../source/training/socialisation/inasafe_concepts.rst:606 -msgid "" -"**Generic hazard**: classified polygon, classified raster or continuous " -"raster" -msgstr "" -"**Ancaman umum**: poligon terklasifikasi, raster terklasifikasi, atau raster " -"kontinyu" - -# 91633882b31442be871bf13befb85fbc -#: ../../source/training/socialisation/inasafe_concepts.rst:612 -msgid "**Landcover exposure**: classified polygon with a type" -msgstr "**Keterpaparan Tutupan Lahan**: poligon terklasifikasi dengan tipe" - -# 0ec3ac42c4f7440e86ead959bb634d05 -#: ../../source/training/socialisation/inasafe_concepts.rst:614 -msgid "" -"A note about generic impact functions: Generic IF's are useful when your " -"data does not conform to the a priori expectations of |project_name|. For " -"example, you may wish to produce a report on buildings that might be " -"affected by a landslide, drought, smoke haze or any other hazard that does " -"not have an explicit Impact Function in |project_name|." -msgstr "" -"Catatan untuk fungsi dampak umum: fungsi dampak tersebut berguna ketika data " -"anda tidak sesuai dengan fungsi yang tersedia di |project_name|. Sebagai " -"contoh, anda mungkin ingin untuk menghasilkan laporan pada bangunan yang " -"mungkin terdampak longsor, kekeringan atau asap kebakaran hutan atau mungkin " -"bencana lain yang belum ada di fungsi dampak di |project_name|." - -# df4adc870bc94848b85d5184be5750d2 -#: ../../source/training/socialisation/inasafe_concepts.rst:623 -msgid "" -"Each Impact Function will generate outputs that may include: - an impact map " -"layer - an impact summary - minimum needs - action checklists" -msgstr "" -"Setiap Fungsi Dampak akan menghasilkan keluaran yang mungkin termasuk - " -"layer peta dampak - laporan analisis dampak - kebutuhan minimum - daftar " -"tindakan" - -# eec5fbad8f594f27b592d3341e0af4ee -#: ../../source/training/socialisation/inasafe_concepts.rst:635 -msgid "What is an impact layer?" -msgstr "Apa itu layer dampak?" - -# 841bb12bd0d444fd814b94cadcff0af7 -#: ../../source/training/socialisation/inasafe_concepts.rst:636 -msgid "" -"An impact layer is a new GIS dataset that is produced as the result of " -"running an impact function. It will usually represent the exposure layer. " -"For example, if you do a flood analysis on buildings, the impact layer " -"produced will be a buildings layer but each building will be classified " -"according to whether it is dry, wet or flooded. |project_name| will " -"typically apply its own symbology to the output impact layer to make it " -"clear which are the impacted buildings. This is illustrated in the image " -"below." -msgstr "" -"Layer dampak adalah dataset GIS baru yang dihasilkan sebagai hasil " -"perhitungan analisis fungsi dampak. Ini biasanya merepresentasikan layer " -"paparan. Contoh, jika anda menjalankan analisis banjir terhadap bangunan, " -"layer dampak akan menghasilkan layer bangunan tetapi tiap bangunan akan " -"terklasifikasikan sesuai dengan kondisi bangunan apakah bangunan tersebut " -"kering, tergenang atau terendam. |project_name| akan mengaplikasikan " -"simbologi mereka kedalam keluaran layer dampak untuk memberi informasi " -"dimana bangunan terdampak. Seperti contoh dibawah ini." - -# 9df4b6dbe422459683b9f254bb5ecbfc -#: ../../source/training/socialisation/inasafe_concepts.rst:644 -msgid "" -"It should also be noted that the impact layer will only include features / " -"cells that occur within the analysis extent. All others will be 'clipped " -"away'. It is very important to remember this when interpreting the map " -"legend and the impact summary (see section below) because they are only " -"relevant to the analysis area. The impact layer is not saved by default. If " -"you want to save this spatial data you need to do this yourself." -msgstr "" -"Harap diingat bahwa layer dampak hanya akan berisikan fitur/sel yang muncul " -"dalam area analisis. Lainnya akan dipotong. Sangatlah penting untuk " -"mengingat ini ketika ingin mengintrepetasi legenda peta dan laporan analisis " -"dampak (lihat bagian dibawah) karena mereka hanya relevan dalam area " -"analisis. Layer analisis dampak ini tidak tersimpan otomatis dikomputer " -"anda. Jika anda ingin menyimpan data spasial ini, anda harus melakukan " -"sendiri." - -# 1757d956e4754e139008d15af8cc8612 -#: ../../source/training/socialisation/inasafe_concepts.rst:656 -msgid "What is the impact summary?" -msgstr "Apa itu laporan analisis dampak?" - -# 521200b445c94b8c9bd0040d77cb0915 -#: ../../source/training/socialisation/inasafe_concepts.rst:657 -msgid "" -"Whereas the impact layer represents spatial data, the impact summary is " -"tabular and textual data. The impact summary provides a table (or series of " -"tables) and other textual information with the numbers of buildings, roads " -"or people affected, and includes other useful information such as minimum " -"needs breakdowns, action checklists and summaries. The impact summary " -"presents the results of the impact function in an easy to digest form. Our " -"expectation that the numbers show here would form part of the input to your " -"emergency management planning process - typically as a launch point for " -"discussion and planning on how to have sufficient resources in order to " -"cater for the impacted people, buildings or roads should a similar event to " -"the one on which the scenario is based occur. An example of an impact " -"summary is shown below." -msgstr "" -"Jika layer dampak merepresentasikan data spasial, maka laporan analisis " -"dampak merupakan data tabel dan teks. Laporan analisis dampak ini " -"menyediakan sebuah tabel (atau beberapa tabel) dan informasi teks lain " -"dengan jumlah bangunan, jalan, atau penduduk terdampak, dan juga informasi " -"tambahan lain seperti penjabaran kebutuhan minimum, daftar tindakan, dan " -"rangkuman. Laporan analisis dampak menyediakan hasil fungsi dampak menjadi " -"kedalam format yang lebih mudah dibaca. Ekspetasi kami adalah angka yang " -"muncul disini bisa menjadi bagian masukan ke proses perencanaan managemen " -"respon bencana - terutama untuk bahan diskusi dan perencanaan bagaimana " -"mendapatkan sumber daya yang cukup untuk membantu orang yang terdampak, " -"bangunan, atau jalan dalam skenario kejadian yang sejenis dengan skenario " -"kejadian yang biasa muncul. Contoh fungsi dampak seperti dibawah ini." - -# 5e5f85ff2ed947fb8d2a15b007eb6002 -#: ../../source/training/socialisation/inasafe_concepts.rst:674 -msgid "Example impact summary table showing breakdown of buildings flooded." -msgstr "" -"Contoh tabel analisis dampak menunjukkan penjabaran dari bangunan terdampak " -"banjir." - -# 0dc7f90447864d1a94929ecd57d4c2fc -#: ../../source/training/socialisation/inasafe_concepts.rst:677 -msgid "What are minimum needs?" -msgstr "Apa itu kebutuhan minimum?" - -# b09f346618a5441b96fe79cabbb73321 -#: ../../source/training/socialisation/inasafe_concepts.rst:678 -msgid "" -"Minimum needs are a population specific reporting component for the impact " -"summary. They are based on generic or regional preferences and define the " -"daily food and well-being requirements for each individual who may be " -"displaced during a disaster. For example you could specify that each person " -"should receive 20l of fresh drinking water per day, 50l of bathing water and " -"so on. |project_name| will calculate these numbers to provide an estimate of " -"the total needs for the displaced population." -msgstr "" -"Kebutuhan minimum adalah laporan spesifik untuk analisis yang terkait dengan " -"kependudukan. Laporan ini berdasarkan peraturan umum atau daerah dan " -"menjelaskan kebutuhan makanan perhari dan kebutuhan untuk setiap individu " -"yang diungsikan ketika terjadi bencana. Sebagai contoh anda bisa menentukan " -"bahwa setiap orang harus mendapatkan 20l air minum tiap hari, 50l air bersih " -"dan sebaganya. |project_name| akan menghitung angka ini untuk memberikan " -"sebuah estimasi dari kebutuhan total untuk penduduk yang mengungsi." - -# a3626409c20241f5a089e6807ecc9ad8 -#: ../../source/training/socialisation/inasafe_concepts.rst:691 -msgid "What are action checklists?" -msgstr "Apa itu daftar tindakan?" - -# 19a42241efd44bd7a4d14c8c4f28fa14 -#: ../../source/training/socialisation/inasafe_concepts.rst:692 -msgid "" -"Action checklists are generated lists of things disaster managers should " -"consider when implementing their disaster management plan. Currently the " -"action checklists are fairly simplistic - they are intended to prompt " -"discussion and stimulate disaster managers to think about the important " -"contingencies they should have in place." -msgstr "" -"Daftar tindakan merupakan daftar pertanyaan yang dihasilkan untuk manager " -"bencana dan bisa dijadikan pertimbangan ketika ingin mengimplementasikan " -"manajemen bencana mereka. Saat ini daftar tindakan yang ada sangatlah simple " -"- ditujukan untuk memunculkan diskusi dan menstimulasi manager bencana untuk " -"berpikir tentang pentingnya rencana kontijensi." diff --git a/docs/i18n/id/LC_MESSAGES/training/socialisation/index.po b/docs/i18n/id/LC_MESSAGES/training/socialisation/index.po deleted file mode 100644 index 7dd05e10..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/socialisation/index.po +++ /dev/null @@ -1,112 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 250ee0e08c074dc0b8676a69557a2d58 -#: ../../source/training/socialisation/index.rst:4 -msgid "Socialisation Training Manual" -msgstr "Pedoman Pelatihan Sosialisasi" - -# 7a96bebf7547472db142e9d94b881a11 -#: ../../source/training/socialisation/index.rst:5 -msgid "" -"A short course intended to \"socialise\" the participants with the basic " -"workflows typically carried out when performing a natural disaster scenario " -"analysis with QGIS and |project_name|." -msgstr "" -"Pelatihan singkat yang ditujukan untuk \"mengenalkan\" kepada peserta " -"mengenai dasar alur kerja yang biasanya dijalankan ketika menjalankan " -"analisis skenario bencana dengan QGIS dan |project_name|." - -# b8e0b2547a61414996c3d89cc900b2ea -#: ../../source/training/socialisation/index.rst:10 -msgid "|project_name| is funded by:" -msgstr "|project_name| didanai oleh:" - -# 1cbf28eac9cb4b81be66a51fe63aefc7 -#: ../../source/training/socialisation/index.rst:18 -msgid "Preface" -msgstr "Pengantar" - -# 729ffc28ab9142f6931280fd377064ef -#: ../../source/training/socialisation/index.rst:19 -msgid "" -"As one of the most hazard-prone and densely populated countries in the " -"world, Indonesia faces significant risk of loss of lives and challenges to " -"development progress as a result of natural disasters. The development of " -"disaster management plans is seen as an important step to strengthen " -"disaster risk reduction programs. However, this can only be effective when " -"risk assessments and contingency planning utilise realistic hazard " -"scenarios. Realistic hazard scenarios require scientific, sound and up-to-" -"date data hazard information as well as up-to-date, scale appropriate " -"exposure data. Such map-based risk assessments and contingency plans " -"contribute to better disaster management planning and response." -msgstr "" -"Sebagai salah satu negara yang padat penduduknya dan terletak di zona rawan " -"bencana di dunia, Indonesia menghadapi risiko jatuhnya korban jiwa dan " -"tantangan yang besar untuk kemajuan pembangunan sebagai akibat dari bencana " -"alam. Pengembangan rencana kontinjensi dipandang sebagai suatu langkah " -"penting untuk mempertahankan program pengurangan risiko bencana. Namun ini " -"hanya dapat dilakukan secara efektif ketika rencana kontinjensi menggunakan " -"skenario ancaman yang realistis. Skenario ancaman yang realistis harus " -"bersifat ilmiah, logis, dan data terbaru yang berkaitan untuk sumber ancaman " -"dan elemen keterpaparannya. Peta yang berdasarkan rencana kontinjensi harus " -"mampu menawarkan hasil yang akurat dan komprehensif dalam menghitung jumlah " -"bantuan minimum, identifikasi tempat-tempat yang aman, dan perencanaan lebih " -"jauh secara sektoral." - -# 720e8b94b8d947878f4d0712e633aec3 -#: ../../source/training/socialisation/index.rst:32 -msgid "Course media" -msgstr "Media Pembelajaran" - -# 75fc0abe4bf147bd8b90c14fc570321d -#: ../../source/training/socialisation/index.rst:33 -msgid "" -"All of the content for this course are available for free and can be freely " -"shared and redistributed under the Creative Commons Attribution 4.0 " -"International license." -msgstr "" -"Semua konten dari pelatihan ini tersedia secara gratis dan bisa " -"disebarluaskan dan didistribusikan dibawah lisensi Creative Commons " -"Attribution 4.0 International." - -# 9cd249e9fc624defb17199fa9867dc3b -#: ../../source/training/socialisation/index.rst:37 -msgid "" -"The data used in this course are available for download on `data.inasafe.org " -"`_. Ask your trainer which data you will need to " -"download for the course if it is not provided." -msgstr "" -"Data yang digunakan dalam pelatihan ini dapat di*download* pada `data." -"inasafe.org `_. Tanyakan pada pelatih Anda data " -"apa saja yang perlu Anda *download* untuk pelatihan jika mereka tidak " -"memberikan kepada Anda." - -# f129c50f07b247ae8815a6cd5ea2d618 -#: ../../source/training/socialisation/index.rst:42 -msgid "" -"If you are working through the training independently, please use the " -"relevant data package: `data.inasafe.org/TrainingDataPackages `_." -msgstr "" -"Jika anda melakukan pelatihan secara independen, anda dapat menggunakan " -"paket data: `data.inasafe.org/TrainingDataPackages `_." diff --git a/docs/i18n/id/LC_MESSAGES/training/socialisation/introduction.po b/docs/i18n/id/LC_MESSAGES/training/socialisation/introduction.po deleted file mode 100644 index 9ad43755..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/socialisation/introduction.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Emir Hartato , 2013 -# Fatisya Ilani Yusuf , 2018 -# harry mahardhika , 2013 -# mahardika fadmastuti , 2013 -# Riangga Sujatmiko , 2013 -# Werner Macho , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-12 04:35+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 01712ba7283e433985ef115667735d37 -#: ../../source/training/socialisation/introduction.rst:4 -msgid "Introducing |project_name|" -msgstr "Pengantar |project_name|" - -# 27eab81ed83d4418a2880d6073844126 -#: ../../source/training/socialisation/introduction.rst:6 -msgid "" -"In this section we will introduce |project_name| and provide some background " -"on the |project_name| project." -msgstr "" -"Dalam bab ini kami akan memperkenalkan |project_name| dan memberikan " -"gambaran umum tentang |project_name|." - -# f866840a68bc424ca41afe58d528501a -#: ../../source/training/socialisation/introduction.rst:10 -msgid "About the |project_name| project" -msgstr "Tentang proyek |project_name|" - -# b80d3b1c1f434992a7ec1629528912f0 -#: ../../source/training/socialisation/introduction.rst:12 -msgid "" -"The |project_name| project (http://inasafe.org) was started in order to " -"provide a tool for disaster managers who want to understand what the " -"potential impacts of a disaster will be. Initially the focus of activity was " -"in Indonesia - a country that is highly vulnerable to different disasters " -"including flood, tsunami, volcano, earthquakes, as well as other localised " -"disasters such as landslides, wildfire and so on. InaSAFE has since been " -"adopted for use in many other countries - it is not 'Indonesia specific'." -msgstr "" -"Proyek |project_name| (http://inasafe.org) dimulai dengan tujuan untuk " -"menyediakan alat bagi para manager penanggulangan bencana yang ingin " -"mempelajari potensi dampak dari suatu bencana. Awal mula fokus kegiatan ini " -"adalah di Indonesia - negara yang rentang terhadap berbagai bencana seperti " -"banjir, tsunami, gunung berapi, gempa bumi, dan juga bencana lokal seperti " -"longsor, kebakaran hutan, dsb. InaSAFE saat ini sudah diadopsi ke berbagai " -"negara - tidak hanya spesifik Indonesia saja." - -# 680a31d639134a55801d52a1d782ff89 -#: ../../source/training/socialisation/introduction.rst:20 -msgid "" -"The underlying goal of InaSAFE is to encourage and facilitate better " -"planning for disasters - our slogan is **\"better planning saves lives\"**." -msgstr "" -"Tujuan utama dari InaSAFE adalah untuk memfasilitasi dan membantu " -"perencaanaan yang lebih baik dalam menghadapi bencana - slogan kami yaitu " -"**\"better planning saves lives\"** (perencanaan yang baik menyelamatkan " -"banyak nyawa)." - -# fdb02591ca6e45f893b21b0e9b36087c -#: ../../source/training/socialisation/introduction.rst:27 -msgid "" -"Each country in the world faces its own unique challenges. According to the " -"\"Global Assessment Report for Disaster Risk Reduction (GAR)\" for Indonesia " -"the chief concerns are volcanoes and floods - other countries will face " -"different challenges." -msgstr "" -"Tiap negara di dunia menghadapi tantangan tersendiri. Berdasarkan \"Global " -"Assessment Report for Disaster Risk Reduction (GAR) / Laporan Awal Global " -"untuk Pengurangan Ancaman Bencana\" untuk bencana yang diperhatikan oleh " -"Indonesia adalah gunung berapi dan banjir - negara lain menghadapi kendala " -"yang berbeda." - -# bc1383219a5b4bb09f6924a034309552 -#: ../../source/training/socialisation/introduction.rst:36 -msgid "" -"Key disaster risks for Indonesia - Image courtesy ``_" -msgstr "" -"Resiko bencana untuk Indonesia - foto berdasarkan ``_" - -# 357a48f067f6491997c1a58ac2f620b5 -#: ../../source/training/socialisation/introduction.rst:43 -msgid "" -"Losses resulting from disasters in Indonesia - Image courtesy ``_" -msgstr "" -"Kerugian akibat bencana di Indonesia - foto dari ``_" - -# 3e45ab636ec34300977b176331414ece -#: ../../source/training/socialisation/introduction.rst:46 -msgid "" -"In the |project_name| project we strive to provide a tool that will enhance " -"the abilities of disaster managers to prepare for disasters and to reduce " -"the impact of those disasters on the local population and infrastructure." -msgstr "" -"Pada proyek |project_name| kita menyediakan alat yang akan meningkatkan " -"kemampuan manager penanggulangan bencana untuk menyiapkan kajian untuk " -"bencana dan mengurangi dampak bencana tersebut tehadap populasi lokal dan " -"infrastruktur." - -# 707c4854ee304f13a5ecde4b9d838722 -#: ../../source/training/socialisation/introduction.rst:51 -msgid "Open source" -msgstr "Sumber terbuka" - -# c6203d6ffb2d446c927800e04341674c -#: ../../source/training/socialisation/introduction.rst:52 -msgid "" -"From the beginning, |project_name| has been an open source project (GPL " -"license). This means there are no licensing fees, the software can be freely " -"copied and shared with anyone, and the source codes used to create the " -"software are freely available which means that anyone with a little " -"technical knowledge can contribute to the project. Being an Open Source " -"project is important for us because we want as many people as possible to be " -"able to use and improve the software. If 'better planning saves lives', " -"having a tool that can be used by everyone to do better planning makes " -"sense, right?" -msgstr "" -"Dari awal, |project_name| merupakan proyek dengan sumber terbuka (GPL " -"license). Ini berarti tidak ada biaya untuk lisensi, perangkat lunak dapat " -"secara gratis di sebarluaskan dan dibagikan ke semua orang, dan sumber kode " -"yang digunakan untuk membuat perangkat lunak ini tersedia secara gratis yang " -"berarti semua orang yang memiliki kemampuan teknis dapat ikut berkontribusi " -"kedalam proyek. Menjadi proyek dengan sumber terbuka merupakan hal yang " -"penting untuk kami karena kami ingin banyak orang yang bisa menggunakan dan " -"meningkatkan perangkat lunak ini. Jika mempunyai alat yang bisa digunakan " -"untuk semua orang dalam mengembangkan kemampuan perencanaannya, hal ini " -"tidaklah buruk bukan?" - -# cab0b2730c2447469a18e1f46ff4932b -#: ../../source/training/socialisation/introduction.rst:62 -msgid "Open data" -msgstr "Data terbuka (Open data)" - -# 6f2fb9de1ced4016a673a239289e4ce1 -#: ../../source/training/socialisation/introduction.rst:63 -msgid "" -"A key driving force in the ability to use tools such as |project_name| is " -"open access to relevant, up-to-date and well maintained geospatial data. " -"Without roads, buildings, administrative areas, flood and population data " -"etc., a tool like |project_name| would be impossible to use. OpenStreetMap." -"org, WorldPop and many government and non-government agencies around the " -"world have been leading the effort to make such datasets available. We " -"cannot emphasise enough the importance of government in taking a lead role " -"in making their data freely available so that it can be used for the benefit " -"of their citizens." -msgstr "" -"Salah satu faktor yang berpengaruh dalam menggunakan alat |project_name| ini " -"adalah akses terbuka terhadap data yang relevan, terbaru dan data geospasial " -"yang dikelola secara baik. Tanpa jaringan jalan, bangunan, batas " -"administrasi, data bencana dan data populasi, dst, sebuah |project_name| " -"tidak mungkin digunakan. OpenStreetMap.org, WorldPop, dan banyak sekali " -"pemerintah dan non pemerintah di seluruh dunia yang membuat data tersebut " -"tersedia. Kita tidak bisa lebih menekankan pentingnya peran pemerintah dalam " -"memimpin untuk membuat data mereka tersedia secara bebas sehingga kita bisa " -"menggunakannya untuk keuntungan penduduk mereka sendiri." - -# 1be224a72e0e41a783f06ed963a8cb01 -#: ../../source/training/socialisation/introduction.rst:74 -msgid "Watch the |project_name| promotional movie" -msgstr "Lihat video promosi untuk |project_name|" - -# 38ccee89df39451ea95f7c0f4a138883 -#: ../../source/training/socialisation/introduction.rst:75 -msgid "" -"If you want to know more you can watch the promotional movie. ``_" -msgstr "" -"Jika anda ingin mengetahui lebih lanjut anda bisa melihat video promosi " -"``_" diff --git a/docs/i18n/id/LC_MESSAGES/training/socialisation/introduction_to_qgis.po b/docs/i18n/id/LC_MESSAGES/training/socialisation/introduction_to_qgis.po deleted file mode 100644 index 26ec1acf..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/socialisation/introduction_to_qgis.po +++ /dev/null @@ -1,1046 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Sheila Amalia , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 4d72ee773a0b4975ae579cff6c1f27ed -#: ../../source/training/socialisation/introduction_to_qgis.rst:6 -msgid "Introduction to QGIS" -msgstr "Pengantar QGIS" - -# 5f679ab8acc94203a84322e50c6a501d -#: ../../source/training/socialisation/introduction_to_qgis.rst:9 -msgid "Introduction" -msgstr "Pengantar" - -# 13da5079ee32470781bd66dbed5d5016 -#: ../../source/training/socialisation/introduction_to_qgis.rst:11 -msgid "" -"QGIS is a user-friendly open source Geographic Information System (GIS). It " -"runs on Linux, OS X, Windows and Android. QGIS supports numerous vector, " -"raster, database formats and provide extendable functionality. Learn more " -"about the project at: `http://www.qgis.org `__" -msgstr "" -"QGIS merupakan perangkat lunak Sistem Informasi Geografi (SIG) Open Source " -"yang mudah digunakan. QGIS dapat berjalan di Linux, OS X, Windows, dan " -"Android. QGIS mendukung berbagai macam format vektor, raster, dan basis data " -"serta menyediakan fungsi tambahan. Anda dapat melihat lebih lanjut pada: " -"http://www.qgis.org `__" - -# a86eef5c1f124ca3941b9b4bbc2dc379 -#: ../../source/training/socialisation/introduction_to_qgis.rst:16 -msgid "QGIS is great because:" -msgstr "QGIS hebat karena:" - -# 82ac135d5ccb4113b85360c7ddba63f3 -#: ../../source/training/socialisation/introduction_to_qgis.rst:18 -msgid "It is completely free. It doesn’t cost anything." -msgstr "Gratis sepenuhnya. Tidak membutuhkan biaya apapun." - -# b58b6e1d12334b249347692f8e074606 -#: ../../source/training/socialisation/introduction_to_qgis.rst:20 -msgid "" -"It’s free, as in liberty. If you think a feature is missing, you can sponsor " -"the development of a feature, or add it yourself if you are familiar with " -"programming." -msgstr "" -"Bebas, dalam arti kebebasan. Jika Anda berpikir ada sebuah fitur yang " -"hilang, Anda dapat mendukung pengembangan sebuah fitur, atau menambahkannya " -"sendiri jika Anda sudah terbiasa dengan pembuatan program." - -# 4ac9f317999d483fbc768749a321168b -#: ../../source/training/socialisation/introduction_to_qgis.rst:24 -msgid "" -"It’s constantly developing and improving. Because many people continue " -"adding features, it keeps getting better." -msgstr "" -"Dikembangkan dan ditingkatkan secara berkala. Karena banyak orang yang " -"menambahkan fitur, sehingga QGIS semakin lebih baik." - -# 97bdd9fd16034c5db6b714f4d5d1312b -#: ../../source/training/socialisation/introduction_to_qgis.rst:27 -msgid "" -"Extensive help and documentation is available. If you have problems you can " -"always turn to the software documentation, other QGIS users, or even the " -"developers." -msgstr "" -"Tersedia bantuan dan dokumentasi yang lengkap. Jika Anda memiliki masalah, " -"anda selalu dapat melihat pada dokumentasi perangkat lunak, menghubungi " -"pengguna QGIS lain atau bahkan pengembangnya." - -# 2c2ad1371b5349e09a81f7df120a15b3 -#: ../../source/training/socialisation/introduction_to_qgis.rst:31 -msgid "" -"QGIS provides a continuously growing number of capabilities provided by core " -"functions and plugins. You can visualise, manage, edit, analyse data and " -"compose printable maps. QGIS is also the platform which InaSAFE is built on, " -"and so this document focuses on building foundational skills using QGIS." -msgstr "" -"QGIS menyediakan sejumlah kemampuan yang terus berkembang yang diberikan " -"oleh fungsi inti dan *plugin*. Anda dapat menampilkan, mengelola, mengedit, " -"menganalisa data dan menyusun peta untuk dicetak. QGIS juga merupakan " -"platform dari InaSAFE, sehingga dokumen ini berfokus untuk membangun " -"kemampuan dasar menggunakan QGIS." - -# 95423db552b6400f9e6d3c88060059d5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:37 -msgid "Learning objectives:" -msgstr "Tujuan pembelajaran:" - -# 74b3dc03f5094f3ebe2821e7c8dd4604 -#: ../../source/training/socialisation/introduction_to_qgis.rst:39 -msgid "Understand how to get QGIS" -msgstr "Memahami cara mendapatkan QGIS" - -# 468543ba819a442186a0046d41fb64d5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:41 -msgid "Understand how to install QGIS" -msgstr "Memahami cara memasang QGIS" - -# c67c1dce9bf64cdc96bd7d3a1a760a4c -#: ../../source/training/socialisation/introduction_to_qgis.rst:43 -msgid "Understand QGIS and its layout" -msgstr "Memahami QGIS dan *layout* QGIS" - -# 00d1be537f7543b78b7012073c685515 -#: ../../source/training/socialisation/introduction_to_qgis.rst:45 -msgid "Understand QGIS toolbars and how to manage them" -msgstr "Memahami *toolbar* QGIS dan cara mengaturnya" - -# e510ef581e63424aa70688d07ffe069a -#: ../../source/training/socialisation/introduction_to_qgis.rst:47 -msgid "Learn basic operation in QGIS" -msgstr "Mempelajari operasi dasar di QGIS" - -# e7dc852d20ff459e821f78c35505289b -#: ../../source/training/socialisation/introduction_to_qgis.rst:49 -msgid "How to install InaSAFE from QGIS" -msgstr "Memahami cara memasang InaSAFE dari QGIS" - -# dee9aadaccba4a6c8f7fffcee04634f5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:51 -msgid "Introduction to the InaSAFE toolbar and functionality" -msgstr "Mengenal fungsi dari *toolbar* InaSAFE" - -# c4f8ec96b79b496a8b9773a7c6c98462 -#: ../../source/training/socialisation/introduction_to_qgis.rst:54 -msgid "Data for this exercise:" -msgstr "Data untuk materi ini:" - -# fb8f5172ea2a4eaf8713ac9cab2f74a5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:56 -msgid "" -"The data for this exercise is available in Introduction to QGIS.zip which " -"can be downloaded in `InaSAFE Training Data Packages `__. To download QGIS, go to the `QGIS Website " -"`__ (we will explain how to download and install " -"QGIS later in this exercise). We will use the following QGIS project and " -"data:" -msgstr "" -"Data untuk latihan ini tersedia pada Introduction to QGIS.zip yang dapat " -"diunduh di `InaSAFE Training Data Packages `__. Untuk mengunduh QGIS, kunjungi `Situs QGIS " -"`__ (kami akan menjelaskan bagaimana mengunduh dan " -"memasang QGIS setelah bab ini). Data yang akan digunakan adalah:" - -# 55112100dc96495685b545a974c9664a -#: ../../source/training/socialisation/introduction_to_qgis.rst:62 -msgid "DKI_Jakarta_Introduction.qgs" -msgstr "DKI_Jakarta_Introduction.qgs" - -# 9ad5ecd777f947c2a455038d2ae512d4 -#: ../../source/training/socialisation/introduction_to_qgis.rst:64 -msgid "Jakarta_roads_WGS84.shp" -msgstr "Jakarta_roads_WGS84.shp" - -# 909f837830ac4e6485767f55d5bb0b3e -#: ../../source/training/socialisation/introduction_to_qgis.rst:66 -msgid "Jakarta_Flood_18113_WGS84.shp" -msgstr "Jakarta_Flood_18113_WGS84.shp" - -# 744a1a0ba58f4f05891f9512304abc6a -#: ../../source/training/socialisation/introduction_to_qgis.rst:68 -msgid "Jakarta_Flood_HKV_WGS84.tif" -msgstr "Jakarta_Flood_HKV_WGS84.tif" - -# 39c6f470f0424d4f81aa91d2db0d9cd3 -#: ../../source/training/socialisation/introduction_to_qgis.rst:71 -msgid "Exercises" -msgstr "Latihan" - -# ea7c04a01b7340a99af1445b512dfe82 -#: ../../source/training/socialisation/introduction_to_qgis.rst:74 -msgid "1. Getting QGIS" -msgstr "1. Mendapatkan QGIS" - -# cafff7d3e6874fd1b98234bf579eb004 -#: ../../source/training/socialisation/introduction_to_qgis.rst:76 -msgid "You can download QGIS software by accessing the main QGIS website:" -msgstr "Anda dapat mengunduh software QGIS dengan mengakses situs QGIS" - -# 37b3fadcfd694bb7afe759d6c4ce5021 -#: ../../source/training/socialisation/introduction_to_qgis.rst:78 -msgid "" -"Open your web browser and in the address bar at the top of the window type :" -"kbd:`qgis.org`. Press :kbd:`Enter`." -msgstr "" -"Buka browser internet Anda dan pada kolom pengisian url di bagian atas " -"tuliskan :kbd:`qgis.org`. Kemudian tekan :kbd:`Enter`." - -# 46ea03b3498b4b7e854c17c920966804 -#: ../../source/training/socialisation/introduction_to_qgis.rst:81 -msgid "The QGIS website will look something like this:" -msgstr "Situs resmi QGIS akan terlihat seperti ini:" - -# 0c91440c543c4402bc2b5836af25f609 -#: ../../source/training/socialisation/introduction_to_qgis.rst:86 -msgid "Click :guilabel:`Download Now`." -msgstr "Klik :guilabel:`Download Now!`" - -# 8fff70884d894c538eb7e10bdcc476a5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:88 -msgid "" -"If you are using Windows, there are 2 versions of QGIS (version 2.18 and " -"version 3.0). Choose :kbd:`Long term release repository (most stable)` and " -"click :guilabel:`QGIS Standalone Installer Version 2.18 (32 bit or 64 bit " -"depend your computer operating system)`. Your exact version number may be " -"different." -msgstr "" -"Jika Anda menggunakan Windows, ada dua versi QGIS (versi 2.18 dan versi " -"3.0). Pilih :kbd:`Rilisan Jangka Panjang (paling stabil)` dan klik :guilabel:" -"`QGIS Standalone Installer Versi 2.18 (32 bit or 64 bit sesuaikan dengan " -"sistem operasi komputer Anda)`. Nomor versi lengkap nya mungkin berbeda." - -# c3184d5bc11a4f2aa8968e13d83b6f7f -#: ../../source/training/socialisation/introduction_to_qgis.rst:96 -msgid "" -"If you are not using Windows, select your operating system from the menu. " -"Follow the installation instructions." -msgstr "" -"Jika Anda tidak menggunakan Windows, pilih Sistem Operasi Anda dari menu " -"yang tersedia. Ikuti intruksi instalasi." - -# 8790737b60d746c58cc19a3309a21a46 -#: ../../source/training/socialisation/introduction_to_qgis.rst:100 -msgid "2. Installing QGIS" -msgstr "2. Instalasi QGIS " - -# b0209c9fd88a489abcee9c7342e10686 -#: ../../source/training/socialisation/introduction_to_qgis.rst:102 -msgid "" -"After you download the QGIS software installer, the next step is to install " -"QGIS to your computer." -msgstr "" -"Setelah Anda berhasil mengunduh software QGIS, langkah selanjutnya adalah " -"memasang QGIS pada komputer Anda." - -# a33c514bdc4044079f37ac947b08b99d -#: ../../source/training/socialisation/introduction_to_qgis.rst:104 -msgid "Open the folder where you have the QGIS installation file." -msgstr "Buka folder dimana anda menyimpan file instalasi QGIS." - -# d2392a46929f45f9807bbe3367c85f2b -#: ../../source/training/socialisation/introduction_to_qgis.rst:109 -msgid "" -"Run the installation file. If you are installing QGIS version 2.x, it should " -"look something like this:" -msgstr "" -"Jalankan file instalasi tersebut. Jika Anda memasang QGIS versi 2.x, akan " -"terlihat seperti ini:" - -# 438ad65a43f24e908d457f78012246d0 -#: ../../source/training/socialisation/introduction_to_qgis.rst:114 -msgid "Click :guilabel:`Next` and follow the instructions." -msgstr "Klik :guilabel:`Next` dan ikuti instruksinya." - -# b67e7acca7ea4ca3bea86fddeaa7609d -#: ../../source/training/socialisation/introduction_to_qgis.rst:116 -msgid "" -"Once the installation is finished, you can open your QGIS in Start Menu." -msgstr "" -"Setelah proses instalasi selesai, Anda dapat membuka QGIS Anda di Start Menu." - -# d068092ff28546e59f803232eafa21aa -#: ../../source/training/socialisation/introduction_to_qgis.rst:121 -msgid "QGIS will look something like this:" -msgstr "Tampilan QGIS akan terlihat seperti ini:" - -# d101d071fb3d45eb9ccc6a32406088f9 -#: ../../source/training/socialisation/introduction_to_qgis.rst:127 -msgid "3. Understanding QGIS interface" -msgstr "3. Memahami tampilan antarmuka QGIS" - -# bd48569f2e814c34be3b501942d0b87a -#: ../../source/training/socialisation/introduction_to_qgis.rst:129 -msgid "" -"Next, we will introduce the main QGIS interface. In general, there are four " -"elements in QGIS:" -msgstr "" -"Berikutnya, kita akan mengenal tampilan antarmuka di QGIS. Secara umum, " -"terdapat empat elemen di QGIS:" - -# 547d9332b6554e9bbb3a2f1d7713cd21 -#: ../../source/training/socialisation/introduction_to_qgis.rst:135 -msgid "" -"**Layers Panel**: On the left side of QGIS is the layers panel. This panel " -"lists the layers, or files, that are loaded into our QGIS project. The " -"Layers Panel not only shows all the files that are currently open, it also " -"determines the order that they will be drawn on the map canvas. A layer that " -"is at the bottom of the list will be drawn first, and any layers above it " -"will be drawn on top." -msgstr "" -"**Panel Layer**: Panel layer terletak pada sisi kiri QGIS. Panel ini berisi " -"layer-layer, atau file, yang dimuat ke dalam proyek QGIS kita. Panel layer " -"tidak hanya menunjukkan semua file yang sedang kita buka, tetapi juga " -"menentukan susunan urutan yang akan digambar pada kanvas peta. Sebuah layer " -"yang terdapat di posisi paling bawah akan tergambar paling pertama atau " -"paling bawah dan layer lain yang terdapat diatasnya akan digambar diatasnya." - -# 314a89e674c547c6954ca1540a54ebb5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:142 -msgid "" -"**Toolbar**: At the top of QGIS are a large number of tools, which are " -"contained within various *toolbars*. For example, the :guilabel:`File` " -"toolbar allows you to save, load, print and start a new project. We already " -"used one of these tools when we opened this project." -msgstr "" -"**Toolbar**: Pada bagian atas QGIS terdapat banyak sekali *tools*, dimana " -"masing-masing *tool* tersebut masuk ke dalam beberapa kategori *toolbar*. " -"Contohnya, *toolbar* :guilabel:`File` mengizinkan Anda untuk menyimpan, " -"membuka, mencetak dan memulai proyek baru. Kita sudah menggunakan salah " -"satu dari *tools* tersebut ketika membuka proyek ini." - -# d791e1d923a249b8abecd7868cc898d1 -#: ../../source/training/socialisation/introduction_to_qgis.rst:151 -msgid "" -"By hovering your mouse over an icon, the name of the tool will appear to " -"help you identify each tool. The number of tools (buttons) can seem a bit " -"overwhelming at first, but you will gradually get to know them. The tools " -"are grouped into related functions on toolbars. If you look closely you can " -"see a vertical array of ten dots to the left of each toolbar. By grabbing " -"these with your mouse, you can move the toolbar to a more convenient " -"location, or separate it so that it sits on its own." -msgstr "" -"Dengan menggerakkan *mouse* Anda ke atas sebuah ikon, nama *tool* akan " -"muncul untuk membantu Anda mengidentifikasi setiap *tool*. Jumlah *tool* " -"(tombol) yang ada akan tampak sangat banyak pada awalnya, tapi Anda perlahan " -"akan mengenalnya. *Tool* yang ada dikelompokkan sesuai dengan fungsinya pada " -"*toolbars*. Jika Anda melihat lebih dekat, Anda akan melihat titik-titik " -"vertikal sejumlah sepuluh titik pada bagian kiri dari setiap toolbar. Jika " -"Anda meng-klik dan menahannya dengan menggunakan mouse Anda, Anda dapat " -"menggerakkan toolbar ke tempat yang lebih sesuai atau memisahkannnya sesuai " -"dengan keinginan Anda." - -# d6913249e22d4f72819c22e74fbc6474 -#: ../../source/training/socialisation/introduction_to_qgis.rst:163 -msgid "" -"**Map Canvas**: All of the map data that we load into QGIS will be displayed " -"here, both vector data and raster data." -msgstr "" -"**Kanvas Peta**: Semua data peta, baik data raster maupun vektor, yang " -"dimuat ke dalam QGIS akan ditampilkan disini." - -# bc2c84373bbd45fc91c1854daf45566d -#: ../../source/training/socialisation/introduction_to_qgis.rst:166 -msgid "" -"**Status bar**: The status bar shows information about the current map. It " -"allows you to adjust the map scale and see the mouse cursor’s coordinates on " -"the map." -msgstr "" -"**Status bar**: Status bar menampilkan informasi mengenai peta Anda. Disini " -"Anda dapat mengatur skala peta dan melihat kordinat dari letak kursor " -"*mouse* pada peta." - -# da2d9fc184114c1f91164f66195904c2 -#: ../../source/training/socialisation/introduction_to_qgis.rst:173 -msgid "" -"The coordinates of this map are the same type of coordinates that are " -"recorded by GPS devices. The status bar shows the longitude and latitude of " -"your mouse cursor." -msgstr "" -"Koordinat peta ini sama dengan tipe koordinat yang telah Anda pelajari " -"ketika Anda belajar mengenai GPS. Status bar ini akan menunjukkan posisi " -"lintang dan bujur dari kursor *mouse* Anda." - -# c78f631b09fd46ff8a36a7a978ba5516 -#: ../../source/training/socialisation/introduction_to_qgis.rst:177 -msgid "4. Manage toolbars" -msgstr "4. Mengatur *toolbars*" - -# 2ca782127a734ddd95cda24b3306bb49 -#: ../../source/training/socialisation/introduction_to_qgis.rst:179 -msgid "" -"At the top of QGIS are a large number of tools, which are contained within " -"various 'toolbars.' For example, the File toolbar allows you to save, load, " -"print, and start a new project. We already used one of these tools when we " -"opened this project." -msgstr "" -"Pada bagian atas QGIS terdapat banyak sekali *tools*, dimana masing-masing " -"*tool* tersebut masuk ke dalam beberapa kategori *toolbars*. Contohnya, " -"*toolbar* File memungkinkan Anda untuk menyimpan, memuat, mencetak, dan " -"memulai sebuah proyek baru. Kita sudah menggunakan salah satu *tools* ketika " -"membuka proyek ini." - -# 36adf3f26e70497cb9021601c268b575 -#: ../../source/training/socialisation/introduction_to_qgis.rst:186 -msgid "" -"By hovering your mouse over an icon, the name of the tool will appear to " -"help you identify each tool." -msgstr "" -"Dengan mengarahkan *mouse* Anda kepada icon yang tersedia, nama *tool* " -"tersebut akan muncul untuk membantu Anda mengidentifikasi setiap *tool*." - -# 5aaccfb9704a41e0994c49d86151050e -#: ../../source/training/socialisation/introduction_to_qgis.rst:189 -msgid "" -"The number of tools (buttons) can seem a bit overwhelming at first, but you " -"will gradually get to know them. The tools are grouped into related " -"functions on toolbars. If you look closly you can see a vertical array of " -"ten dots to the left of each toolbar. By grabbing these with your mouse, you " -"can move the toolbar to a more convenient location, or separate it so that " -"it sits on its own." -msgstr "" -"Jumlah *tools* (tombol) yang ada akan tampak sangat banyak pada awalnya, " -"tapi Anda perlahan akan mengenalnya. *Tools* yang ada dikelompokkan sesuai " -"dengan fungsi pada *toolbars*. Jika Anda melihat lebih dekat, Anda akan " -"melihat 10 titik-titik vertikal pada bagian kiri dari setiap toolbar. Jika " -"Anda meng-klik dan menahannya dengan menggunakan *mouse* Anda, Anda dapat " -"menggerakkan toolbar ke tempat yang lebih sesuai atau memisahkannnya sesuai " -"dengan keinginan Anda." - -# 243d3c88b46d4e409d7c987352192f06 -#: ../../source/training/socialisation/introduction_to_qgis.rst:199 -msgid "" -"If you feel overwhelmed by the number of toolbars, you can customize the " -"interface to see only the tools you use most often, adding or removing " -"toolbars as necessary." -msgstr "" -"Jika Anda merasa terganggu dengan jumlah *toolbar* yang ada, Anda dapat " -"mengubah tampilannya dengan menampilkan *tool* yang Anda sering gunakan " -"saja, menambahkan atau menghapus *toolbar* sesuai keperluan." - -# 193d97ba40cb43b8a95f1f4c681f2fd8 -#: ../../source/training/socialisation/introduction_to_qgis.rst:203 -msgid "" -"To add or remove a toolbar, **right-click** on empty space in toolbars, or " -"go to :menuselection:`View ‣ Toolbars`." -msgstr "" -"Untuk menambahkan atau menghapus sebuah *toolbar*, **klik-kanan** pada " -"tempat kosong di *toolbars*, atau silakan ke :menuselection:`Tampilan ‣ " -"Panel Alat-alat`." - -# 3baab396780047f59d3b2e2dfeba9597 -#: ../../source/training/socialisation/introduction_to_qgis.rst:206 -msgid "" -"Rearrange the toolbar so that it’s on one line. Left-click and hold the " -"vertical dots on the left hand side of the tool. Drag to the first line of " -"the toolbar." -msgstr "" -"Atur kembali *toolbar* sehingga menjadi hanya satu garis. Klik-kiri dan " -"tahan titik-titik vertikal yang berada disebelah kiri *tool*. Geser ke dalam " -"baris pertama *toolbar*." - -# ab729fcdc3e74c729ad35c940a4f4c61 -#: ../../source/training/socialisation/introduction_to_qgis.rst:214 -msgid "5. QGIS basic tools" -msgstr "5. *Tools* dasar QGIS" - -# 82715a277d5b4049be420adaf5d93a4a -#: ../../source/training/socialisation/introduction_to_qgis.rst:216 -msgid "" -"We’ve already taken a look at the QGIS toolbar and have seen the tools for " -"opening QGIS. Here’s a list of some of the most commonly used tools. Feel " -"free to play around with them if you like. The important thing for now is to " -"start getting familiar with QGIS." -msgstr "" -"Kita telah melihat *toolbar* QGIS dan melihat *tools* untuk membuka proyek " -"QGIS. Berikut ini daftar beberapa *tools* yang sering digunakan. Silakan " -"jika Anda ingin mengeksplorasi *tools* tersebut. Yang penting sekarang kita " -"menjadi terbiasa menggunakan QGIS." - -# c79350e27cc24ad792cf9685b0e4b854 -#: ../../source/training/socialisation/introduction_to_qgis.rst:222 -msgid "Add Vector Layer" -msgstr "Tambahkan Layer Vektor" - -# cc041297ce5244ce821d516845d9c519 -#: ../../source/training/socialisation/introduction_to_qgis.rst:222 -msgid "Add vector data to Layer List" -msgstr "Menambahkan data vektor ke Daftar Layer" - -# 1996f0e9497341cab95768cf0e8e82c5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:224 -msgid "Add Raster Layer" -msgstr "Tambahkan Layer Raster" - -# 8ba2808a6b314d238d7445e705a19948 -#: ../../source/training/socialisation/introduction_to_qgis.rst:224 -msgid "Add raster data to Layer List" -msgstr "Menambahkan data raster ke Daftar Layer" - -# 931e688baac747efa74915e9c15981f0 -#: ../../source/training/socialisation/introduction_to_qgis.rst:226 -msgid "New" -msgstr "Baru" - -# d455fa03761a4c0898277921d6029ae3 -#: ../../source/training/socialisation/introduction_to_qgis.rst:226 -msgid "Create new QGIS project" -msgstr "Membuat proyek QGIS baru" - -# b156d064104a41bebb9152b0b01b92c0 -#: ../../source/training/socialisation/introduction_to_qgis.rst:228 -msgid "Open" -msgstr "Buka" - -# 217eb08b3a3b488990e3c41543ea2ca6 -#: ../../source/training/socialisation/introduction_to_qgis.rst:228 -msgid "Open QGIS project" -msgstr "Membuka proyek QGIS" - -# ab42e7e791354881acdbe3bc91c7fb5c -#: ../../source/training/socialisation/introduction_to_qgis.rst:230 -msgid "Toggle Editing" -msgstr "Toggle untuk mengedit" - -# 8a12fc00b481472f93095e84cbf62d3c -#: ../../source/training/socialisation/introduction_to_qgis.rst:230 -msgid "Edit features in a layer" -msgstr "Mengedit suatu fitur pada layer" - -# a1ee368c561249278f579e81105c09ff -#: ../../source/training/socialisation/introduction_to_qgis.rst:232 -msgid "Pan Map" -msgstr "Geser Peta" - -# f1ec663ea89a4f6991c8b7c52ee11d00 -#: ../../source/training/socialisation/introduction_to_qgis.rst:232 -msgid "Drag the map to a new location" -msgstr "Menggeser peta ke lokasi yang kita inginkan" - -# a6d012ab4afd4767ab76ab639561eb81 -#: ../../source/training/socialisation/introduction_to_qgis.rst:234 -msgid "Zoom In" -msgstr "Perbesar" - -# 09dd3ce4b25f46e78bdd8e0eace053d0 -#: ../../source/training/socialisation/introduction_to_qgis.rst:234 -msgid "Zoom in on the map" -msgstr "Memperbesar peta" - -# d33b926aa74946abb47bf4f22349efe1 -#: ../../source/training/socialisation/introduction_to_qgis.rst:236 -msgid "Zoom Out" -msgstr "Perkecil" - -# 9d35736b4dcd4ddc90a3ad614e3828b4 -#: ../../source/training/socialisation/introduction_to_qgis.rst:236 -msgid "Zoom out on the map" -msgstr "Memperkecil peta" - -# 7b4dfa96e20b4bd1a8c0f318c5af6965 -#: ../../source/training/socialisation/introduction_to_qgis.rst:238 -msgid "Zoom Full" -msgstr "Perbesar keseluruhan" - -# 17b645d1deb5452383dfa19c4fddc53f -#: ../../source/training/socialisation/introduction_to_qgis.rst:238 -msgid "Zoom so that all layers fit in the map window" -msgstr "Memperbesar agar semua layer tampak pada jendela peta" - -# 6d20dce2643c413ba26cbb28eaeb561b -#: ../../source/training/socialisation/introduction_to_qgis.rst:240 -msgid "Identify features" -msgstr "Identifikasi fitur" - -# 67045701a071423fa3ec8765c3a8af31 -#: ../../source/training/socialisation/introduction_to_qgis.rst:240 -msgid "Identify the attribute of an active layer in the map canvas" -msgstr "Mengidentifikasi atribut dari sebuah layer aktif pada kanvas peta" - -# b272efaf29224772bedec635eba6c65a -#: ../../source/training/socialisation/introduction_to_qgis.rst:242 -msgid "Open Attribute Table" -msgstr "Buka Tabel Attribut" - -# f7d1e9fff12248a484ee471da180e169 -#: ../../source/training/socialisation/introduction_to_qgis.rst:242 -msgid "Open a layer’s attribute table" -msgstr "Membuka tabel atribut dari sebuah layer" - -# 6558d0a6d1af4237be49771f9a34d0d5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:244 -msgid "Select Single Feature" -msgstr "Pilih satu fitur" - -# 092fb0ee267c42c8a38e5b104cc85ffa -#: ../../source/training/socialisation/introduction_to_qgis.rst:244 -msgid "Select a feature in the selected layer" -msgstr "Memilih fitur dari layer yang dipilih" - -# e2f966264be846a18b36a1efc3f29799 -#: ../../source/training/socialisation/introduction_to_qgis.rst:248 -msgid "6. Navigating the map" -msgstr "6. Navigasi Peta" - -# eef16a11f34e475c9d5beedef56d0759 -#: ../../source/training/socialisation/introduction_to_qgis.rst:250 -msgid "" -"Before we examine the attributes of individual features, let’s take a quick " -"look at how to navigate the map. The main controls for moving the map around " -"and zooming in-and-out are on the panels at the top of QGIS by default." -msgstr "" -"Sebelum kita melihat atribut dari fitur secara individual, mari kita lihat " -"bagaimana melakukan navigasi pada peta. Kontrol utama untuk menggerakkan " -"peta dan memperbesar atau memperkecil tampilan, menurut pengaturan bawaan, " -"terletak pada panel di bagian atas QGIS." - -# 93bd08d1aa04493795b3b30e323b9905 -#: ../../source/training/socialisation/introduction_to_qgis.rst:256 -msgid "" -"When you click on one of these buttons, it changes the action of your mouse " -"in the main map window." -msgstr "" -"Ketika Anda meng-klik salah satu tombol tersebut, kursor *mouse* Anda akan " -"berubah fungsi ketika digunakan pada jendela peta." - -# fef468595cc24b90915431e626822410 -#: ../../source/training/socialisation/introduction_to_qgis.rst:258 -msgid "" -"Select the first button that looks like a hand. Now hold the left mouse " -"button down and drag the mouse in the map window. This allows you to **pan** " -"the map, or move it around." -msgstr "" -"Pilih tombol pertama yang terlihat seperti gambar tangan. Sekarang klik kiri " -"*mouse* Anda dan tahan kemudian geser pada jendela peta. Ini memungkinkan " -"Anda untuk **menggerakkan** peta ke arah yang Anda inginkan." - -# 46b90e3b7e19477d81ad264c0f529eea -#: ../../source/training/socialisation/introduction_to_qgis.rst:262 -msgid "" -"Select the button that has a plus :guilabel:`(+)` sign inside a magnifying " -"glass allows you to **zoom in** on the map. Using your mouse, draw a box " -"around your area of interest and release your mouse." -msgstr "" -"Pilih tombol dengan simbol :guilabel:`(+)` di dalam tombol kaca pembesar " -"yang memungkinkan Anda untuk **memperbesar** peta. Gambar sebuah kotak di " -"sekitar area yang Anda inginkan menggunakan *mouse* Anda dan kemudian lepas " -"*mouse* Anda." - -# 2d3288ca332c463aa135d4a14943781d -#: ../../source/training/socialisation/introduction_to_qgis.rst:266 -msgid "" -"The button that has a minus :guilabel:`(-)` sign inside a magnifying glass " -"allows you to **zoom out** on the map. Select this button and click on the " -"map." -msgstr "" -"Tombol dengan simbol :guilabel:`(-)` di dalam tombol kaca pembesar " -"memungkinkan Anda untuk **memperkecil** peta. Pilih tombol ini dan klik pada " -"peta." - -# 5ace19c4797f48baaf5214ff9b90e50b -#: ../../source/training/socialisation/introduction_to_qgis.rst:270 -msgid "" -"The button that looks like a magnifying glass with blue arrows pointing away " -"from it lets you **zoom to the full extent** of your map. Click this button " -"to see all the data that is loaded in the project fit into the map canvas." -msgstr "" -"Tombol yang berbentuk kaca pembesar dengan tanda panah berwarna biru " -"mengarah ke luar memungkinkan Anda untuk **melihat tampilan peta secara " -"keseluruhan**. Ketika Anda meng-klik tombol ini, Anda dapat melihat semua " -"data yang Anda masukkan pada kanvas peta." - -# 782a38aa12ec4228a40d01ff0e45bbbc -#: ../../source/training/socialisation/introduction_to_qgis.rst:274 -msgid "" -"We can always change the QGIS projection based on the projection of the " -"data. It makes it easier to edit our data in further steps if QGIS has the " -"same projection as the data." -msgstr "" -"Setiap saat proyeksi QGIS dapat diganti berdasarkan proyeksi data Anda. Ini " -"memudahkan kita untuk mengubah/mengedit data di langkah selanjutnya jika " -"QGIS mempunyai proyeksi yang sama dengan datanya." - -# 3a308c81bfc749f98c0e1d88ef645f86 -#: ../../source/training/socialisation/introduction_to_qgis.rst:279 -msgid "7. Hide and move layers" -msgstr "7. Menyembunyikan dan memindahkan layer" - -# 43b00a19a693496f8bf84abc8fba94a4 -#: ../../source/training/socialisation/introduction_to_qgis.rst:281 -msgid "" -"Sometimes if you handle many layers, you need to hide/unhide layers to make " -"the map canvas more organized. For example, open the pre-saved QGIS " -"project, :file:`DKI_Jakarta_Introduction.qgs`. Once all the data are " -"displayed on your map canvas, try toggling the layer, **Flood continous " -"raster (2007)** by clicking on the checkbox in the Layers Panel on the left " -"side of your screen." -msgstr "" -"Terkadang jika Anda bekerja dengan banyak layer, Anda mungkin membutuhkan " -"untuk menyembunyikan/menampilkan layer untuk membuat kanvas peta lebih " -"teroganisir. Sebagai contoh, buka proyek QGIS yang telah disimpan " -"sebelumnya, :file:`DKI_Jakarta_Introduction.qgs`. Ketika semua data " -"ditampilkan pada kanvas peta, cobalah untuk menyembunyikan/menampilkan " -"layer, **Flood continous raster (2007)** dengan mengklik kotak pada Panel " -"Layer di bagian kiri layar Anda." - -# 816f759fdf3845929c8b7c78a344d002 -#: ../../source/training/socialisation/introduction_to_qgis.rst:291 -msgid "" -"After you uncheck the check box, the layer will disappear from the map " -"canvas. This operation won’t remove your layer from the layers list but only " -"hide it temporarily until you recheck again the check box. Try to turn ON " -"the layer again to unhide the layer." -msgstr "" -"Setelah Anda mennghapus centang pada kotak tersebut, layer akan menghilang " -"dari kanvas peta. Langkah ini tidak akan menghapus layer Anda dari daftar " -"layer tetapi hanya menghilangkan sementara sampai Anda mencentang kembali " -"kotak tersebut. Silahkan coba mengaktifkan kembali layer ini untuk " -"menampilkan layer." - -# 843bdbb032664e09922c82576a4afccb -#: ../../source/training/socialisation/introduction_to_qgis.rst:296 -msgid "" -"What if your layer does not appear in the map canvas even though you already " -"turned ON your layers? In this example, the **Jakarta_roads_WGS84** layer " -"didn’t appear in Map Canvas even though it’s already turned ON. In this " -"case, it’s related to layer order. The layers in your Layers List are drawn " -"on the map in a certain order. The layer at the bottom of the list is drawn " -"first, and the layer at the top is drawn last. By changing the order of the " -"layers in the list, you can change the order they are drawn in." -msgstr "" -"Bagaimana jika layer Anda tidak muncul di kanvas peta meskipun Anda sudah " -"mengaktifkan layer tersebut? Sebagai contoh, layer **Jakarta_roads_WGS84** " -"tidak muncuk pada kanvas peta meskipun sudah diaktifkan. Di kasus ini, ini " -"terkait dengan urutan layer. Layer pada Daftar Layer ditampilkan pada peta " -"sesuai urutan. Layer paling bawah pada daftar akan digambar terlebih " -"dahulu, dan layer paling atas akan digambar terakhir. Dengan mengganti " -"urutan layer di daftar layer, Anda bisa mengubah urutan penggambaran." - -# ca407eecfeb146b482f058b8346caf49 -#: ../../source/training/socialisation/introduction_to_qgis.rst:306 -msgid "For example in this layer order..." -msgstr "Sebagai contoh untuk urutan layer ini..." - -# 8658f64f06974380854ddef6f1d423d0 -#: ../../source/training/socialisation/introduction_to_qgis.rst:311 -msgid "" -"… would result in **Jakarta_roads_WGS84** being hidden as they position " -"*underneath* **A Flood in Jakarta like 2013**. To solve this problem, simply " -"click the **Jakarta_roads_WGS84** layer and drag to the top of the Layer " -"List or reorder them to the correct order." -msgstr "" -"… akan menghasilkan **Jakarta_roads_WGS84** tersembunyi karena posisinya " -"*berada di bawah* **A Flood in Jakarta like 2013**. Untuk mengatasinya, klik " -"layer **Jakarta_roads_WGS84** dan tahan kemudian geser keatas dari Daftar " -"Layer untuk mengatur kembali ke urutan yang benar." - -# 04c778d3e0ed4983a97190bdcd7f33d6 -#: ../../source/training/socialisation/introduction_to_qgis.rst:319 -msgid "What do you see after you move the **Jakarta_roads_WGS84** layer?" -msgstr "Apa yang Anda lihat setelah memindahkan layer **Jakarta_roads_WGS84**?" - -# c4636ee667cc4464aa655b1ce605cccd -#: ../../source/training/socialisation/introduction_to_qgis.rst:321 -msgid "" -"You can see the road network now because the **Jakarta_roads_WGS84** layer " -"is shown above the other layers." -msgstr "" -"Anda dapat melihat jaringan jalan sekarang karena layer " -"**Jakarta_roads_WGS84** sudah berada di atas layer yang lain." - -# d637620aad8b4546b06b764a8fed6c6c -#: ../../source/training/socialisation/introduction_to_qgis.rst:325 -msgid "8. Symbolise layer" -msgstr "8. Mengubah simbol layer" - -# 3ef6320c18524b4ea33c9b0291c3ec30 -#: ../../source/training/socialisation/introduction_to_qgis.rst:327 -msgid "" -"The symbology of a layer is its visual appearance on the map. One of the " -"basic strengths of GIS is that you have a dynamic visual representation of " -"the data you’re working with. Therefore, the visual appearance of the map " -"(which depends on the symbology of the individual layers) is very important. " -"For example in the project that you currently have open, :file:" -"`DKI_Jakarta_Introduction.qgs`, you will see the **A Flood in Jakarta like " -"2013** layer covering the area of DKI Jakarta. Did the flood really cover " -"the whole of DKI Jakarta?" -msgstr "" -"Simbologi layer adalah tampilan visual layer tersebut dari peta. Salah satu " -"keunggulan dari SIG adalah Anda memiliki tampilan visual yang dinamis " -"merepresentasikan data yang Anda kerjakan. Oleh karena itu, tampilan visual " -"dari peta (yang mana tergantung dari simbologi masing-masing layer) sangat " -"penting. Sebagai contoh pada proyek yang sedang Anda buka, :file:" -"`DKI_Jakarta_Introduction.qgs`, Anda akan melihat layer **A Flood in Jakarta " -"like 2013** menutup wilayah DKI Jakarta. Apakah benar banjir terjadi di " -"seluruh wilayah DKI Jakarta?" - -# b32ccfa15773483fb23e8e6c4ad7ce0b -#: ../../source/training/socialisation/introduction_to_qgis.rst:335 -msgid "" -"To answer this, let’s turn OFF the **Jakarta_roads_WGS84** and **Flood " -"continous raster (2007)** layers and open the attribute table of **A Flood " -"in Jakarta like 2013** by right clicking the layer and selecting :guilabel:" -"`Open Attribute Table`. You will see there are 6 columns in this table and " -"one of the columns has the name ‘FLOODPRONE’ with values of Yes and No. A " -"value of Yes represents an area that is flooded, while a value of No " -"represents an area that has not been flooded. Let’s select a feature in this " -"layer and see the highlighted feature in the attribute table." -msgstr "" -"Untuk menjawab hal ini, mari nonaktifkan layer **Jakarta_roads_WGS84** and " -"**Flood continous raster (2007)** terlebih dahulu dan buka tabel atribut " -"dari **A Flood in Jakarta like 2013** dengan meng-klik kanan layer tersebut " -"dan memilih opsi :guilabel:`Open Attribute Table`. Anda akan melihat " -"terdapat 6 kolom pada tabel ini dan salah satunya bernama ‘FLOODPRONE’ " -"dengan nilai Yes dan No. Nilai Yes merepresentasikan area yang terdampak " -"banjir, sedangkan nilai No merepresentasikan area yang tidak banjir. Silakan " -"pilih salah satu fitur pada layer ini dan lihat fitur yang dipilih pada " -"tabel atribut." - -# 595f130051a34ad38ca970479b464b89 -#: ../../source/training/socialisation/introduction_to_qgis.rst:346 -msgid "What is the value of the selected feature in the attribute table?" -msgstr "" -"Berapa nilai yang ditunjukkan pada fitur yang dipilih pada tabel atribut?" - -# bd9b75c347884eb4b26cdc76c3d2061e -#: ../../source/training/socialisation/introduction_to_qgis.rst:348 -msgid "" -"Not all of the features in this dataset have a value of Yes (or flooded). " -"You need to see which features have a value of Yes to make it easier to " -"interpret the hazard area. To solve this problem, we will symbolise the data " -"so it will only shows the flooded area." -msgstr "" -"Tidak semua fitur pada dataset ini memiliki nilai Yes (atau terdampak " -"banjir). Anda perlu melihat fitur mana saja yang memiliki nilai Yes agar " -"memudahkan Anda melihat area terdampak bencana. Untuk mengatasi masalah ini, " -"kita akan melakukan simbologi pada data tersebut sehingga data tersebut " -"hanya menunjukkan area terdampak banjir saja." - -# 342e76a3e2664839ae943997ee6788bb -#: ../../source/training/socialisation/introduction_to_qgis.rst:352 -msgid "" -"Right click on the **A flood in Jakarta like 2013** layer and select :" -"guilabel:`Properties`." -msgstr "" -"Klik kanan pada layer **A flood in Jakarta like 2013** dan pilih :guilabel:" -"`Properti`." - -# 8c0351e5f16f459ba31e088ce3bc3ed7 -#: ../../source/training/socialisation/introduction_to_qgis.rst:354 -msgid "" -"Go to the :guilabel:`Style` tab and and change :guilabel:`Single Symbol` " -"into :guilabel:`Categorized`." -msgstr "" -"Pergi ke tab :guilabel:`Style` dan ubah :guilabel:`Single Symbol` menjadi :" -"guilabel:`Dikategorikan`." - -# 35cf894721184674b8964d65de3b1b57 -#: ../../source/training/socialisation/introduction_to_qgis.rst:356 -msgid "" -"Select :guilabel:`affected` in Column as the column that we will use to " -"categorize the data." -msgstr "" -"Pilih :guilabel:`FLOODPRONE` pada Kolom sebagai kolom yang digunakan untuk " -"mengkategorikan data." - -# 5859aa03010c477f8fd0ffff531f1e22 -#: ../../source/training/socialisation/introduction_to_qgis.rst:358 -msgid "" -"Click :guilabel:`classify` and turn off the values that have a value of No " -"or no value." -msgstr "" -"Klik :guilabel:`Klasifikasi` dan nonaktifkan nilai No dan yang tidak " -"memiliki nilai." - -# 14596550532b42c1a29afd035ca5d4f9 -#: ../../source/training/socialisation/introduction_to_qgis.rst:360 -msgid "Click OK" -msgstr "Klik OK" - -# dbf9ba61924a4c1ebb38f8aa0c5832a0 -#: ../../source/training/socialisation/introduction_to_qgis.rst:364 -msgid "" -"After you click :guilabel:`OK`, only features that have a value of Yes " -"(flooded) will be displayed on the map canvas, the other values won’t be " -"shown on the map canvas because you turned OFF the symbol that represents a " -"value of No. Symbology helps us better understand the data that we will work " -"on." -msgstr "" -"Setelah meng-klik :guilabel:`OK`, hanya fitur yang memiliki nilai Yes " -"(terdampak banjir) akan ditampilkan pada kanvas peta, nilai lainnya tidak " -"akan ditampilkan pada kanvas peta karena simbol yang merepresentasikan nilai " -"No sudah dinonaktifkan. Simbologi membantu kita untuk memahami mengenai data " -"yang akan kita kerjakan nantinya." - -# 6ed91481921943f29e636e41b191e752 -#: ../../source/training/socialisation/introduction_to_qgis.rst:370 -msgid "9. InaSAFE installation and set up" -msgstr "9. Instalasi InaSAFE" - -# 331e6b285a704de1a4fd599c188fdd66 -#: ../../source/training/socialisation/introduction_to_qgis.rst:372 -msgid "" -"As we know, the InaSAFE plugin has been built for QGIS. It is one of the " -"plugins which are available in the QGIS Repository. Make sure that you have " -"a working internet connection before you follow the steps below. To get " -"InaSAFE please follow these steps:" -msgstr "" -"Seperti yang kita tahu, *plugin* InaSAFE dibuat untuk QGIS. InaSAFE " -"merupakan salah satu *plugin* yang tersedia di *Repository* QGIS. Pastikan " -"Anda sudah terkoneksi dengan internet sebelum mengikuti langkah di bawah " -"ini. Untuk mengunduh InaSAFE ikuti langkah-langkah ini:" - -# c07468db01844cb2bb63540fb822797f -#: ../../source/training/socialisation/introduction_to_qgis.rst:377 -msgid "Go to :menuselection:`Plugins -> Manage and install plugins` menu." -msgstr "Pergi ke menu :menuselection:`Plugins > Kelola dan Install Plugin`." - -# 6178d345322b428d8d976f64ab961e26 -#: ../../source/training/socialisation/introduction_to_qgis.rst:381 -msgid "Go to the search box and type :kbd:`InaSAFE`." -msgstr "Arahkan ke kotak pencarian dan ketikkan :kbd:`InaSAFE`." - -# 1f8cc07302bc40ccafc01626b842ac1c -#: ../../source/training/socialisation/introduction_to_qgis.rst:387 -msgid "Select InaSAFE and click :guilabel:`Install plugin` and" -msgstr "Pilih InaSAFE dan klik :guilabel:`Install plugin` dan" - -# c9f241deeedb443cbabf5eac44f66830 -#: ../../source/training/socialisation/introduction_to_qgis.rst:386 -msgid "" -"wait for a moment until the InaSAFE dock appears in the right side of QGIS " -"main window." -msgstr "" -"tunggu beberapa saat sampai muncul dek InaSAFE di sisi kanan jendela utama " -"QGIS." - -# 0b40e9a568b149b39e08be0f5343b6a8 -#: ../../source/training/socialisation/introduction_to_qgis.rst:389 -msgid "Close the plugin manager window." -msgstr "Tutup jendela plugin manager." - -# 6b343c73afd045e08ab7e3e124141d57 -#: ../../source/training/socialisation/introduction_to_qgis.rst:391 -msgid "Congratulations! Now you have InaSAFE installed in QGIS." -msgstr "Selamat! Anda sudah berhasil memasang InaSAFE di QGIS." - -# 27c0d0355b2d4a94ad5afcd6ece724e1 -#: ../../source/training/socialisation/introduction_to_qgis.rst:394 -msgid "10. InaSAFE toolbars" -msgstr "10. *Toolbar* InaSAFE" - -# fea69a70aaca4d33b1e7dcc0cba4bffe -#: ../../source/training/socialisation/introduction_to_qgis.rst:396 -msgid "" -"After successfully installing InaSAFE, you should now have an **InaSAFE " -"dock** on the right hand side of your screen. It should look like this:" -msgstr "" -"Setelah InaSAFE berhasil dipasang, Anda seharusnya memiliki dek InaSAFE di " -"sebelah kanan layar Anda yang tampilannya seperti ini:" - -# 5b33780bcc5b4fbdbaad1e7fdf94f1d5 -#: ../../source/training/socialisation/introduction_to_qgis.rst:402 -msgid "" -"InaSAFE also comes with a toolbar of its own! To retrieve the InaSAFE " -"toolbar, you can right-click on the top toolbar and check InaSAFE." -msgstr "" -"InaSAFE juga memiiki *toolbar* sendiri! Untuk memunculkan *toolbar* InaSAFE, " -"Anda dapat klik kanan pada *toolbar* di atas dan centang InaSAFE" - -# 87cdda9057d644acadec070d18bf5ea2 -#: ../../source/training/socialisation/introduction_to_qgis.rst:409 -msgid "InaSAFE Dock" -msgstr "Dek InaSAFE" - -# d2551e03fd26441585e6576d3f5d8f90 -#: ../../source/training/socialisation/introduction_to_qgis.rst:411 -msgid "Set Analysis Area" -msgstr "Tentukan Daerah Analisis" - -# c80b1ec430964469b66c9e0bf2b98e2a -#: ../../source/training/socialisation/introduction_to_qgis.rst:413 -msgid "Toggle Scenario Outline" -msgstr "Tombol untuk beralih ke Garis Bantu Skenario" - -# a61bfeba34f94a9fae7f2c69fe7d6c3e -#: ../../source/training/socialisation/introduction_to_qgis.rst:415 -msgid "Keyword Creation Wizard" -msgstr "Wizard Pembuat Keyword" - -# 70f04aff836a49e18b859bbfa0604b7c -#: ../../source/training/socialisation/introduction_to_qgis.rst:417 -msgid "Impact Function Centric Wizard" -msgstr "Wizard Fungsi Dampak Terpusat" - -# f07b3e66ae5e4f419ea5dfa7f8637679 -#: ../../source/training/socialisation/introduction_to_qgis.rst:419 -msgid "OpenStreetMap Downloader" -msgstr "Pengunduh OpenStreetMap" - -# ce29f49edd63453ead54315d92c7e5e2 -#: ../../source/training/socialisation/introduction_to_qgis.rst:421 -msgid "Add OpenStreetMap Tile Layer" -msgstr "Tambah Layer Tile OpenStreetMap" - -# 43b52d6b9ce44996b2b35536410f5f17 -#: ../../source/training/socialisation/introduction_to_qgis.rst:423 -msgid "InaSAFE Help" -msgstr "Bantuan InaSAFE" - -# 03febbea8db74f3f962fe9ed23608924 -#: ../../source/training/socialisation/introduction_to_qgis.rst:426 -msgid "" -"Later we will explore and use these tools in **Run Basic InaSAFE** and " -"**Intermediate Modules**." -msgstr "" -"Selanjutnya kita akan mempelajari dan menggunakan *tools* pada **Menjalankan " -"InaSAFE Dasar** dan **Modul Menengah**." - -# ffc9e01eb3cf4b6e86a9446298b53e69 -#: ../../source/training/socialisation/introduction_to_qgis.rst:429 -msgid "Summary" -msgstr "Ringkasan" - -# 12162eee30bc483ebf3225cca72844e2 -#: ../../source/training/socialisation/introduction_to_qgis.rst:431 -msgid "" -"In this exercise you have learned about QGIS, the free and open source " -"software for processing spatial data. You have learned where to get QGIS, " -"how to install QGIS, understood the QGIS layout and looked at some useful " -"toolbars, learning how to turn ON/OFF QGIS layers, and learned how to " -"symbolise the data layers." -msgstr "" -"Pada bab ini, Anda telah mempelajari QGIS, perangkat lunak yang bebas dan " -"terbuka untuk memproses data spasial. Anda telah mempelajari cara untuk " -"mendapatkan QGIS, bagaimana cara memasang QGIS, memahami layout QGIS dan " -"melihat beberapa *toolbar* yang sering digunakan, mempelajari bagaimana cara " -"mengaktifkan dan menonaktifkan layer QGIS, dan mempelajari bagaimana cara " -"untuk mengubah simbologi layer data." - -# 10e4d8ed5d9545d5b56e8bc6a346fd53 -#: ../../source/training/socialisation/introduction_to_qgis.rst:438 -msgid "" -"We also learned how to install InaSAFE through the QGIS plugin manager. " -"Later on we will learn how to operate InaSAFE with DKI Jakarta flood " -"scenario." -msgstr "" -"Kita juga mempelajari bagaimana cara untuk memasang InaSAFE menggunakan " -"*plugin manager* QGIS. Selanjutnya kita akan belajar menjalankan InaSAFE " -"dengan skenario Banjir DKI Jakarta." diff --git a/docs/i18n/id/LC_MESSAGES/training/socialisation/objective.po b/docs/i18n/id/LC_MESSAGES/training/socialisation/objective.po deleted file mode 100644 index 5d650804..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/socialisation/objective.po +++ /dev/null @@ -1,465 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2014 -# BiondiSima , 2014 -# mahardika fadmastuti , 2013 -# elida nurrohmah , 2014 -# Fatisya Ilani Yusuf , 2018 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# mahardika fadmastuti , 2013-2014 -# Wulansari Khairunisa , 2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-12 04:34+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# e3e9c4d37bde4d2b9b07ba064dfd4a85 -#: ../../source/training/socialisation/objective.rst:4 -msgid "Course objectives" -msgstr "Tujuan pembelajaran" - -# 46621f93c0ed4c64bc8ee1a08e1fcc83 -#: ../../source/training/socialisation/objective.rst:6 -msgid "" -"We will introduce you to |project_name| (http://inasafe.org) - an extension " -"for QGIS that allows disaster managers to do better planning for disasters. " -"In this course we explain the conceptual domain - what |project_name| does " -"(and does not do), why it is important to use a tool such as |project_name|, " -"what kinds of hazards |project_name| can be used with and so on. We then " -"delve into the practical side of using |project_name|." -msgstr "" -"Kami akan memperkenalkan anda pada |project_name| (http://inasafe.org) - " -"suatu perangkat tambahan untuk QGIS yang memungkinkan bagi pengelola bencana " -"untuk melakukan perencanaan yang lebih baik dalam menghadapi bencana. Dalam " -"pembelajaran ini kamu akan menjelaskan konsep domain - apa |project_name| " -"yang dapat dilakukan (dan tidak dapat dilakukan), mengapa penting untuk " -"menggunakan perangkat seperti |project_name|, jenis ancaman apa saja yang " -"dapat digunakan oleh |project_name| dan lain-lain. Kami akan menjelaskan " -"sisi praktik menggunakan |project_name|." - -# 45870115ad244a7882b86450ad233148 -#: ../../source/training/socialisation/objective.rst:13 -msgid "" -"On completion of the course participants should have acquired the following " -"skills related to using |project_name|:" -msgstr "" -"Setelah menyelesaikan pembelajaran, peserta memperoleh keterampilan yang " -"terkait dalam menggunakan |project_name|:" - -# 4141f75ecd784651bc8184a89bada7a9 -#: ../../source/training/socialisation/objective.rst:23 -msgid "General" -msgstr "Umum" - -# 21f6c7acbf0544958cc45feae54fc28b -#: ../../source/training/socialisation/objective.rst:17 -msgid "Understand the conceptual space in which |project_name| can be used" -msgstr "Memahami konsep ruang dimana |project_name| dapat digunakan" - -# 35f351e1d3bd4711973b7c8e1b5b132e -#: ../../source/training/socialisation/objective.rst:18 -msgid "Understand the concept of hazard data" -msgstr "Memahami konsep data ancaman" - -# 39f65dda50ed45ba97e0d1d7d0f63405 -#: ../../source/training/socialisation/objective.rst:19 -msgid "Understand the concept of exposure data" -msgstr "Memahami konsep data keterpaparan" - -# d5144887eb674acab5a4224567e0a734 -#: ../../source/training/socialisation/objective.rst:20 -msgid "Understand the concept of aggregation data" -msgstr "Memahami konsep data agregasi" - -# 467cfa131def4508ac0d0996e9fd545f -#: ../../source/training/socialisation/objective.rst:21 -msgid "Understand the concept of an impact layer" -msgstr "Memahami konsep layer dampak" - -# e9e74cce4bf34103b87dbeebe73095c9 -#: ../../source/training/socialisation/objective.rst:22 -msgid "Understand the concept of an impact summary" -msgstr "Memahami konsep ringkasan dampak" - -# 2df796b431904e008fef5037b2582be9 -#: ../../source/training/socialisation/objective.rst:28 -msgid "Data preparation" -msgstr "Persiapan data" - -# 91254e8a412c47dd8bbdd037d7ceb426 -#: ../../source/training/socialisation/objective.rst:26 -msgid "Be able to import a hazard layer and assign it appropriate keywords" -msgstr "Dapat mengimpor layer ancaman dan menetapkan kata kunci yang sesuai" - -# 5e0bc89be3e84d20b2698cff462ce4c7 -#: ../../source/training/socialisation/objective.rst:27 -msgid "Be able to import an exposure layer and assign it appropriate keywords" -msgstr "" -"Dapat mengimpor layer keterpaparan dan menetapkan kata kunci yang sesuai" - -# 665e31cacbe94e219caac240c8ba1dd1 -#: ../../source/training/socialisation/objective.rst:28 -msgid "" -"Be able to import an aggregation layer and assign it appropriate keywords" -msgstr "Dapat mengimpor layer agregasi dan menetapkan kata kunci yang sesuai" - -# 27b22563a2ae4819855dc09f987de3ac -#: ../../source/training/socialisation/objective.rst:33 -msgid "Analysis – Run Basic InaSAFE" -msgstr "Analisis - Menjalankan InaSAFE Tingkat Dasar" - -# 25c6135eafc94537ab439f6ae5c10e80 -#: ../../source/training/socialisation/objective.rst:31 -msgid "Be able to run a flood analysis using |project_name| - on buildings" -msgstr "" -"Dapat menjalankan analisis banjir menggunakan |project_name| - pada bangunan" - -# 4c93410bc31543d5a50ed874a3fa60ff -#: ../../source/training/socialisation/objective.rst:32 -msgid "Be able to run a flood analysis using |project_name| - on population" -msgstr "" -"Dapat menjalankan analisis banjir menggunakan |project_name| - pada populasi" - -# 9d2b78989446475794d4f8cecaf5170c -#: ../../source/training/socialisation/objective.rst:33 -msgid "Be able to generate a PDF map from the results of an analysis" -msgstr "Dapat menghasilkan peta PDF dari hasil analisis" - -# acf9e1e62d1f43bbadcf608efd5d00fb -#: ../../source/training/socialisation/objective.rst:39 -msgid "Analysis – Run Intermediate InaSAFE" -msgstr "Analisis - Menjalankan InaSAFE Tingkat Menengah" - -# a29bfdb28ba3478e92fefc6760632571 -#: ../../source/training/socialisation/objective.rst:36 -msgid "Be able to define keywords using the |project_name| keywords wizard" -msgstr "" -"Dapat mendefinisikan kata kunci menggunakan |project_name| kata kunci wizard" - -# c1ed09583492497b95046be2c366e4d4 -#: ../../source/training/socialisation/objective.rst:37 -msgid "Be able to run |project_name| with aggregation data" -msgstr "Dapat menjalankan |project_name| dengan data agregasi" - -# 380d8b1dce0243e6b676bfdb18133bb2 -#: ../../source/training/socialisation/objective.rst:38 -msgid "Be able to use the |OSM| downloader" -msgstr "Dapat menggunakan alat pengunduh data |OSM|" - -# f454612109ba4a53996c43ad2e33673a -#: ../../source/training/socialisation/objective.rst:39 -msgid "" -"Be able to set the analysis area using the |project_name| analysis area tool" -msgstr "" -"Dapat mengatur area analisis menggunakan |project_name| analysis area tool" - -# 74b2ec699e474f9e9d1072f805929dac -#: ../../source/training/socialisation/objective.rst:46 -msgid "Analysis – Run Other Hazards" -msgstr "Analisis - Menjalankan Ancaman Lainnya" - -# bec3251178594af1a06887536eaf4a40 -#: ../../source/training/socialisation/objective.rst:42 -msgid "" -"Be able to run InaSAFE with other hazards, such as Earthquake, Tsunami and " -"Volcano" -msgstr "" -"Dapat menjalankan InaSAFE dengan ancaman lainnya, seperti gampa bumi, " -"tsunami, dan gunung berapi" - -# ab5113c0dd25455ca7576ff64e3b2ca0 -#: ../../source/training/socialisation/objective.rst:43 -msgid "Be able to read metadata and assign keywords to hazard data" -msgstr "Dapat membaca metadata dan menentukan kata kunci untuk data ancaman" - -# eeb9e368e79a487f871f51c1ffe478b1 -#: ../../source/training/socialisation/objective.rst:44 -msgid "" -"Be able to use the |project_name| dock and the |project_name| Impact " -"Function Centric Wizard" -msgstr "" -"Dapat menggunakan dek |project_name| dan |project_name| Wizard Fungsi Dampak " -"Terpusat" - -# def49e51ef3e45c5a04127903142eedd -#: ../../source/training/socialisation/objective.rst:45 -msgid "" -"Be able to use the Generic Impact Function and understand how to use it to " -"work with their own data" -msgstr "" -"Dapat menggunakan Fungsi Dampak Umum dan memahami bagaimana menggunakannya " -"untuk mengerjakan dengan data mereka sendiri" - -# ee982541e6bc460c8f5a75a394e187a9 -#: ../../source/training/socialisation/objective.rst:50 -msgid "Practical application" -msgstr "Aplikasi praktis" - -# b9884ffed1b94c2c80884c6bc6715037 -#: ../../source/training/socialisation/objective.rst:49 -msgid "Be able to explain the purpose of |project_name|" -msgstr "Dapat menjelaskan tujuan dari |project_name|" - -# b9ce7424313f42aea49548229f52a1fd -#: ../../source/training/socialisation/objective.rst:50 -msgid "" -"Be able to interpret |project_name| analysis results and use them in " -"disaster management" -msgstr "" -"Dapat menginterpretasikan hasil analisis |project_name| dan menggunakannya " -"dalam manajemen bencana" - -# d8bbfbc0239b4449bee69d3d0cd5616c -#: ../../source/training/socialisation/objective.rst:53 -msgid "Target audience" -msgstr "Target peserta" - -# 7bc3d9a23282487eaa04a77504e7d1f7 -#: ../../source/training/socialisation/objective.rst:55 -msgid "Persons responsible for developing disaster management plans" -msgstr "" -"Orang yang bertanggung jawab untuk mengembangkan rencana manajemen bencana" - -# c91db47ddf084c9bb870d4fbd9caa537 -#: ../../source/training/socialisation/objective.rst:56 -msgid "" -"Lecturers and students from relevant departments such as Geography, Geodesy, " -"Geomatics, Information Technology and other earth-related sciences" -msgstr "" -"Dosen dan mahasiswa dari departemen yang relevan seperti Geografi, Geodesi, " -"Geomatika, Teknologi Informasi dan sains kebumian lainnya" - -# d7163b944768415782364d674873f400 -#: ../../source/training/socialisation/objective.rst:58 -msgid "Representatives from NGOs working in disaster risk reduction" -msgstr "" -"Perwakilan dari Lembaga Swadaya Masyarakat (LSM) yang bekerja di bidang " -"pengurangan risiko bencana" - -# e93b2bbfc73e47899807c93cfff90a19 -#: ../../source/training/socialisation/objective.rst:59 -msgid "Other relevant organisations and agencies" -msgstr "Organisasi dan agensi lain yang relevan" - -# e320c0490ee741d4a93cd0d1b59d7b15 -#: ../../source/training/socialisation/objective.rst:62 -msgid "Prerequisites" -msgstr "Prasyarat" - -# d82574ac1fc7476bb2ea019dd1941d41 -#: ../../source/training/socialisation/objective.rst:64 -msgid "" -"Able to operate a computer (word processors, presentations, internet, " -"spreadsheets)." -msgstr "" -"Dapat mengoperasikan komputer (pengolah kata, presentasi, internet, " -"spreadsheets)." - -# bfead2bee0e140278124e9069c726842 -#: ../../source/training/socialisation/objective.rst:66 -msgid "Basic skills in Geographic Information Systems (GIS) is an advantage." -msgstr "" -"Kemampuan dasar dalam Sistem Informasi Geografis (SIG) adalah sebuah " -"keuntungan." - -# 5272629c0a0e42c8b0decf4de59196c9 -#: ../../source/training/socialisation/objective.rst:67 -msgid "Laptop with:" -msgstr "Laptop dengan:" - -# d14a1fa14df646eb9ed15091625a4553 -#: ../../source/training/socialisation/objective.rst:69 -msgid "Minimum RAM of 2 GB (recommended 4 GB)" -msgstr "Minimum RAM 2 GB (disarankan 4 GB)" - -# d15bf8de07514b888c8ff311d7ae0c29 -#: ../../source/training/socialisation/objective.rst:70 -msgid "WIFI - connected to the internet" -msgstr "WIFI - terhubung dengan internet" - -# 58da9f349cb9457db6095650ac8e8dc3 -#: ../../source/training/socialisation/objective.rst:71 -msgid "" -"Windows (XP, 7, 8, 10), Linux (Training Ubuntu later than 12.04) or similar " -"(e.g. Mint or Debian), Mac OS X Mavericks (10.9), Mountain Lion (10.8) and " -"Lion (10.7)." -msgstr "" -"Windows (XP, 7, 8, 10), Linux (Training Ubuntu lebih dari 12.04) atau serupa " -"(Mint atau Debian), Mac OS X Mavericks (10.9), Mountain Lion (10.8), dan " -"Lion (10.7)." - -# 9f249c1ceb8a46a0a1e1a7db2adb4848 -#: ../../source/training/socialisation/objective.rst:73 -msgid "" -"|QGIS| long term release installed http://www.qgis.org or the ability to " -"install software on computer (i.e. have administration password)" -msgstr "" -"|QGIS| Rilis jangka panjang terinstal http://www.qgis.org atau kemampuan " -"untuk menginstal perangkat lunak pada komputer (memiliki kata sandi " -"administrasi)" - -# 98715828d6b2407490957a74dbc34c7d -#: ../../source/training/socialisation/objective.rst:76 -msgid "Credits" -msgstr "Pengembang" - -# 4eb97e3f218d49b2b045737da078572a -#: ../../source/training/socialisation/objective.rst:78 -msgid "" -"|project_name| was originally developed by the |GoA| in partnership with The " -"National Disaster Management Authority (|BNPB|) Indonesia, and the World " -"Bank-(|GFDRR|)." -msgstr "" -"|project_name| awalnya dikembangkan oleh |GoA| bekerja sama dengan Badan " -"Nasional Penanggulangan Bencana (|BNPB|) Indonesia, dan Bank Dunia-(|GFDRR|)." - -# 82bb307dac2c4d018ba1657225efc112 -#: ../../source/training/socialisation/objective.rst:82 -msgid "" -"This |project_name| Socialisation Training Manual was developed by `Kartoza " -"`_ in collaboration with the |GoA| and the Humanitarian " -"OpenStreetMap Team (|hot|)." -msgstr "" -"|project_name| Sosialisasi Pelatihan Manual dikembangkan oleh `Kartoza " -"`_ dalam kolaborasi dengan |GoA| dan Humanitarian " -"OpenStreetMap Team (|hot|)." - -# e5ce289d5d554050b573822cdb441fb8 -#: ../../source/training/socialisation/objective.rst:87 -msgid "Manual based on:" -msgstr "Petunjuk berdasarkan pada:" - -# f45bb2c4e3be4ba98c875738ef91ed84 -#: ../../source/training/socialisation/objective.rst:89 -msgid "Version 4.3.x of |project_name|" -msgstr "Versi 4.3.x dari |project_name|" - -# 6012ca992ef74f72bc5ebca9082874ff -#: ../../source/training/socialisation/objective.rst:90 -msgid "Version 2.18.x of |QGIS|" -msgstr "Versi 2.18.x dari |QGIS|" - -# 66ea8c4b9d28441dbf0dfa132f638169 -#: ../../source/training/socialisation/objective.rst:93 -msgid "Produced:" -msgstr "Dibuat:" - -# 8edb78fbefd3400482eee93c4845809e -#: ../../source/training/socialisation/objective.rst:95 -msgid "" -"August 2013 (original) September 2014 (update) September 2015 (major " -"revision) June 2016 (update) August 2016 (update) April 2017 (update) Maret " -"2018 (update)" -msgstr "" -"Agustus 2013 (orisinil) September 2014 (diperbarui) September 2015 (revisi " -"utama) Juni 2016 (diperbarui) August 2016 (diperbarui) April 2017 " -"(diperbarui) Maret 2018 (diperbarui)" - -# e96b8e9dcd174c39b38a048c9bf2e59c -#: ../../source/training/socialisation/objective.rst:104 -msgid "More information:" -msgstr "Informasi lebih lanjut:" - -# 6a597cdeb5a54e89a0722410fd301999 -#: ../../source/training/socialisation/objective.rst:106 -msgid "" -"General information on |project_name| appears online at the |project_name| " -"website: http://www.inasafe.org" -msgstr "" -"Informasi umum tentang |project_name| terdapat secara online pada website |" -"project_name|: http://www.inasafe.org " - -# c72100a1aee043c286c515530f01eae3 -#: ../../source/training/socialisation/objective.rst:109 -msgid "Contact: info@inasafe.org" -msgstr "Kontak : info@inasafe.org" - -# 96a207dca74a49b8be8ad0cf4e787d75 -#: ../../source/training/socialisation/objective.rst:111 -msgid "**OR**" -msgstr "**OR**" - -# c1bacca36d2b436483e8c47a41017f22 -#: ../../source/training/socialisation/objective.rst:113 -msgid "DMInnovation," -msgstr "DMInnovation," - -# 94fed49880e64f57b5cabbd04f988462 -#: ../../source/training/socialisation/objective.rst:115 -msgid "" -"Cyber 2 Tower 17th floor, suite M57-58 Jl. HR. Rasuna Said, Blok X-5, Kav. " -"13 Jakarta 12950 Indonesia" -msgstr "" -"Menara Cyber 2 lantai 17, suite M57-58 Jl. HR. Rasuna Said, Blok X-5, Kav. " -"13 Jakarta 12950 Indonesia" - -# 57ef37cc8a4a4523b7941476f6579aa2 -#: ../../source/training/socialisation/objective.rst:120 -msgid "Phone. 021- 5799 8239 Ext.439" -msgstr "Telepon. 021- 5799 8239 Ext.439" - -# 32813064b16d4d8dbc9f94873df62d46 -#: ../../source/training/socialisation/objective.rst:126 -msgid "Resources obtained by:" -msgstr "Sumber diperoleh oleh:" - -# 290dbfab60804c6da80679d8f78e000d -#: ../../source/training/socialisation/objective.rst:128 -msgid "Linfiniti Sphinx Theme" -msgstr "Linfiniti Sphinx Theme" - -# 28d3001e1dca4666b49e8eb3ab6545fc -#: ../../source/training/socialisation/objective.rst:131 -msgid "Manual licensed under:" -msgstr "Manual lisensi di bawah:" - -# 54529af5a7cd4836bd6808707f577348 -#: ../../source/training/socialisation/objective.rst:133 -msgid "" -"Creative Commons by Attribution by Kartoza/|BNPB|/|GoA|/World Bank-|GFDRR|." -msgstr "" -"Creative Commons dari atribusi oleh Kartoza/|BNPB|/|GoA|/Bank Dunia-|GFDRR|." - -# 4c636046416249018b90a9e016dc45ee -#: ../../source/training/socialisation/objective.rst:136 -msgid "Authors:" -msgstr "Penulis:" - -# ad4d24175a064bf6944b162c59a17831 -#: ../../source/training/socialisation/objective.rst:138 -msgid "`Tim Sutton `_, Lead Developer - Kartoza" -msgstr "`Tim Sutton `_, Pengembang utama - Kartoza" - -# e789d271b10b4ebb94ca1beb2ddbaf4d -#: ../../source/training/socialisation/objective.rst:140 -msgid "" -"`Charlotte Morgan `_, Spatial Data Analyst - " -"Geoscience Australia" -msgstr "" -"`Charlotte Morgan `_, Analis Data Spasial - " -"Geoscience Australia" - -# beb3c7de51004d79a76bce33adc7a492 -#: ../../source/training/socialisation/objective.rst:143 -msgid "" -"Adityo Dwijananto, Harry Mahardika, Wulansari Khairunisa, Tri Selasa, " -"Adhitya Dido, Sheila Amalia, Fatisya Ilani - Humanitarian OpenStreetmap Team " -"Indonesia" -msgstr "" -"Adityo Dwijananto, Harry Mahardika, Wulansari Khairunisa, Tri Selasa, " -"Adhitya Dido, Sheila Amalia, Fatisya Ilani - Humanitarian OpenStreetmap Team " -"Indonesia" diff --git a/docs/i18n/id/LC_MESSAGES/training/socialisation/run_basic_inasafe.po b/docs/i18n/id/LC_MESSAGES/training/socialisation/run_basic_inasafe.po deleted file mode 100644 index 42d19a05..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/socialisation/run_basic_inasafe.po +++ /dev/null @@ -1,1228 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Adhitya Dido Widyanto , 2018 -# adityo dwijananto , 2018 -# Dewi Sulistioningrum , 2014 -# mahardika fadmastuti , 2013 -# elida nurrohmah , 2014 -# Emir Hartato , 2013 -# Emir Hartato , 2013-2014 -# harry mahardhika , 2013 -# mahardika fadmastuti , 2013-2014 -# Ranie Dwi Anugrah , 2014 -# Riangga Sujatmiko , 2013 -# Riangga Sujatmiko , 2013 -# Vasanthi Hargyono , 2014 -# Werner Macho , 2014 -# Wulansari Khairunisa , 2014 -# Yantisa Akhadi , 2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-12 03:34+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 487ff2ec640a47e380a22aaca3389bf4 -#: ../../source/training/socialisation/run_basic_inasafe.rst:6 -msgid "Run Basic |project_name|" -msgstr "Menjalankan |project_name| Dasar" - -# 65db813ce2804a64b1afeb4572acf0df -#: ../../source/training/socialisation/run_basic_inasafe.rst:9 -msgid "Introduction" -msgstr "Pengantar" - -# 2c186bd081a94743bd3aaaeee2ce9b04 -#: ../../source/training/socialisation/run_basic_inasafe.rst:11 -msgid "" -"In this exercise we will work through an example scenario where we show how " -"the different data elements used by |project_name| are combined in order to " -"analyse the potential impact of a flood in Jakarta on both the buildings and " -"the population." -msgstr "" -"Pada pelatihan ini kita akan bekerja menggunakan contoh skenario dimana kita " -"akan ditunjukan bagaimana elemen-elemen data yang berbeda digunakan oleh |" -"project_name| untuk dikombinasikan dengan tujuan menganalisis dampak " -"potensial banjir di Jakarta terhadap bangunan dan populasi. " - -# 01395e61e7fc412d870c4d349e6d577f -#: ../../source/training/socialisation/run_basic_inasafe.rst:16 -msgid "" -"After we have run the |project_name| analysis we will print the map and " -"analysis report as pdf and review the results. We will also learn how to " -"change the flood threshold and take a look at the default settings for " -"minimum needs. We will also learn how to save our work." -msgstr "" -"Setelah kita menjalankan analisis |project_name| kita akan mencetak peta dan " -"laporan analisis sebagai pdf dan melihat hasilnya. Kita juga akan " -"mempelajari bagaimana mengganti ambang batas banjir dan melihat bagaimana " -"pengaturan awal untuk kebutuhan minimum. Kita juga akan mempelajari " -"bagaimana cara menyimpan pekerjaan kita." - -# 38154e80883542b4bbbe47435367f260 -#: ../../source/training/socialisation/run_basic_inasafe.rst:22 -msgid "Learning objective" -msgstr "Tujuan Pembelajaran" - -# 7deb39377d8b42cea86c78e00c9ddbef -#: ../../source/training/socialisation/run_basic_inasafe.rst:24 -msgid "" -"To develop the participant’s basic understanding of the |project_name| " -"workflow and application of |project_name| in the Disaster Management " -"sector. By the end of this exercise, participants will:" -msgstr "" -"Untuk mengembangkan pemahaman dasar peserta dalam mempelajari alur kerja |" -"project_name| dan aplikasi |project_name| di sektor penanggulangan bencana. " -"Diakhir kegiatan, para peserta akan: " - -# d46a1790716b4eb09cc1675425fe47f3 -#: ../../source/training/socialisation/run_basic_inasafe.rst:28 -msgid "Be able to run a flood analysis using |project_name| - on buildings;" -msgstr "" -"Dapat menjalankan analisis banjir menggunakan |project_name| - pada bangunan;" - -# aed0224b426a424f8838d83b52006a2a -#: ../../source/training/socialisation/run_basic_inasafe.rst:30 -msgid "Be able to run a flood analysis using |project_name| - on population;" -msgstr "" -"Dapat menjalankan analisis banjir menggunakan |project_name| - pada data " -"populasi;" - -# 9255ef0fef7e4aaa8c327fa62c8de015 -#: ../../source/training/socialisation/run_basic_inasafe.rst:32 -msgid "Understand the flood impact default settings;" -msgstr "Memahami pengaturan awal fungsi dampak banjir;" - -# b78233029e084a2fb045eb96cc0ca390 -#: ../../source/training/socialisation/run_basic_inasafe.rst:34 -msgid "Understand the impact summary report;" -msgstr "Memahami hasil laporan analisis dampak;" - -# dd9e71d967c64d3d87f351e0a30ceb38 -#: ../../source/training/socialisation/run_basic_inasafe.rst:36 -msgid "Be able to change the analysis threshold and run a new scenario;" -msgstr "Mampu merubah batasan analisis dan menjalankan skenario baru;" - -# fcf6188492eb4e2193276bcefa7c4e65 -#: ../../source/training/socialisation/run_basic_inasafe.rst:38 -msgid "Be able to generate a PDF map from the results of an analysis; and" -msgstr "Dapat menghasilkan peta PDF dari hasil analisis; dan" - -# b3b68c367af3457183454ad2853c7877 -#: ../../source/training/socialisation/run_basic_inasafe.rst:40 -msgid "Be able to save their work to share results with others." -msgstr "" -"Mampu menyimpan hasil kerja untuk membagikan hasil analisis dengan orang " -"alin." - -# f2a211bd388f48abac25693d2016aa94 -#: ../../source/training/socialisation/run_basic_inasafe.rst:43 -msgid "Data for this exercise" -msgstr "Data untuk materi ini" - -# 6b97b2728be241098beb7088ff7860cf -#: ../../source/training/socialisation/run_basic_inasafe.rst:45 -msgid "" -"The data for this exercise are available in **Run Basic InaSAFE zip** which " -"can be downloaded from `InaSAFE Training Data `__ " -"Packages . We will use the following QGIS project file and spatial data:" -msgstr "" -"Data untuk pelatihan ini terdapat pada **Run Basic InaSAFE zip** yang dapat " -"di download dari `InaSAFE Training Data `__ " -"Packages. Dalam pelatihan ini, kita akan menggunakan file file proyek QGIS " -"dan data spasial berikut: " - -# 80fb880b620d4e2a91c886c34612b7f7 -#: ../../source/training/socialisation/run_basic_inasafe.rst:50 -msgid "DKI_Jakarta_Basic.qgs" -msgstr "DKI_Jakarta_Basic.qgs" - -# 22917b7b6598456fa2c107bfefb65ad2 -#: ../../source/training/socialisation/run_basic_inasafe.rst:52 -msgid "Jakarta_Flood_HKV_WGS84" -msgstr "Jakarta_Flood_HKV_WGS84" - -# b56de527448c40559bb43f9134dd9f71 -#: ../../source/training/socialisation/run_basic_inasafe.rst:54 -msgid "Jakarta_Buildings_WGS84" -msgstr "Jakarta_Buildings_WGS84" - -# 9cbec6cfa7f84273a98c1b463f792b13 -#: ../../source/training/socialisation/run_basic_inasafe.rst:56 -msgid "Jakarta_Population_WGS84" -msgstr "Jakarta_Population_WGS84" - -# a1889140efc84f639d860e190595c19a -#: ../../source/training/socialisation/run_basic_inasafe.rst:59 -msgid "Exercise" -msgstr "Latihan" - -# 65b6b8a7df724a5aa6aeb2b79f1ddddb -#: ../../source/training/socialisation/run_basic_inasafe.rst:62 -msgid "1. Open QGIS Project" -msgstr "1. Membuka proyek QGIS" - -# e7f11940341b4d2da7065b906e36ea61 -#: ../../source/training/socialisation/run_basic_inasafe.rst:64 -msgid "" -"Before we can run an |project_name| analysis, we must open a QGIS project. " -"Please open the QGIS project file :file:`DKI_Jakarta_Basic.qgs` from the :" -"file:`InaSAFE Training Data > DKI Jakarta` folder. The project looks " -"something like this:" -msgstr "" -"Sebelum kita menjalankan analisis |project_name|, kita harus membuka sebuah " -"proyek QGIS terlebih dahulu. Silakan buka proyek QGIS :file:" -"`DKI_Jakarta_Basic.qgs` dari folder :file:`InaSAFE Training Data > DKI " -"Jakarta`. Proyek yang telah dibuka akan terlihat seperti ini:" - -# dedfe7e9358845e9ab162a812625b289 -#: ../../source/training/socialisation/run_basic_inasafe.rst:74 -msgid "" -"As you can see from the picture above, you will be presented with several " -"data sets for Jakarta such as buildings, population, and raster hazard." -msgstr "" -"Seperti yang anda bisa lihat dari gambar di atas, Anda akan disajikan dengan " -"beberapa dataset untuk Jakarta seperti bangunan, populasi dan ancaman " -"bencana dalam bentuk raster. " - -# 7bd44c55f9ee445aa0feb617c5c0ff5d -#: ../../source/training/socialisation/run_basic_inasafe.rst:77 -msgid "You will see that the project has three layers loaded:" -msgstr "" -"Anda akan melihat di dalam proyek tersebut telah terdapat tiga layer yang " -"telah dimasukkan:" - -# 7cf668e965ea4fd2b0868fbd0c24d6bb -#: ../../source/training/socialisation/run_basic_inasafe.rst:79 -msgid "" -"Buildings: this is exposure data. We will use these to assess the flood " -"impact on buildings." -msgstr "" -"Builiding: ini merupakan data paparan. Kita akan menggunakan data ini untuk " -"mengakses dampak banjir terhadap bangunan." - -# fde76aa589f94aefbca60e1e1dfb73f5 -#: ../../source/training/socialisation/run_basic_inasafe.rst:82 -msgid "" -"Flood: this is the hazard model. We will use this to determine the depth of " -"water." -msgstr "" -"Flood: ini merupakan data ancaman. Kita akan menggunakan data ini untuk " -"menentukan kedalaman banjir yang ada." - -# e897e2a48bbb4f8898a8ce1977f03860 -#: ../../source/training/socialisation/run_basic_inasafe.rst:85 -msgid "" -"Population: this is a population raster. We will use it to determine the " -"number of people exposed to the flood." -msgstr "" -"Populasi: ini merupakan data raster jumlah penduduk. Kita akan menggunakan " -"data ini untuk melihat jumlah penduduk yang terdampak banjir." - -# 0de071cb1a654592ad0758a4d2031878 -#: ../../source/training/socialisation/run_basic_inasafe.rst:88 -msgid "" -"More detailed information about the data used in this exercise can be found " -"in :ref:`dataset section `. The table below provides a brief " -"summary about the source of the data." -msgstr "" -"Untuk informasi lebih lanjut mengenai data yang digunakan dalam pelatihan " -"ini Anda bisa menemukan di :ref:`dataset `. Tabel dibawah ini " -"menyediakan informasi singkat mengenai sumber data tersebut." - -# 7f95f6e2bdd145e08ecc87facb1a85aa -#: ../../source/training/socialisation/run_basic_inasafe.rst:93 -msgid "**Data**" -msgstr "**Data**" - -# 016550ec6b3c4f8a84061cdc7df4641e -#: ../../source/training/socialisation/run_basic_inasafe.rst:93 -msgid "**Source**" -msgstr "**Sumber**" - -# 8eeb7232f4014d329cab0fc98c88a81d -#: ../../source/training/socialisation/run_basic_inasafe.rst:93 -msgid "**Description**" -msgstr "**Deskripsi**" - -# c19c8cee25904e9cbcf3cad6e422b629 -#: ../../source/training/socialisation/run_basic_inasafe.rst:95 -msgid "Buildings" -msgstr "Bangunan" - -# 45ca60b7715c439483f3aee0a358fd8d -#: ../../source/training/socialisation/run_basic_inasafe.rst:95 -msgid "OpenStreetMap" -msgstr "OpenStreetMap" - -# b7207ddf474346edab754111803ced7c -#: ../../source/training/socialisation/run_basic_inasafe.rst:95 -msgid "" -"Most of the important buildings in Jakarta have been mapped through the " -"collaboration of BPBD DKI Jakarta, OpenStreetMap and the Australian " -"Government. :ref:`See more at.. `" -msgstr "" -"Hampir sebagian besar bangunan penting di Jakarta telah dipetakan melalui " -"kolaborasi BPBD DKI Jakarta, OpenStreetMap dan pemerintah Australia. :ref:" -"`Lihat lebih lanjut.. `" - -# 7ff85bbf6425420e9c51706fcad0daef -#: ../../source/training/socialisation/run_basic_inasafe.rst:101 -msgid "Jakarta_population_WGS84" -msgstr "Jakarta_population_WGS84" - -# 91cb8a4247dd4b92b031063e560d9703 -#: ../../source/training/socialisation/run_basic_inasafe.rst:101 -msgid "WorldPop" -msgstr "WorldPop" - -# 2ffb03da9f4a4d798ed3ccba04ff2c4e -#: ../../source/training/socialisation/run_basic_inasafe.rst:101 -msgid "" -"High resolution, modelled data for human population distributions. :ref:`See " -"more at.. `" -msgstr "" -"Pemodelan resolusi tinggi untuk sebaran populasi manusia. :ref:`Lihat lebih " -"lanjut.. `" - -# 079ff5d69cca49cc9990f9fd40d9dfe2 -#: ../../source/training/socialisation/run_basic_inasafe.rst:105 -msgid "a Flood similiar to 2007" -msgstr "a Flood similiar to 2007" - -# 6132839d36634770a47ce34b4077d014 -#: ../../source/training/socialisation/run_basic_inasafe.rst:105 -msgid "Jakarta Event" -msgstr "Jakarta Event" - -# c30678fa660342c89a65ab0dd6a0dd2d -#: ../../source/training/socialisation/run_basic_inasafe.rst:104 -msgid "HKV" -msgstr "HKV" - -# 5489cb21d4dd44ec936cee35f016f976 -#: ../../source/training/socialisation/run_basic_inasafe.rst:104 -msgid "" -"The flood model was created by scientists/engineers in coordination with DKI " -"Jakarta Public Works based on the 2007 flood conditions. :ref:`See more at.. " -"`" -msgstr "" -"Model banjir telah dibuat oleh para ilmuwan/teknisi berkoordinasi dengan " -"Dinas Pekerjaan Umum DKI Jakarta berdasarkan pada kondisi banjir 2007. " -"Kedalaman air adalah kedalaman maksimal yang terjadi di seluruh periode " -"banjir. :ref:`Lihat lebih lanjut.. `" - -# 2925397a09734e8cb3709497e8ccda64 -#: ../../source/training/socialisation/run_basic_inasafe.rst:109 -msgid "" -"Let's move into the next section where we will run our first |project_name| " -"analysis using these data. We will be working with the flood hazard model to " -"look at the number of affected buildings. These data already have keywords " -"assigned so we are ready to run the analysis." -msgstr "" -"Mari kita menuju bagian selanjutnya dimana kita akan menjalankan analisis |" -"project_name| pertama kita dengan menggunakan data ini. Kita akan bekerja " -"dengan data banjir untuk melihat jumlah bangunan terdampak. Data ini telah " -"memiliki kata kunci yang telah diatur sehingga kita hanya tinggal " -"menjalankan analisis." - -# 2253377a1064429ba57758dfe90a3cf0 -#: ../../source/training/socialisation/run_basic_inasafe.rst:115 -msgid "2. Run |project_name| Analysis for Building" -msgstr "2. Menjalankan Analisis |project_name| untuk Bangunan" - -# bdc5b7a51edc47b9812d0601b4125eda -#: ../../source/training/socialisation/run_basic_inasafe.rst:117 -msgid "" -"Take a look at the |project_name| dock on the right side of QGIS. The |" -"project_name| dock should show that you are ready to run a flood analysis on " -"buildings. It poses the question “In the event of **a flood similar to the " -"2007 Jakarta event**, how many **buildings** will **be affected**?” In this " -"analysis we will use the default flood depth threshold in \"Flood Classes\" " -"which have 4 classes (High, Medium, Low, Use Caution). Later on we will " -"learn how to change the threshold." -msgstr "" -"Perhatikan pada panel |project_name| di sebelah kanan layar QGIS Anda. " -"Panel |project_name| akan menunjukkan bahwa Anda telah siap untuk " -"menjalankan analisis banjir terhadap bangunan. Pada panel tersebut akan " -"menampilkan pertanyaan “Apabila terjadi **a flood similar to the 2007 " -"Jakarta event**, berapa banyak **buildings** akankah **terdampak**?” dalam " -"analisis ini kita akan menggunakan ambang batas banjir yang telah diatur " -"secara otomatis di \"Kelas Banjir\" dengan 4 kelas (Tinggi, Sedang, Rendah, " -"Hati-hati). Kita akan mempelajari bagaimana cara mengubah nilai ambang batas " -"pada materi berikutnya. " - -# a9f5602cfbc04f6caafcc0fc6eb88c6e -# 0cd8065898de41da9e57603fcd69018e -#: ../../source/training/socialisation/run_basic_inasafe.rst:123 -#: ../../source/training/socialisation/run_basic_inasafe.rst:278 -msgid "a. Run |project_name| Analysis" -msgstr "a. Menjalankan Analisis |project_name|" - -# 35601b34b2014ad8983ef4574876515f -#: ../../source/training/socialisation/run_basic_inasafe.rst:129 -msgid "" -"Click :guilabel:`Run` in the lower right corner of the |project_name| panel " -"to start the analysis process. If everything was set up correctly, you " -"should get a result in the dock area after a few seconds, and a new map " -"layer should be added to the map." -msgstr "" -"Klik :guilabel:`Hitung` di sudut kanan bawah dari panel |project_name| untuk " -"memulai proses analisis. Jika semua pengaturan sudah benar, Anda seharusnya " -"mendapatkan hasil analisis pada panel |project_name| setelah beberapa saat, " -"dan sebuah layer peta baru akan ditambahkan di peta." - -# 148fcd081eb14925996d630dfeb97995 -#: ../../source/training/socialisation/run_basic_inasafe.rst:139 -#: ../../source/training/socialisation/run_basic_inasafe.rst:291 -msgid "b. Interpret the results" -msgstr "b. Menginterpretasikan hasil" - -# c7d6560ed6f242cbb9b37fc9c18d88c3 -#: ../../source/training/socialisation/run_basic_inasafe.rst:141 -msgid "" -"The new impact layer will be generated and called **Number of structures**. " -"Let’s take a look at the new impact layer generated by |project_name|." -msgstr "" -"Layer dampak dengan nama **Jumlah struktur** akan dihasilkan. Mari kita " -"perhatikan layer dampak yang dihasilkan oleh |project_name|." - -# 8aa211d89f7d4d09a88ff8443f124950 -#: ../../source/training/socialisation/run_basic_inasafe.rst:144 -msgid "Zoom in to some area on the map canvas" -msgstr "Perbesar ke salah satu area dari kanvas peta" - -# 33589fd9aef742e1b2bdcd8b482d0dc3 -#: ../../source/training/socialisation/run_basic_inasafe.rst:146 -msgid "" -"Here we have zoomed in to a location showing two rivers going through the " -"middle of Jakarta. There will be five new different colours generated from |" -"project_name| (red, orange, light yellow, green, and grey)." -msgstr "" -"Disini kita telah melakukan perbesaran pada lokasi yang menunjukkan adanya " -"dua sungai besar mengalir di Jakarta. Pada kanvas peta akan muncul lima " -"warna berbeda yang dihasilkan dari |project_name| (merah, oranye, kuning " -"muda, hijau, dan abu-abu)." - -# e8833d28aea0428ba04e52740fcfb9ab -#: ../../source/training/socialisation/run_basic_inasafe.rst:154 -msgid "" -"If you don't see these colours, you might need to turn off the data layer " -"above the *Number of structures* layer." -msgstr "" -"Jika Anda tidak dapat melihat warna-warna tersebut, Anda mungkin harus " -"menonaktifkan layer data di atas layer *Jumlah struktur*." - -# a987dded6e5e4ee594a399cbaf6c92eb -#: ../../source/training/socialisation/run_basic_inasafe.rst:156 -msgid "" -"The red buildings are situated in High Hazard with inundation water greater " -"than 1,5 metre. The orange buildings are situated in a Medium Hazard with " -"inundation water between 0,7 - 1,5 metre. The light-yellow buildings are " -"situated in Low Hazard with inundation water between 0,1 - 0,7 metre. The " -"green buildings show you that these buildings are currently not classified " -"as an affected building, but, we can identify these buildings with Use " -"Caution. It is like some kind of warning system, so we can identify which " -"buildings needs more attention when the flood happen. The grey buildings " -"considered as unaffected with the flood hazard model." -msgstr "" -"Bangunan berwarna merah berada pada Ancaman Tinggi dengan ketinggian " -"genangan air lebih dari 1,5 meter. Bangunan berwarna oranye berada pada " -"Ancaman Sedang dengan ketinggian genangan air berada diantara 0,7 - 1,5 " -"meter. Bangunan berwarna kuning muda berada pada Ancaman Rendah dengan " -"ketinggian genangan air berada diantara 0,1 - 0,7 meter. Bangunan berwarna " -"hijau menunjukkan bahwa bangunan tersebut tidak termasuk dalam kategori " -"bangunan terdampak, tapi, kita dapat mengidentifikasi bangunan tersebut " -"dengan status Hati-hati. Hal ini merupakan sebuah sistem peringatan, jadi " -"kita dapat mengidentifikasi bangunan mana saja yang menjadi prioritas " -"penanganan ketika bencana banjir terjadi. Bangunan berwarna abu-abu " -"dikategorikan sebagai bangunan tidak terdampak dengan pemodelan banjir yang " -"telah dibuat. " - -# a94963eebbc349c08f7261e217058864 -#: ../../source/training/socialisation/run_basic_inasafe.rst:162 -msgid "" -"Click :guilabel:`Number of structures` in the layer list to select it and " -"click :guilabel:`Identify Feature` tool and then click on a building to view " -"the attributes of that building." -msgstr "" -"Klik :guilabel:`Jumlah struktur` pada daftar layer dan klik alat :guilabel:" -"`Identifikasi Fitur` kemudian klik pada salah satu bangunan untuk melihat " -"atribut dari bangunan tersebut. " - -# a2c5bc5be443447481047e26ec801dbd -# 0d3dea67018a476f8e9661a8594e0d28 -#: ../../source/training/socialisation/run_basic_inasafe.rst:170 -msgid "" -"In the |project_name| panel we now see the impact summary. The details of " -"are explained below." -msgstr "" -"Pada panel |project_name| kita sekarang bisa melihat ringkasan dari hasil " -"analisis. Detil nya akan dijelaskan dibawah ini." - -# 11981e4b97d2496eac9f6d8ae5f7cc05 -#: ../../source/training/socialisation/run_basic_inasafe.rst:177 -msgid "" -"**Analysis Question**: describe what kind of analysis happens in this " -"scenario" -msgstr "" -"**Pertanyaan Analisis**: mendeskripsikan analisis yang dilakukan dalam " -"skenario ini" - -# eb28f299cc494caf91fe36e0a855a9f2 -#: ../../source/training/socialisation/run_basic_inasafe.rst:179 -msgid "" -"**General report**: InaSAFE divides the result into several categories based " -"on the threshold set in the hazard analysis. In this impact summary, InaSAFE " -"divides the estimated number of structures based on two categories, Hazard " -"Zone (buildings affected based on High, Medium, Low, and Use Caution class) " -"and Structures (buildings affected based on Affected by flood, Not Affected " -"by flood, and Not Exposed by flood)" -msgstr "" -"**Laporan umum**: InaSAFE membagi laporan hasil analisisnya ke dalam " -"beberapa kategori berdasarkan ambang batas yang ditentukan pada analisis " -"bencana tersebut. Dalam laporan dampak ini, InaSAFE membagi perkiraan jumlah " -"struktur terdampak ke dalam dua kategori, Area Ancaman (bangunan terdampak " -"berdasarkan kelas Tinggi, Sedang, Rendah, dan Hati-hati) dan Struktur " -"(bangunan terdampak berdasarkan Terdampak oleh banjir, Tidak terdampak oleh " -"banjir, dan tidak terpapar oleh banjir)" - -# a04338e026e4443ca7485603c4194638 -#: ../../source/training/socialisation/run_basic_inasafe.rst:184 -msgid "" -"**Analysis detail:** describe more detail about estimated number of " -"structures by structure type. In this impact summary, InaSAFE breaks down " -"the results into a more detailed report by looking at each type of the " -"structure, for example, the number of residential affected by flood is " -"4.300, meanwhile, the number of education structures affected by flood is " -"210. We can see more detail about the type of structuress affected by the " -"hazard in this section." -msgstr "" -"**Detil analisis:** mendeskripsikan lebih detil mengenai perkiraan jumlah " -"struktur berdasarkan tipe struktur. Dalam laporan dampak ini, InaSAFE " -"membagi hasil analisis ke dalam laporan yang lebih mendetil berdasarkan " -"masing-masing tipe struktur, contoh, jumlah permukiman terdampak banjir " -"sebanyak 4.300, sementara itu, jumlah sarana pendidikan terdampak banjir " -"berjumlah 210. Kita dapat melihat lebih lanjut tentang tipe struktur yang " -"terdampak oleh bencana pada bagian ini. " - -# 6b25e4b4d6a2456dbfe928c7c4b74c30 -# e69c943a063344738ac1f795792c20ca -#: ../../source/training/socialisation/run_basic_inasafe.rst:190 -#: ../../source/training/socialisation/run_basic_inasafe.rst:329 -msgid "" -"**Action checklist:** designed to make disaster managers think about what " -"they need to do/discuss when planning for a similar event in the future." -msgstr "" -"**Daftar tindakan:** dirancang untuk membuat manager penanggulangan bencana " -"berpikir mengenai apa yang mereka butuhkan untuk mempersiapkan peristiwa " -"tersebut." - -# c81953dd14a94cb29cde94abe87d110c -#: ../../source/training/socialisation/run_basic_inasafe.rst:193 -msgid "" -"**Notes & assumptions:** provides details about the input data and any " -"limitations or assumptions in the analysis or report summary. In this " -"example, it explains why buildings are said to be inundated, wet and dry." -msgstr "" -"**Catatan dan asumsi:** memberikan detil mengenai data yang dimasukkan dan " -"batasan atau asumsi di hasil analisis. Contohnya, menjelaskan mengapa " -"bangunan bisa disebut sebagai terendam, tergenang, dan kering." - -# 118828387e6f4b968de4b1f337ba564a -#: ../../source/training/socialisation/run_basic_inasafe.rst:198 -msgid "" -"**Analysis detail:** gives the information about data source, and details " -"about analysis that we have" -msgstr "" -"**Detil Analisis:** memberikan informasi mengenai sumber data yang digunakan " -"dan detil mengenai analisis yang kita miliki" - -# ba20b1f44138459da6c543e82f9cd609 -#: ../../source/training/socialisation/run_basic_inasafe.rst:200 -msgid "" -"The results show the buildings that will be affected by flood water 1m deep. " -"But what if the disaster manager decides that buildings in 80cm of water are " -"also flooded? In order to assess this new scenario, we need to change the " -"water depth threshold at which buildings are considered to be inundated. " -"With |project_name| it is easy to run a new scenario, all you need to do is " -"change the **Thresholds [m]** in the **InaSAFE Keyword Creation Wizard** and " -"run the scenario again. We will do this next." -msgstr "" -"Hasil di atas menunjukkan bangunan yang terklasifikasi ke dalam bangunan " -"terdampak bencana banjir adalah bangunan yang tergenang air dengan kedalaman " -"1 meter. Namun, bagaimana jika manajer penanggulangan bencana memutuskan " -"bahwa bangunan yang tergenang setinggi 80 cm juga termasuk bangunan " -"terdampak banjir? Untuk mengatur skenario tersebut, kita harus mengubah " -"ambang batas kedalaman genangan banjir. InaSAFE memungkinkan kita untuk " -"menjalankan skenario baru sesuai keinginan kita, yang perlu Anda lakukan " -"hanyalah mengubah **Ambang batas [m]** pada **Wizard Pembuat Keyword** dan " -"jalankan kembali skenario tersebut. Kita akan melakukan hal ini selanjutnya. " - -# ef088502639944ee8f30a998682352ce -#: ../../source/training/socialisation/run_basic_inasafe.rst:209 -msgid "c. Changing threshold" -msgstr "c. Mengubah ambang batas" - -# 3b242cbcb08b4c319d9d28c6418b5ff3 -#: ../../source/training/socialisation/run_basic_inasafe.rst:211 -msgid "" -"In the Jakarta flood scenario we are running; the threshold refers to the " -"depth of water that a disaster manager decides is the boundary between " -"buildings being flooded (affected) and buildings not being affected." -msgstr "" -"Dalam skenario banjir Jakarta yang telah kita jalankan; ambang batas mengacu " -"pada kedalaman genangan air yang ditentukan oleh menajer penanggulangan " -"bencana dimana ambang batas tersebut adalah batas antara bangunan terendam " -"(terdampak) banjir dan bangunan tidak terdampak banjir." - -# 01bc725205ac428daba0ba87f9417297 -#: ../../source/training/socialisation/run_basic_inasafe.rst:216 -msgid "" -"You can only change the threshold for raster hazard data. The default " -"threshold for this hazard is 1m or 100cm." -msgstr "" -"Anda hanya dapat mengubah ambang batas untuk data ancaman berbentuk raster. " -"Ambang batas yang digunakan untuk bencana ini adalah 1 meter atau 100 cm." - -# f303c470559c461bab4ed354f3fddd8b -#: ../../source/training/socialisation/run_basic_inasafe.rst:218 -msgid "" -"If you want to change the thresholds for the flood in this scenario, you can " -"do it from InaSAFE toolbar menu and select :guilabel:`Keyword Creation " -"Wizard`. But, before you select on :guilabel:`Keyword Creation Wizard` menu, " -"make sure that you already selected the flood layer in the layer panel " -"window." -msgstr "" -"Jika Anda ingin mengubah ambang batas banjir dalam skenario ini, Anda dapat " -"melakukannya dari menu toolbar InaSAFE, kemudian pilih :guilabel:`Keyword " -"Pembuat Wizard`. Namun, sebelum Anda memilih menu :guilabel:`Keyword Pembuat " -"Wizard`, pastika Anda telah memilih layer banjir pada jendela layer. " - -# 228940f5bac64abe9c4cf6462867796f -#: ../../source/training/socialisation/run_basic_inasafe.rst:220 -msgid "" -"If you want to open the |project_name| question panel again, click on :" -"guilabel:`Show question form` at the top of the |project_name| panel. You " -"will see the |project_name| question panel again and you can click the :" -"guilabel:`Options` button next to :guilabel:`be flooded`." -msgstr "" -"Jika anda ingin membuka panel pertanyaan |project_name| lagi, klik pada :" -"guilabel:`Tampilkan form pertanyaan` pada bagian atas dari panel |" -"project_name|. Anda akan melihat panel pertanyaan |project_name| lagi dan " -"anda bisa mengklik tombol :guilabel:`Options` disamping :guilabel:`terdampak " -"banjir`." - -# 1a26f5cc58b944048c111b5a0ea62e03 -#: ../../source/training/socialisation/run_basic_inasafe.rst:229 -msgid "" -"InaSAFE :guilabel:`Keyword Creation Wizard` will automatically show on your " -"screen. We must define the flood as a Hazard layer, therefore, please select " -"Hazard and then click Next." -msgstr "" -"InaSAFE :guilabel:`Keyword Pembuat Wizard` akan muncul secara otomatis di " -"layar. Kita harus mendefinisikan banjir sebagai layer Ancaman, oleh karena " -"itu, silakan pilih Ancaman dan klik Lanjut. " - -# 5e8af377c8ce4d1dbd862b3311a61263 -#: ../../source/training/socialisation/run_basic_inasafe.rst:235 -msgid "" -"Follow all the step and click Next until you found changing thresholds menu " -"like this:" -msgstr "" -"Ikuti seluruh tahapan dan klik Lanjut sampai Anda menemukan menu untuk " -"mengubah ambang batas sperti ini:" - -# e03244f0f3934262abbc381028be8cb9 -#: ../../source/training/socialisation/run_basic_inasafe.rst:241 -msgid "" -"Choose **Flood classes** to define the thresholds. Look at the right bottom " -"of your screen. You can see the configuration of the thresholds and now you " -"can make change to the thresholds." -msgstr "" -"Pilih **Kelas Banjir** untuk mengatur nilai ambang batas. Perhatikan pada " -"kanan bawah layar Anda. Anda akan melihat pengaturan ambang batas dan Anda " -"dapat mengatur perubahan dari nilai ambang batas tersebut. " - -# 00f70b80ebe140688286fe854e4a1125 -#: ../../source/training/socialisation/run_basic_inasafe.rst:243 -msgid "" -"In this case, we define that the flood impact has 4 classes; **High**, " -"**Medium**, **Low**, and **Use Caution**. In each class, we can define the " -"minimum and maximum value for each thresholds. The threshold is " -"automatically set that **High** classes is the area greater than 1.5 metre " -"of inundation, **Medium** class is the area with 0.7 - 1.5 metre of " -"inundation, **Low** class is the area with 0.1 - 0.7 metre of inundation, " -"and last, **Use Caution** class 0 - 0.1 metre. We can define each threshold " -"based on our needs. If we want to change the value, you can change it " -"manually. The analysis result will be different if we see different value " -"for each classes." -msgstr "" -"Dalam kasus ini, kita akan mengatur bahwa dampak bencana banjir memiliki 4 " -"kelas; **Tinggi**, **Sedang**, **Rendah**, dan **Hati-hati**. Di masing-" -"masing kelas, kita dapat mengatur nilai minimal dan maksimal dari setiap " -"ambang batas. Disini, ambang batas akan secara otomatis terisi bahwa kelas " -"**Tinggi** merupakan area dengan genangan air setinggi lebih dari 1.5 meter, " -"kelas **Sedang** merupakan area dengan genangan air setinggi 0.7 - 1.5 " -"meter, kelas **Rendah** merupakan area dengan genangan air setinggi 0.1 - " -"0.7 meter, dan terakhir, kelas **Hati-hati** dengan klasifikasi ketinggian 0 " -"- 0.1 meter. Kita dapat mengatur masing-masing nilai ambang batas sesuai " -"kebutuhan. Jika Anda ingin mengubah nilainya, Anda dapat mengubahnya secara " -"manual. Hasil analisis akan berbeda-beda sesuai dengan nilai yang Anda " -"masukkan. " - -# 24d532be0d24442faf5cf9c73a8242a4 -#: ../../source/training/socialisation/run_basic_inasafe.rst:245 -msgid "" -"After finish changing the thresholds, don't forget to click Save and finish " -"all steps needed. Close the dialog window and then run the analysis again to " -"see the change in the result." -msgstr "" -"Setelah selessai mengubah nilai ambang batas, jangan lupa untuk klik Simpan " -"dan selesaikan seluruh tahapan yang dibutuhkan. Tutup jendela tersebut " -"kemudian jalankan kembali analisisnya untuk melihat perubahan yang terjadi. " - -# c11c475bb74a4f63b079b1b863cebb45 -#: ../../source/training/socialisation/run_basic_inasafe.rst:247 -msgid "" -"When the function completes, take a look at the impact summary in the |" -"project_name| panel. How do the results compare to the first analysis " -"results? The result should be different to the first analysis because we " -"have changed the thresholds for each classes." -msgstr "" -"Jika analisis telah selesai, perhatikan laporan dampak yang dihasilkan pada " -"panel |project_name|. Bagaimana perbandingan analisis yang dihasilkan jika " -"dibandingkan dengan hasil analisis pertama? Hasil analisis pasti akan " -"berbeda karena kita telah mengubah ambang batas untuk masing-masing kelas. " - -# 6b22d83573bb4d3eb5d7854ffb7c6c3f -#: ../../source/training/socialisation/run_basic_inasafe.rst:251 -msgid "ask your tutor to explain if you do not understand this." -msgstr "" -"Mintalah pengajar Anda untuk menjelaskan jika Anda tidak mengerti hal ini." - -# c1eedc11172c46b1bc29aca6abe66675 -#: ../../source/training/socialisation/run_basic_inasafe.rst:253 -msgid "" -"This completes our first |project_name| analysis using the flood hazard " -"model to look at the number of affected buildings." -msgstr "" -"Materi yang baru saja dipelajari menjadi penutup dari analisis |" -"project_name| pertama yang kita jalankan yaitu pemodelan bencana banjir " -"untuk melihat jumlah bangunan terdampak banjir. " - -# c44a8f9cf7b049eea01a8d61b49282ca -#: ../../source/training/socialisation/run_basic_inasafe.rst:256 -msgid "3. Run |project_name| for population" -msgstr "3. Menjalankan Analisis |project_name| untuk Populasi" - -# 1939e99cae6d4d2eb5949e6d2617ad90 -#: ../../source/training/socialisation/run_basic_inasafe.rst:258 -msgid "" -"We are now ready to run our second |project_name| analysis using the flood " -"hazard data for Jakarta. We will be working with the flood hazard model " -"again, but this time to look at the number of impacted people. These data " -"already have keywords assigned so we will be ready to run the analysis as " -"soon as we have turned on the relevant data layers." -msgstr "" -"Sekarang kita telah siap untuk menjalankan analisis |project_name| kedua " -"menggunakan data banjir di Jakarta. Kita akan kembali bekerja dengan model " -"ancaman banjir, tetapi kali ini kita akan melihat dampak banjir terhadap " -"jumlah orang yang terdampak. Data ini telah mempunyai kata kunci sehingga " -"kita dapat langsung menjalankan analisis ketika kita mengaktifkan data layer " -"yang relevan." - -# cc8c6ab906bc42be9e3df489555cbcda -#: ../../source/training/socialisation/run_basic_inasafe.rst:264 -msgid "" -"In the QGIS, turn OFF the **Buildings** and **Number of structures** (the " -"layers generated from |project_name| analysis and turn ON " -"**Jakarta_Population_WGS84** layer." -msgstr "" -"Pada layar QGIS Anda, nonaktifkan layer **Buildings** dan **Jumlah " -"struktur** (layer yang dihasilkan dari analisis |project_name| dan aktifkan " -"layer **Jakarta_Population_WGS84**." - -# dceacf5e123d46338a6622092fa94609 -#: ../../source/training/socialisation/run_basic_inasafe.rst:267 -msgid "" -"Confirm that the |project_name| panel on the right side is set to query how " -"many people might need evacuation:" -msgstr "" -"Pastikan bahwa panel |project_name| di bagian kanan sudah diatur menjadi " -"berapa orang yang mungkin akan terdampak:" - -# d761beb0f1f741be90edd50eb384c7a8 -# 0c508ae508264f76958629231cd5aa66 -# 943ebd0bdca64741a14d35b114880945 -# f2bb00acd8234557a1b8b9061e804bb6 -#: ../../source/training/socialisation/run_basic_inasafe.rst:269 -msgid "A flood similar to the 2007 Jakarta event" -msgstr "Banjir yang sama dengan peristiwa Jakarta 2007" - -# ef22c5f8ab674241aded7037061e71a8 -#: ../../source/training/socialisation/run_basic_inasafe.rst:271 -msgid "People" -msgstr "Orang" - -# e6bfd453021a4a158e4b2d3718c87f72 -#: ../../source/training/socialisation/run_basic_inasafe.rst:280 -msgid "" -"If everything is setup correctly, the |project_name| dock should show that " -"you are ready to run a flood analysis on population. It poses the question " -"“In the event of **a flood similar to the 2007 Jakarta event**, how many " -"**people** **will be affected**?” In this analysis we will use the default " -"flood depth threshold by Flood classes. After everything is setup " -"accordingly click :guilabel:`Run` to process the new scenario." -msgstr "" -"Jika semuanya telah diatur dengan benar, panel |project_name| akan " -"menunjukkan Anda telah siap menjalankan analisis banjir terhadap populasi. " -"Panel tersebut memuat pertanyaan “Apabila terjadi **a flood similar to the " -"2007 Jakarta event**, berapa banyak **people** **akankah terdampak**?” Dalam " -"analisis ini kita akan menggunakan kedalaman banjir sesuai dengan Kelas " -"Banjir yang telah diatur. Setelah semua siap, klik :guilabel:`Run` untuk " -"menjalankan analisis skenario." - -# 881c3418cd8240169cbbc4d3b2331692 -#: ../../source/training/socialisation/run_basic_inasafe.rst:286 -msgid "" -"Notice that if you click on the drop-down list on \"How Many **People**, the " -"**building** option is not available. This is because **building** is not " -"checked in the Layers panel." -msgstr "" -"Perhatikan jika Anda klik daftar menu pilihan pada \"Berapa Banyak " -"**People**, pilihan **Buildings** tidak akan tersedia. Hal ini dikarenakan " -"data **building** tidak Anda aktifkandi layer panel." - -# eb85f23b926b4a2f892679a360b7f9de -#: ../../source/training/socialisation/run_basic_inasafe.rst:293 -msgid "" -"If everything was set up correctly, you should get a result in the dock area " -"after a few seconds, and a new map layer should be added to the map. The new " -"impact layer will be called **Number of people**. Let’s explore the result " -"again to make you understand more about the |project_name| result." -msgstr "" -"Jika semua hal telah diatur dengan baik, Anda seharusnya mendapatkan hasil " -"analisis pada panel di sebelah kanan setelah beberapa saat, dan sebuah layer " -"peta baru akan ditambahkan di peta. Layer dampak yang baru ditambahkan " -"bernama **Banyak penduduk**. Mari kita lihat lebih detil hasilnya untuk " -"membantu Anda memahami lebih lanjut tentang hasil analisis |project_name|." - -# 91785cbc9d714efe9207a702e7bdba98 -#: ../../source/training/socialisation/run_basic_inasafe.rst:298 -msgid "" -"Turn off **Number of structures** layer and drag the **Number of people** " -"above **a flood similar to 2007 Jakarta event**" -msgstr "" -"Nonaktifkan layer **Jumlah struktur** dan pindahkan **Banyak penduduk** di " -"atas **a flood similar to 2007 Jakarta event** " - -# 2a155cccbf264f5684c5c56dd4c775e5 -#: ../../source/training/socialisation/run_basic_inasafe.rst:301 -msgid "Zoom in to an the area you choose" -msgstr "Perbesar pada area pilihan Anda." - -# ef00efe901814880af4d56cc7acd27dc -#: ../../source/training/socialisation/run_basic_inasafe.rst:303 -msgid "" -"Select **Number of people** in the layer list and use :guilabel:`Identify " -"Feature` tool again to select a pixel (square) in the map canvas." -msgstr "" -"Pilih **Banyaknya penduduk** pada daftar layer dan gunakan alat :guilabel:" -"`Identikasi Fitur` untuk memilih pixel (kotak) pada kanvas peta. " - -# 5ba2fa1c5554472597cf960ff0432eb2 -#: ../../source/training/socialisation/run_basic_inasafe.rst:307 -msgid "" -"Here we clicked on one of the red pixels and find that there is a population " -"exposure count with value of 78, which means there are approximately 78 " -"people in this one pixel (square) who need to evacuate because of the flood." -msgstr "" -"Klik pada kotak merah dan Anda akan melihat bahwa jumlah populasi terdampak " -"banjir sebanyak 78, hal ini mengindikasikan bahwa terdapat sebanyak kurang " -"lebih 78 orang dalam satu pixel (kotak) yang harus dievakuasi ketika bencana " -"banjir. " - -# da13d9b8de5540d5bb23bb4fb4673e98 -#: ../../source/training/socialisation/run_basic_inasafe.rst:316 -msgid "" -"In the |project_name| panel we now see the impact summary. The details of " -"this summary are explained below." -msgstr "" -"Pada panel |project_name| kita sekarang bisa melihat ringkasan dari hasil " -"analisis. Detil nya akan dijelaskan dibawah ini." - -# 68a1afbd5cd74955bcae80e6dfd32cac -#: ../../source/training/socialisation/run_basic_inasafe.rst:323 -msgid "" -"**Analysis question:** describe what kind of analysis happens in this " -"scenario" -msgstr "" -"**Pertanyaan analisis:** mendeskripsikan analisis yang dilakukan dalam " -"skenario ini" - -# b27e600c80444b70bcfb0dbff06e1d81 -#: ../../source/training/socialisation/run_basic_inasafe.rst:325 -msgid "" -"**General report:** InaSAFE divides the results into several categories " -"based on the thresholds set in the hazard analysis. in this impact summary, " -"InaSAFE divides the estimated number of people based on two categories, " -"Hazard Zone (Hgh, Medium, Low, and Use caution) classes based on the " -"thresholds that we defined before and Population (population affected based " -"on Affected, Not affected, and Not exposed by flood)" -msgstr "" -"**Laporan umum**: InaSAFE membagi laporan hasil analisisnya ke dalam " -"beberapa kategori berdasarkan ambang batas yang ditentukan pada analisis " -"bencana tersebut. Dalam laporan dampak ini, InaSAFE membagi perkiraan jumlah " -"penduduk terdampak ke dalam dua kategori, Area Ancaman (penduduk terdampak " -"berdasarkan kelas Tinggi, Sedang, Rendah, dan Hati-hati) dan Penduduk " -"(penduduk terdampak berdasarkan Terdampak oleh banjir, TIdak terdampak oleh " -"banjir, dan tidak terpapar oleh banjir)" - -# a339ea4cda564d209842e6c50e02fa3e -#: ../../source/training/socialisation/run_basic_inasafe.rst:327 -msgid "" -"**Minimum needs:** these are the calculated amounts of food, water, and " -"other products that are needed by evacuated people. These needs should be " -"provided weekly." -msgstr "" -"**Kebutuhan minimum:** bagian ini menunjukkan perhitungan kebutuhan makanan, " -"air, dan kebutuhan lain yang dibutuhkan oleh penduduk yang dievakuasi. " -"Kebutuhan ini harus dipenuhi setiap minggu. " - -# df640c8f7d5748918e7dcc60e153d34c -#: ../../source/training/socialisation/run_basic_inasafe.rst:332 -msgid "" -"**Notes and assumptions:** provides details about the input data and any " -"limitations or assumptions in the analysis or report summary. In this " -"example, it shows the total number of population in the analysis area and " -"the source of minimum needs." -msgstr "" -"**Catatan dan asumsi:** memberikan detil mengenai data yang dimasukkan dan " -"batasan atau asumsi di hasil analisis. Contohnya, menjelaskan jumlah total " -"penduduk di area analisis dan sumber kebutuhan minimum." - -# 8c39d13faa864add84a891807dcb74a4 -#: ../../source/training/socialisation/run_basic_inasafe.rst:337 -msgid "" -"**Detailed demographic breakdown:** this part of analysis give more " -"information about the demographic of people affected by flood. We can see " -"the breakdown based on age or gender." -msgstr "" -"**Rincian detil demografis:** bagian dari analisis ini memberikan informasi " -"mengenai demografis penduduk terdampak banjir. Kita dapat melihan rincian " -"berdasarkan usia atau jenis kelamin. " - -# 6d000eee3e8f41e2ac2c3bbded69e3db -#: ../../source/training/socialisation/run_basic_inasafe.rst:339 -msgid "" -"**Analysis detail:** gives the information about data source, and details " -"about analysis that we have." -msgstr "" -"**Detil Analisis:** memberikan informasi mengenai sumber data, dan detil " -"analisis yang kita miliki." - -# 186d526cc7a44c22a8a1de573916dedb -#: ../../source/training/socialisation/run_basic_inasafe.rst:342 -msgid "c. Understand defaults minimum needs" -msgstr "c. Memahami pengaturan awal kebutuhan minimum" - -# 52bbaab5abe448a0af032e4d29f96c2e -#: ../../source/training/socialisation/run_basic_inasafe.rst:344 -msgid "" -"The |project_name| impact summary for flood impact on people includes " -"details for the amount of drinking water, rice, clean water, and family kits " -"and for the number of toilets that should be provided for displaced persons " -"each week. The minimum needs in the Jakarta flood impact assessment are " -"based on the **Head of Indonesia National Disaster Management Authority, " -"BNPB, regulation, PERKA No 7/2008 guideline procedure for fulfillment of " -"basic needs in Disaster Response.** The default minimum needs formula is:" -msgstr "" -"Ringkasan laporan analisis dampak |project_name| banjir terhadap penduduk " -"meliputi detil untuk jumlah air minum, beras, air bersih, dan perangkat " -"keluarga juga toilet yang harus disediakan untuk pengungsi setiap minggunya. " -"Kebutuhan minimum ini berdasarkan **Peraturan Kepala Badan Penanggulangan " -"Bencana Nasional, PERKA No 7/2008, tentang panduan prosedur untuk pemenuhan " -"kebutuhan minimum dalam respon Bencana.** Pengaturan awal untuk formula " -"kebutuhan minmum adalah seperti berikut:" - -# 3e21c4cfed30448d94cddc1a1805a984 -#: ../../source/training/socialisation/run_basic_inasafe.rst:352 -msgid "400g rice per person per day (2.8kg per week)" -msgstr "400g nasi per orang per hari (2.8kg per minggu)" - -# 066dd79d497b450d81a109cce405d764 -#: ../../source/training/socialisation/run_basic_inasafe.rst:354 -msgid "2.5l drinking water per person per day (17.5l per week)" -msgstr "2.5l air minum per orang per hari (17.5l per minggu)" - -# 8a3f76feb4a84472b0fac8db757114bb -#: ../../source/training/socialisation/run_basic_inasafe.rst:356 -msgid "15l clean water per person per day (105l per week)" -msgstr "15l air bersih per orang per hari (105l per minggu)" - -# 16810b1a7dcb43de8c0000f026469b5a -#: ../../source/training/socialisation/run_basic_inasafe.rst:358 -msgid "" -"one family kit per family per week (assumes five people per family which is " -"not specified in perka)" -msgstr "" -"1 perlengkapan keluarga untuk setiap 1 keluarga per minggu (diasumsikan satu " -"keluarga terdiri dari 5 orang, namun hal ini tidak ditentukan dalam perka)" - -# e4da029a6c8544ab94d07ead40732fed -#: ../../source/training/socialisation/run_basic_inasafe.rst:360 -msgid "20 people per toilet" -msgstr "20 orang per toilet" - -# b571b90f258c4495babea46e51e9148c -#: ../../source/training/socialisation/run_basic_inasafe.rst:362 -msgid "" -"As described above, the impact summary and minimum needs calculation is " -"based on the default world population demographics (which assumes a ratio of " -"26.3% youth, 65.9% adult and 7.9% elderly)." -msgstr "" -"Seperti yang telah dijelaskan diatas, laporan hasil analisis dan perhitungan " -"kebutuhan minimum berdasarkan perhitungan standar dari demografi populasi " -"dunia (yang mengasumsikan rasio 26.3% anak muda, 65.9 % orang dewasa dan " -"7.9% orang tua). " - -# 592bb97ed72a4485b1e67f657f3fa640 -#: ../../source/training/socialisation/run_basic_inasafe.rst:366 -msgid "" -"You may like to refer to local population statics (for example - `Population " -"of DKI Jakarta `__) to change these defaults for your analysis area, " -"similarly if you have other regulation for minimum needs, you can change in " -"the menu Plugins - InaSAFE - Minimum Needs Configuration." -msgstr "" -"Anda mungkin ingin melihat referensi statistik populasi lokal (contoh - " -"`Populasi DKI Jakarta `__) untuk mengubah pengaturan kebutuhan minimum pada " -"analisis area Anda, Jika Anda ingin mengubah regulasi kebutuhan minimum, " -"Anda dapat mengubahnya di menu Plugins - InaSAFE - Konfigurasi Kebutuhan " -"Minimal." - -# a506ca282123442198e89b8e388d1e9e -#: ../../source/training/socialisation/run_basic_inasafe.rst:377 -msgid "4. Print and Save your |project_name| Results" -msgstr "4. Mencetak dan Menyimpan Hasil |project_name| Anda" - -# fae4d7e1b98b4dc89499c75c5a52cbe5 -#: ../../source/training/socialisation/run_basic_inasafe.rst:379 -msgid "" -"We can also print the analysis results; the impact map and the impact " -"summary, as two separate pdf files. To print |project_name| result:" -msgstr "" -"Kita juga bisa mencetak hasil analisis; peta terdampak dan ringkasan laporan " -"analisis, sebagai dua file pdf yang berbeda. Untuk mencetak hasil analisis |" -"project_name|:" - -# 06ee6321cb174e95bc58496a50a429d9 -#: ../../source/training/socialisation/run_basic_inasafe.rst:382 -msgid "Click :guilabel:`Print` at the bottom of the |project_name| panel." -msgstr "Klik :guilabel:`Cetak...` di bagian bawah panel |project_name|." - -# 89421aff72404cf8ba8236078a6c485f -#: ../../source/training/socialisation/run_basic_inasafe.rst:384 -msgid "" -"InaSAFE will show you Impact report window. In InaSAFE reports section, you " -"can choose what kind of report that you want to print. In Map reports, you " -"can choose the template of your map reports." -msgstr "" -"InaSAFE akan menampilkan jendela Laporan dampak. Pada bagian Laporan " -"InaSAFE, Anda dapat memilih jenis laporan apa yang ingin Anda cetak. Pada " -"bagian Laporan peta, Anda dapat memilih template peta yang ingin Anda cetak." - -# 634b49408e1e4862a512ebe56b2a718c -#: ../../source/training/socialisation/run_basic_inasafe.rst:390 -msgid "" -"InaSAFE will automatically make map and analysis result based on the " -"scenario you created before. You will be directed to new page that contain " -"maps and analysis result." -msgstr "" -"InaSAFE akan secara otomatis menghasilkan peta dan hasil analisis " -"berdasarkan skenario bencana yang telah dibuat sebelumnya. Anda akan " -"diarahkan ke halaman baru yang berisikan peta dan hasil analisis. " - -# 5b9adb21e13c420d81595ca6ff0746ba -#: ../../source/training/socialisation/run_basic_inasafe.rst:392 -msgid "" -"You can access your reult based on the directory path show in the result " -"box. You can change the directory of your result in Menu Plugin – InaSAFE – " -"Options - GIS Environment - Location for result. In **Location for " -"results**, change the directory as you want to. It will make you easier to " -"find the result of your analysis." -msgstr "" -"Anda dapat menemukan file hasil cetak Anda berdasarkan direktori yang " -"ditunjukkan pada kotak hasil. Anda dapat mengubah direktori file hasil Anda " -"di Menu Plugins - InaSAFE - Pilihan - Lingkungan GIS- Lokasi untuk hasil " -"analisis." - -# d304c9b016b74e2fa24d302eb4b3a2f7 -#: ../../source/training/socialisation/run_basic_inasafe.rst:398 -msgid "" -"By default, all the InaSAFE reports will be stored in C:\\\\users\\" -"\\\\\\appdata\\\\local\\\\temp\\\\inasafe for Windows or /tmp/" -"InaSAFE for Linux. You must enable \"Show Hidden Folder\" option in Windows " -"if you want to see appdata folder." -msgstr "" -"Secara otomatis, seluruh hasil laporna InaSAFE akan disimpan di C:\\\\users\\" -"\\\\\\appdata\\\\local\\\\temp\\\\inasafe for Windows or /tmp/" -"InaSAFE for Linux. Anda harus mengaktifkan pilihan \"Tampilkan Semua " -"Folder\" pada Windows jika Anda ingin melihat folder appdata. " - -# 44fee89789944f6cb5f91deff85dbcba -#: ../../source/training/socialisation/run_basic_inasafe.rst:400 -msgid "" -"InaSAFE will be generate several PDFs (usually 4-6 PDFs), one shows a map " -"with the impact layer in potrait orientation, one shows a map wih the impact " -"layer in landscape orientation, one shows an analysis provenance details " -"report, one shows a list of action checklist output, and one has tables from " -"the impact summary or impact report. But, if we generate the result of " -"population analysis, one additional PDF will shows up which give the " -"information about the infographic of impact summary." -msgstr "" -"InaSAFE akan menghasilkan beberapa file PDF (biasanya sekitar 4-6 PDF), satu " -"file peta dengan tampilan orientasi potrait, satu file peta dengan tampilan " -"orientasi landscape, satu file berisi laporan sumber analisis, satu file " -"berisikan daftar tindakan, dan satu file berisikan table laporan dampak " -"bencana. Namun, jika kita menjalankan analisis untuk populasi, satu file " -"tambahan akan muncul, yaitu file infografis dari hasil analisis dampak " -"bencana. " - -# 502029415d8c482f983e080a2d7951e0 -#: ../../source/training/socialisation/run_basic_inasafe.rst:406 -msgid "" -"InaSAFE will generate infographic result if we make analysis of population " -"only." -msgstr "" -"InaSAFE hanya akan menghasilkan file infografis jika kita menjalankan " -"analisis terhadap populasi. " - -# f26270a3d27a41939969c3fa1887cd89 -#: ../../source/training/socialisation/run_basic_inasafe.rst:408 -msgid "" -"We are now already have the impact result in pdf files, but what if we want " -"to keep the impact result in shapefile? Is the impact result shapefile " -"automatically stored?" -msgstr "" -"Sekarang kita telah mempunyai hasil analisis dampak dalam bentuk file pdf, " -"tetapi bagaimana jika kita mau menyimpan file tersebut dalam bentuk " -"shapefile? Apakah file shapefile tersebut secara otomatis tersimpan?" - -# 6437ca1c061d4f3a90869d33dbb0628c -#: ../../source/training/socialisation/run_basic_inasafe.rst:412 -msgid "" -"The |project_name| impact result layer is saved in a temporary folder, this " -"means that it will be automatically deleted if you restart your computer, " -"unless you save your QGIS project. If you want to keep your |project_name| " -"results (so you can refer to them again or share them with others), you need " -"to manually save the |project_name| impact layer |project_name| as new layer " -"in same directory as your project." -msgstr "" -"Layer hasil analisis |project_name| akan tersimpan di folder temporer, ini " -"berarti secara otomatis akan terhapus jika anda merestart ulang komputer " -"anda, lain halnya jika Anda menyimpan proyek QGIS anda. Jika Anda ingin " -"menyimpan hasil analisis |project_name| (sehingga Anda bisa menggunakan data " -"tersebut lagi atau membaginya ke orang lain), Anda butuh secara manual " -"menyimpan layer dampak hasil analisis |project_name| sebagai layer baru " -"dengan direktori yang sama dengan direktori proyek Anda." - -# b328a1e084ad46a9845179a69f82b174 -#: ../../source/training/socialisation/run_basic_inasafe.rst:419 -msgid "" -"Right click on your |project_name| analysis result, for example **Number of " -"structures** or **Number of people** and click :guilabel:`Save As...`" -msgstr "" -"Klik kanan pada hasil analisis |project_name| Anda. **Jumlah struktur** atau " -"**Jumlah penduduk** dan klik :guilabel:`Save As...`" - -# d43a8414201b43bfb64be195432681d9 -#: ../../source/training/socialisation/run_basic_inasafe.rst:422 -msgid "" -"A new window will appear. Click :guilabel:`Browse…` and name your new layer " -"and click :guilabel:`Save` and then click :guilabel:`OK`." -msgstr "" -"Sebuah jendela baru akan muncul. Klik :guilabel:`Browse...` dan berikan nama " -"layer baru Anda dan klik :guilabel:`Simpan` dan kemudian klik :guilabel:`OK`." - -# 9817e5a50076444ebbe9a4423b49ff14 -#: ../../source/training/socialisation/run_basic_inasafe.rst:425 -msgid "" -"If you want to save your current project you can save it by clicking on :" -"menuselection:`Project > Save As...` to save your current project. It’s " -"better to not overwrite the training project so you can do the exercise " -"again later." -msgstr "" -"Jika Anda ingin menyimpan proyek Anda saat ini, Anda bisa menyimpannya " -"dengan mengklik :menuselection:`Project > Save As...` untuk menyimpan proyek " -"Anda. Lebih baik jika Anda tidak menimpa file proyek pelatihan sehingga Anda " -"bisa mengulangnya kembali nanti." - -# 6428972ccccc4e1fb31bb214e352f8b3 -#: ../../source/training/socialisation/run_basic_inasafe.rst:430 -msgid "Summary" -msgstr "Ringkasan" - -# 46dfc24ded3141dda7521a7561b0c8b3 -#: ../../source/training/socialisation/run_basic_inasafe.rst:432 -msgid "" -"In this exercise you have learned how to run a basic |project_name| analysis " -"using an existing QGIS project file and what the minimums component that " -"must be there to run |project_name| properly are. Those components are " -"hazard and exposure data. In this exercise, you have run an |project_name| " -"impact assessment for a flood scenario in Jakarta using two types of " -"exposure data. The hazard data you used was a modelled flood raster and the " -"exposure data were buildings and population. These analyses produced impact " -"layers and impact summaries for affected buildings and impacted people." -msgstr "" -"Dalam pelatihan ini Anda telah mempelajari bagaimana menjalankan analisis " -"dasar |project_name| menggunakan proyek QGIS yang sudah disediakan dan " -"mengetahui komponen minimum yang harus disediakan sebelum menjalankan |" -"project_name|. Komponen tersebut adalah data ancaman dan paparan. Di dalam " -"pelatihan ini Anda harus menjalankan kajian analisis |project_name| untuk " -"skenario banjir di Jakarta menggunakan dua tipe data paparan. Data ancaman " -"yang Anda gunakan merupakan data raster hasil pemodelan dan data paparan " -"yang Anda gunakan merupakan data bangunan dan populasi. Analisis ini " -"menghasilkan laporan hasil analisis dampak dan layer dampak untuk bangunan " -"terdampak dan penduduk terdampak." - -# 7db94557739a448ca399d27765d87861 -#: ../../source/training/socialisation/run_basic_inasafe.rst:442 -msgid "" -"You have also learned how to modify the analysis options through the Impact " -"Function configuration, how to print |project_name| results in PDF format, " -"understand what minimum needs is and how to save both your impact layers and " -"your QGIS project file." -msgstr "" -"Anda juga mempelajari bagaimana mengubah pengaturan analisis melalui " -"pengaturan fungsi dampak, bagaimana mencetak hasil analisis |project_name| " -"dalam format PDF, dan juga mengetahui apa itu kebutuhan minimum dan " -"bagaimana menyimpan baik layer hasil analisis dampak ataupun proyek QGIS " -"anda." - -# 71daeacf7c0e4f26b21297fcc6d65580 -#: ../../source/training/socialisation/run_basic_inasafe.rst:447 -msgid "" -"In the next section you will learn more about how to run |project_name| in " -"more detail. In that module you will learn how to use more |project_name| " -"tools such as Agreggation options, OSM Downloader, Minimum Needs " -"Configuration, etc." -msgstr "" -"Dalam bab berikutnya anda akan mempelajari bagaimana menjalankan |" -"project_name| secara detail. Dalam bab berikutnya anda akan mengetahui " -"bagaimana menggunakan alat |project_name| yang bernama OSM Downloader, " -"menggunakan opsi aggregasi dan pengaturan kebutuhan minimum, dll." diff --git a/docs/i18n/id/LC_MESSAGES/training/socialisation/run_intermediate_inasafe.po b/docs/i18n/id/LC_MESSAGES/training/socialisation/run_intermediate_inasafe.po deleted file mode 100644 index 97bd45e2..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/socialisation/run_intermediate_inasafe.po +++ /dev/null @@ -1,871 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Tri Selasa Pagianti , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# d6a23771ef144ecc9cc7015b01bfe1c9 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:6 -msgid "Run Intermediate |project_name|" -msgstr "Menjalankan |project_name| Tingkat Menengah" - -# 9f1a19d606904fe3836d73e179ab9c29 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:9 -msgid "Introduction" -msgstr "Pengantar" - -# 545a0d2278dc40c7b70da85c2019c35a -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:11 -msgid "" -"In `Run Basic InaSAFE `__ we learned how to run a flood analysis on " -"population and buildings, adjust the flood impact default settings and " -"analyse impact summary report, and change analysis threshold. We also " -"learned how to save our work and generate a pdf of the analysis results. In " -"this exercise we will learn more techniques such as how to run |" -"project_name| with aggregation data to produce reports broken down by " -"districts or regions. We will also learn how to download data using the " -"OpenStreetMap downloader and how to run |project_name| analysis on the " -"downloaded building polygons and roads. Last but not least, we will learn " -"how to define the analysis area." -msgstr "" -"Pada `Menjalan InaSAFE Dasar `__ kita telah mempelajari bagaimana " -"menjalankan analisis banjir terhadap populasi dan bangunan, mengubah " -"pengaturan fungsi dampak dan menganalisis laporan hasil analisis, dan " -"mengubah ambang batas analisis. Kita juga telah mempelajari bagaimana " -"menyimpan hasil kerja kita dan membuat pdf dari hasil analisis. Pada bagian " -"ini kita akan mempelajari teknik lebih lanjut terkait dengan bagaimana " -"menjalankan |project_name| dengan data agregasi untuk menghasilkan laporan " -"berdasarkan wilayah administrasi. Kita juga akan mempelajari bagaimana " -"mengunduh data menggunakan OpenStreetMap downloader dan bagaimana " -"menjalankan analisis |project_name| terhadap bangunan dan jalan yang telah " -"diunduh. Terakhir, kita juga mempelajari bagaimana menentukan area analisis." - -# 2602e24c7bf549c688b4fe1c662a0d1a -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:22 -msgid "Learning Objective" -msgstr "Tujuan Pembelajaran" - -# 97a8c0243c6e4529862f7840d787431f -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:24 -msgid "" -"To improve the participant’s understanding of additional |project_name| " -"function and features. By the end of this exercise, participants will be " -"able to:" -msgstr "" -"Untuk meningkatkan pemahaman peserta mengenai fungsi dan fitur lain dari |" -"project_name|. Pada akhir bab ini, peserta akan mampu untuk:" - -# a3d2b2b4320a49a1be6ff9e6d6221401 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:27 -msgid "Define keywords using the |project_name| keyword wizard" -msgstr "" -"Menentukan kata kunci menggunakan |project_name| Wizard Pembuat Keyword" - -# 98a2bd08e93840ef895310bd2e848a70 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:29 -msgid "Run |project_name| with aggregation data" -msgstr "Menjalankan |project_name| menggunakan data agregasi" - -# e1d6f110907349eabb9b583e45e3a49d -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:31 -msgid "Use the OpenStreetMap Downloader to download data for |project_name|" -msgstr "" -"Menggunakan OpenStreetMap Downloader untuk mengunduh data |project_name|" - -# d424259698db45cc9682bb0f8f5bec27 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:33 -msgid "" -"Set the |project_name| analysis area using the |project_name| analysis area " -"tool." -msgstr "" -"Mengatur analisis area |project_name| menggunakan *tool* |project_name| " -"analisis area." - -# 5ee6067bcd39494db0595c83145f72fb -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:36 -msgid "Data for this exercise" -msgstr "Data untuk materi ini" - -# d6b7ebf7dc264d0aa3276bce19fccc86 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:38 -msgid "" -"The data for this exercise are available in Run Intermediate InaSAFE.zip " -"which can be downloaded from `InaSAFE Training Data `__. We will use the following data:" -msgstr "" -"Data untuk latihan ini tersedia di Run Intermediate InaSAFE.zip yang dapat " -"diunduh melalui `InaSAFE Training Data `__. Data yang akan digunakan adalah:" - -# ee14bf84260e422baf45af2c8cccb584 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:41 -msgid "Jakarta Flood 18113 WGS84" -msgstr "Jakarta Flood 18113 WGS84" - -# b0657f08c2354133936b82f23ebdbd74 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:43 -msgid "Jakarta District Boundary WGS84" -msgstr "Jakarta District Boundary WGS84" - -# b63ac58fbd8746898da22087c0b89e79 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:45 -msgid "Jakarta Subdistrict Boundary WGS84" -msgstr "Jakarta Subdistrict Boundary WGS84" - -# c9877cdc81c940b48c0a0d4c38ea874e -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:47 -msgid "Jakarta Population WGS84" -msgstr "Jakarta Population WGS84" - -# e7a878fa782b433abb59998560b27c64 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:50 -msgid "Exercise" -msgstr "Latihan" - -# 2e7bff4f11bb4d30bf6ae44ba7d5e9e2 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:53 -msgid "1. Running |project_name| for Population Data" -msgstr "1. Menjalankan |project_name| untuk Data Populasi" - -# f52962b25b2d4ce2b257e96742c11ca2 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:56 -msgid "A. Add and symbolise vector data" -msgstr "A. Menambahkan dan mengubah simbol data vektor" - -# c2cdbcf4131c47078c86ff7248249af8 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:58 -msgid "" -"Click :guilabel:`Open` and select :file:`DKI Jakarta Intermediate.qgs`. " -"There is a notification to save the current project, choose whether to save " -"your current work or discard your current work. Once :file:" -"`DKI_Jakarta_Intermediate` is opened, you will see the following:" -msgstr "" -"Klik :guilabel:`Buka` dan pilih :file:`DKI Jakarta Intermediate.qgs`. Akan " -"ada notifikasi untuk menyimpan proyek yang sedang dikerjakan, silahkan pilih " -"apakah Anda ingin menyimpan pekerjaan anda atau menghapus pekerjaan anda " -"saat ini. Setelah :file:`DKI_Jakarta_Intermediate` terbuka, Anda akan " -"melihat:" - -# 4784a3dd2b5f42e2b560b14c81633690 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:66 -msgid "" -"Next, add :file:`Jakarta Flood 18113 WGS84` data from :file:`Run " -"Intermediate InaSAFE > DKI Jakarta > 01 Hazard Data`. This is the flood " -"hazard data for Jakarta from an actual flood event. During Jakarta floods in " -"January 2013, the provincial disaster manager collected information about " -"the flood, including the location of flooded areas by sub-village boundary " -"(see more about this data at :ref:`datasets`.)" -msgstr "" -"Selanjutnya, tambahkan data :file:`Jakarta Flood 18113 WGS84` dari :file:" -"`Run Intermediate InaSAFE > DKI Jakarta > 01 Hazard Data`. Data ini " -"merupakan data ancaman banjir Jakarta berdasarkan kejadian banjir Jakarta " -"pada Januari 2013. Saat itu, BPBD DKI Jakarta mengumpulkan informasi tentang " -"banjir, termasuk lokasi yang terdampak banjir berdasarkan batas RW (lihat " -"lebih lanjut di :ref:`datasets`.)" - -# 2eb1362bfd5b4d58b136028676ce8b64 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:72 -msgid "" -"Let us symbolise this layer so that it shows only affected areas (if you " -"forget how to symbolise, you can go to :ref:`introduction_to_qgis`.) The " -"layer should look like this:" -msgstr "" -"Mari ubah simbologi layer banjir sehingga hanya area terdampak banjir saja " -"yang ditampilkan di kanvas peta (jika lupa cara mengubahnya, Anda bisa " -"menuju :ref:`introduction_to_qgis`.) Layer akan terlihat seperti ini:" - -# c2e2636941934471ba4a7b650580ea30 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:80 -msgid "" -"Using this layer, we will be able to see which area in Jakarta are " -"categorized as flooded/affected area by analysing the data using |" -"project_name|. On the InaSAFE Dock, you will notice that the hazard is not " -"there and only exposure data (population) is visible, even though you " -"already turned ON the data layer." -msgstr "" -"Dengan menggunakan layer ini, kita akan dapat melihat area mana di Jakarta " -"yang dikategorikan sebagai area terdampak banjir dengan menganalisis data " -"menggunakan |project_name|. Pada dek InaSAFE, Anda akan menyadari bahwa " -"layer ancaman tidak nampak dan hanya data keterpaparan (populasi) yang " -"terlihat, meskipun Anda sudah mengaktifkan layer ancaman tersebut." - -# 98832aa5fe8f48f39e257327ee72a601 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:90 -msgid "" -"Do you know why |project_name| did not display the Jakarta Flood Vector " -"Hazard data on the dock? The answer will be provided in the next section." -msgstr "" -"Tahukah Anda mengapa |project_name| tidak menampilkan data ancaman *Jakarta " -"Flood* pada dek? Jawabannya akan dibahas pada sesi selanjutnya." - -# 72c82e1a02334ed6ad1626b3243217cc -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:94 -msgid "B. Define keyword for hazard data" -msgstr "B. Menentukan kata kunci untuk data ancaman" - -# ddaec40f1b304ae58514796fff5b8620 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:96 -msgid "" -"|project_name| need a keyword to determine what type of data the user " -"provide for analysis (hazard data, exposure data or aggregation data). If " -"the data provided does not have a keyword, it will show a warning message " -"“Layer Keyword Missing” in the |project_name| Dock. Try selecting :guilabel:" -"`Jakarta_Flood_18113_WGS84` layer and look at the |project_name| dock, You " -"will see the following:" -msgstr "" -"|project_name| membutuhkan sebuah kata kunci untuk menentukan tipe data apa " -"yang disediakan oleh pengguna untuk analisis (data ancaman, keterpaparan, " -"atau data agregasi). Jika data yang tersedia tidak memiliki kata kunci, maka " -"akan tampil pesan peringatan “Kata Kunci Layer Hilang” pada dek |" -"project_name|. Coba pilih layer :guilabel:`Jakarta_Flood_18113_WGS84` dan " -"lihat dek |project_name|, Anda akan melihat tampilan seperti ini:" - -# 312f8352df264c78bc26d34f26aa79a6 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:106 -msgid "" -"As you can see from the picture above, this layer keywords are missing and " -"we need to open the keyword wizard to solve this problem. The keywords " -"wizard will take you through a step-by-step process of assigning keywords to " -"your data." -msgstr "" -"Seperti yang Anda dapat lihat pada gambar di atas, kata kunci pada layer ini " -"tidak ada dan kita perlu membuka Wizard Pembuat Keyword untuk menyelesaikan " -"masalah ini. Wizard Pembuat Keyword akan membawa Anda melalui proses langkah " -"demi langkah menentukan kata kunci pada data Anda." - -# 1330854fe86745159bb8f5b84878aec0 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:111 -msgid "" -"Select **Jakarta_Flood_18113_WGS84** layer and click :guilabel:`Keyword " -"Creation Wizard`. A window will appear and follow the steps provided by the :" -"guilabel:`Keyword Creation Wizard.` If you get stuck, you can follow the " -"diagram below to understand the steps and the choices you will be offered." -msgstr "" -"Pilih layer **Jakarta_Flood_18113_WGS84** layer dan klik :guilabel:`Wizard " -"Pembuat Keyword`. Sebuah jendela akan muncul dan ikuti langkah-langkah yang " -"tersedia pada :guilabel:`Wizard Pembuat Keyword.` Jika Anda mengalami " -"kebuntuan, Anda dapat mengikuti diagram di bawah untuk memahami langkah-" -"langkah tersebut dan pilihan yang tersedia." - -# 0cbb669bb7c6498fb219ac784854fb68 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:118 -msgid "Steps in the Keyword Creation Wizard" -msgstr "Langkah-langkah pada Wizard Pembuat Keyword" - -# 0a5e9c8f92ad41579fbef6ef53087152 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:120 -msgid "" -"Starting at the top of the diagram and working down; in the first step you " -"will choose if your data are hazard, exposure or aggregation data. Your " -"choice will determine the next options offered. You can always go back and " -"change things later." -msgstr "" -"Dimulai pada bagian atas diagram lalu ke bawah; pada langkah awal Anda akan " -"memilih apakah data Anda termasuk data ancaman, keterpaparan atau agregasi. " -"Pilihan Anda akan menentukan pilihan berikutnya yang diberikan. Anda dapat " -"kembali ke langkah sebelumnya dan mengubah informasi yang ingin diubah " -"nantinya." - -# a0236c7cef2e48b6a6c31611ec340a8e -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:125 -msgid "" -"If you choose Hazard or Exposure, you will need to select the type of hazard " -"or exposure. Next, you will choose whether the layer mode is continuous or " -"classified (if you forget what Continuous or Classified means, you can " -"reference the `Key Concept of Disaster Management section `__). Both " -"Hazard and Exposure types have the same step after you define the layer " -"mode: defining which unit or attribute represents the hazard." -msgstr "" -"Jika Anda memilih Ancaman atau Keterpaparan, Anda perlu pilih jenis ancaman " -"atau keterpaparan nya. Selanjutnya, Anda pilih apakah mode layer tersebut " -"adalah kontinyu atau terklasifikasi (jika Anda lupa arti dari kontinyu atau " -"terklasifikasi, Anda dapat melihat referensi dari `Key Concept of Disaster " -"Management section `__). Ancaman dan keterpaparan memiliki langkah yang " -"sama setelah menentukan mode layer: mendefinisikan unit atau atribut yang " -"merepresentaikan ancaman tersebut." - -# 62033b6258d1407e97bf8429d40e7d1a -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:134 -msgid "" -"The steps will be different for aggregation data. After you define the data " -"as aggregation data, you will select the attribute to represent the names of " -"aggregation areas. After you select it, you will be asked to define the " -"population ratio. Finally, you will need to enter the source of data and the " -"name of your layer to be displayed in the |project_name| dock." -msgstr "" -"Langkah-langkah tersebut akan berbeda untuk data agregasi. Setelah Anda " -"menentukan data tersebut sebagai data agregasi, Anda akan memilih atribut " -"untuk merepresentasikan nama dari area agregasi. Setelah Anda memilihnya, " -"Anda akan diminta untuk menentukan rasio populasi. Kemudian Anda harus " -"memasukkan sumber data dan nama layer yang akan ditampilkan pada dek |" -"project_name|." - -# 1dad774e1392433db48ec7a439c69c0a -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:149 -msgid "" -"After you set the keyword using the Keyword Wizard, you can see in the |" -"project_name| panel on the right side that the layer keyword has been set. " -"Verify that it looks like the image below? If it does not, you should go " -"back and try to define the keyword again." -msgstr "" -"Setelah Anda mengatur kata kunci menggunakan Wizard Pembuat Keyword, Anda " -"dapat melihat pada panel |project_name| panel di sisi kanan bahwa kata kunci " -"sudah diatur. Untuk memastikan apakah tampilannya seperti gambar di bawah " -"ini? Jika tidak, Anda harus kembali dan mencoba menentukan kata kunci lagi." - -# e2d635fe31f047afb6efcab5635d87c6 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:158 -msgid "" -"After you set the keyword to match the image above, the hazard data will " -"appear in the hazard panel of the |project_name| Dock." -msgstr "" -"Setelah Anda menentukan kata kunci persis seperti gambar di atas, data " -"ancaman akan muncul pada panel ancaman dek |project_name|." - -# f90055d4c425401db36752f68dfeef76 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:165 -msgid "" -"Now all the keyword data has been set and we can move into the next section " -"to run |project_name| with population data." -msgstr "" -"Sekarang semua data kata kunci telah ditentukan dan kita dapat berpindah ke " -"sesi selanjutnya untuk menjalankan |project_name| untuk data populasi." - -# 5adb8206371c411189fbb52dee14d7ec -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:169 -msgid "C. Run |project_name| for population with aggregation" -msgstr "C. Menjalankan |project_name| untuk populasi dengan agregasi" - -# 2c9d5c24c0aa460f8055ed2472d182a2 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:171 -msgid "" -"We have seen the result of |project_name| on buildings and populations with " -"raster hazard data. Now we will run |project_name| analysis using flood " -"vector hazard data and raster population as exposure data. This time, " -"however, we will use aggregated data. Using |project_name| with aggregated " -"data will help you to get detailed result since the aggregated data can " -"provide detailed information on specific administrative (or other) area. |" -"project_name| allows us to add administrative data with specific boundaries " -"that we can use to aggregate results." -msgstr "" -"Kita telah melihat hasil |project_name| untuk bangunan dan populasi dengan " -"data ancaman raster. Sekarang kita akan menjalankan analisis |project_name| " -"menggunakan data ancaman vektor banjir dan raster populasi sebagai data " -"keterpaparan. Namun kali ini kita akan menggunakan data agregasi. " -"Menggunakan |project_name| dengan data agregasi akan membantu Anda " -"mendapatkan hasil yang rinci karena data agregasi dapat memberikan informasi " -"yang rinci mengenai wilayah administrasi tertentu (atau lainnya). |" -"project_name| memungkinkan kita untuk menambahkan data administrasi dengan " -"batas-batas tertentu yang dapat kita gunakan untuk mengagregasi hasil " -"analisis." - -# 808ebc22569648dc859bedf9fb9a9171 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:177 -msgid "" -"To do this, look at the Layer List and make sure to turn ON the **Jakarta " -"District** layer. Next, take a look at the |project_name| dock under the " -"heading *Summarise the results by*." -msgstr "" -"Untuk melakukan ini, lihat pada Daftar Layer dan pastikan layer **Jakarta " -"District** diaktifkan. Kemudian, lihat pada dek |project_name| di bawah " -"tulisan *Simpulkan hasil dengan*." - -# 3ac088bbb4424886b2e2b656e7956fd4 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:184 -msgid "" -"Why are we not able to see the **Jakarta District** layer that we just " -"turned ON before? Check the layer by selecting it on the Layer List. Did you " -"see the keyword? The reason why this layer did not appear in the |" -"project_name| Dock is because it did not have keyword data defube. Go ahead " -"and add a keyword for **Jakarta District** using the :guilabel:`Keyword " -"Creation Wizard`. For your reference, refer to the keyword diagram as " -"explained above." -msgstr "" -"Mengapa layer **Jakarta District** yang sudah diaktifkan sebelumnya tidak " -"tampak? Cek layer dengan memilih layer tersebut di Daftar Layer. Apakah " -"Anda melihat kata kunci layer tersebut? Alasan mengapa layer ini tidak " -"muncul pada dek |project_name| karena layer tersebut tidak memiliki kata " -"kunci. Silakan tambahkan kata kunci untuk **Jakarta District** menggunakan :" -"guilabel:`Wizard Pembuat Keyword`. Untuk referensi, lihat diagram kata kunci " -"yang sebelumnya sudah dijelaskan." - -# 208b2dd75cb64eeca855ef2a14f0c86e -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:191 -msgid "" -"Now you will able to select **Jakarta District** under 'Summarise the " -"results by' in the |project_name| Dock. The |project_name| Dock should look " -"like this:" -msgstr "" -"Sekarang Anda dapat memilih **Jakarta District** di bawah 'Simpulkan hasil " -"dengan' pada dek |project_name|. Dek |project_name| akan terlihat seperti " -"ini:" - -# bb5d78ae3da74f179d65a2550b1e7e68 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:198 -msgid "" -"Click :guilabel:`Run` and wait until |project_name| finishes analysing the " -"data. A new impact layer will be added to the Layer List. When you look at " -"the result, it looks the same as |project_name| analysis result without " -"aggregation, but if you scroll down to the bottom you will see the detailed " -"result. As explained before, using aggregation will let you get detailed " -"information for a specific area or administration region." -msgstr "" -"Klik :guilabel:`Hitung` dan tunggu hingga |project_name| selesai " -"menganalisis data. Layer terdampak baru akan ditambahkan pada Daftar Layer. " -"Ketika Anda melihat hasilnya, hasilnya akan terlihat sama seperti hasil " -"analisis |project_name| tanpa agregasi, tapi jika Anda menggeser ke bawah, " -"Anda akan melihat hasil terperincinya. Seperti yang sudah dijelaskan " -"sebelumnya, dengan menggunakan agregasi Anda akan mendapatkan hasil yang " -"terperinci untuk area atau wilayah administrasi tertentu." - -# e628d29347f946918c659b55fd402c03 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:209 -msgid "" -"In the screenshot above, we see detailed impact results for each district in " -"Jakarta for the detailed minimum needs report. You can also use *jakarta " -"subdistrict* rather than using *jakarta_district* for aggregation if you " -"want to get more detailed results. Try running the analysis again using " -"*jakarta subdistrict*. The aggregation option in |project_name| can also be " -"applied for buildings and roads (in addition to population). In the next " -"exercise, we will learn to run |project_name| for roads and buildings." -msgstr "" -"Pada *screenshot* di atas, kita melihat hasil terdampak yang terperinci " -"untuk tiap kotamadya di Jakarta untuk laporan rinci kebutuhan minimum. Anda " -"juga dapat menggunakan *jakarta subdistrict* selain menggunakan " -"*jakarta_district* untuk data agregasi jika Anda ingin mendapatkan hasil " -"yang lebih rinci lagi. Coba jalankan lagi analisis menggunakan *jakarta " -"subdistrict*. Opsi agregasi pada |project_name| dapat diaplikasikan juga " -"untuk bangunan dan jalan (selain populasi). Pada materi selanjutnya, kita " -"akan mempelajari menjalankan |project_name| untuk jalan dan bangunan." - -# 82d9c6b993204a8290361f73129e4d05 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:217 -msgid "2. Running |project_name| for roads and buildings" -msgstr "2. Menjalankan |project_name| untuk data jalan dan bangunan" - -# 064c42e0de7944a69a5fbc2b15c46322 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:220 -msgid "A. Download building polygons and roads with OpenStreetMap Downloader" -msgstr "" -"A. Mengunduh poligon bangunan dan jalan menggunakan *OpenStreetMap " -"Downloader*" - -# 79d0f2e4f8a94bfba355ce957d27a877 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:222 -msgid "" -"We have completed running |project_name| with population and vector hazard " -"data. Now, we will run |project_name| with different type of vector exposure " -"data: roads and buildings polygons. We will obtain these dataset using one " -"of |project_name| features, :guilabel:`OpenStreetMap Downloader`. :guilabel:" -"`OpenStreetMap Downloader` is a feature that enables downloading " -"OpenStreetMap data and directly loading it into QGIS. This feature requires " -"an internet connection as it fetches the data via a web service. Once " -"downloaded, the data will be available as shapefiles and symbolised neatly " -"(more information at `OpenStreetMap Downloader page `__)." -msgstr "" -"Kita telah menyelesaikan proses analisis |project_name| dengan data populasi " -"dan data vektor ancaman. Sekarang, kita akan menjalankan |project_name| " -"dengan jenis data vektor keterpaparan yang berbeda: jalan dan poligon " -"bangunan. Kita akan mendapatkan dataset ini menggunakan salah satu fitur |" -"project_name|, :guilabel:`OpenStreetMap Downloader`. :guilabel:" -"`OpenStreetMap Downloader` adalah sebuah fitur yang memungkinkan kita untuk " -"mengunduh data OpenStreetMap dan langsung memuatnya ke dalam QGIS. Fitur ini " -"membutuhkan koneksi internet karena fitur ini mengambil data melalui layanan " -"situs. Setelah data berhasil diunduh, data akan tersedia sebagai shapefile " -"dan sudah diberi simbol (informasi lebih lanjut kunjungi `halaman " -"OpenStreetMap Downloader `__)." - -# fdfa33873c104ac4a52f0685e1a5919d -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:233 -msgid "To use this feature for our next exercise, follow these steps:" -msgstr "" -"Untuk menggunakan fitur ini di materi berikutnya, ikuti langkah-langkah " -"berikut:" - -# 22cec9a2783245a8b91fa2e685b733f6 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:235 -msgid ":guilabel:`Zoom in` to any flooded area that you prefer." -msgstr ":guilabel:`Perbesar` area banjir yang Anda inginkan." - -# 33b1f5c2bf0b48cb8cd17c972f6e1c46 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:237 -msgid "Click the :guilabel:`OpenStreetMap Downloader` icon." -msgstr "Klik ikon :guilabel:`OpenStreetMap Downloader`." - -# 6d242b25686344139a0c02236eec5779 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:239 -msgid "" -"Select :guilabel:`Building Polygons` and :guilabel:`Roads` as the feature " -"types to download." -msgstr "" -"Pilih :guilabel:`Poligon Bangunan` dan :guilabel:`Jalan` sebagai jenis fitur " -"yang akan diunduh." - -# 4d5c4aa1549d4bb5af57954b346dfad3 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:241 -msgid "" -"Click :guilabel:`Drag on Map` to select the boundary box from which data " -"will be downloaded." -msgstr "" -"Klik :guilabel:`Geser pada peta` untuk memilih kotak batas dari data yang " -"akan diunduh." - -# f8ac5891d6e84569a3833aa9e0a5a3df -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:243 -msgid "" -"Choose your output directory, where OSM data will be stored. Adding a file " -"name prefix makes it easier to identify the data downloaded." -msgstr "" -"Pilih direktori *output* Anda, dimana data OSM akan disimpan. Tambahkan " -"awalan nama file untuk memudahkan dalam identifikasi data yang diunduh." - -# bb16eb1aefff4e368e989ef932637949 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:249 -msgid "Click :guilabel:`OK`." -msgstr "Klik :guilabel:`OK`." - -# a8a35c60aa5c477a8072609c554513e5 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:251 -msgid "" -"It may take a while to download all the data in the given area based on how " -"big the area is (generally dataset at city level and below should work " -"well). After you download the data, a new layer will appear in the Layer " -"List. The amount of data available depends on the OpenStreetMap data " -"available in the downloaded region. If you want to get more data in your " -"area, you can participate in OpenStreetMap and start map the area." -msgstr "" -"Lamanya waktu mengunduh data akan bergantung pada besarnya area dan " -"banyaknya data OSM (pada umumnya dataset pada tingkat kota ke bawah berjalan " -"lancar). Setelah Anda mengunduh data, sebuah layer baru akan muncul di " -"Daftar Layer. Banyaknya data yang tersedia bergantung pada data " -"OpenStreetMap yang tersedia di lokasi yang diunduh datanya. Jika Anda ingin " -"mendapatkan data yang lebih lengkap dan banyak, Anda dapat berpartisipasi " -"menggunakan OpenStreetMap dan mulai memetakan area tersebut." - -# 63a0dd3f1af1437e9f2aee8aa18c662d -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:258 -msgid "" -"Since the data already downloaded, we are ready to run |project_name| " -"analysis. But can |project_name| run the data for only the small part of the " -"whole hazard data? We will find the answer in the next section." -msgstr "" -"Setelah data sudah diunduh, kita siap menjalankan analisis |project_name|. " -"Tetapi dapatkah |project_name| menjalankan data hanya untuk sebagian kecil " -"dari keseluruhan data ancaman? Kita akan menemukan jawabannya pada sesi " -"selanjutnya." - -# ab25ea201a6d4a278a5ae5564c54a136 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:263 -msgid "B. Define your custom analysis area" -msgstr "B. Menentukan area analisis kustom" - -# 82a6ca3c14534a1f94744e874a7f61b9 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:265 -msgid "" -"|project_name| has a feature that allows you specify exactly which area " -"should be used for your analysis. If you have exposure data that is not the " -"same size, you can use this feature to define your own analysis area." -msgstr "" -"|project_name| memiliki sebuah fitur yang memungkinkan Anda menentukan area " -"mana yang akan digunakan untuk analisis Anda. Jika Anda memiliki data " -"keterpaparan yang ukurannya tidak sama, Anda dapat menggunakan fitur ini " -"untuk menentukan area analisis Anda sendiri." - -# 95b0bb0c8f854358bfccb1dd58c4b3fd -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:270 -msgid "" -"Click :guilabel:`Set Analysis Area` to show set analysis extent feature." -msgstr "" -"Klik :guilabel:`Tentukan Daerah Analisis` untuk menampilkan fitur penentuan " -"daerah analisis." - -# 9eea1fdf59a74c43af4fceb8ab126c15 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:272 -msgid "" -"Select :guilabel:`Use intersection of hazard, exposure and this bounding " -"box`." -msgstr "" -"Pilih :guilabel:`Gunakan perpotongan dari ancaman, keterpaparan dan kotak " -"batas ini`." - -# 4b3a49fba4264f3787550a86a0e07bc6 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:274 -msgid "" -"Click :guilabel:`Drag on Map` to draw the bounding box around building " -"polygons and roads." -msgstr "" -"Klik :guilabel:`Geser pada peta` untuk menggambar kotak batas sekitar " -"poligon bangunan dan jalan." - -# 04905f30dafa4104b5a329d1038a894a -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:277 -msgid "Click :guilabel:`OK`" -msgstr "Klik :guilabel:`OK`" - -# e7902e4d709b488fa37549ff054619ba -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:279 -msgid "" -"if you click Draw on Map, the window will be temporarily hidden so that you " -"can drag a rectangle on the map. After you have finished dragging the " -"rectangle, the window will reappear." -msgstr "" -"Jika Anda mengklik Geser pada peta, jendela akan tersembunyi sementara " -"sehingga Anda dapat menggeser sebuah kotak pada peta. Setelah Anda selesai " -"menggeser kotak, jendela akan muncul kembali." - -# 414c5842f7e34e37b82504089f634a41 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:287 -msgid "" -"To verify that your analysis area has been successfully defined, click :" -"guilabel:`Toggle Scenario Outlines`. A green box will appear around your " -"data." -msgstr "" -"Untuk memastikan bahwa area analisis Anda telah selesai ditentukan, klik :" -"guilabel:`Tombol untuk beralih ke garis bantu skenario`. Sebuah kotak hijau " -"akan muncul di sekeliling data Anda." - -# 8cb1246a328d40efa6067b33a54f91fe -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:294 -msgid "" -"Using Toggle Scenario Outlines help you understand which area that |" -"project_name| will analyse. It is also an important step before running |" -"project_name| analysis because not all of the data you put in the Layer List " -"will be automatically defined by |project_name|." -msgstr "" -"Menggunakan Tombol untuk beralih ke garis bantu skenario membantu Anda " -"memahami area yang akan dianalisis |project_name|. Ini merupakan langkah " -"penting sebelum menjalankan analisis |project_name| karena tidak semua data " -"yang Anda masukkan ke Daftar Layer akan secara otomatis didefinisikan oleh |" -"project_name|." - -# bfdaf167aaef4d0db3763e8acf01d299 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:299 -msgid "" -"Take a look at the |project_name| panel dock to make sure building polygons " -"and roads have a keyword defined. If they do not you can define one using :" -"guilabel:`InaSAFE Keyword Wizard`. After the keyword has been already set, " -"we are ready to run |project_name| for building polygons and roads." -msgstr "" -"Lihat pada dek panel |project_name| untuk memastikan poligon bangunan dan " -"jalan memiliki sebuah kata kunci yang sudah ditentukan. Jika data tersebut " -"tidak memiliki kata kunci, Anda dapat menentukan kata kunci menggunakan :" -"guilabel:`InaSAFE Keyword Wizard`. Setelah kata kunci ditentukan, kita siap " -"menjalankan analisis |project_name| untuk poligon bangunan dan jalan." - -# d654e7a746034396b67d3f7f567b8e81 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:304 -msgid "C. Run |project_name| analysis for building polygons" -msgstr "C. Menjalankan analisis |project_name| untuk poligon bangunan" - -# fd06fb1bafa34bc0b303a423ba5d6b12 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:306 -msgid "" -"Let us run analysis for building polygons first. Make sure you set the |" -"project_name| dock as pictured below:" -msgstr "" -"Mari kita jalankan analisis untuk poligon bangunan terlebih dahulu. Pastikan " -"Anda mengatur dek |project_name| seperti gambar di bawah:" - -# 8e80c787d34f421dbc09a6ba63ebd34e -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:313 -msgid "" -"We will run |project_name| for flood vector hazard and building polygons " -"with data aggregated by Jakarta district Click :guilabel:`Run` to begin |" -"project_name| analysis. After running, you will find the impact result layer " -"in Layer List." -msgstr "" -"Kta akan menjalankan |project_name| untuk data vektor ancaman dan poligon " -"bangunan dengan data agregasi Jakarta district, klik :guilabel:`Hitung` " -"untuk memulai analisis |project_name|. Setelah menjalankan analisis, Anda " -"akan melihat layer hasil terdampak baru di Daftar Layer." - -# bf0e546689fb4d07b3561ec3a65490f0 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:321 -msgid "" -"Look at the **Detailed building type report** (picture above) it shows that " -"five districts in Jakarta are affected by flood. Your results may vary since " -"it depend on the analysis area selected and also the aggregation layer that " -"you used for analysis." -msgstr "" -"Lihat **Laporan Detil Tipe Bangunan** (gambar di atas) yang menunjukkan " -"bahwa lima kotamadya di Jakarta terdampak banjir. Hasil analisis dapat " -"bervariasi tergantung area analisis yang dipilih pengguna dan juga layer " -"agregasi yang digunakan." - -# 997eb11e06b44aff8c272342a0df3d94 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:326 -msgid "" -"|project_name| did not separate the impact result into three categories as " -"in the :ref:`Run Basic InaSAFE ` because in the previous " -"exercise we used raster data containing information of flood depth in each " -"pixel yet in this exercise, the hazard data that we use only depicts " -"affected areas. Therefore, |project_name| will calculate how many buildings " -"are inside the affected area but not level of impact on each building." -msgstr "" -"|project_name| tidak memisahkan hasil analisis dampak ke dalam tiga kategori " -"seperti di :ref:`Menjalankan InaSAFE Dasar ` karena pada " -"materi sebelumnya kita menggunakan data raster yang memiliki informasi " -"kedalaman banjir di masing-masing piksel, sedangkan di materi ini, data " -"ancaman yang digunakan hanya memiliki informasi area terdampak saja. Oleh " -"karena itu, |project_name| hanya menghitung banyaknya bangunan yang " -"terdampak saja tetapi tidak menghitung seberapa parah dampaknya untuk " -"bangunan-bangunan tersebut." - -# 6643bd063dce47678848f45c94e61415 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:333 -msgid "" -"We just succeeded running |project_name| on flood vector hazard with " -"building polygon. Next, we will run |project_name| for roads. What are the " -"results that you expect to get when you run |project_name| for roads?" -msgstr "" -"Kita baru saja berhasil menjalankan |project_name| untuk data vektor banjir " -"terhadap poligon bangunan. Selanjutnya, kita akan menjalankan |project_name| " -"untuk jalan. Hasil apa yang Anda harapkan ketika Anda menjalankan |" -"project_name| untuk jalan?" - -# 0f5e6062b0aa4d81866dfbd09c68bd69 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:338 -msgid "D. Run |project_name| for roads" -msgstr "D. Menjalankan |project_name| untuk jalan" - -# d08d16c049fc4adeab2ebd982295324c -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:340 -msgid "" -"In this last exercise, we will run |project_name| on roads data that we " -"previously downloaded from OpenStreetMap. Make sure that you select roads as " -"exposure data in the |project_name| dock, as shown in the screenshot below:" -msgstr "" -"Pada latihan sebelumnya, kita akan menjalankan |project_name| pada data " -"jalan yang sebelumnya sudah diunduh menggunakan OpenStreetMap. Pastikan Anda " -"memilih layer jalan sebagai data keterpaparan di dek |project_name|, seperti " -"yang terlihat di *screenshot* di bawah:" - -# 30b44e10dbaf4090821a02f44ebb6db6 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:348 -msgid "" -"Click :guilabel:`Run` to start |project_name| analysis. A new impact layer " -"will be added to your Layer List and in the map canvas you will see green " -"roads as not flooded and red as flooded. Select the **Flooded roads** layer " -"to see statistics from the |project_name| analysis." -msgstr "" -"Klik :guilabel:`Hitung` untuk memulai analisis |project_name|. Sebuah layer " -"dampak baru akan muncul di Daftar Layer dan di kanvas peta Anda akan melihat " -"jalan berwarna hijau yang berarti bahwa jalan tersebut tidak banjir dan " -"jalan berwarna merah yang terdampak banjir. Pilih layer **Flooded roads** " -"untuk melihat statistik hasil analisis |project_name|." - -# da38407b660d44a2935ba25c6ee110f8 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:357 -msgid "" -"In this analysis, |project_name| will generate statistics on how many roads " -"are temporarily closed in the affected area and also a breakdown of the " -"result by road type. If you are using aggregation, there will be detailed " -"results for each aggregation. In the action checklist, you will see several " -"questions that can be used for points of discussion related to road impact, " -"and disaster logistics planning, for example: *Which roads can be used to " -"evacuate people or to distribute logistics?*" -msgstr "" -"Pada analisis ini, |project_name| akan menghasilkan statistik berapa banyak " -"jalan yang ditutup sementara di area terdampak dan juga rincian analisis " -"berdasarkan tipe jalan. Jika Anda menggunakan agregasi, akan ada hasil rinci " -"untuk masing-masing agregat. Pada daftar tindakan, Anda akan melihat " -"beberapa pertanyaan yang digunakan untuk diskusi mengenai dampak pada jalan " -"dan rencana logistik bencana, misalnya: *Jalan mana yang dapat digunakan " -"untuk mengevakuasi penduduk atau untuk mendistribusikan logistik?*" - -# 4cc815bf245b4320bd8d10004dd8c0d9 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:365 -msgid "Summary" -msgstr "Ringkasan" - -# de3c4479250b4623a7f66ecc4071cd3f -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:367 -msgid "" -"In this exercise, you have learned how to run |project_name| analysis with " -"different hazard data formats and with new type of exposure data. You have " -"also learned two fundamental steps to remember before you run |project_name|:" -msgstr "" -"Pada bab ini, Anda telah mempelajari bagaimana menjalankan analisis |" -"project_name| menggunakan format data ancaman yang berbeda dan menggunakan " -"jenis data keterpaparan baru. Anda juga telah mempelajari dua langkah " -"penting yang harus diingat sebelum Anda menjalankan analisis |project_name|:" - -# 288567ab8135441680bdf76c645db3ff -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:371 -msgid "" -"First, you learned how to define a keyword for your data so it can be " -"analysed with |project_name|. Without a keyword, |project_name| will not " -"recognize your data, so you need to define it whether the data is hazard, " -"exposure or aggregation data. You can set the keyword using the :guilabel:" -"`Keyword Creation Wizard` feature." -msgstr "" -"Pertama, Anda belajar bagaimana menentukan kata kunci untuk data Anda " -"sehingga data Anda dapat dianalisis menggunakan |project_name|. Tanpa kata " -"kunci, |project_name| tidak dapat mengenali data Anda, sehingga Anda perlu " -"menentukan apakah data itu adalah ancaman, keterpaparan, atau agregasi. Anda " -"dapat menentukan kata kunci menggunakan fitur :guilabel:`Wizard Pembuat " -"Keyword`." - -# 6b3244e12e2f49ddb37987a0d892c1db -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:377 -msgid "" -"Second, it is important to review the analysis area using *Toggle Scenario " -"Outline* before you run |project_name| analysis. This is because, |" -"project_name| sometimes does not automatically set the analysis area " -"according to the intersection of hazard and exposure data. If |project_name| " -"did not set the analysis area, you need to define it manually using the :" -"guilabel:`Set Analysis Area` feature." -msgstr "" -"Kedua, penting untuk meninjau area analisis menggunakan *Tombol untuk " -"beralih ke garis bantu skenario* sebelum Anda menjalankan analisis |" -"project_name|. Hal ini dikarenakan |project_name| biasanya tidak secara " -"otomatis mengatur area analisis menurut perpotongan antara data ancaman dan " -"keterpaparan. Jika |project_name| tidak mengatur area analisis, Anda perlu " -"menentukannya secara manual menggunakan fitur :guilabel:`Tentukan Daerah " -"Analisis`." - -# 1a83bdd870cc44e58ba20b01c894789e -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:383 -msgid "" -"In this exercise, you have learned how to download buildings and roads data " -"from OpenStreetMap using :guilabel:`OpenStreetMap Downloader`. With this " -"feature you can define the size of the area and what type of data you want " -"to download. The availability of the data depends on how complete the data " -"are in OpenStreetMap." -msgstr "" -"Pada bab ini, Anda juga telah mempelajari bagaimana mengunduh bangunan dan " -"jalan dari OpenStreetMap menggunakan :guilabel:`OpenStreetMap Downloader`. " -"Dengan fitur ini, Anda dapat menentukan ukuran area dan jenis data apa yang " -"Anda ingin unduh. Ketersediaan data bergantung pada kelengkapan data di " -"OpenStreetMap." - -# 81399a44ded04930a1cf58a374df4620 -#: ../../source/training/socialisation/run_intermediate_inasafe.rst:389 -msgid "" -"In the next section, you will learn how to run |project_name| with other " -"type of hazard data such as tsunami, earthquake, volcano and generic data." -msgstr "" -"Pada sesi selanjutnya, Anda akan mempelajari bagaimana menjalankan |" -"project_name| dengan jenis data ancaman yang lain seperti tsunami, gempa " -"bumi, gunung berapi dan data umum." diff --git a/docs/i18n/id/LC_MESSAGES/training/socialisation/run_other_hazards.po b/docs/i18n/id/LC_MESSAGES/training/socialisation/run_other_hazards.po deleted file mode 100644 index 80a5c635..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/socialisation/run_other_hazards.po +++ /dev/null @@ -1,1617 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 0a4040804ad14f25ab0557b70a0c87a5 -#: ../../source/training/socialisation/run_other_hazards.rst:6 -msgid "Other Hazards" -msgstr "Ancaman Lainnya" - -# c501cbb6c8184fff97ee9145ea42716e -#: ../../source/training/socialisation/run_other_hazards.rst:9 -msgid "Introduction" -msgstr "Pengantar" - -# a530cfc49b5f415a88ad20651407ad00 -#: ../../source/training/socialisation/run_other_hazards.rst:11 -msgid "" -"|project_name| was designed to predict the result of a disaster by giving us " -"the potential impact on buildings, populations and roads based on specific " -"scenarios. From previous exercises, we have learned how to use Basic and " -"Intermediate |project_name| functionality. We also learned about using tools " -"in |project_name| such as define keywords, configure minimum needs and area " -"analysis, using aggregation as well as many others." -msgstr "" -"|project_name| dirancang untuk memprediksi hasil dari suatu bencana dengan " -"memberikan kita dampak potensial pada bangunan, populasi, dan jalan " -"berdasarkan skenario tertentu. Dari latihan-latihan sebelumnya, kita telah " -"belajar bagaimana menggunakan fungsionalitas |project_name| Dasar dan " -"Menengah. Kita juga belajar menggunakan alat di |project_name| seperti " -"menggunakan kata kunci, mengkonfigurasi kebutuhan minimum dan analisis area, " -"menggunakan agregasi dan lainnya." - -# d6d4a0219fed48238377cf4af268ca1a -#: ../../source/training/socialisation/run_other_hazards.rst:16 -msgid "" -"In previous exercises, we used the \"flooding in Jakarta\" scenario and " -"related data to learn |project_name| functionality. In addition to floods, |" -"project_name| impact analyses can be run for many hazard types including " -"earthquakes, tsunamis and volcanos. In this exercise, we will explore and " -"learn to run other hazard scenarios in |project_name| using |project_name| " -"dock and |project_name| Function Centric Wizard. Last but not least, we will " -"also use the Generic Impact Function." -msgstr "" -"Dalam latihan sebelumnya, kita menggunakan skenario \"Banjir di Jakarta\" " -"dan data terkait untuk mempelajari fungsionalitas |project_name|. Selain " -"banjir, analisis dampak |project_name| dapat dijalankan untuk berbagai jenis " -"ancaman termasuk gempa bumi, tsunami dan gunung berapi. Dalam latihan ini, " -"kita akan mengeksplorasi dan mempelajari untuk menjalankan skenario ancaman " -"lainnya di |project_name| menggunakan dek |project_name| dan Wizard Fungsi " -"Dampak Terpusat |project_name|. Terakhir, kita juga akan menggunakan Fungsi " -"Dampak Umum." - -# abb82c8a36714e7da527eb5cf01d1488 -#: ../../source/training/socialisation/run_other_hazards.rst:22 -msgid "Learning objectives:" -msgstr "Tujuan pembelajaran:" - -# 88b7206596d54b8f903e5b25607d20e6 -#: ../../source/training/socialisation/run_other_hazards.rst:24 -msgid "" -"To improve the participant’s understanding of how to use |project_name| to " -"run impact analyses for hazards other than floods. By the end of this " -"exercise, participants will be able to:" -msgstr "" -"Untuk meningkatkan pemahaman peserta tentang cara menggunakan |project_name| " -"untuk menjalankan analisis dampak ancaman selain banjir. Pada akhir latihan " -"ini, peserta akan mampu:" - -# 5fc672495f3245c2956bd8503a57adf7 -#: ../../source/training/socialisation/run_other_hazards.rst:27 -msgid "" -"Run |project_name| with other hazards such as Earthquakes, Tsunamis and " -"Volcanos;" -msgstr "" -"Menjalankan |project_name| dengan ancaman lainnya seperti gempa bumi, " -"tsunami, dan gunung berapi;" - -# 8bf6bb24eee443b4a42847249ea94c1f -#: ../../source/training/socialisation/run_other_hazards.rst:29 -msgid "Be able to read metadata and assign keywords to hazard data;" -msgstr "" -"Mampu untuk membaca metadata dan menetapkan kata kunci untuk data ancaman;" - -# 4ef2c4aec7534b02afd5adb17c0b5a14 -#: ../../source/training/socialisation/run_other_hazards.rst:31 -msgid "" -"Be able to use the |project_name| dock and the |project_name| Function " -"Centric Wizard; and" -msgstr "" -"Mampu menggunakan dek |project_name| dan Wizard Fungsi Dampak Terpusat |" -"project_name|; dan" - -# 9ee71e057bb944b7a2e214d414cb6d36 -#: ../../source/training/socialisation/run_other_hazards.rst:33 -msgid "" -"Be able to use the Generic Impact Function and understand how to use it to " -"work with their own data." -msgstr "" -"Mampu menggunakan Fungsi Dampak Umum dan memahami bagaimana menggunakannya " -"dengan data mereka sendiri." - -# 30ca66abac0f4c98bb0ca280dc499189 -#: ../../source/training/socialisation/run_other_hazards.rst:36 -msgid "Data for This Exercise:" -msgstr "Data untuk latihan ini:" - -# 264714eec90b4632ab951b80f8bf396f -#: ../../source/training/socialisation/run_other_hazards.rst:38 -msgid "" -"The data used for this exercise is the same as that used in previous " -"exercises. The data can be downloaded from |project_name| `Training Data " -"Packages `__ Once the " -"data has been downloaded, we will use the following QGIS project file and " -"spatial data:" -msgstr "" -"Data yang digunakan untuk latihan ini sama dengan data yang digunakan pada " -"latihan sebelumnya. Data dapat didownload dari `Paket Data Pelatihan |" -"project_name| `__ Setelah " -"data diunduh, kita akan menggunakan file proyek QGIS dan data spasial " -"berikut:" - -# 3575416692604daabd0639c853c7ddcd -#: ../../source/training/socialisation/run_other_hazards.rst:41 -msgid "Padang.qgs" -msgstr "Padang.qgs" - -# 39c15b7beaa34636bb74a425b1ddf3fc -#: ../../source/training/socialisation/run_other_hazards.rst:43 -msgid "Maumere.qgs" -msgstr "Maumere.qgs" - -# 5178e108537847d1ba3009c62459874b -#: ../../source/training/socialisation/run_other_hazards.rst:45 -msgid "Nagekeo.qgs" -msgstr "Nagekeo.qgs" - -# 26799ae2ea364cc8bf51cffaf98ca852 -#: ../../source/training/socialisation/run_other_hazards.rst:47 -msgid "Padang_village_boundary_WGS84.shp" -msgstr "Padang_village_boundary_WGS84.shp" - -# 1226a415e96c4f7fadceb64fe941a8fb -#: ../../source/training/socialisation/run_other_hazards.rst:49 -msgid "West_Sumatera_Population_WGS84.shp" -msgstr "West_Sumatera_Population_WGS84.shp" - -# 8dd2c3eae8424776acd96603a17151d4 -#: ../../source/training/socialisation/run_other_hazards.rst:51 -msgid "Padang_EQ_2009_WGS84.tif" -msgstr "Padang_EQ_2009_WGS84.tif" - -# 236e377f4dac4b328aed401455c9e83f -#: ../../source/training/socialisation/run_other_hazards.rst:53 -msgid "Maumere_Tsunami_WGS84.tif" -msgstr "Maumere_Tsunami_WGS84.tif" - -# 07f9875b4f5d4d11b6d036cfe10128a9 -#: ../../source/training/socialisation/run_other_hazards.rst:55 -msgid "Maumere_Buildings_WGS84.shp" -msgstr "Maumere_Buildings_WGS84.shp" - -# 38339ec453674dbcbe3f61dd54a559c2 -#: ../../source/training/socialisation/run_other_hazards.rst:57 -msgid "Sikka_Village_Boundary_WGS84.shp" -msgstr "Sikka_Village_Boundary_WGS84.shp" - -# abce09416a7f4d5095e5b6828acdff96 -#: ../../source/training/socialisation/run_other_hazards.rst:59 -msgid "Sinabung_Hazard_Map_2015_WGS84.shp" -msgstr "Sinabung_Hazard_Map_2015_WGS84.shp" - -# 909a8392312d4066a928f8497d933577 -#: ../../source/training/socialisation/run_other_hazards.rst:61 -msgid "Sinabung_buildings_WGS84.shp" -msgstr "Sinabung_buildings_WGS84.shp" - -# d6cdbd75f045428f8a011528b0357f43 -#: ../../source/training/socialisation/run_other_hazards.rst:63 -msgid "NGK_Landslide_Vulnerability_WGS84.shp" -msgstr "NGK_Landslide_Vulnerability_WGS84.shp" - -# 950c963178de42ffaad6158f248f6094 -#: ../../source/training/socialisation/run_other_hazards.rst:65 -msgid "NGK_Buildings_WGS84.shp" -msgstr "NGK_Buildings_WGS84.shp" - -# 419f225db2b642f186f551d7b00e30e8 -#: ../../source/training/socialisation/run_other_hazards.rst:67 -msgid "NGK_Population_WGS84.tif" -msgstr "NGK_Population_WGS84.tif" - -# 58931493873d47a09203bbed6cb288a5 -#: ../../source/training/socialisation/run_other_hazards.rst:69 -msgid "NGK_Villages_BPS_WGS84.shp" -msgstr "NGK_Villages_BPS_WGS84.shp" - -# 055545fbd15240a1948d3e0d8895206c -#: ../../source/training/socialisation/run_other_hazards.rst:72 -msgid "1. Run |project_name| for Earthquake" -msgstr "1. Menjalankan |project_name| untuk Gempa bumi" - -# 51b956959dda47f5b218a5644fdad845 -#: ../../source/training/socialisation/run_other_hazards.rst:75 -msgid "1.1 Run |project_name| for Building" -msgstr "1.1 Menjalankan |project_name| untuk Bangunan" - -# 89b1d80f9ebd44179f7e5b4a984924a6 -#: ../../source/training/socialisation/run_other_hazards.rst:78 -msgid "a. Open Project" -msgstr "a. Membuka Proyek" - -# 262cfa09f4b441b59e4b56f7e7fb70ad -#: ../../source/training/socialisation/run_other_hazards.rst:80 -msgid "" -"Indonesia’s location on the edges of the Pacific, Eurasian, and Australian " -"tectonic plates makes it not only a site of numerous volcanoes but also " -"frequent earthquakes. The hazard layer we are going to use for this example " -"has been provided by Badan Geologi and AIFDR, Australian Government and " -"describes the shaking or Modified Mercalli Intensity (MMI) Scale." -msgstr "" -"Lokasi Indonesia yang berada di tepian lempeng tektonik Pasifik, Eurasia, " -"dan Australia menjadikan Indonesia bukan hanya menjadi tempat banyaknya " -"gunung berapi tetapi juga gempa bumi yang sering terjadi. Layer ancaman yang " -"akan kita gunakan untuk contoh ini telah disediakan oleh Badan Geologi dan " -"AIFDR, Pemerintah Australia dan menggambarkan getaran dan Skala Modified " -"Mercalli Intensity (MMI)." - -# ea84f93d059e4895b11096ca8a5cca08 -#: ../../source/training/socialisation/run_other_hazards.rst:83 -msgid "" -"This particular scenario is a modelled version of the 2009 Padang " -"earthquake. Please open QGIS project file :file:`Padang.qgs` from the :file:" -"`InSAFE Training Data > West Sumatera` folder. Once opened, you will see the " -"below :" -msgstr "" -"Skenario khusus ini adalah versi model gempa Padang 2009. Silahkan buka file " -"proyek QGIS :file:`Padang.qgs` dari :file:`InSAFE Training Data > West " -"Sumatra`. Setelah dibuka, Anda akan melihat di bawah ini:" - -# 945f50a22569450d96a57d445a039729 -#: ../../source/training/socialisation/run_other_hazards.rst:88 -msgid "" -"In the |project_name| dock, note that the |project_name| form is still " -"empty. It means that your hazard and exposure data does not yet have " -"keywords assigned. Therefore, you must first define keywords for each " -"dataset in the project." -msgstr "" -"Pada dek |project_name|, perhatikan bahwa formulir |project_name| masih " -"kosong. Ini berarti data ancaman dan keterpaparan Anda belum memiliki kata " -"kunci yang ditetapkan. Oleh karena itu, Anda harus terlebih dahulu " -"mendefinisikan kata kunci untuk setiap dataset dalam proyek." - -# f07a1b92788b4d55aade555b5a25566b -#: ../../source/training/socialisation/run_other_hazards.rst:91 -msgid "" -"To define keywords, please click on the :guilabel:`Keywords Creation Wizard` " -"icon and follow the instructions provided. You can refer back to the :ref:" -"`Run Intermediate InaSAFE ` module for step-by-" -"step instructions." -msgstr "" -"Untuk menentukan kata kunci, klik ikon :guilabel:`Wizard Pembuat Keyword` " -"dan ikuti petunjuk yang diberikan. Anda dapat merujuk kembali ke modul :ref:" -"`Menjalankan InaSAFE Tingkat Menengah ` untuk " -"petunjuk langkah demi langkah." - -# b5d9450306814cdc9ca981bee403cf54 -#: ../../source/training/socialisation/run_other_hazards.rst:94 -msgid "" -"While you define the hazard layer, please select hazard classifications for " -"each exposure type. In this example, you must choose ‘Earthquake MMI " -"Classes’ on Population and 'Generic Classes' on Structures Classifications " -"to edit the threshold. Do not forget to save the thresholds before you " -"continue to the next step." -msgstr "" -"Saat Anda mendefinisikan layer ancaman, pilih klasifikasi ancaman untuk " -"setiap jenis paparan. Dalam contoh ini, Anda harus memilih 'Kelas MMI Gempa' " -"pada Populasi dan 'Kelas Umum' pada Klasifikasi Struktur untuk mengedit " -"ambang batas. Jangan lupa menyimpan ambang batas sebelum melanjutkan ke " -"langkah selanjutnya." - -# a12c115b543a402dbf9c42667f757b2e -#: ../../source/training/socialisation/run_other_hazards.rst:99 -#: ../../source/training/socialisation/run_other_hazards.rst:250 -msgid "" -"Once you have finished defining keywords for each layer, your |project_name| " -"form should look like this :" -msgstr "" -"Setelah Anda selesai mendefinisikan kata kunci untuk setiap lapisan, " -"formulir |project_name| Anda akan terlihat seperti ini:" - -# b1749939d0024d149d7a4b0cc6b73f08 -#: ../../source/training/socialisation/run_other_hazards.rst:105 -msgid "b. Run |project_name|" -msgstr "b. Menjalankan |project_name|" - -# 67d933cf57504bd1954a1af7dd5cc2e5 -#: ../../source/training/socialisation/run_other_hazards.rst:107 -msgid "" -"Once your |project_name| dock appears the same as the above image, you are " -"ready to run an earthquake analysis on buildings. It poses the question “In " -"the event of an **Earthquake in Padang 2009**\", how many **buildings** will " -"**be affected?**. Click :guilabel:`Run` on the bottom right corner in your |" -"project_name| Dock. If everything was set up correctly, you should get a " -"result in the dock area after a few seconds, and a new map layer should be " -"added to the map. The new layer is named **Number of Buildings**." -msgstr "" -"Setelah dek |project_name| Anda yang muncul sama dengan seperti gambar di " -"atas, Anda siap untuk melakukan analisis gempa pada bangunan. Ini " -"menimbulkan pertanyaan \"Jika terjadi **gempa di Padang 2009 **\", berapa " -"banyak **bangunan** yang akan **terpengaruh?**. Klik :guilabel:`Hitung` di " -"pojok kanan bawah pada dek |project_name| Anda. Jika semuanya sudah diatur " -"dengan benar, Anda akan mendapatkan hasilnya di area dek setelah beberapa " -"detik, dan layer peta baru ditambahkan ke peta. Layer baru diberi nama " -"**Jumlah Bangunan**." - -# 8c97d3f1b18949da82785f786d51162d -#: ../../source/training/socialisation/run_other_hazards.rst:117 -msgid "c. Interpret the Results" -msgstr "c. Menginterpresikan Hasil" - -# e8850575914b40e99ded85ff43f5f9d4 -#: ../../source/training/socialisation/run_other_hazards.rst:119 -msgid "Let’s take a look at the new data layer generated from |project_name|." -msgstr "Mari kita lihat layer data baru yang dihasilkan dari |project_name|." - -# 7a60da0a7dde455d843e5a45a27f2dd3 -#: ../../source/training/socialisation/run_other_hazards.rst:121 -msgid "Zoom in to any area in the Map Canvas" -msgstr "Perbesar ke area manapun di Kanvas Peta" - -# 27078a2f388449c5bed6d049f8d1a910 -#: ../../source/training/socialisation/run_other_hazards.rst:123 -msgid "" -"There will be three new different colours generated from |project_name| " -"(light yellow, orange, and red)." -msgstr "" -"Akan ada tiga warna berbeda yang dihasilkan dari |project_name| (kuning " -"muda, oranye, dan merah)." - -# 0d063621500f4ae497405edc9af963c1 -#: ../../source/training/socialisation/run_other_hazards.rst:125 -msgid "" -"The red buildings are located in highly affected areas which have MMI Values " -"greater than 8 MMI. The orange buildings are located in medium affected " -"areas which have MMI between 6 to 8 MMI while the light yellow buildings are " -"considered located in areas with low impact which have MMI Values of less " -"than 6 MMI." -msgstr "" -"Bangunan merah berada di daerah yang terdampak paling parah yang memiliki " -"Nilai MMI lebih besar dari 8 MMI. Bangunan oranye terletak di daerah yang " -"terdampak sedang yang memiliki MMI antara 6 sampai 8 MMI sedangkan bangunan " -"berwarna kuning muda dianggap terletak di daerah dengan dampak rendah yang " -"memiliki Nilai MMI kurang dari 6 MMI." - -# afb122faad3649d595fede5ac1db5bcc -#: ../../source/training/socialisation/run_other_hazards.rst:127 -msgid "" -"Click :guilabel:`Number of Buildings` in the layer list to select it, click " -"the :guilabel:`Identify Feature` tool, and then click on building to view " -"attributes of the building." -msgstr "" -"Klik :guilabel:`Jumlah Bangunan` pada daftar layer untuk memilihnya, klik " -"tombol alat :guilabel:` Identifikasi Fitur` , dan kemudian klik pada " -"bangunan untuk melihat atribut bangunan." - -# 23ed69c62c9c4b17b7e0cc257268b688 -#: ../../source/training/socialisation/run_other_hazards.rst:129 -msgid "" -"Default Threshold for Earthquake are 0-6 MMI for Low Threshold, 6.1-8 MMI " -"for Medium and more than 8 MMI for high threshold. You can change the " -"threshold of MMI Value for each affected area before running |project_name|. " -"Please run keyword wizard again and click Edit on Earthquake on Building. " -"Don't forget to click Save. This configuration will make your result " -"different with Run |project_name| using default threshold." -msgstr "" -"Ambang batas pengaturan bawaan untuk Gempa adalah 0-6 MMI untuk ambang batas " -"rendah, 6,1-8 MMI untuk ambang batas sedang dan lebih dari 8 MMI untuk " -"ambang batas tinggi. Anda dapat mengubah ambang batas Nilai MMI untuk setiap " -"area yang terkena dampak sebelum menjalankan |project_name|. Silahkan " -"jalankan wizard kata kunci lagi dan klik Edit pada Gempa di Bangunan. Jangan " -"lupa untuk klik Simpan. Konfigurasi ini akan membuat hasil Anda berbeda " -"dengan menjalankan |project_name| menggunakan ambang batas pengaturan bawaan." - -# 868ac4daabe64742868b81992238a728 -# 514e64abb76a4000a222eca48dd90e47 -#: ../../source/training/socialisation/run_other_hazards.rst:134 -#: ../../source/training/socialisation/run_other_hazards.rst:281 -#: ../../source/training/socialisation/run_other_hazards.rst:470 -msgid "" -"In the |project_name| panel we now see the impact summary. Details are " -"explained below." -msgstr "" -"Pada panel |project_name| kita sekarang melihat ringkasan dampaknya. " -"Rinciannya dijelaskan di bawah ini." - -# 9ce4bac6647e4f559622642aa472990d -#: ../../source/training/socialisation/run_other_hazards.rst:139 -msgid "" -"**General report:** shows estimated number of buildings based on hazard zone " -"and structures. **Hazard zone** divides the results into several categories " -"based on the threshold set in the hazard analysis. In this impact summary, " -"InaSAFE divides the impact buildings into three categories based on MMI. " -"**Structures** divides the results that shows the count of affected, not " -"affected and not exposed buildings." -msgstr "" -"** Laporan umum: ** menunjukkan perkiraan jumlah bangunan berdasarkan zona " -"ancaman dan strukturnya. ** Zona ancaman ** membagi hasilnya menjadi " -"beberapa kategori berdasarkan ambang batas yang ditetapkan dalam analisis " -"ancaman. Dalam ringkasan dampak ini, InaSAFE membagi dampak bangunan menjadi " -"tiga kategori berdasarkan nilai MMI. ** Struktur** membagi hasil yang " -"menunjukkan jumlah bangunan yang terkena dampak, bangunan yang tidak " -"terdampak, dan bangunan yang tidak terpapar ancaman." - -# f305dfe297d04caea44233f85f1c8ee4 -#: ../../source/training/socialisation/run_other_hazards.rst:141 -msgid "" -"**Analysis detail:** divides the exposed buildings into several categories " -"based on the building type attribute for each building. In this impact " -"summary, InaSAFE breaks down the results into a more detailed report by " -"looking at each type of the building." -msgstr "" -"** Detail analisis:** membagi bangunan yang terpapar menjadi beberapa " -"kategori berdasarkan atribut tipe bangunan untuk setiap bangunan. Dalam " -"ringkasan dampak ini, InaSAFE memecah hasilnya menjadi laporan yang lebih " -"terperinci dengan melihat setiap tipe bangunan." - -# cc5be8a533c84f83a1a1543de7e6aee5 -# 1610c22e32d246459da6f53eb59a815b -#: ../../source/training/socialisation/run_other_hazards.rst:143 -#: ../../source/training/socialisation/run_other_hazards.rst:216 -#: ../../source/training/socialisation/run_other_hazards.rst:534 -msgid "" -"**Action checklist:** designed to make disaster managers think about what " -"they need to do/discuss when planning for a similar event in the future." -msgstr "" -"**Daftar tindakan:** dirancang untuk membuat para pengelola bencana " -"memikirkan apa yang perlu mereka lakukan/diskusikan saat merencanakan " -"peristiwa serupa di masa depan." - -# ffbe4b47d5444d49947593f82c32791e -#: ../../source/training/socialisation/run_other_hazards.rst:145 -msgid "" -"**Notes and assumptions:** provides details about the input data and any " -"limitations or assumptions in the analysis or report summary. In this " -"example, it explains why buildings are said to be inundated, wet and dry." -msgstr "" -"**Catatan dan asumsi:** menyediakan rincian tentang data masukan dan batasan " -"atau asumsi pada ringkasan analisis atau laporan. Dalam contoh ini, bagian " -"ini menjelaskan mengapa bangunan dikatakan tergenang, basah, dan kering." - -# 82f4f898b8f54c2d84b5ab90b861a9dc -#: ../../source/training/socialisation/run_other_hazards.rst:147 -msgid "" -"**Aggregation result:** statistical breakdown of the number of results. This " -"example shows the count of important infrastructure. When you choose to use " -"an aggregation layer with your analysis (we will do this later) this table " -"will show the number of buildings by aggregation boundary." -msgstr "" -"**Hasil agregasi:** rincian statistik dari jumlah hasil. Contoh ini " -"menunjukkan hitungan infrastruktur penting. Bila Anda memilih untuk " -"menggunakan layer agregasi pada analisis Anda (kita akan melakukannya nanti) " -"tabel ini akan menunjukkan jumlah bangunan berdasarkan batas agregasi." - -# 590f3ed1a69b4f91aca0b08e2b1d854b -#: ../../source/training/socialisation/run_other_hazards.rst:149 -msgid "" -"**Analysis details (source):** explanation of where the hazard data, " -"exposure data, aggregation come from." -msgstr "" -"**Rincian analisis (sumber):** penjelasan darimana data ancaman, data " -"keterpaparan, agregasi berasal." - -# 227abfe7ec5f4f129f94f49024895048 -#: ../../source/training/socialisation/run_other_hazards.rst:152 -msgid "1.2 Run |project_name| for Population" -msgstr "1.2 Menjalankan |project_name| untuk Populasi" - -# 0a2286c3a2dc46d2b7404b15688788a1 -#: ../../source/training/socialisation/run_other_hazards.rst:154 -msgid "" -"We are now ready to run our second |project_name| analysis using earthquake " -"data in Padang. We will be working with the same earthquake data again, but " -"this time looking at the number of impacted people in a specific area. If " -"you finished defining keywords, these data should have keywords assigned so " -"you will be ready to run |project_name|." -msgstr "" -"Sekarang kita siap untuk menjalankan analisis |project_name| kedua kita " -"menggunakan data gempa di Padang. Kita akan bekerja dengan data gempa yang " -"sama lagi, tapi kali ini kita akan melihat jumlah orang yang terkena dampak " -"di area tertentu. Jika Anda telah selesai mendefinisikan kata kunci, data " -"ini akan memiliki kata kunci yang telah ditetapkan sehingga Anda akan siap " -"menjalankan |project_name|." - -# c702e20595034556b41ebc83cf6edcd6 -#: ../../source/training/socialisation/run_other_hazards.rst:157 -msgid "" -"In QGIS, turn off the **Buildings** and **estimated buildings affected** " -"(the layers generated from |project_name| analysis and turn ON the " -"population layer). Because we want to look at the number people who might be " -"killed or displaced in a specific area, we also need to turn ON **the " -"Village** layer in QGIS. This layer will be used as an aggregation layer " -"that can show us the result for each administrative area. If you forget the " -"steps needed to define a layer as an aggregation, please refer to the :ref:" -"`Run Intermediate InaSAFE. `" -msgstr "" -"Di QGIS, matikan **Bangunan** dan **perkiraan bangunan yang terdampak** " -"(layer yang dihasilkan dari analisis |project_name| dan aktifkan layer " -"populasi). Karena kita ingin melihat jumlah orang yang mungkin terbunuh atau " -"terungsikan di daerah tertentu, kita juga perlu menyalakan layer **Desa** di " -"QGIS. Layer ini akan digunakan sebagai layer agregasi yang dapat menunjukkan " -"hasil untuk setiap area administratif. Jika Anda lupa langkah-langkah yang " -"diperlukan untuk mendefinisikan suatu layer sebagai agregasi, silakan " -"merujuk ke :ref:`Menjalankan InaSAFE Tingkat Menengah." -"`" - -# f7c7a90484544a44a69a417f74c58e48 -#: ../../source/training/socialisation/run_other_hazards.rst:162 -msgid "" -"Confirm that the |project_name| panel on the right side is set to query how " -"many people will be affected :" -msgstr "" -"Konfirmasikan bahwa panel |project_name| di sisi kanan diatur untuk query " -"berapa banyak orang akan terdampak:" - -# 254d6363872242f7b9da2c19133a3a8c -#: ../../source/training/socialisation/run_other_hazards.rst:164 -msgid "Earthquake in Padang 2009" -msgstr "Gempa di Padang 2009" - -# a1c8c017e0eb4cf8a790dde54610e081 -#: ../../source/training/socialisation/run_other_hazards.rst:166 -msgid "People" -msgstr "Orang" - -# a0f9600905cf4d10a745b9850381575a -#: ../../source/training/socialisation/run_other_hazards.rst:168 -msgid "Village" -msgstr "Desa" - -# 182d7b00a1404b7e82e2e6c9aff1c8af -#: ../../source/training/socialisation/run_other_hazards.rst:172 -msgid "Your |project_name| form should appear like the below screenshoot:" -msgstr "Formulir |project_name| Anda akan muncul seperti gambar di bawah ini:" - -# ad43fcae4e22417dabef659afb5a6058 -# 07a8867d55d5417daa849cac97f18ae9 -# 80532b577bed4ceca375ebf98dd71c27 -#: ../../source/training/socialisation/run_other_hazards.rst:178 -#: ../../source/training/socialisation/run_other_hazards.rst:442 -#: ../../source/training/socialisation/run_other_hazards.rst:491 -msgid "a. Run |project_name|" -msgstr "a. Menjalankan |project_name|" - -# fbfee7a1b61b4cb295723b9760185ddb -#: ../../source/training/socialisation/run_other_hazards.rst:180 -msgid "" -"If everything is setup correctly, the |project_name| dock should show that " -"you are ready to run a flood analysis on population. It poses the question " -"“In the event of an **Earthquake in Padang (2009)**, how many **people** " -"will be **affected**?” In this analysis we still use Shakemap data which has " -"values from 6 – 8 MMI. If you want to see the minimum relief needs that " -"should be provided based on the result, you can click :guilabel:`Options` " -"and select :guilabel:`Minimum Needs`." -msgstr "" -"Jika semuanya sudah diatur dengan benar, maka dek |project_name| harus " -"menunjukkan bahwa Anda siap untuk menjalankan analisis banjir pada populasi. " -"Ini menimbulkan pertanyaan \"Jika terjadi **Gempa di Padang (2009)**, berapa " -"banyak **orang** yang akan **terkena dampak**?\" Dalam analisis ini kita " -"masih menggunakan data Shakemap yang memiliki nilai dari 6 - 8 MMI. Jika " -"Anda ingin melihat kebutuhan bantuan minimum yang harus disediakan " -"berdasarkan hasilnya, Anda bisa klik :guilabel:`Pilihan` dan pilih :guilabel:" -"`Kebutuhan Minimum`." - -# 094117dfafb348fba6cab2c271f48581 -#: ../../source/training/socialisation/run_other_hazards.rst:184 -msgid "" -"You can refer to the :ref:`Run Basic InaSAFE ` to learn " -"more about the basis of default minimum needs in |project_name| or if you " -"want edit an item or add new minimum needs, you can refer to the `Minimum " -"Needs Configuration manuals `__. After everything is " -"setup accordingly, click :guilabel:`Run` to process the new scenario." -msgstr "" -"Anda bisa merujuk ke :ref:`Menjalankan InaSAFE Tingkat Dasar " -"` untuk mempelajari lebih lanjut tentang dasar pengaturan " -"bawaan kebutuhan minimum di |project_name| atau jika Anda ingin mengedit " -"item atau menambahkan kebutuhan minimum baru, Anda dapat merujuk ke manual " -"`Konfigurasi Kebutuhan Minimum `__. Setelah semuanya " -"telah diatur, klik :guilabel:`Hitung` untuk memproses skenario baru." - -# 349eb441a85049e1be0e074e8cf81744 -# beefdd3ed2bc4c4b813607c1966f1859 -#: ../../source/training/socialisation/run_other_hazards.rst:189 -#: ../../source/training/socialisation/run_other_hazards.rst:455 -msgid "b. Interpret The Result" -msgstr "b. Menginterpretasikan hasil" - -# 1271e39c3f07469990fca8d2614d904b -#: ../../source/training/socialisation/run_other_hazards.rst:191 -msgid "" -"If everything was set up correctly, you should get a result in the dock area " -"after a few  seconds, and a new map layer should be added to the map. The " -"new impact layer will be called **People Displaced**. Let’s explore the " -"result again to help you better understand its meaning :" -msgstr "" -"Jika semuanya telah diatur dengan benar, Anda akan mendapatkan hasilnya di " -"area dek setelah beberapa  detik, dan layer peta baru harus ditambahkan ke " -"peta. Layer dampak baru akan disebut **Orang yang Mengungsi**. Mari telusuri " -"hasilnya lagi untuk membantu Anda memahami hasilnya dengan lebih baik:" - -# 8da23309527c4ed38fe42bffedcdb8c8 -#: ../../source/training/socialisation/run_other_hazards.rst:194 -msgid "" -"Turn off the **Number of Buildings** layer and drag the **People Displaced** " -"above Earthquake in Padang 2009." -msgstr "" -"Matikan layer **Jumlah Bangunan** dan geser **Orang yang Mengungsi** di atas " -"Gempa di Padang 2009." - -# b2abc08da77145a4b01792a818180126 -#: ../../source/training/socialisation/run_other_hazards.rst:196 -msgid "Zoom in to the area you choose." -msgstr "Perbesar pada area pilihan Anda." - -# 3fb0fdb56edb4e7ebc0ed87596c14dca -#: ../../source/training/socialisation/run_other_hazards.rst:198 -msgid "" -"Select **People Displaced** in the layer list and use the :guilabel:" -"`Identify Feature` tool again to select a pixel (square) in the map canvas." -msgstr "" -"Pilih **Orang yang Mengungsi** pada daftar layer dan gunakan alat :guilabel:" -"`Identifikasi Fitur` lagi untuk memilih piksel (persegi) pada kanvas peta." - -# 92d3dedb024843cfb69f122cef9f4ecb -#: ../../source/training/socialisation/run_other_hazards.rst:200 -msgid "" -"In the screenshot below, clicking on one of the brown pixels displays a " -"value of 98.94569, which means there are approximately 98 people in this one " -"pixel (square) whom might be displaced." -msgstr "" -"Pada gambar di bawah ini, mengklik salah satu piksel coklat menampilkan " -"nilai 98.94569, yang berarti ada sekitar 98 orang dalam satu piksel ini " -"(persegi) yang mungkin mengungsi." - -# 4484907d7beb483897bfeff336a71adc -# 56c42500f0d446d2ae64f73be2065d4e -#: ../../source/training/socialisation/run_other_hazards.rst:205 -#: ../../source/training/socialisation/run_other_hazards.rst:525 -msgid "" -"In the |project_name| panel we now see the impact summary. The details are " -"explained below." -msgstr "" -"Pada panel |project_name| kita sekarang bisa melihat ringkasan dari hasil " -"analisis. Detil nya akan dijelaskan dibawah ini." - -# 1f059bb5c6bb49edb1a6e1b90e2e2d9c -#: ../../source/training/socialisation/run_other_hazards.rst:212 -msgid "" -"**General report:** shows estimated number of affected people based on " -"hazard zone and population. It is assumed that all of these people will need " -"to be evacuated. **Hazard zone** divides the results into several categories " -"based on the threshold set in the hazard analysis. In this impact summary,|" -"project_name| divides the affected people into several categories based on " -"MMI classes. **Population** divides the results that shows the count of " -"displaced and fatalities." -msgstr "" -"**Laporan umum:** menunjukkan perkiraan jumlah orang yang terkena dampak " -"berdasarkan zona ancaman dan populasi. Diasumsikan bahwa semua orang ini " -"perlu dievakuasi. **Zona ancaman** membagi hasilnya menjadi beberapa " -"kategori berdasarkan ambang batas yang ditetapkan dalam analisis ancaman. " -"Dalam ringkasan dampak ini, |project_name| membagi orang yang terkena ke " -"dalam beberapa kategori berdasarkan kelas MMI. **Populasi** membagi hasil " -"yang menunjukkan jumlah pengungsi dan korban jiwa." - -# b26c70b18ebc42948aac7493e50cc1ec -# f3a1cccf6570452e85d8f6c3aed0bcae -#: ../../source/training/socialisation/run_other_hazards.rst:214 -#: ../../source/training/socialisation/run_other_hazards.rst:532 -msgid "" -"**Minimum needs:** are calculated numbers of food, water and other products " -"needed by evacuated people on a weekly basis." -msgstr "" -"**Kebutuhan minimum:** adalah hitungan jumlah makanan, air dan produk lain " -"yang dibutuhkan oleh orang yang dievakuasi setiap minggu." - -# 96e4bbe815bd4737b9c3f2849fcf204e -# 00e65b9dcfe74a75b37ef9298036a056 -#: ../../source/training/socialisation/run_other_hazards.rst:218 -#: ../../source/training/socialisation/run_other_hazards.rst:536 -msgid "" -"**Notes and assumptions:** provides details about the input data and any " -"limitations or assumptions in the analysis or report summary. In this " -"example, it explains the total number of people in the analysis area and the " -"source of minimum needs." -msgstr "" -"**Catatan dan asumsi:** memberikan detil mengenai data masukan dan batasan " -"atau asumsi pada hasil analisis. Contohnya, hal tersebut menjelaskan jumlah " -"total penduduk pada area analisis dan sumber kebutuhan minimum." - -# 6754802d9c7e4b06b7c2a35f5481f0bf -# 2ea9290680814d24b5431c2da349da14 -#: ../../source/training/socialisation/run_other_hazards.rst:220 -#: ../../source/training/socialisation/run_other_hazards.rst:538 -msgid "" -"**Detailed minimum needs report:** statistical breakdown of the number of " -"total displaced population and minimum needs based on administrative area." -msgstr "" -"**Laporan kebutuhan minimum terperinci:** rincian statistik jumlah populasi " -"pengungsi dan kebutuhan minimum berdasarkan wilayah administratif." - -# dfeebf4b25e644b084244c4166b808d4 -#: ../../source/training/socialisation/run_other_hazards.rst:222 -#: ../../source/training/socialisation/run_other_hazards.rst:540 -msgid "" -"**Detailed gender and age report:** provides a breakdown of the number of " -"affected people by age (youth, adults and elderly) and gender based on the " -"default world population demographics and calculates the minimum needs for " -"women’s hygiene and pregnant women. If you using aggregation layer, the " -"result will be broken down based on administrative area." -msgstr "" -"**Laporan gender dan usia terperinci:** memberikan rincian jumlah orang yang " -"terkena dampak berdasarkan usia (remaja, orang dewasa dan orang tua) dan " -"jenis kelamin berdasarkan pengaturan bawaan demografi populasi dunia dan " -"menghitung kebutuhan minimum untuk kebersihan wanita dan wanita hamil. Jika " -"Anda menggunakan layer agregasi, hasilnya akan dirinci berdasarkan area " -"administratif." - -# 67928a73b8c342d9b7b39cb309560042 -#: ../../source/training/socialisation/run_other_hazards.rst:228 -msgid "2. Run |project_name| for Tsunami" -msgstr "2. Menjalankan |project_name| untuk Tsunami" - -# 53903ce83d5f4943bc80a60da9b44d42 -#: ../../source/training/socialisation/run_other_hazards.rst:230 -msgid "" -"The 1992 Flores earthquake occurred on December 12, 1992 on the island of " -"Flores in Indonesia. With a magnitude of 7.8, it was the largest and also " -"the deadliest earthquake in 1992. This earthquake triggered another hazard " -"in that area a tsunami in Maumere, Flores." -msgstr "" -"Gempa Flores tahun 1992 terjadi pada tanggal 12 Desember 1992 Pulau Flores " -"di Indonesia. Dengan skala 7.8, gempa ini merupakan gempa terbesar dan juga " -"paling mematikan pada tahun 1992. Gempa ini memicu ancaman lain di daerah " -"itu yaitu tsunami di Maumere, Flores." - -# aee6bcfdf536483498c0757360adde08 -#: ../../source/training/socialisation/run_other_hazards.rst:233 -msgid "" -"Next, we will run another scenario in |project_name| using Tsunami Hazard " -"Model. It is a modelled version of a Magnitude 8.1 earthquake generating a " -"tsunami which impacts Maumere." -msgstr "" -"Selanjutnya, kita akan menjalankan skenario lain di |project_name| " -"menggunakan Model Ancaman Tsunami. Ini adalah versi model gempa berskala 8.1 " -"yang menyebabkan tsunami yang berdampak pada Maumere." - -# d4621e446cf04a8091ed5cc99896c2c8 -#: ../../source/training/socialisation/run_other_hazards.rst:237 -msgid "2.1 Open Project" -msgstr "2.1 Buka Proyek" - -# 1674ef3713a2404d8a0bfb6d53b8d634 -#: ../../source/training/socialisation/run_other_hazards.rst:239 -msgid "" -"Please open the QGIS project file :file:`Maumere.qgs` from the :file:" -"`InaSAFE Training Data > Maumere` folder. Once opened, the project should " -"appear similar to the screenshot below:" -msgstr "" -"Silahkan buka file proyek QGIS :file:`Maumere.qgs` dari :file:`InaSAFE " -"Training Data> Maumere` folder. Setelah terbuka, proyek yang akan muncul " -"akan terlihat seperti gambar di bawah ini:" - -# c1cc69c20d0644b5a2236f4ce9dbe9b5 -#: ../../source/training/socialisation/run_other_hazards.rst:245 -msgid "" -"You will see in the |project_name| dock that keywords for each layer have " -"not yet been defined. As before, we use the :guilabel:`Keyword Creation " -"Wizard` icon to define keyword. For detailed steps, please reference the :" -"ref:`Run Intermediate InaSAFE. ` module" -msgstr "" -"Anda akan melihat di dek |project_name| yang kata kunci untuk setiap " -"layernya belum didefinisikan. Seperti yang sebelumnya, kita menggunakan " -"ikon :guilabel:`Wizard Pembuat Keyword` untuk mendefinisikan kata kunci. " -"Untuk langkah-langkah rincinya, silahkan lihat referensi modul :ref:" -"`Menjalankan InaSAFE Tingkat Menengah. `" - -# 24ee1458021e4fc8bd8ff90edc4ef2dc -#: ../../source/training/socialisation/run_other_hazards.rst:248 -msgid "2.2 Run |project_name|" -msgstr "2.2 Menjalankan |project_name|" - -# b95913c0278145669ed4fc071a887c5f -#: ../../source/training/socialisation/run_other_hazards.rst:255 -msgid "" -"In this scenario we will use Buildings as an exposure and Village Boundary " -"as an aggregation layer. Once your |project_name| form appears the same as " -"the above screenshoot, click :guilabel:`Run` at the bottom right corner in " -"your |project_name| dock." -msgstr "" -"Dalam skenario ini kita akan menggunakan Bangunan sebagai keterpaparan dan " -"Batas Desa sebagai layer agregasi. Setelah form |project_name| Anda muncul " -"sama seperti gambar di atas, klik :guilabel:`Hitung` di pojok kanan bawah di " -"dek |project_name|." - -# f201412e722e4219aba6a01d68e8c530 -#: ../../source/training/socialisation/run_other_hazards.rst:259 -msgid "2.3 Interpret the Result" -msgstr "2.3 Menginterpretasikan Hasil" - -# 2c6bbb790bb345ce8a9aca91ba701582 -#: ../../source/training/socialisation/run_other_hazards.rst:261 -msgid "" -"If everything was set up correctly, you should get a result in the dock area " -"after a few  seconds, and a new map layer should be added to the map. The " -"new impact layer will be called Number of buildings. Let’s explore the " -"result again to help you understand more." -msgstr "" -"Jika semuanya telah diatur dengan benar, Anda akan mendapatkan hasilnya di " -"area dek setelah beberapa detik, dan layer peta baru akan ditambahkan ke " -"peta. Layer dampak baru akan disebut Jumlah Bangunan. Mari telusuri hasilnya " -"lagi untuk membantu Anda memahami hasilnya dengan lebih baik:" - -# 2ae5467066d3482ba30d4059bc0a478a -#: ../../source/training/socialisation/run_other_hazards.rst:265 -msgid "Zoom in to any area you choose" -msgstr "Perbesar pada area manapun yang Anda pilih." - -# 36c732d197c34df898f52c7e194ae3e7 -#: ../../source/training/socialisation/run_other_hazards.rst:267 -msgid "" -"Here we have zoomed in to a location in Maumere. There will be five new " -"different colours generated from |project_name| (light yellow, orange, red, " -"green, and grey)." -msgstr "" -"Di sini kita telah memperbesar lokasi di Maumere. Akan ada lima warna " -"berbeda yang dihasilkan dari |project_name| (kuning muda, oranye, merah, " -"hijau, dan abu-abu)." - -# 7f06c73a94a844468126f937ee5afc79 -#: ../../source/training/socialisation/run_other_hazards.rst:269 -msgid "" -"The red buildings are situated in area where the depth of tsunami inundation " -"is more than 3 metres; the orange buildings are situated in area where the " -"depth of tsunami inundation is between 1.0 and 3 metres; the light yellow " -"are situated in area where the depth of tsunami inundation is 0.1 and 1.0 " -"metres; the green buildings considered dry as they are situated in water " -"less than the threshold of 0.1 metre; and the grey buildings considered not " -"exposed by the hazard." -msgstr "" -"Bangunan merah terletak di daerah dengan kedalaman genangan tsunami lebih " -"dari 3 meter; bangunan oranye terletak di daerah dengan kedalaman genangan " -"tsunami antara 1.0 dan 3 meter; kuning muda terletak di daerah dengan " -"kedalaman genangan tsunami adalah 0,1 dan 1,0 meter; bangunan hijau dianggap " -"kering karena berada di perairan kurang dari ambang batas 0,1 meter; dan " -"bangunan abu-abu dianggap tidak terpapar ancaman." - -# b2b7d1f81a8e407581df66a5881df9db -#: ../../source/training/socialisation/run_other_hazards.rst:274 -msgid "" -"Click **Number of buildings** in the layer list to select it and click :" -"guilabel:`Identify Feature` tool and then click on building to know what " -"attribute of the building." -msgstr "" -"Klik **Jumlah bangunan** pada daftar layer untuk memilihnya dan klik alat :" -"guilabel:`Identifikasi Fitur` dan kemudian klik Bangunan untuk mengetahui " -"isi atribut bangunan." - -# 366c2084a921420bbda4aefc3fd74a49 -#: ../../source/training/socialisation/run_other_hazards.rst:279 -msgid "" -"Here we clicked on one of the red building and find that there is a value of " -"hazard class 'high'. This means that the building is located in an affected " -"area which is predicted to be flooded more than 3 metres." -msgstr "" -"Di sini kita klik salah satu bangunan merah dan temukan bahwa ada nilai " -"kelas ancaman 'tinggi'. Artinya bangunan tersebut berada di daerah yang " -"terkena dampak yang diperkirakan akan tergenang lebih dari 3 meter." - -# 2634497dabe244c98c36c9f441d5264e -#: ../../source/training/socialisation/run_other_hazards.rst:286 -msgid "" -"**General report**: shows estimated number of buildings based on hazard zone " -"and structures. **Hazard zone** divides the results into several categories " -"based on the threshold set in the hazard analysis. In this impact summary, |" -"project_name| divides the impact buildings into four categories: number of " -"building in low hazard zone, number of building in medium hazard zone, " -"number of building in high hazard zone and number of dry buildings (not " -"affected by any tsunami impact). **Structures** divides the results that " -"shows the count of affected, not affected and not exposed buildings." -msgstr "" -"**Laporan umum**: menunjukkan perkiraan jumlah bangunan berdasarkan zona " -"ancaman dan struktur. **Zona ancaman** membagi hasilnya menjadi beberapa " -"kategori berdasarkan ambang batas yang ditetapkan dalam analisis ancaman. " -"Dalam ringkasan dampak ini, |project_name| membagi dampak bangunan menjadi " -"empat kategori: jumlah bangunan di daerah dengan ancaman rendah, jumlah " -"bangunan di zona ancaman sedang, jumlah bangunan di daerah dengan ancaman " -"tinggi dan jumlah bangunan kering (tidak terkena dampak tsunami). " -"**Struktur** membagi hasil yang menunjukkan jumlah bangunan yang terkena " -"dampak, tidak terdampak dan bangunan tidak terpapar." - -# 782168902fa54cc0a08125db667cc27e -#: ../../source/training/socialisation/run_other_hazards.rst:288 -msgid "" -"**Analysis detail**: divides the exposed buildings into several categories " -"based on the building type attribute for each building. In this impact " -"summary, |project_name| breaks down the results into a more detailed report " -"by looking at each type of the building." -msgstr "" -"**Detail analisis:** pembagian bangunan yang terpapar menjadi beberapa " -"kategori berdasarkan atribut bangunan untuk setiap bangunan. Dalam ringkasan " -"ini, InaSAFE memecah hasilnya menjadi laporan yang lebih terperinci dengan " -"melihat setiap jenis bangunan." - -# b0918c68e8eb47f1b5d5dc934ea58e52 -# 04b0aa6d96fa4c48b18670ad5cb87679 -#: ../../source/training/socialisation/run_other_hazards.rst:290 -#: ../../source/training/socialisation/run_other_hazards.rst:397 -#: ../../source/training/socialisation/run_other_hazards.rst:479 -msgid "" -"**Action checklist**: designed to make disaster managers think about what " -"they need to do/discuss when planning for a similar event in the future." -msgstr "" -"**Daftar tindakan:** dirancang untuk membuat para pengelola bencana " -"memikirkan apa yang perlu mereka lakukan/diskusikan saat merencanakan " -"peristiwa serupa di masa depan." - -# b1285556eee44b5e9c4d29ac764c1631 -#: ../../source/training/socialisation/run_other_hazards.rst:292 -msgid "" -"**Notes and assumptions**: provides details about the input data and any " -"limitations or assumptions in the analysis or report summary. In this " -"example, it explains why building are predicted to be inundated, wet and dry." -msgstr "" -"**Catatan dan asumsi:** menyediakan rincian tentang data masukan dan batasan " -"atau asumsi pada ringkasan analisis atau laporan. Dalam contoh ini, bagian " -"ini menjelaskan mengapa bangunan yang terprediksi tergenang, basah, dan " -"kering." - -# d7e83b1c4cc2457a8dd0d4800ebd59cb -# 2affa2bc12e44bfcb074aec60b0a6661 -# 2028f5facec641d5a1268c2558fd8fac -#: ../../source/training/socialisation/run_other_hazards.rst:294 -#: ../../source/training/socialisation/run_other_hazards.rst:401 -#: ../../source/training/socialisation/run_other_hazards.rst:483 -msgid "" -"**Aggregation result**: statistical breakdown of the number of impacted " -"building based on administrative area." -msgstr "" -"**Hasil agregasi**: rincian statistik jumlah bangunan yang terkena dampak " -"berdasarkan wilayah administratif." - -# d83b9c324e7f4bbaabf9e10a83a57c56 -#: ../../source/training/socialisation/run_other_hazards.rst:299 -msgid "" -"**Analysis details (source)**:explanation of where the hazard data, exposure " -"data, aggregation come from." -msgstr "" -"**Rincian analisis (sumber)**: penjelasan sumber data ancaman, data " -"keterpaparan, agregasi berasal." - -# 30984ff0840344549fdb094702663135 -#: ../../source/training/socialisation/run_other_hazards.rst:302 -msgid "" -"The results show the buildings that will be affected by tsunami starting " -"from 1 metre. What if the disaster manager decides that buildings in 80 cm " -"of water are also considered inundated? You can change the water depth " -"threshold to see the result, refer to the :ref:`Run Basic InaSAFE. " -"` module." -msgstr "" -"Hasilnya menunjukkan bangunan yang akan terkena dampak tsunami dimulai dari " -"kedalaman air 1 meter. Bagaimana jika pengelola bencana memutuskan bahwa " -"bangunan di 80 cm air juga dianggap tergenang air? Anda dapat mengubah " -"ambang batas kedalaman air untuk melihat hasilnya, silahkan lihat modul :ref:" -"`Menjalankan InaSAFE Tingkat Dasar. `" - -# 1e7edcb20f3847788a1d6f2b681d87f6 -#: ../../source/training/socialisation/run_other_hazards.rst:304 -msgid "" -"InaSAFE Tsunami Impact Function is very similar with Flood, but due to the " -"force of tsunami waves, the maximum depth of water that would affect people " -"and infrastructure is shallower." -msgstr "" -"Fungsi Dampak Tsunami InaSAFE sangat mirip dengan Banjir, namun karena " -"kekuatan gelombang tsunami, kedalaman air maksimum yang akan mempengaruhi " -"orang dan infrastrukturnya menjadi lebih dangkal." - -# e946c7e21c7945b59265930c89437a0a -#: ../../source/training/socialisation/run_other_hazards.rst:307 -msgid "3. Run |project_name| for Volcano" -msgstr "3. Menjalankan |project_name| untuk Gunung berapi" - -# f305e52f9aab4a2f9fbfc278adc6b15b -#: ../../source/training/socialisation/run_other_hazards.rst:309 -msgid "" -"Indonesia has many volcanoes, and most of them are still active today. In " -"fact, one of the most frequent disasters in Indonesia is volcano eruptions. " -"There are 129 active volcanoes across the country, and it is valuable to " -"know how many people and how much infrastructure is within a certain " -"perimeter of the vent." -msgstr "" -"Indonesia memiliki banyak gunung berapi, dan sebagian besar masih aktif " -"sampai sekarang. Faktanya, salah satu bencana yang paling sering terjadi di " -"Indonesia adalah letusan gunung berapi. Ada 129 gunung api aktif di seluruh " -"Indonesia, dan sangat penting untuk mengetahui berapa banyak orang dan " -"berapa banyak infrastruktur berada dalam batas tertentu dari lubang kepundan " -"gunung api." - -# d407cc9b5ebc46f0973cfa84a2fc0fa4 -#: ../../source/training/socialisation/run_other_hazards.rst:312 -msgid "" -"|project_name| also has an impact function for volcano eruption scenarios. " -"This function can run some type of hazard data. For detail information about " -"the |project_name| volcano hazard function, please look at the :ref:`Hazard " -"Data Section. `" -msgstr "" -"|project_name| juga memiliki fungsi dampak untuk skenario letusan gunung " -"berapi. Fungsi ini bisa menjalankan beberapa jenis data ancaman. Untuk " -"detail informasi tentang fungsi ancaman gunung api |project_name|, silakan " -"lihat di :ref:`Data Ancaman. `" - -# dd8cdcf870fe415c94dfb163f2da4bc8 -#: ../../source/training/socialisation/run_other_hazards.rst:315 -msgid "" -"In this section we will be using the Sinabung volcano hazard from the " -"National Disaster Management Agency (BNPB) as hazard data and building from " -"OpenStreetMap as exposure data. For this run, we will using Impact Function " -"Centric Wizard (IFCW). For more information about IFCW you can refer to :ref:" -"`Key concepts in disaster management planning with InaSAFE. " -"`" -msgstr "" -"Pada bagian ini kita akan menggunakan ancaman gunung berapi Sinabung dari " -"Badan Nasional Penanggulangan Bencana (BNPB) sebagai data ancaman dan " -"bangunan yang berasal dari OpenStreetMap sebagai data keterpaparan. Untuk " -"menjalankan ini, kita akan menggunakan Wizard Fungsi Dampak Terpusat atau " -"Impact Function Centric Wizard (IFCW). Untuk informasi lebih lanjut tentang " -"IFCW, Anda dapat merujuk ke :ref:`Konsep kunci dalam perencanaan " -"penanggulangan bencana dengan InaSAFE. `" - -# aca0f332e9d146c2b736b20270047dbf -#: ../../source/training/socialisation/run_other_hazards.rst:321 -msgid "3.1 Open Project" -msgstr "3.1 Membuka Proyek" - -# 9d4c9445366f4b20b2b79d687a2ce745 -#: ../../source/training/socialisation/run_other_hazards.rst:323 -msgid "" -"Please open a new QGIS project in order to use IFCW to run this project. You " -"new QGIS project should look like this:" -msgstr "" -"Silahkan buka proyek baru pada QGIS agar menggunakan IFCW untuk menjalankan " -"proyek ini. Proyek QGIS Anda seharusnya terlihat seperti ini:" - -# e10213f419cc4b76ae5e9cb0598ad97b -#: ../../source/training/socialisation/run_other_hazards.rst:330 -msgid "3.2 Run |project_name|" -msgstr "3.2 Menjalankan |project_name|" - -# a338b2ad63f543feb453f179f49c36a5 -#: ../../source/training/socialisation/run_other_hazards.rst:332 -msgid "" -"To use the **Impact Function Centric Wizard**, please click :guilabel:" -"`Impact Fuction Centric Wizard` icon." -msgstr "" -"Untuk menggunakan **Wizard Fungsi Dampak Terpusat**, silahkan klik ikon :" -"guilabel:`Wizard Fungsi Dampak Terpusat`." - -# b27cbe8af97d4acc8508e1aae1dd863b -#: ../../source/training/socialisation/run_other_hazards.rst:337 -msgid "" -"After clicking that icon, you will see the following dialogue box appear:" -msgstr "" -"Setelah mengklik ikon tersebut, Anda akan melihat kotak dialog yang muncul:" - -# fc633ecc0f9a466e9ae2471328db2a8c -#: ../../source/training/socialisation/run_other_hazards.rst:342 -msgid "" -"In the box above, there are some fields that help us select the scenario to " -"use. Green fields mean those scenarios are available and ready to run in |" -"project_name|. Grey fields means those scenarios are not available in |" -"project_name| at the moment." -msgstr "" -"Pada kotak di atas, ada beberapa kolom yang membantu kita memilih skenario " -"yang akan digunakan. Kolom berwarna hijau berarti skenario tersebut tersedia " -"dan siap dijalankan di |project_name|. Kolom berwarna abu-abu berarti " -"skenario tersebut tidak tersedia di |project_name| saat ini." - -# c96b593d77b04c88bc669fb81813346f -#: ../../source/training/socialisation/run_other_hazards.rst:345 -msgid "" -"Because we want to run Volcano with building in this session, please click :" -"guilabel:`Field Volcano' and :guilabel: 'Structure`. The resulting dialogue " -"box appears like this:" -msgstr "" -"Karena kita ingin menjalankan Gunung berapi dengan bangunan pada sesi ini, " -"silahkan klik :guilabel:`Kolom Gunung berapi' dan :guilabel:`Struktur`. " -"Kotak dialog yang dihasilkan akan muncul seperti ini:" - -# 4367e79f62ba49a7a9eca8ef0534a80c -#: ../../source/training/socialisation/run_other_hazards.rst:350 -msgid "" -"You can click :guilabel:`Next` and select the geometry types for the hazard " -"and exposure layers, click :guilabel:`Polygon`." -msgstr "" -"Anda bisa klik :guilabel:`Lanjut` dan pilih tipe geometri untuk layer " -"ancaman dan keterpaparan, klik :guilabel:`Poligon`." - -# 97d524f1f13e4bd69311aeafa831013c -#: ../../source/training/socialisation/run_other_hazards.rst:355 -msgid "" -"You can click :guilabel:`Next` and follow the instructions in the IFCW box." -msgstr "" -"Anda dapat mengklik :guilabel:`Lanjut` dan ikuti instruksi pada kotak IFCW." - -# 692ba8cf1e3549d6abee61cffb61599b -#: ../../source/training/socialisation/run_other_hazards.rst:357 -msgid "" -"Hazard Data that we want to use for this scenario can be found in :file:" -"`InaSAFE Training Data > Sinabung > Hazard Data` folder and please select :" -"file:`Sinabung_Hazard_Map_2015_WGS84.shp`." -msgstr "" -"Data ancaman yang ingin kita gunakan untuk skenario ini dapat ditemukan di :" -"file:`InaSAFE Training Data > Sinabung > Hazard Data` dan pilih :file:" -"`Sinabung_Hazard_Map_2015_WGS84.shp`." - -# 5684a9281a8b4fc08ebae78961f454c3 -#: ../../source/training/socialisation/run_other_hazards.rst:359 -msgid "" -"Building Exposure data can be found in :file:`InSAFE Training Data > " -"Sinabung > Exposure Data` folder and please select :file:" -"`Sinabung_buildings_WGS84.shp` ." -msgstr "" -"Data keterpaparan bangunan dapat ditemukan di :file:`InSAFE Training Data > " -"Sinabung > Exposure Data` dan pilih :file:`Sinabung_buildings_WGS84.shp`." - -# 07b10baae97c43939d778cb8663a4e19 -#: ../../source/training/socialisation/run_other_hazards.rst:361 -msgid "" -"There is optional to use aggregation for your analysis, either you load " -"aggregation layer from your own local file or you just aggregate results for " -"the entire analysis windows." -msgstr "" -"Ada pilihan untuk menggunakan batas agregasi untuk analisis Anda, baik Anda " -"memuat layer agregasi dari file lokal Anda sendiri atau Anda menggunakan " -"keseluruhan data untuk jendela analisis." - -# baf81d383ae04839a4fabdba0d27124a -#: ../../source/training/socialisation/run_other_hazards.rst:363 -msgid "" -"The differences between Volcano and Volcanic Ash can be seen in :ref:`Hazard " -"Data Section `, and for detail explanation about type of data you " -"can be found in :ref:`Key concepts in disaster management planning with " -"InaSAFE. `." -msgstr "" -"Perbedaan antara Gunung berapi dan Abu gunung berapi dapat dilihat pada :ref:" -"`Data Ancaman `, dan untuk penjelasan lebih lanjut tentang jenis " -"data yang dapat ditemukan di :ref:`Konsep kunci dalam perencanaan " -"penanggulangan bencana dengan InaSAFE. `." - -# 5c3e5db3e9e14713915a70d81012e85b -#: ../../source/training/socialisation/run_other_hazards.rst:365 -msgid "" -"If you have followed the instruction in IFCW box, before running |" -"project_name| you should see the final form below:" -msgstr "" -"Jika Anda telah mengikuti instruksi di kotak IFCW, sebelum menjalankan |" -"project_name| Anda sebaiknya melihat bentuk akhir di bawah ini:" - -# e740470fc5a3420690599414d29aa441 -#: ../../source/training/socialisation/run_other_hazards.rst:370 -msgid "" -"If your IFCW box looks like the screenshot above, click :guilabel:`Run` and " -"wait for analysis processing until a result box appears." -msgstr "" -"Jika kotak IFCW Anda terlihat seperti gambar di atas, klik :guilabel:" -"`Hitung` dan tunggu proses analisis sampai kotak hasil analisis muncul." - -# 1b83a5f595c64b12a0b6411b9eb3f41a -#: ../../source/training/socialisation/run_other_hazards.rst:376 -msgid "3.3 Interpret the Result" -msgstr "3.3 Menginterpretasi Hasil" - -# 11ddee5a019943d3bb00de0e3f038d3f -#: ../../source/training/socialisation/run_other_hazards.rst:378 -msgid "" -"Once you have finished running the analysis, you will see the result has new " -"layer named “Number of buildings” . This layer will show you which buildings " -"are affected for each hazard zone. There will be four new colours of " -"building generated from |project_name| (light yellow, orange, red, and grey)." -msgstr "" -"Setelah Anda selesai menjalankan analisis, Anda akan melihat hasilnya " -"memiliki layer baru bernama \"Jumlah Bangunan\". Layer ini akan menunjukkan " -"bangunan mana yang terdampak untuk setiap zona ancaman. Akan ada empat warna " -"bangunan baru yang dihasilkan dari |project_name| (kuning muda, oranye, " -"merah, dan abu-abu)." - -# 852ea9599eaa4f62b5531330ef960c25 -#: ../../source/training/socialisation/run_other_hazards.rst:382 -msgid "" -"The light yellow buildings mean these buildings are located in a Low Risk " -"Zone (Risk Zone 1), the orange buildings mean these buildings are located in " -"an Intermediate Risk Zone (Risk Zone 2), red buildings are considered " -"situated in a High Risk Zone (Risk Zone 3) of Sinabung Volcano, and grey " -"buildings considered not exposed by the hazard." -msgstr "" -"Bangunan berwarna kuning muda berarti bangunan-bangunan ini berada di Zona " -"Risiko Rendah (Zona Resiko 1), bangunan oranye berarti bangunan-bangunan ini " -"berada di Zona Risiko Menengah (Zona Resiko 2), bangunan merah dianggap " -"terletak di Zona Risiko Tinggi ( Zona Resiko 3) Gunung Sinabung, dan " -"bangunan abu-abu yang dianggap tidak terkena ancaman." - -# f55f799aea004f5f8c087fd4e9f9aa51 -#: ../../source/training/socialisation/run_other_hazards.rst:387 -msgid "" -"In the |project_name| result box, we now see the impact summary. It is very " -"similar to the |project_name| Dock. Details are explained below." -msgstr "" -"Pada hasil |project_name|, kita sekarang melihat ringkasan dampaknya. Hal " -"tersebut sangat mirip dengan dek |project_name|. Rinciannya dijelaskan di " -"bawah ini." - -# d58ee464f88f461f838ef9ce5d6a2b40 -#: ../../source/training/socialisation/run_other_hazards.rst:393 -msgid "" -"**General report**: shows estimated number of buildings based on hazard zone " -"and structures. **Hazard zone** divides the results into several categories " -"based on the threshold set in the hazard analysis. In this impact summary, |" -"project_name| divides the impacted buildings into three categories for each " -"hazard zone of Sinabung Volcano. **Structures** divides the results that " -"shows the count of affected, not affected and not exposed buildings." -msgstr "" -"**Laporan umum:** menunjukkan perkiraan jumlah bangunan berdasarkan zona " -"ancaman dan strukturnya. **Zona ancaman** membagi hasilnya menjadi beberapa " -"kategori berdasarkan ambang batas yang ditetapkan dalam analisis ancaman. " -"Dalam ringkasan dampak ini, InaSAFE membagi dampak bangunan menjadi tiga " -"kategori berdasarkan zona ancaman Gunung Sinabung. **Struktur** membagi " -"hasil yang menunjukkan jumlah bangunan yang terkena dampak, bangunan yang " -"tidak terdampak, dan bangunan yang tidak terpapar ancaman." - -# 877f2dba7e0847e6b4a4afbe1197215f -# dd02866fb4eb47e2b14920896e80e0a4 -#: ../../source/training/socialisation/run_other_hazards.rst:395 -#: ../../source/training/socialisation/run_other_hazards.rst:477 -msgid "" -"**Analysis detail**: divides the exposed buildings into several categories " -"based on the building type attribute for each building." -msgstr "" -"**Detail analisis**: membagi bangunan yang terpapar ke dalam beberapa " -"kategori berdasarkan atribut tipe bangunan untuk setiap bangunan." - -# b2c90310b8d24194a766f2d6ae4b84fc -# c423113afb984f35b5ca4710efc768b9 -#: ../../source/training/socialisation/run_other_hazards.rst:399 -#: ../../source/training/socialisation/run_other_hazards.rst:481 -msgid "" -"**Notes and assumptions**: provides details about the input data and any " -"limitations or assumptions in the analysis or report summary." -msgstr "" -"**Catatan dan asumsi**: memberikan rincian tentang data masukan dan batasan " -"atau asumsi dalam ringkasan atau laporan analisis." - -# 3f0fd6b0d8144b019d62b0ed815dc5ec -# da1487b9c2374d7a81d2dda166587634 -#: ../../source/training/socialisation/run_other_hazards.rst:403 -#: ../../source/training/socialisation/run_other_hazards.rst:485 -msgid "" -"**Analysis details (source)**: explanation of where the hazard data, " -"exposure data, aggregation come from." -msgstr "" -"**Rincian analisis (sumber)**: penjelasan sumber data ancaman, data " -"keterpaparan, agregasi berasal." - -# f69590d621b44c91a3263e2092040c8a -#: ../../source/training/socialisation/run_other_hazards.rst:405 -msgid "" -"You have now run |project_name| for a volcano scenario using the Impact " -"Function Centric Wizard (IFCW). Quite different than the |project_name| " -"Dock, this tool is designed to help a user run |project_name| more easily " -"without needing to open all the required data one by one in QGIS. IFCW " -"provides precise guidance and detail about what actions should be taken step " -"by step until the scenario is ready to run. This tool is very useful, " -"especially for |project_name| user who are less familiar with QGIS and " -"Spatial Data." -msgstr "" -"Anda sekarang telah menjalankan |project_name| untuk skenario gunung berapi " -"menggunakan Wizard Fungsi Dampak Terpusat atau Impact Function Centric " -"Wizard (IFCW). Cukup berbeda dengan dek |project_name|, alat ini dirancang " -"untuk membantu pengguna menjalankan |project_name| dengan lebih mudah tanpa " -"perlu membuka semua data yang dibutuhkan satu per satu di QGIS. IFCW " -"memberikan panduan dan detail yang tepat tentang tindakan apa yang harus " -"dilakukan langkah demi langkah sampai skenario siap dijalankan. Alat ini " -"sangat berguna, terutama untuk pengguna |project_name| yang kurang familiar " -"dengan QGIS dan data spasial." - -# e3a918ad1f5f4344a26bf57ba683ea79 -#: ../../source/training/socialisation/run_other_hazards.rst:410 -msgid "4. Generic Hazard Impact Function in |project_name|" -msgstr "4. Fungsi Dampak Bencana Umum di |project_name|" - -# f4cb22839cd34e449291af0cf1d09561 -#: ../../source/training/socialisation/run_other_hazards.rst:412 -msgid "" -"|project_name| can run analyses for multiple hazards, using scenarios that " -"we set up based on data availability. These scenarios include seven types of " -"hazards : floods, earthquakes, volcanos, volcanic ash, tsunamis, dam break, " -"and, cyclone. What if our hazard scenario is not included in this list (for " -"example, a land slide or drought). To solve this problem, |project_name| " -"provides a tool called the **Generic Hazard Impact Function** that can run " -"analyses for any hazard not available via a specific Scenario Impact " -"Function." -msgstr "" -"|project_name| dapat menjalankan analisis untuk beberapa ancaman, dengan " -"menggunakan skenario yang kami siapkan berdasarkan ketersediaan data. " -"Skenario ini mencakup tujuh jenis bahaya: banjir, gempa bumi, gunung berapi, " -"abu vulkanik, tsunami, kerusakan bendungan, dan angin topan. Bagaimana jika " -"skenario bahaya kita tidak termasuk dalam daftar ini (misalnya, longsor atau " -"kekeringan tanah). Untuk mengatasi masalah ini, |project_name| menyediakan " -"alat yang disebut **Fugsi Dampak Bencana Umum** yang dapat menjalankan " -"analisis untuk ancaman yang tidak tersedia melalui Fungsi Skenario Dampak " -"tertentu." - -# b6f0ec4ede71456dbd13bb9211e70f38 -#: ../../source/training/socialisation/run_other_hazards.rst:415 -msgid "4.1 Open Project" -msgstr "4.1 Membuka Proyek" - -# 3efd5cb8bd5946e8b4719021bea2954d -#: ../../source/training/socialisation/run_other_hazards.rst:417 -msgid "" -"Next, we will explore this tool using a landslide hazard in Nagekeo, East " -"Nusa Tenggara with building and population data for each scenario. Please " -"open the QGIS project file :file:`Nagekeo.qgs` from the :file:`InaSAFE " -"Training Data > Nagekeo` folder. Once opened, the project should look like " -"the screenshot below:" -msgstr "" -"Selanjutnya, kita akan mengeksplorasi alat ini dengan menggunakan ancaman " -"longsor di Nagekeo, Nusa Tenggara Timur dengan data bangunan dan populasi " -"untuk setiap skenario. Silahkan buka file proyek QGIS :file:`Nagekeo.qgs` " -"dari :file:`InaSAFE Training Data > Nagekeo`. Setelah dibuka, proyek akan " -"terlihat seperti gambar di bawah ini:" - -# 4b4ca9d18e9a488b8dc06ca7352e3e8d -#: ../../source/training/socialisation/run_other_hazards.rst:424 -msgid "" -"In the |project_name| dock, the |project_name| form still appears empty. " -"This means that your hazard and exposure data lacks keywords. Before " -"proceeding, you should define keywords for each dataset in this project." -msgstr "" -"Pada dek |project_name|, formulir |project_name| masih tampak kosong. Ini " -"berarti data ancaman dan keterpaparan Anda tidak memiliki kata kunci. " -"Sebelum melanjutkan proses, Anda harus mendefinisikan kata kunci untuk " -"setiap dataset dalam proyek ini." - -# 275370c6e9d842a4a8c9b1ccb6bc26b8 -#: ../../source/training/socialisation/run_other_hazards.rst:427 -msgid "" -"To define a keyword, please click on the :guilabel:`Keywords Creation " -"Wizard` icon" -msgstr "" -"Untuk menentukan kata kunci, klik ikon :guilabel:`Wizard Pembuat Keyword`" - -# 1c9d5da2cf12454096e6f3d6ce6b3498 -#: ../../source/training/socialisation/run_other_hazards.rst:432 -msgid "" -"and follow the instructions. You can refer to the :ref:`Run Intermediate " -"InaSAFE. ` if you need additional assistance. Once " -"you finish defining keyword for each layer, your |project_name| form should " -"appear like the below screenshot:" -msgstr "" -"dan ikuti instruksinya. Anda bisa merujuk ke :ref:`Menjalankan InaSAFE " -"Tingkat Menengah. ` jika Anda membutuhkan bantuan " -"tambahan. Setelah Anda selesai mendefinisikan kata kunci untuk setiap " -"layer, formulir |project_name| Anda akan muncul seperti gambar di bawah ini:" - -# 62d733b837f14165a25a95dc99683f89 -#: ../../source/training/socialisation/run_other_hazards.rst:439 -msgid "4.2 Run |project_name| for Building" -msgstr "4.2 Menjalankan |project_name| untuk Bangunan" - -# 3cb963f86a4a4e9ead6a7dcdd0b09f43 -#: ../../source/training/socialisation/run_other_hazards.rst:444 -msgid "" -"Your |project_name| Dock now poses the question “In the event of **Landslide " -"Hazard Zone**, how many **buildings** will **be affected**?\" Click :" -"guilabel:`Run` on the bottom right corner in your |project_name| Dock. If " -"everything was set up correctly, you should get a result in the dock area " -"after a few seconds, and a new map layer should be added to the map. The new " -"layer will be named “Number of buildings”." -msgstr "" -"Dek |project_name| Anda sekarang mengajukan pertanyaan \"Jika terjadi **Zona " -"Ancaman Longsor**, berapa **bangunan** yang akan **terpengaruh**?\" Klik :" -"guilabel:`Hitung` di pojok kanan bawah di dek |project_name| Anda. Jika " -"semua sudah diatur dengan benar, Anda akan mendapatkan hasilnya di area dek " -"setelah beberapa detik, dan layer peta baru akan ditambahkan ke peta. Layer " -"baru akan diberi nama \"Jumlah bangunan\"." - -# a1665e38b86b42299feeb3cd46ba47ad -#: ../../source/training/socialisation/run_other_hazards.rst:457 -msgid "Let’s take a look at the new data layer generated from |project_name|:" -msgstr "Mari kita lihat layer data baru yang dihasilkan dari |project_name|." - -# 28d3c686dc02453f81f8282f14e3ca0f -#: ../../source/training/socialisation/run_other_hazards.rst:459 -msgid "Zoom in to an area in the Map Canvas" -msgstr "Perbesar ke area manapun di Kanvas Peta" - -# 6474c47fac1a4e7182e4f011b6f426f2 -#: ../../source/training/socialisation/run_other_hazards.rst:461 -msgid "" -"There will be three new colours generated from |project_name| (red, orange, " -"light yellow and grey)." -msgstr "" -"Akan ada tiga warna baru yang dihasilkan dari |project_name| (merah, oranye, " -"kuning muda dan abu-abu)." - -# e5d0c937d5a74610a485879fa3f4d93a -#: ../../source/training/socialisation/run_other_hazards.rst:463 -msgid "" -"The red buildings are located in a high vulnerability zone, the orange " -"buildings are located in moderate vulnerability zone, light yellow buildings " -"are located in a Low Landslide Vulnerability Zone and the grey buildings are " -"not exposed by the landslide." -msgstr "" -"Bangunan merah berada di zona kerentanan tinggi, bangunan oranye berada di " -"zona kerentanan sedang, bangunan kuning muda terletak di Zona Kerentanan " -"Longsor Rendah dan bangunan abu-abu tidak terpapar oleh tanah longsor." - -# d4438b8bc83f4ab98bbfb33fe48f8a28 -#: ../../source/training/socialisation/run_other_hazards.rst:465 -msgid "" -"Click building affected in the layer list to select it. Next, click the :" -"guilabel:`Identify Feature` tool and then click on a building to view " -"attributes of the building." -msgstr "" -"Klik bangunan yang terdampak pada daftar layer untuk memilihnya. " -"Selanjutnya, klik tombol :guilabel:`Identifikasi Fitur` dan kemudian klik " -"pada sebuah bangunan untuk melihat atribut bangunan tersebut." - -# 987d8318a3d949c4a1ccee98193d62fd -#: ../../source/training/socialisation/run_other_hazards.rst:475 -msgid "" -"**General report**: shows estimated number of buildings based on hazard zone " -"and structures. **Hazard zone** divides the results into several categories " -"based on the threshold set in the hazard analysis. In this impact summary, |" -"project_name| divides the impacted buildings into three categories for each " -"hazard zone of Landslide. **Structures** divides the results that shows the " -"count of affected, not affected and not exposed buildings." -msgstr "" -"**Laporan umum:** menunjukkan perkiraan jumlah bangunan berdasarkan zona " -"ancaman dan strukturnya. **Zona ancaman** membagi hasilnya menjadi beberapa " -"kategori berdasarkan ambang batas yang ditetapkan dalam analisis ancaman. " -"Dalam ringkasan dampak ini, InaSAFE membagi dampak bangunan menjadi tiga " -"kategori berdasarkan zona ancaman tanah longsor. **Struktur** membagi hasil " -"yang menunjukkan jumlah bangunan yang terkena dampak, bangunan yang tidak " -"terdampak, dan bangunan yang tidak terpapar ancaman." - -# 545eb3494eb846f1aa82574b8c73413a -#: ../../source/training/socialisation/run_other_hazards.rst:488 -msgid "4.3 Run |project_name| for Population" -msgstr "4.3 Menjalankan |project_name| untuk Populasi" - -# 5d94505472224e2cae710272543bf9cd -#: ../../source/training/socialisation/run_other_hazards.rst:493 -msgid "" -"Turn off the Buildings Affected by each hazard zone (the layers generated " -"from |project_name| analysis and turn ON the **People** layer. Since we want " -"to look at the number of people who might die or be displaced in a specific " -"area, we also need to turn ON the **Village** layer in QGIS. This layer will " -"be used as an aggregation layer that can show us results grouped by " -"administrative boundary." -msgstr "" -"Matikan layer Bangunan Terdampak oleh setiap zona ancaman (layer dihasilkan " -"dari analisis |project_name| dan nyalakan layer **Orang**. Karena kita ingin " -"melihat jumlah orang yang mungkin meninggal atau tergusur di area tertentu, " -"kita juga perlu menyalakan layer **Desa** di QGIS. Layer ini akan digunakan " -"sebagai layer agregasi yang dapat menunjukkan hasil yang dikelompokkan " -"berdasarkan batas administratif." - -# 3d406e008caf41748c2c305d863952e0 -#: ../../source/training/socialisation/run_other_hazards.rst:498 -msgid "" -"If you forget the steps to define an aggregation layer, refer to the :ref:" -"`Run Intermediate InaSAFE. ` section. Edit the " -"question form in the |project_name| Dock so that it appears similar to the " -"below screenshot:" -msgstr "" -"Jika Anda lupa langkah-langkah untuk menentukan lapisan agregasi, lihat :ref:" -"`Menjalankan InaSAFE Tingkat Menengah. ` Edit " -"formulir pertanyaan pada dek |project_name| sehingga terlihat seperti gambar " -"di bawah ini:" - -# a48206b2360c4d5b9f2fa3fed02102cc -#: ../../source/training/socialisation/run_other_hazards.rst:504 -msgid "Next, click :guilabel:`Run` to start the analysis." -msgstr "Selanjutnya, klik :guilabel:`Hitung` untuk memulai analisis." - -# 1cbc05e0418641af9f8f880a39c8dddf -#: ../../source/training/socialisation/run_other_hazards.rst:507 -msgid "b. Interpret the Result" -msgstr "b. Menginterpretasikan hasil" - -# 0247ad3ab6db4f1da811075d5e6cc117 -#: ../../source/training/socialisation/run_other_hazards.rst:509 -msgid "" -"If everything was set up correctly, you should get a result in the dock area " -"after a few  seconds, and a new map layer should be added to the map. The " -"new impact layer will be called **Number of People**. Let’s explore the " -"result again to help you understand more." -msgstr "" -"Jika semuanya telah diatur dengan benar, Anda harus mendapatkan hasilnya di " -"area dek setelah beberapa detik, dan lapisan peta baru harus ditambahkan ke " -"peta. Layer dampak baru akan disebut **Jumlah Orang**. Mari telusuri " -"hasilnya lagi untuk membantu Anda lebih mengerti." - -# ba61c6e7836d4a33a1925eaf19035788 -#: ../../source/training/socialisation/run_other_hazards.rst:513 -msgid "Zoom in to any area." -msgstr "Perbesar ke area." - -# b3bbe79966004914ad596d48ea68ea47 -#: ../../source/training/socialisation/run_other_hazards.rst:515 -msgid "" -"Select Number of people in the layer list and use the :guilabel:`Identify " -"Feature` tool again to select a pixel (square) in the map canvas." -msgstr "" -"Pilih Jumlah orang dalam daftar layer dan gunakan alat :guilabel:" -"`Identifikasi Fitur` lagi untuk memilih piksel (persegi) pada kanvas peta." - -# 3214111d22454045ab31f61960910955 -#: ../../source/training/socialisation/run_other_hazards.rst:517 -msgid "" -"Here we clicked on the red zone and find that there is a value of hazard " -"class ‘high’. This means that the people is located in affected area which " -"is predicted as high hazard zone." -msgstr "" -"Di sini kita mengklik zona merah dan menemukan bahwa ada nilai kelas ancaman " -"'tinggi'. Artinya masyarakat berada di daerah yang terkena dampak yang " -"diperkirakan sebagai zona ancaman tinggi." - -# 2307146bdc1b43eca54e8958f5ff2778 -#: ../../source/training/socialisation/run_other_hazards.rst:530 -msgid "" -"**General report:** shows estimated number of affected people based on " -"hazard zone and population. It is assumed that all of these people will need " -"to be evacuated. **Hazard zone** divides the results into several categories " -"based on the threshold set in the hazard analysis. **Population** divides " -"the results that shows the count of displaced and fatalities." -msgstr "" -"**Laporan umum:** menunjukkan perkiraan jumlah orang yang terkena dampak " -"berdasarkan zona ancaman dan populasi. Diasumsikan bahwa semua orang ini " -"perlu dievakuasi. **Zona bahaya** membagi hasilnya menjadi beberapa kategori " -"berdasarkan ambang batas yang ditetapkan dalam analisis. **Populasi** " -"membagi hasil yang menunjukkan jumlah pengungsi dan korban jiwa." - -# d95bba2e05dd40ada12cec6e4092c6f1 -#: ../../source/training/socialisation/run_other_hazards.rst:542 -msgid "" -"In the result of |project_name|, Action Checklist and Notes might be " -"unrelated with hazard that we run. For instance, if we run drought hazard " -"the action checklist might have some topics such as how many building " -"closed, or people die or displaced. Those topics are not really related with " -"drought." -msgstr "" -"Dalam hasil |project_name|, Daftar Tindakan dan Catatan mungkin tidak " -"terkait dengan ancaman yang kita jalankan. Misalnya, jika kita menjalankan " -"ancaman kekeringan, daftar periksa tindakan mungkin memiliki beberapa topik " -"seperti berapa banyak bangunan yang ditutup, ataupun orang mati atau " -"terlantar. Topik-topik tersebut tidak benar-benar terkait dengan ancaman " -"kekeringan." - -# 2f02da2d5ea5483a868ed4a4a7596e8c -#: ../../source/training/socialisation/run_other_hazards.rst:546 -msgid "Summary" -msgstr "Ringkasan" - -# cd3cd588e34f4e029aef8b0b289cbcab -#: ../../source/training/socialisation/run_other_hazards.rst:548 -msgid "" -"Congratulation! You have now learned to use most of |project_name|'s " -"functionality. You can run analyses for specific hazard using tools such as " -"the Impact Function Centric Wizard (IFCW) and the Generic Impact Function " -"which will make using |project_name| easier." -msgstr "" -"Selamat! Anda sekarang telah belajar menggunakan sebagian besar " -"fungsionalitas |project_name|'s. Anda dapat menjalankan analisis untuk " -"ancaman spesifik menggunakan alat Wizard Fungsi Dampak Terpusat atau Impact " -"Function Centric Wizard (IFCW) dan Fungsi Dampak Umum yang akan membuat " -"penggunaan |project_name| lebih mudah." - -# b81f3b6f0ead4098ab08aa4909a892bd -#: ../../source/training/socialisation/run_other_hazards.rst:551 -msgid "" -"Now, to become an expert user of |project_name|, try utilising all those " -"tools that you explored in this module using your own scenarios and data, " -"and practice interpreting the results." -msgstr "" -"Sekarang, untuk menjadi pengguna yang mahir menggunakan |project_name|, coba " -"gunakan semua alat yang telah Anda eksplorasi dalam modul ini dengan " -"menggunakan skenario dan data Anda sendiri, dan praktikkan untuk " -"menginterpretasi hasilnya." diff --git a/docs/i18n/id/LC_MESSAGES/training/test_data.po b/docs/i18n/id/LC_MESSAGES/training/test_data.po deleted file mode 100644 index e9ebdecc..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/test_data.po +++ /dev/null @@ -1,184 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 5038adbb257644d2bb9e36e95b46bac8 -#: ../../source/training/test_data.rst:4 -msgid "Training Data" -msgstr "Data Pelatihan" - -# f0c97e942c5a4a68bcb93a845414b14c -#: ../../source/training/test_data.rst:6 -msgid "" -"Example data for use with |project_name| trainings is available for download " -"via :ref:`direct download `, :ref:`Bittorrent Sync " -"`, or :ref:`Docker `." -msgstr "" -"Contoh data yang dapat digunakan untuk pelatihan |project_name| tersedia " -"untuk didownload melalui :ref:`download langsung `, :ref:" -"`Bittorrent Sync `, atau :ref:`Docker `." - -# 1e4e1b5d8bfd49c48aa317a89620429e -#: ../../source/training/test_data.rst:11 -msgid "Direct Download" -msgstr "Download Langsung" - -# 93acc62974794f78ab62cf7a040f2b4d -#: ../../source/training/test_data.rst:13 -msgid "" -"To obtain a specific training dataset go to http://data.inasafe.org and " -"download the package you need." -msgstr "" -"Untuk memperoleh set data pelatihan khusus silahkan ke http://data.inasafe." -"org dan download paket yang anda butuhkan." - -# 04ffef9f0ec14f3ea62d2fe7df831c04 -#: ../../source/training/test_data.rst:19 -msgid "BitTorrent Sync" -msgstr "BitTorrent Sync" - -# a4ffba775c3444eda0ccf3749e72177a -#: ../../source/training/test_data.rst:21 -msgid "" -"The training data can be quite large in size, so if you have a bad internet " -"connection (or want to download everything at once), all of the materials " -"are also available with BitTorrent Sync." -msgstr "" -"Ukuran data pelatihan dapat terlampau besar, jadi jika anda memiliki koneksi " -"internet yang buruk (atau ingin mendownload secara keseluruhan dalam satu " -"kali), semua material juga tersedia dengan BitTorrent Sync." - -# 61733bba5cf34d44aefadb2cb57db6b0 -#: ../../source/training/test_data.rst:23 -msgid "" -"To obtain the training data using BitTorrent Sync, first visit http://www." -"bittorrent.com/sync and download and install the software. Note that it is " -"not necessary to provide your email address." -msgstr "" -"Untuk memperoleh data pelatihan menggunakan BitTorrent Sync, pertama " -"kunjungi http://www.bittorrent.com/sync dan download kemudian install " -"softwarenya. Perlu diketahui bahwa alamat email anda tidak diperlukan." - -# b46918dd1aad4f1a9b3a9fdf4a776cc4 -#: ../../source/training/test_data.rst:25 -msgid "" -"When installation is complete, open BitTorrent Sync. To download the " -"training data to your computer, click on the :guilabel:`Options` button and " -"then click :guilabel:`Enter a key...`" -msgstr "" -"Ketika instalasi sudah selesai, buka BitTorrent Sync. Untuk mendownload data " -"pelatihan pada komputer anda, klik pada tombol :guilabel:`Options` dan " -"kemudian klik :guilabel:`Enter a key...`" - -# f99aa94f70254f2cb8aafddc95643bcf -#: ../../source/training/test_data.rst:30 -msgid "Enter the following key: BSU2UCAVRV7P4CHRYOZGIRQ2VN6CH4JP3" -msgstr "Masukan key berikut ini: BSU2UCAVRV7P4CHRYOZGIRQ2VN6CH4JP3" - -# a792573c36854d80abdfee73616ffd8a -#: ../../source/training/test_data.rst:32 -msgid "" -"After you enter the key you must choose a folder on your computer where you " -"would like to synchronize the files. Create a new folder and select it." -msgstr "" -"Setelah anda memasukan key, anda harus memilih folder pada komputer anda " -"dimana anda ingin menyimpan filenya. Buatlah sebuah folder baru dan pilih " -"folder tersebut." - -# d9875922413c4a2a8edda5884f853679 -#: ../../source/training/test_data.rst:34 -msgid "" -"The files will begin to synchronize with the folder on your computer. It may " -"take awhile to download, depending on the speed of your connection." -msgstr "" -"File-file akan mulai tersinkronisasi dengan folder pada komputer anda. Ini " -"akan membutuhkan waktu untuk mendownloadnya, tergantung pada kecepatan " -"koneksi internet anda." - -# 2396ee15e8884c639cc63fc8fa5ebf2b -#: ../../source/training/test_data.rst:36 -msgid "" -"If you are using Linux the BitTorrent Sync interface will be available in " -"your web browser at http://localhost:8888 after you start the application." -msgstr "" -"Jika anda menggunakan Linux, antarmuka BitTorrent Sync akan tersedia pada " -"web browser pada http://localhost:8888 setelah anda menjalankan aplikasinya" - -# b5c75e6be7e947ba8ba6b0adbba29d83 -#: ../../source/training/test_data.rst:41 -msgid "Using Docker" -msgstr "Menggunakan Docker" - -# 66c9661818dc4abe885bbab836504607 -#: ../../source/training/test_data.rst:42 -msgid "" -"If you are comfortable using `docker `_, you may clone " -"the training data by using the btsync Dockerfile." -msgstr "" -"Jika anda dapat menggunakan `docker `_, anda dapat " -"mennggandakan data pelatihan dengan menggunakan btsync Dockerfile. " - -# 783e1cedfe6440618e6c71fbea37abf0 -#: ../../source/training/test_data.rst:44 -msgid "" -"Copy the `inasafe-infrastructure `_ git repository." -msgstr "" -"Salin repositori `inasafe-infrastructure `_ git " - -# b82763753de640efa2bf02b8199669bd -#: ../../source/training/test_data.rst:48 -msgid "To clone the data files, run ::" -msgstr "Untuk menggandakan file data, jalankan ::" - -# 8848fa5e9dcd46a7b292c6ea3954dcf6 -#: ../../source/training/test_data.rst:53 -msgid "in a shell." -msgstr "dalam sebuah shell." - -# a2e7c3b779154f348fff74ac34a27370 -#: ../../source/training/test_data.rst:55 -msgid "" -"This will automatically start a docker container, download and run " -"Bittorrent Sync with the correct key and synchronize all data to the :file:`/" -"var/docker/volumes/btsync` directory." -msgstr "" -"Secara otomatis kontainer docker akan dijalankan, download dan jalankan " -"Bittorrent Sync dengan key yang tepat dan sinkronisasikan semua data pada " -"direktori :file:`/var/docker/volumes/btsync` " - -# 4d762ad3cddc436ebc7aab92b2da5c92 -#: ../../source/training/test_data.rst:59 -msgid "" -"The directory that docker will synchronize with is configurable by adjusting " -"the DATADIR variable in the :file:`rundocker.sh` script." -msgstr "" -"Direktori dimana docker akan mensinkronisasikan dapat diatur dengan " -"menyesuaikan variabel DATADIR pada script :file:`rundocker.sh`" - -# 91540718de544cbabc6bef1ceae0961b -#: ../../source/training/test_data.rst:61 -msgid "" -"To start a sync container with any other secret run :command:`rundocker.sh` " -"with a KEY added as argument: ::" -msgstr "" -"Untuk memulai sinkronisasi silahkan jalankan perintah :command:`rundocker." -"sh` dengan sebuah KEY yang ditambahkan sebagai argumen: ::" diff --git a/docs/i18n/id/LC_MESSAGES/training/tot/501_adult_learning.po b/docs/i18n/id/LC_MESSAGES/training/tot/501_adult_learning.po deleted file mode 100644 index e3febee3..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/tot/501_adult_learning.po +++ /dev/null @@ -1,1809 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# c0d37e22b68047a5b8a145223531d576 -#: ../../source/training/tot/501_adult_learning.rst:2 -msgid "Module 1: Adult Learning" -msgstr "Modul 1:Pembelajaran Orang Dewasa" - -# b246d90016bf4e12b57c11be9f91f879 -#: ../../source/training/tot/501_adult_learning.rst:5 -msgid "Overview" -msgstr "Gambaran umum" - -# a67516eabfa44ee3910c10d9b730e3a2 -#: ../../source/training/tot/501_adult_learning.rst:8 -msgid "Basic Competency" -msgstr "Kompetensi Dasar" - -# 29e2cb2004ea4591aa3549472c27602d -#: ../../source/training/tot/501_adult_learning.rst:9 -msgid "Master how to implement adult learning" -msgstr "Menguasai cara melaksanakan pembelajaran orang dewasa" - -# 7d5883f35f834b6d8bd36e5f082ed45e -#: ../../source/training/tot/501_adult_learning.rst:12 -msgid "Indicators" -msgstr "Indikator" - -# afba6f82f1634ddbbad0b6a9c7b80067 -#: ../../source/training/tot/501_adult_learning.rst:13 -msgid "Understand the principles of adult learning" -msgstr "Menjelaskan prinsip pembelajaran orang dewasa " - -# 4b73f414ecc641c5ba54d213d6cc82e3 -#: ../../source/training/tot/501_adult_learning.rst:14 -msgid "Analyzing the characteristics of adult learning" -msgstr "Menganalisis karakteristik pembelajaran orang dewasa" - -# c20c05f8933841e5acfa8151669dbf5a -#: ../../source/training/tot/501_adult_learning.rst:15 -msgid "" -"Determining strategies, teaching methods or techniques that apply adult " -"learning" -msgstr "" -"Mengidentifikasi strategi, metode pembelajaran atau teknik yang digunakan " -"dalam pembelajaran orang dewasa" - -# 2a2014c4b2024a2bba3b2567898f02c5 -#: ../../source/training/tot/501_adult_learning.rst:17 -msgid "Evaluating adult learning" -msgstr "Mengevaluasi pembelajaran orang dewasa" - -# 5e1dcef926cd4898b962389710723fc9 -#: ../../source/training/tot/501_adult_learning.rst:20 -msgid "Materials" -msgstr "Materi" - -# 0a30260c702d42a19e85ba3acc5a650e -#: ../../source/training/tot/501_adult_learning.rst:21 -msgid "**Adult Learning**" -msgstr "**Pembelajaran Orang Dewasa**" - -# 2123022bf24c4452a4df4dca5e3435d7 -#: ../../source/training/tot/501_adult_learning.rst:23 -msgid "Principles of adult learning" -msgstr "Prinsip pembelajaran orang dewasa" - -# abe0d455b34442c8b49a152203c8520c -#: ../../source/training/tot/501_adult_learning.rst:24 -msgid "Characteristics of adult learning" -msgstr "Karakteristik pembelajaran orang dewasa" - -# 057b4dc9be334404ba55761ed1ad6ff6 -#: ../../source/training/tot/501_adult_learning.rst:25 -msgid "Strategies, teaching methods or techniques that apply in adult learning" -msgstr "Startegi, metode, atau teknik pembelajaran orang dewasa" - -# a07b777f58ef4fd2a2e0b10bb7ff3027 -#: ../../source/training/tot/501_adult_learning.rst:26 -msgid "Adult learning evaluation" -msgstr "Evaluasi pembelajaran orang dewasa" - -# f0acae09172f48fc9323bd0cfbfcbaf7 -#: ../../source/training/tot/501_adult_learning.rst:29 -msgid "Learning Activities" -msgstr "Kegiatan Pembelajaran" - -# e0d23ad1e6ca42a4bb64d18a9196aca8 -#: ../../source/training/tot/501_adult_learning.rst:31 -msgid "**1. Opening and workshop information**" -msgstr "**1. Pembukaan dan informasi lokakarya**" - -# c619c91282934e059aebdae89b49b47e -#: ../../source/training/tot/501_adult_learning.rst:33 -msgid "Time: 10 minutes Material: Slide PPT Activity:" -msgstr "Waktu: 10 menit Material: Slide PPT Aktivitas:" - -# a5e8df8706af43bc9f29a21e8c27d8ca -#: ../../source/training/tot/501_adult_learning.rst:37 -msgid "Facilitator welcomes participants to the training; opening invocation" -msgstr "Fasilitator mengucapkan selamat datang di pelatihan dan doa pembukaan" - -# 556db0245dc74cbebd41e0d41dc6191a -#: ../../source/training/tot/501_adult_learning.rst:38 -msgid "Information on code of conduct during training" -msgstr "Informasi tata tertib pelatihan" - -# fc6dc14b820946d19f21b997cadc1a74 -#: ../../source/training/tot/501_adult_learning.rst:39 -msgid "Facilitator explains the topics and goals of session one" -msgstr "Fasilitator menjelaskan topik dan tujuan sesi satu" - -# 99c5b7832b834f93ba92365c2aebb16b -#: ../../source/training/tot/501_adult_learning.rst:41 -msgid "**2. QA Session about Adult Learning Characteristic**" -msgstr "" -"**2. Sesi Tanya Jawab tentang Karakteristik Pembelajaran Orang Dewasa**" - -# d00e7d192bf94941a9c8b3251af81945 -#: ../../source/training/tot/501_adult_learning.rst:43 -msgid "Time: 25 minutes Material: Slide PPT Activity:" -msgstr "Waktu: 25 menit Material: Slide PPT Aktivitas:" - -# ae09c5abba444d4383740536f8e39b05 -#: ../../source/training/tot/501_adult_learning.rst:47 -msgid "" -"Facilitator puts a question about the definition and characteristics of an " -"adult" -msgstr "Fasilitator mengajukan pertanyaan tentang pengertian ciri orang dewasa" - -# 361b650427814e1d8c3b92e1da4aa9ba -#: ../../source/training/tot/501_adult_learning.rst:49 -msgid "Facilitator explains the definition of adult learning" -msgstr "Fasilitator menjelaskan pengertian pembelajaran orang dewasa" - -# 4cfd383e5d1b4f79adc5924ffa935778 -#: ../../source/training/tot/501_adult_learning.rst:50 -msgid "" -"Facilitator puts a question about adult learning characteristics and " -"principles." -msgstr "" -"Fasilitator mengajukan pertanyaan karakteristik dan prinsip pembelajaran " -"orang dewasa." - -# ed0f91a8171244d68fb33b6153f171c2 -#: ../../source/training/tot/501_adult_learning.rst:53 -msgid "**3. Group Discussion: Adult Learning Strategy**" -msgstr "** 3. Diskusi Kelompok: Strategi Pembelajaran Orang Dewasa**" - -# fa2ff73579c142a2bde81a7aa16dd7ab -#: ../../source/training/tot/501_adult_learning.rst:55 -msgid "Time: 25 minutes Material: Plano Paper Activity:" -msgstr "Waktu: 25 menit Material: Kertas Plano Aktivitas:" - -# 8c9625582eee4868a9ccf6695c8f4e1a -#: ../../source/training/tot/501_adult_learning.rst:59 -msgid "" -"Facilitator asks participants to each count 1 to 4 one after another and " -"divides them into 4 groups. Those mentioning same number form one group." -msgstr "" -"Fasilitator mengajak peserta untuk berhitung 1 sampai 4 satu demi satu dan " -"membaginya menjadi 4 kelompok. Mereka menyebutkan bentuk nomor yang sama " -"satu kelompok." - -# 67af0101697b4a2d8a35581405f8d3cd -#: ../../source/training/tot/501_adult_learning.rst:62 -msgid "Each group elects its chief and secretary" -msgstr "Setiap kelompok memilih ketua kelompok dan sekretaris" - -# 9296a109b6f74fc596b97dc7ba132cb3 -#: ../../source/training/tot/501_adult_learning.rst:63 -msgid "" -"The chief presides at discussion on adult learning strategies, the outcome " -"of which is written down on flipchart paper by the secretary." -msgstr "" -"Ketua kelompok memimpin diskusi strategi pembelajaran orang dewasa dan hasil " -"diskusinya dituliskan pada kertas plano oleh sekretaris." - -# c09c6264a89d455b808d18db982f652f -#: ../../source/training/tot/501_adult_learning.rst:66 -msgid "**4. Group Presentation**" -msgstr "**4. Presentasi Kelompok**" - -# ddb3994674734b2c88e7aef048178b63 -#: ../../source/training/tot/501_adult_learning.rst:68 -msgid "Time: 20 minutes Material: Slide PPT/Plano Paper Activity:" -msgstr "Waktu: 20 menit Material: Slide PPT/Kertas Plano Aktivitas:" - -# 63e2ebc58f9f491da31c9e4a52b86325 -#: ../../source/training/tot/501_adult_learning.rst:72 -msgid "" -"Facilitator asks the chief of each group to move forward and take part in a " -"draw to decide which group is responsible as presenter." -msgstr "" -"Fasilitator meminta seluruh ketua kelompok maju ke depan dan melakukan " -"undian. Kelompok yang paling kalah menjadi presenter." - -# 4fc839425d8f479e8bac4ade7c328279 -#: ../../source/training/tot/501_adult_learning.rst:74 -msgid "" -"Facilitator asks other groups to put questions or give comments to the " -"presenter group; Facilitator leads the Q&A session" -msgstr "" -"Fasilitator meminta kelompok lain untuk mengajukan pertanyaan atau komentar " -"kepada kelompok presenter; Fasilitator memfasilitasi tanya-jawab" - -# 169b80eb4fc74bbd99c4164465e2cfca -#: ../../source/training/tot/501_adult_learning.rst:76 -msgid "Facilitator mentions adult learning strategies not yet mentioned." -msgstr "" -"Fasilitator melengkapi strategi pembelajaran orang dewasa yang belum " -"disebutkan." - -# 7ea543b7d14a4747936dacca751bbcd3 -#: ../../source/training/tot/501_adult_learning.rst:78 -msgid "**5. Pair Discussion**" -msgstr "**5. Diskusi Berpasangan**" - -# c65a02661758474aa0a6e9b96c233219 -#: ../../source/training/tot/501_adult_learning.rst:80 -msgid "Time: 20 minutes Material: HVS Paper Activity:" -msgstr "Waktu: 20 menit Material: Kertas HVS Aktivitas:" - -# 9e390fe272ac402da484b5d47043ab3c -#: ../../source/training/tot/501_adult_learning.rst:84 -msgid "Facilitator asks participants to find a partner" -msgstr "Fasilitator meminta peserta untuk berpasangan" - -# 4bcbf14eb89c4c01980ed2388bc043b8 -#: ../../source/training/tot/501_adult_learning.rst:85 -msgid "" -"Each group of two is asked to discuss how to evaluate adults (adult earning " -"evaluation)" -msgstr "" -"Setiap pasangan diminta mendiskusikan bagaimana sebaiknya mengevaluasi orang " -"dewasa (evaluasi pembelajaran orang dewasa)" - -# b4ae61959ed44feabdb22347a7d126fd -#: ../../source/training/tot/501_adult_learning.rst:87 -msgid "Result of discussion is displayed before the class" -msgstr "Hasil diskusi pasangan dipajang di depan kelas" - -# 94b3e3d2bde0446fad5d46de8a578f1c -#: ../../source/training/tot/501_adult_learning.rst:88 -msgid "" -"With the sound of music as the background, facilitator randomly throws a " -"small ball at a participant who will then throw it to another group. The " -"group who is in possession of the ball when the music stops will become " -"presenter." -msgstr "" -"Dengan menggunakan musik sebagai latar belakang, fasilitator memilih acak " -"dengan melempar bola kecil ke peserta, peserta yang menerima bola diminta " -"melemparkan ke kelompok lain. Ketika musik berhenti, kelompok dari peserta " -"yang menerima bola menjadi presenter" - -# 40aeef56d04a425fac3c6e403b9988bc -#: ../../source/training/tot/501_adult_learning.rst:92 -msgid "" -"Facilitator asks other groups to put questions or give comments to the " -"presenter. Facilitator leads the Q&A session." -msgstr "" -"Fasilitator meminta kelompok lain untuk mengajukan pertanyaan atau komentar " -"kepada kelompok presenter. Fasilitator memfasilitasi tanya-jawab" - -# 936a0041eb654785b112fbbe8965df20 -#: ../../source/training/tot/501_adult_learning.rst:95 -msgid "Facilitator further explains adult learning evaluation" -msgstr "" -"Fasilitator melengkapi penjelasan tentang evaluasi pembelajaran orang dewasa" - -# 306a3a41cc1c4806a9895241dde9f9aa -#: ../../source/training/tot/501_adult_learning.rst:97 -msgid "**6. Reflection and Closing**" -msgstr "**6. Refleksi dan Penutupan**" - -# 4980ff6e0f304aedba1665305ebcf12b -#: ../../source/training/tot/501_adult_learning.rst:99 -msgid "Time: 5 minutes Material: - Activity:" -msgstr "Waktu: 5 menit Material: - Aktivitas:" - -# 7bc7848f858b4353886d7a0fc01c2efc -#: ../../source/training/tot/501_adult_learning.rst:103 -msgid "" -"Facilitator asks one of the participants to reflect on the proceeding of the " -"first session." -msgstr "" -"Fasilitator meminta salah satu peserta untuk melakukan refleksi pelaksanaan " -"sesi pertama." - -# 88b7ee73e4a640f9b4a02ce13b90ae0a -#: ../../source/training/tot/501_adult_learning.rst:107 -msgid "Reading Material" -msgstr "Bahan Bacaan" - -# f7918881872f4f6cacd19929eb241360 -#: ../../source/training/tot/501_adult_learning.rst:110 -msgid "Introduction" -msgstr "Pengantar" - -# afa35ececde9415481782eda7190e1fe -#: ../../source/training/tot/501_adult_learning.rst:112 -msgid "" -"The participants of the training in Scenario Development for Contingency " -"Planning using OpenStreetMap (OSM) and QGIS/ |project_name| software are " -"adults. Their learning characteristics are unique and different from those " -"of children. As such, it is crucial that trainers learn about adult learning " -"characteristics. The understanding of adult learning characteristics is " -"needed to determine compatible and effective training strategies for " -"training participants." -msgstr "" -"Peserta pelatihan/diklat Pengembangan Skenario untuk Rencana Kontijensi " -"dengan menggunakan OpenStreetMap (OSM) dan QGIS/InaSafe adalah orang dewasa. " -"Mereka memiliki karakteristik belajar yang khas dan berbeda dengan anak-" -"anak. Untuk itu pelatih perlu mempelajari karakteristik belajar orang " -"dewasa. Pemahaman terhadap karakteristik belajar orang dewasa ini diperlukan " -"untuk dapat memilih strategi pelatihan yang sesuai dan efektif bagi peserta " -"pelatihan." - -# 44fc779f34b74c8db237b9384542b31c -#: ../../source/training/tot/501_adult_learning.rst:120 -msgid "" -"Adult Learning or Education is known as Andragogy, the antonym of Pedagogy " -"(children education). The term andragogy is derived from latin words Andro " -"(Adult) and agogos which means to lead or guide, hence the term andragogy " -"can be defined as the science of how to lead or guide adults, in other " -"words: the science of teaching adults." -msgstr "" -"Pembelajaran atau Pendidikan Orang Dewasa dikenal dengan istilah Andragogi, " -"sebagai lawan dari pedagogi (pendidikan anak-anak). Andragogi berasal dari " -"bahasa latin Andro yang berarti orang dewasa (Adult) dan agogos yang berarti " -"memimpin atau membimbing. Jadi andragogi adalah ilmu bagaimana memimpin atau " -"membimbing orang dewasa atau ilmu mengajar orang dewasa." - -# 98dd2837c05948179edacdd008f022f2 -#: ../../source/training/tot/501_adult_learning.rst:127 -msgid "" -"Basically education is a process of facilitating a person to search and find " -"the knowledge needed in life through learning, rendering all human " -"activities potential to be used as part of learning process. Andragogy " -"strategy stimulates adults to engage in the process of searching and finding " -"the knowledge they need in life. Adults learn in a continuous way from their " -"experience." -msgstr "" -"Pada dasarnya, pendidikan adalah proses memfasilitasi seseorang untuk " -"mencari dan menemukan ilmu pengetahuan yang dibutuhkan dalam kehidupan " -"melalui proses belajar, sehingga semua kegiatan manusia memiliki potensi " -"yang dipergunakan untuk belajar. Andragogi menstimulasi orang dewasa agar " -"mampu melakukan proses pencarian dan penemuan ilmu pengetahuan yang mereka " -"butuhkan dalam kehidupan. Belajar orang dewasa dilakukan secara berlanjut " -"dari pengalaman kehidupan." - -# 9ea1c9017be042f6bd0f717f45bbeb85 -#: ../../source/training/tot/501_adult_learning.rst:135 -msgid "1. Adult Learning Characteristics" -msgstr "**1. Karakteristik belajar orang dewasa**" - -# a756d240d02d49ed8945c4216fb62493 -#: ../../source/training/tot/501_adult_learning.rst:137 -msgid "" -"Adult education is an endeavor aimed at self development made by individuals " -"without legal forces, without making this endeavor their main activity " -"(Reeves, Fansler, and Houle in Supriyanto, 2007). According to UNESCO " -"(Townsend Coles 1977 in Lanundi (1982), adult education is defined as the " -"entire body of organized educational processes, whatever the content, level " -"and method, whether formal or otherwise, whether they prolong or replace " -"initial education in schools, colleges and universities as well as in " -"apprenticeship, whereby persons regarded as adult by the society to which " -"they belong develop their abilities, enrich their knowledge, improve their " -"technical or professional qualifications and bring about changes in their " -"attitudes or behavior in the twofold perspective of full personal " -"development and participation in balanced and independent social, economic " -"and cultural development. Meanwhile, according to Bryson in Supriyanto " -"(2007) Adult education comprises all educational activities in which adults " -"engage in their daily life using only a part of their time and energy in " -"order to gain additional intellectual knowledge." -msgstr "" -"Pendidikan orang dewasa adalah suatu usaha yang ditujukan untuk pengembangan " -"diri yang dilakukan oleh individu tanpa paksaan legal, tanpa usaha " -"menjadikan bidang utama kegiatannya (Reeves, Fansler, dan Houle dalam " -"Supriyanto, 2007). Menurut UNESCO (Townsend Coles 1977 dalam Lanundi (1982), " -"Pendidikan orang dewasa adalah keseluruhan proses pendidikan yang " -"diorganisasikan apa pun isi, tingkatan, metodenya, baik formal atau tidak, " -"yang melanjutkan maupun menggantikan pendidikan semula di sekolah, akademi " -"dan universitas serta latihan kerja, yang membuat orang yang dianggap dewasa " -"oleh masyarakat mengembangkan kemampuannya, memperkarya pengetahuannya, " -"meningkatkan kualifikasi teknis atau profesuonalnya, dan mengakibatkan " -"perubahan pada sikap dan perilakunya dalam perspektif rangkap perkembangan " -"pribadi secara utuh dan partisipasi dalam pengembangan sosial, ekonomi, dan " -"budaya yang seimbang dan bebas. Sedangkan menurut Bryson dalam Supriyanto " -"(2007) Pendidikan orang dewasa adalah semua aktivitas pendidikan yang " -"dilakukan oleh orang dewasa dalam kehidupan sehari-hari yang hanya " -"menggunakan sebagian waktu dan tenaganya untuk mendapatkan tambahan " -"itelektual." - -# 1ef12c80f6854caf84c59b00bf9a3686 -#: ../../source/training/tot/501_adult_learning.rst:162 -msgid "The definition above shows that:" -msgstr "Definisi di atas menunjukkan bahwa:" - -# d3c59a1da8c44d9ebafd3dd7fa4a989f -#: ../../source/training/tot/501_adult_learning.rst:157 -msgid "Adults are normally capable of self-directing," -msgstr "Orang dewasa memiliki kemampuan mengarahkan diri sendiri." - -# 72222f21f393402bb5417186d0932d91 -#: ../../source/training/tot/501_adult_learning.rst:158 -msgid "Adults have varied experiences," -msgstr "Orang dewasa memiliki beragam pengalaman," - -# 3a4e42c1259d4110b9e7d0f060dbe27b -#: ../../source/training/tot/501_adult_learning.rst:159 -msgid "" -"Adults are prepared to learn as a consequence of their position in " -"transition of development," -msgstr "" -"Orang dewasa dipersiapkan untuk belajar sebagai konsekuensi dari posisi " -"mereka dalam transisi pembangunan," - -# e2976da0b81d4cb9b7b3e96f48f5f1b6 -#: ../../source/training/tot/501_adult_learning.rst:161 -msgid "Adults prefer problem-centerd or performance-centered learning." -msgstr "" -"Orang dewasa lebih menyenangi belajar yang bersifat *problem-centered* atau " -"*performance-centered*." - -# a95635e2f7d640d8b95319cb042b4ead -#: ../../source/training/tot/501_adult_learning.rst:162 -msgid "The following are complete characteristics of adults:" -msgstr "Karakteristik belajar orang dewasa dapat dirumuskan sebagai berikut:" - -# c2641e0b7f3d434792d769e9a202a748 -#: ../../source/training/tot/501_adult_learning.rst:164 -msgid "Adults have the ability to self-direct." -msgstr "Orang dewasa memiliki kemampuan mengarahkan diri sendiri." - -# 6f3f7c0c5f454b0687d5bd9ee2a5563b -#: ../../source/training/tot/501_adult_learning.rst:165 -msgid "" -"Adults have a lot of experience which functions as learning process for them." -msgstr "" -"Orang dewasa mepunyai pengalaman yang banyak dan fungsi pengalaman bagi " -"orang dewasa sebagai sumber belajar." - -# 37f417b66f154efbbe818654c3c186eb -#: ../../source/training/tot/501_adult_learning.rst:166 -msgid "" -"Adults are prepared to learn everything they need to learn; their " -"experience is built from problem solving or finding solutions to daily tasks." -msgstr "" -"Orang dewasa siap mempelajari sesuatu yang ia perlukan dan pengalaman " -"terbangun dari pemecahan masalah atau menyelesaikan tugas sehari-hari." - -# 299e0f7064104a24a4b811f2c1778c21 -#: ../../source/training/tot/501_adult_learning.rst:168 -msgid "" -"Orientation of learning: Education is a development process of self ability; " -"knowledge and skills are applied for a better life. Learning orientation is " -"focused on activities." -msgstr "" -"Orientasi belajar: Pendidikan merupakan suatu proses pengembangan kemampuan " -"diri, ilmu dan keterampilan akan diterapkan untuk mencapai kehidupan yang " -"lebih baik, orientasi belajar terpusat pada kegiatan" - -# 1be6a4f7235b48918f06510d42f05adc -#: ../../source/training/tot/501_adult_learning.rst:172 -msgid "" -"The characteristics of adult learning according to Soedomo (1989) in " -"Supriyadi (2007):" -msgstr "" -"Ciri-ciri belajar orang dewasa menurut Soedomo (1989) dalam Supriyadi (2007) " -"adalah:" - -# a8c2376e6c704c48b0c6854e054b8bcb -#: ../../source/training/tot/501_adult_learning.rst:175 -msgid "Adult learning facilitates exchanges of opinions, demands and values" -msgstr "Memungkinkan timbulnya pertukaran pendapat, tuntutan, dan nilai-nilai" - -# c74ec377100345e9b36634ccf6cb5062 -#: ../../source/training/tot/501_adult_learning.rst:176 -msgid "It facilitates a two-way communication" -msgstr "Memungkinkan terjadinya komunikasi timbal balik" - -# 476093a727704a5dbdfef1fdadec2e81 -#: ../../source/training/tot/501_adult_learning.rst:177 -msgid "Learning atmosphere expected is one that is fun and challenging" -msgstr "" -"Suasana belajar yang diharapkan adalah suasana yang menyenangkan dan " -"menantang" - -# 08e405b52e114671a84c8a8631f68e7f -#: ../../source/training/tot/501_adult_learning.rst:178 -msgid "It prioritizes the roles of learning participants" -msgstr "Mengutamakan peran peserta didik" - -# 1673f17e616f4a0fb8ccf25e37da6620 -#: ../../source/training/tot/501_adult_learning.rst:179 -msgid "Adults learn when their opinion is respected" -msgstr "Orang dewasa akan belajar jika pendapatnya dihormati" - -# cc7a9a7668aa4709b01b2c58dc8b7ee5 -#: ../../source/training/tot/501_adult_learning.rst:180 -msgid "Adults learn in a unique way" -msgstr "Belajar orang dewasa bersifat unik" - -# 3f60691b46a64d2285c839bba2da9825 -#: ../../source/training/tot/501_adult_learning.rst:181 -msgid "There needs to be a trust between mentor and learners" -msgstr "Perlu adanya saling percaya antara pembimbing dan peserta didik" - -# 227c75bf1d7840ecb7f79bdba9daed36 -#: ../../source/training/tot/501_adult_learning.rst:182 -msgid "Opinions are generally varied among adults" -msgstr "Orang dewasa umumnya mempunyai pendapat yang berbeda" - -# 8077f92100a74d568d18addee63a2b2a -#: ../../source/training/tot/501_adult_learning.rst:183 -msgid "Adults have varied intelligence" -msgstr "Orang dewasa memiliki kecerdasan yang beragam" - -# a3bbc044cf674c8088f26eec4d9592c2 -#: ../../source/training/tot/501_adult_learning.rst:184 -msgid "Various learning methods may emerge" -msgstr "Kemungkinan terjadinya berbagai cara belajar" - -# 433223f294d64297b764262459801194 -#: ../../source/training/tot/501_adult_learning.rst:185 -msgid "Adults learn to know their strong points and shortcomings" -msgstr "Orang dewasa belajar ingin mengetahui kelebihan dan kekurangannya" - -# 79de4abfeeda4c4689703b02eb895bd9 -#: ../../source/training/tot/501_adult_learning.rst:186 -msgid "Learning orientation for adults is focused on real life" -msgstr "Orientasi belakar orang dewasa terpusat pada kehidupan nyata" - -# 61128e98ac1c46e98211e15ad53b2369 -#: ../../source/training/tot/501_adult_learning.rst:187 -msgid "Adults self--motivate" -msgstr "Motivasi dari dirinya sendiri" - -# 6e641f9ae62b42f899f85f8f7ef7394b -#: ../../source/training/tot/501_adult_learning.rst:189 -msgid "The characteristics of adult learning can be elaborated as follows:" -msgstr "Karakteristik belajar orang dewasa dapat dirumuskan sebagai berikut:" - -# a4fa1935ba6a428baa769d1f42ca8ab7 -#: ../../source/training/tot/501_adult_learning.rst:191 -msgid "" -"Adults learn because of demands in their work, for self-development or the " -"desire to enhance their role. In contrast with children who tend to receive " -"learning material conveyed by their teacher, adults learn something when it " -"meets their work demands, is crucial for self-development and their role " -"enhancement. To this end, in adult learning, it is important to explain to " -"adults taking part in learning process the relations between material " -"presented and the demands in their work, roles and their needs of self " -"development." -msgstr "" -"Orang dewasa belajar karena adanya tuntutan tugas, tuntutan perkembangan " -"atau keinginan peningkatan peran. Berbeda dengan anak-anak yang cenderung " -"menerima materi pelajaran yang disampaikan oleh guru, orang dewasa akan " -"belajar manakala pembelajaran ini dapat memenuhi tuntutan tugas, tuntutan " -"perkembangan, dan tuntutan akibat peningkatan peran. Karenanya dalam " -"pembelajaran orang dewasa perlu dijelaskan kaitan antara materi dengan " -"tuntutan tugas, peran, dan tuntutan perkembangan mereka." - -# d924e23ce2a544729ffe90e300981a94 -#: ../../source/training/tot/501_adult_learning.rst:199 -msgid "" -"Adults prefer to learn things that are practical, can immediately be applied " -"and bring benefits in their life. Adults generally have rich theoretical " -"knowledge, hence the needs to have learning materials for adults that are " -"practical and applicable." -msgstr "" -"Orang dewasa suka mempelajari sesuatu yang praktis, dapat langsung " -"diterapkan, dan bermanfaat dalam kehidupannya. Orang dewasa kebanyakan telah " -"kaya dengan pengetahuan-pengetahuan teoritis. Karenanya materi pelatihan " -"orang dewasa sebaiknya dipilih yang praktis dan dapat diterapkan dalam " -"kehidupannya." - -# 7ffd3229407940aaa82517a3bce2e1a0 -#: ../../source/training/tot/501_adult_learning.rst:203 -msgid "" -"In the process of learning, adults want to be treated as a mature person/ to " -"be respected." -msgstr "" -"Orang dewasa dalam proses belajar ingin diperlakukan sebagai orang dewasa/" -"dihargai" - -# e62e038e50904950a7311c4a0de33afe -#: ../../source/training/tot/501_adult_learning.rst:205 -msgid "" -"Adults have rich experience and insight and learn new things based on their " -"experience. Every adult person generally has a lot of experience especially " -"in the field s/he has been focusing on. When engaging adults in learning new " -"things, it is better to build on their experience." -msgstr "" -"Orang dewasa kaya pengalaman dan berwawasan luas, mempelajari sesuatu yang " -"baru berdasar pengalamannya. Setiap orang dewasa umumnya memiliki pengalaman " -"yang sangat luas utamanya dalam bidang yang ditekuninya. Sebaiknya cara " -"mempelajari sesuatu yang baru dimulai dari pengalaman-pengalaman mereka." - -# 0bd61ce94b244c1d86496ba6033421ce -#: ../../source/training/tot/501_adult_learning.rst:211 -msgid "" -"Adults learn by sharing their opinion with others. As they are rich in " -"experience, sharing opinion is one of effective ways for them to learn." -msgstr "" -"Orang dewasa belajar dengan cara berbagi pendapat bersama orang lain. Karena " -"mereka kaya pengalaman, berbagi pendapat merupakan salah satu cara efektif " -"mereka dalam belajar." - -# e72cf56841ca4ad28559c0a0e2b980a9 -#: ../../source/training/tot/501_adult_learning.rst:214 -msgid "" -"Adults question why they have to learn something before they start to learn " -"it. If children tend to receive certain topics without questioning, adults " -"need to know whether something they are about to learn will bring them " -"direct benefits." -msgstr "" -"Orang dewasa mempertanyakan mengapa harus mempelajari sesuatu sebelum " -"mereka mempelajari sesuatu. Jika anak-anak cenderung menerima topik " -"pembelajaran, orang dewasa perlu mengetahui bahwa hal-hal yang mereka " -"pelajari merupakan hal yang bermanfaat langsung bagi mereka." - -# 30a639e7e9fe41548fd21fffdeb6eaae -#: ../../source/training/tot/501_adult_learning.rst:219 -msgid "" -"Adults focus on problem solving when learning; their orientation is not in " -"the learning material. When they find what they learn suitable for solving " -"problems they face, they learn well." -msgstr "" -"Orang dewasa belajar dengan memecahkan masalah tidak berorientasi pada bahan " -"pelajaran Jika hal yang dipelajari dalam pelatihan dapat memecahkan masalah " -"yang dialami, maka mereka akan belajar dengan baik." - -# 86e7d54ee0174c0db174ea34564688d8 -#: ../../source/training/tot/501_adult_learning.rst:223 -msgid "" -"Adults like an atmosphere of learning that promotes self-confidence. This is " -"related to their desire to be respected. Start with simple things to " -"increase their confidence." -msgstr "" -"Orang dewasa menyukai suasana pembelajaran yang membangkitkan kepercayaan " -"diri. Hal ini berkaitan dengan keinginan untuk dihargai. Mulailah " -"pembelajaran dengan hal-hal yang mudah sehingga kepercayaan diri mereka " -"meningkat." - -# 42f9109a3692466cbf41ba21cd3a0b97 -#: ../../source/training/tot/501_adult_learning.rst:226 -msgid "" -"Adults need longer time to learn as they need to validate new information. " -"When they receive information, they will validate it based on their " -"experience." -msgstr "" -"Orang dewasa memerlukan waktu yang lebih panjang dalam belajar karena perlu " -"memvalidasi informasi baru. Orang dewasa tidak sekedar menerima informasi " -"melainkan memvalidasi informasi berdasarkan pengalaman-pengalaman mereka." - -# 3e13abf665944207aadcfc2d62a6569d -#: ../../source/training/tot/501_adult_learning.rst:229 -msgid "" -"Adults will continue learning process when their learning experience is " -"satisfactory." -msgstr "" -"Orang dewasa akan melanjutkan proses belajar jika pengalaman belajar yang " -"dilaluinya memuaskan." - -# d66072689cb74a0694065d0576771713 -#: ../../source/training/tot/501_adult_learning.rst:232 -msgid "*The difference between Pedagogy and Andragogy*" -msgstr "*Perbedaan Pedagogi dan andragog*" - -# fa69ba7a156f4aefb78c3ee9bb0ddba5 -#: ../../source/training/tot/501_adult_learning.rst:235 -msgid "Aspect" -msgstr "Aspek" - -# 90548771740140eeaf3448afe13168fa -#: ../../source/training/tot/501_adult_learning.rst:235 -msgid "Pedagogy" -msgstr "Pedagogi" - -# f6da6e89b98043b4ad5a805b14a258c7 -#: ../../source/training/tot/501_adult_learning.rst:235 -msgid "Andragogy" -msgstr "Andragogi" - -# f5bb2c4f6d1c450488faf5029109394d -#: ../../source/training/tot/501_adult_learning.rst:237 -msgid "Trainee’s self concept" -msgstr "Konsep tentang diri peserta didik" - -# f11c6d1b023541beb7f3dadeec3f1fa0 -#: ../../source/training/tot/501_adult_learning.rst:237 -msgid "Dependent" -msgstr "Bersifat tergantung" - -# 736d20fa5352460b851c83724b893847 -#: ../../source/training/tot/501_adult_learning.rst:237 -msgid "Ability in self-directing" -msgstr "Memiliki kemampuan mengarahkan diri sendiri" - -# 97e3af8f763341e99baaba035fcd2b26 -#: ../../source/training/tot/501_adult_learning.rst:240 -msgid "Function of trainee's experience" -msgstr "Fungsi pengalaman peserta didik" - -# 4a56d09965374d8f9ee107e9bb36c6b3 -#: ../../source/training/tot/501_adult_learning.rst:240 -msgid "Little experience" -msgstr "Pengalaman sedikit" - -# f932d3408da04231945313d651a82952 -#: ../../source/training/tot/501_adult_learning.rst:241 -msgid "Experience as point of departure in building experience" -msgstr "Pengalaman sebagai titik awal untuk membangun pengalaman" - -# 89518209517b48bf8fb665784d2860bb -#: ../../source/training/tot/501_adult_learning.rst:240 -msgid "A lot of experience" -msgstr "Pengalaman banyak" - -# 9d67ba27a41d49f08481459ed2c0e7fc -#: ../../source/training/tot/501_adult_learning.rst:241 -msgid "Experience as learning source" -msgstr "Pengalaman sebagai sumber belajar" - -# f091212cbb084848a5b7559c8278efe3 -#: ../../source/training/tot/501_adult_learning.rst:245 -msgid "Learning preparedness" -msgstr "Kesiapan Belajar" - -# fe5b841bb32041ecb4ff4494247133f8 -#: ../../source/training/tot/501_adult_learning.rst:245 -msgid "Uniformity based on age" -msgstr "Diseragamkan berdasarkan usia" - -# 5e4cd69fdb684ccb96313e82d1dddf41 -#: ../../source/training/tot/501_adult_learning.rst:246 -msgid "Organized in a curriculum" -msgstr "Diorganisasi dalam suatu kurikulum" - -# 0d72d1beca4847449cfa25d35ae74ff1 -#: ../../source/training/tot/501_adult_learning.rst:245 -msgid "Prepared to learn what is needed" -msgstr "Siap mempelajari sesuatu yang ia perlukan" - -# 703bbce9114948188dc7f5f2e02a3dea -#: ../../source/training/tot/501_adult_learning.rst:247 -msgid "Based on problem solving or finding solution to daily task" -msgstr "" -"Berdasarkan dari pemecahan masalah atau menyelesaikan tugas sehari-hari " - -# 163d4b91a0814918b8863bce6c0d37d7 -#: ../../source/training/tot/501_adult_learning.rst:251 -msgid "Learning orientation" -msgstr "Orientasi belajar" - -# 2759a37b276e4b179ffaac1af25034cb -#: ../../source/training/tot/501_adult_learning.rst:251 -msgid "Education as a process of conveying knowledge" -msgstr "Pendidikan merupakan suatu proses penyampaian ilmu pengetahuan." - -# 88b55f652a8a4531a11b5b50bcb832d1 -#: ../../source/training/tot/501_adult_learning.rst:253 -msgid "The knowledge will bring benefit in the future" -msgstr "Ilmu tersebut baru bermanfaat di kemudian hari " - -# a5b21b0e3a274945996b46c510789eeb -#: ../../source/training/tot/501_adult_learning.rst:255 -msgid "Orientation to learning subjects" -msgstr "Orientasi belajar ke arah mata pelajaran" - -# 2ef6df7472a24492bc8a7c4d765775b0 -#: ../../source/training/tot/501_adult_learning.rst:251 -msgid "Education as a process to develop selfability" -msgstr "Pendidikan merupakan suatu proses pengembangan kemampuan diri " - -# 47bcff1c2e544d879bbaa26734804305 -#: ../../source/training/tot/501_adult_learning.rst:253 -msgid "Knowledge and skills are applied for a better life" -msgstr "" -"Ilmu dan keterampilan akan diterapkan untuk mencapai kehidupan yang lebih " -"baik " - -# 832c98bab22b40699c47e371ac0680ee -#: ../../source/training/tot/501_adult_learning.rst:256 -msgid "Orientation is focused on activities" -msgstr "Orientasi belajar terpusat pada kegiatan " - -# 946649f36de14754a87669c7f9b6a80f -#: ../../source/training/tot/501_adult_learning.rst:261 -msgid "2. Principle of Adult Learning" -msgstr "**2.Prinsip Pembelajaran Orang Dewasa**" - -# 5558fbbdf58249e3a5a48eb9986e0c53 -#: ../../source/training/tot/501_adult_learning.rst:263 -msgid "" -"In adult learning, there are principles that differentiate it from other " -"types of education. These principles can create an effective and efficient " -"learning atmosphere. The principles can be explained as follows:" -msgstr "" -"Pendidikan orang dewasa memiliki prinsip yang membedakannya dengan jenis " -"pendidikan yang lain. Prinsip pendidikan orang dewasa tersebut, dapat " -"menciptakan suasana pembelajaran yang efektif dan efisien. Prinsip tersebut " -"dapat dijelaskan sebagai berikut." - -# 31938481a3574a59bf0ea9c8bed1cdc6 -#: ../../source/training/tot/501_adult_learning.rst:268 -msgid "" -"Principle of partnership: The principle of partnership guarantees a forged " -"partnership between facilitator and participants. The participants are not " -"treated as students but as learning partners. The relationship created is " -"not one of giving orders but of assistance in that trainers will put their " -"best effort to assist training participants." -msgstr "" -"Prinsip kemitraan: Prinsip kemitraan menjamin terjalinnya kemitraan di " -"antara fasilitator dan peserta. Dengan demikian peserta tidak diperlakuan " -"sebagai siswa tetapi sebagai mitra belajar sehingga hubungan yang mereka " -"bangun bukanlah hubungan yang bersifat memerintah, tetapi hubungan yang " -"bersifat membantu, yaitu pengajar akan berusaha semaksimal mungkin untuk " -"membantu proses belajar peserta pelatihan." - -# 3dc8804067bf432c80d717fdfbd8dc8b -#: ../../source/training/tot/501_adult_learning.rst:274 -msgid "" -"Principle of real experience: This principle guarantees that adult learning " -"and education is conducted in real life situation. Adult learning and " -"education activities are not conducted in a class or simulated situation, " -"but in a real situation." -msgstr "" -"Prinsip pengalaman nyata: Prinsip pengalaman nyata menjamin berlangsungnya " -"kegiatan pembelajaran pendidikan orang dewasa terjadi dalam situasi " -"kehidupan yang nyata. Kegiatan pembelajaran pendidikan orang dewasa tidak " -"berlangsung di kelas atau situasi yang simulatif, tetapi pada situasi yang " -"sebenarnya." - -# 80ea38bcecd44f65b7afee5e19685ad8 -#: ../../source/training/tot/501_adult_learning.rst:279 -msgid "" -"Principle of togetherness: This principle requires the use of group " -"activities in adult learning and education to guarantee maximum interaction " -"between participants facilitated by the facilitator." -msgstr "" -"Prinsip kebersamaan: Prinsip kebersamaan menuntut digunakannya kelompok " -"dalam kegiatan pembelajaran pendidikan orang dewasa untuk menjamin adanya " -"interaksi yang maksimal di antara peserta dengan difasilitasi fasilitator." - -# 3cb8dbdd917c48c883ae65eec519701d -#: ../../source/training/tot/501_adult_learning.rst:283 -msgid "" -"Principle of participation: This principle seeks to encourage maximum " -"participants’ involvement in learning process, facilitated by the " -"participants themselves. In adult learning and education activities all " -"participants are to take active part in the whole process of learning from " -"planning, implementation and evaluation of learning activities." -msgstr "" -"Prinsip partisipasi: Prinsip partisipasi adalah untuk mendorong keterlibatan " -"peserta secara maksimal dalam kegiatan pembelajaran orang dewasa, dengan " -"fasilitas dari peserta. Dalam kegiatan pembelajaran pendidikan orang dewasa " -"semua peserta harus terlibat atau mengambil bagian secara aktif dari seluruh " -"proses pembelajaran mulai dari perencanaan, pelaksanaan, dan evaluasi " -"pembelajaran." - -# 824e734032c349d38b6724560552f782 -#: ../../source/training/tot/501_adult_learning.rst:289 -msgid "" -"Principle of self-reliance: This principle encourages participants " -"independence in seeking learning goals. Adult learning seeks to produce " -"independent human being able to play the role of subject or actor, hence the " -"need for self-reliance principle." -msgstr "" -"Prinsip kemandirian: Prinsip ini mendorong peserta untuk memiliki kebebasan " -"dalam mencari tujuan pembelajaran. Pembelajaran orang dewasa berusaha untuk " -"menghasilkan manusia independen mampu memainkan peran subjek atau aktor, " -"kebutuhan untuk prinsip kemandirian." - -# 1fea9bffdd544146a1de291118ffdc00 -#: ../../source/training/tot/501_adult_learning.rst:294 -msgid "" -"Principle of sustainability: This principle guarantees continuity between " -"the material that is being learned at present, that has been learned and " -"that will be learned in the future. With this principle, the concept of life " -"long education in adult learning will materialize." -msgstr "" -"Prinsip kesinambungan: Prinsip yang menjamin adanya kesinambungan dari " -"materi yang dipelajari sekarang dengan materi yang telah dipelajari di masa " -"yang lalu dan dengan materi yang akan dipelajari di waktu yang akan datang. " -"Dengan prinsip ini maka akan terwujud konsep pendidikan seumur hidup dalam " -"pendidikan orang dewasa." - -# 7fcd478524b448358d7f005ebb0bad27 -#: ../../source/training/tot/501_adult_learning.rst:300 -msgid "" -"Principle of benefit: This principle guarantees that what is learned in " -"adult education is compatible with the needs felt by participants. Adults " -"are prepared to learn when they realize there are needs to be addressed. " -"This awareness will stimulate the emergence of motivation to learn among " -"adults and a sense of preparedness will emerge as they feel they are " -"responsible for this as an adult." -msgstr "" -"Prinsip manfaat: Prinsip manfaat menjamin bahwa apa yang dipelajari dalam " -"pendidikan orang dewasa adalah sesuai dengan kebutuhan yang dirasakan oleh " -"peserta. Orang dewasa akan siap untuk belajar manakala dia menyadari adanya " -"kebutuhan yang harus dipenuhi. Kesadaran terhadap kebutuhan ini mendorong " -"timbulnya minat untuk belajar, dan karena rasa tanggung jawabnya sebagai " -"orang dewasa maka timbul kesiapan untuk belajar." - -# a204c91f49ce49a8ba61761198c0a43e -#: ../../source/training/tot/501_adult_learning.rst:308 -msgid "" -"Principle of preparedness: This principle guarantees participants’ mental " -"and physical preparedness to be able to take part in learning activities. " -"Adults will never be able to participate in learning process if they are not " -"yet prepared (either physically and metally) to do it." -msgstr "" -"Prinsip kesiapan: Prinsip kesiapan menjamin kesiapan mental maupun kesiapan " -"fisik dari peserta untuk dapat melakukan kegiatan pembelajaran. Orang dewasa " -"tidak akan dapat melakukan kegiatan pembelajaran manakala dirinya belum siap " -"untuk melakukannya, apakah itu karena belum siap (fisiknya atau belum siap " -"mentalnya)." - -# 4a7a6956ee2b407986adc38e0fdb3db6 -#: ../../source/training/tot/501_adult_learning.rst:313 -msgid "" -"Principle of locality: This principle guarantees the learned material is " -"locally specific. Generalisation of learning outcome in adult learning will " -"be dificult to do. The outcome in adult learning generally comprises " -"specific abilities to solve participants’ current problem in their " -"respective locality. Such skill can not be generalized as a theory or " -"principle that can be applied anywhere, anytime. The present learning " -"outcome might not be useful to solve similar problems in two or three years’ " -"time. This outcome will also not be applicable anywhere and is only suitable " -"for participants respective locality as it is processed from participants " -"experience." -msgstr "" -"Prinsip lokalitas: Prinsip lokalitas menjamin adanya materi yang dipelajari " -"bersifat spesifik local. Generalisasi dari hasil pembelajaran dalam " -"pendidikan orang dewasa akan sulit dilakukan. Hasil pendidikan orang dewasa " -"pada umumnya merupakan kemampuan yang spesifik yang akan dipergunakan untuk " -"memecahkan masalah peserta pada tempat mereka masing-masing, pada saat " -"sekarang juga. Kemampuan tersebut tidak dapat diberlakukan secara umum " -"menjadi suatu teori, dalil, atau prinsip yang dapat diterapkan dimana saja, " -"dan kapan saja. Hasil pembelajaran sakarang mungkin sudah tidak dapat lagi " -"dipergunakan untuk memecahkan masalah yang sama dua atau tiga tahun " -"mendatang. Demikian pula hasil pembelajaran tersebut tidak dapat " -"diaplikasikan dimana saja, tetapi harus diaplikasikan di tempat peserta " -"sendiri karena hasil pembelajaran tersebut diproses dari pengalaman-" -"pengalaman yang dimiliki oleh peserta." - -# b38f4150586649f181042a6686ea9a25 -#: ../../source/training/tot/501_adult_learning.rst:326 -msgid "" -"Principle of integration: This principle guarantees integration of adult " -"learning material. Learning plan in adult education must cover materials " -"that are non-partial and integrated in nature, forming a unity." -msgstr "" -"Prinsip keterpaduan: Prinsip keterpaduan menjamin adanya integrasi atau " -"keterpaduan materi pendidikan orang dewasa. Rencana pembelajaran dalam " -"pendidikan orang dewasa harus meng-cover materi-materi yang sifatnya " -"terintegrasi menjadi suatu kesatuan materi yang utuh, tidak partial atau " -"terpisah-pisah." - -# 498a4573f1d3469687ffcfd3ace2ed6d -#: ../../source/training/tot/501_adult_learning.rst:332 -msgid "3. Adult Learning Strategy" -msgstr "**3.Strategi Pembelajaran Orang Dewasa**" - -# 783b6431f15c443b8c2d3706f4d9ffe2 -#: ../../source/training/tot/501_adult_learning.rst:334 -msgid "" -"Identification of learning strategies is based on the objective to achieve. " -"Based on this, there are two types of learning strategies i.e. : (a) the " -"strategy that is designed to assist people in addressing their past " -"experience in a new way, and (b) the strategy that is designed to bring " -"about new knowledge and skills (enrichment of experience)." -msgstr "" -"Pemilihan strategi pembelajaran ditentukan berdasarkan tujuan yang akan " -"dicapai. Berdasarkan tujuan yang akan dicapai ada dua strategi belajar, " -"yaitu: (a) Strategi belajar yang dirancang untuk membantu orang membantu " -"menata pengalaman masa lampau yang dimilikinya dengan cara baru proses " -"penataan pengalaman/penataan kembali, dan (b) strategi belajar yang " -"dirancang untuk memberikan pengetahuan dan keterampilan baru (proses " -"perluasan pengalaman)." - -# 011d0a04073041989b3e06febbd02656 -#: ../../source/training/tot/501_adult_learning.rst:341 -msgid "" -"The process of addressing past experience: This strategy is employed for " -"training participants who already possess the knowledge and skills relating " -"to training material to be conveyed. The role of facilitators here is to " -"assist participants in making generalization by exploring participants " -"experience and giving feedbacks. Participants are expected to have a big " -"role in terms of expressing their experience and opinion, analyzing their " -"experience, exploring alternatives and benefits. The goals will be reached " -"when the atmosphere is free of threats and when participants feel the need " -"to find new approaches in addressing their past problems." -msgstr "" -"Proses penataan pengalaman/penataan kembali: Strategi ini diperuntukkan bagi " -"peserta pelatihan yang sudah memiliki pengetahuan dan keterampilan tentang " -"apa yang akan dilatihkan. Untuk itu peran fasilitator disini membantu " -"peserta untuk membuat generalisasi dengan memancing pegalaman yang sudah " -"dimiliki dan memberi umpan balik. Sedangkan peserta harus berperan banyak " -"untuk mengungkapkan data mengenai pengalaan dan pendapatnya, menganalisa " -"pengalamannya, menggali alternatif dan manfaatnya. Hal ini akan terjadi " -"apabila ada suasana yang bebas dari ancaman, rasa kebutuhan dari peserta " -"untuk menemukan pendekatan baru dalam mengatasi masalah lamanya." - -# 8e548ad883fb48a499db9ce06f46cef4 -#: ../../source/training/tot/501_adult_learning.rst:352 -msgid "" -"The process of enriching experience: This strategy is employed for " -"participants who have yet the knowledge and skills that are presented in the " -"training. Here, facilitators role is to provide new data and concept for the " -"participants to absorb and practice. In this case, it is necessary to have " -"clarity in terms of how to best present the training and motivate " -"participants to identify the relevance of the new material in their life." -msgstr "" -"Proses perluasan pengalaman: Strategi ini diperuntukkan bagi peserta " -"pelatihan yang belum memiliki pengetahuan atau keterampilan tentang apa yang " -"akan dilatihkan. Peran fasilitator disini adalah memberikan data dan konsep " -"yang baru, sedangkan peran peserta pelatihan adalah memperoleh data dan " -"konsep baru, mempraktikkannya. Dalam hal ini diperlukan kejelasan penyajian " -"baru dan memotivasi peserta untuk mengetahui relevansi bahan baru tersebut " -"dalam kehidupan." - -# 456f3046afd54b05be7c398c33d57500 -#: ../../source/training/tot/501_adult_learning.rst:361 -msgid "" -"Based on the aims elaborated above, we now know that there are two types of " -"adults in adult learning i.e. adults with prior knowledge and adults without " -"prior knowledge. But it is necessary to remember that adults already possess " -"several characteristics that play a role in determining the best strategies " -"for them. In general, adult learning is expected to involve participatory " -"method i.e. active participation of training participants as well as other " -"arrangements such as training material, date and time of training, etc. " -"Principally, in participatory method facilitators don’t act as teacher and " -"lecture all the time, and involve participants in every activity. This " -"strategy can be further explained as follows:" -msgstr "" -"Berdasarkan tujuan di atas diketahui bahwa dalam pembelajaran orang dewasa " -"ada dua tujuan dalam pembelajaran, yaitu bagi yang sudah mempunyai " -"pengetahuan dan belum. Tetapi perlu diingat orang dewasa telah memiliki " -"bebrapa karakteristik yang perlu diperhatikan dalam menetapkan strategi " -"pembelajarannya. Berdasarkan karakteristik orang dewasa, maka strategi yang " -"efektif untuk pembelajaran orang dewasa. Secara umum pembelajaran orang " -"dewasa diharapkan menggunakan pembelajaran partisipatif, yaitu keterlibatan " -"atau peran serta peserta pelatihan dan pengaturan lainnya yang menyangkut " -"materi pelatihan, waktu penyelenggaraan, dan lain sebagainya. Pada " -"prinsipnya pada pembelajaran partisipatif fasilitator tidak menggurui dan " -"selalu berceramah, tetapi selalu melibatkan peserta dalam kegiatan. Strategi " -"yang dimaksud antara lain sebagai berikut." - -# 9f218933324b41cfa344267c3b4d0c3d -#: ../../source/training/tot/501_adult_learning.rst:373 -msgid "**a. Practical, problem-centered learning**" -msgstr "**a. Pembelajaran yang praktis dan berpusat pada masalah**" - -# cc14303e5b974f1c844a19fd86c82851 -#: ../../source/training/tot/501_adult_learning.rst:375 -msgid "" -"One of the characteristics of adults is that they learn through problem " -"solving and are not lesson-oriented. They learn well when they find what " -"they learn during a training can be used to solve their problems. To this " -"end, strategies to be used are as follows: before the start of the learning " -"process, facilitators must identify trainees’ needs and problems. It is " -"better to start with identifying authentic problems of training participants " -"in their daily life. Should the facilitators feel the need to introduce new " -"theories or information, they need to ensure that these theories and " -"information are related to problems faced by trainees and real life " -"examples. In problem solving oriented training, methods that can be employed " -"are e.g. Q&A session and discussion. The latter can be divided into several " -"steps:" -msgstr "" -"Salah satu karakteristik orang dewasa adalah orang dewasa belajar dengan " -"memecahkan masalah tidak berorientasi pada bahan pelajaran. Jika hal yang " -"dipelajari dalam pelatihan dapat memecahkan masalah yang dialami, maka " -"mereka akan belajar dengan baik. Untuk itu, strategi yang digunakan dalam " -"pembelajaran adalah sebagai berikut: Sebelum pembelajaran dimulai, " -"fasilitator harus mengidentifikasi kebutuhan-kebutuhan dan masalah mereka. " -"Selanjutnya pembelajaran sebaiknya dimulai dengan mengidentifikasi masalah-" -"masalah otentik yang mereka hadapi dalam kehidupan sehari-hari. Jika kita " -"perlu memperkenalkan teori atau informasi baru, yakinkan bahwa semuanya " -"dikaitkan dengan masalah yang dihadapi dan contoh-contoh nyata. Dalam " -"pemecahan masalah ini metode yang bisa digunakan antara lain tanyajawab, " -"diskusi. Diskusi dalam rangka memecahkan masalah terdiri dari beberapa " -"tahap, yaitu:" - -# 5451a684a59049e8885c1f8c2f3af840 -#: ../../source/training/tot/501_adult_learning.rst:390 -msgid "Group members are aware of the existence of problems" -msgstr "Anggota kelompok sadar akan adanya masalah" - -# b6929e1ff8144d87b1f9344f2a9eedef -#: ../../source/training/tot/501_adult_learning.rst:391 -msgid "Individually, members find ideas on how best to solve the problems" -msgstr "" -"Anggota secara individu mencari dugaan untuk memecahkan masalah sementara" - -# 8942b8b70be74cef905068d5a4fcd191 -#: ../../source/training/tot/501_adult_learning.rst:392 -msgid "" -"Group members search for facts or reflect on their experience to support " -"their ideas." -msgstr "" -"Anggota kelompok mencari fakta atau pengalamannya untuk mendukung dugaannya." - -# 16335eb969a44f3eadb2ba581e93d82f -#: ../../source/training/tot/501_adult_learning.rst:394 -msgid "Discussion among group members on how to solve the problems" -msgstr "Mendiskusikan dengan anggota kelompok atas pemecahan masalah" - -# a8cf5aeea11a4a30b70b414bff361f41 -#: ../../source/training/tot/501_adult_learning.rst:395 -msgid "Group members conclude their discussion." -msgstr "Membuat kesimpulan diskusi dalam memecahkan masalah." - -# c147ba0c46d94a14beca045bb2a1db58 -#: ../../source/training/tot/501_adult_learning.rst:397 -msgid "" -"With regards to practical learning, adults also need practical activities. " -"Material presented must be practiced to be instilled properly, the " -"appropriate methods being inter alia demonstration, simulation and " -"practicing. For example, to reach competency in how to use GPS and input " -"additional data in OSM, it would render a training meaningless when " -"participants only know and understand how to use GPS and add OSM data " -"without demonstration by facilitators, simulation by some of participants " -"and practical session involving all participants. What is necessary with " -"regards to this competency is how to turn on GPS and the initial GPS " -"setting." -msgstr "" -"Berkaitan dengan sesuatu yang praktis, dalam pembelajaran orang dewasa " -"diperlukan praktik lapang. Materi harus dipraktikkan untuk kepentingan " -"praktis yang akan diterapkan. Rangkaian metode yang cocok digunakan antara " -"lain demonstrasi, simulasi dan praktik. Misalnya untuk mencapai kompetensi " -"Menggunakan GPS untuk menambah data di OSM, tidak ada artinya kalau peserta " -"hanya mengetahui dan paham tentang penggunaan GPS untuk menambahkan data " -"OSM, tetapi perlu didemonstasikan oleh fasilitator dan disimulasikan oleh " -"sebagai peserta dan dipraktikkan oleh semua peserta. Yang perlu dipraktikkan " -"dalam kompetensi tersebut antara lain menyalakan GPS dan melakukan " -"pengaturan GPS saat pertama kali." - -# 387553c397ae44358d0fa4138cae81f7 -#: ../../source/training/tot/501_adult_learning.rst:408 -msgid "" -"**b. Adults prefer a learning process that integrates new information into** " -"**their experience**" -msgstr "" -"**b. Orang dewasa menyukai pembelajaran yang mengintegrasikan informasi " -"baru dengan pengalaman-pengalaman mereka:** " - -# f9616bcf09c44bb6b142ee94444626db -#: ../../source/training/tot/501_adult_learning.rst:411 -msgid "" -"There are two aspects of adult learning i.e. the process of addressing " -"their past experience and the process of enriching experience. Therefore, " -"learning process for adults must assist them in exploring their experience " -"in order to learn new things. A cooperative group learning can also help " -"them to share opinion with others. Furthermore, we need to help them " -"understand new information, the proper methods of which would be inter alia " -"Q&A session and discussion. For example, in presenting the lesson on “How to " -"Operate OSM”, it is better for the facilitators to not lecture on:" -msgstr "" -"Dalam pembelajaran orang dewasa ada dua hal, yaitu proses penataan " -"pengalaman/penataan kembali dan proses perluasan pengalaman, untuk itu " -"pembelajaran orang dewasa haruslah membantu mereka mengungkapkan pengalaman-" -"pengalaman mereka untuk mempelajari hal-hal yang baru. Pembelajaran kelompok " -"kooperatif juga dapat membantu mereka untuk berbagi pendapat dengan peserta " -"yang lain. Selanjutnya kita perlu membantu mereka dalam memahami informasi " -"yang baru. Metode yang sesuai diantaranya dengan tanyajawab dan diskusi. " -"Misalnya dalam mengajarkan materi “Pengoperasian OSM”, sebaiknya fasilitator " -"tidak memberi ceramah tentang: " - -# 308260923a7240bbac95835c3c555b4d -#: ../../source/training/tot/501_adult_learning.rst:421 -msgid "How to visit OpenStreetMap site," -msgstr "Cara mengunjungi situs OpenStreetMap" - -# 6ba0118715544c38bfc37c14195718d6 -#: ../../source/training/tot/501_adult_learning.rst:422 -msgid "How to navigate maps," -msgstr "Cara menavigasi Peta, " - -# b21a4bc967374814b7041f8b6f0a363b -#: ../../source/training/tot/501_adult_learning.rst:423 -msgid "How to save Images from OSMan map," -msgstr "Cara menyimpan Gambar dari Peta OSM" - -# b57b11c128b64d418fb4f354c89b373b -#: ../../source/training/tot/501_adult_learning.rst:424 -msgid "How to create OpenStreetMap account," -msgstr "Cara membuat Akun OpenStreetMap" - -# 81216860bfc54a519022913825580c89 -#: ../../source/training/tot/501_adult_learning.rst:425 -msgid "OSM Map Editing." -msgstr "Editing Peta OSM" - -# 2d2f7cc8e535463982f2e40416142e07 -#: ../../source/training/tot/501_adult_learning.rst:427 -msgid "" -"Rather, the facilitators need to explore the degree of participants " -"experience or knowledge on the subject through Q&A session, after which a " -"discussion follows focusing on difficulties encountered on the subject. The " -"facilitators then can provide additional material that they feel needed by " -"the participants taking into account their prior experience and knowledge." -msgstr "" -"tetapi fasilitator perlu menggali seberapa jauh pengalaman mereka atau " -"pengetahuan mereka tentang materi tersebut dengan tanyajawab. Setelah itu " -"bisa didiskusikan untuk memecahkan masalah kesulitan peserta terhadap materi " -"tersebut, selanjutnya fasilitator dapat memberikan tambahan materi yang " -"dirasa belum diketahui oleh peserta dengan selalu menghubungkan dengan " -"pengetahuan dan pengalaman yang mereka miliki sebelumnya." - -# 7b62428de57c480c83fd1249719dc86b -#: ../../source/training/tot/501_adult_learning.rst:434 -msgid "**c. Adults prefer a learning process that enhances their self-esteem**" -msgstr "" -"**c. Orang dewasa menyukai pembelajaran yang meningkatkan harga diri " -"mereka** " - -# 247ced540cc34be5ad146f1d8ee8c2a4 -#: ../../source/training/tot/501_adult_learning.rst:436 -msgid "" -"In order to make adults confident, we can start with simple things with low " -"possibility of failure. The degree of difficulty of material presented may " -"escalate as their confidence rises. For example, when conducting training on " -"how to operate JOSM, in the event some participants are not yet familiar " -"with internet, facilitators can start with light skills such as how to " -"download JOSM. The method employed for this task may be in dividing " -"participants in groups of two. Participants who are already capable of doing " -"the task show their partner how to do it, after which the faciliators may " -"proceed to individual task. This method is meant to not encumber " -"participants at the beginning of training. Other aspects on how to operate " -"JOSM may follow the same template. The point is that participants must not " -"be humiliated for their lack of internet skills." -msgstr "" -"Agar orang dewasa percaya diri, kita dapat memulai dengan hal-hal yang " -"sederhana dengan tingkat kegagalan yang kecil. Selanjutnya pembelajaran " -"semakin meningkat seiring dengan kepercayaan diri mereka. Misalnya, ketika " -"mengajarkan pengoperasian JOSM, diketahui peserta belum begitu lancar dengan " -"internet, maka dapat memulai dengan praktek-praktek keterampilan yang ringan " -"misalnya melakukan download JOSM dengan cara berpasangan, yang sudah bisa " -"mengajarkan kepada yang belum bisa dan dilanjutkan dengan mengerjakan secara " -"individu. Hal ini dimaksudkan agar tidak memberikan beban yang berat di awal " -"pelatihan. Begitu selanjutnya untuk belajar langkah lain dari pengoperasian " -"JOSM. Yang penting disini, peserta tidak boleh dipermalukan karena " -"kekurangan mereka terhadap pengoperasian internet." - -# 5109bef42b534ddeb3ff5251b3ff067f -#: ../../source/training/tot/501_adult_learning.rst:452 -msgid "**d. Adults prefer individual attention when learning**" -msgstr "" -"**d. Orang dewasa menyukai pembelajaran yang menunjukkan perhatian secara " -"individual**" - -# 4778f27dd7704c198484116045115302 -#: ../../source/training/tot/501_adult_learning.rst:454 -msgid "" -"Know their needs, fulfill their individual needs such as break, food, drink " -"etc. Engage them in discussion about planning targets, and assist them in " -"achieving them. Never hesitate to ask for their opinion in writing, during " -"sessions or informally outside training sessions. They appreciate having " -"their personal interests listened to." -msgstr "" -"Ketahuilah kebutuhan-kebutuhan mereka, penuhi kebutuhan individual seperti " -"rehat, makan, minum dan sebagainya. Ajak mereka merencanakan target-target " -"dan bantulah mencapai target tersebut. Jangan segan pula untuk meminta " -"masukan-masukan dari mereka baik secara tertulis, dalam sesi-sesi maupun " -"secara informal di luar sesi pelatihan. Mereka suka jika minat-minat pribadi " -"mereka diperhatikan. " - -# f255ad1100074038a1ca4b8999f24e4e -#: ../../source/training/tot/501_adult_learning.rst:461 -msgid "" -"The success of adult learning strategies also hinges on an agreeable " -"learning atmosphere conducive to learning. A conducive atmosphere to " -"learning according to Suprijanto (2007) constitutes the following:" -msgstr "" -"Keberhasilan strategi belajar orang dewasa perlu didukung dengan suasan " -"belajar yang kondusif. Suasana belajar yang kondusif bagi orang dewasa " -"menurut Suprijanto (2007) adalah" - -# 3f36d1ecbd6544a18ac54de1d8963c5e -#: ../../source/training/tot/501_adult_learning.rst:466 -msgid "" -"An atmosphere that encourages participants to be active and develop their " -"skills" -msgstr "Mendorong peserta didik untuk aktif dan mengembangkan bakat" - -# cc303e0e219048a4a71efa595cbf9998 -#: ../../source/training/tot/501_adult_learning.rst:468 -msgid "An atmosphere of mutual respect and appreciation" -msgstr "Suasana saling menghormati dan saling menghargai" - -# fa6ee15db69f40aca2948a16c1e65943 -#: ../../source/training/tot/501_adult_learning.rst:469 -msgid "An atmosphere of mutual trust and openness" -msgstr "Suasana saling percaya dan terbuka" - -# 44e25b1ce5f74f028d70cd0f13f4be07 -#: ../../source/training/tot/501_adult_learning.rst:470 -msgid "An atmosphere of self-discovery" -msgstr "Suasana penemuan diri" - -# 73731604403548b7ae9331f626746b20 -#: ../../source/training/tot/501_adult_learning.rst:471 -msgid "An atmosphere that is non-threatening" -msgstr "Suasana tidak mengancam" - -# c4ebbfcc8d4d4dc7a95135af88f50a9c -#: ../../source/training/tot/501_adult_learning.rst:472 -msgid "An atmosphere of acknowledging self-distinctness" -msgstr "Suasana mengakui kekhasan pribadi" - -# acd952983d19476095ecb39801147eea -#: ../../source/training/tot/501_adult_learning.rst:473 -msgid "An atmosphere that allows room for difference, mistakes and doubts" -msgstr "Suasana memperbolehkan perbedaan, berbuat salah, dan keraguan" - -# e0f41f651b4443c4bf1d31c4467b7479 -#: ../../source/training/tot/501_adult_learning.rst:474 -msgid "" -"An atmosphere that enables participants to learn according to their " -"interest, attention, and resources in their locality" -msgstr "" -"Memungkinkan peserta belajar sesuai dengan minat, perhatian, dan sumber daya " -"lingkungannya" - -# 56da711516d9444b8215fc91bf2c1fda -#: ../../source/training/tot/501_adult_learning.rst:476 -msgid "" -"An atmosphere that enables participants to acknowledge and explore " -"weaknesses and strengths of themselves as individuals, their groups and " -"society" -msgstr "" -"Memungkinkan peserta mengakui dan mengkaji kelemahan dan kekuatan pribadi, " -"kelompok, dan masyarakatnya" - -# 1fb229556d95427eb4d20527d3a609f5 -#: ../../source/training/tot/501_adult_learning.rst:478 -msgid "" -"An atmosphere that enables participants to grow with values and norms in " -"their community" -msgstr "" -"Memungkinkannya peserta tumbuh sesuai dengan nilai dan norma yang ada di " -"masyarakat" - -# d58761eaa55b4f3d93c243434a78c10c -#: ../../source/training/tot/501_adult_learning.rst:483 -msgid "4. Adult Learning Evaluation" -msgstr "**4. Evaluasi Pendidikan Orang Dewasa**" - -# 18b1821f782e436ea6673dafa898073e -#: ../../source/training/tot/501_adult_learning.rst:485 -msgid "" -"Evaluation is an activity to determine how far a learning program is " -"implemented according to expectations. Therefore, evaluation is focused on " -"activities to determine how far a program is successful (micro: facilitator, " -"macro: institution). According to Fajar, A., (2002), evaluation can be " -"defined as an effort to gain various kinds of information periodically, " -"continuously and comprehensively about learning process and outcome, as well " -"as the growth and development of participants’ attitudes and behaviors. The " -"above definition shows that evaluation is also carried out during training " -"program and not only at the end of training. Evaluation constitutes a " -"process to paint a picture of changes among participants after training. The " -"word process means that evaluation is a continuous endeavor, using certain " -"methods to reach expected outcome. This process also sees that evaluation is " -"conducted by gathering facts in a systematic way. This definition shows that " -"an evaluation requires data gathering or measurement." -msgstr "" -"Evaluasi atau penilaian adalah suatu kegiatan untuk menetapkan seberapa jauh " -"program pembelajaran dapat diimplementasikan sesuai harapan. Dengan demikian " -"penilaian atau evaluasi difokuskan pada kegiatan untuk menentukan seberapa " -"jauh keberhasilan program (mikro: fasilitator, makro: lembaga). Menurut " -"Fajar, A., (2002), penilaian dapat diartikan sebagai suatu usaha untuk " -"memperoleh berbagai informasi secara berkala, berkesinambungan, dan " -"menyeluruh tentang proses dan hasil belajar, pertumbuhan serta perkembangan " -"sikap dan perilaku yang dicapai peserta. Pengetian di atas menunjukkan bahwa " -"evaluasi dilakukan selama program pelatihan, tidak dilakukan di akhir " -"pelatihan saja. Evaluasi merupakan suatu proses untuk menggambarkan " -"perubahan dari diri peserta setelah pelatihan. Proses memberi arti bahwa " -"evaluasi dilakukan secara terus menerus dan berkesinambungan, dengan cara " -"tertentu sehingga mendapat hasil sesuai yang diharapkan. Di sana juga " -"digambarkan bahwa dalam penilaian dilakukan dengan mengumpulkan kenyataan " -"secara sistematis. Hal ini memperlihatkan bahwa di dalam evaluasi diperlukan " -"pengambilan data atau disebut pengukuran." - -# 1d5657fac6194517bf6f542de34aefc2 -#: ../../source/training/tot/501_adult_learning.rst:505 -msgid "" -"The techniques, methods or tools of evaluation comprise all methods or " -"procedures taken to gather information or data needed as material to " -"evaluate. The techniques used in evaluation play an important role in the " -"outcome. Basically, evaluation techniques or methods can be divided into two " -"types i.e . test technique or method and non-test technique or method. In " -"cognitive aspects, a test in the form of questions (both in writing or " -"verbally) can be used. It is expected that this aspect can enhance the " -"affective aspect of training participants. Affective aspect can be " -"identified through observation and questionnaire, while psycho-motor aspect " -"can be evaluated through activities conducted and results achieved." -msgstr "" -"Teknik, metode atau alat evaluasi adalah segala macam cara atau prosedur " -"yang ditempuh untuk memperoleh keterangan-keterangan atau data-data yang " -"dipergunakan sebagai bahan untuk mengadakan penilaian. Dengan demikian " -"teknik ini sangat mempengaruhi hasil yang akan diperoleh. Pada dasarnya " -"teknik atau metode penilaian dapat dibedakan menjadi dua, yaitu teknik atau " -"metode tes dan teknik atau metode non tes. Pada aspek kognitif dapat " -"digunakan soal-soal tes, (baik lisan ataupun tertulis). Diharapkan aspek ini " -"dapat meningkatkan aspek afektif peserta pelatihan. Aspek afektif dapat " -"dilakukan melalui observasi dan kuesioner, dan aspek psikomotorik dapat " -"dinilai melalui kegiatan dan hasil yang dicapai." - -# d6bc32da52ff41ee8c49063e17925d90 -#: ../../source/training/tot/501_adult_learning.rst:519 -msgid "" -"The theory of evaluation above is actually similar in both pedagogy and " -"andragogy, with the difference being only in ways of evaluating. In adult " -"learning, the evaluation method must reflect freedom in that the evaluation " -"must come from the person learning, not forced from outside. This implies " -"that adults must be able to evaluate themselves. Therefore, the term ‘test’ " -"for adults should be referred to more appropriately as self-examination. An " -"example of evaluation method suitable for adults is as follows:" -msgstr "" -"Teori evaluasi di atas sebenarnya sama antara pedagogi dan andragogi, hanya " -"saja cara mengevaluasinya yang berbeda. Dalam pendidikan orang dewasa metode " -"evaluasinya harus mencerminkan kebebasan, artinya evaluasinya harus datang " -"dari yang belajar dan bukan dipaksakan dari luar. Pengertian di atas " -"menunjukkan bahwa orang dewasa harus dapat menilai dirinya sendiri. Sehingga " -"istilah “ujian” atau tes bagi orang dewasa lebih tepat digunakan istilah uji " -"diri. Contoh metode evaluasi yang cocok untuk orang dewasa adalah sebagai " -"berikut." - -# 13cbfb6cf663488eaff00e754e6b9ef2 -#: ../../source/training/tot/501_adult_learning.rst:528 -msgid "" -"Feedback: each participant is given an opportunity to express their thoughts " -"and feeling regarding the lesson presented." -msgstr "" -"Umpan balik: Setiap peserta diberi kesempatan untuk mengemukakan pikiran dan " -"perasaan mengenai pelajaran yang baru berlangsung." - -# 1701383c7305432283ba23fff3cee079 -#: ../../source/training/tot/501_adult_learning.rst:531 -msgid "" -"Reflection: participants are given the opportunity to reflect. Reflection is " -"subjective and personal so facilitators need not to respond." -msgstr "" -"Refleksi: Peserta diberi kesempatan untuk mengungkapkan refleksinya. " -"Refleksi bersifat subjektif yang khas pribadi, sehingga tidak perlu " -"ditanggapi oleh fasilitator." - -# 11bdec6899de401e92addc4dbd2647a2 -#: ../../source/training/tot/501_adult_learning.rst:534 -msgid "" -"Group discussion: participants are given the opportunity to discuss their " -"respective evaluation result and put it in a report." -msgstr "" -"Diskusi kelompok: Peserta diberi kesempatan untuk mendiskusikan hasil " -"evaluasi masing-masing dan menuangkannya dalam sebuah laporan." - -# eaefb1eac8964e4db14e24fd02ca617f -#: ../../source/training/tot/501_adult_learning.rst:537 -msgid "" -"Questionnaire: a form with list of questions prepared for participants to " -"answer." -msgstr "" -"Questionnaire: Penilaian dengan disiapkan formulir pertanyaan yang telah " -"disiapkan dan diisi oleh peserta pelatihan." - -# 0bdc7f19f0dc49a0bbd4c2628c01a14c -#: ../../source/training/tot/501_adult_learning.rst:539 -msgid "" -"Management team: a team is formed consisting a number of participants as " -"moderator, note taker and evaluator. This team is in charge of writing a " -"brief and concise report and writing evaluation for the day’s activities." -msgstr "" -"Tim pengelola: Diantara peserta dibentuk sebuah tim yang terdiri dari " -"moderator, pencatat, dan evaluator. Tim ini bertugas untuk membuat laporan " -"singkat padat dan menyusun evaluasi dari acara seharian." - -# c1ed300337914551b0c0924144112d4f -#: ../../source/training/tot/501_adult_learning.rst:545 -msgid "" -"The above methods can be completed with Performance Evaluation, an " -"assessment which constitutes a non-test evaluation conducted by observing " -"participants’ activities. This evaluation is suitable to evaluate how far " -"participants achieve certain competencies in carrying out certain tasks: " -"practice and simulation. In performance evaluation, the following points " -"need consideration:" -msgstr "" -"Cara di atas dapat dibantu degan Penilaian Unjuk Kerja/Performance. " -"Penilaian Unjuk Kerja mengamati kegiatan peserta dalam melakukan sesuatu. " -"Penilaian ini cocok digunakan untuk menilai ketercapaian kompetensi yang " -"menuntut peserta melakukan tugas tertentu seperti: praktek dan simulasi. " -"Penilaian unjuk kerja perlu mempertimbangkan hal-hal berikut:" - -# 547ad7074b604e6290cf3dacf781151f -#: ../../source/training/tot/501_adult_learning.rst:552 -msgid "" -"Performance steps expected from participants to be carried out to show their " -"level of competency." -msgstr "" -"Langkah-langkah kinerja yang diharapkan dilakukan peserta untuk menunjukkan " -"kinerja dari suatu kompetensi." - -# f55796d643d54f6ca62d902a5992bd29 -#: ../../source/training/tot/501_adult_learning.rst:554 -msgid "" -"The completeness and precision of aspects to be evaluated in the performance." -msgstr "" -"Kelengkapan dan ketepatan aspek yang akan dinilai dalam kinerja tersebut." - -# 42a30f061be340b1a0d079441e77c64d -#: ../../source/training/tot/501_adult_learning.rst:555 -msgid "Specific abilities needed to carry out tasks." -msgstr "Kemampuan-kemampuan khusus yang diperlukan untuk menyelesaikan tugas." - -# bd5a9f3ef78546f7ba2da00ea9ffd665 -#: ../../source/training/tot/501_adult_learning.rst:556 -msgid "" -"When possible, skills to be evaluated are not too many to provide enough " -"time for a thorough observation." -msgstr "" -"Upayakan kemampuan yang akan dinilai tidak terlalu banyak, sehingga semua " -"dapat diamati." - -# c22ac6947de14914ba478ef4226ff008 -#: ../../source/training/tot/501_adult_learning.rst:558 -msgid "" -"Skills to be evaluated is listed based on the first to the last aspects " -"observed." -msgstr "Kemampuan yang akan dinilai diurutkan berdasarkan urutan pengamatan." - -# 36d042a45c6a40389b648abe1a3c5598 -#: ../../source/training/tot/501_adult_learning.rst:561 -msgid "*Performance Evaluation Techniques*" -msgstr "**Teknik Penilaian Unjuk Kerja**" - -# e1c4a762aa004100a724727cde98b4c4 -#: ../../source/training/tot/501_adult_learning.rst:563 -msgid "" -"Performance observation needs to be carried out in various contexts to " -"determine the level of competence of certain skills. The following tools or " -"instruments may be used to observe participants performance:" -msgstr "" -"Pengamatan unjuk kerja perlu dilakukan dalam berbagai konteks untuk " -"menetapkan tingkat pencapaian kemampuan tertentu. Untuk mengamati unjuk " -"kerja peserta dapat menggunakan alat atau instrumen berikut:" - -# 8a3332a19927440494d484254646bc88 -#: ../../source/training/tot/501_adult_learning.rst:568 -msgid "Check list" -msgstr "Daftar Cek / *Check-list*" - -# 1d07769bdb1e4835afec50aedde40b7d -#: ../../source/training/tot/501_adult_learning.rst:570 -msgid "" -"Performance evaluation can be conducted using a check list (yes-no " -"questions). With this check list, participants will get points when certain " -"criteria of mastering certain competency are observed by evaluators. In the " -"event no competency is observed, participants will not get any point. The " -"weakness of this method is that evaluators only have two absolute options, " -"right or wrong; observed and not observed. There is no middle ground. " -"Nevertheless, check list is more practical to be used to observe subjects in " -"great number. The following is an example of a check list." -msgstr "" -"Penilaian unjuk kerja dapat dilakukan dengan menggunakan daftar cek (ya-" -"tidak). Penilaian unjuk kerja yang menggunakan daftar cek, peserta mendapat " -"nilai bila kriteria penguasaan kompetensi tertentu dapat diamati oleh " -"penilai. Jika tidak dapat diamati, peserta tidak memperoleh nilai. " -"Kelemahan cara ini adalah penilai hanya mempunyai dua pilihan mutlak, " -"misalnya benar-salah, dapat diamati-tidak dapat diamati. Dengan demikian " -"tidak terdapat nilai tengah, namun daftar cek lebih praktis digunakan " -"mengamati subjek dalam jumlah besar. Berikut contoh daftar cek." - -# 9c3af009593d4dee9059254d616c3cf0 -#: ../../source/training/tot/501_adult_learning.rst:581 -msgid "**Example of checklist**" -msgstr "**Contoh checklists**" - -# dc484e71ab2e433c9f5e7cc7ce7302df -# f5d184a1b1314ccab0a9d29409cb7e38 -#: ../../source/training/tot/501_adult_learning.rst:584 -#: ../../source/training/tot/501_adult_learning.rst:611 -msgid "No." -msgstr "No." - -# b9b0cf645f5e436fb898a2a02cefc524 -# 6da7e1bf32d44cb186ae9dc01fcb963a -#: ../../source/training/tot/501_adult_learning.rst:584 -#: ../../source/training/tot/501_adult_learning.rst:611 -msgid "Scoring Aspect" -msgstr "Aspek yang dinilai" - -# c3b171dad25d4aaba866a716fc21fd8f -#: ../../source/training/tot/501_adult_learning.rst:584 -msgid "Good" -msgstr "Baik" - -# 95686486246c43c0912664a5914735ce -#: ../../source/training/tot/501_adult_learning.rst:584 -msgid "Not Good" -msgstr "Tidak baik" - -# 3e0fbf21afaf4eb4ad5a428845d4d98e -# b137edefbf2a4f1d84ec92eed2e9bf87 -#: ../../source/training/tot/501_adult_learning.rst:592 -#: ../../source/training/tot/501_adult_learning.rst:621 -msgid "Total Score" -msgstr "Skor yang dicapai" - -# b3d9ca481b1e4173a8bb64a1eef4de98 -# 696736fe0d724ea989e353169d37a248 -#: ../../source/training/tot/501_adult_learning.rst:594 -#: ../../source/training/tot/501_adult_learning.rst:623 -msgid "Maximum Score" -msgstr "Skor Maksimum" - -# e3721b1e85c740bd917d398324236b81 -#: ../../source/training/tot/501_adult_learning.rst:598 -msgid "Rating scale" -msgstr "Skala Penilaian / *Rating Scale* " - -# aed18b8c707740d1a73075654b7e6417 -#: ../../source/training/tot/501_adult_learning.rst:600 -msgid "" -"Performance evaluation using rating scale enables evaluators to give median " -"scores for mastery of certain competencies, as scores are given in a " -"continuum where there are more than two options of scoring category. " -"Evaluation scale is spread from not perfect to very perfect. For example, 1 " -"= not competent, 2 = sufficiently competent, 3 = competent and 4 = very " -"competent. The following is an example of rating scale." -msgstr "" -"Penilaian unjuk kerja yang menggunakan skala penilaian memungkinkan penilai " -"memberi nilai tengah terhadap penguasaan kompetensi tertentu, karena " -"pemberian nilai secara kontinum di mana pilihan kategori nilai lebih dari " -"dua. Skala penilaian terentang dari tidak sempurna sampai sangat sempurna. " -"Misalnya: 1 = tidak kompeten, 2 = cukup kompeten, 3 = kompeten dan 4 = " -"sangat kompeten. Berikut contoh skala penilaian." - -# c90a89342df94d91a4a949386303aab0 -#: ../../source/training/tot/501_adult_learning.rst:608 -msgid "**Example of rating scale**" -msgstr "**Skala Penilaian** " - -# 832b974755b344cdbcf171f6dcfaf1b4 -#: ../../source/training/tot/501_adult_learning.rst:611 -msgid "Score" -msgstr "Nilai" - -# acb46f2ca0db4380ad0e26ea5a75fea2 -#: ../../source/training/tot/501_adult_learning.rst:613 -msgid "1" -msgstr "1" - -# 54a77db2ba044f72aaf286cd33be81fe -#: ../../source/training/tot/501_adult_learning.rst:613 -msgid "2" -msgstr "2" - -# a014713484d843c0880d9a732959507a -#: ../../source/training/tot/501_adult_learning.rst:613 -msgid "3" -msgstr "3" - -# f4b1732096404c96aa2a983b2b9f1e8e -#: ../../source/training/tot/501_adult_learning.rst:613 -msgid "4" -msgstr "4" - -# 1e54ac8ddcd5439785c55d04a7b40f91 -#: ../../source/training/tot/501_adult_learning.rst:623 -msgid "9" -msgstr "9" - -# 837ee98703a64a3e9a0be3a21cd89672 -#: ../../source/training/tot/501_adult_learning.rst:626 -msgid "Remarks:" -msgstr "Keterangan penilaian:" - -# 2e59279306f049f19ae4b38643f49665 -#: ../../source/training/tot/501_adult_learning.rst:628 -msgid "" -"1 = Not competent 2 = Sufficiently Competent 3 = Competent 4 = Very competent" -msgstr "1 = Tidak kompeten 2 = Cukup kompeten 3 = Kompeten 4 = Sangat kompeten" - -# 3b0e7b9e18894e4e8c134cb30d966a93 -#: ../../source/training/tot/501_adult_learning.rst:630 -msgid "" -"In the event a participant gains a score of 16, s/he can be qualified as " -"\"very competent\". Other qualification is also determined according to " -"scores obtained. In school settings, this performance evaluation can be " -"carried out by teachers. For adults, it is the responsibility of " -"facilitators together with training participants. The forms that have been " -"filled out can serve as a matter of discussion or records for management " -"team." -msgstr "" -"Jika seorang peserta memperoleh skor 16 dapat ditetapkan ”sangat kompeten”. " -"Dan seterusnya sesuai dengan jumlah skor perolehan. \n" -"Penilaian unjuk kerja ini apabila dilakukan di persekolahan bisa diisi oleh " -"guru, tetapi untuk pembelajaran orang dewasa dapat diisi fasilitator bersama-" -"sama dengan peserta. Dan isian tersebut sebagai bahan untuk didiskusikan " -"atau pencatatan oleh tim pengelola." - -# 2bc61838323f49e2ab8e4649e68bb12e -#: ../../source/training/tot/501_adult_learning.rst:639 -msgid "**Bibliography**" -msgstr "**Daftar Bacaan**" - -# ef4ffb63db9a420dad5eeaa1d750c52b -#: ../../source/training/tot/501_adult_learning.rst:642 -msgid "Budimansyah, D. 2002. Model Pembelajaran dan Penilaian Portofolio." -msgstr "Budimansyah, D. 2002. Model Pembelajaran dan Penilaian Portofolio." - -# 86ec81a6fb924716adc90a193840b04a -#: ../../source/training/tot/501_adult_learning.rst:642 -msgid "Bandung: Genesindo." -msgstr "Bandung: Genesindo." - -# dd494acce5da42bca7ce70da531c030d -#: ../../source/training/tot/501_adult_learning.rst:645 -msgid "" -"Degeng, N.S. 2003. Evaluasi Pembelajaran. Makalah disampaikan dalam acara TOT" -msgstr "" -"Degeng, N.S. 2003. Evaluasi Pembelajaran. Makalah disampaikan dalam acara TOT" - -# d32f1e59d54d4bd18908bd7cd5d8416a -#: ../../source/training/tot/501_adult_learning.rst:645 -msgid "AA dan Pekerti dosen Kopertis Wilayah VII tanggal 15-21 Juni 2003." -msgstr "AA dan Pekerti dosen Kopertis Wilayah VII tanggal 15-21 Juni 2003." - -# 3f5b363d52354d45b76d6f469cef18ea -#: ../../source/training/tot/501_adult_learning.rst:647 -msgid "Lanandi, A.G. 1982. Pendidikan Orang Dewasa. Jakarta: PT Gramedia." -msgstr "Lanandi, A.G. 1982. Pendidikan Orang Dewasa. Jakarta: PT Gramedia." - -# cb5604b70d904c488f20f7c28773196c -#: ../../source/training/tot/501_adult_learning.rst:650 -msgid "Mc. Tighe, JU and Ferrara (1995). Assessing learning in the classroom." -msgstr "Mc. Tighe, JU and Ferrara (1995). Assessing learning in the classroom." - -# 3aec9fabde26433c9573b596ec21c3fa -#: ../../source/training/tot/501_adult_learning.rst:650 -msgid "Website: ttp://www.msd. net/Assessment/authenticassessment. html." -msgstr "Website: ttp://www.msd. net/Assessment/authenticassessment. html." - -# 490b81f814fd4c6d8f783b2e5c0f5ca1 -#: ../../source/training/tot/501_adult_learning.rst:653 -msgid "" -"Phopham, W. James, 1995. Classroom Assessment: What Teachers Need to Know," -msgstr "" -"Phopham, W. James, 1995. Classroom Assessment: What Teachers Need to Know," - -# 9a2b821857804ddc875f7c12e151f487 -#: ../../source/training/tot/501_adult_learning.rst:653 -msgid "United States of America, Allyn & Bacon – Simon & Scuster Company." -msgstr "United States of America, Allyn & Bacon – Simon & Scuster Company." - -# 3fa9a3db4a1e4d55ac96f586ee8f5084 -#: ../../source/training/tot/501_adult_learning.rst:656 -msgid "Supriyanto. 2007. Pendidikan Orang Dewasa (Dari Teori Hingga Aplikasi)," -msgstr "" -"Supriyanto. 2007. Pendidikan Orang Dewasa (Dari Teori Hingga Aplikasi)," - -# 83fa94f117324c9d85ce3c070bc4567c -#: ../../source/training/tot/501_adult_learning.rst:656 -msgid "Banjarbaru: Bumi Aksara" -msgstr "Banjarbaru: Bumi Aksara" - -# b50da1a556984d6f88c0d4796a423ac2 -#: ../../source/training/tot/501_adult_learning.rst:658 -msgid "Zainudin. 1986. Andragogi. Bandung: Penerbit Angkasa" -msgstr "Zainudin. 1986. Andragogi. Bandung: Penerbit Angkasa" - -# ad5bc2a6d9f24e08972aec2844ecdfc3 -#: ../../source/training/tot/501_adult_learning.rst:660 -msgid "" -"Padmowihardjo, S. (2006). Pendidikan Orang Dewasa. Jakarta: Universitas " -"Terbuka." -msgstr "" -"Padmowihardjo, S. (2006). Pendidikan Orang Dewasa. Jakarta: Universitas " -"Terbuka." - -# f3efde3c3d91434eb1e5dac36c23617b -#: ../../source/training/tot/501_adult_learning.rst:662 -msgid "" -"http://ippamaradhi.multiply.com/journal/item/102/10-Prinsip-Pendidikan-Orang-" -"Dewasa" -msgstr "" -"http://ippamaradhi.multiply.com/journal/item/102/10-Prinsip-Pendidikan-Orang-" -"Dewasa" diff --git a/docs/i18n/id/LC_MESSAGES/training/tot/502_communication_skills.po b/docs/i18n/id/LC_MESSAGES/training/tot/502_communication_skills.po deleted file mode 100644 index 7009ff93..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/tot/502_communication_skills.po +++ /dev/null @@ -1,3104 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 45cd697930ed44478d1fae3996d290f9 -#: ../../source/training/tot/502_communication_skills.rst:2 -msgid "Module 2: Communication Skills" -msgstr "Modul 2:Keterampilan Berkomunikasi" - -# a941d990cba14803b15f46774cef5abd -#: ../../source/training/tot/502_communication_skills.rst:5 -msgid "Overview" -msgstr "Gambaran umum" - -# 7f3375dc88354e2288951121ea645247 -#: ../../source/training/tot/502_communication_skills.rst:8 -msgid "Basic Competency" -msgstr "Kompetensi Dasar" - -# f41be223b730495ba1f65d27fd47db8f -#: ../../source/training/tot/502_communication_skills.rst:9 -msgid "Demonstrate communication skills in training" -msgstr "Mendemonstrasikan keterampilan berkomunikasi dalam pelatihan" - -# 3e37905d166d4ca6ae4aa8f0f82b54cb -#: ../../source/training/tot/502_communication_skills.rst:12 -msgid "Indicators" -msgstr "Indikator" - -# e4056b44ddb846fb9036db0e5102ac77 -#: ../../source/training/tot/502_communication_skills.rst:13 -msgid "Describe the principles of effective communication" -msgstr "Mendeskripsikan prinsip-prinsip dari komunikasi efektif" - -# 810bd614b8414985845e5fafd90bf417 -#: ../../source/training/tot/502_communication_skills.rst:14 -msgid "Describe the communication models in training" -msgstr "Mendeskripsikan model-model komunikasi dalam pelatihan" - -# b2ea51c505b744f98af275d66b4e348e -#: ../../source/training/tot/502_communication_skills.rst:15 -msgid "Demonstrate nine basic skills components in teaching/ training" -msgstr "" -"Mendemonstrasikan 9 komponen dasar keterampilan dasar dalam pembelajaran/" -"pelatihan" - -# 4943923109184e418f0327907f7bd58e -#: ../../source/training/tot/502_communication_skills.rst:18 -msgid "Materials" -msgstr "Materi" - -# eed478d977fa49d3b86660cad8fcbe4e -#: ../../source/training/tot/502_communication_skills.rst:19 -msgid "**Communication Skills**" -msgstr "**Keterampilan berkomunikasi**" - -# daac9ef68ea549da94f482c73879e19b -#: ../../source/training/tot/502_communication_skills.rst:21 -msgid "The principles of effective communication" -msgstr "Prinsip dari komunikasi efektif" - -# fb50d2ac82f04cc19658ee3815cfeeba -#: ../../source/training/tot/502_communication_skills.rst:22 -msgid "Communication models in training" -msgstr "Gaya Berkomunikasi dalam Pelatihan" - -# b1bd41cca59e49b196b6a4e5885e6a57 -#: ../../source/training/tot/502_communication_skills.rst:23 -msgid "Components of teaching / training basic skills" -msgstr "Komponen dari keterampilan mengajar/melatih" - -# 4f83ec6074e74c0dbee617fe7f1d8048 -#: ../../source/training/tot/502_communication_skills.rst:26 -msgid "Activities" -msgstr "Aktivitas" - -# 0ab09aebb9bf4951be9e50e30f3c6bbf -#: ../../source/training/tot/502_communication_skills.rst:28 -msgid "**TIME**" -msgstr "**WAKTU**" - -# 09d79e42010b4d94bc609c7ab7f7d955 -#: ../../source/training/tot/502_communication_skills.rst:28 -msgid "**ACTIVITY**" -msgstr "**KEGIATAN**" - -# cfa745a616e64d50a48c52ac5835d58c -#: ../../source/training/tot/502_communication_skills.rst:28 -msgid "**SUMMARY**" -msgstr "**IKHTISAR**" - -# 51ddf12c7c6742c386cc8c85e4bbe632 -#: ../../source/training/tot/502_communication_skills.rst:28 -msgid "**MATERIAL**" -msgstr "**MATERIAL**" - -# f22b348d581b427eabda3b09b948c1bc -# 80358e4da56e4e3d964f5a0ffc1a9e0f -#: ../../source/training/tot/502_communication_skills.rst:30 -#: ../../source/training/tot/502_communication_skills.rst:71 -msgid "5 mins" -msgstr "5 menit" - -# 70dd96f4ee874f06bf9e2bb9fde688e6 -#: ../../source/training/tot/502_communication_skills.rst:30 -msgid "" -"The facilitator welcomes the participants and opens the training with prayer" -msgstr "" -"Fasilitator mengucapkan selamat datang di pelatihan dan membuka pelatihan " -"dengan doa pembukaan." - -# 4a1c92ae9a4f43d5a729b3793f58c3b6 -#: ../../source/training/tot/502_communication_skills.rst:32 -msgid "Informs the rules of training" -msgstr "Menginformasikan tata tertib pelatihan" - -# 9650345c1a0d43a58a77ece91e7b8b58 -#: ../../source/training/tot/502_communication_skills.rst:33 -msgid "The facilitator explains the topic and the purpose of the first session" -msgstr "Fasilitator menjelaskan tentang topik dan tujuan dari sesi pertama" - -# 489b3b5b7c384050a3646b010e9909b4 -#: ../../source/training/tot/502_communication_skills.rst:30 -msgid "Opening Information" -msgstr "Informasi pembukaan" - -# 4cb092bbf2dc4443a148a02ecbb50ade -# c74f3598cd234527b5fb57fdd723d7af -# 38cd350841a94bceb9dd2a9dcabf6d22 -# 90c3fb0e949744bfaed500d1ed9f92b2 -#: ../../source/training/tot/502_communication_skills.rst:30 -#: ../../source/training/tot/502_communication_skills.rst:36 -#: ../../source/training/tot/502_communication_skills.rst:47 -#: ../../source/training/tot/502_communication_skills.rst:59 -msgid "PPT" -msgstr "PPT" - -# 97478070ae12418c88c3ea52c575fe0d -#: ../../source/training/tot/502_communication_skills.rst:36 -msgid "20 mins" -msgstr "20 menit" - -# c7612db2512d46439d4e4d9229920d2a -#: ../../source/training/tot/502_communication_skills.rst:36 -msgid "" -"The facilitator asks two participants to come forward to communicate without " -"being given any topic" -msgstr "" -"Fasilitator meminta dua orang peserta untuk berpartisipasi dalam diskusi " -"singkat tanpa memberitahu terlebih dahulu mengenai topik yang dibahas dalam " -"pelatihan" - -# f535976dcb324241a61abba53128344a -#: ../../source/training/tot/502_communication_skills.rst:38 -msgid "" -"Afterwards, ask 2 other participants to communicate with a topic and give " -"them time to have a small talk first" -msgstr "" -"Setelah itu, mintalah 2 peserta untuk berdiskusi mengenai topik dan berikan " -"mereka waktu untuk berdiskusi ringan terlebih dahulu" - -# 09136a2ad14a4099af41da8d54fd6f6f -#: ../../source/training/tot/502_communication_skills.rst:41 -msgid "" -"Participants are asked to analyze the difference of the two communications " -"demonstrated, to look for the the answer of what makes effective " -"communication" -msgstr "" -"Para peserta diminta untuk menganalisis perbedaan dari kedua demonstrasi " -"teknik berkomunikasi, untuk mendapatkan jawaban manakah yang mampu " -"menciptakan komunikasi yang efektif" - -# 2e79578110c247c1952bf8578ca0c68e -#: ../../source/training/tot/502_communication_skills.rst:44 -msgid "Trainer reinforces with the principles of effective communication" -msgstr "Pelatih menegaskan prinsip-prinsip dari komunikasi efektif" - -# 8f1fcda506814bb1b52f9016e1933a16 -#: ../../source/training/tot/502_communication_skills.rst:36 -msgid "Demonstration Question & Answers" -msgstr "Demontrasi Pertanyaan & Jawaban" - -# f4af4338073f44d3b503f77261e3f91a -# 2ecf8cdfcc594de2860c79bbca945fda -#: ../../source/training/tot/502_communication_skills.rst:47 -#: ../../source/training/tot/502_communication_skills.rst:59 -msgid "30 mins" -msgstr "30 menit" - -# f3d80c9de92f4fee8596dc38c19db8d6 -#: ../../source/training/tot/502_communication_skills.rst:47 -msgid "" -"Facilitator raises an issue of communication model in training to the " -"participants" -msgstr "" -"Fasilitator memberikan masalah dari model komunikasi dalam pelatihan untuk " -"para peserta" - -# 4155bfce8a0a4b2cbda3b50e845dfce6 -#: ../../source/training/tot/502_communication_skills.rst:49 -msgid "Give participants 2-5 minutes the chance to **think** independently" -msgstr "" -"Secara mandiri peserta diberi kesempatan 2-5 menit untuk **berfikir**. " - -# 4b53732e46d04a848ff93a0082934276 -#: ../../source/training/tot/502_communication_skills.rst:51 -msgid "" -"When finished, ask them to discuss the same issue with the person next to " -"them for 3-5 minutes (**pair**)" -msgstr "" -"Ketika sudah selesai, mintalah mereka untuk berdiskusi tentang masalah yang " -"sama dengan rekan di sebelahnya selama 3-5 menit (**berpasangan**)" - -# 837df37c3c6f424eabb0cc83222bdae0 -#: ../../source/training/tot/502_communication_skills.rst:54 -msgid "" -"Finally, select a pair to express their opinions in front of the class " -"(**share**)" -msgstr "" -"Akhirnya pilihlah satu pasangan untuk mengemukakan pendapat mereka di depan " -"kelas (**share**)." - -# 9e3273715f704098a3e88f9ab00b2d55 -#: ../../source/training/tot/502_communication_skills.rst:56 -msgid "Facilitator reinforces with communication models in training" -msgstr "" -"Fasilitator menjelaskan tentang model-model berkomunikasi dalam pelatihan" - -# ff59aa58c80a481b9116b8c7564a9ca9 -#: ../../source/training/tot/502_communication_skills.rst:47 -msgid "Think, pair and share" -msgstr "Berpikir, berdiskusi, dan berbagi" - -# 714c0fb34cd747cc88d8013743813261 -#: ../../source/training/tot/502_communication_skills.rst:59 -msgid "Trainer delivers the materials of 9 basic skills in teaching" -msgstr "Pelatih menjelaskan materi tentang 9 keahlian dasar dalam mengajar" - -# 9155c50f1c964c1497257b86950b5fe4 -#: ../../source/training/tot/502_communication_skills.rst:61 -msgid "" -"Participants are asked to create training materials as a group to practice " -"the 9 basic skills in teaching" -msgstr "" -"Peserta diminta berkelompok untuk membuat materi pelatihan untuk " -"mempraktikkan 9 keterampilan dasar dalam mengajar" - -# 39ade21c2ec44232a72769dd7daf2a3b -#: ../../source/training/tot/502_communication_skills.rst:64 -msgid "2 groups are selected to simulate the basic skills in teaching" -msgstr "Dua kelompok dipilih untuk mensimulasikan keterampilan dasar mengajar" - -# 7e2c933baf494b738cff6ce416779825 -#: ../../source/training/tot/502_communication_skills.rst:66 -msgid "Other participants will act as observers" -msgstr "Peserta yang lain akan bertindak sebagai pengamat" - -# 63fe81f906024e93a93580ce876d90c2 -#: ../../source/training/tot/502_communication_skills.rst:67 -msgid "Discuss the result of the observations" -msgstr "Diskusikan hasil dari pengamatan" - -# c74db8bbd4074f77b7f16b8388905d46 -#: ../../source/training/tot/502_communication_skills.rst:68 -msgid "Facilitator reinforces with the 9 basic skill in teaching" -msgstr "Fasilitator memberi penguatan tentang 9 keterampilan dasar mengajar" - -# 113c2804a8994f5aadefa8da23d44c1a -#: ../../source/training/tot/502_communication_skills.rst:59 -msgid "Simulation" -msgstr "Simulasi" - -# a1ca012445e943518d38f5603ac52528 -#: ../../source/training/tot/502_communication_skills.rst:71 -msgid "" -"The facilitator asks one of the participants to reflect the implementation " -"of the first session" -msgstr "" -"Fasilitator meminta salah seorang peserta untuk merefleksikan implementasi " -"dari sesi pertama" - -# 31512f6783fb436186c36fbe8d4e93f3 -#: ../../source/training/tot/502_communication_skills.rst:71 -msgid "First session reflection and closing" -msgstr "Refleksi sesi pertama dan penutupan" - -# 00fbd192b0d3419bb88469b14dc38618 -#: ../../source/training/tot/502_communication_skills.rst:76 -msgid "Reading Material" -msgstr "Bahan Bacaan" - -# 4179556cee7f4277ab1539a3bc21bcb3 -#: ../../source/training/tot/502_communication_skills.rst:78 -msgid "Foreword" -msgstr "Pendahuluan" - -# f4473baff9c3441bab1a9f0b4daa0a5e -#: ../../source/training/tot/502_communication_skills.rst:79 -msgid "" -"Communication is the main skill for someone to become a trainer. There are " -"several things that need to be understood including the meaning and purpose " -"of communication and Principles of Proper or Effective Communication. So is " -"the case for the trainer of Contingency Plan Development Scenarios using " -"OpenStreetMap (OSM) and QGIS / InaSAFE." -msgstr "" -"Komunikasi adalah keterampilan utama yang harus dimiliki seorang pelatih. " -"Ada beberapa hal yang harus dipahami termasuk maksud dan tujuan dari " -"komunikasi dan prinsip-prinsip yang tepat atau komunikasi yang efektif. Hal " -"yang sama juga diperlukan oleh pelatih Skenario Pembangunan Rencana " -"Kontinjensi menggunakan OpenStreetMap (OSM) dan QGIS / InaSAFE." - -# d3fbf093125147a498aa416f2d1cd36a -#: ../../source/training/tot/502_communication_skills.rst:85 -msgid "" -"Communication in everyday life plays a very important part, this is because " -"communication has the function to connect a person’s wishes to others. " -"Specifically, communication runs four functions, i.e. the function of " -"control, motivation, emotional expression and information." -msgstr "" -"Komunikasi dalam kehidupan sehari-hari memegang peranan yang sangat penting, " -"hal ini dikarenakan komunikasi memiliki fungsi untuk menghubungkan keinginan " -"seseorang kepada orang lain. Secara spesifik komunikasi menjalankan empat " -"fungsi, yaitu: fungsi kendali, motivasi, pengungkapan emosional dan " -"informasi. " - -# 968f2fecb25c4736a8473a289e275efd -#: ../../source/training/tot/502_communication_skills.rst:90 -msgid "" -"Communication is generally defined as the process of creating the meaning of " -"ideas or ideas presented. The trainer’s interests in training will naturally " -"require effective communication, used as a mean to convey ideas and motivate " -"someone to do something in accordance with the purpose of the training. The " -"ideas will be presented in this training are all about disaster, in " -"particular the Contingency Plan Development Scenarios using OpenStreetMap " -"(OSM) and QGIS / InaSAFE. Related to this, the trainer has to have the basic " -"skills in teaching or training because training is basically teaching the " -"participants to be able to do something." -msgstr "" -"Komunikasi secara umum diartikan sebagai proses penciptaan arti terhadap " -"gagasan atau ide yang disampaikan. Kepentingan pelatih dalam melatih tentu " -"saja diperlukan komunikasi efektif yang digunakan sebagai sarana untuk " -"menyampaikan gagasan dan memotivasi seseorang untuk melakukan sesuatu sesuai " -"dengan tujuan pelatihan. Gagasan yang akan disampaikan dalam pelatihan ini " -"adalah tentang kebencanaan khususnya pada Pengembangan Skenario untuk " -"Rencana Kontijensi dengan menggunakan OpenStreetMap (OSM) dan QGIS/InaSafe. " -"Berkaitan dengan hal tersebut yang harus dimiliki pelatih adalah " -"keterampilan dasar mengajar atau melatih karena pada prinsipnya melatih " -"adalah mengajar kepada peserta untuk dapat melakukan sesuatu." - -# 8951f647d110490487fc4e83c65dc177 -#: ../../source/training/tot/502_communication_skills.rst:101 -msgid "1. The principles of effective communication" -msgstr "1. Prinsip-prinsip dari komunikasi efektif" - -# c4fcd395ab914c8c944af9553243389c -#: ../../source/training/tot/502_communication_skills.rst:102 -msgid "" -"Communication is generally defined as the process of creating the meaning of " -"ideas or ideas presented. In this case communication requires at least 4 " -"components or elements, i.e. (1) The sender or messenger/ communicator, (2) " -"the message, (3) the recipient of the message/ communicant, (4) Media/ " -"channel. In effective communication process, communicator and communicant " -"not only performed linear communication, but also expected to performed " -"circular communication." -msgstr "" -"Komunikasi secara umum diartikan sebagai proses penciptaan arti terhadap " -"gagasan atau ide yang disampaikan. Dalam hal ini komunikasi diperlukan " -"sekurang-kurangnya 4 komponen atau unsur, yaitu: (1) Pengirim atau pembawa " -"pesan/ komunikator, (2) Isi Pesan , (3) Penerima pesan/komunikan, (4) Media/" -"saluran . Pada proses komunikasi yang efektif, komunikator dan komunikan " -"tidak hanya berkomunikasi yang bersifat linier, tetapi diharapkan juga " -"bersifat sirkuler." - -# dee3cb0048ac44eb837c1e746d852776 -#: ../../source/training/tot/502_communication_skills.rst:110 -msgid "" -"Linear communication model is a process that consists of two straight lines, " -"where the communication process starts from the communicator and ends at the " -"communicant. The circular model of communication, on the other hand, is a " -"communication process that not only starts from the communicator and ends at " -"the communicant, but also pays attention to the feedback from the " -"communicant, making the model a full circle process. This means that the " -"trainer can be the source of information at one time and the recipient at " -"another time, vice versa. Participants can be the recipient of information " -"but also the source of information. So communication is a simultaneous " -"notice or exchange." -msgstr "" -"Model komunikasi linier adalah proses yang hanya terdiri dari dua garis " -"lurus, dimana proses komunikasi berawal dari komunikator dan berakhir pada " -"komunikan. Sedangkan komunikasi model sirkuler adalah proses komunikasi yang " -"tidak hanya berawal dari komunikator dan berakhir pada komunikan, tetapi " -"memperhatikan adanya feedback dari komunikan, sehingga komunikasi sirkuler " -"merupakan proses satu lingkaran penuh. Artinya suatu saat pelatih " -"berkedudukan sebagai sumber informasi tetapi pada saat yang lain sebagai " -"penerima informasi, begitu sebaliknya. Peserta bisa sebagai penerima " -"informasi tetapi bisa juga sebagai sumber informasi. Jadi komunikasi adalah " -"sebuah pemberitahuan atau pertukaran." - -# ff700ce28289468c8e79f9693e0523e8 -#: ../../source/training/tot/502_communication_skills.rst:120 -msgid "" -"The communication process indicates that the trainee can act both as the " -"recipient of information/ message and the source of information/ message. " -"But the trainer as the actor in the process of communication still has to " -"control the training process. Therefore the trainer remains as the " -"communicator, as communicator plays a very important part especially in " -"controlling the course of communication, so that the message is well " -"received by the recipient (communicant) or the participants. This is in " -"accordance with the function of communication." -msgstr "" -"Proses komunikasi di atas menunjukkan bahwa peserta pelatihan bisa berperan " -"sebagai penerima informasi/pesan dan bisa sebagai sumber informasi/pesan. " -"Tetapi pelatih sebagai pelaku dalam proses komunikasi, tetap harus " -"mengendalikan proses pelatihan. Untuk itu pelatih tetap harus memposisikan " -"sebagai komunikator, karena komunikator memegang peranan yang sangat penting " -"terutama dalam mengendalikan jalannya komunikasi, sehingga pesan tersebut " -"diterima oleh penerima (komunikan) atau peserta pelatihan secara baik. Hal " -"tersebut sesuai dengan fungsi komunikasi." - -# c1af829c7f254d9496b9b7dd86362e9a -#: ../../source/training/tot/502_communication_skills.rst:129 -msgid "" -"The function of communication according to Gordon I Zinmmerman in Thomas M. " -"Scheidel (1976) is a function of the content, which involves the exchange of " -"information we need to complete our task, and the function of relationship, " -"which involves the exchange of information about how our relationship is " -"with others. While the function of communication according to Thomas M. " -"Scheidel (1976) is: \"We communicate primarily to represent and support self-" -"identity, to establish social contact, to influence others to feel, think " -"and act as we want." -msgstr "" -"Fungsi komunikasi menurut Gordon I Zinmmerman dalam Thomas M. Scheidel " -"(1976) adalah fungsi isi, yg melibatkan pertukaran informasi yang kita " -"perlukan untuk menyelesaikan tugas kita, dan fungsi hubungan, yg melibatkan " -"pertukaran informasi mengenai bagaimana hubungan kita dengan orang lain. " -"Sedangkan fungsi komunikasi menurut Thomas M. Scheidel (1976) adalah: “Kita " -"berkomunikasi terutama untuk menyatakan dan mendukung identitas diri, untuk " -"membangun kontak sosial, mempengaruhi orang lain untuk merasa, berfikir dan " -"bertindak seperti yg kita inginkan." - -# 286f2ca409a74599be619f2170b58650 -#: ../../source/training/tot/502_communication_skills.rst:138 -msgid "" -"The two opinions above indicate that the purpose of communication is for the " -"recipient to understand and comprehend the message conveyed by the " -"messenger. Trainers are expected to explain the wish or the idea according " -"to the purpose of the training to the participants with a simple but precise " -"or accurate way. Here communication process is expected to pay attention to " -"the feedback from the participants." -msgstr "" -"Dua pendapat di atas menunjukkan bahwa tujuan komunikasi adalah penerima " -"pesan dapat mengerti dan memahami pesan yang disampaikan pemberi pesan. " -"Pelatih diharapkan mampu menjelaskan keinginan atau ide sesuai tujuan " -"pelatihan kepada peserta dengan sederhana namun tepat atau akurat. Berikut " -"ini proses komunikasi yang diharapkan untuk memperhatikan kepada masukan " -"dari peserta. " - -# 5a1ddc873d8d474581207051f24b8bf0 -#: ../../source/training/tot/502_communication_skills.rst:145 -msgid "" -"Communication is the message conveyed to the communicant (recipient) by the " -"communicator (source) through certain channels either directly/ indirectly " -"for the purpose of giving impact/ effect to the communicant as desired by " -"the communicator. It goes through 5 stages, i.e. (1) Interpretation, (2) " -"Encryption, (3) Delivery, (4) Acceptance, and (5) Feedback. To achieve the " -"objective of communication, the principles of effective communication are " -"also required. To have a smooth communication, it is necessary to use the " -"principle of effective communication. Principles include Respect, Empathy, " -"Audible, Clarity, and Humble." -msgstr "" -"Proses komunikasi di atas menunjukkan bahwa komunikasi merupakan pesan yang " -"disampaikan kepada komunikan (penerima) dari komunikator (sumber) melalui " -"saluran-saluran tertentu baik secara langsung/tidak langsung dengan maksud " -"memberikan dampak/effect kepada komunikan sesuai dengan yang diingikan " -"komunikator. Proses komunikasi tersebut melalui 5 tahap, yaitu: (1) Tahap " -"pertama “Penginterpretasian”, (2) Tahap kedua “Penyandian” , (3) Tahap " -"ketiga “Pengiriman” , (4) Tahap keempat “Penerimaan” , dan (5) Tahap kelima " -"“Feedback/Umpan balik” . Untuk mencapai tujuan komunikasi diperlukan juga " -"penggunaan prinsip-prinsip komunikasi efektif. Supaya komunikasi berjalan " -"dengan baik, maka diperlukan penggunaan prinsip komunikasi efektif. Prinsip " -"itu antara lain: *Respect, Empathy, Audible, Clarity, Humble*." - -# 4d4b8b084e57466884ac82c0175dcac9 -#: ../../source/training/tot/502_communication_skills.rst:155 -msgid "**Respect**." -msgstr "**Respek**." - -# 4d98af39fba9466bb5eff213242aa4df -#: ../../source/training/tot/502_communication_skills.rst:157 -msgid "" -"Respect is the positive feeling or respect for the listener. Everyone wants " -"to be appreciated and respected and it has become the need of each " -"individual. For that reason, the trainer is expected to respect the other " -"person, or in this case the trainees." -msgstr "" -"Respect adalah perasaan positif atau penghormatan diri kepada lawan bicara. " -"Semua orang ingin dihargai dan dihormati dan menjadi kebutuhan setiap " -"individu. Untuk itu pelatih diharapkan menghargai lawan bicara atau dalam " -"hal ini adalah peserta pelatihan." - -# baee2f16e08746b7abcd6048b9afe26a -#: ../../source/training/tot/502_communication_skills.rst:162 -msgid "**Empathy**." -msgstr "**Empati**." - -# c932b9cf22954127b52b73bbd420c66f -#: ../../source/training/tot/502_communication_skills.rst:164 -msgid "" -"Empathy is the ability to put yourself in situations or conditions faced by " -"others. Communication will be well established in accordance with good " -"psychological condition of our counterpart. To empathize means that the " -"trainer has to put himself as a good listener, even before anyone else " -"listens to him. And he must be able to feel what is perceived by the " -"trainees." -msgstr "" -"Empati adalah kemampuan untuk menempatkan diri pada situasi atau kondisi " -"yang tengah dihadapi orang lain. Komunikasi akan terjalin dengan baik sesuai " -"kondisi psikologis lawan bicara. Ber-Empati artinya pelatih harus " -"menempatkan diri sebagai pendengar yang baik, bahkan sebelum orang lain " -"mendengarkan kita. Dan pelatih harus mampu merasakan apa yang dirasakan " -"oleh orang lain dalam hal ini peserta pelatihan." - -# cddc5f17d8364f4999c5192971967ea7 -#: ../../source/training/tot/502_communication_skills.rst:171 -msgid "**Audible**." -msgstr "**Audible/Dapat Didengar**" - -# 1371cf0e0a294183b12935c926813ff7 -#: ../../source/training/tot/502_communication_skills.rst:173 -msgid "" -"Audible implies that the message must be able to be heard and understood. In " -"this matter what has to be done by the trainer are" -msgstr "" -"Audible mengandung makna bahwa pesan harus dapat didengarkan dan dimengerti. " -"Dalam kepentingan ini yang harus dilakukan pelatih adalah:" - -# 338df5e3cf6d4546b455eb32dfb99554 -#: ../../source/training/tot/502_communication_skills.rst:175 -msgid "" -"The message must be easily understood, using proper and correct grammar. " -"Avoid languages unfamiliar to others." -msgstr "" -"Pesan harus mudah dipahami, menggunakan bahasa yang baik dan benar. Hindari " -"bahasa yang tidak dipahami oleh lawan bicara." - -# 60a9ed9eadb04308b3d308bec0890ff2 -#: ../../source/training/tot/502_communication_skills.rst:177 -msgid "" -"Convey the important part of the message by simplifying the message, " -"straight to the point because most people don’t like listening to long-" -"winded things." -msgstr "" -"Pesan disampaikan yang penting, dengan cara menyederhanakan pesan, langsung " -"saja pada inti persoalan karena sebagian besar orang tidak suka mendengar " -"yang bertele-tele." - -# 230d4e7bc3114a30935279aa53f3e273 -#: ../../source/training/tot/502_communication_skills.rst:180 -msgid "" -"Use body language. Facial expressions, eye contact, hand gestures and body " -"positions can be easily read by the interlocutor." -msgstr "" -"Menggunakan bahasa tubuh. Mimik wajah, kontak mata, gerakan tangan dan " -"posisi badan bisa dengan mudah terbaca oleh lawan bicara. " - -# 96053ca984a44f628213b66389e6528e -#: ../../source/training/tot/502_communication_skills.rst:182 -msgid "" -"Use illustrations or examples. Analogy really helps in conveying the " -"message. You could use real life examples and illustrations." -msgstr "" -"Menggunakan ilustrasi atau contoh. Analogi sangat membantu dalam penyampaian " -"pesan. Dapat digunakan Ilustrasi dan contoh nyata." - -# 7fcb879f22344fe99136c21b2353956c -#: ../../source/training/tot/502_communication_skills.rst:185 -msgid "**Clarity**." -msgstr "**Clarity/Jelas**." - -# 2ab5c6fac8234000ba782384f5d8855a -#: ../../source/training/tot/502_communication_skills.rst:187 -msgid "" -"Clarity is the clarity of the messages we convey. On this principle the " -"trainer has set clear objectives before the training and uses a good tone of " -"voice." -msgstr "" -"Clarity adalah kejelasan dari pesan yang kita sampaikan. Pada prinsip ini " -"pelatih menetapkan tujuan secara jelas sebelum pelaksanaan pelatihan dan " -"menggunakan intonasi suara yang baik." - -# b09d45b2866d40c28057dc84540e2436 -#: ../../source/training/tot/502_communication_skills.rst:191 -msgid "**Humble**." -msgstr "**Humble/Rendah Hati**" - -# ac91203c535d466a933860484901d091 -#: ../../source/training/tot/502_communication_skills.rst:193 -msgid "" -"Humility gives positive prestige for the communicator. In this case, humble " -"is done by giving participants a chance to speak first and the trainer being " -"a good listener. This attitude builds respect and eventually develops " -"respect for the participants." -msgstr "" -"Sikap rendah hati memberikan pamor positif pada komunikator. Dalam " -"kepentingan ini rendah hati dilakukan dengan memberikan kesempatan kepada " -"peserta untuk berbicara terlebih dahulu dan pelatih menjadi pendengar yang " -"baik. Sikap ini membangun rasa hormat dan pada akhirnya mengembangkan " -"respek kepada peserta. " - -# 1fb9211d8e3f4c84b7891a7a0ba09a18 -#: ../../source/training/tot/502_communication_skills.rst:200 -msgid "2. Communication models in training" -msgstr "2. Gaya Berkomunikasi dalam Pelatihan" - -# effc742c553941d7a391216b6a570ce2 -#: ../../source/training/tot/502_communication_skills.rst:201 -msgid "" -"Communication in training is a process of delivering communication " -"conditioned for training purposes. The training process is essentially a " -"communication process delivering messages containing training materials. In " -"this regard the training is expected to use a circular model of " -"communication, which is a process that not only starts from the communicator " -"and ends at communicant, but also pays attention to the feedbacks from the " -"communicant, to make the communication effective." -msgstr "" -"Komunikasi dalam pelatihan adalah adalah proses penyampaian komunikasi yang " -"dikondisikan untuk tujuan pelatihan. Proses pelatihan pada hakekatnya " -"adalah proses komunikasi yang merupakan penyampaian pesan berisi materi-" -"materi pelatihan. Berkaitan dengan hal tersebut dalam pelatihan diharapkan " -"menggunakan komunikasi model sirkuler, yaitu proses komunikasi yang tidak " -"hanya berawal dari komunikator dan berakhir pada komunikan, tetapi " -"memperhatikan adanya feedback dari komunikan, sehingga komunikasi bisa " -"efektif. " - -# 3edb06acad364f3d834be0249e1cc75c -#: ../../source/training/tot/502_communication_skills.rst:209 -msgid "" -"Effective communication in training is expected to use verbal and non-verbal " -"communication. Verbal communication is communication using verbal symbols/ " -"words verbally. Non-verbal communication is the kind of communication not " -"using verbal words, but gestures, body language, facial expressions, and eye " -"contact. It could also be done with the use of objects such as clothes, " -"haircuts and so forth." -msgstr "" -"Komunikasi efektif dalam pelatihan, diharapkan menggunakan komunikasi verbal " -"dan non verbal. Komunikasi verbal adalah komunikasi dengan menggunakan " -"simbol-simbol verbal/dengan kata atau secara lisan. Sedangkan komunikasi " -"non verbal adalah komunikasi dengan tidak menggunakan kata-kata, tetapi " -"menggunkan gerak isyarat, bahasa tubuh, ekspresi wajah, kontak mata. Bisa " -"juga dengan penggunaan objek seperti pakaian, potongan rambut dan lain " -"sebagainya. " - -# 46284ae2b7414a5ba0a4183982ec990d -#: ../../source/training/tot/502_communication_skills.rst:216 -msgid "" -"Non-verbal communication will help the trainer to become an interesting " -"speaker. Verbal communication has to be supported by means of talking such " -"as intonation, giving emphasis, sound quality, style of speech and emotion. " -"It also uses gestures, body language, facial expressions, eye contact, and " -"supported by the use of objects such as clothes, haircuts, and so forth." -msgstr "" -"Komunikasi non verbal akan membantu pelatih untuk menjadi pembicara yang " -"menarik. Dalam komunikas verbal atau lisan harus didukung dengan cara " -"berbicara seperti intonasi, pemberian tekanan, kualitas suara, gaya " -"berbicara dan gaya emosi. Selain itu juga menggunakan gerak isyarat, bahasa " -"tubuh, ekspresi wajah, kontak mata. Dan didukung juga dengan penggunaan " -"objek seperti pakaian, potongan rambut dan lain sebagainya." - -# c3a1acf773384ef79e016622f3d4b2b8 -#: ../../source/training/tot/502_communication_skills.rst:223 -msgid "Training methods" -msgstr "Metode Pelatihan" - -# 21e22405e54b458691f3c545873659fc -#: ../../source/training/tot/502_communication_skills.rst:224 -msgid "" -"Training is essentially a learning process that contains three elements, i." -"e. inputs (raw materials to be processed), process (activity to process " -"inputs) and outputs (results that have been processed). Input of the " -"training is the participants before starting the training, the training " -"process is the interaction between the components of teaching and learning " -"which are the objectives, materials, methods, participants, facilities and " -"assessment. The output of the training is the participants after finishing " -"the training." -msgstr "" -"Pelatihan pada hakikatnya adalah suatu proses belajar mengajar yang " -"mengandung tiga unsur, yaitu input (bahan mentah yang akan diolah), process " -"(kegiatan mengolah input) dan output (hasil yang telah diolah). Input " -"pelatihan adalah peserta sebelum mengikuti pelatihan, proses pelatihan " -"adalah interaksi antara komponen-komponen belajar mengajar yaitu tujuan, " -"bahan, metode, peserta pelatihan, fasilitas dan penilaian. Output dari " -"pelatihan adalah peserta setelah menerima pelatihan." - -# 6b53eada519b47c5a6ae0f0a3f60ec8a -#: ../../source/training/tot/502_communication_skills.rst:232 -msgid "" -"A process is considered good if the output quality is better than the input. " -"The learning process or training is a behavioral change, which occurs as the " -"result of experience. This means it can only be called as a learning process " -"if a person is showing different behavior. He needs to prove the new " -"knowledge of facts, or do something which he couldn’t previously. Thus, the " -"learning process puts someone from one capability or competence status to " -"the other." -msgstr "" -"Suatu proses dipandang baik apabila kualitas output lebih baik dari pada " -"input. Proses belajar atau pelatihan adalah suatu perubahan tingkah laku, " -"yang terjadi sebagai hasil pengalaman. Ini berarti, hanya dapat dikatakan " -"terjadi proses belajar apabila seseorang menunjukkan tingkah laku yang tidak " -"sama. Jika ia dapat membuktikan pengetahuan tentang fakta-fakta baru atau ia " -"bisa melakukan sesuatu, yang sebelumnya ia tidak dapat melakukannya. Jadi, " -"proses belajar menempatkan seseorang dari status kemampuan atau kecakapan " -"yang satu kepada kemampuan/kecakapan yang lain." - -# f1c5ca27fb01476da81f34d63e69dae8 -#: ../../source/training/tot/502_communication_skills.rst:239 -msgid "" -"Communication model training is one component in the training process " -"because it is actually a method implementation in training. To maximize " -"output in the training, a trainer has to select a training method in " -"accordance with the other components, such as the objectives, materials, " -"trainees, facilities and assessment. So to be able to achieve the objectives " -"set in the training, methods of training and communication should receive " -"special attention in any training process." -msgstr "" -"Model komunikasi pelatihan merupakan salah satu komponen proses dalam " -"pelatihan karena model komunikasi pelatihan sebenarnya merupakan penggunaan " -"metode dalam pelatihan. Untuk memaksimalkan output dalam pelatihan " -"diharapkan metode yang dipilih dalam pelatihanpun sesuai dengan komponen " -"yang lain, yaitu tujuan, bahan, peserta pelatihan, fasilitas dan penilaian. " -"Jadi untuk dapat mencapai tujuan yang telah ditetapkan pada suatu pelatihan, " -"metode pelatihan dan komunikasi harus mendapat perhatian khusus dalam setiap " -"proses pelatihan. " - -# 9535d5cedfd8493590c1f1e35b16a233 -#: ../../source/training/tot/502_communication_skills.rst:247 -msgid "" -"A good trainer should understand the characteristics of participants in " -"order for him to succeed in carrying out his teaching role. A trainer is " -"expected to plan the learning process according to the circumstances and the " -"personality of the trainees. A method is a way to achieve the objectives " -"well. The methods can be classified into 5, i.e. direct learning, indirect " -"learning, interactive learning, experiential learning, and independent " -"learning." -msgstr "" -"Pelatih yang baik seharusnya memahami karakteristik peserta pelatihan agar " -"ia sukses dalam melaksanakan peran mengajarnya. Pelatih diharapkan dapat " -"merencanakan proses belajar mengajar yang sesuai dengan keadaan dan " -"kepribadian peserta pelatihan.\n" -"Metode adalah cara untuk mencapai tujuan sebaik-baiknya. Metode dapat " -"diklasifikasikan menjadi 5, yaitu metode pembelajaran langsung, pembelajaran " -"tidak langsung, pembelajaran interaktif, belajar melalui pengalaman, dan " -"pembelajaran mandiri." - -# 761eb1358f39473c846e08bc9658a5fa -#: ../../source/training/tot/502_communication_skills.rst:254 -msgid "" -"**Direct learning**: Direct learning is the kind of learning that is " -"directed by the trainer. This strategy is effective to determine the " -"information or skills to build incrementally. Direct learning is usually " -"deductive. Examples of the direct learning methods are: lecture, discussion, " -"demonstration and drill exercises." -msgstr "" -"**Pembelajaran langsung**: pembelajaran langsung merupakan pembelajaran yang " -"banyak diarahkan oleh pelatih. Strategi ini efektif untuk menentukan " -"informasi atau membangun keterampilan tahap demi tahap. Pembelajaran " -"langsung biasanya bersifat deduktif. Contoh metode dalam pembelajaran " -"langsung adalah: ceramah, tanya jawab, demonstrasi latihan dan drill. " - -# ac6cd7da2c1c4a0f987e8ba92666d6a8 -#: ../../source/training/tot/502_communication_skills.rst:259 -msgid "" -"**Indirect learning**: Generally centered on the trainees. The role of the " -"trainer shifted from a lecturer to a facilitator. The trainer manages the " -"learning environment and gives the trainees the opportunity to get involved. " -"Examples of indirect methods of learning are inquiry, case studies, problem " -"solving, concept mapping." -msgstr "" -"**Pembelajaran tidak langsung**: Umumnya berpusat pada peserta pelatihan. " -"Peranan pelatih bergeser dari seorang penceramah menjadi fasilitator. " -"Pelatih mengelola lingkungan belajar dan memberikan kesempatan peserta " -"pelatihan untuk terlibat. Contoh metode pembelajaran tidak langsung adalah: " -"inkuiri, studi kasus, pemecahan masalah, peta konsep." - -# a2635cdc87ef48b9897b9419e9056786 -#: ../../source/training/tot/502_communication_skills.rst:264 -msgid "" -"**Interactive learning**: Interactive learning emphasizes on discussion and " -"sharing among participants. Discussion and sharing give trainees the " -"opportunity to react to ideas, the trainer’s or his partner’s experience and " -"approach and to build an alternative way to think and feel. Examples of this " -"method are class discussions, small group discussions or projects, work in " -"pairs." -msgstr "" -"**Pembelajaran interaktif**: Pembelajaran interaktif menekankan pada diskusi " -"dan sharing di antara peserta pelatihan. Diskusi dan sharing memberi " -"kesempatan peserta pelatihan untuk bereaksi terhadap gagasan, pengalaman, " -"pendekatan dan pengetahuan pelatih atau temannya dan untuk membangun cara " -"alternatif untuk berfikir dan merasakan. Contoh merode dalam pembelajaran " -"interaktif adalah: diskusi kelas, diskusi kelompok kecil atau projek, kerja " -"berpasangan. " - -# 2566d5e6e7624fafb98b36555ea93d09 -#: ../../source/training/tot/502_communication_skills.rst:270 -msgid "" -"**Experiential learning**: Empirical learning is oriented on inductive " -"activities, centered on the trainees, and is activity based. Personal " -"reflection on the experience and planning formulation towards implementation " -"in other contexts is a critical factor in an effective empirical learning. " -"Examples of empirical learning method are role playing, observation / " -"survey, and simulation." -msgstr "" -"**Belajar melalui pengalaman**: Pembelajaran empirik berorientasi pada " -"kegiatan induktif, berpusat pada peserta pelatihan, dan berbasis aktivitas. " -"Refleksi pribadi tentang pengalaman dan formulasi perencanaan menuju " -"penerapan pada konteks yang lain merupakan faktor kritis dalam pembelajaran " -"empirik yang efektif. Contoh metode dalam pembelajaran empirik adalah: " -"bermain peran, observasi/survey, simulasi." - -# f51bb180f04a4850930f804a628a36a9 -#: ../../source/training/tot/502_communication_skills.rst:276 -msgid "" -"**Independent learning**: Independent learning is a teaching strategy that " -"aims to develop individual initiative, self-reliance, and self improvement. " -"The focus is on the trainees’ planning with the help from the trainer. Self-" -"learning can also be done with a friend or in a small group. Examples of " -"Independent learning methods are research projects and computer-based " -"learning." -msgstr "" -"**Pembelajaran mandiri**: Belajar mandiri merupakan strategi pembelajaran " -"yang bertujuan untuk membangun inisiatif individu, kemandirian, dan " -"peningkatan diri. Fokusnya adalah pada perencanaan belajar mandiri oleh " -"peserta pelatihan dengan bantuan pelatih. Belajar mandiri juga bisa " -"dilakukan dengan teman atau sebagai bagian dari kelompok kecil. Contoh " -"metode dalam pembelajaran mandiri adalah: projek penelitian, belajar " -"berbasis komputer." - -# 967cd958d87a469887f38bd63295f0c5 -#: ../../source/training/tot/502_communication_skills.rst:283 -msgid "**a. Methods in direct learning**" -msgstr "**a. Metode dalam pembelajaran langsung**" - -# a0a9b51344dd4aeda21793218f464eb6 -#: ../../source/training/tot/502_communication_skills.rst:285 -msgid "" -"Direct learning is usually identified with the lecture method, where " -"learning is presumably making the participants less active. However, direct " -"learning can still be used together with question and answer, " -"demonstrations, and exercises. Furthermore, a few ways can be used to make " -"more this method more effective, for example:" -msgstr "" -"Pembelajaran langsung biasanya diidentikkan dengan metode ceramah, dimana " -"pembelajaran ini disinyalir kurang mengaktifkan peserta. Namun demikian " -"pembelajaran langsung masih dapat digunakan dengan menggunakan metode " -"tanyajawab, demonstrasi, dan latihan. Selanjutnya dapat digunakan beberapa " -"cara untuk lebih mengefektifkan pembelajaran langsung, misalnya:" - -# fc35e5fc77154938aa6686a4e2748830 -#: ../../source/training/tot/502_communication_skills.rst:291 -msgid "" -"Participants review the training materials that have been studied and the " -"new materials recently presented:" -msgstr "" -"Peserta mereview materi pelatihan yang telah dipelajari dan materi baru " -"disajikan kepada peserta: " - -# 139ebc26fa3a4ba5a04477382f2dd213 -#: ../../source/training/tot/502_communication_skills.rst:294 -msgid "materials well managed part by part" -msgstr "materi pelatihan telah diatur per bagian" - -# 4d607d6935a24f7da97a5d33275e39ac -#: ../../source/training/tot/502_communication_skills.rst:295 -msgid "use visual media (important to read)" -msgstr "menggunakan media visual (penting untuk dibaca)" - -# 6a122fdf0c4f43aa98f5beedad14466c -#: ../../source/training/tot/502_communication_skills.rst:297 -msgid "Participants exercise with the trainer’s guidance." -msgstr "Para peserta berlatih dengan didampingi pelatih." - -# 629f70222f044de28d35de3988363bd2 -#: ../../source/training/tot/502_communication_skills.rst:298 -msgid "Participants exercise independently" -msgstr "Para peserta berlatih sendiri-sendiri" - -# bc616af00303481bad84fcc639be5faa -#: ../../source/training/tot/502_communication_skills.rst:299 -msgid "" -"Participants’ improvement of skills/ knowledge are monitored periodically" -msgstr "" -"Peserta dimonitor perolehan keterampilan/pengetahuannya secara periodik." - -# 6d5d6ae29c00444f9bf7ce8da1cc8df5 -#: ../../source/training/tot/502_communication_skills.rst:301 -msgid "" -"**Various methods can be developed when students receive an explanation from " -"the teacher, among others:**" -msgstr "" -"**Berbagai macam metode yang dapat dikembangkan ketika siswa menerima " -"penjelasan dari guru antara lain:**" - -# b504b13c94e44ed3848dd2c5a294bc98 -#: ../../source/training/tot/502_communication_skills.rst:304 -msgid "" -"**Example and analogy**: A trainer provides examples and illustrations " -"associated with the materials. He can also make comparisons between " -"participants' experiences with the training materials." -msgstr "" -"**Contoh dan analogi**: Pelatih menyediakan contoh dan ilustarsi yang " -"terkait dengan materi. Pelatih juga dapat membuat perbandingan antara materi " -"pelatihan dengan pengalaman peserta." - -# 242bbb387b9a42c79403b33a7ff09d3f -#: ../../source/training/tot/502_communication_skills.rst:307 -msgid "" -"**Games**: A trainer uses games in learning. The games are expected to be in " -"accordance with the training topic. Examples of them would be guessing " -"pictures, mystery in a box, or various types of quizzes from TV can be " -"implemented in a training class with some modifications (e.g. who wants to " -"millionaires, GameZone, word games, etc.)." -msgstr "" -"**Permainan**: Pelatih menggunakan permainan dalam pembelajaran. Permainan " -"diharapkan sesuai dengan topik pelatihan. Contoh permainan misalnya tebak " -"gambar, tebak mesteri dalam kotak, atau berbagai jenis kuis di TV dapat " -"diterapkan di kelas pelatihan dengan beberapa modifikasi (misalnya who wants " -"to millioner, gamezone, permainan kata, dll)." - -# 057d240c12af4e8a8020f6b63c731db0 -#: ../../source/training/tot/502_communication_skills.rst:312 -msgid "" -"**Response card**: Trainer asks participants to answer questions on a card " -"or piece of paper anonymously. Question cards or answer cards can be " -"developed. On the cards participants get different questions and they would " -"be asked to answer by raising hands; use open-ended, productive or " -"imaginative questions. On the answer cards the participants get answer " -"cards, he would rasie his hand when the card matches the trainer’s " -"questions; use open-ended, productive or imaginative questions." -msgstr "" -"**Kartu respon**: Pelatih meminta peserta untuk menjawab pertanyaan pada " -"kartu atau potongan kertas dengan tidak menuliskan nama atau identitas lain. " -"Dapat dikembangkan dengan kartu soal ataupun kartu jawab. Pada kartu soal " -"peserta mendapatkan kartu pertanyaan yang berbeda dan menjawab dengan angkat " -"tangan; gunakan pertanyaan terbuka, produktif atau imajinatif. Pada kartu " -"jawab peserta mendapatkan kartu jawab, ia angkat tangan saat kartunya cocok " -"dengan pertanyaan pelatih; gunakan pertanyaan terbuka, produktif atau " -"imajinatif." - -# 272ee5f136464deba786333a0a6c17e6 -#: ../../source/training/tot/502_communication_skills.rst:319 -msgid "" -"**Polls**: A trainer can conduct a short survey to obtain data quickly. This " -"can be done with a verbal survey, for example by asking participants to " -"raise their hands or lift the answer cards" -msgstr "" -"**Poling**: Pelatih melakukan survey yang singkat untuk memperoleh data " -"secara cepat. Hal ini dapat dilakukan dengan survey verbal misalnya dengan " -"meminta peserta mengangkat tangan atau mengangkat kartu jawaban" - -# af35f43e74774b09bde8c10d9e9a2362 -#: ../../source/training/tot/502_communication_skills.rst:322 -msgid "**Problems**: Trainer asks problems related with training topic." -msgstr "" -"**Permasalahan**: Pelatih mengajukan permasalahan yang terkait dengan topik " -"pelatihan." - -# ff4ecb7733a34e94b2b85a4707c23076 -#: ../../source/training/tot/502_communication_skills.rst:323 -msgid "" -"**Demonstrations**: Trainer or participants can demonstrate something " -"according to the topic by using gestures or properties." -msgstr "" -"**Demonstrasi**: Pelatih ataupun peserta dapat mendemonstrasikan sesuatu " -"sesuai topik dengan menggunakan gerak tubuh ataupun alat peraga." - -# 20c261d1be7d4df59a5de4197d3fb1c2 -#: ../../source/training/tot/502_communication_skills.rst:325 -msgid "" -"**Review newspaper or news**: Participants are asked to review newspaper or " -"news from other readings." -msgstr "" -"**Reviu koran atau berita**: peserta diminta mereview koran atau berita pada " -"bacaan lain." - -# e1ca0953e80f48f880eb467356573158 -#: ../../source/training/tot/502_communication_skills.rst:327 -msgid "" -"**Brainstorm**: Participants are asked to argue about something related with " -"the training topics. Opinions will be accommodated for with conclusions " -"drawn on the subject matter discussed." -msgstr "" -"**Curah pendapat**: peserta diminta untuk berpendapat tentang sesuatu sesuai " -"topik pelatihan. Pendapat-pendapat itu ditampung untuk diambil kesimpulan " -"bersama tentang permasalahan yang dibahas." - -# 4d812cd1422d4a45849a2be1c9dd695f -#: ../../source/training/tot/502_communication_skills.rst:331 -msgid "" -"**The method can be developed after the participants received proper " -"explanation from the trainer, among others:**" -msgstr "" -"**Metode yang dapat dikembangkan setelah peserta menerima penjelasan dari " -"pelatih antara lain:**" - -# b29ead379eae426ba64fa7e99a95fb38 -#: ../../source/training/tot/502_communication_skills.rst:334 -msgid "" -"**Sharing notes**: after a series of events trainee compare their notes with " -"other colleagues’" -msgstr "" -"**Berbagi catatan:** setelah serangkaian kegiatan peserta pelatihan " -"membandingkan hasil catatannya dengan catatan rekannya yang lain" - -# cc44393ab05d4620b372ef14c06a5329 -#: ../../source/training/tot/502_communication_skills.rst:336 -msgid "" -"**Q&A**: participants are given the opportunity to ask questions related to " -"the concept and its application. If there are no questions from the " -"participants, the trainer can ask them first." -msgstr "" -"**Tanya jawab**: peserta diberikan kesempatan untuk bertanya terkait dengan " -"konsep dan aplikasinya. Jika tidak ada pertanyaan dari peserta, pelatih " -"dapat memancing dengan bertanya pada peserta. " - -# 070041a4410141aa94afd3387b1da999 -#: ../../source/training/tot/502_communication_skills.rst:339 -msgid "" -"**Headline**: trainer summarizes lessons with key words to be easily " -"remembered." -msgstr "" -"**Headline**: pelatih meringkas pelajaran dengan kata-kata kunci agar mudah " -"diingat." - -# 268b2a375f01491f98ff5b1cadc11657 -#: ../../source/training/tot/502_communication_skills.rst:342 -msgid "" -"**Methods to determine participants’ mastery of the concepts that have been " -"studied**" -msgstr "" -"**Metode untuk mengetahui penguasaan peserta terhadap konsep yang telah " -"dipelajari**" - -# b1f23ca344dc47f6b5bc241fd3cd2dba -#: ../../source/training/tot/502_communication_skills.rst:345 -msgid "" -"**One minute paper**: This activity can be done at the end of training. Ask " -"the participants to take out a piece of paper. Ask an open-ended or closed " -"question related with the concepts that have been studied. Give one or two " -"minutes for participants to answer." -msgstr "" -"**One minute paper**: kegiatan ini dapat dilakukan di akhir pelatihan. " -"Mintalah peserta mengeluarkan secarik kertas. Ajukan sebuah pertanyaan " -"terbuka atau tertutup terkait konsep yang telah dipelajari. Berikan waktu " -"satu atau dua menit bagi peserta untuk menjawabnya. " - -# 865a439441044539b209c37fb79090c9 -#: ../../source/training/tot/502_communication_skills.rst:349 -msgid "" -"**Reflection**: ask one or two participants to come forward and express " -"their impressions towards the learning. Reflection can also provoke feelings " -"and difficulty in following the study." -msgstr "" -"**Refleksi**: mintalah satu atau dua peserta maju di depan kelas dan " -"menceriterakan kesan terhadap pembelajaran. Refleksi juga dapat memancing " -"perasaan dan kesulitan peserta dalam mengikuti pembelajaran. " - -# 7adc0425c0dd4cdebc2b9c91d21ca59a -#: ../../source/training/tot/502_communication_skills.rst:352 -msgid "" -"**Quiz**: participants raise several issues or questions related with the " -"concept and ask other participants to answer. Quiz can be done by including " -"the name of the participants or anonymously. Quiz can also be used with " -"competition, puzzles, or the like. Quiz can be done verbally; using open-" -"ended, productive, or imaginative questions." -msgstr "" -"**Quis**: peserta mengajukan beberapa masalah atau soal terkait konsep dan " -"meminta peserta menjawabnya. Quis dapat dilakukan dengan menyertakan nama " -"peserta maupun tidak mencantumkan nama. Quis juga bisa digunakan dengan adu " -"cepat, teka-teki atau sejenisnya. Quis dapat dilakukan secara lisan; gunakan " -"pertanyaan terbuka, produktif, imajinatif. " - -# 503555d34d4843c78825937a63e0601f -#: ../../source/training/tot/502_communication_skills.rst:357 -msgid "" -"**Tournament**: participants compete in groups to solve problems related to " -"the concepts that have been studied. The winning group will get a certain " -"reward." -msgstr "" -"**Turnamen**: secara berkelompok peserta berkompetisi untuk menyelesaikan " -"masalah yang terkait dengan konsep yang telah dipelajari. Kelompok peserta " -"yang memenangkan turnamen mendapatkan reward tertentu. " - -# 0695bc5608f644088937203dfa2a3f13 -#: ../../source/training/tot/502_communication_skills.rst:360 -msgid "" -"**Review**: Ask participants to review the lessons with others or give them " -"a review test scores." -msgstr "" -"**Review**: Minta peserta untuk mereview isi pelajaran dengan yang lain atau " -"memberi mereka tes skor review." - -# 6bc2cf2a861c4bc59b78909fae25c628 -#: ../../source/training/tot/502_communication_skills.rst:363 -msgid "**b. Indirect learning method**" -msgstr "**b. Pembelajaran tidak langsung**" - -# 408cb554750544ad9cf28950d0d84849 -#: ../../source/training/tot/502_communication_skills.rst:365 -msgid "" -"**Inquiry**: participants conduct observation. Based on the result, they may " -"ask questions. Furthermore, participants formulate allegations, and collect " -"data. Based on the data, participants are asked to conclude." -msgstr "" -"**Metode Inkuiri**: peserta melakukan pengamatan. Berdasarkan hasil " -"pengamatan, mengajukan mengajukan pertanyaan. Selanjutnya peserta merumuskan " -"dugaan, dan mengumpulkan data. Berdasarkan data yang diperoleh, peserta " -"diminta untuk menyimpulkan." - -# 85e327be90aa4a118efa17e39aff346c -#: ../../source/training/tot/502_communication_skills.rst:368 -msgid "" -"**Problem solving**: Each participant is asked to formulate a problem " -"clearly and concisely, identifying factors that cause the problem, collect " -"required information (facts and knowledge), determine various solutions and " -"choose the most appropriate one, test the chosen solution, and review the " -"result." -msgstr "" -"**Metode memecahkan masalah**: Setiap peserta diminta untuk merumuskan " -"masalah dengan jelas dan ringkas. Mengidentifikasi faktor-faktor yang " -"menyebabkan masalah. Mengumpulkan informasi yang dibutuhkan (fakta dan " -"pengetahuan). Menentukan berbagai pemecahan masalah. Memilih pemecahan yang " -"paling sesuai. Menguji pemecahan masalah yang dipilih. Menilai hasil " -"pemecahan masalah." - -# 6d0ee9e9ab4b41f092a2ccdb67eb8879 -#: ../../source/training/tot/502_communication_skills.rst:372 -msgid "" -"**Trading**: Each participant writes down one thing (e.g. experience, " -"creative ideas, questions, opinion, etc.) on a piece of paper, then stick it " -"up on his shirt. Walk around to sell and buy (read) the results of others. " -"Set a rule that every work has to be sold and bought. Classically, present " -"the result in turn. Trainer will provide reinforcement." -msgstr "" -"**Metode berdagang**: Setiap peserta menuliskan satu hal (misal, pengalaman, " -"ide kreatif, pertanyaan, pendapat atau yang lain) pada sepotong kertas. " -"Setiap peserta menempelkan hasil tulisan pada bajunya. Berkeliling untuk " -"menjual dan membeli (membaca) hasil teman lain. Tetapkan aturan bahwa setiap " -"hasil kerja harus dijual dan dibeli. Secara klasikal, secara bergiliran " -"peserta menyampaikan hasil perdagangannya. Penguatan oleh pelatih." - -# 2accd3f3fb8c4d01ba444a5dbde91838 -#: ../../source/training/tot/502_communication_skills.rst:377 -msgid "" -"**Case study analysis**: participants are given a case to be solved either " -"individually or in groups based on data, facts or concepts they have learned " -"in class." -msgstr "" -"**Analisa studi kasus**: kepada peserta diberikan kasus yang harus " -"dipecahkan baik secara individual maupun secara berkelompok berdasarkan " -"data, fakta atau konsep yang telah dipelajari di kelas." - -# 0c1aa17a5bc6440589a6efe78cef104b -#: ../../source/training/tot/502_communication_skills.rst:380 -msgid "" -"**Evaluating a friend’s work**: it can be done after developing a product. " -"Participants generally use a rubric to evaluate the results of his friend’s " -"work" -msgstr "" -"**Mengevaluasi hasil kerja teman**: dapat dilakukan setelah mengembangkan " -"suatu produk. Umumnya peserta menggunakan rubrik untuk mengevaluasi hasil " -"kerja temannya" - -# 09cfc73adcb44f839bc4459de72f276d -#: ../../source/training/tot/502_communication_skills.rst:384 -msgid "**c. Interactive learning method**" -msgstr "**c. Metode dalam pembelajaran interaktif**" - -# 3c30d16029944c8fb1c429c63922ba30 -#: ../../source/training/tot/502_communication_skills.rst:386 -msgid "" -"**Group discussion**: Trainer asks participants to form groups of three or " -"more to share information." -msgstr "" -"**Diskusi kelompok**: Pelatih meminta peserta berkelompok dengan anggota " -"tiga atau lebih untuk berbagi informasi." - -# 3f08c0d71f7347ac94ea038b28918d02 -#: ../../source/training/tot/502_communication_skills.rst:388 -msgid "" -"**Think, pair and share**: propose a problem to the participants. Give " -"participants 2-5 minutes chance to think. When finished, ask them to discuss " -"the same issue with the person next to them for 3-5 minutes (pair). Finally, " -"select a pair to express their opinions in front of the class (share)." -msgstr "" -"**Think, pair and share**: ajukan permasalahan pada peserta. Berikan " -"kesempatan 2-5 menit untuk berfikir sendiri think. Setelah selesai mintalah " -"mereka mendiskusikan masalah yangsama dengan peserta di sebelahnya selama " -"3-5 menit (pair). Akhirnya pilihlah satu pasangan untuk mengemukakan " -"pendapat mereka di depan kelas (share)." - -# aebe38f29ac94cdc9f706a980d998285 -#: ../../source/training/tot/502_communication_skills.rst:392 -msgid "" -"**Group investigation**: Participants form groups. Trainer calls the leader " -"of the groups and gives different materials/ task. Each group will discuss " -"the task cooperatively and will perform investigations. Upon completion, a " -"representative will present the results of the discussion. Trainer will " -"provide reinforcement." -msgstr "" -"**Metode Investigasi Kelompok**: peserta membentuk kelompok. Pelatih " -"memanggil ketua-ketua kelompok untuk diberi materi/tugas yang berbeda." -"Setiap kelompok membahas tugas yang diberikan secara kooperatif dan " -"melakukan investigasi. Setelah selesai diskusi, lewat juru bicaranya " -"kelompok menyampaikan hasil pembahasan. Pelatih memberikan penguatan." - -# 0a926588d2124451abb609c969f6ef45 -#: ../../source/training/tot/502_communication_skills.rst:397 -msgid "" -"**TGT (Team Game Tournament) method**: Trainer presents new material. " -"Participants form study groups heterogeneously. Each group will participate " -"in academic tournament. Each will represent the group in the tournament. " -"Give reward to the winning team." -msgstr "" -"**Metode TGT (Team Game Tournament)**: Pelatih menyajikan materi baru. " -"Peserta membentuk kelompok belajar secara heterogen. Setiap kelompok " -"mengikuti turnamen akademik. Setiap peserta mewakili kelompoknya pada " -"kegiatan turnamen. Beri penghargaan terhadap kelompok yang menang." - -# 6459de10048d463b948fe6f5ef01a31b -#: ../../source/training/tot/502_communication_skills.rst:401 -msgid "" -"**Jigsaw**: Trainer prepares a number of tasks matching the number of " -"groups. Participants will form groups with the number of members equal to " -"the number of groups (participants have to memorize the group members). Each " -"group member will be given different part of the materials. Participants " -"from different groups will form new groups and discuss their parts. Upon " -"completion of discussions with a group of experts, each group member will go " -"back to the original group and, in turn, teach/ report the discussion result " -"to other group members. Participants randomly present all the tasks given by " -"the trainer. Reinforcement." -msgstr "" -"**Metode Jigsaw**: Pelatih menyiapkan tugas sebanyak jumlah kelompok. " -"Peserta berkelompok dengan jumlah anggota sama dengan jumlah kelompok " -"(peserta harus hafal anggotanya). Setiap peserta dalam kelompok diberi " -"bagian materi yang berbeda. Peserta dari berbagai kelompok yang memperoleh " -"tugas yang sama membentuk kelompok baru dan mendiskusikan bagiannya. Setelah " -"selesai diskusi dengan kelompok ahli, tiap anggota kembali ke kelompok asal " -"dan bergantian mengajar/melaporkan hasil diskusi kepada anggota kelompok " -"yang lain. Secara acak peserta menyampaikan seluruh tugas yang diberikan " -"pelatih. Penguatan" - -# 2933d0154d6d4ee7ba197acc4ad22bcb -#: ../../source/training/tot/502_communication_skills.rst:410 -msgid "" -"**Debate**: The trainer divides the participants into two debate groups of " -"pros and cons. Each group will read the materials that will be debated. " -"Appoint one member of the pros group to speak and rebutted by a member of " -"the cons, and so on. Trainer writes down ideas from the debate on a board " -"the number of ideas the trainer expected has been met. The trainer adds more " -"unrevealed ideas. From the ideas on the board, the trainer asks participants " -"to draw conclusion/ summary by referring to the competency desired." -msgstr "" -"**Metode Debat**: Guru membagi dua kelompok peserta debat yang satu pro dan " -"yang lain kontra. Setiap kelompok membaca materi yang akan didebatkan. " -"Pelatih menunjuk satu anggota pro untuk berbicara dan ditanggapi oleh " -"anggota kelompok kontra, demikian seterusnya. Pelatih menuliskan ide/gagasan " -"dari setiap pembicaraan di papan tulis sampai sejumlah ide yang diharapkan " -"guru terpenuhi. Pelatih menambahkan ide yang belum terungkap. Dari data-data " -"di papan tulis, pelatih mengajak peserta membuat kesimpulan/rangkuman yang " -"mengacu pada kompetensi yang ingin dicapai." - -# ee7a806e0fda4089af0c71d67701df2d -#: ../../source/training/tot/502_communication_skills.rst:417 -msgid "" -"**STAD (Student Team Achievement Division)**: Learning from trainer. " -"Participants form groups. Each group discusses issues given (each " -"participant should understand the group’s answer). One person from each " -"group will work on the questions (quiz). Scores of each member will " -"determine the score of the group. Reinforcement." -msgstr "" -"**Metode STAD (Student Team Achievement Division)**: Pembelajaran oleh " -"pelatih. Peserta membentuk kelompok. Tiap kelompok mendiskusikan " -"permasalahan yang diterima (tiap peserta harus memahami jawaban " -"kelompoknya). Salah seorang dari setiap kelompok mengerjakan soal-soal " -"(kuis). Nilai setiap anggota menentukan nilai kelompok. Penguatan." - -# 29a1e8b2c4f04a0087729cfef221af4e -#: ../../source/training/tot/502_communication_skills.rst:422 -msgid "" -"**Collaborative learning group**: participants form heterogeneous groups of " -"3-6 people. Ask one of the participants to become the leader and another to " -"take note. Give participants the opportunity to learn collaboratively. The " -"result will be submitted in the form of a written report." -msgstr "" -"**Kelompok belajar kolaboratif**: peserta dibentuk dalam kelompok heterogen " -"3-6 orang. Mintalah salah satu peserta menjadi pemimpinnya dan satu yang " -"lain menjadi pencatat. Berikan kesempatan pada peserta untuk belajar secara " -"berkolaborasi. Hasil kelompok berupa laporan tertulis." - -# 7d2aa27422c34be5ba2dd4bd912f21d8 -#: ../../source/training/tot/502_communication_skills.rst:426 -msgid "" -"**Learn in pairs**: Trainer asks participants to perform tasks or " -"discussions with friends nearby in pairs. Pairs are suitable for learning " -"complicated tasks." -msgstr "" -"**Belajar berpasangan**: Pelatih meminta peserta untuk mengerjakan tugas " -"atau berdiskusi dengan teman di dekatnya secara berpasangan. Belajar " -"berpasangan cocok untuk mengerjakan tugas yang rumit." - -# e46da3a0057b47cda205d6aeab7214d9 -#: ../../source/training/tot/502_communication_skills.rst:430 -msgid "**d. Experiential learning method**" -msgstr "**d. Metode belajar melalui pengalaman**" - -# 419fb2e75ee54dd29e52fd2daf98bb44 -#: ../../source/training/tot/502_communication_skills.rst:432 -msgid "" -"**Role play**: each group is asked to design a role play based on the " -"concept being studied. Groups will respond to other groups’ role play result." -msgstr "" -"**Bermain peran**: masing-masing kelompok diminta merancang permainan peran " -"berdasarkan konsep yang sedang dipelajari. Kelompok yang satu menanggapi " -"hasil permainan peran kelompok yang lain." - -# 105a06ff47e74a61933d989158067f34 -#: ../../source/training/tot/502_communication_skills.rst:434 -msgid "" -"**Simulation/ exercise**: after participants learnt about certain motoric " -"skills, they will randomly be asked to exercise the skills they have learnt " -"in class." -msgstr "" -"**Simulasi/latihan praktek**: setelah peserta belajar tentang keterampilan " -"motorik tertentu, secara acak peserta diminta untuk mempraktikkan " -"keterampilan yang telah dipelajari di depan kelas." - -# 647a4a3580cf448ca372e439661329ff -#: ../../source/training/tot/502_communication_skills.rst:438 -msgid "**e. Independent learning**" -msgstr "**e. Metode pembelajaran mandiri**" - -# 99e6ff1852974639a9245aed41ed802f -#: ../../source/training/tot/502_communication_skills.rst:440 -msgid "" -"**Project:** Project method is a way of presenting the lessons, starting " -"from a problem where the solution requires a review of various point of " -"views. The rationale for the use of this method is that the problem can only " -"be solved by different school of thoughts or knowledge. Only problems that " -"need unit problem solving can be solved with project method." -msgstr "" -"**Metode Projek:** Metode projek adalah suatu cara penyajian pelajaran yang " -"bertitik tolak dari masalah dimana pemecahannya memerlukan tinjauan dari " -"berbagai segi. Dasar pemikiran penggunaan metode ini adalah masalah hanya " -"bisa diselesaikan dengan berbagai segi atau ilmu. Untuk itu hanya pada " -"masalah-masalah yang memerlukan pemecahan unit yang dapat digunakan metode " -"projek." - -# f500592ddf1c4c97a25f6894182ae107 -#: ../../source/training/tot/502_communication_skills.rst:447 -msgid "3. Components of basic skills in teaching / training" -msgstr "3. Komponen keterampilan dasar mengajar/melatih" - -# fc588a1552694ac0b8d557142afa003f -#: ../../source/training/tot/502_communication_skills.rst:448 -msgid "" -"In interaction or face-to-face meeting with the trainees, trainer requires " -"some basic teaching skills. It is absolutely necessary to help the trainer " -"in playing the role in educational interaction. The trainer’s teaching basic " -"skills are not different than the teachers who teach in the classroom. Those " -"basic skills are:" -msgstr "" -"Pelatih dalam interaksi atau dalam tatap muka dengan peserta pelatihan " -"memerlukan sejumlah keterampilan dasar mengajar. Hal ini mutlak perlu untuk " -"membantu pelatih dalam menjalankan tugas pelatih dalam interaksi edukatif. " -"Keterampilan dasar mengajar pelatih tidak bedanya dengan guru yang mengajar " -"di kelas. Keterampilan dasar yang harus dimiliki, yaitu:" - -# 222f486818d947d4b4a469b8d21ec595 -#: ../../source/training/tot/502_communication_skills.rst:453 -msgid "Skill to open and close the session" -msgstr "Keterampilan dasar membuka dan menutup pelajaran." - -# 04c40e6ddb9d49208a8d2df1495bf021 -#: ../../source/training/tot/502_communication_skills.rst:454 -msgid "Explanation skill" -msgstr "Keterampilan dasar menjelaskan" - -# c0c6406ca335461ab5256e47cda9cdf3 -#: ../../source/training/tot/502_communication_skills.rst:455 -msgid "Inquiry basic skill" -msgstr "Keterampilan dasar bertanya." - -# 0c340956e541435aab2ed94291c40514 -#: ../../source/training/tot/502_communication_skills.rst:456 -msgid "Skill to make variations" -msgstr "Keterampilan dasar membuat variasi." - -# 888ca109646f4c04a4e92fa00b543680 -#: ../../source/training/tot/502_communication_skills.rst:457 -msgid "Skills to provide reinforcement" -msgstr "Keterampilan dasar memberi penguatan." - -# 06ff088639294f62ae6c4f16ea0e8141 -#: ../../source/training/tot/502_communication_skills.rst:458 -msgid "Skills to manage the class" -msgstr "Keterampilan dasar mengelola kelas." - -# 4cdb30bc85144c0ba17e27b4a1dae9ec -#: ../../source/training/tot/502_communication_skills.rst:459 -msgid "Skills to guide a small group discussion" -msgstr "Keterampilan dasar membimbing diskusi kelompok kecil." - -# 20f4c3a2f7264955997a21bb555b40f1 -#: ../../source/training/tot/502_communication_skills.rst:460 -msgid "Individual teaching skill" -msgstr "Keterampilan dasar mengajar secara perorangan." - -# 8d9485c1d7a04f98923aa6c35a465942 -#: ../../source/training/tot/502_communication_skills.rst:461 -msgid "Skill of small groups" -msgstr "Keterampilan dasar kelompok kecil" - -# d186543442624a3293ff0086fdc83e79 -#: ../../source/training/tot/502_communication_skills.rst:463 -msgid "**a. Skill to open and close the session**" -msgstr "**a. Keterampilan Dasar Membuka dan Menutup Pelajaran**" - -# 61b0038bcb184d1fabbc214a9b3ec79d -# b2ebbfce74be4ca5a3c49ff5435ded95 -# 11a0ae98f0f146dda95d7e645679d7d7 -# 3a4d626347ce4371b7e59eecb34f4bbc -#: ../../source/training/tot/502_communication_skills.rst:465 -#: ../../source/training/tot/502_communication_skills.rst:642 -#: ../../source/training/tot/502_communication_skills.rst:712 -#: ../../source/training/tot/502_communication_skills.rst:808 -msgid "**Definition and Purpose**" -msgstr "**Pengertian dan Tujuan**" - -# 1e069e444d90468e99442fbbfca83ecf -#: ../../source/training/tot/502_communication_skills.rst:467 -msgid "" -"Opening a session is associated with the trainer creating conducive mental " -"atmosphere and attracting participants’ attention to focus on what will be " -"studied. While closing the session is when the trainer ending the core of " -"the activities, which is giving an overall picture of what has been studied, " -"knowing the participants, and the trainer’s rate of success in the training " -"process. Opening and closing of the session have are meant to:" -msgstr "" -"Membuka pelajaran diartikan dengan perbuatan pelatih untuk menciptakan " -"suasana siap mental dan menimbulkan perhatian peserta agar terpusat kepada " -"apa yang akan dipelajari. Sedangkan menutup pelajaran adalah kegiatan " -"pelatih dalam mengakhiri inti pelajaran, yaitu memberikan gambaran " -"menyeluruh tentang apa yang telah dipelajari peserta, mengetahui peserta, " -"dan tingkat keberhasilan pelatih dalam proses pelatihan. Kegiatan membuka " -"dan menutup pelajaran mempunyai tujuan:" - -# cc3c2ffb808f4d61b03c9fad1bdde3c7 -#: ../../source/training/tot/502_communication_skills.rst:474 -msgid "attract interests and motivate participants on the task at hand" -msgstr "Menarik perhatian dan memotivasi dalam pengerjaan tugas yang dihadapi." - -# 8e3723fff72647b29c6d620e9d9845e5 -#: ../../source/training/tot/502_communication_skills.rst:475 -msgid "enable participants to know the limits of the task at hand" -msgstr "Memungkinkan peserta mengetahui batas tugas yang akan dikerjakan." - -# f1dffaf9efe6488c8aa825da01bd07c4 -#: ../../source/training/tot/502_communication_skills.rst:476 -msgid "enable participants to find out the approach that is going to be used" -msgstr "Peserta dapat mengetahui pendekatan yang akan digunakan." - -# 5f2b568e92ca42199dc32a04e3d7dae2 -#: ../../source/training/tot/502_communication_skills.rst:477 -msgid "" -"enable participants to determine the relationship between mastered " -"experiences with new things to be learned" -msgstr "" -"Memungkinkan peserta mengetahui hubungan antara pengalaman-pengalaman yang " -"dikuasai dengan hal-hal baru yang akan dipelajari." - -# 22ca398791104b5ea43c9d0bcb18a2cb -#: ../../source/training/tot/502_communication_skills.rst:479 -msgid "" -"give the participants the possibility to combine facts, skills, and concepts " -"covered in an event" -msgstr "" -"Memberi kemungkinan peserta untuk menggabungkan fakta, keterampilan, dan " -"konsep-konsep yang tercakup dalam suatu peristiwa." - -# 3d5df3688dfa437db34d214a5b6892ad -#: ../../source/training/tot/502_communication_skills.rst:481 -msgid "enable participants to determine the level of success" -msgstr "Memungkinkan peserta mengetahui tingkat keberhasilannya." - -# 325eafaa59f749859c8c6842485370c2 -#: ../../source/training/tot/502_communication_skills.rst:483 -msgid "**Components of Opening the Session Skill**" -msgstr "**Komponen Keterampilan Dasar Membuka Pelajaran**" - -# 11d0dd6b41194b60bdf9aa0e48c02f42 -#: ../../source/training/tot/502_communication_skills.rst:485 -msgid "Opening a session can be done by:" -msgstr "Membuka pelajaran dapat dilakukan dengan:" - -# ce20536caaac4043baea98310a556864 -#: ../../source/training/tot/502_communication_skills.rst:487 -msgid "Attracting participants’ interest" -msgstr "Menarik perhatian peserta." - -# 4a2bfcbb8f9844e1890368bfecdf6fab -#: ../../source/training/tot/502_communication_skills.rst:489 -msgid "" -"A few ways can be done by the trainer to attract the participants’ interest, " -"among others:" -msgstr "" -"Beberapa cara yang dapat digunakan pelatih untuk menarik perhatian peserta, " -"antara lain:" - -# d610ad1610234e1ba8d1ffbabc6ab205 -#: ../../source/training/tot/502_communication_skills.rst:492 -msgid "Variation of training style and patterns of interaction" -msgstr "Menggunakan variasi gaya melatih dan pola interaksi." - -# eeb125cbda344dae91e9cbc94989cf82 -#: ../../source/training/tot/502_communication_skills.rst:493 -msgid "The use of training aids" -msgstr "Penggunaan alat-alat bantu melatih." - -# 1c551ea9cca6414caae064977ba3bdc6 -#: ../../source/training/tot/502_communication_skills.rst:495 -msgid "Motivating" -msgstr "Memotivasi." - -# cb4301693a2d4234bcaf16d84511e52a -#: ../../source/training/tot/502_communication_skills.rst:497 -msgid "Creating motivation can be done by:" -msgstr "Menimbulkan motivasi dapat dikerjakan dengan cara antara lain:" - -# a64883cff5604d1c839aaee60d2c0ca8 -#: ../../source/training/tot/502_communication_skills.rst:499 -msgid "Showing warmth and enthusiasm" -msgstr "Menunjukkan kehangatan dan keantusiasan." - -# e14efb27125a481e9d5497302a319760 -#: ../../source/training/tot/502_communication_skills.rst:500 -msgid "Creating curiosity" -msgstr "Menimbulkan rasa ingin tahu." - -# 8277395f8c9e4b5a84177d0be43152ce -#: ../../source/training/tot/502_communication_skills.rst:501 -msgid "Expressing opposite ideas" -msgstr "Mengemukakan ide-ide yang bertentangan." - -# 54c6fa653c0347ca8f9cf0504b4d6fcf -#: ../../source/training/tot/502_communication_skills.rst:502 -msgid "Paying attention to the participants’ interests" -msgstr "Memperhatikan minat peserta." - -# 6b36a4e964bb4776b0fd3f95f0070a6b -#: ../../source/training/tot/502_communication_skills.rst:504 -msgid "Giving references" -msgstr "Memberikan acuan" - -# c37c3e93a8864a9c866dfe6b142be4ee -#: ../../source/training/tot/502_communication_skills.rst:506 -msgid "" -"Giving references is an effort to give clear picture of the things that will " -"be studied by means of inserting a short series of specific and relevant " -"alternatives, by:" -msgstr "" -"Memberikan acuan merupakan usaha memberikan gambaran yang jelas mengenai hal " -"yang akan dipelajari dengan cara memasukkan secara spesifik dan singkat " -"serangkaian alternatif yang relevan, dengan cara:" - -# 7088fd611f9841bbb411863b9c04dc65 -#: ../../source/training/tot/502_communication_skills.rst:510 -msgid "Expressing the objectives and limitation of task" -msgstr "Mengemukakan tujuan dan batas-batas tugas." - -# a1a5c80aa80e4b6b98a79f8f87e7c229 -#: ../../source/training/tot/502_communication_skills.rst:511 -msgid "" -"Advising steps to be taken, reminding the subject matter to be discussed" -msgstr "" -"Menyarangkan langkah-langkah yang akan dilakukan, mengingatkan masalah pokok " -"yang akan dibahas." - -# 2bdfe0013f0f4f7aa0dbf12835ca5554 -#: ../../source/training/tot/502_communication_skills.rst:512 -msgid "Asking questions" -msgstr "Mengajukan pertanyaan-pertanyaan." - -# 7224583f04194480a0d11f9b33aa422a -#: ../../source/training/tot/502_communication_skills.rst:514 -msgid "Making connections" -msgstr "Membuat kaitan." - -# 2b482a619d904d06acee50551b700d0a -#: ../../source/training/tot/502_communication_skills.rst:516 -msgid "Some of the trainer’s efforts in making connections:" -msgstr "Beberapa usaha pelatih dalam membuat kaitan antara lain:" - -# 7f62b6f4d4794fb5b7166a35abf917fa -#: ../../source/training/tot/502_communication_skills.rst:518 -msgid "" -"Making links between relevant aspects of training with the materials known " -"to participants" -msgstr "" -"Membuat kaitan antara aspek-aspek yang relevan dari materi pelatihan yang " -"dikenal peserta." - -# cbf9ba29e9864259aca72b5c05a34028 -#: ../../source/training/tot/502_communication_skills.rst:520 -msgid "Comparing or contrasting the new knowledge and the ones known to them" -msgstr "" -"Pelatih membandingkan atau mempertentangkan pengetahuan baru dengan " -"pengetahuan yang telah diketahui." - -# c7ad48aaee5e49f1806a480dd12c6677 -#: ../../source/training/tot/502_communication_skills.rst:521 -msgid "Explaining the concept first and then the detailed description" -msgstr "" -"Menjelaskan konsepnya terlebih dahulu baru kemudian uraian secara rinci." - -# 901bf9a5513949f389926ef45bc0952c -#: ../../source/training/tot/502_communication_skills.rst:523 -msgid "**Basic Skills Components of Closing the Session**" -msgstr "**Komponen Keterampilan Dasar Menutup Pelajaran**" - -# ca29fd313a6142fabe95eea2fbbf7861 -#: ../../source/training/tot/502_communication_skills.rst:525 -msgid "" -"Closing the session is intended to obtain a complete picture at the end of " -"the activity, and to determine the participants’ level of achievement or the " -"participants' success rate. There are a few ways to that can be done in " -"closing the session, among others:" -msgstr "" -"Menutup pelajaran dimaksudkan untuk memperoleh gambaran utuh pada akhir " -"kegiatan, dan untuk mengetahui tingkat pencapaian peserta atau tingkat " -"keberhasilan peserta. Ada beberapa cara yang dapat dilakukan pelatih dalam " -"menutup pelajaran, antara lain:" - -# cae8c8796a144bea8bb5c6094915ac2f -#: ../../source/training/tot/502_communication_skills.rst:530 -msgid "Review the core content of the session and making a summary" -msgstr "" -"Meninjau kembali penguasan inti pelajaran dengan merangkum inti pelajaran " -"dan membuat ringkasan." - -# cfb64646daa2400392013e6dfbfb0301 -#: ../../source/training/tot/502_communication_skills.rst:531 -msgid "Evaluate the various forms of evaluation, for example:" -msgstr "Mengevaluasi dengan berbagai bentuk evaluasi, misalnya:" - -# 60634440fcff430ebe3307529979d5fd -#: ../../source/training/tot/502_communication_skills.rst:533 -msgid "Demonstrate skills" -msgstr "Mendemontrasikan keterampilan." - -# b2f83f7f1e7248d5ae5ffa58ed01abd9 -#: ../../source/training/tot/502_communication_skills.rst:534 -msgid "Ask participants to apply new ideas in other situations" -msgstr "Meminta peserta mengaplikasikan ide baru dalam situasi lain." - -# 630f734adf874eb881b3f54ad3df04f6 -#: ../../source/training/tot/502_communication_skills.rst:535 -msgid "Explore the participants’ opinions" -msgstr "Mengeksplorasikan pendapat peserta sendiri." - -# a5b5d79d30474253b118ae1dc7db3770 -#: ../../source/training/tot/502_communication_skills.rst:536 -msgid "Provide written questions" -msgstr "Memberikan soal-soal tertulis." - -# 705989e190af4c33bd8cb7c385535d8b -#: ../../source/training/tot/502_communication_skills.rst:538 -msgid "**Use Principles**" -msgstr "**Prinsip-prinsip Penggunaannya**" - -# 371d692b73b045359868ae8f4574a86b -#: ../../source/training/tot/502_communication_skills.rst:540 -msgid "" -"A few principles that need to be considered by a trainer when opening and " -"closing the session are:" -msgstr "" -"Berapa prinsip yang perlu dipertimbangkan oleh pelatih dalam membuka dan " -"menutup pelajaran adalah:" - -# 23d757d19f2b4649967bde99516269b6 -#: ../../source/training/tot/502_communication_skills.rst:543 -msgid "Significance" -msgstr "Kebermaknaan" - -# 243197bb662045d4bdfc0be4b8f2f7ee -#: ../../source/training/tot/502_communication_skills.rst:544 -msgid "" -"To draw participants’ attention or motivation, a trainer has to select a way " -"relevant with the content and the objective of the teaching" -msgstr "" -"Untuk menarik perhatian atau motivasi peserta, pelatih harus memilih cara " -"yang relevan dengan isi dan tujuan pelajaran." - -# 5012b619d30d4c61884276ef5a2bf6ce -#: ../../source/training/tot/502_communication_skills.rst:546 -msgid "Sequential and continuous" -msgstr "Berurutan dan berkesinambungan." - -# 3c5a92f892e84c76833b454e84659e34 -#: ../../source/training/tot/502_communication_skills.rst:547 -msgid "" -"Activities taken by trainer in introducing and summarizing the main points " -"of the lessons should be an integral part, the link between one part and " -"another or with the participants’ experience should be clear" -msgstr "" -"Aktivitas yang ditempuh pelatih dalam mengenalkan dan merangkum pokok-pokok " -"pelajaran hendaknya merupakan bagian yang utuh, kaitan antara bagian yang " -"satu dengan bagian yang lain atau dengan pengalaman peserta harus jelas." - -# 856d2a91c7074ab0bf7778d588dabb8f -#: ../../source/training/tot/502_communication_skills.rst:551 -msgid "**b. Explanation skill**" -msgstr "**b. Keterampilan Dasar Menjelaskan**" - -# 903ae285a37f43a08daa1160572852e5 -# 3866edf1b0ba4fc898a957593997f4ea -#: ../../source/training/tot/502_communication_skills.rst:553 -#: ../../source/training/tot/502_communication_skills.rst:876 -msgid "**Definition**" -msgstr "**Pengertian**" - -# bc440aca8762495797e2293832396c59 -#: ../../source/training/tot/502_communication_skills.rst:555 -msgid "" -"Explaining/ describing something is presenting verbal information that is " -"organized systematically to show an association with one another. The " -"emphasis of explaining is the participants’ reasoning process and not " -"indoctrination. Examples: providing an overview of a situation, revealing " -"causes of an event, etc. The success of explaining is marked by the " -"participants’ understanding of something. The structure of teaching " -"materials in explaining is usually planned in a way that can be controlled. " -"Logical description, the skill to reveal the materials and the strategy to " -"organize the materials are the main procedure to explain." -msgstr "" -"Menjelaskan/menerangkan adalah menyajikan informasi lisan yang " -"diorganisasikan secara sismatik untuk menunjukan adanya hubungan yang satu " -"dengan yang lainnya. Penekanan memberikan penjelasan ialah proses penalaran " -"peserta dan bukan indoktrinasi. Contohnya: memberikan gambaran tentang suatu " -"keadaan, mengungkapkan sebab-sebab suatu kejadian dan sebagainya. " -"Keberhasilan menerangkan ditandai oleh terbentuknya pengertian peserta " -"terhadap suatu hal. Struktur bahan pengajaran dalam rangka menerangkan " -"biasanya direncanakan sedemikian rupa agar dapat dikendalikan. Keterangan " -"logika, keterampilan mengungkapkan bahan dan strategi penyusunan bahan " -"merupakan prosedur utama untuk menerangkan." - -# c8cc95fe041241c9a634ea9ad3c7e638 -#: ../../source/training/tot/502_communication_skills.rst:565 -msgid "" -"Explaining is linked with the effort to create linkages between the known " -"and the unknown. A full explanation is always accompanied by evidence and " -"the cause and effect is based on the logical relationships between " -"generalization, provisions, and realities according to the participants’ " -"perception system." -msgstr "" -"Menjelaskan tidak terlupa dari usaha mengadakan hubungan antara hal yang " -"sudah diketahui dan yang belum diketahui. Penjelasan yang lengkap selalu " -"disertai bukti dan sebab akibatnya yang didasarkan pada hubungan logis " -"antara generalisasi, ketentuan-ketentuan, kenyataan-kenyataan sesuai dengan " -"sistem persepsi peserta.\n" -"Tujuan keterampilan menjelaskan adalah:" - -# fd1934c6eb74475db63d19d4ad61f288 -#: ../../source/training/tot/502_communication_skills.rst:570 -msgid "The objective of explanation skills are to:" -msgstr "Tujuan keterampilan menjelaskan adalah:" - -# fcf2014b4688444391d4618be5ccfbbe -#: ../../source/training/tot/502_communication_skills.rst:572 -msgid "Provide understanding to others" -msgstr "Memberikan pengertian kepada orang lain." - -# fa4b4aa5b1d345b78f3c7954f509762c -#: ../../source/training/tot/502_communication_skills.rst:573 -msgid "Make participants think logically and systematically" -msgstr "Membuat peserta berfikir secara logis dan sistematis." - -# ec0ce23c52384366b98aa9eea1c0ba11 -#: ../../source/training/tot/502_communication_skills.rst:574 -msgid "Train participants to think based on the causes and reasons" -msgstr "Melatih peserta berfikir berdasarkan sebab-sebab dan alasan-alasan." - -# f75b99ab43384b0591fbe6ad8f009839 -#: ../../source/training/tot/502_communication_skills.rst:575 -msgid "Train participants in making decisions independently" -msgstr "Melatih peserta mandiri di dalam mengambil keputusan." - -# 4dde98eec1eb4a46b7a27ece8d9029dc -#: ../../source/training/tot/502_communication_skills.rst:576 -msgid "Instill the right way of thinking attitude" -msgstr "Menanamkan sikap yakni bahwa cara berfikir benar." - -# 24f7c8c919754e92818153d2842e579c -#: ../../source/training/tot/502_communication_skills.rst:577 -msgid "" -"Guide participants to a clear understanding in solving the question: What, " -"Why and How" -msgstr "" -"Menuntun peserta kepada pengertian yang jelas dalam memecahkan pertanyaan: " -"“Apa” “Mengapa” dan “Bagaimana”." - -# 377891dba76148c6972e34fec4866d20 -#: ../../source/training/tot/502_communication_skills.rst:579 -msgid "Engage participants in thinking to solve problems" -msgstr "Melibatkan peserta dalam berfikir memecahkan masalah." - -# 16fd82e4dc3249ef9b58c0e6d7cdb828 -#: ../../source/training/tot/502_communication_skills.rst:580 -msgid "Obtain feedback from participants based on levels of understanding" -msgstr "" -"Untuk memperoleh umpan balik dari peserta berdasarkan tingkat pengertiannya." - -# eb0e3008fc874a07a4c24560108dbaf3 -#: ../../source/training/tot/502_communication_skills.rst:581 -msgid "" -"Assist participants to use the process of transmission and evidences in " -"solving problems" -msgstr "" -"Membantu peserta menggunakan proses penularan dan bukti-bukti dalam " -"memecahkan masalah." - -# 641252939e0649c69e75eef40974ab47 -#: ../../source/training/tot/502_communication_skills.rst:584 -msgid "**Components of Explanation Skills**" -msgstr "**Komponen keterampilan dasar menjelaskan** " - -# 453c792b918b4655b06ba65bdb71ef13 -#: ../../source/training/tot/502_communication_skills.rst:586 -msgid "In the planning process, the components of explanation skills include:" -msgstr "Dalam merencanakan komponen keterampilan menjelaskan meliputi :" - -# 35db9947554e49548254889b139e67bb -#: ../../source/training/tot/502_communication_skills.rst:588 -msgid "Planning explanation" -msgstr "Merencanakan penjelasan" - -# 580d9e1f941f42ed8ecf3be3149faa3e -#: ../../source/training/tot/502_communication_skills.rst:590 -msgid "" -"In planning explanation, we need to pay attention to the contents of the " -"message that will be conveyed and the readiness of the recipient. Things " -"related to the content of the message (the material) including:" -msgstr "" -"Merencanakan penjelasan perlu diperhatikan isi pesan yang akan disampaikan " -"dan kesiapan penerima pesan. Yang berhubungan dengan isi pesan (materi), " -"mencakup :" - -# b4f8c7fa87e244e982c51d3b6acab0e4 -#: ../../source/training/tot/502_communication_skills.rst:594 -msgid "Analyzing problems holistically" -msgstr "Menganalisis masalah secara keseluruhan." - -# ff86308c3e834983acc053e3bba522b6 -#: ../../source/training/tot/502_communication_skills.rst:595 -msgid "" -"Determining the type of existing relationship between the linked elements" -msgstr "Menentukan jenis hubungan yang ada antara unsur-unsur yang dikaitkan." - -# 39f978020ae44d3a8ca662408dc13f55 -#: ../../source/training/tot/502_communication_skills.rst:596 -msgid "" -"Using the law, formulation, or generalization that is suitable with the " -"determined relationship" -msgstr "" -"Menggunakan hukum, rumus, atau generalisasi yang sesuai dengan hubungan yang " -"telah ditentukan." - -# 470f6fd4df01402f8fb662f2d44f8f86 -#: ../../source/training/tot/502_communication_skills.rst:599 -msgid "" -"What we need to pay attention when associated with the message recipient " -"(participant) is to whom the explanation will be presented to, such as age, " -"gender, ability, social background, and participants’ learning environment. " -"Thus what needs to be considered in connection with the recipient of this " -"message is:" -msgstr "" -"Yang berhubungan dengan penerima pesan (peserta), perlu diperhatikan adalah " -"kepada siapa penjelasan itu akan disajikan, misalnya usia, jenis kelamin, " -"kemampuan, latar belakang sosial, dan lingkungan belajar peserta. Sehingga " -"yang perlu dipertimbangkan sehubungan dengan penerima pesan ini adalah :" - -# 158d8d1a0d02460189a5e07310e0728a -#: ../../source/training/tot/502_communication_skills.rst:605 -msgid "The explanation must be relevant to the participants’ problems" -msgstr "Penjelasan harus cukup relevan dengan permasalahan peserta" - -# 06793bc9fac0407cb8776a6dad84b063 -#: ../../source/training/tot/502_communication_skills.rst:606 -msgid "The explanation has to be easily accepted by the participants" -msgstr "Penjelasan harus mudah diterima oleh peserta." - -# 309e79f44d7b47deb7f4ac96a64c4f32 -#: ../../source/training/tot/502_communication_skills.rst:607 -msgid "" -"The explanation has to match the participants’ wealth of knowledge at the " -"time" -msgstr "" -"Penjelasan harus cocok dengan khazanah pengetahuan peserta pada saatnya." - -# f1e59a9496b840b9805d22530a795549 -#: ../../source/training/tot/502_communication_skills.rst:610 -msgid "Presenting explanation" -msgstr "Menyajikan penjelasan." - -# 8cc978c8b4154b9a9fe8bd58d62707a5 -#: ../../source/training/tot/502_communication_skills.rst:612 -msgid "A few things to notice in presenting an explanation are:" -msgstr "" -"Beberapa hal yang perlu diperhatikan dalam menyajikan suatu penjelasan " -"adalah:" - -# f8acf90478394f328adc165efb103a69 -#: ../../source/training/tot/502_communication_skills.rst:614 -msgid "Clarity, can be achieved by:" -msgstr "Kejelasan, yang dapat dicapai dengan :" - -# bc32e71aa99c486d98447d4229c28b73 -#: ../../source/training/tot/502_communication_skills.rst:616 -msgid "The articulation has to be clear, the words, the idioms and the voice" -msgstr "" -"Bahasa yang diucapkan harus jelas kata-katanya, ungkapannya, maupun suaranya." - -# 6e627137ea2d4f0e8ba4b90aacf86eb6 -#: ../../source/training/tot/502_communication_skills.rst:617 -msgid "" -"Conversation has to go smooth by avoiding unnecessary words, e.g. ee, aa, " -"etc." -msgstr "" -"Pembicaraan harus lancar dengan menghindari kata-kata yang tidak perlu, " -"misalnya “ee”, “aa”, dan lain sebagainya." - -# 6878010e4360453c855fccd13544ad5e -#: ../../source/training/tot/502_communication_skills.rst:619 -msgid "" -"Sentences have to be arranged with good grammar by avoiding incomplete " -"sentences" -msgstr "" -"Kalimat disusun dengan tata bahasa yang baik dengan menghindari kalimat yang " -"tidak lengkap." - -# 5c4b5f03c3e84b589990c10cde2714bb -#: ../../source/training/tot/502_communication_skills.rst:621 -msgid "Technical or new terms should be defined clearly" -msgstr "" -"Istilah-istilah teknis atau istilah baru harus didefinisikan dengan jelas." - -# 5a0e0496bc5e41838cadbb9b4bcb7f87 -#: ../../source/training/tot/502_communication_skills.rst:622 -msgid "" -"Using pause time (silent) to see whether the explanation has been understood " -"by the participants" -msgstr "" -"Menggunakan waktu diam sejenak (senyap) untuk melihat apakah yang dijelaskan " -"itu telah dimengerti oleh siswa." - -# ab54b46f07514970a2b1b2280c4f95d5 -#: ../../source/training/tot/502_communication_skills.rst:625 -msgid "Usage of examples and illustrations, including" -msgstr "Menggunakan contoh dan ilustrasi, meliputi penggunaan " - -# 98cf00e3bd3844c99439750de99d49ae -#: ../../source/training/tot/502_communication_skills.rst:627 -msgid "Inductive: Example/ illustration concept/ generalization" -msgstr "Induktif : Contoh/ilustrasi konsep/generalisasi." - -# 92f5a495020e423484c775c2c26feb75 -#: ../../source/training/tot/502_communication_skills.rst:628 -msgid "Deductive: Concept/ generalization examples/ illustrations" -msgstr "Deduktif: Konsep/generalisasi contoh/ilustrasi" - -# 35eedfa58b084a9181f21369ffbb8fa7 -#: ../../source/training/tot/502_communication_skills.rst:630 -msgid "" -"Provision of emphasis, including the use of voice variation, mimic, " -"gestures, summary, repetition, giving symbols, etc." -msgstr "" -"Memberikan penekanan, meliputi penggunaan variasi suara, mimik, gerak, " -"ikhtisar, pengulangan, memberi tanda dan sebagainya." - -# 2087e17b3ddf469e917f18a1425a57f2 -#: ../../source/training/tot/502_communication_skills.rst:632 -msgid "It is important to show important parts that need attention from others" -msgstr "" -"Hal tersebut untuk menunjukan bagian yang penting yang perlu mendapat " -"perhatian dari pada orang lain." - -# 0b73096e2d1543818c861108a79495e8 -#: ../../source/training/tot/502_communication_skills.rst:633 -msgid "" -"Organization, including creating relationship between examples, clear " -"generalization and summarizing during or at the end of the presentation" -msgstr "" -"Pengorganisasian, meliputi membuat hubungan antara contoh dan generalisasi " -"yang jelas serta memberikan ikhtisar selama atau pada akhir sajian." - -# 2c6fece841dd4df4af992e657aefe96c -#: ../../source/training/tot/502_communication_skills.rst:635 -msgid "" -"Feedback, including a behavioral change from the participants and providing " -"the opportunity for participants to answer questions as well as expressing " -"opinions on whether the explanation given by the trainer is useful" -msgstr "" -"Umpan balik, meliputinya adanya perubahan tingkah laku peserta dan " -"memberikan kesempatan kepada peserta untuk menjawab pertanyaan pelatih serta " -"mengajukan pendapat apakah penjelasan yang diberikan oleh pelatih memberikan " -"manfaat bagi peserta." - -# 4694d9cd86834a62a2310534765bea8a -#: ../../source/training/tot/502_communication_skills.rst:640 -msgid "**c. Inquiry basic skill**" -msgstr "**Keterampilan Dasar Bertanya**" - -# 8572294e5e3f4a3a84d592d735157cdc -#: ../../source/training/tot/502_communication_skills.rst:644 -msgid "" -"Asking a question can be interpreted as a greeting delivered with the " -"intention of requesting a response from others. In the teaching process, the " -"given response reflects the extent to which level of knowledge the " -"participants have. So asking questions in the session is important because " -"the trainer’s skill in asking effective questions will be the stimulus that " -"will stimulate thinking skills and will encourage participants." -msgstr "" -"Bertanya dapat diartikan sebagai ucapan yang disampaikan dengan maksud " -"meminta respon dari orang lain. Dalam proses pengajaran respon yang " -"diberikan mencerminkan sampai dimana tingkat pengetahuan peserta. Jadi " -"bertanya dalam pembelajaran penting karena tingkat kemampuan pelatih dalam " -"mengajukan pertanyaan yang efektif akan merupakan stimulus yang akan " -"merangsang dan akan mendorong kemampuan berpikir peserta." - -# eb5a897317b0421fa47e8d0a439cac60 -#: ../../source/training/tot/502_communication_skills.rst:651 -msgid "The purpose of asking includes:" -msgstr "Tujuan bertanya antara lain :" - -# 2d465564bfd44be49c07312332b8a31c -#: ../../source/training/tot/502_communication_skills.rst:653 -msgid "Stimulate participants’ thinking skills" -msgstr "Merangsang kemampuan berpikir peserta." - -# fee49c38a96d419c8735445040632ab8 -#: ../../source/training/tot/502_communication_skills.rst:654 -msgid "Assist participants in learning" -msgstr "Membantu peserta dalam belajar." - -# 937b42660c7c4937a572ef3890065c36 -#: ../../source/training/tot/502_communication_skills.rst:655 -msgid "" -"Direct the participants independent interaction level on level of self-" -"learning interaction." -msgstr "Mengarahkan peserta pada tingkat interaksi belajar yang mandiri." - -# 52e96fab4b704e969f2096e983cd9a3b -#: ../../source/training/tot/502_communication_skills.rst:657 -msgid "" -"Increase participants’ thinking component of low-level components to a " -"higher level" -msgstr "" -"Meningkatkan komponen berfikir peserta dari komponen berfikir tingkat rendah " -"ke tingkat yang lebih tinggi." - -# f50f63858c004173a8e7b280a7132dde -#: ../../source/training/tot/502_communication_skills.rst:659 -msgid "Assist participants in achieving the learning objectives" -msgstr "Membantu peserta dalam mencapai tujuan pelajaran yang disampaikan." - -# 190330f89af24a7ca144c2d25fe64158 -#: ../../source/training/tot/502_communication_skills.rst:661 -msgid "**Components of Inquiry Basic Skill**" -msgstr "**Komponen Keterampilan Dasar Bertanya**" - -# 5a6d72b54cc441ed9f05cd3351b93bac -#: ../../source/training/tot/502_communication_skills.rst:663 -msgid "Basic skills" -msgstr "Keterampilan tingkat dasar" - -# a603b9a2acd34d6abf8222a441485c41 -#: ../../source/training/tot/502_communication_skills.rst:665 -msgid "Components included in the inquiry basic skill are:" -msgstr "Komponen yang termasuk dalam keterampilan dasar bertanya meliputi:" - -# 546e0b07df684d679b97aa7066f9a8d2 -#: ../../source/training/tot/502_communication_skills.rst:667 -msgid "Disclosure of questions clearly and concisely" -msgstr "Pengungkapan pertanyaan secara jelas dan singkat." - -# b6f7a699dfe7483d9e4e11be4abce57b -#: ../../source/training/tot/502_communication_skills.rst:668 -msgid "" -"Details in asking questions so that participants can answer correctly, the " -"trainer needs to provide information that will help make examples of the " -"question" -msgstr "" -"Perincian dalam, supaya peserta dapat menjawab dengan tepat, dalam " -"mengajukan pertanyaan pelatih perlu memberikan informasi-informasi yang " -"menjadikan contoh pertanyaan." - -# cb7627c55c6845bf8bd6edb6bf1f8f17 -#: ../../source/training/tot/502_communication_skills.rst:671 -msgid "Convergence towards the accepted answer" -msgstr "Pemusatan ke arah jawaban yang diterima" - -# 2bd21f5f61c245679aca58cd07e506b1 -#: ../../source/training/tot/502_communication_skills.rst:672 -msgid "" -"Convergence can be done by means of: providing a broad question (open-ended) " -"which will convert into a narrow question" -msgstr "" -"Pemusatan dapat dikerjakan dengan cara: memberikan pertanyaan yang luas " -"(terbuka) yang kemudian mengubahnya menjadi pertanyaan yang sempit." - -# f358eddaae394bb8b48b6ec50eec6fa5 -#: ../../source/training/tot/502_communication_skills.rst:674 -msgid "Transfer of turns to answer" -msgstr "Pemindahan giliran menjawab." - -# e300405db51a43528d81222bbcbb844b -#: ../../source/training/tot/502_communication_skills.rst:675 -msgid "" -"Transfer of turns can be done by asking different participants to answer the " -"same question" -msgstr "" -"Pemindahan giliran menjawab dapat dikerjakan dengan cara meminta peserta " -"yang berbeda untuk menjawab yang sama." - -# 7721062a79bb4964903afb64c886e4f0 -#: ../../source/training/tot/502_communication_skills.rst:677 -msgid "The spread of questions" -msgstr "Penyebaran pertanyaan" - -# ba388b0f31f94126bab7f10ee9ddd932 -#: ../../source/training/tot/502_communication_skills.rst:679 -msgid "" -"For certain purposes the coach can throw the question to the whole class, to " -"a participant or spread from one participant to the others." -msgstr "" -"Untuk maksud tertentu pelatih dapat melemparkan pertanyaan ke seluruh kelas, " -"ke peserta tertentu atau menyebarkan peserta ke peserta yang lain." - -# aae46ce6e9934c449ce36065ac3ca822 -#: ../../source/training/tot/502_communication_skills.rst:682 -msgid "Provision of time to think" -msgstr "Pemberian waktu berfikir" - -# 878fddb367d3463d8b2f7d9926a24dca -#: ../../source/training/tot/502_communication_skills.rst:684 -msgid "" -"In asking question, a trainer has to stay silent a moment before appointing " -"a participant to answer the questions" -msgstr "" -"Dalam mengajukan pertanyaan pelatih harus berdiam diri sesaat sebelum " -"menunjukkan peserta merespon pertanyaannya. " - -# ef65781bf77945c3bd7dc8d8ed52d55a -#: ../../source/training/tot/502_communication_skills.rst:687 -msgid "Provision of guidance" -msgstr "Pemberian tuntunan " - -# 41de9ff5fdc749c2975d07892abd4115 -#: ../../source/training/tot/502_communication_skills.rst:689 -msgid "" -"For participants having difficulty in answering the question, a strategy to " -"provide guidance needs to be given. The strategy includes the disclosure of " -"the question with other form or manner, asking other simpler questions, and " -"repeats the previous explanations." -msgstr "" -"Bagi peserta yang mengalami kesukaran dalam menjawab pertanyaan strategi " -"pemberian tuntunan perlu dikerjakan. Strategi itu meliputi pengungkapan " -"pertanyaan dengan bentuk atau cara yang lain, mengajukan pertanyaan lain " -"yang lebih sederhana, dan mengulangi penjelasan-penjelasan sebelumnya." - -# a51102126b724c14867833f1b396ac08 -#: ../../source/training/tot/502_communication_skills.rst:695 -msgid "Advance level skills, components added:" -msgstr "Keterampilan Tingkat Lanjutan, ditambahkan komponen:" - -# eaa7dca4b2534bf2ab233bb26234b5ca -#: ../../source/training/tot/502_communication_skills.rst:697 -msgid "The conversion of rate of cognitive guidance in answering the question" -msgstr "Pengubahan tuntunan tingkat kognitif dalam menjawab pertanyaan." - -# e092ec24f791450c8f1e0b965b0d1bd5 -#: ../../source/training/tot/502_communication_skills.rst:698 -msgid "" -"To develop the participants’ way of think we need cognitive level of " -"guidance questions (recall, comprehension, application, systematic analysis, " -"and evaluation)" -msgstr "" -"Untuk mengembangkan kemampuan berfikir peserta diperlukan pengubahan " -"tuntunan tingkat kognitif pertanyaan (ingat, pemahaman, penerapan, analisis " -"sistetis, dan evaluasi)" - -# e43a513188d8467b99649f903af19a7c -#: ../../source/training/tot/502_communication_skills.rst:701 -msgid "Setting the order of questions" -msgstr "Pengaturan urutan pertanyaan." - -# 9f6dd4efa41b47cda91fca570b405832 -#: ../../source/training/tot/502_communication_skills.rst:702 -msgid "The questions asked have to have a logical sequence" -msgstr "Pertanyaan yang diajukan haruslah mempunyai urutan yang logis." - -# 3dad2316c9a441a0a9cd613ced7ebd0d -#: ../../source/training/tot/502_communication_skills.rst:703 -msgid "The use of tracing questions" -msgstr "Penggunaan pertanyaan pelacak." - -# 5c00b6310d644aec9b85045af0b60509 -#: ../../source/training/tot/502_communication_skills.rst:704 -msgid "" -"To find out to which extent the participants’ skill in regards to the " -"answer, the tracing skill that needs to be mastered by the trainer. Tracing " -"can be done by asking participants to give explanation on the answer, giving " -"a reason, providing relevant examples, etc." -msgstr "" -"Untuk mengetahui sejauh mana kemampuan peserta yang berkaitan dengan jawaban " -"yang dikemukakan, keterampilan melacak perlu dipunyai oleh pelatih. Melacak " -"dapat dikerjakan dengan meminta peserta untuk memberikan penjelasan tentang " -"jawabannya, memberikan alasan, memberikan contoh yang relevan, dan " -"sebagainya." - -# f73a6e55db234a2990cc66f09734015a -#: ../../source/training/tot/502_communication_skills.rst:708 -msgid "The skill to encourage interaction between participants" -msgstr "Keterampilan mendorong terjadinya interaksi antar peserta." - -# 1225906e82c04dd58f0de9ab9ef6a549 -#: ../../source/training/tot/502_communication_skills.rst:710 -msgid "**d. Skills to provide reinforcement**" -msgstr "**d. Keterampilan Dasar Memberi Penguatan**" - -# 3a1e7fbfab8647088c9c795b50da5286 -#: ../../source/training/tot/502_communication_skills.rst:714 -msgid "" -"There are two kinds of reinforcements, positive and negative reinforcement. " -"Positive reinforcement is the trainer’s behavior in responding positively to " -"a particular behavior of participants that allows such behavior to reoccur. " -"While negative reinforcement is the removal or a reduction of unpleasant " -"stimuli to encourage the reoccurrence of the behavior that arises as the " -"result of the reduction or removal." -msgstr "" -"Penguatan ada dua macam, yaitu penguatan positif dan penguatan negatif. " -"Penguatan positif adalah tingkah laku pelatih dalam merespons secara positif " -"suatu tingkah laku tertentu dari peserta yang memungkinkan tingkah laku " -"tersebut timbul kembali. Sedangkan penguatan negatif adalah pengurangan " -"hingga penghilangan suatu stimulus yang tidak menyenangkan untuk mendorong " -"terulang kembali suatu tingkah laku yang timbul yang sebagai akibat dari " -"pengurangan atau penghilangan tersebut." - -# bbc15ebaeb5a4b49892941624e468bd3 -#: ../../source/training/tot/502_communication_skills.rst:721 -msgid "The purpose of reinforcement is to:" -msgstr "Tujuan penguatan adalah:" - -# 5fdd31bb39d74bf684121fa3c86c6280 -#: ../../source/training/tot/502_communication_skills.rst:723 -msgid "increase the participants’ attention" -msgstr "Meningkatkan perhatian peserta." - -# 938b4f3e26b741b2b7de4988def21356 -#: ../../source/training/tot/502_communication_skills.rst:724 -msgid "Smoothen/ facilitate the learning process" -msgstr "Melancarkan/memudahkan proses pembelajaran." - -# bbe5be906c7948ee99b348d71fcbda4a -#: ../../source/training/tot/502_communication_skills.rst:725 -msgid "Generating and maintaining motivation" -msgstr "Membangkitkan dan mempertahankan motivasi." - -# 7e9758dae1824fc58270f4e23b8fa5a3 -#: ../../source/training/tot/502_communication_skills.rst:726 -msgid "Controlling or changing disturbing attitudes and behavior" -msgstr "Mengontrol atau mengubah sikap dan tingkah laku yang mengganggu." - -# 3970bfb9b34845cc970c757fbe45ce5c -#: ../../source/training/tot/502_communication_skills.rst:727 -msgid "Developing and organizing themselves in learning" -msgstr "Mengembangkan dan mengatur diri sendiri dalam belajar." - -# 248b90e789c54d96a4280042b6bca50a -#: ../../source/training/tot/502_communication_skills.rst:728 -msgid "" -"Driving the way of thinking that is good / divergent and personal initiative" -msgstr "" -"Mengarahkan kepada cara berfikir yang baik/divergen dan inisiatif pribadi." - -# 5d8fb9366ba5467eacd32e7444ffca47 -#: ../../source/training/tot/502_communication_skills.rst:730 -msgid "Reinforcement is given during:" -msgstr "Pemberian penguatan diberikan pada saat:" - -# 622c4579fe1c443c8bf9f8552e19ac66 -#: ../../source/training/tot/502_communication_skills.rst:732 -msgid "Attention to the coach, friend, or the object of discussion" -msgstr "Perhatian pada pelatih, kawan, atau objek diskusi." - -# 507c0307530e4c9cb86e7dc550501689 -#: ../../source/training/tot/502_communication_skills.rst:733 -msgid "The study, reading, working on the board behavior" -msgstr "Tingkah laku belajar, membaca, pekerjaan di papan tulis." - -# dd89dec5f55d46a78c9d53c0573909c0 -#: ../../source/training/tot/502_communication_skills.rst:734 -msgid "The completion of work" -msgstr "Penyelesaian hasil pekerjaan" - -# 19520dc926d9491bb74574e4af2d7419 -#: ../../source/training/tot/502_communication_skills.rst:735 -msgid "The quality of work/ tasks (grooming, beauty)" -msgstr "Kualitas pekerjaan/tugas (kerapian, keindahan)" - -# 3cd1da51661e4d3484ff5e43120fb802 -#: ../../source/training/tot/502_communication_skills.rst:736 -msgid "Repair/ improvement tasks" -msgstr "Perbaikan/penyempurnaan tugas." - -# 968d547f2a854ea79f70a4df40fd1a08 -#: ../../source/training/tot/502_communication_skills.rst:737 -msgid "Independent tasks" -msgstr "Tugas-tugas mandiri" - -# 1883ecdceeae427a8e3bb8165df387dc -#: ../../source/training/tot/502_communication_skills.rst:739 -msgid "**Components of Reinforcement Basic Skills**" -msgstr "**Komponen Keterampilan Dasar Penguatan**" - -# aa07ad7322ea47988b9ec0cd49e43efb -#: ../../source/training/tot/502_communication_skills.rst:741 -msgid "" -"The use of in-class skill components should be carefully selected, tailored " -"to the participants' ages, capability level, needs and background, the " -"purpose and nature of the task. Reinforcement must be meaningful from the " -"participants." -msgstr "" -"Penggunaan komponen keterampilan dalam kelas harus bersifat selektif berhati-" -"hati, disesuaikan dengan usia peserta, tingkat kemampuan, kebutuhan serta " -"latar belakang, tujuan dan sifat tugas. Pemberian penguatan harus bermakna " -"dari peserta." - -# 70fad9b6994a4e0b8b3024bf5256bfbd -#: ../../source/training/tot/502_communication_skills.rst:745 -msgid "Some components of providing reinforcement are:" -msgstr "Beberapa komponen keterampilan memberi penguatan adalah:" - -# 14e66dbf658e49f8b4e60c7872aeeaf1 -#: ../../source/training/tot/502_communication_skills.rst:747 -msgid "Positive reinforcement" -msgstr "Penguatan Positif" - -# 6d1d7e84f68f433f987cece7a78a2b3d -#: ../../source/training/tot/502_communication_skills.rst:749 -msgid "Verbal reinforcement" -msgstr "Penguatan verbal" - -# af03d5b5aacf4e3cb9c6363c50e62229 -#: ../../source/training/tot/502_communication_skills.rst:751 -msgid "" -"Reinforcement can be verbal words that are spoken by the teacher. Examples " -"of it are good, well, precise, I appreciate the income, very intelligent " -"mind, etc." -msgstr "" -"Penguatan verbal dapat berupa kata-kata kalimat yang diucapkan guru. " -"Contoh, “baik”, “bagus”, “tepat”, “saya sangat menghargai pendapatan”, " -"“pikiranmu sangat cerdas”, dan lain-lain." - -# 53d3d867c64a440182558a2c9487d1d2 -#: ../../source/training/tot/502_communication_skills.rst:755 -msgid "Gestural reinforcement" -msgstr "Penguatan gestural" - -# 4b60cbeb87ae4e818600c2d1848aa01b -#: ../../source/training/tot/502_communication_skills.rst:757 -msgid "" -"This reinforcement is given in the form of gestures, facial or limb " -"movements that can give the impression to the students. For example: Lifting " -"an eyebrow, smiling, leering eyes, applause, nodding in agreement, raising " -"the thumb sign, etc." -msgstr "" -"Penguatan ini diberikan dalam bentuk mimik, gerakan wajah atau anggota badan " -"yang dapat memberikan kesan kepada siswa.\n" -"Misal : Mengangkat alis, tersenyum, kerlingan mata, tepuk tangan, anggukan " -"tanda setuju, menaikkan ibu jari tanda “jempolan”, dan lain-lain." - -# dfb211bd2cea40a9b776cb5ad507e25b -#: ../../source/training/tot/502_communication_skills.rst:762 -msgid "Approaching reinforcement" -msgstr "Penguatan dengan cara mendekati" - -# 3ad56634fe704226b84aca3ca93e8f92 -#: ../../source/training/tot/502_communication_skills.rst:764 -msgid "" -"This reinforcement is done by approaching students to express the trainer’s " -"concern for the work, behavior or appearance of the participants. For " -"example: the trainer sits in a group, stands next to a participant. Often " -"the trainer approaches participants to give them verbal reinforcement." -msgstr "" -"Penguatan ini dikerjakan dengan cara mendekati siswa untuk menyatakan " -"perhatian pelatih terhadap pekerjaan, tingkah laku atau penampilan peserta. " -"Misalnya: pelatih duduk dalam kelompok, berdiri disamping peserta. " -"Seringkali pelatih mendekati peserta diberikan untuk memperkuat pengetahuan " -"yang bersifat verbal." - -# 07cb62aab5a7433b8717d945dc5aeaf2 -#: ../../source/training/tot/502_communication_skills.rst:770 -msgid "Reinforcement through touches" -msgstr "Penguatan dengan sentuhan" - -# 3bc48a7c6f754aae9354ee4a592f56fd -#: ../../source/training/tot/502_communication_skills.rst:772 -msgid "" -"A trainer can express appreciation to the participants by patting them, " -"shaking their hands or raising their hands." -msgstr "" -"Pelatih dapat menyatakan penghargaan kepada peserta dengan menepuk pundak " -"peserta, menjabat tangan peserta atau mengangkat tangan peserta." - -# c6d239e715764e90a788983fdc128ee8 -#: ../../source/training/tot/502_communication_skills.rst:775 -msgid "Reinforcement by providing fun activities" -msgstr "Penguatan dengan memberikan kegiatan yang menyenangkan" - -# 3a58cddc9f334b1595f73bfa5bd74469 -#: ../../source/training/tot/502_communication_skills.rst:777 -msgid "" -"This reinforcement may be in the form of asking participants to help his " -"friends when he has finished his work properly, participants are asked to " -"lead activities, etc." -msgstr "" -"Penguatan ini dapat berupa meminta peserta membantu temannya bila dia " -"selesai mengerjakan pekerjaan terlebih dahulu dengan tepat, peserta diminta " -"memimpin kegiatan dan lain-lain." - -# 480dd40c2d404cb4a970bff6ff58a9ce -#: ../../source/training/tot/502_communication_skills.rst:781 -msgid "Symbolic reinforcement or with objects" -msgstr "Penguatan berupa tanda atau benda" - -# 5da8064f8e7d4bb9b03080a89dc9239e -#: ../../source/training/tot/502_communication_skills.rst:783 -msgid "" -"This form of reinforcement is the trainer’s effort in using a variety of " -"symbols to support the reinforcement of positive behavior of participants. " -"This form of reinforcement include commentary written in the work book, " -"giving stamps, money data collection, star, percentage and so on." -msgstr "" -"Penguatan bentuk ini merupakan usaha pelatih dalam menggunakan bermacam-" -"macam simbol penguatan untuk menunjang tingkah laku peserta yang positif. " -"Bentuk penguatan ini antara lain: komentar tertulis dalam buku pekerjaan, " -"pemberian prangko, data uang koleksi, bintang, persen dan sebagainya." - -# 4efb8d79d4b646a59e72e3fa6c344d9d -#: ../../source/training/tot/502_communication_skills.rst:788 -msgid "Negative reinforcement" -msgstr "Penguatan negatif" - -# 3d9ef67682e244fbbd3cf5d517b096ac -#: ../../source/training/tot/502_communication_skills.rst:790 -msgid "" -"The way this is done is the same with positive reinforcement, except that it " -"is not pleasant for the participants in order to reduce or remove their " -"actions." -msgstr "" -"Cara yang dilakukan dalam penguatan negatif sama dengan pemberian penguatan " -"positif, hanya saja yang dilakukan yang tidak menyenangkan bagi peserta " -"supaya dapat mengurangi atau menghilangkan tindakan peserta." - -# 6fc3f0eb603d4679b2c67c47b671cced -#: ../../source/training/tot/502_communication_skills.rst:794 -msgid "How to use the components:" -msgstr "Cara menggunakan komponen:" - -# 2289ecbfa0e2472aa372e62e882b4322 -#: ../../source/training/tot/502_communication_skills.rst:796 -msgid "Varies" -msgstr "Bervariasi" - -# ea29aa040fbd4d75880088c3daddf164 -#: ../../source/training/tot/502_communication_skills.rst:797 -msgid "Provide better reinforcement directly and immediately" -msgstr "Pemberian penguatan lebih baik diberikan secara langsung dan segera." - -# 21f4c52d3e484a639d3422292fe2bc4e -#: ../../source/training/tot/502_communication_skills.rst:798 -msgid "" -"For certain purposes the use of reinforcement can never be given. For " -"example, for participants who answered incorrectly, reinforcement is given " -"to participants in the effort of answering but not on the quality of the " -"answer. The trainer acts should be followed by asking the first participant " -"to imitate the answer or giving consideration to his answer" -msgstr "" -"Untuk keperluan tertentu penggunaan penguatan tidak pernah dapat diberikan. " -"Misalnya kepada peserta yang menjawab salah, penguatan diberikan pada usaha " -"peserta dalam menjawab dan bukan pada kualitas jawaban. Perbuatan pelatih " -"ini segera dilanjutkan dengan meminta peserta pertama untuk menirukan " -"jawaban atau memberikan pertimbangan kepada jawaban temannya." - -# 1e21d76056ee4bd58314980a4fa9a1fc -#: ../../source/training/tot/502_communication_skills.rst:803 -msgid "" -"Providing reinforcement is a behavior that is easier said than done. " -"Therefore intensive exercises are done by the trainer candidates." -msgstr "" -"Memberikan penguatan merupakan tingkah laku yang mudah untuk diucapkan dan " -"sukar dilakukan. Oleh karena itu, latihan-latihan yang intensif dikerjakan " -"oleh calon pelatih." - -# 0f83cbbd571e4cd6b15542cf9f36bd77 -#: ../../source/training/tot/502_communication_skills.rst:806 -msgid "**e. Basic skills in Using Variations**" -msgstr "**e. Keterampilan Dasar Menggunakan Variasi**" - -# ba22cb7bdf66492fafdcfa0400669780 -#: ../../source/training/tot/502_communication_skills.rst:810 -msgid "" -"Using variations is defined as the trainer’s effort in in the context of the " -"training process that aims to overcome the participants’ boredom in " -"following the training, so that participants always show perseverance, as " -"well as enthusiasm and active participation." -msgstr "" -"Menggunakan variasi diartikan sebagai perbuatan pelatih dalam konteks proses " -"pelatihan yang bertujuan mengatasi kebosanan peserta, dalam mengikuti " -"pelatihan, sehingga dalam proses belajarnya peserta senantiasa menunjukan " -"ketekunan, keantusiaan serta berperan secara aktif." - -# 2d05b2fbfb9d4819a6d17d47a58da78d -#: ../../source/training/tot/502_communication_skills.rst:815 -msgid "Use in class is for:" -msgstr "Kegunaan dalam kelas untuk:" - -# fc86123f1834403d84876ce07bb778e4 -#: ../../source/training/tot/502_communication_skills.rst:817 -msgid "" -"Maintaining and improving the participants in issues related to the learning " -"aspects" -msgstr "" -"Memelihara dan meningkatkan peserta terhadap hal-hal yang berkaitan dengan " -"aspek belajar." - -# 805f0f9e6ee44d13b0f8389a80954e5b -#: ../../source/training/tot/502_communication_skills.rst:819 -msgid "" -"Improving the possibility of motivation and curiosity through investigation " -"and exploration" -msgstr "" -"Meningkatkan kemungkinan berfungsinya motivasi rasa ingin tahu melalui " -"kegiatan investigasi dan eksplorasi." - -# 72c42ebf51fc4de2bb6b6b6c3b767bf6 -#: ../../source/training/tot/502_communication_skills.rst:821 -msgid "Establishing a positive attitude towards the trainer" -msgstr "Membentuk sikap positif terhadap pelatih." - -# cd35720008a843a0a315f60865c4369f -#: ../../source/training/tot/502_communication_skills.rst:822 -msgid "" -"The possibility of individual participants to be served so that it gives the " -"ease in learning" -msgstr "" -"Kemungkinan dilayaninya peserta secara individual sehingga memberi " -"kemudahann belajar." - -# 56978df78a92460b967e5d6052456671 -#: ../../source/training/tot/502_communication_skills.rst:824 -msgid "" -"Encouraging learning activities that engage participants in a variety of " -"activities. Learning, interesting and useful in a variety of cognitive levels" -msgstr "" -"Mendorong aktivitas belajar yang melibatkan peserta dalam berbagai kegiatan. " -"Belajar, menarik dan berguna dalam berbagai tingkat kognitif." - -# 825a51a71d13456493e191fe28ad735a -#: ../../source/training/tot/502_communication_skills.rst:827 -msgid "**Components of Making Variations Skill**" -msgstr "**Komponen keterampilan mengadakan variasi**" - -# 8120c7fb458d41618e1848efc54149d7 -#: ../../source/training/tot/502_communication_skills.rst:829 -msgid "Variation in training style" -msgstr "Variasi dalam gaya mengajar pelatih." - -# 64210443d612438a891de64a6bb749d9 -#: ../../source/training/tot/502_communication_skills.rst:831 -msgid "Variety of trainer’s teaching styles include these components:" -msgstr "Variasi gaya mengajar pelatih meliputi komponen-komponen:" - -# 68f86e3519144d95a05abdc8812ddb1c -#: ../../source/training/tot/502_communication_skills.rst:833 -msgid "Voice variation: loud weak, fast slow, high low, great and small" -msgstr "Variasi suara: keras lemah, cepat lambat, tinggi rendah, besar kecil." - -# e392438c5fcd47449f3b629ac9efaf08 -#: ../../source/training/tot/502_communication_skills.rst:834 -msgid "" -"Concentration of attention. Focusing attention can be done verbally, or by " -"using capital symbols" -msgstr "" -"Pemusatan perhatian. Pemusatan perhatian dapat dikerjakan secara verbal, " -"isyarat atau dengan menggunakan modal." - -# 3fa72f24c7224294a782070703199fe7 -#: ../../source/training/tot/502_communication_skills.rst:836 -msgid "" -"Silence. By the time the trainer has finished explaining, activities are " -"often observed to pause abruptly in a short moment" -msgstr "" -"Kesenyapan. Pada saat pelatih menerangkan seringkali diperhatikan kegiatan " -"berhenti sejenak secara tiba-tiba." - -# 6f393e0747e847a9af61dd8b136ccb56 -#: ../../source/training/tot/502_communication_skills.rst:838 -msgid "" -"There is a time of silence when the trainer is moving from one teaching " -"segment to the other" -msgstr "" -"Ada kalanya diam sejenak diperlukan apabila pelatih akan berpindah dari " -"segman mengajar ke segman mengajar yang lain." - -# a664a9b38a734ba59f7f1075b3199845 -#: ../../source/training/tot/502_communication_skills.rst:840 -msgid "" -"Eye contact. To improve the relationship with the students and avoid " -"impersonal things, then eye contact is required during teaching process" -msgstr "" -"Kontak Pandang. Untuk meningkatkan hubungan dengan siswa dan menghindari hal-" -"hal yang bersifat impersonal, maka kontak pandang perlu dikerjakan selama " -"proses pengajaran" - -# 16e509094d344fcd9ab0cfd43f2c91a5 -#: ../../source/training/tot/502_communication_skills.rst:842 -msgid "" -"Gestures and lyrics: the change in face expression, head movement, body " -"movement is very important in communication process" -msgstr "" -"Gerakan badan dan lirik: Perubahan ekspersi wajah, gerakan kepala, badan, " -"sangat penting dalam proses komunikasi" - -# f19f2023bee547bb821854b4853e8bef -#: ../../source/training/tot/502_communication_skills.rst:844 -msgid "" -"The change in trainer’s position. The participants’ attention can be " -"improved by the change in trainer’s position in the communication " -"interaction process" -msgstr "" -"Perubahan posisi pelatih. Perhatian peserta dapat ditingkatkan melalui " -"perubahan posisi pelatih dalam proses interaksi komunikasi." - -# 06ee169a799d48558fdbd815812ba125 -#: ../../source/training/tot/502_communication_skills.rst:848 -msgid "Variations in the use of media and teaching materials" -msgstr "Variasi penggunaan media dan bahan pengajaran." - -# 66bc292d7c7d42ab9eb0eea21bfdc6f8 -#: ../../source/training/tot/502_communication_skills.rst:850 -msgid "" -"Variations in any type of media or variations between media type need to be " -"considered in the learning process" -msgstr "" -"Variasi di dalam setiap jenis media atau variasi antara jenis media perlu " -"diperhatikan dalam proses belajar mengajar." - -# 24045d2ade3646868a1c67f9fe92349f -#: ../../source/training/tot/502_communication_skills.rst:853 -msgid "Variations of interaction pattern and participant’s activity" -msgstr "Variasi pola interaksi dan kegiatan peserta." - -# 84882a92a0094e8bb6206b5ff5fde1e6 -#: ../../source/training/tot/502_communication_skills.rst:855 -msgid "" -"The range of interaction can move between the two extreme poles, the trainer " -"as the center of activities and participants as the center of activities. " -"Changes in the interaction between the two poles will result in an activity " -"pattern that is experienced by the participants. From the description above, " -"it is clear that the skills in using variations are wider compared with the " -"skill of providing reinforcement and inquiry skills." -msgstr "" -"Rentangan interaksi dapat bergerak diantara dua kutup yang ekstrim yakni " -"pelatih sebagai pusat kegiatan dan peserta sebagai pusat kegiatan. Perubahan " -"interaksi diantara kedua kutup tadi akan berakibat pada pola kegiatan yang " -"dialami peserta. Dari uraian tersebut di atas, jelas bahwa keterampilan " -"menggunakan variasi bersifat lebih luas jika dibandingkan dengan " -"keterampilan memberi penguatan dan keterampilan bertanya." - -# 726530bead434a3da1ef5d959ac978ce -#: ../../source/training/tot/502_communication_skills.rst:863 -msgid "**The principles that need to be understood**" -msgstr "**Prinsip-prinsip yang perlu dipahami**" - -# 3024bbaacf0f415a9d57b22947118e41 -#: ../../source/training/tot/502_communication_skills.rst:865 -msgid "" -"The principles which will need the use of natural variation among others are:" -msgstr "Prinsip-prinsip yang perlu alami penggunaan variasi antara lain:" - -# 1d4894a7fd7244a1900f8bd5130a8289 -#: ../../source/training/tot/502_communication_skills.rst:867 -msgid "Changes have to be smooth and accurate" -msgstr "Perubahan yang digunakan harus lancar dan tepat." - -# 73da6b01a3fe40a69169f79485a9281e -#: ../../source/training/tot/502_communication_skills.rst:868 -msgid "The use of variation technique should be smooth and accurate" -msgstr "Pengguanaan teknik variasi harus lancar dan tepat." - -# 7a4c8ac0cabc49e3b2567c9442f25dd0 -#: ../../source/training/tot/502_communication_skills.rst:869 -msgid "" -"The use of the variation components must be completely structured and " -"planned in advance" -msgstr "" -"Penggunaan komponen-komponen variasi harus benar-benar terstuktur dan " -"direncanakan sebelumnya." - -# df10a677d58745f5a7e9ce52f7501350 -#: ../../source/training/tot/502_communication_skills.rst:871 -msgid "" -"The use of variation components to be flexible and spontaneous based on " -"participant feedback" -msgstr "" -"Penggunaan komponen variasi harus fleksibel dan spontan berdasarkan feedback " -"peserta" - -# aea3d8c8180d41159cb1003495398c2e -#: ../../source/training/tot/502_communication_skills.rst:874 -msgid "**f. Classroom Management Skills**" -msgstr "**f. Keterampilan Mengelola Kelas**" - -# 002ea49b55414623b4997c8423c7dcfe -#: ../../source/training/tot/502_communication_skills.rst:878 -msgid "" -"Classroom management is the creation of conditions that enable the training " -"management to take place optimally. This is in contrast to the management of " -"learning, i.e. the teaching itself involving the material components, " -"methods, and training aids in achieving the learning objectives." -msgstr "" -"Pengelolaan kelas adalah penciptaan kondisi yang memungkinkan pengelolaan " -"pelatihan dapat berlangsung secara optimal. Hal ini berbeda dengan " -"pengelolaan pembelajaran, yaitu kegiatan mengajar itu sendiri yang " -"melibatkan secara lansung komponen materi, metode, dan alat bantu mengajar " -"dalam rangka pencapaian tujuan pembelajaran. " - -# a3156ce1e57f48ebaaf6a1af690404e6 -#: ../../source/training/tot/502_communication_skills.rst:883 -msgid "" -"Examples of learning management problems are unclear learning objectives, " -"the subject matter is too easy or too hard, medium or inappropriate learning " -"methods, the materials are not in systematic order, etc. While examples of " -"classroom management problems are sleepy participants, crowded classroom, " -"participants not doing the tasks, participants teasing others, broken seats, " -"dirty classroom, etc." -msgstr "" -"Contoh masalah pengelolaan pembelajaran misalnya tujuan pembelajaran tidak " -"jelas, materi pelajaran terlalu mudah atau terlalu sulit, media atau metode " -"pembelajaran tidak sesuai, urutan materi tidak sistematis, penilaian tidak " -"jelas, dan lain sebagainya. Sedangkan contoh masalah pengelolaan kelas " -"adalah peserta mengantuk, peserta ramai, peserta tidak mengerjakan tugas, " -"peserta senang mengganggu teman, kursi banyak yang rusak, ruang kelas kotor, " -"dan masih banyak contoh lain." - -# bb4efb8f360b4426b076a6e0b5ee7978 -#: ../../source/training/tot/502_communication_skills.rst:890 -msgid "" -"Managing a class is a function of the trainer as a manager. Management means " -"the organization or management in order for things to run smoothly, " -"effectively, and efficiently. So in this case the function of a trainer is " -"as a manager or an organizer. While the purpose of managing the class is: " -"(1) to create and maintain an optimal learning condition, (2) to restore in " -"the event of disruption to the learning process" -msgstr "" -"Mengelole kelas merupakan fungsi pelatih sebagai manajer. Manajemen artinya " -"sebagai penyelenggaraan atau pengurusan supaya yang dikelola dapat berjalan " -"dengan lancar, efektif, dan efesien. Sehingga dalam hal ini fungsi pelatih " -"sebagai manajer adalah sebagai pengorganisasi atau pengelola. Sedangkan " -"tujuan mengelola kelas adalah: (1) ntuk menciptakan dan memelihara kondisi " -"belajar yang optimal, (2) mengembalikan bila terjadi gangguan dalam proses " -"belajar mengajar." - -# 1520495a5c1c40a39ef2f827429251f5 -#: ../../source/training/tot/502_communication_skills.rst:897 -msgid "**Classroom Management Approaches**" -msgstr "**Pendekatan dalam Pengelolaan Kelas**" - -# f7244a5f40e34daa9d38a2c304e56402 -#: ../../source/training/tot/502_communication_skills.rst:899 -msgid "Various classroom management approaches are:" -msgstr "Macam-macam pendekatan pengelolaan kelas adalah :" - -# 66a7595b418e4fae990b9a6fc760004b -#: ../../source/training/tot/502_communication_skills.rst:901 -msgid "Behavior Modification approach" -msgstr "Pendekatan perubahan tingkah laku." - -# 1735df6712f04cb8b94063be0162b894 -#: ../../source/training/tot/502_communication_skills.rst:902 -msgid "Social climate approach" -msgstr "Pendekatan iklim sosial." - -# d4b0d54e6410484598cbc04f94877af8 -#: ../../source/training/tot/502_communication_skills.rst:903 -msgid "Group process approach" -msgstr "Pendekatan kelompok." - -# 9a8113641f7a4c31a9ab1708544ae7b6 -#: ../../source/training/tot/502_communication_skills.rst:905 -msgid "**Behavior Modification Approach**" -msgstr "**Pendekatan Pengubahan Tingkah Laku** " - -# e8bd3293ed6d48a1a993f15f453160ee -#: ../../source/training/tot/502_communication_skills.rst:907 -msgid "" -"Behavior modification approach departs from behavior psychology with the " -"basic assumption that human behavior either good or bad, to a certain " -"extent, is the result of learning process. Thus, human behavior can be " -"modified." -msgstr "" -"Pendekatan pengubahan perilaku bertolak dari psikologi tingkah laku dengan " -"anggapan dasar bahwa tingkah laku manusia yang baik maupun yang buruk, dalam " -"batas tertentu merupakan hasil belajar. Dengan demikian maka tingkah laku " -"manusia tersebut dapat dimodifikasi." - -# 7db0c59bd1ab4ba88a82d396462036f7 -#: ../../source/training/tot/502_communication_skills.rst:911 -msgid "" -"Modifications include using positive reinforcement techniques, negative " -"reinforcement, deletion, and punishment. Positive reinforcement is a " -"response to a behavior, which can increase the likelihood of reoccurrence of " -"such behavior. Negative reinforcement is a reduction to the removal of an " -"unpleasant stimulus to encourage the recurrence of a behavior that arises as " -"a result of the reduction or removal." -msgstr "" -"Modifikasi tersebut antara lain menggunakan teknik penguatan positif, " -"penguatan negatif, penghapusan, dan hukuman. Penguatan positif adalah " -"respons terhadap suatu tingkah laku, yang dapat meningkatkan kemungkinan " -"terulangnya kembali tingkah laku tersebut. Penguatan negatif adalah " -"pengurangan hingga penghilangan stimulus yang tidak menyenangkan untuk " -"mendorong terulang kembali suatu tingkah laku yang timbul sebagai akibat " -"dari pengurangan atau penghilangan tersebut. " - -# 5e272a473ea1485491c59c9a51167dbe -#: ../../source/training/tot/502_communication_skills.rst:918 -msgid "Principle of use:" -msgstr "Prinsip penggunaan:" - -# 2e809f1a024448a7b956b3527317d0d0 -#: ../../source/training/tot/502_communication_skills.rst:920 -msgid "Avoidance of painful stimulus" -msgstr "Menghindari pemberian stimulus yang menyakitkan." - -# 7d1b581c0d504c8abc8e4f8241a20267 -#: ../../source/training/tot/502_communication_skills.rst:921 -msgid "Clear target" -msgstr "Sasaran jelas" - -# b194a84b158c4a3c82c1a868c97c4fc5 -#: ../../source/training/tot/502_communication_skills.rst:922 -msgid "Provision of immediate reinforcement" -msgstr "Pemberian penguatan dengan segera." - -# 16c53a4253eb45bfa1b79dcbc649067b -#: ../../source/training/tot/502_communication_skills.rst:923 -msgid "Presenting various stimulus" -msgstr "Menyajikan stimulus dengan bervariasi." - -# e3386592ab7e49c692a612702d09269a -#: ../../source/training/tot/502_communication_skills.rst:924 -msgid "Enthusiasm" -msgstr "Rasa antusias" - -# cb10595696d64c459b93d356a4560346 -#: ../../source/training/tot/502_communication_skills.rst:925 -msgid "Combined with other techniques" -msgstr "Dikombinasikan dengan teknik lain." - -# 5815644560e34d61837f919502ea79fa -#: ../../source/training/tot/502_communication_skills.rst:927 -msgid "**Social Climate Approach (Social-Emotional Climate)**" -msgstr "**Pendekatan Iklim Sosial (Iklim Sosial-Emosional)** " - -# 2458747b0c6147649862ca12ec258357 -#: ../../source/training/tot/502_communication_skills.rst:929 -msgid "" -"Social-emotional climate approach departs from clinical psychology and " -"counseling, with the basic assumption that the teaching and learning " -"activities are effective and efficient when there are social-emotional " -"relationships between participants and trainers and between participants. " -"This can be pursued by means of:" -msgstr "" -"Pendekatan iklim sosial-emosional bertolak dari psikologi klinis dan " -"konseling, dengan anggapan dasar bahwa kegiatan belajar mengajar yang " -"efektif dan efisien apabila ada hubungan sosial-emosional yang baik antara " -"pelatih dengan peserta dan peserta dengan peserta. Hal tersebut dapat " -"diupayakan pelatih dengan cara:" - -# dba6cd1b2f34488b9cabb909612e374e -#: ../../source/training/tot/502_communication_skills.rst:935 -msgid "Open attitude" -msgstr "Sikap terbuka." - -# c3181d79095d42f7b053b17ce101901b -#: ../../source/training/tot/502_communication_skills.rst:936 -msgid "Acceptance and respect of participants" -msgstr "Sikap menerima dan menghargai peserta" - -# bda1b5e44b4444c8a31810d6ddfaae4c -#: ../../source/training/tot/502_communication_skills.rst:937 -msgid "Empathy" -msgstr "Sikap empati" - -# 3cbe368acf0c496aa399f1c926e5b64e -#: ../../source/training/tot/502_communication_skills.rst:938 -msgid "Attitude to discuss the situation violations and violators" -msgstr "Sikap membicarakan situasi pelanggaran dan pelaku pelanggaran." - -# 265bf13630fc4ff5a11007f98bb81130 -#: ../../source/training/tot/502_communication_skills.rst:939 -msgid "Democratic attitudes" -msgstr "Sikap demokratis" - -# 92798ee239f14e6c9324645957942e1f -#: ../../source/training/tot/502_communication_skills.rst:941 -msgid "**Group Process Approach**" -msgstr "**Pendekatan Proses Kelompok**" - -# 6969646dc237497e883cd63e1953b6a9 -#: ../../source/training/tot/502_communication_skills.rst:943 -msgid "" -"Group process approach departs from social psychology and group dynamics, " -"with the basic assumption that the effective and efficient teaching and " -"learning activities take place in the context of a group, i.e. the class. " -"For that task the trainer has to create a class that has strong ties and can " -"work effectively and efficiently." -msgstr "" -"Pendekatan proses kelompok bertolak dari psikologi sosial dan dinamika " -"kelompok, dengan anggapan dasar bahwa kegiatan belajar mengajar yang efektif " -"dan efisien berlangsung dalam konteks kelompok, yaitu kelompok kelas. Untuk " -"itu tugas pelatih disini adalah menciptakan kelompok kelas yang mempunyai " -"ikatan yang kuat serta dapat bekerja secara efektif dan efisien." - -# ab989d87fa8d4fe1866407e9dc758880 -#: ../../source/training/tot/502_communication_skills.rst:949 -msgid "" -"To create a good group bonding atmosphere we need the establishment of " -"common goals in the group, clear rules to bind the participants into groups, " -"and leadership within the group. And to maintain a healthy working " -"environment, the trainer needs to do for example:" -msgstr "" -"Untuk menciptakan suasana ikatan kelompok yang baik perlu adanya pembentukan " -"tujuan yang sama dalam kelompok, aturan yang jelas untuk mengikat peserta " -"menjadi kelompok, dan kepemimpinan pelatih dalam kelompok. Dan untuk " -"memelihara suasana kerja kelompok yang sehat pelatih perlu melakukan " -"misalnya:" - -# 56a1638109d345689bf33ea48ef97d1a -#: ../../source/training/tot/502_communication_skills.rst:954 -msgid "Encourage and equalize participation" -msgstr "Mendorong dan memeratakan partisipasi" - -# e55551cb247f47b28cd394a854ed864a -#: ../../source/training/tot/502_communication_skills.rst:955 -msgid "Work out a compromise" -msgstr "Mengusahakan kompromi." - -# 4e1150ad9bb949528d3eb516de7dedf2 -#: ../../source/training/tot/502_communication_skills.rst:956 -msgid "Reduce tension" -msgstr "Mengurangi ketegangan." - -# 8c44a76243744dcdb3c4ab42204685c1 -#: ../../source/training/tot/502_communication_skills.rst:957 -msgid "Clarify communications" -msgstr "Memperjelas komunikasi." - -# 00ff6709766b47d3a2364c5faaa8329a -#: ../../source/training/tot/502_communication_skills.rst:958 -msgid "Addressing conflicts between individuals or groups" -msgstr "Mengatasi pertentangan antar pribadi atau kelompok." - -# 1743748f61c44d5d937b4b875bfab0f0 -#: ../../source/training/tot/502_communication_skills.rst:959 -msgid "" -"Showed that the presence of the participants are physically and " -"psychologically" -msgstr "Menunjukkan bahwa kehadiran peserta adalah fisik dan psikis." - -# e6bfe0db162740fea63adff510581454 -#: ../../source/training/tot/502_communication_skills.rst:961 -msgid "Describe sanctions" -msgstr "Menerangkan sangsi." - -# 48efc85603b745daa325647d0d8f715c -#: ../../source/training/tot/502_communication_skills.rst:964 -msgid "Bibliography" -msgstr "Daftar Bacaan" - -# 488f2e5bc18d4a3f9b4017a949d92ea9 -#: ../../source/training/tot/502_communication_skills.rst:966 -msgid "" -"**Arend, Ricard.** 1997. Classroom Instructional Management. New York: The Mc" -msgstr "" -"**Arend, Ricard.** 1997. Classroom Instructional Management. New York: The Mc" - -# 634f3aa783ad4c38836f16ec79a2df56 -#: ../../source/training/tot/502_communication_skills.rst:966 -msgid "Graw-Hill Company." -msgstr "Graw-Hill Company." - -# a1efc8ba45854aa1a23575397e8ca80d -#: ../../source/training/tot/502_communication_skills.rst:969 -msgid "" -"**Brent D. Ruben dan Lea P. Stewart.** 2013. *Komunikasi dan Perilaku " -"Manusia*" -msgstr "" -"*Brent D. Ruben dan Lea P. Stewart.** 2013. *Komunikasi dan Perilaku Manusia*" - -# 2837ed233e5541199593853c749efebe -#: ../../source/training/tot/502_communication_skills.rst:969 -msgid "" -"*(Edisi Kelima), terjemahan Ibnu Hamad*. Jakarta: PT RajaGrafindo Persada." -msgstr "" -"*(Edisi Kelima), terjemahan Ibnu Hamad*. Jakarta: PT RajaGrafindo Persada." - -# d3b6793bd9f541a68383ac198c402b4c -#: ../../source/training/tot/502_communication_skills.rst:972 -msgid "" -"**Bahri Syaeful dan Aswan Zain.** 2006. *Strategi Belajar Mengajar*. " -"Jakarta :" -msgstr "" -"**Bahri Syaeful dan Aswan Zain.** 2006. *Strategi Belajar Mengajar*. " -"Jakarta :" - -# 0a9eb2313f764594bdc8be0e37871e63 -#: ../../source/training/tot/502_communication_skills.rst:972 -msgid "Rineka Cipta." -msgstr "Rineka Cipta." - -# 89737a8d654f4581ad62b0835b7d8f3d -#: ../../source/training/tot/502_communication_skills.rst:975 -msgid "" -"**Budimansyah, D.** 2002. *Model Pembelajaran dan Penilaian Portofolio*." -msgstr "" -"**Budimansyah, D.** 2002. *Model Pembelajaran dan Penilaian Portofolio*." - -# a1d1b48795c5427e8e67d3eb5506d7f9 -#: ../../source/training/tot/502_communication_skills.rst:975 -msgid "Bandung: Genesindo." -msgstr "Bandung: Genesindo." - -# 428f3b7b0fcd47008943b5dd7f09393a -#: ../../source/training/tot/502_communication_skills.rst:978 -msgid "" -"**Joyce, B. and Weil, M.** (1980) Models of Teaching. Englewood Cliffs, New" -msgstr "" -"**Joyce, B. and Weil, M.** (1980) Models of Teaching. Englewood Cliffs, New" - -# deb45c421710462bb362dc91a7a5c91c -#: ../../source/training/tot/502_communication_skills.rst:978 -msgid "Jersey: Prentice-Hall Inc." -msgstr "Jersey: Prentice-Hall Inc." - -# 71ef564dd30948a29463e05c2767dd11 -#: ../../source/training/tot/502_communication_skills.rst:981 -msgid "" -"**Sanjaya Wina.** 2007. *Strategi Pembelajaran: Berorientasi Standar Proses*" -msgstr "" -"**Sanjaya Wina.** 2007. *Strategi Pembelajaran: Berorientasi Standar Proses*" - -# da6663cb6f4a40159be6f08b7120c448 -#: ../../source/training/tot/502_communication_skills.rst:981 -msgid "*Pendidikan*. Jakarta: Kencana Prenada Media Group." -msgstr "*Pendidikan*. Jakarta: Kencana Prenada Media Group." - -# 421500150c684a6a80177d71efbc4795 -#: ../../source/training/tot/502_communication_skills.rst:985 -msgid "" -"**Thomas M. Sheidel.** 1976. Speech Communication and Human Interaction. 2nd" -msgstr "" -"**Thomas M. Sheidel.** 1976. Speech Communication and Human Interaction. 2nd" - -# 973ae41f06754701acdd81678755af77 -#: ../../source/training/tot/502_communication_skills.rst:984 -msgid "Edition. Glenville, III. Scott, Foresman & Co." -msgstr "Edition. Glenville, III. Scott, Foresman & Co." diff --git a/docs/i18n/id/LC_MESSAGES/training/tot/index.po b/docs/i18n/id/LC_MESSAGES/training/tot/index.po deleted file mode 100644 index f9bf5b3d..00000000 --- a/docs/i18n/id/LC_MESSAGES/training/tot/index.po +++ /dev/null @@ -1,57 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# mahardika fadmastuti , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:31+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 62dc6db078be43ed9b8edef400b66771 -#: ../../source/training/tot/index.rst:4 -msgid "Training of Trainer Module" -msgstr "Modul Training of Trainer (ToT)" - -# 87d347cdca6e474eb8f4695f2c405f4c -#: ../../source/training/tot/index.rst:6 -msgid "" -"The main objective of this training is to train people to be leaders and " -"trainers in Scenario Development program for Contingency Planning (SD4CP) in " -"their respective regions. After completing the training, participants will " -"have the facilitation skills in OSM / QGIS / InaSAFE which are needed as a " -"facilitator, and training skills to help train others in developing a " -"realistic disaster scenario that can be used in contingency plans. This will " -"lead to better decision-making during the process of making contingency " -"plans. It is also expected that TOT participants can provide technical " -"assistance in their respective regions." -msgstr "" -"Tujuan utama dari pelatihan ini adalah melatih peserta untuk menjadi " -"pemimpin (*leaders*) dan pelatih (*trainers*) dalam program Pengembangan " -"Skenario untuk Rencana Kontinjensi (SD4CP) di daerah mereka masing-masing. " -"Setelah menyelesaikan pelatihan, peserta akan memiliki kemampuan-kemampuan " -"fasilitasi/facilitation yang dibutuhkan tentang OSM/QGIS/InaSAFE sebagai " -"fasilitator dan kemampuan-kemampuan mengenai pelatihan untuk membantu dan " -"melatih orang lain dalam mengembangkan sebuah skenario bencana yang " -"realistis yang dapat dimanfaatkan dalam rencana kontinjensi. Hal ini akan " -"menimbulkan pengambilan keputusan yang lebih baik selama proses pembuatan " -"rencana kontinjensi. Selain itu diharapkan peserta TOT dapat memberikan " -"bantuan teknis bagi daerah mereka masing-masing." - -# 291434d6ae124a03b3ca7b155840ebee -#: ../../source/training/tot/index.rst:16 -msgid "The course is scheduled to run for one day." -msgstr "Pelatihan ini dijadwalkan untuk dijalankan dalam satu hari." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/batch_runner.po b/docs/i18n/id/LC_MESSAGES/user-docs/application-help/batch_runner.po deleted file mode 100644 index 93ee1b6e..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/batch_runner.po +++ /dev/null @@ -1,165 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# mahardika fadmastuti , 2013 -# Riangga Sujatmiko , 2013 -# Riangga Sujatmiko , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2017-09-23 19:10+0000\n" -"Last-Translator: Richard Duivenvoorde \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 9155c06e4a9942629a057ecd282d114e -# ca640a8b67a148498436fe4f07774d69 -#: ../../source/user-docs/application-help/batch_runner.rst:4 -#: ../../source/user-docs/application-help/batch_runner.rst:11 -msgid "Batch Runner" -msgstr "Batch Runner" - -# 7500d4b6463b4a65b055f4fb3a3afaa8 -#: ../../source/user-docs/application-help/batch_runner.rst:11 -msgid "*Batch Runner*" -msgstr "*InaSAFE Batch Runner*" - -# 7f94fe15baa8448e8d7be5566b489255 -#: ../../source/user-docs/application-help/batch_runner.rst:13 -msgid "" -"With this tool you can set up numerous scenarios and run them all in one go. " -"For example, in a typical use case you might define a number of flood impact " -"scenarios all using a standard dataset, such as :file:`flood.shp`. As new " -"flood data becomes available you replace :file:`flood.shp` and rerun the " -"scenarios using the batch runner. Using this approach you can quickly " -"produce regional contingency plans as your understanding of hazards changes. " -"When you run the batch of scenarios, PDF reports are generated automatically " -"and all placed in a single common directory making it easy for you to browse " -"and disseminate the reports produced." -msgstr "" -"Dengan *tool* ini, Anda dapat mengatur berbagai skenario dan menjalankan " -"mereka semua sekaligus. Misalnya dalam sebuah kasus, Anda dapat menetapkan " -"sejumlah skenario dampak banjir dengan menggunakan sebuah dataset standar, " -"misalnya :file:`flood.shp`. Begitu data banjir yang baru telah tersedia, " -"Anda menimpa/mengganti :file:`flood.shp` dan kembali menjalankan skenario " -"menggunakan *batch runner*. Dengan menggunakan pendekatan ini, Anda dapat " -"dengan cepat menghasilkan rencana kontinjensi daerah disertai dengan " -"pemahaman Anda akan perubahan-perubahan ancaman. Ketika Anda menjalankan " -"*batch* skenario, sebuah laporan dalam bentuk *file* PDF akan dihasilkan " -"secara otomatis dan semua ditempatkan dalam sebuah direktori umum sehingga " -"memudahkan Anda untuk mencari dan menyebarkan laporan tersebut. " - -# 569a2d6bc6784b8cb7453eab1c5cfcef -#: ../../source/user-docs/application-help/batch_runner.rst:25 -msgid "Steps for using the Batch Runner" -msgstr "Tahap untuk menggunakan *Batch Runner*" - -# 57f40193d9754eb5a28b549c0d92b237 -#: ../../source/user-docs/application-help/batch_runner.rst:27 -msgid "Create a normal scenario. Run the scenario to make sure it is valid." -msgstr "" -"Buat sebuah skenario normal. Jalankan skenario untuk memastikan bahwa " -"skenario tersebut valid." - -# 5d6a7e7fcff64cd3ae535b9411f4516b -#: ../../source/user-docs/application-help/batch_runner.rst:28 -msgid "" -"Save the scenario :ref:`tb_save_scenario` use an easily accessible folder." -msgstr "" -"Simpan skenario :ref:`tb_save_scenario` simpan di direktori yang mudah " -"diakses." - -# e1c30cf1304d46e2879785506a5dc49a -#: ../../source/user-docs/application-help/batch_runner.rst:29 -msgid "Repeat the previous step until a few scenarios have been saved." -msgstr "Ulangi tahap tersebut sampai beberapa skenario telah tersimpan." - -# 8878ac20d3d2450d9b4b8b7593370e06 -#: ../../source/user-docs/application-help/batch_runner.rst:30 -msgid "" -"Go to the Window menu --> Plugins --> InaSAFE --> Batch Runner you should " -"see a dialog box like below" -msgstr "" -"Pergi ke menu ---> Plugins --> InaSAFE --> Batch Runner anda akan melihat " -"jendela seperti dibawah ini" - -# 9155c06e4a9942629a057ecd282d114e -# ca640a8b67a148498436fe4f07774d69 -#: ../../source/user-docs/application-help/batch_runner.rst:37 -#, fuzzy -msgid "Batch Runner Dir" -msgstr "Batch Runner" - -# 8bbae10d1564426491b48d4657963001 -#: ../../source/user-docs/application-help/batch_runner.rst:37 -msgid "*Batch Runner Directory*" -msgstr "*Direktori Batch Runner*" - -# 8fbfa8382df6420e85077f5e34c898bb -#: ../../source/user-docs/application-help/batch_runner.rst:39 -msgid "" -"Set the scenario directory to the one used in step 2. If this is done " -"correctly the results table will list your saved scenarios." -msgstr "" -"Atur agar direktori skenario mengarah ke direktori yang diatur pada tahap 2. " -"Jika hal ini diatur dengan benar, sebuah tabel dibawah akan memunculkan " -"skenario yang anda simpan." - -# ee642acea8ed4eb984e220f69e7a6c80 -#: ../../source/user-docs/application-help/batch_runner.rst:40 -msgid "" -"Set output destination to an easily accessible directory, this is where all " -"your reports will go." -msgstr "" -"Atur destinasi keluaran ke direktori yang mudah diakses, ini adalah " -"direktori dimana semua report anda akan dihasilkan." - -# 1705d7f644b144a3af24813a4572981b -#: ../../source/user-docs/application-help/batch_runner.rst:41 -msgid "Run all your scenarios it should look like below" -msgstr "Jalankan semua skenario dan akan terlihat seperti dibawah ini" - -# 558bf7dab1de499f8464491de4189296 -#: ../../source/user-docs/application-help/batch_runner.rst:0 -#, fuzzy -msgid "Batch Runner Busy" -msgstr "*Bath Runner sedang Berjalan*" - -# 558bf7dab1de499f8464491de4189296 -#: ../../source/user-docs/application-help/batch_runner.rst:48 -msgid "*Batch Runner Busy*" -msgstr "*Bath Runner sedang Berjalan*" - -# 24f20c06aa144df7821665df850b5812 -#: ../../source/user-docs/application-help/batch_runner.rst:50 -msgid "" -"look in the output destination. You should see all the reports and a batch " -"report confirmation." -msgstr "" -"lihat pada direktori hasil. Anda akan melihat semua hasil dan konfirmasi " -"*batch runner*." - -# 431cf363dc3f49f5a9dbea4eeb8fe764 -#: ../../source/user-docs/application-help/batch_runner.rst:58 -#, fuzzy -msgid "Batch Runner Results" -msgstr "*Hasil Batch Runner*" - -# 431cf363dc3f49f5a9dbea4eeb8fe764 -#: ../../source/user-docs/application-help/batch_runner.rst:58 -msgid "*Batch Runner Results*" -msgstr "*Hasil Batch Runner*" diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/converter.po b/docs/i18n/id/LC_MESSAGES/user-docs/application-help/converter.po deleted file mode 100644 index 468ea265..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/converter.po +++ /dev/null @@ -1,144 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# adityo dwijananto , 2013 -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -# mahardika fadmastuti , 2013 -# Riangga Sujatmiko , 2013 -# Riangga Sujatmiko , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:17+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 7b12560027a74c15b89f7610755e8435 -#: ../../source/user-docs/application-help/converter.rst:4 -msgid "Shakemap Converter" -msgstr "Pengonversi Shakemap" - -# fe9d947922b84cb0bbea74baf92602a8 -#: ../../source/user-docs/application-help/converter.rst:6 -msgid "" -"Shakemaps are useful for carrying out contingency planning for an earthquake " -"event. Normally these are distributed as grid.xml files which are not usable " -"in |project_name| or QGIS. The Shakemap Converter tool imports a grid.xml " -"file as a GEOTIFF file so that it can be used within |project_name|." -msgstr "" -"Peta kekuatan gempa berguna untuk melaksanakan rencana kontingensi untuk " -"bencana gempa bumi. Biasanya hal ini didistribusikan sebagai file grid.xml " -"yang tidak dapat digunakan pada |project_name| atau QGIS. Alat Shakemap " -"Converter mengimpor sebuah file grid.xml sebagai file GEOTIFF yang dapat " -"digunakan dalam |project_name|." - -# 66012ebfae8c43299e86b6e74b0ff71e -#: ../../source/user-docs/application-help/converter.rst:11 -msgid "" -"Two different interpolation algorithms can be used during the import process " -"- **Nearest Neighbour** and **Inverse Distance**. After the conversion, the " -"tool automatically creates |project_name| keyword metadata for the layer so " -"that it can be used immediately for analysis." -msgstr "" -"Dua algoritma interpolasi yang berbeda dapat digunakan selama proses impor - " -"**Nearest Neighbour** dan **Inverse Distance**. Setelah konversi, alat " -"tersebut secara otomatis membuat metadata kata kunci |project_name| untuk " -"layer sehingga dapat segera digunakan untuk analisis." - -# 87d809ed3a5d40359dd48f11ebfc62f8 -#: ../../source/user-docs/application-help/converter.rst:21 -#, fuzzy -msgid "Converter" -msgstr "*Konverter*" - -# 87d809ed3a5d40359dd48f11ebfc62f8 -#: ../../source/user-docs/application-help/converter.rst:21 -msgid "*Converter*" -msgstr "*Konverter*" - -# 0181301c1a2b42549d48f140b4bb9cde -#: ../../source/user-docs/application-help/converter.rst:23 -msgid "To use this tool effectively:" -msgstr "Untuk menggunakan alat ini secara efektif:" - -# 98de207c682a461e80a9bcb07b7708e6 -#: ../../source/user-docs/application-help/converter.rst:25 -msgid "Select a :file:`grid.xml` file for the input layer." -msgstr "Pilih file :file:`grid.xml` untuk layer input." - -# a37e5bfd1f414a169a7988c1e9733ae3 -#: ../../source/user-docs/application-help/converter.rst:26 -msgid "Add the title of the shakemap that will be used for the keywords." -msgstr "Tambahkan judul shakemap yang akan digunakan untuk kata kunci." - -# 44427227fa3a412397caafd06a22bdc9 -#: ../../source/user-docs/application-help/converter.rst:27 -msgid "Add the source of the shakemap that will also be used for the keywords." -msgstr "Tambahkan sumber shakemap yang juga akan digunakan untuk kata kunci." - -# 330aa238e2ef4e7b87f3ba3248fdc994 -#: ../../source/user-docs/application-help/converter.rst:28 -msgid "Choose where to write the output layer to." -msgstr "Pilih lokasi untuk menulis layer output." - -# a87f810d2a954d478881ee64d51e0109 -#: ../../source/user-docs/application-help/converter.rst:29 -msgid "" -"Choose the interpolation algorithm that should be used when converting the " -"xml grid to a raster. If unsure keep the default." -msgstr "" -"Pilih algoritma interpolasi yang akan digunakan untuk mengubah grid xml " -"menjadi raster. Jika tidak yakin, gunakan default." - -# 6a7cc8ed8ccf446280eaaa7e6e8086ba -#: ../../source/user-docs/application-help/converter.rst:32 -msgid "" -"You can obtain shake data for free from the `USGS shakemap site `_." -msgstr "" -"Anda dapat memperoleh data guncangan secara gratis dari `situs peta " -"guncangan USGS `_." - -# 8132a3d8949943a7a77366ea3cd35798 -#: ../../source/user-docs/application-help/converter.rst:35 -msgid "" -"When you download the grid file, you should right-click on it and choose :" -"menuselection:`Save as` in order to ensure that it is saved properly. OSX " -"and Linux users may also consider using command line tools to fetch the grid " -"file:" -msgstr "" -"Jika Anda mendownload file grid, Anda harus klik-kanan di atasnya dan pilih :" -"menuselection:`Simpan sebagai` untuk memasikan bahwa file itu disimpan " -"dengan benar. Pengguna OSX dan Linux juga dapat mempertimbangkan untuk " -"menggunakan perintah tool garis untuk mengambil file grid:" - -# 3eab9a3a46dc4ebc964b57fd8d4a0d98 -#: ../../source/user-docs/application-help/converter.rst:39 -msgid "OSX::" -msgstr "OSX::" - -# 4ea7c9012bed475fb91f7ec8b80eb82a -#: ../../source/user-docs/application-help/converter.rst:43 -msgid "Linux::" -msgstr "Linux::" - -# 62351b5d56aa4edd8747d5a29bc69f12 -#: ../../source/user-docs/application-help/converter.rst:47 -msgid "Replace the in the commands above with the actual shake id." -msgstr "" -"Ganti dalam perintah di atas dengan identitas guncangan yang " -"sesungguhnya." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/data_driven_age.po b/docs/i18n/id/LC_MESSAGES/user-docs/application-help/data_driven_age.po deleted file mode 100644 index 2b49c26c..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/data_driven_age.po +++ /dev/null @@ -1,238 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:17+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 63eedc6dd6694b9581c3fc735504d31c -#: ../../source/user-docs/application-help/data_driven_age.rst:4 -msgid "Data Driven Age Post-processor" -msgstr "Data Berbasis Umur Pasca-pemrosesan" - -# fb27b22fcfab4508bd5c2aa03dfdabfa -#: ../../source/user-docs/application-help/data_driven_age.rst:7 -msgid "Purpose" -msgstr "Tujuan" - -# 237d9062eaea473da4aee5f815eb5391 -#: ../../source/user-docs/application-help/data_driven_age.rst:8 -msgid "" -"Data driven age processing is carried out during aggregation to determine " -"how many people are affected by a hazard according to their age distribution " -"(youth, adult, elderly). This feature is similar to the gender post-" -"processor. With data driven age, a custom age distribution ratio is used. " -"This is specified either in the data attributes of the aggregation polygons, " -"or by setting a global ratio for the whole aggregator vector layer using the " -"keywords editor or keywords wizard." -msgstr "" -"Data usia digunakan selama agregasi untuk menentukan berapa banyak orang " -"yang terkena dampak bahaya sesuai dengan distribusi usia mereka (pemuda, " -"dewasa, lansia). Fitur ini mirip dengan jenis kelamin pasca-pemrosesan. " -"Dengan didorong data usia, rasio distribusi usia digunakan. Hal ini " -"ditentukan baik dalam atribut data poligon agregasi, atau dengan menetapkan " -"rasio global untuk seluruh lapisan vektor aggregator menggunakan penyunting " -"kata kunci atau kata kunci *wizard*." - -# e2510608b38d45c3827156b90eabec07 -#: ../../source/user-docs/application-help/data_driven_age.rst:16 -msgid "" -"This feature is used to give more specific information by giving the number " -"of affected youth, adult and elderly in an area such as within the " -"boundaries of a village. This can help better identify what areas should be " -"priorities during rescue operations and to give more attention to the " -"vulnerable population (e.g. elderly) and their needs." -msgstr "" -"Fitur ini digunakan untuk menentukan dan memberikan informasi lebih lanjut " -"tentang jumlah pemuda, dewasa dan lanjut usia yang terkena dampak di dalam " -"suatu daerah misalnya, di suatu desa. Hal ini dapat membantu " -"mengidentifikasi di mana daerah menjadi prioritas selama operasi " -"penyelamatan dan untuk memberikan perhatian lebih pada populasi rentan " -"(misalnya orang tua) dan kebutuhan mereka." - -# a64d80344e9744eca3ef035e82994eac -#: ../../source/user-docs/application-help/data_driven_age.rst:23 -msgid "Guidelines" -msgstr "Pedoman" - -# 66a7aff31a644ecb89224e6f0ca9110a -#: ../../source/user-docs/application-help/data_driven_age.rst:26 -msgid "Data needed" -msgstr "Data yang Dibutuhkan" - -# 77fe3110226f47fba9b45bee984637e1 -#: ../../source/user-docs/application-help/data_driven_age.rst:28 -msgid "" -"The aggregator vector layer should contain percentage of age distribution in " -"the attribute table." -msgstr "" -"Layer vektor agregasi harus mengandung persentase distribusi usia dalam " -"tabel atribut." - -# 615adb8207b243faa707a43e67d09929 -#: ../../source/user-docs/application-help/data_driven_age.rst:32 -msgid "YOUTH" -msgstr "PEMUDA" - -# 71b20913ec074706b7bfc3cd8aaeff46 -#: ../../source/user-docs/application-help/data_driven_age.rst:32 -msgid "ADULT" -msgstr "DEWASA" - -# e26b2c846dc246089358b6ca5a2582f4 -#: ../../source/user-docs/application-help/data_driven_age.rst:32 -msgid "ELDERLY" -msgstr "LANSIA" - -# 0fb2c8a4c60642dda14591e8f0330fc9 -# 20169671e47e42f6b7b628833dd8f17f -#: ../../source/user-docs/application-help/data_driven_age.rst:34 -msgid "0.30" -msgstr "0.30" - -# 54142f82856549b6aa726dab08a5bcbd -#: ../../source/user-docs/application-help/data_driven_age.rst:34 -msgid "0.40" -msgstr "0.40" - -# 227ee67044b7499aacf4227401a0b012 -#: ../../source/user-docs/application-help/data_driven_age.rst:36 -msgid "0.25" -msgstr "0.25" - -# 7206fd2e1d0f475b943c6e6a8676d8f4 -#: ../../source/user-docs/application-help/data_driven_age.rst:36 -msgid "0.65" -msgstr "0.65" - -# 69541e37c5bd4c8eb0a8ee132ea94803 -#: ../../source/user-docs/application-help/data_driven_age.rst:36 -msgid "0.10" -msgstr "0.10" - -# 5db66218e03d4ef896f6bd2a295d9086 -#: ../../source/user-docs/application-help/data_driven_age.rst:40 -msgid "Category" -msgstr "Kategori" - -# 1d5700614f70493596f7e9c768bbefef -#: ../../source/user-docs/application-help/data_driven_age.rst:42 -msgid "Ratio attributes or Ratio defaults should be populated up." -msgstr "Rasio atribut atau Rasio default kepadatan seharusnya naik" - -# a2fc00a05fe44aada8a8dcb85bf53f81 -#: ../../source/user-docs/application-help/data_driven_age.rst:45 -msgid "Key" -msgstr "Kunci" - -# 90e6b30b479b4cc7a645c42dbae88cf9 -#: ../../source/user-docs/application-help/data_driven_age.rst:45 -msgid "Allowed Values" -msgstr "Nilai yang diperbolehkan" - -# 27df81ea9fcc42318c1436e7f6e8058f -#: ../../source/user-docs/application-help/data_driven_age.rst:47 -msgid "youth ratio attribute / youth ratio default" -msgstr "atribut rasio pemuda / default rasio pemuda" - -# 1a0d571624c54d44ace6e81e427be25a -#: ../../source/user-docs/application-help/data_driven_age.rst:47 -msgid "youth" -msgstr "pemuda" - -# ad2a21f80d5946899b1e7d51ea7da157 -#: ../../source/user-docs/application-help/data_driven_age.rst:49 -msgid "adult ratio attribute / adult ratio default" -msgstr "atribut rasio dewasa / default rasio dewasa" - -# 6fc69ceb8c7d49699cc9f2f5164afc59 -#: ../../source/user-docs/application-help/data_driven_age.rst:49 -msgid "adult" -msgstr "dewasa" - -# 9d145271135e4082a0a84462fd336c43 -#: ../../source/user-docs/application-help/data_driven_age.rst:51 -msgid "elderly ratio attribute / elderly ratio default" -msgstr "atribut rasio lansia / default rasio lansia" - -# 1d0dcf70f97b4a34b91ad498027e2698 -#: ../../source/user-docs/application-help/data_driven_age.rst:51 -msgid "elderly/elder" -msgstr "lansia" - -# 2191334430684b9baa438955c0b9c73f -#: ../../source/user-docs/application-help/data_driven_age.rst:56 -msgid "" -"Age postprocessing options can be specified either using ratio attributes or " -"ratio defaults." -msgstr "" -"Pilihan Pasca-pemprosesan berbasis umur dapat dispesifikasi menggunakan " -"rasio atribut atau rasio pengaturan bawaan." - -# 43739be3f4694eaf89441a9db8e8b135 -#: ../../source/user-docs/application-help/data_driven_age.rst:59 -msgid "" -"1. **Ratio Attributes:** In this mode, data used for postprocessing is from " -"the attributes of the aggregation layer itself. Consider the example below " -"where each aggregation area has an attribute indicating the ratios of age or " -"gender." -msgstr "" -"1. **Rasio Atribut:** Dalam mode ini, data yang digunakan untuk pasca " -"pemrosesan adalah dari atribut lapisan agregasi itu sendiri. Perhatikan " -"contoh di bawah ini di mana setiap daerah agregasi memiliki atribut yang " -"menunjukkan usia atau jenis kelamin." - -#: ../../source/user-docs/application-help/data_driven_age.rst:-1 -msgid "Example age ration map for Jakarta" -msgstr "" - -# 88ff3d12434e4730a0e43e5c0c42ed63 -#: ../../source/user-docs/application-help/data_driven_age.rst:68 -msgid "" -"In the keywords editor you can refer to these attributes and the age and " -"gender ratios will be extrapolated based on the defined values." -msgstr "" -"Dalam penyunting kata kunci anda dapat merujuk ke atribut-atribut ini dan " -"usia dan jenis kelamin akan diekstrapolasi berdasarkan nilai-nilai yang " -"ditetapkan." - -#: ../../source/user-docs/application-help/data_driven_age.rst:-1 -msgid "Age Post-processor configuration from layer attributes" -msgstr "" - -# 5989e3cf71564c8094dc91d793857ee9 -#: ../../source/user-docs/application-help/data_driven_age.rst:76 -msgid "" -"2. **Ratio Defaults:** In this mode, the default values will be used. In " -"this case you may not know per-area what the age and gender breakdowns are " -"but rather apply the ratios globally (to all aggregation areas)." -msgstr "" -"2. **Default Rasio:** Dalam mode ini, nilai default akan digunakan. Dalam " -"hal ini anda mungkin tidak mengetahui usia dan jenis kelamin per-area dan " -"ingin lebih menerapkan rasio global (untuk semua daerah agregasi)." - -#: ../../source/user-docs/application-help/data_driven_age.rst:-1 -msgid "Age Post-processor configuration using default values" -msgstr "" - -# 07a63df1f23b418e88a0716f4fb122d5 -#: ../../source/user-docs/application-help/data_driven_age.rst:86 -msgid "" -"A similar user interface is provided in the :ref:`keywords wizard " -"` user interface." -msgstr "" -"Sebuah antarmuka pengguna yang sama disediakan di :ref:`panduan kata kunci " -"` antar muka pengguna." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/dock.po b/docs/i18n/id/LC_MESSAGES/user-docs/application-help/dock.po deleted file mode 100644 index d3902c52..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/dock.po +++ /dev/null @@ -1,770 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# adityo dwijananto , 2013 -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -# Emir Hartato , 2013 -# Emir Hartato , 2013 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# Werner Macho , 2013 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -# Werner Macho , 2013,2015 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:18+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# c04dffd74fd2457a89cd0f4d1ee98407 -#: ../../source/user-docs/application-help/dock.rst:4 -msgid "|project_name| Panel" -msgstr "Panel |project_name|" - -# 8c62821d8be84e64bc9323be27c755c1 -#: ../../source/user-docs/application-help/dock.rst:6 -msgid "" -"This document describes the usage of the |project_name| 'dock panel' - the " -"primary interface for running risk scenarios within the QGIS environment." -msgstr "" -"Dokumen ini menjelaskan pennggunakan 'dock panel' |project_name|- yang " -"merupakan tampilan antarmuka utama untuk menjalankan skenario resiko di " -"dalam lingkungan QGIS." - -# e9b75e64deea419296cf59b25df2c8dc -#: ../../source/user-docs/application-help/dock.rst:9 -msgid "" -"In order to use |project_name| effectively, you should also read the :doc:" -"`keywords` and :doc:`impact_functions` documentation before getting started." -msgstr "" -"Untuk menggunakan |project_name| secara efektif, Anda seharusnya juga " -"membaca dokumentasi :doc:`keywords` dan :doc:`impact_functions` sebelum Anda " -"memulai." - -# ab2ee68a68d34c6d9e6db26e985bdb52 -#: ../../source/user-docs/application-help/dock.rst:13 -msgid "" -"The |project_name| dock panel is the main way to interact with the tools " -"that are provided in |project_name|. After you have installed the |" -"project_name| plugin, the dock panel will automatically load in QGIS and " -"appear somewhere on your screen. It looks like this:" -msgstr "" -"Tombol untuk beralih ke |project_name| merupakan cara utama untuk " -"berinteraksi dengan alat-alat yang telah disediakan dalam |project_name|. " -"Setelah anda menginstal plugin |project_name|, panel dok akan termuat secara " -"otomatis di QGIS dan muncul di suatu tempat di layar anda. Itu akan terlihat " -"seperti ini:" - -# ed7b9faec5644bcdbf2e3d247fcd9e78 -#: ../../source/user-docs/application-help/dock.rst:23 -#, fuzzy -msgid "Docking Panel" -msgstr "*Panel Dok*" - -# ed7b9faec5644bcdbf2e3d247fcd9e78 -#: ../../source/user-docs/application-help/dock.rst:23 -msgid "*Docking Panel*" -msgstr "*Panel Dok*" - -# f56eece0029b4d359d69c3528ebfd3fa -#: ../../source/user-docs/application-help/dock.rst:26 -msgid "" -"Drag and drop the dock panel to reposition it in the user interface. For " -"example, dragging the panel towards the right margin of the QGIS application " -"will dock it to the right side of the screen." -msgstr "" -"Anda dapat menyeret dan meletakkan panel dok untuk mengatur ulang posisinya " -"pada antarmuka pengguna. Misalnya, dengan menyeret panel ke margin kanan " -"pada aplikasi QGIS akan membuat posisi dock berada pada sisi kanan layar." - -#: ../../source/user-docs/application-help/dock.rst:35 -#: ../../source/user-docs/application-help/dock.rst:147 -msgid "Dock on the right" -msgstr "" - -# 9db9f8779c4a48bd86489f193882b97b -#: ../../source/user-docs/application-help/dock.rst:35 -msgid "*Dock positioned on the right with a project loaded*" -msgstr "*Posisi dok di sebelah kanan dengan Proyek yang dimuat*" - -# 8f442e5b8f1549719f9546162c1978ec -#: ../../source/user-docs/application-help/dock.rst:37 -msgid "There are three components within the panel:" -msgstr "Ada tiga komponen dalam panel:" - -# 8ea7ab068a2349f2bf673bece64479ed -#: ../../source/user-docs/application-help/dock.rst:39 -msgid "the :guilabel:`Questions` area" -msgstr "Area :guilabel:`Pertanyaan` " - -# 6946e464c90744809a337c0c92bad0d8 -#: ../../source/user-docs/application-help/dock.rst:40 -msgid "the :guilabel:`Results` area" -msgstr "Area :guilabel:`Hasil`" - -# ef49c9f901864bc686b326968cbfc414 -#: ../../source/user-docs/application-help/dock.rst:41 -msgid "the :guilabel:`Buttons` area" -msgstr "Area the :guilabel:`Tombol` " - -# 77ceb14f2fbb440e8a004e92169fd557 -#: ../../source/user-docs/application-help/dock.rst:43 -msgid "" -"At any time you can obtain help in |project_name| by clicking on the :" -"guilabel:`Help` buttons provided on each dock and dialog." -msgstr "" -"Pada saat apa pun Anda dapat memperoleh bantuan di |project_name| dengan " -"mengklik pada tombol :guilabel:`Bantuan` yang telah disediakan pada setiap " -"dok dan dialog." - -# 2690cd022ac540caaf0da972c389c266 -#: ../../source/user-docs/application-help/dock.rst:47 -msgid "The questions area" -msgstr "Area Pertanyaan" - -# 2782b966aab7448dba28797737e87e52 -#: ../../source/user-docs/application-help/dock.rst:49 -msgid "" -"The objective of |project_name| is to make it easy to perform an impact " -"analysis. The questions area provides a simple way to formulate the scenario " -"question. All questions are formulated in the form:" -msgstr "" -"Tujuan dari |project_name| adalah untuk mempermudah melakukan sebuah " -"analisis dampak. Bagian pertanyaan menyediakan cara simpel untuk " -"memformulasikan sebuah skenario. Semua pertanyaan dibuat dalam format:" - -# 76a6b96d958f455ca98d979669981f2f -#: ../../source/user-docs/application-help/dock.rst:54 -msgid "If [**hazard**] how many [**exposure**] might [**impact**]." -msgstr "" -"Apabila terjadi [**hazard**] berapa banyak [**exposure**] yang mungkin " -"[**impact**]." - -# 9a551e3dc72b44cba8e3b4ff919eb985 -#: ../../source/user-docs/application-help/dock.rst:56 -msgid "For example:" -msgstr "Sebagai contoh:" - -# edaecbc808fe41729e848243e16f790b -#: ../../source/user-docs/application-help/dock.rst:58 -msgid "If **there is a flood** how many **schools** might **be closed**." -msgstr "" -"Jika **terjadi banjir** berapa banyak **sekolah** yang mungkin **ditutup**." - -# 11476a9c6f614906a334a6eeac08bd2d -#: ../../source/user-docs/application-help/dock.rst:60 -msgid "" -"In order to answer such questions, the |project_name| developers have built " -"a number of **impact functions** that cover scenarios such as flood, " -"tsunami, volcanic ash fall, earthquake and more. Visit :ref:" -"`impact_functions` for detailed information on each impact function." -msgstr "" -"Untuk menjawab pertanyaan seperti itu, pengembang |project_name| sudah " -"membuat beberapa **fungsi dampak** yang mencakup skenario seperti banjir, " -"tsunami, abu vulkanik, gempa bumi dan sebagainya. Kunjungi :ref:" -"`impact_functions` untuk informasi lebih detil pada setiap fungsi dampak." - -# b6eab0aaeaca4d20aa8ebccb26348dcf -#: ../../source/user-docs/application-help/dock.rst:65 -msgid "" -"To formulate these questions, various layers must be loaded into QGIS that " -"represent either **hazard** or **exposure** information." -msgstr "" -"Untuk menformulasikan pertanyaan tersebut, berbagai macam layer harus " -"ditampilkan kedalam QGIS yang merepresentasikan baik informasi **ancaman** " -"maupun **paparan**." - -# 119c8d48155542d39ef5309449973280 -#: ../../source/user-docs/application-help/dock.rst:68 -msgid "" -"A **hazard** (:guilabel:`In the event of`) may be represented as, for " -"example, a raster layer in QGIS where each pixel in the raster represents " -"the current flood depth following an inundation event." -msgstr "" -"Sebuah **Ancaman** (:guilabel:`Pada kejadian`) dapat dipresentasikan " -"sebagai, contoh, sebuah *layer* data jenis raster pada QGIS dimana setiap " -"pixel pada data ini mempresentasikan kedalaman banjir saat ini mengikuti " -"genangannya." - -# 8333f3d06f944de58180df7bae5a8405 -#: ../../source/user-docs/application-help/dock.rst:71 -msgid "" -"An **exposure** (:guilabel:`How many`) layer could be represented, for " -"example, as vector polygon data representing building outlines, or a raster " -"outline where each pixel represents the number of people resident in that " -"cell." -msgstr "" -"Sebuah *layer* **keterpaparan** (:guilabel:`berapa banyak`) dapat " -"direpresentasikan, contohnya, sebagai data vektor poligon yang " -"mempresentasikan garis luar sebuah bangunan, atau garis luar dari data jenis " -"raster dimana setiap pixel merepresentasikan jumlah permukiman penduduk pada " -"sel itu." - -# 5aa5c2ff7f69462eb7c9819b2c443da2 -#: ../../source/user-docs/application-help/dock.rst:76 -msgid "" -"The **impact function** (:guilabel:`Might`) will combine these two input " -"layers in a mathematical model in order to postulate what the impacts of the " -"hazard will be on the exposure infrastructure or people." -msgstr "" -"**Fungsi dampak** (:guilabel:`Mungkin`) akan menggabungkan dua input layer " -"pada model matematika dalam rangka untuk mengartikan dampak bahaya seperti " -"apa yang mengancam sesuai data keterpaparan infrastruktur atau jumlah " -"penduduk." - -# bbecf57301eb48f79afb4df41ce1e7a3 -#: ../../source/user-docs/application-help/dock.rst:80 -msgid "" -"By selecting a combination from the :guilabel:`In the event of` and :" -"guilabel:`How many` combo boxes, an appropriate set of impact functions will " -"be listed in the :guilabel:`Might` combo box." -msgstr "" -"Dengan memilih kombinasi dari kotak pilihan :guilabel:`Apabila terjadi` dan :" -"guilabel:`Berapa banyak`, aturan sesuai dengan fungsi dampak yang akan " -"dicantumkan di kotak pilihan :guilabel:`Yang mungkin`." - -# e2d8bf9be4f54c00a800f40978d83c3c -#: ../../source/user-docs/application-help/dock.rst:84 -msgid "" -"How does the |project_name| plugin determine whether a layer should be " -"listed in the :guilabel:`In the event of` or :guilabel:`How many` combo " -"boxes? The plugin relies on simple keyword metadata associated with each " -"layer." -msgstr "" -"Bagaimana plugin |project_name| menentukan layer mana yang harus ditampilkan " -"di kotak pilihan :guilabel:`Apabila terjadi` atau :guilabel:`Berapa " -"banyak` ? Plugin ini bergantung pada kata kunci metadata yang diasosiasikan " -"dengan setiap layer." - -# ebb9f940dad244e38f138f9b5cc15ce8 -#: ../../source/user-docs/application-help/dock.rst:89 -msgid "" -"The keyword system is described in detail in :doc:`keywords`. Each layer " -"that has a keyword defining its **category** as **hazard** will be listed in " -"the :guilabel:`In the event of` combo box. Similarly, a **category** of " -"**exposure** in the keywords will result in a layer being listed under the :" -"guilabel:`How many` combo box." -msgstr "" -"Sistem kata kunci ini dijelaskan secara detil di :doc:`keywords`. Setiap " -"layer memiliki sebuah kata kunci yang menjelaskan **kategori ** data " -"tersebut sebagai **ancaman** yang akan dicatat di pilihan :guilabel:`Pada " -"kejadian`. Sama halnya **kategori** dari **keterpaparan** di kata kunci " -"layer akan menghasilkan sebuah layer yang ditampilkan dibawah pilihan :" -"guilabel:`Berapa banyak`." - -# 24905d4449134b7db728ae65068df2a9 -#: ../../source/user-docs/application-help/dock.rst:95 -msgid "" -"|project_name| uses the combination of **category**, **subcategory**, " -"**units** and **datatype** keywords to determine which **impact functions** " -"will be listed in the :guilabel:`Might` combo box." -msgstr "" -"|project_name| menggunakan kombinasi kata kunci **kategori**, " -"**subkategori**, **unit**, dan **jenis data** untuk menentukan **fungsi " -"dampak** yang akan dicantumkan pada pilihan :guilabel:`Mungkin`." - -# e33e7c703dc94346a898161ad44dd238 -#: ../../source/user-docs/application-help/dock.rst:99 -msgid "" -"The impact function can be configured (if applicable) by pressing the :" -"guilabel:`...` button next to the chosen impact function." -msgstr "" -"Fungsi dampak dapat diketahui (jika dapat diterapkan) dengan menekan " -"tombol :guilabel:`...` disebelah fungsi dampak yang dipilih." - -# 0db68d3522374745898c87692c3b7e7a -#: ../../source/user-docs/application-help/dock.rst:102 -msgid "" -"This is explained in more detail below under :ref:`analysis_parameters`." -msgstr "Ini dijelaskan secara detail pada :ref:`analysis_parameters`" - -# c45ad098cec44f7aa95dec15d7ef291e -#: ../../source/user-docs/application-help/dock.rst:104 -msgid "" -"As of InaSAFE 1.2, you can also choose an aggregation layer for both raster " -"and vector layers." -msgstr "" -"Di InaSAFE 1.2 anda juga dapat memilih layer agregasi dari kedua layer " -"raster dan layer vector." - -# e724cafc68394df89ac482357047abff -#: ../../source/user-docs/application-help/dock.rst:107 -msgid "" -"Aggregation allows you to specify an additional layer when defining the " -"analysis criteria. This layer is used to provide a by-area breakdown of the " -"results of the analysis. For example, if you are carrying out an analysis " -"for a city, you can use district areas within the city to provide per-area " -"results. In the absence of an aggregation layer, the analysis extent is used " -"as the aggregation unit. To use this option you must load a polygon layer " -"into QGIS that represents the areas you wish to summarise by." -msgstr "" -"Agregasi memungkinkan Anda untuk menentukan layer tambahan ketika " -"mendefinisikan kriteria analisis. Layer ini akan digunakan untuk memberikan " -"rincian tiap daerah hasil analisis. Sebagai contoh jika Anda sedang " -"melakukan analisis untuk sebuah kota, Anda dapat menggunakan wilayah " -"kecamatan dalam kota untuk memberikan hasil per-daerah. Dengan tidak adanya " -"layer agregasi, luasan area analisis digunakan sebagai unit agregasi. Untuk " -"menggunakan pilihan ini Anda perlu memuat layer poligon berbasis ke QGIS " -"yang mewakili area yang ingin anda ringkas." - -# 2a842ac5df1c46e58fbb21ce11f00214 -#: ../../source/user-docs/application-help/dock.rst:115 -msgid "" -"After running an analysis, the questions area is hidden to maximise the " -"amount of space allocated to the results area (see below). You can re-open " -"the question area at any time by pressing the :guilabel:`Show question form` " -"button." -msgstr "" -"Setelah menjalankan analisis, area pertanyaan disembunyikan untuk " -"memaksimalkan jumlah ruang alokasi untuk area hasil (lihat di bawah). Anda " -"dapat membukan kembali area pertanyaan kapan saja dengan menekan tombol :" -"guilabel:`Show question form`" - -# 3285d28d54f340279555e5a6e15a71b5 -#: ../../source/user-docs/application-help/dock.rst:121 -msgid "The results area" -msgstr "Area hasil" - -# 7323e00f797944feaf82347b8e01b1ea -#: ../../source/user-docs/application-help/dock.rst:123 -msgid "" -"The results area is used to display feedback to the user. Once an impact " -"scenario has been run (see next section), a summary table will be shown." -msgstr "" -"Hasil area digunakan untuk menampilkan masukan untuk pengguna. Ketika sebuah " -"skenario dampak selesai dikerjakan (lihat dibagian berikutnya), sebuah tabel " -"ringkasan akan muncul." - -#: ../../source/user-docs/application-help/dock.rst:132 -msgid "Scenario results" -msgstr "" - -# c14ef4d5baa24660ae9e46899fb05780 -#: ../../source/user-docs/application-help/dock.rst:132 -msgid "*Results shown after processing of scenario*" -msgstr "*Hasil yang ditampilkan setelah memproses sebuah skenario*" - -# 083cbaa56e4344a096611e9ddd1dd44b -#: ../../source/user-docs/application-help/dock.rst:134 -msgid "" -"If you select an **impact layer** (i.e. a layer that was produced using an |" -"project_name| impact function), in the QGIS Layers panel, this summary will " -"also be displayed in the results area." -msgstr "" -"Jika Anda memilih **layer dampak** (misalnya sebuah layer yang diproduksi " -"menggunakan fungsi dampak |project_name|), di panel Layer QGIS, ringkasan " -"ini akan langsung ditampilkan di area hasil." - -# 9ad4d74764c34a5b8db2227a671ea8cf -#: ../../source/user-docs/application-help/dock.rst:138 -msgid "" -"When you select a **hazard** or **exposure** layer in the QGIS Layers panel, " -"the keywords for that layer will be shown in the :guilabel:`Results` area, " -"making it easy to understand what metadata exists for that layer." -msgstr "" -"Ketika Anda memilih layer **ancaman** atau **keterpaparan** pada daftar " -"layer QGIS, kata kunci untuk layer tersebut akan ditampilkan dalam area :" -"guilabel:`Results`, sehingga mudah untuk dipahami apakah metadata ada untuk " -"layer tersebut." - -# d9f632bfe21c465d8b0855c5e3f00ab5 -#: ../../source/user-docs/application-help/dock.rst:147 -msgid "*Showing keywords for active layer*" -msgstr "*Menampilkan kata kunci untuk layer aktif*" - -# 8c3fe1a8582a4fab9a7db0b245b3434f -#: ../../source/user-docs/application-help/dock.rst:149 -msgid "" -"The :guilabel:`Results` area is also used to display status information. For " -"example, when a suitable combination of **hazard** (:guilabel:`In the event " -"of`), **exposure** (:guilabel:`How many`) and **impact function** (:guilabel:" -"`In the event of`) are selected, the results area will be updated to " -"indicate that you can proceed to run the impact scenario calculation. The :" -"guilabel:`Run` button will be activated." -msgstr "" -"Area :guilabel:`Results juga akan digunakan untuk menampilkan informasi " -"status. Contohnya, ketika kombinasi **ancaman** (:guilabel:`In the event " -"of`), **keterpaparan** (:guilabel:`How many`) dan **fungsi dampak** (:" -"guilabel:`In the event of`) yang cocok akan dipilih, area hasil akan " -"diperbarui untuk mengindikasi bahwa Anda dapat memproses untuk menjalankan " -"perhitungan skenario dampak. Tombol :guilabel:`Run` akan diaktifkan." - -#: ../../source/user-docs/application-help/dock.rst:161 -msgid "Ready to run" -msgstr "" - -# 61398f4673e04e13b5f49fb1284f77cf -#: ../../source/user-docs/application-help/dock.rst:161 -msgid "*Run button activated*" -msgstr "*Tombol hitung diaktifkan*" - -# 4e779efe9608485d98c94b40c4761917 -#: ../../source/user-docs/application-help/dock.rst:163 -msgid "" -"Finally, the results area is also used to display error messages so that the " -"user is informed as to what went wrong and why. You may need to scroll down " -"a bit in the window." -msgstr "" -"Akhirnya, area hasil juga digunakan untuk menampilkan pesan kesalahan " -"sehingga pengguna diberitahu apa yang salah dan kenapa. Anda mungkin harus " -"sedikit menggeser ke bawah pada kotak pesan tersebut." - -#: ../../source/user-docs/application-help/dock.rst:172 -msgid "Displaying Problems" -msgstr "" - -# 70a11a0da7f241dea01b9eb6ff23f9c8 -#: ../../source/user-docs/application-help/dock.rst:172 -msgid "*Showing error messages*" -msgstr "*Menampilkan pesan kesalahan*" - -# 2b2c5665e05e4911b3037c630a8e26b4 -#: ../../source/user-docs/application-help/dock.rst:174 -msgid "" -"To allow more space for the results your question is automatically hidden to " -"make the results area as large as possible for displaying the results. If " -"you want to have a look again what the question was that you formulated " -"click on the :guilabel:`Show question form` button at the top of the results " -"area." -msgstr "" -"Untuk mendapatkan ruang lebih untuk menampilkan hasil, pertanyaan Anda akan " -"tersembunyi secara otomatis untuk membuat area hasil seluas mungkin untuk " -"menampilkan hasil. Jika Anda ingin melihat kembali pertanyaan yang Anda " -"ajukan, klik pada tombol :guilabel:`Tampilkan form pertanyaan` di sebelah " -"atas dari area hasil" - -# c357acedd7084cf1bf718f5898ee8346 -#: ../../source/user-docs/application-help/dock.rst:185 -#, fuzzy -msgid "Show question form" -msgstr "*Tampilkan form pertanyaan*" - -# c357acedd7084cf1bf718f5898ee8346 -#: ../../source/user-docs/application-help/dock.rst:185 -msgid "*Show question form*" -msgstr "*Tampilkan form pertanyaan*" - -# 8f609c4db5ac45dbbc822784846a9c97 -#: ../../source/user-docs/application-help/dock.rst:187 -msgid "" -"To hide the question again to have more space for the results, simply make " -"active the layer which |project_name| created during the calculation in the " -"Layers panel." -msgstr "" -"Untuk menyembunyikan kembali pertanyaan sehingga Anda mendapatkan ruang yang " -"lebih untuk menampilkan hasil, cukup aktifkan layer yang baru saja terbuat " -"ketika Anda melakukan perhitungan pada |project_name| , nama layer tersebut " -"terdapat pada panel daftar layer." - -# e2a9a762c3114b1db35ac8dc9251f9a7 -#: ../../source/user-docs/application-help/dock.rst:191 -msgid "" -"At the bottom of the error display you may see a button like the following. " -"Click on this button to display a box which contains diagnostic information " -"that can be submitted as part of a bug report if you think the error was " -"incorrect." -msgstr "" -"Pada bagian bawah tampilan kesalahan, Anda mungkin melihat tombol seperti " -"berikut. Jika Anda mengklik pada tombol ini, maka akan muncul kotak yang " -"berisi informasi diagnosis yang dapat disampaikan sebagai bagian dari " -"laporan bug jika menurut Anda kesalahan tersebut adalah salah." - -# 26039dd0772547afa738e3e387e6d36b -#: ../../source/user-docs/application-help/dock.rst:200 -msgid "The buttons area" -msgstr "Area tombol" - -# b4db349d90044872bf13aab52216eb80 -#: ../../source/user-docs/application-help/dock.rst:202 -msgid "The buttons area contains four buttons:" -msgstr "Pada area tombol terdapat empat tombol:" - -# 041955547b0842e8b676672c3013fd4a -#: ../../source/user-docs/application-help/dock.rst:209 -#, fuzzy -msgid "Buttons area" -msgstr "*Area Tombol*" - -# 041955547b0842e8b676672c3013fd4a -#: ../../source/user-docs/application-help/dock.rst:209 -msgid "*Buttons Area*" -msgstr "*Area Tombol*" - -# 835ff369a5f54900879f6f351f95105f -#: ../../source/user-docs/application-help/dock.rst:211 -msgid "" -":guilabel:`Help` - click on this if you need context help, such as the " -"document you are reading right now!" -msgstr "" -":guilabel:`Bantuan` - klik pada ini jika Anda membutuhkan bantuan konteks, " -"seperti dokumen yang Anda baca sekarang!" - -# 2530b4c75f304cff8ca54e1b7a8084c4 -#: ../../source/user-docs/application-help/dock.rst:213 -msgid "" -":guilabel:`About` - click on this to get information about |project_name|." -msgstr "" -":guilabel:`Tentang` - klik pada tombol ini untuk mendapatkan informasi " -"tentang |project_name|." - -# 497a779f073246a9a9e574fbfe69a900 -#: ../../source/user-docs/application-help/dock.rst:214 -msgid "" -":guilabel:`Print...` - click on this if you wish to create a PDF of your " -"impact scenario project or to generate a report and open it in composer for " -"further tuning. An **impact layer** must be active before this button will " -"be enabled." -msgstr "" -":guilabel:`Cetak...` - klik pada tombol ini jika Anda ingin membuat sebuah " -"file PDF dari proyek skenario dampak Anda atau jika Anda ingin membuat " -"sebuah laporan dan membukanya pada Composer untuk penyesuaian lebih lanjut. " -"Sebuah **layer dampak** harus aktif sebelum tombol ini dapat digunakan." - -# d4a6a1bbdcaa4bb0b505d2396e3001d7 -#: ../../source/user-docs/application-help/dock.rst:218 -msgid "" -":guilabel:`Run` - when the combination of options in the questions area is " -"suitable to be run, this button is enabled." -msgstr "" -":guilabel:`Run` - jika kombinasi pilihan pada area pertanyaan telah sesuai " -"dan memungkinkan kita untuk melakukan perhitungan, tombol ini akan aktif." - -# a0192127e426438fbc1de810180a49c4 -#: ../../source/user-docs/application-help/dock.rst:222 -msgid "Data conversions when running a scenario" -msgstr "Konversi data ketika menjalankan sebuah skenario" - -# 4db6e39820a548e0aee49f6e940f6b12 -#: ../../source/user-docs/application-help/dock.rst:224 -msgid "" -"When running a scenario, the data being used needs to be processed into a " -"state where it is acceptable for use by the impact function. In particular " -"it should be noted that:" -msgstr "" -"Ketika menjalankan sebuah skenario, data yang digunakan harus diproses ke " -"dalam bentuk dimana dapat digunakan oleh fungsi dampak. Secara khusus perlu " -"dicatat bahwa:" - -# 25c83c3130524166970e697ba4dd7972 -#: ../../source/user-docs/application-help/dock.rst:228 -msgid "Remote datasets will be copied locally before processing" -msgstr "Remote dataset akan disalin secara lokal sebelum pengolahan." - -# cf79e0a2422d496da9ee4937159c8943 -#: ../../source/user-docs/application-help/dock.rst:229 -msgid "" -"All datasets will be clipped to the intersection of the **hazard** layer, " -"the **exposure** layer and the current view extents" -msgstr "" -"Seluruh dataset akan berpotongan dengan layer **ancaman**, layer " -"**keterpaparan** dan batas area peta terluar saat ini." - -# 70b4f1fdc98c42529f97725f955d564b -#: ../../source/user-docs/application-help/dock.rst:231 -msgid "" -"All clipped datasets will be converted (reprojected) to Geographic " -"(EPSG:4326) coordinate reference system before analysis" -msgstr "" -"Semua dataset yang berpotongan akan dikonversi (diproyeksikan kembali) " -"menjadi sistem referensi koordinat Geografis (EPSG:4326) sebelum dilakukan " -"analisis." - -# 96a09ef2446b470ba9a173638a7edf95 -#: ../../source/user-docs/application-help/dock.rst:237 -msgid "Setting analysis parameters" -msgstr "Pengaturan parameter analisisi" - -# 7ee12cb27c96495c9efba0f31fa90067 -#: ../../source/user-docs/application-help/dock.rst:239 -msgid "" -"Depending on the impact function you choose there will be different options " -"to adjust the parameters of the the question you are asking. Some impact " -"functions have more configurable options and some have less. This depends on " -"the impact function itself and the question you are asking." -msgstr "" -"Tergantung pada fungsi dampak yang Anda pilih, Anda akan melihat pilihan " -"yang berbeda untuk menyesuaikan parameter dari pertanyaan yang Anda " -"tanyakan. Beberapa fungsi dampak memiliki beberapa pilihan konfigurasi yang " -"cukup banyak dan beberapa yang lain hanya sedikit. Hal ini tergantung pada " -"fungsi dampak itu sendiri dan pertanyaan yang Anda tanyakan." - -# 7f966eb41115473a9bd1c28819eed79e -#: ../../source/user-docs/application-help/dock.rst:244 -msgid "" -"To open the impact function configuration dialog click on the :guilabel:`..." -"` Button next to the :guilabel:`Might` combo box." -msgstr "" -"Untuk membuka kotak dialog konfigurasi fungsi dampak, klik pada tombol :" -"guilabel:`...` disamping combo box :guilabel:`Might`." - -# ec08975488884c60877f3293de4f7e13 -#: ../../source/user-docs/application-help/dock.rst:-1 -#: ../../source/user-docs/application-help/dock.rst:252 -#, fuzzy -msgid "Impact Function Configurator" -msgstr "*Buka konfigurator fungsi dampak*" - -# ec08975488884c60877f3293de4f7e13 -#: ../../source/user-docs/application-help/dock.rst:252 -msgid "*Open the impact function configurator*" -msgstr "*Buka konfigurator fungsi dampak*" - -# 7286541c283c4b8fb797eff29cb8899a -#: ../../source/user-docs/application-help/dock.rst:254 -msgid "There will be up to three tabs available:" -msgstr "Akan terdapat hingga tiga tab yang tersedia:" - -# 0039d4aa87554515ba2f61892f89db93 -#: ../../source/user-docs/application-help/dock.rst:256 -msgid "" -":guilabel:`Options`: Depending in the impact function you select, you can " -"influence the result of your question here (the impact function) by setting " -"different initial values which are presented depending on the function you " -"choose (not all impact functions may be customised)." -msgstr "" -":guilabel:`Pilihan`: Tergantung pada fungsi dampak yang Anda pilih, Anda " -"dapat mempengaruhi hasil dari pertanyaan Anda disini (fungsi dampak) dengan " -"mengatur nilai awal yang berbeda yang dibawakan tergantung pada fungsi yang " -"Anda pilih (tidak semua fungsi dampak dapat dimodifikasi)." - -# f50c2dde6ef8410ca5985dc2e03ed2a9 -#: ../../source/user-docs/application-help/dock.rst:260 -msgid "" -":guilabel:`Postprocessors`: This takes the results from the impact function " -"and calculates derivative indicators. For example, if you have an affected " -"population total, the gender postprocessor will calculate gender specific " -"indicators such as additional nutritional requirements for pregnant women." -msgstr "" -":guilabel:`Postprocessors`: fungsi ini mengambil hasil dari fungsi dampak " -"dan menghitung indikator turunan. Sebagai contoh, jika Anda mempunyai jumlah " -"populasi terdampak, postprocessor *gender* akan menghitung indikator terkait " -"jenis kelamin yang lebih khusus seperti nutrisi tambahan yang dibutuhkan " -"untuk ibu hamil." - -# 99b905b409d84cc49b690c0a28a6f932 -#: ../../source/user-docs/application-help/dock.rst:264 -msgid "" -":guilabel:`Minimum Needs`: If the impact function calculates effects on " -"people, this calculates the minimum needs of the people affected by the " -"impact scenario. To use this you should have the necessary data available " -"and calculate this by using the :ref:`minimum_needs`." -msgstr "" -":guilabel:`Kebutuhan Minimum`: Jika fungsi dampak menghitung dampak pada " -"orang, fungsi ini menghitung kebutuhan minimum bagi orang yang terkena " -"dampak dari suatu skenario dampak. Untuk menggunakan fungsi ini, Anda harus " -"memiliki data yang diperlukan dan menghitungnya dengan menggunakan :ref:" -"`minimum_needs`." - -# e35ae668bd7148a3b99da89b9625886c -#: ../../source/user-docs/application-help/dock.rst:278 -msgid "Generating impact report" -msgstr "Membuat laporan dampak" - -# c6feeb7acb654228915193c46d7bfcf4 -#: ../../source/user-docs/application-help/dock.rst:280 -msgid "" -"When scenario analysis is complete you may want to generate a report. " -"Usually the :guilabel:`Print...` button will be enabled immediately after " -"analysis. If it is still inactive, select the impact layer in the Layers " -"panel." -msgstr "" -"Ketika analisis skenario selesai, Anda mungkin ingin membuat sebuah laporan. " -"Biasanya tombol :guilabel:`Cetak...` akan aktif segera setelah analisis " -"selesai. Jika masih belum aktif, pilih *layer* dampak pada panel daftar " -"layer." - -# eabc21359f754c91933596866fef3d78 -#: ../../source/user-docs/application-help/dock.rst:284 -msgid "" -"To generate a report click on the :guilabel:`Print...` button in the buttons " -"area. This will open an :guilabel:`Impact report` dialog." -msgstr "" -"Untuk membuat sebuah laporan, klik pada tombol :guilabel:`Cetak...` di area " -"tombol. Dengan mengklik tombol Ini, akan terbuka kotak dialog :guilabel:" -"`Laporan dampak`" - -# d8846dec8883463388c8aae327a5759f -#: ../../source/user-docs/application-help/dock.rst:292 -#, fuzzy -msgid "Impact Report configuration" -msgstr "*Konfigurasi laporan dampak*" - -# d8846dec8883463388c8aae327a5759f -#: ../../source/user-docs/application-help/dock.rst:292 -msgid "*Impact report configuration*" -msgstr "*Konfigurasi laporan dampak*" - -# 665ef6a98b3142b3b8fa00b29382da78 -#: ../../source/user-docs/application-help/dock.rst:294 -msgid "The dialog has three components:" -msgstr "Kotak dialog memiliki tiga komponen utama:" - -# c74587c84ec849a590d6b2ba1c81dae2 -#: ../../source/user-docs/application-help/dock.rst:296 -msgid "" -":guilabel:`Area to print` allows you to customise the extent of the report " -"map. There are two options available. Choose :guilabel:`Current extent` if " -"the current canvas extent represents the necessary area. Choose :guilabel:" -"`Analysis extent` to set the extent of the report map to the impact layer " -"extent." -msgstr "" -"guilabel:`Area yang akan dicetak` : memungkinkan Anda untuk memodifikasi " -"batas-batas terluar/tepi peta yang akan dibuat laporannya. Pilih :guilabel:" -"`Cakupan saat ini` jika batas terluar/tepi pada kanvas peta merupakan area " -"yang Anda butuhkan, dengan kata lain dengan pilihan ini Anda dapat hanya " -"membuat laporan untuk suatu area tertentu saja. Pilih :guilabel:`Cakupan " -"analisis` untuk mengatur bahwa batas terluar peta yang akan dibuat " -"laporannya adalah batas terluar peta pada *layer* dampak." - -# f3b1742499ba42a394fdc12186f5406b -#: ../../source/user-docs/application-help/dock.rst:302 -msgid "" -":guilabel:`Template to use` allows you to select a template for the report. " -"The combo box lists all templates bundled with the plugin as well as " -"templates from the user-defined template directory (see :ref:" -"`toolbar_options` for information on how to set the templates directory). It " -"is also possible to select a custom template from any location - activate " -"the radio button under the combo box and provide a path to the template " -"using the :guilabel:`...` button." -msgstr "" -":guilabel:`Template yang akan digunakan` memungkinkan Anda untuk memilih " -"*template* untuk laporan Anda. Kotak pilihan memuat daftar seluruh template " -"yang telah melekat/disediakan dalam plugin, serta *template* dari direktori " -"yang didefinisikan oleh pengguna (lihat :ref:`toolbar_options` untuk " -"informasi bagaimana mengatur direktori template). Juga dimungkinkan untuk " -"memilih *template* Anda sendiri dari lokasi manapun - aktifkan pilihan yang " -"berupa *radio button* di bawah kotak pilihan dan arahkan ke direktori dimana " -"file *template* disimpan dengan menggunakan tombol :guilabel:`...`." - -# 29d4ddb6076f4010800f3ab92c3e778a -#: ../../source/user-docs/application-help/dock.rst:309 -msgid "" -"At the bottom are four buttons: :guilabel:`Open PDF` will generate the " -"report and export it in PDF format. The resulting file(s) will be opened in " -"your default PDF viewer. :guilabel:`Open composer` is used when you need to " -"adjust the generated report before printing. Click this button and the " -"report will be opened in the QGIS composer, where you can edit it as needed." -msgstr "" -"Pada bagian bawah terdapat empat tombol: :guilabel:`Buka PDF` digunakan " -"untuk membuat laporan dan mengeksportnya dalam format PDF. *File-file* yang " -"dihasilkan akan dibuka secara otomatis oleh pembaca berkas PDF bawaan " -"komputer Anda. :guilabel:`Membuka penyusun peta` digunakan ketika Anda ingin " -"melakukan pengaturan pada laporan sebelum dicetak. Klik pada tombol ini dan " -"laporan akan dibuka dalam komposer QGIS, sehingga Anda dapat melakukan edit " -"sesuai kebutuhan." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/impact_functions.po b/docs/i18n/id/LC_MESSAGES/user-docs/application-help/impact_functions.po deleted file mode 100644 index 0dcefd1a..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/impact_functions.po +++ /dev/null @@ -1,206 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# adityo dwijananto , 2013 -# Akbar Gumbira , 2014 -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -# Emir Hartato , 2013 -# Emir Hartato , 2013 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# Werner Macho , 2013 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -# Werner Macho , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2017-09-23 18:45+0000\n" -"Last-Translator: Richard Duivenvoorde \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 4fd1705e66cf47eeb70b711581e06153 -#: ../../source/user-docs/application-help/impact_functions.rst:4 -msgid "Understand Impact Functions" -msgstr "Memahami Fungsi Dampak" - -# e0c4221a299a4d8b9fdd3c88faf48021 -#: ../../source/user-docs/application-help/impact_functions.rst:6 -msgid "" -"This document explains the purpose of impact functions and lists the " -"different available impact function and the requirements each has to be used " -"effectively." -msgstr "" -"Dokumen ini menjelaskan tujuan dari fungsi-fungsi dampak dan membuat daftar " -"fungsi dampak berbeda yang tersedia beserta setiap kebutuhannya yang akan " -"digunakan secara efektif." - -# b76f25e952c84f359fcb93b69144981e -#: ../../source/user-docs/application-help/impact_functions.rst:11 -msgid "What is an impact function?" -msgstr "Apa itu fungsi dampak?" - -# c593910df53c489c8731b9cd2e2b8f7e -#: ../../source/user-docs/application-help/impact_functions.rst:13 -msgid "" -"An impact function is a software program that computes an impact assessment " -"given a number of inputs. The impact assessment will typically have a " -"*spatial* component (e.g. a GIS layer which can be incorporated into a map) " -"and a *non-spatial* component (e.g. a list of actions you may want to " -"consider carrying out, or a list of estimates of disaster risk reduction " -"elements such as how many bags of rice to make available)." -msgstr "" -"Fungsi dampak adalah sebuah program perangkat lunak yang menghitung " -"penilaian dampak diberikan sejumlah masukan. Penilaian dampak biasanya " -"memiliki sebuah komponen *spasial* (misalnya layer SIG yang dapat dimasukkan " -"ke dalam peta) dan sebuah komponen *non-spasial* (misalnya daftar dampak " -"yang ingin dipertimbangkan untuk dimasukkan, atau daftar perkiraan unsur-" -"unsur yang dapat mengurangi resiko bencana seperti berapa banyak karung " -"beras untuk persediaan dalam suatu bencana)." - -# fd7ea4ba93564badbe3b54274af4c88d -#: ../../source/user-docs/application-help/impact_functions.rst:22 -msgid "Selecting an impact function" -msgstr "Memilih fungsi dampak" - -# 35a44408369846b5b3ec914427e601b1 -#: ../../source/user-docs/application-help/impact_functions.rst:24 -msgid "" -"Impact functions are bundled with the |project_name| software. The graphical " -"user interface (provided as a plugin for QGIS) will offer a list of impact " -"functions that can be used based on the layers you have loaded and their :" -"doc:`keywords `." -msgstr "" -"Fungsi dampak yang digabungkan dengan perangkat lunak |project_name|. " -"Tampilan grafis pengguna (tersedia sebagai plugin untuk QGIS) akan " -"menawarkan daftar fungsi dampak yang dapat digunakan berdasarkan layer yang " -"Anda muat dan :doc:`keywords ` mereka." - -# d06d96c7311c4f05a7e10ca33e1f252f -#: ../../source/user-docs/application-help/impact_functions.rst:30 -msgid "Exploring impact functions" -msgstr "Menjelajahi fungsi dampak" - -# 0928baee3b234e8a974af0ebd1d31090 -#: ../../source/user-docs/application-help/impact_functions.rst:32 -msgid "" -"You can use the impact function table to explore all of the possible impact " -"functions that can be used. They are listed in a table with a series of pick-" -"lists (combo boxes) above which can be used to filter the functions based on " -"different criteria as illustrated below." -msgstr "" -"Anda dapat menggunakan tabel fungsi dampak untuk mengeksplorasi seluruh " -"kemungkinan fungsi dampak yang dapat digunakan. Semuanya telah terdaftar " -"pada sebuah tabel dengan sebuah seri daftar pilihan (kotak kombo) di atas " -"yang dapat digunakan untuk menyaring fungsi berdasarkan pada kriteria " -"sebagaimana yang telah diilustrasikan di bawah ini." - -# d620297297864ed9a8aa74d6a6187fce -#: ../../source/user-docs/application-help/impact_functions.rst:43 -#, fuzzy -msgid "unfiltered impact function table" -msgstr "*Tabel fungsi dampak yang tidak disaring*" - -# d620297297864ed9a8aa74d6a6187fce -#: ../../source/user-docs/application-help/impact_functions.rst:43 -msgid "*Unfiltered impact function table*" -msgstr "*Tabel fungsi dampak yang tidak disaring*" - -# a0e1774096cb4d518d0bcf005cce6333 -#: ../../source/user-docs/application-help/impact_functions.rst:45 -msgid "" -"When applying a filter set, the list of available functions that meet those " -"criteria is updated as shown below." -msgstr "" -"Ketika mengaplikasikan sebuah set penyaringan, daftar fungsi yang tersedia " -"yang memenuhi kriteria akan diperbaharui sebagaimana yang ditunjukan di " -"bawah ini." - -# d620297297864ed9a8aa74d6a6187fce -#: ../../source/user-docs/application-help/impact_functions.rst:53 -#, fuzzy -msgid "filtered impact function table" -msgstr "*Tabel fungsi dampak yang tidak disaring*" - -# e78c0ac799624ca0851bcf0c7a03cea6 -#: ../../source/user-docs/application-help/impact_functions.rst:53 -msgid "*Filtered impact function table*" -msgstr "*Tabel fungsi dampak yang disaring*" - -# fafd1bda38ed467b984ea3d3f5d56ade -#: ../../source/user-docs/application-help/impact_functions.rst:55 -msgid "" -"The impact function table is simply a browser to help you to familiarise " -"yourself with the functions available. For the actual usage of the functions " -"you need to have layers available (i.e. loaded in QGIS) with the appropriate " -"keywords for your target function." -msgstr "" -"Tabel fungsi dampak sederhananya adalah sebuah penjelajah untuk membantu " -"Anda agar memahami fungsi-fungsi yang tersedia. Untuk penggunaan fungsi " -"sebenarnya Anda memerlukan layer-layer yang tersedia (termuat dalam QGIS) " -"dengan kata kunci yang sesuai untuk target fungsi Anda." - -# 7ff308d63f7242a8b8104645367205e7 -#: ../../source/user-docs/application-help/impact_functions.rst:61 -msgid "Configurable impact functions" -msgstr "Fungsi dampak yang dapat diatur" - -# d7811963e88e4630ba6903f324265e33 -#: ../../source/user-docs/application-help/impact_functions.rst:63 -msgid "" -"Some impact functions can be configured before use. For example if you have " -"a raster flood hazard layer where each pixel represents flood depth, you can " -"set depth thresholds (low / medium / high)." -msgstr "" -"Beberapa fungsi dampak dapat diatur sebelum digunakan. Misalnya jika Anda " -"memiliki sebuah layer raster ancaman banjir dimana setiap piksel menunjukkan " -"kedalaman banjir, Anda dapat mengatur ambang batas kedalaman (rendah/sedang/" -"tinggi)." - -# 648f2a2619f84d93a80c917b5955dbde -#: ../../source/user-docs/application-help/impact_functions.rst:68 -msgid "Creating impact functions" -msgstr "Membuat fungsi dampak" - -# 5c85f4b5546c47aebd115e3e0d4135bf -#: ../../source/user-docs/application-help/impact_functions.rst:70 -msgid "" -"If you feel there is an important impact function which is missing, there " -"are two avenues you can follow:" -msgstr "" -"Jika Anda merasa terdapat fungsi dampak yang tidak tercantum, ada dua " -"langkah yang bisa Anda ikuti:" - -# ec979050a11647f7be31fd20e43a681c -#: ../../source/user-docs/application-help/impact_functions.rst:73 -msgid "" -"If you have basic python programming skills, you could implement a new " -"impact function yourself." -msgstr "" -"Jika anda memiliki kemampuan dasar pemrograman dengan bahasa python, anda " -"dapat mengimplementasikan sebuah fungsi dampak anda sendiri." - -# 68b8784132c4428da85efa2ddb8ac1c4 -#: ../../source/user-docs/application-help/impact_functions.rst:75 -msgid "" -"You can file a ticket on our `issue tracking system `_, and if time and resources allow we will implement " -"it for you." -msgstr "" -"Anda dapat melaporkan sebuah tiket pada `sistem pengecekan masalah `_, dan jika terdapat waktu dan sumber daya, " -"kami akan mengimplementasikannya untuk anda." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/impact_layer_merge_tool.po b/docs/i18n/id/LC_MESSAGES/user-docs/application-help/impact_layer_merge_tool.po deleted file mode 100644 index c87792ed..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/impact_layer_merge_tool.po +++ /dev/null @@ -1,433 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-06-11 09:38+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 039dd008a7414484a0e8777af393661d -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:4 -msgid "The Impact Layer Merge Tool" -msgstr "Tool Menggabungkan Layer Dampak" - -# c3c24556df6b4b1b8a844577b40f26fc -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:6 -msgid "" -"In some cases you may wish to create a report containing the combined output " -"of two impact functions for the same area for the **same hazard** but " -"**different exposures**. For example, you may carry out an assessment of the " -"impact of a flood on population and on buildings and combine the results " -"into a single report. The Impact Layer Merge tool allows you to do this." -msgstr "" -"Dalam beberapa kasus, Anda mungkin ingin membuat sebuah laporan yang " -"mengkombinasikan hasil analisis dari dua fungsi dampak di satu area yang " -"sama untuk **ancaman yang sama** namun **keterpaparan yang berbeda**. " -"Sebagai contoh, Anda mungkin ingin melihat hasil kajian dari dampak banjir " -"terhadap populasi dan bangunan dan menggabungkan keduanya ke dalam satu " -"laporan. *Tool* Menggabungkan Layer Dampak memungkinkan Anda untuk melakukan " -"hal ini." - -# 6c2c3aedcf7e4ccaa4b0d1481dba4415 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:18 -#, fuzzy -msgid "Opened impact merge dialog" -msgstr "*Tampilan kotak dialog Menggabungkan Layer Dampak yang telah terbuka*" - -# 6c2c3aedcf7e4ccaa4b0d1481dba4415 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:18 -msgid "*Opened impact merge dialog*" -msgstr "*Tampilan kotak dialog Menggabungkan Layer Dampak yang telah terbuka*" - -# a30f97b33fb24f9a91773e5fe0c34b14 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:21 -msgid "Prerequisites" -msgstr "Prasyarat" - -# 10939c7dc1e045129389e181b03329cf -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:23 -msgid "" -"In order to use this tool, please bear in mind the following requirements:" -msgstr "" -"Untuk menggunakan tool ini, harap diperhatikan beberapa persyaratan berikut:" - -# 7268222e7ffd44bc971a53b0a9137049 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:25 -msgid "Both impact layers should be loaded in your current project" -msgstr "" -"Kedua layer dampak harus dimuat dalam proyek yang sedang Anda buka saat ini." - -# b1ca8f24d04443348c12c52be90685ab -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:26 -msgid "" -"Both impact layers should have been created for the same geographic region" -msgstr "Kedua layer dampak harus dibuat pada wilayah geografis yang sama." - -# cf6bfe32144843a290bc078b18d09a38 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:27 -msgid "The same aggregation area should be used for both assessments" -msgstr "Daerah agregrasi yang sama harus digunakan untuk kedua penilaian." - -# 29dd67f2aa8e4901b9ee93724bde9314 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:30 -msgid "Procedure" -msgstr "Prosedur" - -# dabb8db67e8d40e7be0a88a4ed9edf8b -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:32 -msgid "To use this tool, follow this procedure:" -msgstr "Untuk menggunakan alat ini, ikuti langkah berikut:" - -# 4b0d8472933e43d8bc1f985ddfc5e356 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:34 -msgid "" -"Run an impact assessment for an area using aggregation. such as flood impact " -"on buildings aggregated by municipal boundaries." -msgstr "" -"Jalankan penilaian dampak untuk suatu wilayah menggunakan agregasi, " -"misalnya dampak banjir terhadap bangunan diagregasi berdasarkan batas " -"kabupaten/kota." - -# f06c1d956acb4e8fb65c534c9cfaab2b -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:36 -msgid "" -"Run a second impact assessment for the same area using the same aggregation. " -"e.g. flood impact on people aggregated by municipal boundaries." -msgstr "" -"Jalankan penilaian dampak kedua untuk daerah yang sama menggunakan agregasi " -"yang sama, misalnya jumlah penduduk terdampak banjir diagregasi berdasarkan " -"batas kabupaten/kota." - -# 64a924a0493240b48bcdc3d3de0aca12 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:38 -msgid "" -"Open the Impact Merge tool and select each impact layer from the pick lists " -"provided." -msgstr "" -"Buka *tool* Menggabungkan Layer Dampak InaSAFE dan pilih *layer* dampak dari " -"daftar yang tersedia." - -# 7922256af6724dd98f41a7cf5c33075f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:40 -msgid "" -"Select the aggregation layer that was used to generate the first and second " -"impact layer." -msgstr "" -"Pilih layer agregasi yang digunakan untuk menghasilkan layer terdampak " -"pertama dan kedua." - -# 8ccc9a08787840f29c04b2b7ec8f5e2f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:42 -msgid "Select an output directory." -msgstr "Pilih direktori output." - -# 34890d7014dc48e4b2205c48042bff85 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:43 -msgid "" -"Check the box next to :guilabel:`Use customized report template` and select " -"the report template file if you want to use your own template. Note that all " -"the map composer components that are needed must be completed." -msgstr "" -"Centang kotak di samping \"Gunakan template laporan terkostumisasi\" dan " -"pilih *file* template laporan jika Anda ingin menggunakan template sendiri. " -"Sebagai catatan, seluruh komponen komposer peta yang dibutuhkan harus telah " -"tersedia dengan lengkap." - -# fe4afb2258784cad9413ec26319f7dd4 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:46 -msgid "" -"Click :guilabel:`OK` to generate the per aggregation area combined summaries." -msgstr "" -"Klik :guilabel:`OK` untuk menghasilkan ringkasan gabungan kedua layer dampak " -"per area agregasi." - -# c888b0dfde8c4b12bfd521919843e80f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:49 -msgid "Generated outputs" -msgstr "*Output* yang dihasilkan" - -# 481b824f6026482b8c68d5aab24ed45e -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:51 -msgid "" -"The tool will generate a PDF per aggregation area. The PDFs will be placed " -"in the designated output directory after completion of the merge process. " -"The output will consist of a map page and a table page. These are " -"illustrated below:" -msgstr "" -"*Tool* ini akan membuat PDF untuk setiap daerah agregrasi. PDF yang dibentuk " -"akan di tempatkan pada direktori yang dituju setelah selesai proses " -"penggabungan. *Output* yang dihasilkan akan terdiri dari halaman peta dan " -"halaman tabel. Seperti yang diilustrasikan dibawah ini:" - -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:61 -msgid "Impact merge report - map page" -msgstr "" - -# b4ce03768f4e408b85fe205e738525a7 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:61 -msgid "*Map page generated by the impact merge tool*" -msgstr "" -"*Halaman peta yang dihasilkan oleh *tool* Penggabungan *Layer* Dampak " -"InaSAFE*" - -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:69 -msgid "Impact merge report - table page" -msgstr "" - -# 0cbf80374f5a4e9dbce92b0599c41772 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:69 -msgid "*Table page generated by the impact merge tool*" -msgstr "" -"*Halaman tabel yang dihasilkan oleh *tool* Penggabungan *Layer* Dampak " -"InaSAFE*." - -# f2969273dc74433a9079929067f19096 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:71 -msgid "" -"In the case of impact assessments where no aggregation has been used, only a " -"single PDF report is generated. In the case of impact assessments where " -"aggregation has been used, one PDF is generated per aggregation area." -msgstr "" -"Jika dalam suatu penilaian dampak tidak ada agregrasi yang digunakan, hanya " -"akan dihasilkan satu *file* PDF. Namun, jika dalam suatu penilaian dampak " -"terdapat agregrasi, satu *file* PDF akan dihasilkan untuk setiap area " -"agregrasi. " - -# ae0d654165d347baaba53a20c8532a42 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:75 -msgid "" -"After report generation completes, the output directory will be opened " -"automatically." -msgstr "" -"Setelah pembuatan laporan selesai, direktori *output* akan terbuka secara " -"otomatis." - -# 75857b1427e44c2083f1f6df4f587dfc -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:79 -msgid "Using customised templates" -msgstr "Menggunakan *Template* Terkostumisasi" - -# a4a709f109ff4577be746fa928864f5e -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:80 -msgid "" -"The default template report is located in :file:`/resources/qgis-composer-" -"templates/merged-report.qpt`. If that template does not satisfy your needs, " -"you can use your own report template. Before using your own report template, " -"make sure that your template contains all of these elements with id:" -msgstr "" -"*Template* laporan bawaan berada di :file:`/resources/qgis-composer-" -"templates/merged-report.qpt`. Jika *template* tersebut tidak dapat memenuhi " -"kebutuhan anda, anda dapat menggunakan *template* laporan anda sendiri. " -"Sebelum menggunakan *template* laporan anda sendiri, pastikan bahwa " -"*template* Anda terdiri dari elemen-elemen berikut dengan ID:" - -# d80f52afc7dc421da904800b581f2c2f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:86 -msgid "**impact-map**, a QgsComposerMap" -msgstr "**impact-map**, berjenis QgsComposerMap" - -# 56206dd11776491aae49f9f070508280 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:87 -msgid "**safe-logo**, a QgsComposerPicture" -msgstr "**safe-logo**, berjenis QgsComposerPicture" - -# 586e70f101724ae0a30ff7fb886986ec -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:88 -msgid "**summary-report**, a QgsComposerLabel" -msgstr "**summary-report**, berjenis QgsComposerLabel" - -# 876e736fc8c14070bb6453e3ab50d74b -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:89 -msgid "**aggregation-area**, a QgsComposerLabel" -msgstr "**aggregation-area**, berjenis QgsComposerLabel" - -# b501bd72637f4e45b7250088c11e7a3f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:90 -msgid "**map-scale**, a QgsComposerScaleBar" -msgstr "**map-scale**, berjenis QgsComposerScaleBar" - -# f31edd65855741a685cff99f99a3259c -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:91 -msgid "**map-legend**, a QgsComposerLegend" -msgstr "**map-legend**, berjenis QgsComposerLegend" - -# 19dbd3c019f2460e895c748f2a56eec4 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:92 -msgid "**organisation-logo**, a QgsComposerPicture" -msgstr "**organisation-logo**, berjenis QgsComposerPicture" - -# 6d70996d54f9417caec98a987c8e0315 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:93 -msgid "**merged-report-table**, a QgsComposerHTML" -msgstr "**merged-report-table**, sebuah QgsComposerHTML" - -# 298d875c5f0441dbb9fd094ce7f81db3 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:95 -msgid "" -"If any of those elements does not exist on the report template, the tools " -"will tell you what element is missing on the template." -msgstr "" -"Jika salah satu dari elemen tersebut tidak tersedia di dalam *template* " -"laporan, QGIS akan memberi Anda informasi tentang elemen apa yang belum " -"tersedia dari *template* tersebut." - -# 2232728964524ab799dd8b045b53f06b -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:98 -msgid "You can arrange those elements in any position you want." -msgstr "" -"Anda dapat mengatur elemen-elemen tersebut di segala posisi yang Anda " -"inginkan." - -# 89d53b5331d148c8ad167a8c0311e44f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:101 -msgid "Map template elements" -msgstr "Elemen *Template* Peta" - -# 3ab56b8713d94619909be5a587ae2a20 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:102 -msgid "" -"In terms of value replacement, there are three groups of elements on the " -"template:" -msgstr "" -"Dalam ketentuan penggantian, ada tiga kelompok elemen didalam *template*:" - -# 07121ad53ddf41cbaf093bd1af85f965 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:104 -msgid "" -"1. Elements that can be changed with the |project_name| Options tool. To " -"change the value of these elements, please go to **InaSAFE Options** and " -"change the value of the related field. Those elements are:" -msgstr "" -"1. Elemen yang dapat diganti dengan *tool* Pilihan |project_name|. Untuk " -"mengubah nilai dari elemen tersebut, pergi ke **InaSAFE Option** dan ganti " -"nilai dari *field* terkait. Elemen tersebut adalah:" - -# 40b5c1baefa44d82ad47dd5d2b0cf9ee -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:109 -msgid "" -"**organisation-logo**. It corresponds to the :guilabel:`Organisation logo` " -"field in InaSAFE Options. If you do not fill this field, then the default " -"one, :file:`supporters.png`, will be used." -msgstr "" -"**logo-organisasi**. Ini bersesuaian dengan *field* :guilabel:`Logo " -"Organisasi` pada *tool* InaSAFE Option. Jika Anda tidak mengisi *field* ini, " -"maka logo bawaan yaitu :file:`supporters.png`, akan digunakan." - -# 7f0e399bfb4743cc989c323e1e339705 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:113 -msgid "" -"**disclaimer**. This corresponds to the :guilabel:`Disclaimer text` field in " -"InaSAFE Options. If you do not fill in this field the default text will be " -"used: \"InaSAFE has been jointly developed by Indonesian Government-BPNB, " -"Australian Govenment-AIFDR and the World Bank-GFDRR. These agencies and the " -"individual software developers of InaSAFE take no responsibility for the " -"correctness of outputs from InaSAFE or decisions derived as a consequence.\"" -msgstr "" -"**Penolakan**. Berpengaruh pada *field* :guilabel:`Teks Penolakan` pada " -"*tool* InaSAFE Options. Jika Anda tdak mengisi *field* ini, maka pengaturan " -"bawaan akan digunakan: \"InaSAFE telah dikembangkan secara bersama-sama oleh " -"Pemerintah Indonesia-BNPB, Pemerintah Australia-AIFDR, dan World Bank-GFDRR. " -"Instansi-instansi tersebut dan pengembang perangkat lunak InaSAFE tidak " -"bertanggung jawab atas kebenaran *output* dari InaSAFE serta keputusan yang " -"diberikan sebagai konsekuensinya.\"" - -# 15318aad487b4def8ea90b7dda838d18 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:120 -msgid "" -"2. Elements containing tokens. The id of these elements is not significant, " -"only the token it contains. At render time, these tokens will be replaced. " -"If you want to have a label containing the value of these elements, enclose " -"these elements with [] on a label i.e **[impact-title]** or **[hazard-" -"title]**. The elements are listed below:" -msgstr "" -"2. Elemen yang mengadung *token*. Identitas dari elemen ini tidak " -"signifikan, hanya terdiri dari *token*. Saat me-*render*, *token* tersebut " -"akan diganti. Jika Anda ingin memiliki *label* yang mengandung nilai dari " -"elemen ini, tutup elemen tersebut dengan [] pada *label*, contoh **[judul-" -"dampak]** atau **[judul-ancaman]**. Elemen-elemen tersebut dirinci di bawah " -"ini:" - -# 6fa62273a623439080cd2333a1d542d9 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:125 -msgid "" -"**impact-title** - indicates the title of two impacts. The value will be " -"\"*first_impact_title* and *second_impact_title*\"" -msgstr "" -"**judul-dampak** - mengindikasikan judul dari dua dampak. Nilainya akan " -"menjadi \"*judul_dampak_pertama* dan *judul_dampak_kedua*\"" - -# 1ddcdf546c0044fea2ade3ba6f6d0983 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:126 -msgid "" -"**hazard-title** - indicates the hazard title used to generate the impact " -"layer." -msgstr "" -"**judul-ancaman**. Mengindikasikan judul ancaman yang digunakan untuk " -"membuat *layer* dampak." - -# 2e9eddd655fa4c3392e783819a42f3f0 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:128 -msgid "" -"3. Elements that are direcly updated by the renderer. All of these elements " -"below are generated automatically by the tools." -msgstr "" -"3. Elemen yang langsung diperbaharui oleh *renderer*. Semua elemen dibawah " -"ini secara otomatis dihasilkan oleh InaSAFE." - -# dd25d8b273414bff99755133a4ef4b42 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:131 -msgid "**impact-map**. This contains the map of two impact layers." -msgstr "**peta-dampak**. Memuat peta dari kedua *layer* dampak." - -# 9f3f061f71c444a18ca25399c682224f -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:132 -msgid "" -"**summary-report**. This contains the summary of the impact from two impact " -"layers." -msgstr "" -"**ringkasan-laporan**. Memuat ringkasan dampak dari kedua *layer* dampak." - -# 177bdbfa00c64aff86359916e7760d63 -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:133 -msgid "**aggregation-area**. This contains the name of the aggregation area." -msgstr "**area-agregasi**. Memuat nama area agregasi." - -# e91fad77fd924e89b3fdf7780e28ec5d -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:134 -msgid "" -"**map-scale**. This indicates the scale of the map. To work with any layer " -"projection preferences, we encourage you to use a numeric scale bar." -msgstr "" -"**skala-peta**. Mengindikasikan skala peta. Untuk bekerja dengan segala " -"jenis proyeksi, kami menyarankan Anda untuk menggunakan skala angka." - -# 7bb4a52dbfdc4c2f91ab8dd9a2e1c9ae -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:135 -msgid "" -"**map-legend**. This shows the legend of merged impact layers. The map " -"legend on default template is set to have 2 columns showing each impact " -"layer legend." -msgstr "" -"**legenda-peta**. Menyajikan legenda dari penggabungan *layer* dampak. " -"Pengaturan bawaan dari *template* legenda peta diatur ke dalam 2 kolom yang " -"menggambarkan masing-masing legenda *layer* dampak." - -# 0a9ae0e4b0914755bdd091d922cf082d -#: ../../source/user-docs/application-help/impact_layer_merge_tool.rst:136 -msgid "" -"**merged-report-table**. This contains the detailed information of each " -"impact." -msgstr "" -"**tabel-laporan-yang digabung**. Memuat informasi detail dari setiap dampak." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/index.po b/docs/i18n/id/LC_MESSAGES/user-docs/application-help/index.po deleted file mode 100644 index 5445ff3f..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/index.po +++ /dev/null @@ -1,34 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# b5c5fca9eb1140b298b5a17ee53d4bfc -#: ../../source/user-docs/application-help/index.rst:4 -msgid "Application Help" -msgstr "Bantuan Aplikasi" - -# fe9f3bd58258452c8d91805751fe1e35 -#: ../../source/user-docs/application-help/index.rst:6 -msgid "" -"This section explains in detail the different functions available in |" -"project_name|, where to find them and how to use them." -msgstr "" -"Bagian ini akan menjelaskan secara detail perbedaan fungsi yang ada di |" -"project_name|, dimana untuk menemukannya dan bagaimana menggunakannya." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/keywords.po b/docs/i18n/id/LC_MESSAGES/user-docs/application-help/keywords.po deleted file mode 100644 index 37db866e..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/keywords.po +++ /dev/null @@ -1,889 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -# Emir Hartato , 2013 -# Emir Hartato , 2013 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# Kate Chapman , 2013 -# Werner Macho , 2013 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -# Riangga Sujatmiko , 2013 -# Riangga Sujatmiko , 2013 -# Werner Macho , 2013 -# Kate Chapman , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:20+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# e71a75dd0b1040e3b3eb032a66715f1c -#: ../../source/user-docs/application-help/keywords.rst:4 -msgid "Keywords System" -msgstr "Sistem Kata kunci" - -# 058e5595c46b4594a99ffc622904b4cf -#: ../../source/user-docs/application-help/keywords.rst:6 -msgid "" -"This document describes the purpose and usage of the |project_name| keywords " -"system." -msgstr "" -"Dokumentasi ini menjelaskan tujuan dan penggunaan sistem *kata kunci* |" -"project_name|." - -# 34f09385ea3743cf8df98d4378b1a28b -#: ../../source/user-docs/application-help/keywords.rst:9 -msgid "" -"Please also refer to the documentation on the :ref:`keywords wizard " -"` and the :ref:`keywords editor `, tools " -"which help in the creation of keywords files." -msgstr "" -"Silakan juga merujuk ke dokumentasi di :ref:`the kata kunci Wizards " -"` dan :ref:`editor kata kunci `, merupakan " -"sebuah alat yang digunakan untuk membantu Anda untuk membuat file kata kunci." - -# b37d6c313e9c44dcae8106508e2b327e -#: ../../source/user-docs/application-help/keywords.rst:15 -msgid "Purpose" -msgstr "Tujuan" - -# e9d4e2d7b8894ce58358613a619bdece -#: ../../source/user-docs/application-help/keywords.rst:17 -msgid "" -"The keywords system is used by :ref:`impact functions ` to " -"determine the nature of the input layers that have been passed to them." -msgstr "" -"Sistem kata kunci digunakan oleh :ref:`impact_functions ` " -"untuk menentukan sifat input layer yang telah diberikan untuk mereka." - -# a257ec94579f454ebd6244f4261b61e7 -#: ../../source/user-docs/application-help/keywords.rst:20 -msgid "" -"Each input dataset used by |project_name| needs to have an accompanying " -"keywords file. The purpose of the keywords file is to provide additional " -"metadata needed by the impact functions. For example, the keywords file will " -"indicate whether a given dataset should be treated as a *hazard* or an " -"*impact* layer. It is also used to indicate the context of the layer (e.g. " -"\"it's a *flood* layer\", \"it's an *earthquake* layer\")." -msgstr "" -"Setiap pemasukan set data SIG yang digunakan |project_name| memerlukan " -"sebuah file kata kunci yang terlampir. Tujuan dari file kata kunci ini " -"adalah untuk menyediakan metadata tambahan yang dibutuhkan oleh fungsi " -"dampak. Sebagai contoh, file kata kunci akan mengindikasikan apakah sebuah " -"dataset harus diperlakukan sebagai sebuah *ancaman* atau sebuah layer " -"*dampak*. File kata kunci ini juga digunakan untuk mengindikasikan konteks " -"dari layer (misalnya \"ini adalah layer *banjir*, ini adalah layer *gempa " -"bumi*\")." - -# 98b113d3d6d44eda8fcff9365d8f15e2 -#: ../../source/user-docs/application-help/keywords.rst:29 -msgid "" -"By convention and expectation, the keywords file should be named with the " -"same base name of the GIS datasource it accompanies. For example a flood " -"dataset saved as" -msgstr "" -"Dengan konvensi dan ekspektasi, berkas keyword harus diberi nama sama dengan " -"nama dasar dari sumber data GIS yang menyertai. Sebagai contoh sebuah set " -"data banjir disimpan sebagai" - -# 3016180079e442fb941883d4a99dfbc3 -#: ../../source/user-docs/application-help/keywords.rst:33 -msgid ":file:`C:\\\\gisdata\\\\flood.tif`" -msgstr ":file:`C:\\\\gisdata\\\\flood.tif`" - -# d9e3e9c1c54448e0a21becb1d203648d -#: ../../source/user-docs/application-help/keywords.rst:35 -msgid "would need to have an accompanying keywords file saved as:" -msgstr "akan membutuhkan berkas keyword yang menyertai disimpan sebagai:" - -# dec30b06385746e4827fdf39d935ea97 -#: ../../source/user-docs/application-help/keywords.rst:37 -msgid ":file:`C:\\\\gisdata\\\\flood.keywords`" -msgstr ":file:`C:\\\\gisdata\\\\flood.keywords`" - -# a217441e6778482bbe7920b35d763e24 -#: ../../source/user-docs/application-help/keywords.rst:39 -msgid "" -"We recommend that you **avoid using spaces** in your file names and file " -"paths!" -msgstr "" -"Kami merekomendasikan untuk **menghindari menggunakan spasi** pada nama file " -"dan lokasi file Anda!" - -# b83b569429544207a2de997802f239f1 -#: ../../source/user-docs/application-help/keywords.rst:42 -msgid "" -"The |project_name| plugin provides an editor for these keywords. The purpose " -"of this document is to describe the keywords editor and to provide " -"guidelines as to the use of keywords." -msgstr "" -"Plugin |project_name| di QGIS menyediakan sebuah editor untuk kata kunci " -"ini. Tujuan dari dokumen ini adalah untuk mendeskripsikan editor kata kunci " -"dan untuk menyediakan panduan penggunaan kata kunci tersebut." - -# b1dd0b192f2b41e79000fc4885ef352d -#: ../../source/user-docs/application-help/keywords.rst:46 -msgid "" -"Currently keywords are not validated by the library. This means that if you " -"misspell a keyword, use the wrong letter case (e.g. upper case instead of " -"lower case) or provide the wrong keyword for the context (e.g. provide a " -"subcategory of flood to an exposure category), the system will not be able " -"to determine what to do with the file. For that reason you should follow the " -"guidelines below carefully to ensure you have entered your keywords " -"correctly." -msgstr "" -"Saat ini kata kunci tidak tervalidasi oleh pustaka. Ini artinya sebagai " -"contoh jika Anda salah mengeja sebuah kata kunci, menggunakan jenis huruf " -"yang salah (misal huruf besar daripada huruf kecil) atau memberikan kata " -"kunci yang salah untuk konteks (misalnya memberikan sub-kategori banjir pada " -"sebuah kategori keterpaparan), sistem tidak dapat menerjemahkan apa yang " -"akan dilakukan oleh file tersebut. Karena alasan inilah Anda diharuskan " -"mengikuti panduan di bawah ini secara cermat untuk meyakinkan bahwa Anda " -"telah memasukan kata kunci secara benar." - -# 82a14cca424b4bc09bff6989212d8eb3 -#: ../../source/user-docs/application-help/keywords.rst:56 -msgid "Guidelines" -msgstr "Pedoman" - -# 6d3d84ac88f1414f9fc7ba745c516bdf -#: ../../source/user-docs/application-help/keywords.rst:58 -msgid "In this section we lay out the guidelines for keyword usage." -msgstr "Pada bagian ini kami menyusun panduan untuk penggunaan kata kunci." - -# 44a4f92dcc5443889dac9f5b46ef69c9 -#: ../../source/user-docs/application-help/keywords.rst:61 -msgid "Category" -msgstr "Kategori" - -# 01aa74b7ab2b4f72a4f40b33c35c76c9 -#: ../../source/user-docs/application-help/keywords.rst:63 -msgid "" -"Every dataset should have a category assigned to it. The category should be " -"written in lower case." -msgstr "" -"Setiap dataset seharusnya memiliki sebuah kategori yang telah ditentukan. " -"Kategori ini harus tertulis dalam huruf kecil." - -# dfe74bd774ad40509418a94ec3b521c8 -# fb5480b4fc294108a1e33205f93b8011 -# 3e3d8d7219404bca8cdc527a0e7d54d2 -# 9420e95446754afcb520d4453adb176d -# 56c097c8bc194defa743ab1056b97177 -# 066fd08f72cc4ebdb694a81ecdbd205b -# 15027b2284c447099d08c05946f3fd55 -# cff59ee2d95b4d2fb748d72695ed480b -# e7642a4a7d6044b8b6c2b7403d8242d7 -#: ../../source/user-docs/application-help/keywords.rst:69 -#: ../../source/user-docs/application-help/keywords.rst:91 -#: ../../source/user-docs/application-help/keywords.rst:108 -#: ../../source/user-docs/application-help/keywords.rst:138 -#: ../../source/user-docs/application-help/keywords.rst:167 -#: ../../source/user-docs/application-help/keywords.rst:186 -#: ../../source/user-docs/application-help/keywords.rst:209 -#: ../../source/user-docs/application-help/keywords.rst:226 -#: ../../source/user-docs/application-help/keywords.rst:246 -msgid "Key" -msgstr "Kunci" - -# 858f5cda51c44bb3bf459f66e3abc276 -# 673f7646250d4a71bebf106157c475ad -# f6bec53f023945cba5c0588c10025f00 -# 568041f8fd5d40ba8f8d9909c95b7f98 -# 2986d9ccf6564251920a58e2ac148ee7 -# bdc96922c60641ac9ff83cac36503ec3 -# a45ae09d43cb454e8b36e2d3b93d2065 -# 4709260d511442f38db9ecda623fd9b7 -# 1e1d2a81157249488f3bfbbf7204b94c -#: ../../source/user-docs/application-help/keywords.rst:69 -#: ../../source/user-docs/application-help/keywords.rst:91 -#: ../../source/user-docs/application-help/keywords.rst:108 -#: ../../source/user-docs/application-help/keywords.rst:138 -#: ../../source/user-docs/application-help/keywords.rst:167 -#: ../../source/user-docs/application-help/keywords.rst:186 -#: ../../source/user-docs/application-help/keywords.rst:209 -#: ../../source/user-docs/application-help/keywords.rst:226 -#: ../../source/user-docs/application-help/keywords.rst:246 -msgid "Allowed Values" -msgstr "Nilai yang diperbolehkan" - -# c07abbabb5ce41c699c7dc04cc1ab3fc -# 03cd41f38c2c40829273484a73414467 -#: ../../source/user-docs/application-help/keywords.rst:71 -#: ../../source/user-docs/application-help/keywords.rst:72 -msgid "category" -msgstr "kategori" - -# 1c790cd80aeb4758b95dc7cd5e1daf8f -#: ../../source/user-docs/application-help/keywords.rst:71 -msgid "exposure" -msgstr "keterpaparan" - -# 748400762cbe4aca973a409467c6f4a3 -#: ../../source/user-docs/application-help/keywords.rst:72 -msgid "hazard" -msgstr "ancaman" - -# 5bdae38305674938b48bc05bb6f6ea57 -# 001753b4d07f46e69a5e78eb9a3ec7ee -#: ../../source/user-docs/application-help/keywords.rst:76 -#: ../../source/user-docs/application-help/keywords.rst:116 -msgid "Example keywords file entry: ::" -msgstr "Contoh pemasukan file kata kunci: ::" - -# d44a93817bd043809c39c94b6a9350e3 -#: ../../source/user-docs/application-help/keywords.rst:82 -msgid "Subcategory" -msgstr "Subkategori" - -# c17c67251e8f48aeb3955f1cb1a32ae0 -#: ../../source/user-docs/application-help/keywords.rst:84 -msgid "The selection of a subcategory value is dependent on the category:" -msgstr "Pemilihan dari sebuah nilai subkategori tergantung dari kategori:" - -# 2fd2aaaca1df472098dce49ec7a38139 -#: ../../source/user-docs/application-help/keywords.rst:86 -msgid "Valid subcategories for category 'hazard':" -msgstr "Subkategori yang berlaku untuk kategori 'ancaman':" - -# a66e636433dd443b86b9912401cb7032 -# 8a49c56a164c45e9a9a58f786161c6cc -# cf13d829715947c882971614f1f6b492 -# 75c7aff5956e426b94c4bc22ded4aed3 -# 91930404c4db40f8a017819f9a3786e3 -# 1a5a6095f5784962a2b605e2dc4cec6e -# 4c81e844ab144416a17d98e067432c31 -# f756e508ee8a461dae83c1ac93fdad71 -# 4fd1d43096ca48768821cce2c3e02168 -#: ../../source/user-docs/application-help/keywords.rst:93 -#: ../../source/user-docs/application-help/keywords.rst:94 -#: ../../source/user-docs/application-help/keywords.rst:95 -#: ../../source/user-docs/application-help/keywords.rst:96 -#: ../../source/user-docs/application-help/keywords.rst:97 -#: ../../source/user-docs/application-help/keywords.rst:98 -#: ../../source/user-docs/application-help/keywords.rst:110 -#: ../../source/user-docs/application-help/keywords.rst:111 -#: ../../source/user-docs/application-help/keywords.rst:112 -msgid "subcategory" -msgstr "Subkategori" - -# 3a6636cab86c43baa6c35b35c80a2d70 -#: ../../source/user-docs/application-help/keywords.rst:93 -msgid "earthquake" -msgstr "gempa bumi" - -# 3dd1d120f19944e3874f3da6a7cfe06a -#: ../../source/user-docs/application-help/keywords.rst:94 -msgid "flood" -msgstr "banjir" - -# f194ac5245694e5990da4204da9677e2 -#: ../../source/user-docs/application-help/keywords.rst:95 -msgid "generic" -msgstr "umum" - -# 8d78a957cb17436ab75e0cf998db9e9b -#: ../../source/user-docs/application-help/keywords.rst:96 -msgid "tephra*" -msgstr "tephra (abu vulkanik)*" - -# 3674c34ede2542fe91e68b2e772b99c1 -#: ../../source/user-docs/application-help/keywords.rst:97 -msgid "tsunami" -msgstr "tsunami" - -# ad55ee1c2783441d9dd2687ff466cd2c -#: ../../source/user-docs/application-help/keywords.rst:98 -msgid "volcano" -msgstr "gunung berapi" - -# c854797937ab48fcbfc2314e45b79da3 -#: ../../source/user-docs/application-help/keywords.rst:101 -msgid "*tephra is volcanic ashfall*" -msgstr "*tephra merupakan bentuk lontaran abu vulkanik*" - -# 126b297447c94def98128dc507b668c5 -#: ../../source/user-docs/application-help/keywords.rst:103 -msgid "Valid subcategories for category 'exposure':" -msgstr "Subkategori yang berlaku untuk kategori 'keterpaparan':" - -# 42d72caab8ab4c9d84ac74d3e113aa47 -#: ../../source/user-docs/application-help/keywords.rst:110 -msgid "population" -msgstr "penduduk" - -# 2abd1dcbb60b4a68af14c7a37f432832 -#: ../../source/user-docs/application-help/keywords.rst:111 -msgid "road" -msgstr "jalan" - -# cffae577051a4c59a57c5a67111ba0a6 -#: ../../source/user-docs/application-help/keywords.rst:112 -msgid "structure" -msgstr "struktur" - -# 8ea609ca03cd4742962fe75fc91c80d0 -#: ../../source/user-docs/application-help/keywords.rst:123 -msgid "Units" -msgstr "Satuan" - -# 7529cc43ebbe44c08fae6e359ff8fcc2 -#: ../../source/user-docs/application-help/keywords.rst:125 -msgid "" -"The units keyword is used to indicate the metric or imperial units " -"represented by each data entity (a grid cell or a vector feature) in a layer." -msgstr "" -"Unit kata kunci yang digunakan menunjukkan satuan metrik atau imperial " -"diwakili oleh masing-masing entitas data (sel jaringan atau fitur vektor) " -"dalam sebuah layer." - -# 5d038d787755465a82f04e1a1f587d1c -#: ../../source/user-docs/application-help/keywords.rst:130 -msgid "Valid units for hazard subcategories" -msgstr "Unit-unit yang berlaku untuk subkategori ancaman" - -# 1d0375e42140472b91db6f9e075694e5 -#: ../../source/user-docs/application-help/keywords.rst:133 -msgid "Valid units for subcategory 'flood' or subcategory 'tsunami':" -msgstr "" -"Unit-unit yang berlaku untuk subkategori 'banjir' atau subkategori 'tsunami':" - -# 6f522318ca764d40aeecc35f4d0a1ad2 -# 4aca045ece6742009cb3fd1dd371c4d3 -# 96e01b7feb824a04b87a5f6311b237c0 -# 02c54d6e95024538944a71a04c6c8155 -# aafe12cf074d40e0a4b58dcf817becf5 -# 9c0dfd8837d148d880590febf5d86238 -# 351de67ec01b4c5e92cd105b2c157552 -# d554d0e2b4d948239097b5faf3e6a4be -# 9acb89fb19d642628ad8ec0a26cdc686 -# f595d9a1416840a5a7e6137ae488b498 -# 2c93cf0aa63d4c9db0cfe289bff42a1c -# 8a4e93705b354e2bad01c1d28ed35b68 -#: ../../source/user-docs/application-help/keywords.rst:140 -#: ../../source/user-docs/application-help/keywords.rst:141 -#: ../../source/user-docs/application-help/keywords.rst:142 -#: ../../source/user-docs/application-help/keywords.rst:143 -#: ../../source/user-docs/application-help/keywords.rst:169 -#: ../../source/user-docs/application-help/keywords.rst:170 -#: ../../source/user-docs/application-help/keywords.rst:188 -#: ../../source/user-docs/application-help/keywords.rst:189 -#: ../../source/user-docs/application-help/keywords.rst:211 -#: ../../source/user-docs/application-help/keywords.rst:228 -#: ../../source/user-docs/application-help/keywords.rst:229 -#: ../../source/user-docs/application-help/keywords.rst:248 -msgid "units" -msgstr "unit/ satuan" - -# a426491ebd584d2dbbe84ea15a68c027 -#: ../../source/user-docs/application-help/keywords.rst:140 -msgid "metres" -msgstr "meter" - -# dde7ad4a86664480b68b647f740cd97a -#: ../../source/user-docs/application-help/keywords.rst:141 -msgid "feet" -msgstr "kaki" - -# 8f4a1f6a1e0749f1b1ff5e74ed776282 -#: ../../source/user-docs/application-help/keywords.rst:142 -msgid "wet / dry" -msgstr "basah / kering" - -# aebaadf387df4c4289d87f55462147f0 -# 4c135dd3e15b4824b18574c3da649504 -# fa11fce451bc4f9d8fdd7d5ed16e1f16 -#: ../../source/user-docs/application-help/keywords.rst:143 -#: ../../source/user-docs/application-help/keywords.rst:169 -#: ../../source/user-docs/application-help/keywords.rst:189 -msgid "normalised" -msgstr "ternormalisasi" - -# fcc8e2603bfd42b2a91f042b87370fed -#: ../../source/user-docs/application-help/keywords.rst:146 -msgid "" -"**metres**: Metres are a metric unit of measure. There are 100 centimetres " -"in one metre. In this case **metres** are used to describe the water depth." -msgstr "" -"**meter**: **Meter** merupakan sebuah unit pengukuran metrik. 100 sentimeter " -"sama dengan 1 meter. Pada kasus ini **meter** digunakan untuk " -"mendeksripsikan kedalaman air. " - -# 1b53ed601ecc4f9692af0e98014daa35 -#: ../../source/user-docs/application-help/keywords.rst:149 -msgid "" -"**feet**: Feet are an imperial unit of measure. There are 12 inches in one " -"foot and three feet in one yard. In this case **feet** are used to describe " -"the water depth." -msgstr "" -"**kaki**: **Kaki** merupakan salah satu unit pengukuran imperial. 1 kaki " -"sama dengan 12 inci dan 3 kaki sama dengan 1 yard. Dalam kasus ini **kaki** " -"digunakan untuk mendeskripsikan kedalaman air. " - -# 49e822c7dffa446fb909579035a0fe9e -#: ../../source/user-docs/application-help/keywords.rst:153 -msgid "" -"**wet / dry**: This is a binary description for an area. The area is either " -"**wet** (affected by flood water) or **dry** (not affected by flood water). " -"This unit does not describe how **wet** or **dry** an area is." -msgstr "" -"**basah / kering**: Ini adalah deskripsi biner untuk wilayah. Wilayah bisa " -"berupa **basah** (terdampak oleh air banjir) atau **kering** (tidak " -"terdampak oleh air banjir). Unit ini tidak mendeskripsikan seberapa " -"**basah** atau **kering** wilayah tersebut." - -# beac64010b02439c8e89d3fd055bab44 -# f74231f1aeba4d8991c7ce1b063d8f67 -# fdcb7b8b184c4d99b49a7faf48d45fab -#: ../../source/user-docs/application-help/keywords.rst:157 -#: ../../source/user-docs/application-help/keywords.rst:173 -#: ../../source/user-docs/application-help/keywords.rst:196 -msgid "" -"**normalised**: Normalised data can be hazard or exposure data where the " -"values have been classified or coded." -msgstr "" -"**ternomalisasi**: Data ternormalisasi dapat berupa data ancaman atau " -"keterpaparan dimana nilainya telah diklasifikasikan atau dikodekan." - -# 05e3420bb55f4dd5895e30dd83251312 -#: ../../source/user-docs/application-help/keywords.rst:162 -msgid "Valid units for subcategory 'volcano' or subcategory 'tephra':" -msgstr "" -"Unit-unit yang berlaku untuk subkategori 'gunung berapi' atau subkategori " -"'material letusan':" - -# 6f1259ad8e454853b901375915161aaa -#: ../../source/user-docs/application-help/keywords.rst:170 -msgid "volcano categorical" -msgstr "kategori gunung berapi" - -# 8f5d52da5db54da28d32d967d8f018a9 -#: ../../source/user-docs/application-help/keywords.rst:176 -msgid "" -"**volcano categorical**: This is a ternary description for an area. The area " -"is either has **low**, **medium**, or **high** impact from the volcano." -msgstr "" -"**Kategori gunung api**: Ini adalah deskripsi ternari untuk sebuah wilayah. " -"Wilayah memiliki dampak **rendah**, **sedang**, atau **tinggi** dari gunung " -"berapi." - -# 6d0f98b399bd4157ba45292534de2507 -#: ../../source/user-docs/application-help/keywords.rst:181 -msgid "Valid units for subcategory 'earthquake':" -msgstr "Unit-unit yang berlaku untuk subkategori 'gempa bumi':" - -# 641faaca4dc648079bb977c280f40b30 -#: ../../source/user-docs/application-help/keywords.rst:188 -msgid "MMI" -msgstr "MMI" - -# 98484af722fd45c29efd29fb921d7255 -#: ../../source/user-docs/application-help/keywords.rst:192 -msgid "" -"**MMI**: The Modified Mercalli Intensity (MMI) scale describes the intensity " -"of ground shaking from a earthquake based on the effects observed by people " -"at the surface." -msgstr "" -"**MMI**: Skala **Modified Mercalli Intensity (MMI)** mendeskripsikan " -"intensitas getaran tanah dari sebuah kejadian gempa bumi berdasarkan efek " -"yang diamati oleh orang-orang di permukaan. " - -# 4d4e89a15fe7468d9a321106128c68c5 -#: ../../source/user-docs/application-help/keywords.rst:201 -msgid "Valid units for exposure subcategories" -msgstr "Unit-unit yang berlaku untuk subkategori terdampak" - -# c1ba92b64bb44f25badb452b7dedc323 -#: ../../source/user-docs/application-help/keywords.rst:204 -msgid "Valid units for subcategory 'population':" -msgstr "Unit-unit yang berlaku untuk subkategori 'populasi':" - -# c227d8a2fdda4cc2b54e55c56a9bdc70 -#: ../../source/user-docs/application-help/keywords.rst:211 -msgid "people per pixel" -msgstr "orang per piksel" - -# d2e2d5298e774d4e9ecc90695b88c5ef -#: ../../source/user-docs/application-help/keywords.rst:214 -msgid "" -"**people per pixel**: Count is the number of people in each cell. For " -"example **population count** might be measured as the number of people per " -"pixel in a raster data set. This unit is relevant for population rasters in " -"geographic coordinates." -msgstr "" -"**penduduk per pixel**: banyak penduduk tiap sel. Sebagai contoh **jumlah " -"penduduk** bisa dihitung sebagai banyak penduduk per pixel pada data raster. " -"Unit ini cocok untuk raster penduduk di koordinat geografis." - -# 5e019562412a49ff9dccf3b12964ae94 -#: ../../source/user-docs/application-help/keywords.rst:221 -msgid "Valid units for subcategory 'structure':" -msgstr "Unit-unit yang berlaku untuk subkategori 'bangunan':" - -# f47f466d131f454485dd4d9ccde95f55 -#: ../../source/user-docs/application-help/keywords.rst:228 -msgid "building type" -msgstr "jenis bangunan" - -# 60cab12a9d874b4da53326b27f9f47e8 -#: ../../source/user-docs/application-help/keywords.rst:229 -msgid "building generic" -msgstr "bangunan umum" - -# 2c26ed66e6904c5bbebc3a45ea07c4f3 -#: ../../source/user-docs/application-help/keywords.rst:232 -msgid "" -"**building type**: Building type is a unit that represents the type of the " -"building. In this case, building type will be used to group the results of " -"the impact function." -msgstr "" -"**jenis bangunan**: **Jenis bangunan** adalah unit yang merepresentasikan " -"jenis dari bangunan. Pada kasus ini, jenis bangunan akan digunakan untuk " -"mengelompokan hasil dari fungsi dampak." - -# 1ade93ed619747568d8dae49c0e88770 -#: ../../source/user-docs/application-help/keywords.rst:236 -msgid "" -"**building generic**: Building generic means that there is no building type " -"attribute in the exposure data." -msgstr "" -"**bangunan umum**: Bangunan umum berarti bahwa tidak ada atribut jenis " -"bangunan pada data terdampak." - -# c64196093abc44c3b4c55648d373362a -#: ../../source/user-docs/application-help/keywords.rst:241 -msgid "Valid units for subcategory 'road':" -msgstr "Unit-unit yang berlaku untuk subkategori 'jalan':" - -# 84e298da035d4fbe8a6ea313b6a5d808 -#: ../../source/user-docs/application-help/keywords.rst:248 -msgid "Road Type" -msgstr "Jenis Jalan" - -# e36f7fd9fe16441e95529b0bf03b5e36 -#: ../../source/user-docs/application-help/keywords.rst:251 -msgid "" -"**Road Type**: Road type is a unit that represent the type of the road. In " -"this case, road type will be used to group the result of impact function." -msgstr "" -"**Jenis jalan**: Jenis jalan adalah unit yang merepresentasikan jenis dari " -"jalan. Pada kasus ini, jenis jalan akan digunakan untuk mengelompokan hasil " -"dari fungsi dampak." - -# dffdd6411d3d4121a66fa871ebc51408 -#: ../../source/user-docs/application-help/keywords.rst:256 -msgid "Datatype" -msgstr "Jenis data" - -# b1e5c7a7d7a04c5c897d204537f78bc8 -#: ../../source/user-docs/application-help/keywords.rst:258 -msgid "" -"The datatype keyword indicates what kind of geospatial data is represented " -"(Numeric, Polygon, Line, Point)." -msgstr "" -"Tipe data kunci menunjukkan jenis data geospasial diwakili (Numerik, " -"Poligon, Garis, Poin)." - -# c1ad77adb23447b4b7ac2d71ea445c50 -#: ../../source/user-docs/application-help/keywords.rst:263 -msgid "Assumptions" -msgstr "Anggapan" - -# 48ea1f098a6e458abd6439db1576ab2d -#: ../../source/user-docs/application-help/keywords.rst:265 -msgid "" -"The following assumptions are made about keywords, which may or may not be " -"programmatically enforced by the |project_name| library and GUI:" -msgstr "" -"Berikut ini asumsi yang dibuat mengenai kata kunci, yang mungkin atau tidak " -"mungkin untuk pemrograman yang diterapkan oleh |project_name| library dan " -"GUI:" - -# 95ebcdd3d06c4428a591cd080c92dfa8 -#: ../../source/user-docs/application-help/keywords.rst:268 -msgid "" -"There should only be **one keyword for a given key** in the keywords file." -msgstr "" -"Seharusnya hanya **satu keyword untuk sebuah key yang diberikan** pada " -"berkas keyword." - -# fa9aee7b1e974e938fc4b7cdb05000ff -#: ../../source/user-docs/application-help/keywords.rst:269 -msgid "" -"Keywords for **category** are **enforced** to be one of 'hazard' or " -"'exposure' by the GUI." -msgstr "" -"Kata kunci untuk **kategori** yang **ditegakkan** menjadi salah satu " -"'hazard' atau 'exposure' oleh GUI." - -# e4550841eb954ace957d5abe530884f5 -#: ../../source/user-docs/application-help/keywords.rst:271 -msgid "" -"All keywords should be in **lower case**, **without spaces** with the " -"exception of 'Title' whose value may contain both spaces and mixed case " -"letters." -msgstr "" -"Semua kata kunci harus dalam **huruf kecil**, **tanpa spasi** dengan " -"pengecualian 'Judul' yang nilainya mungkin mengandung spasi dan huruf " -"campuran." - -# 6e084f71bfec4d06a3a2664be2a44e93 -#: ../../source/user-docs/application-help/keywords.rst:274 -msgid "" -"Values for keywords should generally be lower case, with the exception of " -"**datatype values, which may be in upper case** (e.g. MMI)" -msgstr "" -"Nilai-nilai untuk kata kunci harus pada umunya ditulis menggunakan huruf " -"kecil dengan pengecualian untuk **tipe data, nilai-nilainya mungkin huruf " -"besar** (contoh : MMI)" - -# 07d7b06bea824eb1a08e3a9bf595ec6a -#: ../../source/user-docs/application-help/keywords.rst:276 -msgid "" -"Keys and values should **not contain colons**. In the keyword editor, any " -"colons will be replaced with a full stop character." -msgstr "" -"Kunci dan nilai harus **tidak mengandung tanda titik dua**. Di dalam editor " -"kata kunci, setiap tanda titik dua akan diganti dengan karakter berhenti " -"penuh." - -# 5aa5ca0d1cce40d99bd38b61804a4e4f -#: ../../source/user-docs/application-help/keywords.rst:279 -msgid "" -"All other keywords and values that do not fit the above domain lists may be " -"used but they may produce undesired results." -msgstr "" -"Semua kata kunci dan nilai yang tidak sesuai dengan daftar domain di atas " -"dapat digunakan, tetapi mereka dapat menghasilkan hasil yang tidak " -"diinginkan." - -# d04abc0e448247fe88d32ee4d10b62c1 -#: ../../source/user-docs/application-help/keywords.rst:283 -msgid "Translations" -msgstr "Terjemahan" - -# 0f067b98e830476b8413a0d0b6feb39b -#: ../../source/user-docs/application-help/keywords.rst:285 -msgid "" -"Although |project_name| is available in different languages, the 'key' in " -"the keywords files should always be written in English." -msgstr "" -"Walaupun |project_name| tersedia dalam berbagai bahasa, tapi 'key' dalam " -"file kata kunci seharusnya selalu dituliskan dalam bahasa inggris." - -# ba6b2ff22e6e42e08ac879ff1b091059 -#: ../../source/user-docs/application-help/keywords.rst:289 -msgid "Keywords for remote and non-file based layers" -msgstr "" -"Kata kunci (keyword) untuk mengontrol dan non-file didasarkan pada layer" - -# a6c8e7e0eb0a45ebadc15dc10bfe0c3c -#: ../../source/user-docs/application-help/keywords.rst:291 -msgid "" -"If you are using a PostgreSQL, WFS, Spatialite or other non-file based " -"resource, you can still create keywords. In these circumstances the keywords " -"will be written to a sqlite database - by default this database is stored " -"as :file:`keywords.db` within the |project_name| root directory." -msgstr "" -"Jika Anda menggunakan PostgreSQL, WFS, Spatialite atau non-file lain " -"berbasis sumber daya, Anda tetap dapat membuat kata kunci. Dalam keadaan ini " -"kata kunci akan ditulis ke basis data sqlite - secara standar basis data ini " -"disimpan sebagai :file:`keywords.db` di dalam |project_name| direktori utama " -"pugin." - -# 5b4409beea3c4a7aa9e4e7315644444d -#: ../../source/user-docs/application-help/keywords.rst:297 -msgid "" -"You may wish to use a different location for the :file:`keywords.db` " -"keywords database - you can configure this by using the |project_name| " -"options dialog. The options dialog can be launched by clicking on the |" -"project_name| plugin toolbar's options icon (as shown below) or by going to :" -"menuselection:`Plugins ‣ InaSAFE ‣ InaSAFE Options`." -msgstr "" -"Anda mungkin berharap untuk menggunakan lokasi yang berbeda untuk :file:" -"`keywords.db` kata kunci basis data - Anda dapat mengkonfigurasi ini dengan " -"menggunakan |project_name| dialog pilihan. Dialog pilihan dapat dimunculkan " -"dengan mengklik pada |project_name| simbol plugin toolbar pilihan (seperti " -"terlihat di bawah) atau dengan melakukan :menuselection:`Plugins ‣ InaSAFE ‣ " -"InaSAFE Options`." - -#: ../../source/user-docs/application-help/keywords.rst:308 -msgid "Options Icon" -msgstr "" - -# 6c170d31ede645a5830d3c99c80d5b19 -#: ../../source/user-docs/application-help/keywords.rst:308 -msgid "*The options button*" -msgstr "*Tombol Opsi*" - -# 00b24c77ef8f45e7a24c3f2a11f58f6f -#: ../../source/user-docs/application-help/keywords.rst:310 -msgid "" -"When the options dialog is opened, the keywords database path can be " -"specified under the :guilabel:`Advanced` tab under :guilabel:`Keyword cache " -"for remote datasources` as shown below." -msgstr "" -"Ketika kotak dialog Pilihan/ *Option* terbuka, path database kata kunci " -"dapat ditentukan di bawah tab :guilabel:`Advanced` menggunakan pilihan :" -"guilabel:`Keyword cache for remote datasources` seperti yang terlihat " -"dibawah." - -# 81ced1aa24304b90a0ed3359300c1373 -#: ../../source/user-docs/application-help/keywords.rst:319 -#, fuzzy -msgid "Path to options database" -msgstr "*Jalur ke pilihan database*" - -# 81ced1aa24304b90a0ed3359300c1373 -#: ../../source/user-docs/application-help/keywords.rst:319 -msgid "*Path to options database*" -msgstr "*Jalur ke pilihan database*" - -# e0e9b1a671d5489db42b818a3b42ea7d -#: ../../source/user-docs/application-help/keywords.rst:323 -msgid "" -"Support for remote and non-file based layers was added in |project_name| " -"version 0.3." -msgstr "" -"Layanan untuk remote dan layer berbasis non-file telah ditambahkan di |" -"project_name| versi 0.3." - -# cfcd780b55704cc1b8efb445ba431f16 -#: ../../source/user-docs/application-help/keywords.rst:325 -msgid "" -"The database can be opened using a sqlite editor such as sqliteman, but the " -"data in the keywords table is not intended to be human readable or edited. " -"The table columns consist of an MD5 hash based on the URI for the datasource " -"(typically the database connection details) and a blob which contains the " -"keywords as a pickled python dictionary." -msgstr "" -"Database dapat dibuka menggunakan editor sqlite seperti sqliteman, tapi data " -"di tabel kata kunci tidak dapat dibaca atau diedit. Kolom tabel memiliki " -"sebuah MD5 berdasarkan pada URI untuk sumber data (biasanya detail koneksi " -"database) dan kumpulan yang memiliki kata kunci sebagai kamus python." - -# f39046f3b87c486ba4f1959c256c8482 -#: ../../source/user-docs/application-help/keywords.rst:332 -msgid "" -"See :doc:`./options` for more information about the |project_name| options " -"dialog." -msgstr "" -"Lihat :doc:`./options` dokumen untuk informasi lebih lengkap mengenai |" -"project_name| pilihan dialog." - -# 9604f09173704081818159f3dd15ad04 -#: ../../source/user-docs/application-help/keywords.rst:336 -msgid "Sharing your keywords cache" -msgstr "Berbagi cache kata kunci Anda" - -# d3fbd97a3d0b44db92e605f774f271d4 -#: ../../source/user-docs/application-help/keywords.rst:338 -msgid "" -"In theory you can place the keywords file on a network share and create a " -"shared keyword repository in a multi-user environment, but you should note " -"that the layer URI hashes need to be identical in order for a layer's " -"keyword to be found. This means that, for (contrived) example: ::" -msgstr "" -"Secara teori anda dapat menempatkan file kata kunci pada sebuah jaringan " -"berbagi dan membuat sebuah repositori kata kunci bersama dalam lingkungan " -"banyak pengguna, tetapi anda harus perhatikan bahwa hash layer URI perlu " -"untuk diidentifikasi supaya kata kunci layer dapat ditemukan. Ini " -"dimaksudkan untuk (dibuat sebagai), contoh ::" - -# 3842b7bc9e214b44b9395dc3128fd75f -#: ../../source/user-docs/application-help/keywords.rst:347 -msgid "would not be considered the same as ::" -msgstr "Tidak akan dianggap sama seperti ::" - -# d1b622bcb94a44508785a72de9646376 -#: ../../source/user-docs/application-help/keywords.rst:352 -msgid "" -"since the user credentials differ, resulting in a different URI. To work " -"around this you could create a common account so that every user will " -"effectively use the same URI to load that layer e.g. ::" -msgstr "" -"karena kredensial pengguna berbeda, sehingga menghasilkan URI yang berbeda. " -"Untuk mengatasi ini, Anda bisa membuat akun umum sehingga setiap pengguna " -"secara efektif akan menggunakan URI yang sama untuk memuat layer misalnya ::" - -# 550db95e8bbc4c9da7d62b613260c011 -#: ../../source/user-docs/application-help/keywords.rst:359 -msgid "" -"For certain resources (e.g. ArcInfo coverages, Spatialite databases) where " -"the keywords cache is also used, you should take care to use a common mount " -"point or network share to access the data if you wish to successfully hit " -"the cache with the layer's URI. For example you could have all users mount " -"your data to the same place. Under Unix-like operating systems this could " -"look something like this:" -msgstr "" -"Untuk sumber daya tertentu (misalnya cakupan Arcinfo, basis data Spatialite) " -"dimana cache juga digunakan, Anda harus berhati-hati menggunakan titik " -"tingkat umum atau jaringan berbagi untuk mengakses data jika Anda berharap " -"menekan cache dengan layer URI secara sukses. Contohnya Anda dapat memiliki " -"semua pengguna menjaga data pada tempat yang sama. Di bawah Unix sebagai " -"sistem pengoperasian ini dapat terlihat seperti ini:" - -# 956bd80f1f954f58a05f6da936a1b5d2 -#: ../../source/user-docs/application-help/keywords.rst:366 -msgid ":file:`/mnt/gisdata/jk.sqlite`" -msgstr ":file:`/mnt/gisdata/jk.sqlite`" - -# 44b267791aa441be8dd608086d0b9c3e -#: ../../source/user-docs/application-help/keywords.rst:368 -msgid "" -"Under Windows you could always use the same drive letter and path to the " -"share, e.g.:" -msgstr "" -"Pada windows anda dapat selalu menggunakan kode huruf drive anda yang sama " -"dan destinasi untuk berbagi, contohnya:" - -# c0cdf278dd5e46abbc3f335b825589e4 -#: ../../source/user-docs/application-help/keywords.rst:371 -msgid ":file:`Z:\\\\gisdata\\\\jk.sqlite`" -msgstr ":file:`Z:\\\\gisdata\\\\jk.sqlite`" - -# 668144e49482438681ff8c96f8f596f7 -#: ../../source/user-docs/application-help/keywords.rst:374 -msgid "Getting help" -msgstr "Mendapatkan bantuan" - -# b00da58ef8f74f1ca16c8c8503cf6888 -#: ../../source/user-docs/application-help/keywords.rst:376 -msgid "" -"If you need help using the keywords editor, click on the :guilabel:`Help` " -"button at the bottom of the dialog and this page will be displayed." -msgstr "" -"Jika Anda membutuhkan bantuan untuk menggunakan editor kata kunci, Anda " -"dapat klik pada tombol :guilabel:`Help` di tombol dialog dan halaman ini " -"akan ditampilkan." - -# 7e6598dc1fcd4ec19d37197858f14190 -#: ../../source/user-docs/application-help/keywords.rst:380 -msgid "" -"This document is automatically generated. It can be regenerated by running " -"the python script /inasafe-doc/scripts/generate_keywords.py." -msgstr "" -"Dokumen ini dibuat secara otomatis. Dokumen ini dapat dibuat ulang dengan " -"menjalankan script python /inasafe-doc/scripts/generate_keywords.py." - -# 4c8c00b24d1f460db01099eb9f08e1a0 -#: ../../source/user-docs/application-help/keywords.rst:383 -msgid "This document was generated based on |project_name| 2.1.0b0." -msgstr "Dokumen ini dibuat berdasarkan |project_name| 2.1.0b0." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/keywords_editor.po b/docs/i18n/id/LC_MESSAGES/user-docs/application-help/keywords_editor.po deleted file mode 100644 index 98f0412a..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/keywords_editor.po +++ /dev/null @@ -1,274 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-06-11 09:37+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# f6590829120f41abb859a1ba200262f8 -#: ../../source/user-docs/application-help/keywords_editor.rst:4 -msgid "Keywords Editor" -msgstr "Editor Kata kunci (keyword editor)" - -# 22f2ac418076470290e3fbab6b362747 -#: ../../source/user-docs/application-help/keywords_editor.rst:6 -msgid "" -"The keywords editor provides an interface for creating |project_name| " -"keywords. If you are a new user, you should probably use the :ref:`Keywords " -"Wizard ` rather than the keywords editor as it makes it " -"easy to specify correct keywords if you are not familiar with the system." -msgstr "" -"Editor kata kunci menyediakan antarmuka pengguna untuk membuat kata kunci. " -"Jika Anda adalah pengguna baru, Anda mungkin sebaiknya menggunakan :ref:" -"`Wizard Pembuat Kata Kunci InaSAFE ` daripada menggunakan " -"editor kata kunci, karena dengan menggunakan wizard pembuatan kata kunci " -"menjadi lebih mudah, terlebih jika Anda belum mengenal/mamahami sistem yang " -"ada." - -# b5c6588a9b3049809bb9f087b4feea8a -#: ../../source/user-docs/application-help/keywords_editor.rst:12 -msgid "" -"For more general discussion on the keywords system used by |project_name|, " -"see the :ref:`keywords system ` documentation." -msgstr "" -"Untuk diskusi yang lebih umum pada sistem kata kunci yang digunakan oleh " -"InaSAFE, silakan lihat dokumentasi :ref:`sistem kata kunci " -"`." - -# 9a95edee58d04736895191cd28bf0dbd -#: ../../source/user-docs/application-help/keywords_editor.rst:16 -msgid "The keywords editor graphical user interface" -msgstr "Editor kata kunci (keyword) di layar pengguna" - -# c3883756cc8642dd91ee0138543cd437 -#: ../../source/user-docs/application-help/keywords_editor.rst:18 -msgid "" -"The graphical user interface for keywords may appear in one of two modes:" -msgstr "" -"Halaman antarmuka untuk kata kunci dapat tampil dalam salah satu dari dua " -"mode:" - -# 7ba23ae2f3ca499aac0888eb7365df3c -#: ../../source/user-docs/application-help/keywords_editor.rst:20 -msgid "" -"**Minimal mode**: In this mode, only the following options are provided:" -msgstr "" -"**Mode minimal**: Pada mode ini, hanya pilihan-pilihan berikut yang " -"disediakan: " - -# 9dd1a2c3cc8446278b1ebed69c421bd9 -#: ../../source/user-docs/application-help/keywords_editor.rst:22 -msgid "" -"**Title** - a friendly name for the dataset which will be displayed in " -"reports, the user interface and so on." -msgstr "" -"**Judul** - nama yang mudah diingat untuk dataset yang akan ditampilkan " -"dalam laporan, halaman antarmuka, dan sebagainya. " - -# c56fa70c936948c382f647ea706f6db1 -#: ../../source/user-docs/application-help/keywords_editor.rst:24 -msgid "**Source** - a field to inform from whom/where the dataset is obtained." -msgstr "" -"**Sumber** - kolom untuk menginformasikan dari siapa / dari mana dataset " -"tersebut diperoleh" - -# 2af770d18404481c80f0466c23a6fbc0 -#: ../../source/user-docs/application-help/keywords_editor.rst:25 -msgid "**Category** - A mandatory choice between 'hazard' and 'exposure'." -msgstr "**Kategori** - Pilihan wajib antara 'ancaman' dan 'keterpaparan'." - -# e744c22082104cf08ef3c3ff4e165cb6 -#: ../../source/user-docs/application-help/keywords_editor.rst:26 -msgid "" -"**Subcategory** - An amalgamated subcategory/units picklist (in the case of " -"hazard) or amalgamated subcategory/datatype (in the case of exposure). In " -"this case, the secondary characteristic (units or datatype) are shown in " -"square brackets after the subcategory name e.g. :samp:`flood [m]` is used " -"for subcategory 'flood', units 'm'." -msgstr "" -"**Subkategori** - Sebuah daftar subkategori/unit-unit yang tergabung (jika " -"kasusnya ancaman) atau subkategori/tipe data yang tergabung (jika kasusnya " -"paparan). Pada kasus ini, karakteristik sekunder (unit atau tipe data) " -"ditunjukan pada kurung persegi setelah nama subkategori contohnya :samp:" -"`banjir [m]` digunakan untuk subkategori 'banjir', unit 'm'" - -# 530ee1b434584e779f4e3fd2f60e7f52 -#: ../../source/user-docs/application-help/keywords_editor.rst:33 -msgid "This is an example of the keywords editor in minimal mode:" -msgstr "Berikut ini adalah contoh editor kata kunci dalam mode minimal:" - -# b235835d862f4267818d806701360523 -#: ../../source/user-docs/application-help/keywords_editor.rst:40 -#, fuzzy -msgid "Opened keyword editor window" -msgstr "*Tampilan jendela editor kata kunci yang telah terbuka*" - -# b235835d862f4267818d806701360523 -#: ../../source/user-docs/application-help/keywords_editor.rst:40 -msgid "*Opened keyword editor window*" -msgstr "*Tampilan jendela editor kata kunci yang telah terbuka*" - -# 88778e392a8e4820a67f48c7fd33409d -#: ../../source/user-docs/application-help/keywords_editor.rst:42 -msgid "" -"**Advanced mode**: In this mode several extra options are provided in " -"addition to the minimal mode options. Unlike minimal mode, in advanced mode " -"only basic validation is performed and the user is given more flexibility to " -"manually define and remove key/value pairs. Three additional sections are " -"available:" -msgstr "" -"**Mode lanjutan**: Pada mode ini, disediakan beberapa pilihan tambahan " -"sebagai tambahan untuk pilihan pada mode minimal. Tidak seperti mode " -"minimal, pada mode lanjutan hanya validasi dasar yang dilakukan dan pengguna " -"diberikan lebih banyak keleluasaan untuk mendefinisikan dan menghapus " -"pasangan kunci/nilai secara manual. Tiga bagian tambahan yang disediakan " -"yaitu: " - -# 60f1d21bfc0c44a995d22b460c5d7be6 -#: ../../source/user-docs/application-help/keywords_editor.rst:49 -msgid "" -"**Predefined** - In this section, the user selects from a constrained list " -"of keywords, enters any value and then adds the key/value pair to the " -"keywords list (see below)." -msgstr "" -"**Yang Telah Ditentukan** - Pada bagian ini, pengguna memilih dari daftar " -"kata kunci terkendala, memasukkan nilai dan kemudian menambahkan pasangan " -"kunci/nilai ke dalam daftar kata kunci (lihat dibawah ini). " - -# 4355a5a55f5e4ac9bb787a6d6df72648 -#: ../../source/user-docs/application-help/keywords_editor.rst:52 -msgid "" -"**User defined** - In this section, there is no constraint on the keywords " -"entered - any single lower case word will be accepted for both the key and " -"the value components." -msgstr "" -"**User defined** - Pada bagian ini, tidak ada kendala pada kata kunci yang " -"dimasukkan - setiap kata dalam huruf kecil akan diterima untuk kedua " -"komponen baik kunci dan nilai." - -# 69f4a7f36c1a4106804260b98b4c3f97 -#: ../../source/user-docs/application-help/keywords_editor.rst:55 -msgid "" -"**Current keywords** - In this area a complete list of all the keywords for " -"the dataset is displayed. The keywords list here is updated when any changes " -"are made in both the simple and advanced mode editors. It is also possible " -"in this area to manually remove unwanted keywords using the :guilabel:" -"`Remove selected` button. Multiple keywords can be removed in a single " -"operation by holding :kbd:`CTRL` and clicking on multiple keyword entries in " -"the current keywords list and then clicking :guilabel:`Remove selected`." -msgstr "" -"**Kata Kunci Saat Ini** - Pada bagian ini, telah ditampilkan daftar semua " -"kata kunci yang lengkap untuk dataset. Daftar kata kunci disini telah " -"diperbarui seketika setiap terjadi perubahan yang dibuat pada mode editor " -"sederhana maupun lanjutan. Pada bagian ini juga dimungkinkan untuk menghapus " -"kata kunci yang tidak diinginkan secara manual dengan menggunakan tombol :" -"guilabel:`Hilangkan yang dipilih'. Beberapa kata kunci dapat dihapus dalam " -"satu operasi dengan menekan :kbd:`CTRL` kemudian klik pada beberapa kata " -"kunci dalam daftar kata kunci saat ini, dan selanjutnya klik :guilabel:" -"`Hilangkan yang dipilih`." - -# 39d6fbdd5d5a4a8c937e08ebf8814db1 -#: ../../source/user-docs/application-help/keywords_editor.rst:70 -#, fuzzy -msgid "Advanced mode of keyword editor" -msgstr "*Editor kata kunci mode lanjutan*" - -# 39d6fbdd5d5a4a8c937e08ebf8814db1 -#: ../../source/user-docs/application-help/keywords_editor.rst:70 -msgid "*Advanced mode of keyword editor*" -msgstr "*Editor kata kunci mode lanjutan*" - -# 16d9c37416364e20b1dd7a3db5476e8b -#: ../../source/user-docs/application-help/keywords_editor.rst:73 -msgid "" -"Switching from hazard to exposure will clear parts of the GUI since most " -"keywords are category dependent. In particular, selecting **'hazard'** will " -"remove the **'datatype'** key/value pair, and selecting **'exposure'** will " -"remove the **'units'** key value pair." -msgstr "" -"Beralih dari ancaman ke keterpaparan akan membersihkan beberapa bagian dari " -"GUI karena pada umumnya sebagian besar kata kunci tergantung pada " -"kategorinya. Secara khusus, pemilihan **'ancaman'** akan menghapus pasangan " -"kunci/nilai **'datatype'**, dan pemilihan **'keterpaparan'** akan menghapus " -"pasangan kunci/nilai **'unit'** ." - -# 57adec2ed9c24d7cb6fef4361398bc44 -#: ../../source/user-docs/application-help/keywords_editor.rst:80 -msgid "Invoking the keywords editor" -msgstr "Membuka editor kata kunci (keyword editor)" - -# 5eb23cb535bc4c2c8e66353131725ad9 -#: ../../source/user-docs/application-help/keywords_editor.rst:81 -msgid "" -"The keywords editor can be invoked by selecting any layer in the QGIS Layers " -"panel and then going to :menuselection:`Plugins ‣ InaSAFE ‣ Keyword Editor`. " -"Alternatively, you may click the :guilabel:`Keywords Editor` button on the " -"toolbar:" -msgstr "" -"Editor kata kunci dapat dipanggil dengan memilih suatu *layer* pada panel " -"daftar *layer* QGIS dan kemudian menggunakan :menuselection:`Plugins --> " -"InaSAFE --> Editor Kata Kunci InaSAFE`. Atau, Anda juga dapat mengklik :" -"guilabel:`Editor Kata Kunci InaSAFE` pada *toolbar*: " - -# f6590829120f41abb859a1ba200262f8 -#: ../../source/user-docs/application-help/keywords_editor.rst:92 -#, fuzzy -msgid "Keyword editor icon" -msgstr "Editor Kata kunci (keyword editor)" - -# b40017db2496412a858f686744211f41 -#: ../../source/user-docs/application-help/keywords_editor.rst:92 -msgid "*InaSAFE toolbar*" -msgstr "*Toolbar InaSAFE*" - -# 5729904aa73f4864bb0ecc2ef4b3aaa0 -#: ../../source/user-docs/application-help/keywords_editor.rst:94 -msgid "" -"If you have not selected a layer, the keyword editor icon in the toolbar and " -"menus will be disabled and appear greyed out." -msgstr "" -"Jika Anda belum memilih salah satu *layer*, ikon editor kata kunci pada " -"*toolbar* dan menu akan nampak tidak aktif dan bewarna abu-abu." - -# 057ea1b290174290a54970cfe45dec5c -#: ../../source/user-docs/application-help/keywords_editor.rst:99 -msgid "Saving your edits" -msgstr "Menyimpan hasil editan Anda" - -# 7d51fcc44ff64a42bc797a618e2f078f -#: ../../source/user-docs/application-help/keywords_editor.rst:101 -msgid "" -"To save your keyword edits, click the :guilabel:`OK` button and the :file:`*." -"keywords` file will be written to disk." -msgstr "" -"Untuk menyimpan perubahan keyword Anda, klik tombol :guilabel:`OK`, maka " -"*file* :file:`*.keywords` akan ditulis dalam *disk*." - -# 76556714c8bc43d18d857ed8dc5f77a9 -#: ../../source/user-docs/application-help/keywords_editor.rst:105 -msgid "Cancelling your edits" -msgstr "Membatalkan hasil editan Anda" - -# 7202fb13de72467085687d5d65bbeb97 -#: ../../source/user-docs/application-help/keywords_editor.rst:107 -msgid "" -"Cancel your changes at any time by clicking the :guilabel:`Cancel` button. " -"No changes will be written to disk and the :file:`*.keywords` file will " -"remain in its original state." -msgstr "" -"Anda dapat membatalkan perubahan Anda kapan saja dengan mengklik tombol :" -"guilabel:`Cancel`. Tidak ada perubahan yang akan ditulis dalam *disk* dan " -"*file* :file:`*.keywords` akan tetap dalam keadaan semula." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/keywords_wizard.po b/docs/i18n/id/LC_MESSAGES/user-docs/application-help/keywords_wizard.po deleted file mode 100644 index 1bf147be..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/keywords_wizard.po +++ /dev/null @@ -1,231 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-06-11 09:37+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# ecd59a8b9742477ea9231ad9481370f5 -#: ../../source/user-docs/application-help/keywords_wizard.rst:4 -msgid "Keywords Wizard" -msgstr "Wizard Kata Kunci " - -# 4fec90d86a9b4f04957076317452d4d8 -#: ../../source/user-docs/application-help/keywords_wizard.rst:6 -msgid "" -"This wizard will lead you through the process of defining keywords for an " -"exposure, hazard or aggregation layer. Unlike the :ref:`keywords editor " -"`, the keywords wizard understands the constraints and " -"rules that determine which keywords can be applied to any given layer. For " -"example, if you have a raster layer, the keywords wizard will use impact " -"function metadata to prevent you from declaring that the layer contains road " -"exposure data since by definition, such data must be vector line data." -msgstr "" -"Wizard ini akan mengarahkan Anda melalui proses mendefinisikan kata kunci " -"untuk *layer* keterpaparan, ancaman atau agregasi. Berbeda dengan :ref:" -"`penyunting kata kunci `, kata kunci wizard 'memahami' " -"kendala dan aturan yang menentukan kata kunci dapat diterapkan untuk setiap " -"*layer* yang diberikan. Misalnya, jika Anda memiliki *layer* raster, kata " -"kunci wizard akan menggunakan metadata fungsi dampak untuk mencegah Anda " -"menyatakan bahwa *layer* berisi data keterpaparan jalan sejak didefinisikan, " -"data tersebut seharusnya data vektor garis." - -# 5829bd8233e440ce805e386f704fd5e1 -#: ../../source/user-docs/application-help/keywords_wizard.rst:14 -msgid "" -"Each impact function includes metadata that defines what rules should apply " -"to data that will be used with that impact function. At startup, the wizard " -"scans this metadata and uses it to define its rules." -msgstr "" -"Setiap fungsi dampak termasuk metadata yang mendefinisikan aturan apa yang " -"harus diterapkan pada data yang akan digunakan dengan fungsi dampak. Pada " -"startup, wizard memindai metadata ini dan menggunakannya untuk menentukan " -"aturannya." - -# 2f813425e9404f86999f521100d105b2 -#: ../../source/user-docs/application-help/keywords_wizard.rst:18 -msgid "" -"For more general discussion on the keywords system used by |project_name|, " -"see the :ref:`keywords system ` documentation." -msgstr "" -"Untuk diskusi yang lebih umum pada sistem kata kunci yang digunakan oleh " -"InaSAFE, silakan lihat dokumentasi :ref:`sistem kata kunci " -"`." - -# 41aedac78d45401d99a30c4ee6c6aa89 -#: ../../source/user-docs/application-help/keywords_wizard.rst:22 -msgid "Invoking the wizard" -msgstr "Membuka wizard" - -# 56ec97571ac64b0ea29bb5e74077b28d -#: ../../source/user-docs/application-help/keywords_wizard.rst:24 -msgid "" -"You can run the wizard by clicking on the icon in the InaSAFE toolbar that " -"looks like this:" -msgstr "" -"Anda dapat menjalankan wizard dengan mengklik icon di toolbar InaSAFE yang " -"terlihat seperti ini:" - -# ecd59a8b9742477ea9231ad9481370f5 -#: ../../source/user-docs/application-help/keywords_wizard.rst:-1 -#, fuzzy -msgid "InaSAFE Keywords Wizard Icon" -msgstr "Wizard Kata Kunci " - -# 4fe8918b247e4374b3db71bcfb026a9e -#: ../../source/user-docs/application-help/keywords_wizard.rst:32 -msgid "" -"You should have at least one layer loaded and active in QGIS before " -"attempting to launch the keywords wizard." -msgstr "" -"Anda harus memiliki setidaknya satu layer yang dimuat dan aktif dalam QGIS " -"sebelum mencoba untuk menjalankan kata kunci wizard." - -# b1d571df3b7145069d7748688b3f3d27 -#: ../../source/user-docs/application-help/keywords_wizard.rst:35 -msgid "Once loaded the wizard will appear:" -msgstr "Setelah dimuat wizard akan muncul:" - -# 7c20ab8735ea47d0ba1a1e7bc7f5a77e -#: ../../source/user-docs/application-help/keywords_wizard.rst:42 -msgid "" -"If the layer already has keywords assigned to it, the wizard will default to " -"existing keywords on each step (where applicable)." -msgstr "" -"Jika layer sudah memiliki kata kunci yang didefinisikan untuk layer " -"tersebut, wizard secara default akan mengacu ke kata kunci yang ada pada " -"setiap langkah (jika ada)." - -# 5326953c26e745748a5cd3c42dbdb629 -#: ../../source/user-docs/application-help/keywords_wizard.rst:46 -msgid "Cancelling the wizard" -msgstr "Membatalkan wizard" - -# 9bfce1724e064e78a3c3d7b7bf36f8df -#: ../../source/user-docs/application-help/keywords_wizard.rst:48 -msgid "" -"The wizard can be cancelled at any time by clicking the :guilabel:`Cancel` " -"button at the bottom of the wizard. No changes will be written to the " -"keywords file if the wizard is cancelled." -msgstr "" -"Wizard dapat dibatalkan setiap saat dengan menekan tombol :guilabel:`Batal` " -"di bagian bawah wizard. Tidak ada perubahan akan ditulis pada *file* kata " -"kunci jika wizard dibatalkan." - -# 4a59b606a94c4bfa971b8faf3ccf31bf -#: ../../source/user-docs/application-help/keywords_wizard.rst:54 -msgid "Using the wizard" -msgstr "Menggunakan wizard" - -# ad8f09b71e5745d6bd2f941731b57d8a -#: ../../source/user-docs/application-help/keywords_wizard.rst:56 -msgid "" -"To use the wizard, simply follow the prompts presented on each page of the " -"wizard. There are three standard forms of user input expected:" -msgstr "" -"Untuk menggunakan wizard, caranya sederhana dengan mengikuti petunjuk yang " -"ditampilkan pada setiap halaman wizard. Ada tiga bentuk standar dari *input* " -"pengguna yang diharapkan dalam wizard:" - -# 5ff7c18328704514b29376d95dd7e2d9 -#: ../../source/user-docs/application-help/keywords_wizard.rst:59 -msgid "" -"1.) **List selection** - In this case options are provided in a list. " -"Clicking on an item will usually display additional helpful text in the " -"information area of the dialog." -msgstr "" -"1.) **Daftar pilihan** - Dalam hal ini pilihan tersedia dalam daftar. " -"Mengklik pada item biasanya akan menampilkan teks tambahan membantu dalam " -"bidang informasi dari dialog." - -#: ../../source/user-docs/application-help/keywords_wizard.rst:-1 -msgid "InaSAFE Keywords Wizard List Selection" -msgstr "" - -# 61f87638da13457b86938934caeba96b -#: ../../source/user-docs/application-help/keywords_wizard.rst:69 -msgid "" -"2) **Field selection** - Whilst it appears to look like the list selection " -"above, in this case the list is automatically generated from the available " -"attributes of the layer." -msgstr "" -"2) **Temukan Field** - Sementara tampaknya terlihat seperti daftar pilihan " -"di atas, dalam hal ini daftar secara otomatis dihasilkan dari atribut yang " -"tersedia dari *layer*." - -#: ../../source/user-docs/application-help/keywords_wizard.rst:-1 -msgid "InaSAFE Keywords Wizard Attribute List Selection" -msgstr "" - -# 54d39d4d8cf047578fa00a5055ff672e -#: ../../source/user-docs/application-help/keywords_wizard.rst:78 -msgid "" -"3) **Free form text** - In some cases you may be prompted to enter free form " -"text in order to define some additional metadata." -msgstr "" -"3) **Bentuk teks bebas** - Dalam beberapa kasus, Anda mungkin akan diminta " -"untuk memasukkan bentuk teks bebas dalam rangka untuk menentukan beberapa " -"metadata tambahan." - -#: ../../source/user-docs/application-help/keywords_wizard.rst:-1 -msgid "InaSAFE Keywords Wizard Free Form Text" -msgstr "" - -# 8168214f5e8448828b2bf6a7aa9cf64a -#: ../../source/user-docs/application-help/keywords_wizard.rst:86 -msgid "" -"4) **Drag and drop list** - In this context the user should make concept " -"mappings by dragging items from the left list (represented by unique field " -"values from the attributes table) onto concepts in the right hand tree. For " -"example, below we see the user mapping all polygons that have their " -"'floodprone' field value as 'YES' or 'yes' onto the 'wet' concept in the " -"tree view on the right." -msgstr "" -"4) **Daftar geser dan taruh**. Dalam konteks ini pengguna harus membuat " -"konsep pemetaan dengan menggeser item dari daftar kiri (diwakili oleh *field " -"value* yang unik dari tabel atribut) ke konsep di sebelah kanan. Sebagai " -"contoh, di bawah ini kita lihat pengguna memetakan semua poligon yang " -"memiliki 'floodprone' *field value* sebagai 'YA' atau 'ya' ke konsep 'basah' " -"dalam tampilan struktur pohon di sebelah kanan." - -# 9865d0f1b3a64c2aa30db1256459913c -#: ../../source/user-docs/application-help/keywords_wizard.rst:99 -msgid "Completing the wizard" -msgstr "Menyelesaikan wizard" - -# a29504ca45124877acf975d0b437c265 -#: ../../source/user-docs/application-help/keywords_wizard.rst:101 -msgid "" -"On completion of the keywords wizard, a :file:`.keywords` file will be " -"written to disk and the keywords for the layer will be displayed in the dock " -"area when that layer is active in QGIS." -msgstr "" -"Setelah menyelesaikan kata kunci wizard, :file:`.keywords` akan ditulis ke " -"disk dan kata kunci untuk layer akan ditampilkan di area dock ketika layer " -"tersebut aktif di QGIS." - -#: ../../source/user-docs/application-help/keywords_wizard.rst:-1 -msgid "InaSAFE Keywords Listing" -msgstr "" - -# 4c7cf9148531496fa608d1f862da437d -#: ../../source/user-docs/application-help/keywords_wizard.rst:111 -msgid "" -"The keywords wizard generates keywords that are not compatible with versions " -"of |project_name| older than 2.1." -msgstr "" -"Kata kunci wizard akan menghasilkan kata kunci dengan catatan kompatibel " -"dengan InaSAFE versi yang lebih lama dari 2.1." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/minimum_needs.po b/docs/i18n/id/LC_MESSAGES/user-docs/application-help/minimum_needs.po deleted file mode 100644 index 717458fe..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/minimum_needs.po +++ /dev/null @@ -1,137 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# adityo dwijananto , 2013 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:23+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# a00ddaa0ea9348f9a95164b6fdd82ffa -# 7b9c46b711da47b89fc53e4ff6f5fef0 -#: ../../source/user-docs/application-help/minimum_needs.rst:4 -#: ../../source/user-docs/application-help/minimum_needs.rst:35 -msgid "Minimum Needs Tool" -msgstr "Alat (tool) kebutuhan minimum" - -# 94b568165fac4bd5b5d6502d67e0d45e -#: ../../source/user-docs/application-help/minimum_needs.rst:6 -msgid "" -"The purpose of the minimum needs tool is to provide a quick method of " -"calculating support requirements (in terms of food, water, etc.) for " -"displaced persons." -msgstr "" -"Tujuan dibuatnya *tool* kebutuhan minimum adalah untuk memberikan metode " -"yang cepat untuk menghitung kebutuhan pendukung (dalam hal ini seperti " -"makanan, air, dll) untuk para pengungsi. " - -# e5796e4602ea497c82ef965e8059cd2f -#: ../../source/user-docs/application-help/minimum_needs.rst:10 -msgid "" -"The minimum needs are based on 'Perka 7/2008' according to the following " -"default formulas:" -msgstr "" -"Kebutuhan minimum dibuat berdasarkan 'Perka 7/2008' dengan rumus berikut:" - -# 54321812a59645f69cb016d4b1f80e09 -#: ../../source/user-docs/application-help/minimum_needs.rst:13 -msgid "400g rice per person per day (2.8kg per week)" -msgstr "400g nasi per orang per hari (2.8kg per minggu)" - -# 4013047e8e9941d2972ee5a07743232d -#: ../../source/user-docs/application-help/minimum_needs.rst:14 -msgid "2.5l drinking water per person per day (17.5l per week)" -msgstr "2.5l air minum per orang per hari (17.5l per minggu)" - -# 1560750705bd4b4eaf881b899b1aeec7 -#: ../../source/user-docs/application-help/minimum_needs.rst:15 -msgid "15l clean water per person per day (105l per week)" -msgstr "15l air bersih per orang per hari (105l per minggu)" - -# 827c7aea7fb24eafb207370186407676 -#: ../../source/user-docs/application-help/minimum_needs.rst:16 -msgid "" -"one family kit per family per week (assumes five people per family which is " -"not specified in perka)" -msgstr "" -"1 perlengkapan keluarga untuk setiap 1 keluarga per minggu (diasumsikan satu " -"keluarga terdiri dari 5 orang, namun hal ini tidak ditentukan dalam perka)" - -# 24c223dc951542569f1b1ef35811ce8a -#: ../../source/user-docs/application-help/minimum_needs.rst:18 -msgid "20 people per toilet" -msgstr "20 orang per toilet" - -# a29996563c034cb5a6a11db13a13666c -#: ../../source/user-docs/application-help/minimum_needs.rst:20 -msgid "" -"In the current version of |project_name|, these guidelines cannot be " -"adjusted by the user. In a future version we will provide this facility." -msgstr "" -"Dalalm versi |project_name| sekarang, panduan ini tidak dapat disesuaikan " -"oleh pengguna. Untuk versi selanjutnya kami akan menyediakan fasilitas " -"tersebut." - -# 9ff0850015654b74bc7b5ce4c983d06c -#: ../../source/user-docs/application-help/minimum_needs.rst:23 -msgid "" -"In order to use this tool, you must first load a polygon layer in QGIS that " -"contains areas (e.g. administrative areas) with an attribute that represents " -"the number of displaced people in each area." -msgstr "" -"Untuk menggunakan alat ini, pertama Anda harus memuat *layer* poligon pada " -"QGIS yang mana *layer* tersebut memiliki area (misalnya batas administrasi) " -"dengan sebuah atribut yang merepresentasikan jumlah pengungsi di setiap area." - -# 524d9a0c88b540e396a9d446e40abe62 -#: ../../source/user-docs/application-help/minimum_needs.rst:27 -msgid "" -"When the layer is loaded, click on the :guilabel:`Minimum Needs` tool in the " -"toolbar:" -msgstr "" -"Ketika layer sudah dimuat, klik pada alat :guilabel:`Kebutuhan Minimum` pada " -"toolbar:" - -# 89712312486a45908b40ce991de22c6b -#: ../../source/user-docs/application-help/minimum_needs.rst:35 -msgid "*Minimum Needs Tool*" -msgstr "*Tool Kebutuhan Minimum InaSAFE*" - -# 24ca239e05b54ceab7511481d2510a83 -#: ../../source/user-docs/application-help/minimum_needs.rst:37 -msgid "" -"In the dialog that appears, choose the QGIS layer that contains the " -"administrative boundaries and then select the attribute in that layer that " -"represents the number of displaced people." -msgstr "" -"Pada dialog yang muncul, pilih layer QGIS yang memiliki batas administrasi " -"dan lalu pilih atribut pada layer yang memiliki jumlah pengungsi." - -# 5af13494b28e45e595f191b6802b8392 -#: ../../source/user-docs/application-help/minimum_needs.rst:41 -msgid "When you are ready, click the :guilabel:`OK` button in the dialog." -msgstr "Ketika Anda siap, klik tombol :guilabel:`OK` pada kotak dialog." - -# 8169c494ebb54fa093fde84a0db26feb -#: ../../source/user-docs/application-help/minimum_needs.rst:43 -msgid "" -"After the analysis is completed, new keywords will be associated with the " -"layer that indicate the needs according to the formulas defined above." -msgstr "" -"Setelah analisis selesai, kata kunci baru akan terkait dengan layer yang " -"mengindikasikan kebutuhan sesuai dengan formula yang didefinisikan di atas." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/needs_manager.po b/docs/i18n/id/LC_MESSAGES/user-docs/application-help/needs_manager.po deleted file mode 100644 index 8cfa2e4f..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/needs_manager.po +++ /dev/null @@ -1,366 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.2\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# f932bb74212f447484674f378ca246bc -# 430009fc2d174df487ce0371b5bec5f5 -#: ../../source/user-docs/application-help/needs_manager.rst:4 -#: ../../source/user-docs/application-help/needs_manager.rst:15 -msgid "Minimum Needs Manager" -msgstr "Pengelola Kebutuhan Minimum" - -# 7dee6df492224f2eaa64ae7321ec9158 -#: ../../source/user-docs/application-help/needs_manager.rst:6 -msgid "" -"As of version 2.2, the minimum needs system have received a major overhaul. " -"The minimum needs manager is a new tool that allows you to define 'profiles' " -"of minimum needs to make them relevant to your country or region." -msgstr "" -"Dimulai pada versi 2.2, sistem kebutuhan minimum telah mengalami beberapa " -"peningkatan. Pengaturan kebutuhan minimum adalah alat baru yang " -"memperbolehkan Anda mengatur 'profil' dari masing kebutuhan minimum yang " -"relevan dengan negara atau wilayah Anda." - -# 20ad7496209146d1aa37e53015f7dae1 -#: ../../source/user-docs/application-help/needs_manager.rst:17 -msgid "We ship |project_name| with standard profiles for:" -msgstr "Kita menyajikan |project_name| dengan profil bawaan:" - -# d926d1f37aa8486faa46d63cc5dea604 -#: ../../source/user-docs/application-help/needs_manager.rst:19 -msgid "Indonesia - based on 'Perka 7/2008'" -msgstr "Indonesia - mengacu pada 'Perka 7/2008'" - -# dfbc9870708a4d1faace9d10a01ac629 -#: ../../source/user-docs/application-help/needs_manager.rst:20 -msgid "" -"Philippines (based on 'Guidelines on Evacuation Center Coordination and " -"Management Joint Memorandom Circular No. Series of 2013')" -msgstr "" -"Filipina (berdasarkan pada *'Guidelines on Evacuation Center Coordination " -"and Management Joint Memorandom Circular No. Series of 2013'*)" - -# dc30d2a762b34b9dbabd18a4674e9412 -#: ../../source/user-docs/application-help/needs_manager.rst:23 -msgid "There are two key concepts to be aware of in the minimum needs manager:" -msgstr "" -"Terdapat dua konsep penting yang harus diperhatikan di pengaturan kebutuhan " -"minimum:" - -# 19d3c68b4d3c419dadfd1b6f380b51f3 -#: ../../source/user-docs/application-help/needs_manager.rst:25 -msgid "profiles" -msgstr "profil" - -# dd81280ca2f14324b9cee4e0d3b43533 -#: ../../source/user-docs/application-help/needs_manager.rst:26 -msgid "resources" -msgstr "sumberdaya" - -# b01d6d2b402242fbb43144cae723c1f1 -#: ../../source/user-docs/application-help/needs_manager.rst:29 -msgid "Minimum needs profiles" -msgstr "Profil kebutuhan minimum" - -# 3b5d2d75966b4f1c84d8b6255beb0897 -#: ../../source/user-docs/application-help/needs_manager.rst:31 -msgid "" -"A profile is a collection of resources that define the minimum needs for a " -"particular country or region. Typically a profile should be based on a " -"regional, national or international standard. The actual definition of which " -"resources are needed in a given profile is dependent on the local conditions " -"and customs for the area where the contingency plan is being devised." -msgstr "" -"Profil merupakan kumpulan dari sumberdaya yang menentukan kebutuhan minimum " -"untuk negara atau daerah tersebut. Tipikal sebuah profil harus berdasarkan " -"pada standar daerah, nasional atau internasional. Definisi yang ada terkait " -"dengan sumberdaya apa saja yang dibutuhkan pada setiap profil tergantung " -"kepada kondisi lokal dan berbeda-beda untuk setiap area dimana rencana " -"kontingensi sedang dirancang." - -# 2406db4ce0124972a867fdb88bc95a83 -#: ../../source/user-docs/application-help/needs_manager.rst:38 -msgid "" -"For example in the middle east, rice is a staple food whereas in South " -"Africa, maize meal is a staple food and thus the contingency planning should " -"take these localised needs into account." -msgstr "" -"Sebagai contoh di timur tengah, beras adalah makanan pokok dimana di Afrika " -"Selatan, makanan jagung adalah makanan pokok dan sehingga didalam rencana " -"kontingensi harus memasukkan kebutuhan lokal ini kedalam profil." - -# 0fbb637040644db290065ceb6df64b21 -#: ../../source/user-docs/application-help/needs_manager.rst:43 -msgid "Minimum needs resources" -msgstr "Sumberdaya kebutuhan minimum" - -# 5cb8b065d5224fbd9869893ddeed194b -#: ../../source/user-docs/application-help/needs_manager.rst:45 -msgid "" -"Each item in a minimum needs **profile** is a resource. Each resource is " -"described as a simple natural language sentance e.g.:" -msgstr "" -"Setiap item di **profil** kebutuhan minimum membutuhkan sebuah sumberdaya. " -"Setiap sumberdaya dideskripsikan dalam kalimat sederhanya, seperti:" - -# 84c01721c089468bac36617ac2afc9c4 -#: ../../source/user-docs/application-help/needs_manager.rst:48 -msgid "\"Each person should be provided with 2.8 kilograms of Rice weekly.\"" -msgstr "\"Setiap orang membutuhkan 2,8 kilogram beras setiap minggunya.\"" - -# 8814471ed7514b4cadd75ef7fd09223e -#: ../../source/user-docs/application-help/needs_manager.rst:50 -msgid "" -"By clicking on a resource entry in the profile window, and then clicking " -"the :guilabel:`black pencil` icon you will be able to edit the resource " -"using the resource editor. Alternatively you can create a new resource for a " -"profile by clicking on the black :guilabel:`+` icon in the profile manager. " -"You can also remove any resource from a profile using the :guilabel:`-` icon " -"in the profile manager." -msgstr "" -"Dengan meng-klik pada masukkan sumberdaya di jendela profil, dan ketika " -"mengklik simbol :guilabel:`pensil hitam` anda akan bisa mengubah sumberdaya " -"yang ada menggunakan editor sumberdaya. Alternatifnya Anda bisa membuat " -"sumberdaya baru dengan mengklik profil pada simbol :guilabel:`+` di " -"pengaturan profil. Anda juga bisa menghapus sumberdaya lain dalam profil " -"dengan menggunakan simbol :guilabel:`-` di pengaturan profil." - -# 53fc0dccf11c4a1781638c48afbd831c -#: ../../source/user-docs/application-help/needs_manager.rst:61 -#, fuzzy -msgid "Resource Editor" -msgstr "Editor sumberdaya" - -# 53fc0dccf11c4a1781638c48afbd831c -#: ../../source/user-docs/application-help/needs_manager.rst:61 -msgid "Resource editor" -msgstr "Editor sumberdaya" - -# a3bdd164dc294d9d8473760e69615527 -#: ../../source/user-docs/application-help/needs_manager.rst:63 -msgid "" -"When switching to edit or add resource mode, the minimum needs manager will " -"be updated to look like the screenshot above. Each resource is described in " -"terms of:" -msgstr "" -"Ketika beralih ke mode mengubah dan menambah, pengaturan kebutuhan minimum " -"akan berubah menjadi seperti yang ada pada cuplikan gambar diatas. Setiap " -"sumberdaya dijelaskan dalam ketentuan:" - -# b08789276c894e3dbb35a8b33f448061 -#: ../../source/user-docs/application-help/needs_manager.rst:67 -msgid "resource name e.g. Rice" -msgstr "nama kebutuhan (contoh Beras)" - -# 2bc8ab99d26c4660a91165eb3f1c848b -#: ../../source/user-docs/application-help/needs_manager.rst:68 -msgid "a description of the resource e.g. Basic food" -msgstr "deskripsi dari kebutuhan tersebut, contoh makanan pokok" - -# 55ab9e87ac07422cb3404393fa489c0e -#: ../../source/user-docs/application-help/needs_manager.rst:69 -msgid "unit in which the resource is provided e.g. kilogram" -msgstr "satuan unit terkait dengan kebutuhan tersebut, contoh kilogram" - -# 2a9c3cdcdd9644d8a3b6e62738f9d324 -#: ../../source/user-docs/application-help/needs_manager.rst:70 -msgid "pluralised form of the units e.g. kilograms" -msgstr "sebutan jamak dari unit tersebut, contoh kilograms" - -# c0a533543bf14051a211952be2b074c9 -#: ../../source/user-docs/application-help/needs_manager.rst:71 -msgid "abbreviation for the unit e.g. kg" -msgstr "singkatan dari unit tersebut, contoh kg" - -# 87c31264bdce4b5ab89e4fa1ea56f8e6 -#: ../../source/user-docs/application-help/needs_manager.rst:72 -msgid "" -"the default allocation for the resource e.g. 2.8. This number can be " -"overridden on a per-analysis basis." -msgstr "" -"alokasi bawaan untuk kebutuhan tersebut, contoh 2.8. Angka ini bisa diubah " -"nantinya." - -# fe4d50d8149d4011ab8002fbeb90c520 -#: ../../source/user-docs/application-help/needs_manager.rst:74 -msgid "" -"minimum allowed which is used to prevent allocating e.g. no drinking water " -"to displaced persons" -msgstr "" -"minimum diperbolehkan yang digunakan untuk mencegah mengalokasikan misalnya " -"tidak ada air minum untuk pengungsi" - -# c44efd5593864e59961a26a209a3f6da -#: ../../source/user-docs/application-help/needs_manager.rst:76 -msgid "" -"maximum allowed which is used to set a sensible upper limit for the resource" -msgstr "" -"maksimum yang diizinkan yang digunakan untuk menetapkan batas atas yang " -"masuk akal untuk sumber daya" - -# 9ef705edead54149b86df74f423db12f -#: ../../source/user-docs/application-help/needs_manager.rst:77 -msgid "" -"a readable sentence which is used to compile the sentence describing the " -"resource in reports." -msgstr "" -"kalimat dibaca yang digunakan untuk menyusun kalimat yang menjelaskan sumber " -"daya dalam laporan." - -# 8f79244176984da3976a454a67bedbad -#: ../../source/user-docs/application-help/needs_manager.rst:80 -msgid "" -"These parameters are probably all fairly self explanatory, but the readable " -"sentence probably needs further detail. The sentence is compiled using a " -"simple keyword token replacement system. The following tokens can be used:" -msgstr "" -"Parameter ini mungkin semua cukup bisa jelas, tapi kalimat yang dibaca " -"mungkin membutuhkan lebih detail. Kalimat itu dikompilasi menggunakan sistem " -"penggantian tanda kata kunci sederhana. Token berikut dapat digunakan:" - -# b3f82f3650614b259ec369c53f2d01a1 -#: ../../source/user-docs/application-help/needs_manager.rst:84 -msgid "``{{ Default }}``" -msgstr "``{{ Default }}``" - -# ce346bd04ac94d429d30bf24a6e8f003 -#: ../../source/user-docs/application-help/needs_manager.rst:85 -msgid "``{{ Unit }}``" -msgstr "``{{ Unit }}``" - -# 93966076ccbd4cbc85c7deb2f8f0814b -#: ../../source/user-docs/application-help/needs_manager.rst:86 -msgid "``{{ Units }}``" -msgstr "``{{ Units }}``" - -# 526c238f2c274d99b091e9efef0f026e -#: ../../source/user-docs/application-help/needs_manager.rst:87 -msgid "``{{ Unit abbreviation }}``" -msgstr "``{{ Unit abbreviation }}``" - -# 1031afc4ea3048cea96994dcfcc51041 -#: ../../source/user-docs/application-help/needs_manager.rst:88 -msgid "``{{ Resource name }}``" -msgstr "``{{ Resource name }}``" - -# abea995d893b4debb70ec3230f85f26e -#: ../../source/user-docs/application-help/needs_manager.rst:89 -msgid "``{{ Frequency }}``" -msgstr "``{{ Frequency }}``" - -# 24d976575cba4933b20919cba1aed4a5 -#: ../../source/user-docs/application-help/needs_manager.rst:90 -msgid "``{{ Minimum allowed }}``" -msgstr "``{{ Minimum allowed }}``" - -# 33e811ea39b54d5f8bdc8e80c613ef4e -#: ../../source/user-docs/application-help/needs_manager.rst:91 -msgid "``{{ Maximum allowed }}``" -msgstr "``{{ Maximum allowed }}``" - -# de3081d7fa3d4f83acd576a13107ef5e -#: ../../source/user-docs/application-help/needs_manager.rst:93 -msgid "" -"When the token is placed in the sentence it will be replaced with the actual " -"value at report generation time. This contrived example shows a tokenised " -"sentence that includes all possible keywords::" -msgstr "" -"Ketika token sudah diletakkan didalam kalimat, ini akan digantikan dengan " -"nilai sebenarnya pada waktu membuat report. Contoh dibawah ini menunjukkan " -"kaliman dengan token yang disertakan dengan kata kunci yang memungkinkan::" - -# 984a4331a01c44cf9d2d67beb65cc293 -#: ../../source/user-docs/application-help/needs_manager.rst:102 -msgid "Would generate a human readable sentence like this::" -msgstr "Akan membentuk kalimat seperti ini::" - -# d82ae2ce8ba2429998b46915fc16a16f -#: ../../source/user-docs/application-help/needs_manager.rst:109 -msgid "" -"Once you have populated the resource elements, click the :guilabel:`Save " -"resource` button to return to the profile view. You will see the new " -"resource added in the profile's resource list." -msgstr "" -"Keetika anda sudah memasukkan semua elemen kebutuhan, klik tombol :guilabel:" -"`Save resource` untuk kembali ke tampilan daftar profil. Anda akan melihat " -"kebutuhan baru yang ditambahkan di daftar profil kebutuhan minimum." - -# 6f5dbdb6fbd149069026d1ebc14dac5e -#: ../../source/user-docs/application-help/needs_manager.rst:115 -msgid "Managing profiles" -msgstr "Mengatur profil" - -# e88116239d64498eb29d0a170150a904 -#: ../../source/user-docs/application-help/needs_manager.rst:117 -msgid "" -"In addition to the profiles that come as standard with |project_name|, you " -"can create new ones, either from scratch, or based on an existing one (which " -"you can then modify)." -msgstr "" -"Sebagai tambahan pada profil yang muncul sebagai standar di |project_name|, " -"Anda dapat membuat profil baru, baik itu memulai dari awal, ataupun " -"berdasarkan profil kebutuhan minimum yang sudah ada (dimana anda kemudian " -"dapat merubahnya)." - -# 0eb3fe3652904eaeaae9a52ddc67451e -#: ../../source/user-docs/application-help/needs_manager.rst:121 -msgid "" -"Use the :guilabel:`New` button to create new profile. When prompted, give " -"your profile a name e.g. :kbd:`JakartaProfile`." -msgstr "" -"Gunakan tombol :guilabel:`New` untuk membuat profil baru. Ketika ditanyakan, " -"berikan nama untuk profil anda, contohnya :kbd:`JakartaProfile`." - -# b3e7e96020504feaa01e479e569bf0a4 -#: ../../source/user-docs/application-help/needs_manager.rst:124 -msgid "" -"**Note:** The profile must be saved in your home directory under :file:`." -"qgis2/minimum_needs` in order for |project_name| to successfully detect it." -msgstr "" -"**Note:** Profil ini harus disimpan didalam direktori berikut ini :file:`." -"qgis2/minimum_needs` agar |project_name| bisa mendeteksi profil ini." - -# 044d6a6b7c0a457c80732dbb1e2d0178 -#: ../../source/user-docs/application-help/needs_manager.rst:127 -msgid "" -"An alternative way to create a new profile is to use the :guilabel:`Save as` " -"to clone an existing profile. The clone profile can then be edited according " -"to your specific needs." -msgstr "" -"Alternatif lainnya untuk membuat profil baru adalah dengan menggunakan :" -"guilabel:`Save as` untuk menduplikasi profil yang sudah ada. Profil hasil " -"duplikasi inni kemudian bisa diubah sesuai dengan kebutuhakn anda." - -# 44adc07ef71949cab1edbc4eee3e55c7 -#: ../../source/user-docs/application-help/needs_manager.rst:131 -msgid "Active profile" -msgstr "Profil aktif" - -# 8ba954dd2d994be5a71e17e9508f7d63 -#: ../../source/user-docs/application-help/needs_manager.rst:133 -msgid "" -"It is important to note, that which ever profile you select in the :guilabel:" -"`Profile` pick list, will be considered **active** and will be used as the " -"basis for all minimum needs analysis." -msgstr "" -"Sangatlah penting untuk mengetahui hal ini, untuk setiap profil yang anda " -"pilih didalam daftar pilihan :guilabel:`Profile`, akan dianggap sebagai " -"**aktif** dan akan digunakan sebagai basis untuk semua analisis kebutuhan " -"minimum." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/openstreetmap_downloader.po b/docs/i18n/id/LC_MESSAGES/user-docs/application-help/openstreetmap_downloader.po deleted file mode 100644 index 9a3036f4..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/openstreetmap_downloader.po +++ /dev/null @@ -1,386 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# adityo dwijananto , 2013 -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# mahardika fadmastuti , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:22+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 7ec6e0bc73124e7da232a06942b83f4c -# fa39b4f3c41d4d0b8f811323f26df839 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:4 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:14 -msgid "OpenStreetMap Downloader" -msgstr "Pengunduh OpenStreetMap" - -# 355e7ec4fe4442a5921e8ebd0e8e4255 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:6 -msgid "" -"This tool fetches building ('structure') and highway ('road') data from the " -"OpenStreetMap project for you." -msgstr "" -"Tool ini akan membantu Anda memperoleh data ('struktur') bangunan dan " -"jaringan jalan ('jalan') dari projek OpenStreetMap untuk Anda." - -# 05865e840b2142eea5aafa222e3b2a6c -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:14 -msgid "*OpenStreetMap Downloader*" -msgstr "*Alat Download OpenStreetMap*" - -# 63cae60ffee444da8955239e5fb9500a -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:16 -msgid "" -"The tool requires an internet connection as it fetches the data via a web " -"service running on `Linfiniti's OSM Reporter `_ " -"website." -msgstr "" -"Tool ini membutuhkan koneksi internet karena tool ini mengambil data dari " -"layanan situs `Laporan OSM Linfiniti `_" - -# fd9a4cef33b3464b804a7919596e9bab -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:19 -msgid "" -"The data, once downloaded, becomes available as a shapefile. A style file is " -"automatically created so that it symbolises nicely in QGIS. In addition, the " -"correct keyword metadata is created for the downloaded dataset so that it " -"can be used directly in |project_name| impact scenario analyses." -msgstr "" -"Data, setelah didownload akan tersedia untuk Anda sebagai sebuah shapefile. " -"Sebuah *style* file secara otomatis dibuat sehingga data bisa disimbolkan " -"dengan baik dalam QGIS. Selain itu, metadata kata kunci yang benar dibuat " -"untuk dataset didownload sehingga dapat digunakan secara langsung dalam " -"skenario analisis dampak InaSAFE." - -# 739758e4830a4b1fa1994814b8d0218a -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:24 -msgid "" -"The downloader service has limitations as to the size of datasets that can " -"be retrieved. As such you may experience issues trying to fetch large " -"amounts of data, such as country-wide building footprint data. Generally " -"datasets at a city level and below should work well." -msgstr "" -"Layanan *download* ini memiliki keterbatasan terhadap besarnya dataset yang " -"dapat diterima. Kemungkinan Anda akan mendapati isu ketika mencoba untuk " -"mengambil misalnya untuk data batas tapak bangunan seluas satu negara. " -"Umumnya dataset pada level perkotaan dan di bawahnya seharusnya mampu " -"bekerja lebih baik." - -# 7901f858ddf345d09e48bf16460353c0 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:30 -msgid "To use this tool effectively:" -msgstr "Untuk menggunakan alat ini secara efektif:" - -# d11e4d586e074d888e14b00802a66e66 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:32 -msgid "" -"Use QGIS to zoom in to the area for which you want building data to be " -"retrieved. For fine-grained control, you can set the bounding box manually " -"in the area provided at the bottom of the dialog." -msgstr "" -"Gunakan QGIS untuk memperbesar ke daerah yang Anda ingin dapatkan datanya. " -"Untuk mendapatkan area yang Anda inginkan, anda bisa mengatur kotak secara " -"manual di area yang disediakan pada bagian bawah dari dialog." - -# e479ef4b6ab0434e8eda137d90c43998 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:36 -msgid "" -"Check that the output directory is correct. Note that the saved datasets " -"will be called :file:`buildings.shp` and :file:`roads.shp` (and their " -"associated files)." -msgstr "" -"Periksa apakah direktori output sudah benar. Perhatikan bahwa set data yang " -"tersimpan akan diberi nama :file:`buildings.shp` dan :file:`roads.shp` " -"(beserta berkas-berkas yang terhubung dengannya)" - -# c6795785a9d047bf9ce852181e333ed7 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:39 -msgid "" -"By default simple file names will be used (e.g. :file:`roads.shp`, :file:" -"`buildings.shp`). If you wish you can specify a prefix to add in front of " -"this default name. For example using a prefix of 'padang-' will cause the " -"downloaded files to be saved as :file:`padang-roads.shp` and :file:`padang-" -"buildings.shp`. Note that the only allowed prefix characters are A-Z, a-z, " -"0-9 and the characters '-' and '_'. You can leave this blank if you prefer." -msgstr "" -"Secara pengaturan awal nama file yang sederhana akan digunakan (misalnya :" -"file:`roads.shp`, :file:`buildings.shp`). Jika mau Anda dapat menggunakan " -"prefix untuk ditambahkan di depan nama default ini,. Sebagai contoh, " -"menggunakan prefix 'padang-' akan mengubah file yang di-download menjadi :" -"file:`padang-roads.shp` dan :file:`padang-buildings.shp`. Sebagai catatan, " -"prefix hanya dibolehkan untuk menggunakan karakter A-Z, a-z, 0-9 dan " -"karakter '-', dan '_'. Anda dapat mengosongkan pilihan ini." - -# c5f7df5c98644ecbae4552f8dd1dd92a -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:47 -msgid "Click :guilabel:`OK` to retrieve the data." -msgstr "Klik :guilabel:`OK` untuk menerima data." - -# cf5547a46b0e4584a0d8d2630c2a98f2 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:50 -msgid "" -"If a dataset already exists in the output directory it will be overwritten. " -"This tool requires a working internet connection and fetching buildings will " -"consume your bandwidth." -msgstr "" -"Jika dataset sudah ada di direktori output, dataset tersebut akan ditimpa. " -"Alat ini memerlukan koneksi internet untuk bekerja dan mengambil bangunan " -"akan menggunakan bandwidth Anda." - -# 43d909ac69a34da2b6d22ae626cb1716 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:55 -msgid "" -"Downloaded data is copyright OpenStreetMap contributors (`click for more " -"info `_)." -msgstr "" -"Data yang didownload adalah hak cipta kontributor OpenStreetMap (klik untuk " -"info lebih lanjut `_)." - -# 0ebec96cf1394eebb9c52e60684798f9 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:59 -msgid "Building data" -msgstr "Data bangunan" - -# fc82f3bdf17c4f1285a0ef2e6fcda9da -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:61 -msgid "" -"|project_name| supports the use of building data in various impact " -"functions. In particular we support building footprints sourced from the " -"`OpenStreetMap `_ project (OSM)." -msgstr "" -"|project_name| mendukung penggunaan data bangunan pada berbagai macam fungsi " -"dampak. Pada umumnya kami mendukung batas tapak bangunan yang bersumber dari " -"proyek `OpenStreetMap (OSM) `_" - -# f0f55a67b95643a687632ebf31d2ca39 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:65 -msgid "" -"The following building types are derived (depending on the various tags " -"assigned to them in OSM):" -msgstr "" -"Tipe bangunan berikut ini yang berasal (tergantung dari berbagai tags yang " -"diberikan pada OSM) adalah sebagai berikut:" - -# 45429822934d43bc8e07b322c6a13d11 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:68 -msgid "School" -msgstr "Sekolah" - -# fe253b46a2204cb18fb9026e5185c602 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:69 -msgid "University/College" -msgstr "Universitas/Kampus" - -# bf59ac75a21043608482ccffbcf8a899 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:70 -msgid "Government" -msgstr "Pemerintahan" - -# 30ad3b0bff7a43b6a34e0b4331a00e9a -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:71 -msgid "Clinic/Doctor" -msgstr "Klinik/Dokter" - -# 704d087bba674ed4889873a16c4a63e8 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:72 -msgid "Hospital" -msgstr "Rumah Sakit" - -# 0c940990df494af59b15bf0db82d0f86 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:73 -msgid "Fire Station" -msgstr "Stasiun Pemadam Kebakaran" - -# 01480ed567e94eb08782d77b0674166e -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:74 -msgid "Police Station" -msgstr "Kantor Polisi" - -# 937cd10b020b41aca824906f4fb6e0f2 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:75 -msgid "Public Building" -msgstr "Bangunan Publik" - -# 6e045e3082c7463081f999a8b8f0804a -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:76 -msgid "Place of Worship - Islam" -msgstr "Tempat Ibadah - Islam" - -# d4459fe527e649c9a603bd695e521572 -# 7e4ab86ad96a48658d2953399e0524e2 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:77 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:79 -msgid "Place of Worship - Unitarian" -msgstr "Tempat Ibadah - Unitarian" - -# c4a6ef2fcde54eaf8e51fb297f958c2d -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:78 -msgid "Place of Worship - Buddhist" -msgstr "Tempat Ibadah - Buddha" - -# 7f695168d2184e03a5ff0993a2ac72b7 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:80 -msgid "Supermarket" -msgstr "Supermarket" - -# 8e33d04239144c37a13bec4c8654ce6a -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:81 -msgid "Residential" -msgstr "Permukiman" - -# c668f389596649b2a548ef4971fab7c1 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:82 -msgid "Sports Facility" -msgstr "Fasilitas Olahraga" - -# 2e5f5adf8e71474b935c2432a8f5fcec -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:83 -msgid "Place of Worship" -msgstr "Tempat Beribadah" - -# 32257d0883574e53a1fe776910d04821 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:84 -msgid "Commercial" -msgstr "Komersil" - -# 83452678424e47118ae2304aec3aae8b -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:85 -msgid "Industrial" -msgstr "Industri" - -# e1d4df514b9046b6a680aa5a83f00a2f -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:87 -msgid "" -"These derived types will be present in a field called 'type' when " -"downloading the building data. Note that depending on the area for which you " -"have downloaded, only some of these categories may be present in your " -"buildings dataset." -msgstr "" -"Jenis turunan akan hadir dalam sebuah *field* yang disebut 'type' saat men-" -"*download* data bangunan. Perhatikan bahwa hal ini tergantung pada daerah " -"mana yang anda *download*, kemungkinan hanya beberapa dari kategori ini yang " -"akan muncul pada set data bangunan Anda." - -# fa29a4de464a41f7ad9c02b77914fe7b -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:93 -msgid "Roads data" -msgstr "Data jalan" - -# 5b27d798c0ab4cc1adbfe6a850d5e93b -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:95 -msgid "" -"|project_name| supports the use of road data in various impact functions. In " -"particular we support roads sourced from the `OpenStreetMap `_ project (OSM)." -msgstr "" -"|project_name| mendukung penggunaan data bangunan untuk berbagai fungsi " -"dampak. Pada umumnya kami mendukung jalan yang bersumber dari proyek " -"`OpenStreetMap (OSM) `_" - -# 96788c928f9e483b80fd239ac908c160 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:99 -msgid "" -"The following road types are derived (depending on the various tags assigned " -"to them in OSM):" -msgstr "" -"Tipe jalan berikut ini yang berasal (tergantung dari berbagai tags yang " -"diberikan pada OSM) adalah sebagai berikut:" - -# 5b38b0f4806847fbbe8cb9ff96dbdf0b -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:102 -msgid "Motorway / highway (includes 'trunk' from OSM)" -msgstr "" -"Jalan besar / jalan bebas hambatan (termasuk 'trunk' / jalan penting dari " -"OSM)" - -# 114e06abd2c148ed9019ff4c5abbb357 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:103 -msgid "Motorway link" -msgstr "Percabangan jalan besar" - -# 4e31dfd1a0ce4e1fa6e27eb7b137f347 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:104 -msgid "Primary road" -msgstr "Jalan primer" - -# b99adb73cd274133b338b11ded2950a2 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:105 -msgid "Primary link" -msgstr "Percabangan jalan primer" - -# 090d1ddfa57c4d82aa564025fce71780 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:106 -msgid "Tertiary" -msgstr "Jalan tertier" - -# b2d8717c314b4638b69c18b0ec70b268 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:107 -msgid "Tertiary link" -msgstr "Percabangan jalan tertier" - -# 4d6eadf835af4b9a80671b5e8beb0979 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:108 -msgid "Secondary" -msgstr "Jalan Sekunder" - -# 88349a50b83445f2b07f968cbfca1271 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:109 -msgid "Secondary link" -msgstr "Percabangan jalan sekunder" - -# 82cb84ade0fd4636ab1cca9565ea2b7c -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:110 -msgid "" -"Road, residential, living street, etc. (includes all highways tagged with " -"'living_street', 'residential', 'yes', 'road', 'unclassified', 'service', '' " -"and NULL highways)" -msgstr "" -"Jalan, perumahan, permukiman, etc. (termasuk semua jalan yang diberi tag " -"'living_street', 'residential', 'yes', 'road', 'unclassified', 'service', '' " -"dan NULL)" - -# 87f279a3554e4486895429bdf7b9e959 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:113 -msgid "Track" -msgstr "*Track*" - -# 97702d3a730047268800c5d36ddbb9f8 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:114 -msgid "" -"Cycleway, footpath, etc. (includes 'cycleway', 'footpath', 'pedestrian', " -"'footway' and 'path' highway tags)." -msgstr "" -"Jalur sepeda, jalan kecil, etc. (termasuk jalan dengan tag 'cycleway', " -"'footpath', 'pedestrian', 'footway' dan 'path' )" - -# f76e28e551e840a7b4b3d1f416f75db5 -#: ../../source/user-docs/application-help/openstreetmap_downloader.rst:117 -msgid "" -"The roads data is symbolised using a rule based renderer in QGIS. As you " -"zoom out the roads will be rendered using different styles to avoid an " -"overly cluttered map at small scales." -msgstr "" -"Data jalan telah disimbolisasi menggunakan aturan-aturan yang disesuaikan " -"dengan yang ada di QGIS. Seperti bila Anda mencoba untuk memperkecilnya " -"hingga terlihat jalan-jalannya akan disesuaikan dengan gaya (*style*) yang " -"berbeda untuk menghindari peta terlalu nampak berantakan dalam skala yang " -"lebih kecil." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/options.po b/docs/i18n/id/LC_MESSAGES/user-docs/application-help/options.po deleted file mode 100644 index 82c3ee5f..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/options.po +++ /dev/null @@ -1,414 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# adityo dwijananto , 2013 -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -# Emir Hartato , 2013 -# Emir Hartato , 2013 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# Werner Macho , 2013 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -# Werner Macho , 2013-2014 -# Yantisa Akhadi , 2013 -# Yantisa Akhadi , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:18+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 846e09479abf4cb68badae06952a735d -#: ../../source/user-docs/application-help/options.rst:4 -msgid "Options" -msgstr "Pilihan" - -# cd2b828e8a2b487c84d6bbd916056aa3 -#: ../../source/user-docs/application-help/options.rst:6 -msgid "" -"The |project_name| plugin provides an options dialog which allows you to " -"define various options relating to how |project_name| will behave. The " -"options dialog can be launched by clicking on the |project_name| plugin " -"toolbar's :guilabel:`Options` button (as shown below) or by going to :" -"menuselection:`Plugins ‣ InaSAFE ‣ InaSAFE Options`." -msgstr "" -"Plugin |project_name| menyediakan dialog pilihan yang memungkinkan Anda " -"untuk menentukan berbagai pilihan yang berhubungan dengan bagaimana |" -"project_name| akan berjalan. Kotak dialog pilihan (Option) dapat ditampilkan " -"dengan mengklik pada |project_name| simbol plugin toolbar - :guilabel:" -"`Options` (seperti yang terlihat di bawah) atau dengan melakukan :" -"menuselection:`Plugins ‣ InaSAFE ‣ InaSAFE Options`." - -# 846e09479abf4cb68badae06952a735d -#: ../../source/user-docs/application-help/options.rst:17 -#, fuzzy -msgid "Options icon" -msgstr "Pilihan" - -# 58e7d51a2b774ddf9bfb353030d74634 -#: ../../source/user-docs/application-help/options.rst:17 -msgid "*Options button*" -msgstr "*Tombol Opsi*" - -# e898bed77bc74d7fb2a6bafbdd63d78a -#: ../../source/user-docs/application-help/options.rst:19 -msgid "This following dialog will appear, which is divided into three tabs:" -msgstr "Dialog ini akan muncul, dibagi menjadi tiga tab:" - -# cc11790a299543c68da5a00ae932a733 -#: ../../source/user-docs/application-help/options.rst:21 -msgid ":ref:`basic_options`" -msgstr ":ref:`basic_options`" - -# 2774b9be0f994555aa23a3c2e3758054 -#: ../../source/user-docs/application-help/options.rst:22 -msgid ":ref:`template_options`" -msgstr ":ref:`template_options`" - -# 67d3cf5ec47a411487d4987f82b2d10d -#: ../../source/user-docs/application-help/options.rst:23 -msgid ":ref:`advanced`" -msgstr ":ref:`advanced`" - -# 38d4f503ae83433a8fadf15cc2b532ef -#: ../../source/user-docs/application-help/options.rst:29 -#, fuzzy -msgid "Options dialog" -msgstr "*Dialog pilihan*" - -# 38d4f503ae83433a8fadf15cc2b532ef -#: ../../source/user-docs/application-help/options.rst:29 -msgid "*Options dialog*" -msgstr "*Dialog pilihan*" - -# 997a597643e04dc0b377a2f7921be062 -#: ../../source/user-docs/application-help/options.rst:31 -msgid "The following options are available on the :guilabel:`Options Dialog`:" -msgstr "Berikut ini pilihan yang tersedia di dalam :guilabel:`Options Dialog`:" - -# 0edfccf037f24f6ab95a32017f5de277 -#: ../../source/user-docs/application-help/options.rst:36 -msgid "Basic Options" -msgstr "Pilihan Dasar" - -# cd8e843ea75343a99ecf8e0354c308f7 -#: ../../source/user-docs/application-help/options.rst:37 -msgid "" -":guilabel:`Only show visible layers in the InaSAFE dock`: This option will " -"determine whether **all** hazard and impact layers should be listed in the |" -"project_name| dock's combo boxes or (when checked) only visible layers." -msgstr "" -":guilabel:`Hanya tampilkan layer yang terlihat di InaSAFE` : Pilihan ini " -"akan menentukan apakah **seluruh** *layer* ancaman dan *layer* dampak harus " -"termasuk dalam daftar pada kotak pilihan |project_name| atau (jika pilihan " -"ini dicentang) hanya *layer* yang terlihat. " - -# 90f96b39276c48cabf0fecd70e990337 -#: ../../source/user-docs/application-help/options.rst:40 -msgid "" -":guilabel:`Set QGIS layer name from 'title' in keywords`: This option will " -"cause QGIS to name layers in the :guilabel:`Layers tree` using the `title` " -"keyword in the layer's keywords file. If the layer has no 'title' in its " -"keywords, or it has no keywords at all, the normal QGIS behaviour for naming " -"layers will apply." -msgstr "" -":guilabel:`Gunakan 'judul' pada Editor Kata kunci sebagai nama layer QGIS` : " -"Pilihan ini akan mengakibatkan QGIS memberi nama *layer* pada :guilabel:" -"`daftar layer` menggunakan kata kunci `judul` pada *file* kata kunci *layer* " -"tersebut. Jika *layer* tidak memiliki kata kunci 'judul', atau bahkan tidak " -"memiliki kata kunci sama sekali, maka penamaan *layer* pada QGIS akan " -"berlaku secara normal." - -# 657e78bf1adb4ac1ac204ba70dcc2cdf -#: ../../source/user-docs/application-help/options.rst:45 -msgid "" -":guilabel:`Zoom to impact layer on scenario estimate completion`: This " -"option will cause the map view to zoom in/out in order to completely contain " -"the |project_name| impact scenario map output when an analysis completes." -msgstr "" -":guilabel:`Perbesar ke lapisan dampak saat perhitungan dampak selesai`: " -"Pilihan ini akan mengakibatkan tampilan peta memperbesar/memperkecil ke " -"*layer* dampak sehingga kanvas peta benar-benar memuat peta dampak hasil " -"skenario |project_name| ketika analisis selesai." - -# b7838e8ebbbf464480e19b362c00ee19 -#: ../../source/user-docs/application-help/options.rst:48 -msgid "" -":guilabel:`Hide exposure layer on scenario estimate completion` : This " -"option will cause QGIS to turn off the exposure layer used when |" -"project_name| completes the current analysis. You can re-enable the layer " -"visibility again by checking its checkbox in the legend." -msgstr "" -":guilabel:`Sembunyikan layer keterpaparan saat perhitungan dampak selesai` : " -"Pilihan ini akan menyebabkan QGIS untuk mematikan layer keterpaparan yang " -"sedang digunakan ketika |project_name| melengkapi analisis ini. Anda dapat " -"mengaktifkan kembali visibilitas layer lagi dengan mencentang kotak centang " -"di legenda." - -# ea4d725ef8cb4bd188585bc608b7f0b1 -#: ../../source/user-docs/application-help/options.rst:53 -msgid "" -":guilabel:`Clip datasets to visible extent before analysis`: This option " -"will cause QGIS to clip hazard and exposure layers to the currently visible " -"extent on the map canvas." -msgstr "" -":guilabel:`Tampilkan layer intermediate yang dibuat oleh pascapemrosesan` : " -"Pilihan ini akan menyebabkan QGIS menampilkan file *intermediate* yang " -"dihasilkan oleh langkah-langkah pascapemrosesan pada kanvas peta." - -# d777f78e76134d8cb86dfc18f25c6a66 -#: ../../source/user-docs/application-help/options.rst:56 -msgid "" -":guilabel:`When clipping, also clip features (e.g. will clip polygon " -"smaller)`: This option will clip any polygons that extend beyond the " -"analysis extents so that they are contained by the analysis extent. For " -"example if you have a flood hazard polygon layer that extends far beyond " -"your area of interest, the flood polygons will be reduced so that only the " -"part inside of your area of interested is retained. This can speed up " -"processing time." -msgstr "" -":guilabel:`Potong fitur saat melakukan clipping (akan memotong poligon " -"menjadi lebih kecil)`: Pilihan ini, akan memotong setiap poligon yang " -"melampaui batas cakupan analisis sehingga poligon-poligon yang ada dapat " -"termuat seluruhnya pada batas cakupan analisis. Contohnya jika Anda memiliki " -"*layer* poligon ancaman banjir yang cakupan poligonnya jauh melampaui area " -"yang Anda kaji, dengan mencentang pilihan ini, poligon banjir akan berkurang " -"sehingga hanya bagian di dalam area yang Anda amati saja yang akan " -"dianalisis. Hal ini dapat mempercepat waktu pemrosesan." - -# 98309130d77b4b79a812aa1b9350bd98 -#: ../../source/user-docs/application-help/options.rst:63 -msgid "" -":guilabel:`Show intermediate layers generated by postprocessing`: This " -"option will cause QGIS to show the intermediate files generated by the " -"postprocessing steps in the map canvas." -msgstr "" -":guilabel:`Tampilkan layer intermediate yang dibuat oleh pascapemrosesan` : " -"Pilihan ini akan menyebabkan QGIS menampilkan file *intermediate* yang " -"dihasilkan oleh langkah-langkah pascapemrosesan pada kanvas peta." - -# e98c9d0b9f8b468e80767b3be841dcca -#: ../../source/user-docs/application-help/options.rst:66 -msgid "" -":guilabel:`Female ratio default value`: This is the default female to total " -"population ratio used for generating gender breakdowns." -msgstr "" -":guilabel:`Nilai default perbandingan wanita` : Ini adalah pengaturan bawaan " -"tentang nilai perbandingan wanita terhadap total populasi yang digunakan " -"untuk menghasilkan rincian berdasarkan jenis kelamin. " - -# d5754ee34e324833bc01ddb93a17fb72 -#: ../../source/user-docs/application-help/options.rst:72 -msgid "Template Options" -msgstr "Pilihan Template" - -# c344ace32d0e4ab7823d7e6c7e8ca9bc -#: ../../source/user-docs/application-help/options.rst:73 -msgid "" -":guilabel:`Prompt me in cases when a template has missing elements`: When " -"enabled, this option will cause |project_name| to prompt the user when a " -"template has a missing element if the user tries to print the report or open " -"it in the composer." -msgstr "" -":guilabel:`Beri tahu saya jika template kehilangan element`: Ketika " -"diaktifkan, pilihan ini akan menyebabkan |project_name| memberi tahu " -"pengguna ketika suatu *template* kehilangan suatu komponen ketika pengguna " -"mencoba mencetak laporan atau membukanya di komposer." - -# 4d7e040d2fc64daaaad2763d600076e2 -#: ../../source/user-docs/application-help/options.rst:77 -msgid "" -":guilabel:`Use custom organisation logo`: This option is used to determine " -"the custom logo that will be used as an organisational logo in the PDF of " -"your impact scenario project. If this option is disabled, |project_name| " -"will use the default organisation logo. See :ref:`toolbar_reports` in the |" -"project_name| User's Manual for more information on the reports." -msgstr "" -":guilabel:`Gunakan logo organisasi sendiri`: Pilihan ini digunakan untuk " -"menentukan logo Anda sendiri yang akan digunakan sebagai logo organisasi " -"dalam file PDF proyek skenario dampak Anda. Jika opsi ini dinonaktifkan, |" -"project_name| akan menggunakan logo organisasi bawaan dari InaSAFE itu " -"sendiri. Lihat :ref:`toolbar_reports` pada Panduan untuk Pengguna |" -"project_name| untuk mendapatkan informasi lebih lanjut tentang laporan." - -# 6ff6c8688a1f4b8fa08a4d7b620b067d -#: ../../source/user-docs/application-help/options.rst:83 -msgid "" -":guilabel:`Show organisation logo in the main panel too`: If this is enabled " -"then the selected organisation logo (if any) will be displayed in the bottom " -"of the |project_name| dock panel." -msgstr "" -":guilabel:`Tampilkan logo organisasi pada panel utama`: Jika pilihan ini " -"diaktifkan maka logo organisasi yang dipilih (jika ada) akan ditampilkan di " -"bagian bawah panel utama |project_name|." - -# b5858cecc7514115aceb4655310fcbc8 -#: ../../source/user-docs/application-help/options.rst:86 -msgid "" -":guilabel:`Use custom north arrow image`: This option is used to determine a " -"custom north arrow that will be used as the north arrow image in the PDF of " -"your impact scenario project. If this option is disabled, InaSAFE will use " -"the default north arrow image." -msgstr "" -":guilabel:`Gunakan gambar panah utara sendiri`: Pilihan ini digunakan untuk " -"menentukan gambar arah utara yang akan digunakan sebagai gambar arah utara " -"pada file PDF proyek skenario dampak Anda. Jika pilihan ini dinonaktifkan, " -"InaSAFE akan menggunakan gambar arah utara sesuai dengan pengaturan awal." - -# 0233cf9f05ce4f0ea56e110a42849d42 -#: ../../source/user-docs/application-help/options.rst:90 -msgid "" -":guilabel:`Additional report templates directory`: This option is used to " -"determine a directory with custom templates. Templates from this directory " -"will be available for use when generating reports in your impact scenario " -"project." -msgstr "" -":guilabel:`Tambahkan direktori template laporan`: Pilihan ini digunakan " -"untuk menentukan direktori template Anda sendiri. *Template* dari direktori " -"ini akan tersedia untuk digunakan saat membuat laporan dalam proyek skenario " -"dampak Anda." - -# 92c09cc4d0234b8984eff8de9d50e2eb -#: ../../source/user-docs/application-help/options.rst:94 -msgid "" -":guilabel:`Use custom organisation disclaimer text`: This option is used to " -"change the default disclaimer text printed in reports. If this is enabled, " -"enter your own text and it will be used instead of the default one. See :ref:" -"`toolbar_reports` in the |project_name| User's Manual for more information " -"on the reports." -msgstr "" -":guilabel:`Gunakan teks disclaimer organisasi sendiri`: Pilihan ini " -"digunakan untuk mengubah teks pernyataan yang dicetak dalam laporan. Jika " -"pilihan ini diaktifkan, ketiklah teks pernyataan Anda sendiri dan teks " -"tersebut akan digunakan sebagai pengganti dari teks pernyataan bawaan " -"InaSAFE. Lihat :ref:`toolbar_reports` pada Panduan bagi Pengguna |" -"project_name| untuk memperoleh informasi lebih lanjut tentang laporan." - -# 0642902ba8444192a20fa13d606ef483 -#: ../../source/user-docs/application-help/options.rst:103 -msgid "Advanced" -msgstr "Lanjutan" - -# 4fe99052592d4dada890de154903a8f7 -#: ../../source/user-docs/application-help/options.rst:105 -msgid "" -":guilabel:`Keyword cache for remote datasources`: This option is used to " -"determine where keywords are stored for datasets when it is not possible to " -"write them into a :file:`.keywords` file. See :ref:`keywords_system` in the |" -"project_name| User's Manual for more information on the keywords system." -msgstr "" -":guilabel:`Cache kata kunci untuk sumber data jarak jauh`: Pilihan ini " -"digunakan untuk menentukan dimana kata kunci akan disimpan untuk dataset " -"jika tidak memungkinkan untuk ditulis ke dalam :file:`.keywords`. Lihat :ref:" -"`keywords_system` pada Panduan bagi Pengguna |project_name| untuk " -"mendapatkan informasi lebih banyak tentang sistem kata kunci." - -# b29fba494e1341208a2e9a60cd7b8e16 -#: ../../source/user-docs/application-help/options.rst:110 -msgid "" -":guilabel:`Help to improve InaSAFE by submitting errors to a remote server`: " -"This option, when enabled, will submit diagnostic information back to an |" -"project_name| project server in the event of any error taking place that we " -"are able to trap. The information provided is useful to the |project_name| " -"team to improve the robustness of the software and to spot trends in issues " -"people encounter. Please note the warning text below this option which is " -"included here in full:" -msgstr "" -":guilabel:`Bantu untuk mengembangkan InaSAFE dengan mengirimkan kesalahan " -"kepada remote server`: Pilihan ini, ketika diaktifkan, akan mengirimkan " -"informasi diagnosis ke server proyek |project_name| setiap kali terjadi " -"kesalahan. Informasi yang diberikan berguna bagi tim |project_name| untuk " -"meningkatkan ketahanan perangkat lunak dan melihat tren dalam isu-isu yang " -"dihadapi orang-orang. Harap dicatat teks peringatan di bawah pilihan ini " -"secara lengkap: " - -# ed9794f54137448bb9f01d47928e55a1 -#: ../../source/user-docs/application-help/options.rst:121 -msgid "" -"The above setting requires a QGIS restart to disable/enable. Error messages " -"and diagnostic information will be posted to http://sentry.linfiniti.com/" -"inasafe-desktop/ . Some institutions may not allow you to enable this " -"feature - check with your network administrator if unsure. Although the data " -"is submitted anonymously, the information contained in tracebacks may " -"contain file system paths which reveal your identity or other information " -"from your system." -msgstr "" -"Untuk mengaktifkan/menonaktifkan pengaturan di atas membutuhkan QGIS untuk " -"di *restart* . Pesan kesalahan dan informasi diagnostik akan terkirim ke " -"http://sentry.linfiniti.com/inasafe-desktop/ . Beberapa institusi mungkin " -"tidak memperbolehkan anda untuk mengaktifkan fitur ini - periksa kembali " -"dengan administrasi jaringan anda jika tidak yakin. Meskipun data yang " -"terkirim adalah anonim, informasi yang terkandung dalam *tracebacks* mungkin " -"memiliki jejak sistem berkas dimana akan menunjukan identitas anda atau " -"informasi lain dari sistem anda." - -# 245d6e1949a342519f2aff206a5efddd -#: ../../source/user-docs/application-help/options.rst:130 -msgid "" -":guilabel:`Enable developer mode for dock webkit (needs restart)`: With " -"this option enabled, you can right-click on the report area and use the " -"webkit debug tools to debug the output. **This option is intended for " -"advanced users only.**" -msgstr "" -":guilabel:`Aktifkan mode pengembang untuk webkit dock (perlu melakukan " -"restart)`: Dengan mengaktifkan pilihan ini, Anda dapat melakukan klik kanan " -"pada area laporan dan menggunakan alat-alat webkit debug untuk men-debug " -"keluaran. **Pilihan ini hanya ditujukan untuk pengguna tingkat lanjut.**" - -# 3c636225a6fe4c549c5e1aeed3044d03 -#: ../../source/user-docs/application-help/options.rst:134 -msgid "" -":guilabel:`Use QGIS zonal statistics`: With this button you can toggle " -"between using QGIS internal zonal statistics or the one that comes with |" -"project_name|." -msgstr "" -":guilabel:`Gunakan zonal statistik QGIS` : Dengan tombol ini, anda dapat " -"merubah antara menggunakan zonal statistik QGIS internal atau zonal " -"statistik yang tersedia dalam |project_name|" - -# 43e3863327ae4069b9501ca58aa54726 -#: ../../source/user-docs/application-help/options.rst:139 -msgid "" -"You can click on the :guilabel:`Help` button at any time and it will open " -"the help documentation browser to this page." -msgstr "" -"Anda dapat klik tombol :guilabel:`Help` beberapa waktu dan ini akan membuka " -"bantuan pencarian dokumentasi untuk halaman ini" - -# e23295f3e37b423fbc0ac861b472997c -#: ../../source/user-docs/application-help/options.rst:143 -msgid "" -"Pressing :guilabel:`Cancel` at any time will close the options dialog and " -"any changes made will **not** be applied. Pressing :guilabel:`OK` at any " -"time will close the options dialog and any changes made **will** be applied " -"immediately." -msgstr "" -"Dengan menekan :guilabel:`Batal` maka dialog pilihan akan menutup dan " -"perubahan apa saja **tidak** akan diterapkan. Tekan :guilabel:`OK` maka " -"kotak dialog Pilihan akan menutup dan perubahan apa saja **akan** segera " -"diterapkan." - -# 5d9f1ec5f58845aabf5207c033dd15e2 -#: ../../source/user-docs/application-help/options.rst:148 -msgid "" -"The exact button order shown on this dialog may differ depending on your " -"operating system or desktop environment." -msgstr "" -"Urutan tombol yang tepat yang ditampilkan pada kotak dialog ini mungkin " -"berbeda tergantung pada sistem operasi atau lingkungan desktop Anda." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/reports.po b/docs/i18n/id/LC_MESSAGES/user-docs/application-help/reports.po deleted file mode 100644 index c124467f..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/reports.po +++ /dev/null @@ -1,353 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# harry mahardhika , 2013 -# mahardika fadmastuti , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2017-09-23 19:18+0000\n" -"Last-Translator: Richard Duivenvoorde \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# ed161969a72943df8209deb7758036cf -#: ../../source/user-docs/application-help/reports.rst:4 -msgid "Reports" -msgstr "Laporan" - -# c2ad21f230464e58af46d3e7effbd892 -#: ../../source/user-docs/application-help/reports.rst:6 -msgid "" -"Reports about the impact scenario project are generated using QGIS composer " -"templates. The default template is shipped with the plugin, but you can " -"easily create your own templates in QGIS and use them as a basis for your " -"reports." -msgstr "" -"Laporan tentang proyek skenario dampak dibuat menggunakan *template* " -"komposer QGIS. *Template* bawaan telah menjadi bagian dari plugin, namun " -"Anda dapat membuat *template* Anda sendiri dengan mudah di QGIS dan " -"menggunakannya sebagai dasar dalam laporan Anda." - -# 865bb219900943329ccdeb6289d3f972 -#: ../../source/user-docs/application-help/reports.rst:12 -msgid "Localised templates are supported via the following simple schema:" -msgstr "*Template* lokal didukung melalui skema sederhana berikut ini:" - -# 6c9ea3921bf8457880e22cf2114573ab -#: ../../source/user-docs/application-help/reports.rst:14 -msgid "" -"If there is a specified template called :file:`/path/to/template/foo.qpt` " -"then the plugin looks in the template directory :file:`/path/to/template/` " -"for a file called file :file:`foo-LANG.qpt`, where \"LANG\" is the language " -"code of the system locale." -msgstr "" -"Jika ada *template* tertentu yang dipanggil :file:`/path/to/template/foo." -"qpt` kemudian *plugin* terlihat di direktori *template* :file:`/path/to/" -"template/` untuk sebuah *file* yang memanggil *file* :file:`foo-LANG.qpt`, " -"dimana \"LANG\" adalah kode bahasa untuk sistem lokal." - -# 9adb19f896f2459aba25be2444c09c2a -#: ../../source/user-docs/application-help/reports.rst:19 -msgid "" -"If such a file exists it will be used for report creation, otherwise the " -"original template :file:`/path/to/template/foo.qpt` will be used." -msgstr "" -"Jika sebuah file ada maka akan digunakan untuk membuat laporan sebaliknya " -"template asli :file:`/path/to/template/foo.qpt` akan digunakan" - -# 7ff3be05c1e44fcf9112a0f1445aa271 -#: ../../source/user-docs/application-help/reports.rst:24 -msgid "Report template elements" -msgstr "Elemen *template* laporan" - -# 76eb40f5e27f44a28800bb3297e51876 -#: ../../source/user-docs/application-help/reports.rst:26 -msgid "A template contains the following types of elements:" -msgstr "Sebuah *template* memuat 3 kelompok elemen berikut:" - -# 8633d56a10664c1ebc0e9000516c8469 -#: ../../source/user-docs/application-help/reports.rst:28 -msgid "Static elements" -msgstr "Elemen statis" - -# 91bd6a93b86f4ed692d41aa57b085cc5 -#: ../../source/user-docs/application-help/reports.rst:29 -#: ../../source/user-docs/application-help/reports.rst:40 -msgid "Elements containing tokens for replacement" -msgstr "Elemen yang mencakup token-token untuk penggantian" - -# 66fa48c5d7ce43e3a7099dec0cd59329 -#: ../../source/user-docs/application-help/reports.rst:30 -#: ../../source/user-docs/application-help/reports.rst:49 -msgid "Elements that are directly updated by the renderer" -msgstr "Elemen yang mana ter-update secara langsung oleh para penyaji" - -# 7b07fe59eec74ec28ede1ec37792a45a -#: ../../source/user-docs/application-help/reports.rst:33 -msgid "Static Elements" -msgstr "Elemen Statis" - -# 6e4a54ed53f945bb983c6fa56c7f6eaf -#: ../../source/user-docs/application-help/reports.rst:35 -msgid "" -"These are elements which are not changed during report generation, e.g. some " -"logos/images, additional texts, etc. You can safely remove such elements or " -"replace them with your own as needed." -msgstr "" -"Ini adalah elemen-elemen yang tidak diubah selama pembuatan laporan. seperti " -"beberapa logo/gambar. teks tambahan, dll. Anda dapat menghapus beberapa " -"elemen atau menggantinya dengan yang anda inginkan jika itu diperlukan." - -# 988008dc359e47a481e821005dd9866c -#: ../../source/user-docs/application-help/reports.rst:42 -msgid "" -"In this case the element name is not significant, only the token(s) it " -"contains. At render time any of the tokens in these elements will be " -"replaced with translated content (if an alternative locale is in effect) " -"from the plugin according to the keywords listed below in this document." -msgstr "" -"Dalam kasus ini elemen nama tidak signifikan, hanya sebuah (beberapa) tanda " -"yang ada. Saat ini tanda-tanda yang ada di elemen akan diganti dengan konten " -"yang telah diterjemahkan (jika alternatif lokal berlaku) dari plugin sesuai " -"dengan kata kunci yang tertulis pada dokumen di bawah ini." - -# 57d58e6d037141128413f25ffa302ed4 -#: ../../source/user-docs/application-help/reports.rst:51 -msgid "" -"In this case any content that may be present in the element is completely " -"replaced by the realtime map renderer, although certain styling options (e." -"g. graticule settings on the map) will remain in effect." -msgstr "" -"Dalam kasus ini semua konten yang mungkin hadir di elemen seluruhnya telah " -"diganti oleh peta realtime, walaupun pilihan gaya tampilan ini (contoh " -"pengaturan graticule pada peta) akan menyisakan efek tertentu" - -# 16c30b0ebf5a43d39a5971447a225f07 -#: ../../source/user-docs/application-help/reports.rst:55 -msgid "" -"These elements are recognised by their IDs and currently the plugin supports " -"the following elements:" -msgstr "" -"Elemen ini dikenali dengan ID-nya dan saat ini *plugin* ini mendukung elemen-" -"elemen berikut:" - -# 464b0575e9064a48a98f6d66a54f20b8 -#: ../../source/user-docs/application-help/reports.rst:58 -msgid "" -"**safe-logo** --- QGIS composer image, which is used for displaying the |" -"project_name| logo with website url" -msgstr "" -"**safe-logo** --- gambar komposer QGIS, dimana akan digunakan untuk " -"menampilkan logo |project_name| beserta alamat situsnya." - -# dcf90082af9b4de0b222b488a83f6331 -#: ../../source/user-docs/application-help/reports.rst:60 -msgid "" -"**organisation-logo** --- QGIS composer image, which is used for displaying " -"an organisational logo; By default a combined supporters logo is used; To " -"use a custom logo image, set the path to your PNG file in the Options dialog " -"(see :ref:`toolbar_options` for details)." -msgstr "" -"**logo-organisasi** --- gambar komposer QGIS, yang akan digunakan untuk " -"menampilkan logo organisasi. Dalam pengaturan awal, logo yang akan digunakan " -"adalah kombinasi logo organisasi pendukung. Untuk menggunakan gambar logo " -"Anda sendiri, aturlah lokasi *file* PNG Anda pada kotak dialog Pilihan " -"(lihat :ref:`toolbar_options` untuk lebih jelasnya)." - -# 5f2dee19dc9848108e0d7c9185472511 -#: ../../source/user-docs/application-help/reports.rst:65 -msgid "" -"**impact-map** --- QGIS composer map, which is used for displaying the " -"impact scenario" -msgstr "" -"**peta-dampak** --- Komposer peta QGIS, yang akan digunakan untuk " -"menampilkan skenario dampak." - -# 58391e7e87764e979dff751954e9119a -#: ../../source/user-docs/application-help/reports.rst:67 -msgid "" -"**impact-legend** --- QGIS composer legend, which is used for displaying the " -"legend of the impact scenario" -msgstr "" -"**keterangan-dampak** --- Keterangan komposer QGIS, yang digunakan untuk " -"menampilkan keterangan dari skenario dampak" - -# be5272472ce7499585d65d6a0e1c8c3d -#: ../../source/user-docs/application-help/reports.rst:69 -msgid "" -"**impact-report** --- QGIS composer label, which is used for displaying the " -"impact report table" -msgstr "" -"**laporan-dampak** --- label komposer QGIS, yang digunakan untuk menampilkan " -"tabel laporan dampak" - -# 162c77b90edc46a389ed2c179e9f2f8f -#: ../../source/user-docs/application-help/reports.rst:72 -msgid "" -"As QGIS composer doesn't support automatic resizing of elements based on " -"their contents, make sure that labels have dimensions large enough to show " -"the full table." -msgstr "" -"Karena komposer QGIS tidak mendukung perbesaran elemen secara otomatis " -"berdasarkan isi dalam elemen, maka pastikan label telah memiliki dimensi " -"yang cukup besar agar tabel dapat ditampilkan secara keseluruhan." - -# fd8eca09f870433baf45ecbe1bcfa53e -#: ../../source/user-docs/application-help/reports.rst:77 -msgid "Replaceable keywords" -msgstr "Kata kunci yang dapat ditimpa" - -# bc4176399a6b41f9b6cb8835dc0fe5a1 -#: ../../source/user-docs/application-help/reports.rst:79 -msgid "" -"This section describes tokenised keywords that are passed to the map " -"template. To insert any of these keywords into the map template, simply " -"enclose the key in [] (e.g. [place-name]) and it will be replaced by the " -"text value (e.g. Tondano). The list includes static phrases which have been " -"internationalised (and so they will be displayed in the language of the " -"selected map local, defaulting to English where no translation is available)." -msgstr "" -"Bagian ini mendeskripsikan *tokenised keyword* yang akan diturunkan pada " -"template peta. Untuk memasukan keyword apapun pada template peta, cukup " -"lampirkan key pada [] (misal [nama-tempat]) dan key ini akan tergantikan " -"dengan nilai teks (misal Tondano). Daftar termasuk frasa statis yang telah " -"di-internasionalisasikan (sehingga mereka akan ditampilkan sesuai dengan " -"bahasa yang dipilih secara lokal pada peta, jika tidak ada terjemahan yang " -"tersedia maka akan ditampilkan ke dalam bahasa Inggris sesuai dengan " -"pengaturan bawaan)." - -# 849976b6bf9d4c9897b9f34532ee842b -#: ../../source/user-docs/application-help/reports.rst:87 -msgid "The following tokenised keywords are supported:" -msgstr "Kata kunci ber-*token* berikut ini mendukung:" - -# c9a9b2029d3e4459944517bceba72dd0 -#: ../../source/user-docs/application-help/reports.rst:89 -msgid "**impact-title** --- title of the impact scenario map" -msgstr "**judul-dampak** --- judul peta skenario dampak" - -# 206df42863e7436e935c19815cf7eca0 -#: ../../source/user-docs/application-help/reports.rst:90 -msgid "**date** --- date of the assessment" -msgstr "**tanggal** --- tanggal penilaian" - -# 0a5c1e8b314946f5b23e02dd73f77ebc -#: ../../source/user-docs/application-help/reports.rst:91 -msgid "**time** --- time of the assessment" -msgstr "**waktu** --- waktu penilaian" - -# 8d2fdb19a5ac4654bed441c90b95140c -#: ../../source/user-docs/application-help/reports.rst:92 -msgid "**safe-version** --- version of the plugin used" -msgstr "**versi-safe** --- versi *plugin* yang digunakan" - -# a4e36bd1fd0144dab0d30a623bd1a817 -#: ../../source/user-docs/application-help/reports.rst:93 -msgid "" -"**disclaimer** --- disclaimer text; By default this text is used: \"InaSAFE " -"has been jointly developed by Indonesian Government-BPNB, Australian " -"Govenment-AIFDR and the World Bank-GFDRR. These agencies and the individual " -"software developers of InaSAFE take no responsibility for the correctness of " -"outputs from InaSAFE or decisions derived as a consequence.\" To use custom " -"disclaimer text, enter desired text in the Options dialog (see :ref:" -"`toolbar_options` for details)." -msgstr "" -"**disclaimer** --- teks *disclaimer*. Dalam pengaturan awalnya, teks " -"*disclaimer* yang digunakan adalah: \"InaSAFE telah dikembangkan bersama " -"sama oleh Pemerintah Indonesia-BNPB, Pemerintah Australia-AIFDR dan Bank " -"Dunia-GFDRR. Badan-badan tersebut dan individu pengembang perangkat lunak " -"InaSAFE tidak bertanggung jawab atas kebenaran yang dihasilkan dari InaSAFE " -"atau keputusan yang mengikutinya sebagai konsekuensi.\" Untuk menggunakan " -"teks *disclaimer* Anda sendiri, masukkan teks yang diinginkan pada kotak " -"dialog InaSAFE Option (lihat :ref:`toolbar_options` untuk lebih detail)." - -# 9f361b660dfd4136a292bddd62e50164 -#: ../../source/user-docs/application-help/reports.rst:103 -msgid "Custom templates" -msgstr "Template yang lazim digunakan" - -# b47e1ff234374faeb710ff9df3e144c9 -#: ../../source/user-docs/application-help/reports.rst:105 -msgid "" -"You have a few options to customise the template **without doing any " -"programming**. There are three primary ways you can achieve this:" -msgstr "" -"Anda memiliki beberapa pilihan untuk mengatur template **tanpa melakukan " -"proses pemprograman apapun**. Ada 3 cara utama untuk melakukan ini:" - -# f89e79e07fd240e5b8677663faec91ba -#: ../../source/user-docs/application-help/reports.rst:109 -msgid "" -"Moving replaceable keywords into different elements, or removing them " -"completely" -msgstr "" -"Pindahkan kata kunci yang dapat diganti ke dalam elemen yang berbeda, atau " -"pindahkan seluruhnya" - -# 2a1d285a27234f148932a6853ae5ca72 -#: ../../source/user-docs/application-help/reports.rst:111 -msgid "" -"Changing template elements look and feel (e.g. setting up fonts, colors, " -"borders, etc.), moving the template elements themselves around or adding / " -"removing them completely" -msgstr "" -"Ubah tampilan elemen-elemen *template* (misalnya mengatur huruf, warna, " -"garis tepi, dll). pindahkan elemen-elemen *template* ke posisi-posisi lain " -"di sekitarnya atau tambahkan/hapus seluruhnya" - -# aff84c0da9964368bfc7814d9eabbe1f -#: ../../source/user-docs/application-help/reports.rst:114 -msgid "" -"Creating your own template from scratch and using it instead of default one" -msgstr "Buatlah *template* Anda sendiri dan gunakan *template* itu." - -# f31abab7594c49cbae8df9c95ac3d8c9 -#: ../../source/user-docs/application-help/reports.rst:116 -msgid "" -"The default template is provided as :file:`inasafe/safe_qgis/resources/qgis-" -"composer-templates/inasafe.qpt` and can be modified by opening the template " -"using the QGIS map composer, making your changes and then overwriting the " -"template or saving it in any directory." -msgstr "" -"Template pengaturan bawaan yang disediakan seperti :file:`inasafe/safe_qgis/" -"resources/qgis-composer-templates/inasafe.qpt` dapat anda modifikasi dengan " -"membuka template tersebut menggunakan komposer peta QGIS, membuat perubahan " -"anda dan menimpa ulang template atau menyimpannya kembali pada direktori " -"manapun." - -# b19b92142fe643a4b5d3f6e7ca2bd75d -#: ../../source/user-docs/application-help/reports.rst:122 -msgid "" -"You should take care to test your template changes before using it in a " -"production environment." -msgstr "" -"Anda harus mencoba melakukan tes pada perubahan template anda sebelum " -"menggunakannya pada lingkungan produksi." - -# 8df2ba0f5e2d4f4dbb5f4c030e8c5f14 -#: ../../source/user-docs/application-help/reports.rst:125 -msgid "" -"In addition to the default template you can have as many custom templates as " -"you want. Just create templates, put them in a folder and go to :" -"menuselection:`Plugins ‣ InaSAFE ‣ InaSAFE Options` or click on the |" -"project_name| plugin toolbar's :guilabel:`Options` button. In the Options " -"dialog specify the :guilabel:`Report template` setting. It should contain " -"the full path to the folder with your custom templates." -msgstr "" -"Selain menggunakan *template* bawaan, Anda dapat menggunakan *template* yang " -"Anda buat sendiri. Cukup buat *template* Anda, letakkan *template* tersebut " -"dalam suatu *folder* kemudian pergi ke :menuselection:`Plugins --> InaSAFE --" -"> InaSAFE Option` atau klik pada tombol :guilabel:`InaSAFE Option` pada " -"toolbar |project_name|. Pada kotak dialog InaSAFE Option, lihat pengaturan :" -"guilabel:`*Template* Laporan`. Pada bagian itu seharusnya termuat alamat " -"direktori *folder* dengan *template* yang telah Anda buat." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/save_scenario.po b/docs/i18n/id/LC_MESSAGES/user-docs/application-help/save_scenario.po deleted file mode 100644 index 5e156be0..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/save_scenario.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# adityo dwijananto , 2013 -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -# Emir Hartato , 2013 -# Emir Hartato , 2013 -# harry mahardhika , 2013 -# mahardika fadmastuti , 2013 -# Werner Macho , 2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:23+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 69419d0fe7e949c2bc5e1b0c5f33c0f0 -#: ../../source/user-docs/application-help/save_scenario.rst:4 -msgid "Save Scenario" -msgstr "Simpan Skenario" - -# cf4f45960e364723803f7db3d5f78d4d -#: ../../source/user-docs/application-help/save_scenario.rst:6 -msgid "" -"The Save Current Scenario tool allows you to save scenarios (:ref:" -"`tb_save_scenario`) and batch run them again in the batch runner tool (:ref:" -"`batch_runner`) in one go:" -msgstr "" -"*Tool* Penyimpan Skenario Saat Ini memungkinkan Anda menyimpan skenario (:" -"ref:`tb_save_scenario`) dan melakukan *batch run* lagi dalam *tool batch " -"runner* (:ref:`batch_runner`) dalam satu kali jalan:" - -# 42fb28c1b1f6492587f5042f3f34e622 -#: ../../source/user-docs/application-help/save_scenario.rst:15 -#, fuzzy -msgid "Save current scenario" -msgstr "*Simpan skenario saat ini*" - -# 42fb28c1b1f6492587f5042f3f34e622 -#: ../../source/user-docs/application-help/save_scenario.rst:15 -msgid "*Save current scenario*" -msgstr "*Simpan skenario saat ini*" - -# 4f84cadfe4244c9495fb906974e67322 -#: ../../source/user-docs/application-help/save_scenario.rst:17 -msgid "" -"This is the tool you need to prepare/save scenarios for the :ref:" -"`tb_batch_runner`. It lets you save the current visible scenario in QGIS to " -"a :file:`.txt` file. Once saved you can reopen this file as a scenario again " -"in Batch runner and recalculate it." -msgstr "" -"Ini adalah *tool* yang Anda butuhkan untuk menyiapkan/menyimpan skenario " -"untuk :ref:`tb_batch_runner`. Ini memungkinkan Anda menyimpan skenario yang " -"terlihat saat ini di QGIS ke dalam *file* :file:`.txt`. Setelah Anda simpan, " -"Anda dapat membuka kembali *file* tersebut dalam *Batch runner* dan " -"menghitungnya ulang." - -# a9addeb6fb65494eaa26b503cdc3da73 -#: ../../source/user-docs/application-help/save_scenario.rst:22 -msgid "" -"A more detailed description of the batch runner is available in :ref:" -"`batch_runner`." -msgstr "" -"Deskripsi yang lebih detail mengenai *batch runner* tersedia di :ref:" -"`batch_runner`" - -# 40e8826584454677abe66eb9dc9e1e47 -#: ../../source/user-docs/application-help/save_scenario.rst:25 -msgid "" -"This tool currently does not store the impact function parameters you may " -"have set. Consequently all impact functions will run using their default " -"options." -msgstr "" -"Sekarang alat ini tidak menyimpan parameter fungsi dampak yang telah anda " -"tetapkan. Oleh karena itu semua fungsi dampak akan dijalankan menggunakan " -"pengaturan bawaan." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/user_extents.po b/docs/i18n/id/LC_MESSAGES/user-docs/application-help/user_extents.po deleted file mode 100644 index 8572b42c..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/application-help/user_extents.po +++ /dev/null @@ -1,145 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.2\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# b3a7db31339843358da3700f7f742773 -#: ../../source/user-docs/application-help/user_extents.rst:4 -msgid "User Extents" -msgstr "Jangkauan Pengguna" - -# a15711bd9eff4b0e9ac4ec1e0a900705 -#: ../../source/user-docs/application-help/user_extents.rst:6 -msgid "" -"As of version 2.2, it is possible to explicitly define the extents that " -"should be used for the analysis. You can use the new :menuselection:" -"`Plugins-->InaSAFE-->Set the analysis area for InaSAFE` to invoke the " -"extents selection dialog." -msgstr "" -"Semenjak versi 2.2, memungkinkan untuk menentukan jangkauan yang digunakan " -"untuk analisis. Anda bisa menggunakan alat :menuselection:`Plugins--" -">InaSAFE-->Mengatur Area analysis untuk InaSAFE` untuk membuka dialog area " -"analisis InaSAFE." - -# 4329a822ca174332acc796b66e93c83d -#: ../../source/user-docs/application-help/user_extents.rst:16 -msgid "User extents dialog" -msgstr "Dialog jangkauan pengguna" - -# eed6acfb973f43f5b93b299feaff94f0 -#: ../../source/user-docs/application-help/user_extents.rst:18 -msgid "" -"It is important do understand the logical workflow for your custom defined " -"extents and their relation to the layer and viewport extents. There are " -"three possible permutations for the basic extents clipping behaviour:" -msgstr "" -"Penting untuk mengerti alur logika untuk area jangkauan sesuai dengan " -"keinginan sendiri dan kaitannya pada layer dan tampilan jangkauan. Terdapat " -"tiga permutasi yang memungkinkan untuk perilaku dari pemotongan jangkauan " -"dasar:" - -# fa2794c60e494645b535e84e4fe77500 -#: ../../source/user-docs/application-help/user_extents.rst:25 -msgid "" -"**No clipping**: use full extents of the union of the hazard and exposure" -msgstr "" -"**Tanpa pemotongan**: menggunakan jangkauan tampilan penuh dari penggabungan " -"bencana dan paparan " - -# 8b5505ada4e8451e92d0b968565c12cd -#: ../../source/user-docs/application-help/user_extents.rst:23 -msgid "" -"datasets regardless of your current viewport (where you are zoomed to on the " -"map. You can enable this behaviour in the options dialog by unticking :" -"guilabel:`Clip datasets to visible extents before analysis`." -msgstr "" -"Dataset tanpa memperhatikan tampilan peta anda (dimana anda memperbesar di " -"peta). Anda dapat mengaktifkan perilaku ini melalui dialog pengaturan dengan " -"menghilangkan tanda centang :guilabel:`Potong dataset ke tampilan jangkauan " -"sebelum analisis`." - -# a7a4906633fc4467b04ab88c50100e7c -#: ../../source/user-docs/application-help/user_extents.rst:30 -msgid "" -"**Clip to visible viewport extents**: use the common overlapping area of" -msgstr "" -"**Potong ke tampilan yang terlihat**: menggunakan luasan perpotongan hasil " -"singgungan dari" - -# 03f3138b4f8d4dbe9fd46572ac646f5f -#: ../../source/user-docs/application-help/user_extents.rst:28 -msgid "" -"hazard, exposure and the current extents for the analysis (enable this " -"behaviour by ticking :guilabel:`Clip datasets to visible extents before " -"analysis`)." -msgstr "" -"ancaman, paparan dan luasan jangkauan analisis sekarang (untuk mengaktifkan " -"perilaku ini, centang :guilabel:`Potong dataset ke tampilan yang terlihat " -"sebelum analisis`)" - -# 4dca80f0a1ee475e8e300fa2edf60e59 -#: ../../source/user-docs/application-help/user_extents.rst:35 -msgid "" -"**Clip to the user defined extents**: use the common overlapping area of" -msgstr "" -"**Potong sesuai luasan pengguna**: menggunakan luasan perpotongan hasil " -"singgungan dari" - -# aba76d48bfdb454b85990eaf0fac87a5 -#: ../../source/user-docs/application-help/user_extents.rst:33 -msgid "" -"hazard, exposure and the user defined extents for the analysis (enable this " -"behaviour by using :menuselection:`Plugins-->InaSAFE-->Set the analysis area " -"for InaSAFE`)." -msgstr "" -"ancaman, paparan, dan dan luasan pengguna untuk analisis (aktifkan perilaku " -"ini dengan menggunakan :menuselection:`Plugins-->InaSAFE-->Mengatur area " -"analisis untuk InaSAFE`)." - -# 2e50309ebf2d4d708667b5d51e0aed0b -#: ../../source/user-docs/application-help/user_extents.rst:37 -msgid "" -"When you select an area using the user extents dialog (either by pressing " -"the :guilabel:`Select on map` button, or by manually typing the extents " -"coordinates) the user extent will be shown with a blue rectangle on the map " -"if you have rubber band previews enabled. Creating a user defined analysis " -"extent will enable the third behaviour described above, and any analysis " -"done will disregard the current viewport extents and only consider the " -"intersection of the user defined analysis ares and the hazard and exposure " -"layers." -msgstr "" -"Ketika Anda memilih luasan dengan menggunakan dialog luasan pengguna (baik " -"dengan menekan tombol :guilabel:`Pilih pada peta` , atau dengan mengetik " -"koordinat luasan secara manual) luasan pengguna akan ditampilkan dengan " -"segiempat biru pada peta jika Anda mengaktifkan *rubber band previews*. " -"Membuat luasan analisis pengguna akan mengaktifkan perilaku ke tiga yang " -"dijelaskan di atas, dan analisis apapun yang dilakukan akan mengabaikan " -"luasan tampilan saat ini dan hanya mempertimbangkan perpotongan dari yang " -"ditetapkan luasan pengguna analisis dan lapisan bahaya dan lapisan paparan." - -# ecc93f27a6224e2183168bde736e6058 -#: ../../source/user-docs/application-help/user_extents.rst:45 -msgid "" -"**Note:** To disable user defined extents, :menuselection:`Plugins--" -">InaSAFE-->Set the analysis area for InaSAFE` then click the :guilabel:" -"`clear` button." -msgstr "" -"**Catatan:** Untuk menonaktifkan jangkauan luasan pengguna, :menuselection:" -"`Plugins-->InaSAFE-->Mengatur area analisis untuk InaSAFE` dan kemudian klik " -"tombol :guilabel:`hapus`." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/functionality.po b/docs/i18n/id/LC_MESSAGES/user-docs/functionality.po deleted file mode 100644 index bd12eee1..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/functionality.po +++ /dev/null @@ -1,310 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# mahardika fadmastuti , 2013 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -# Vasanthi Hargyono , 2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:27+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 37d605beb94a4139b66984afec8ccecf -#: ../../source/user-docs/functionality.rst:4 -msgid "Functionality" -msgstr "Fungsionalitas" - -# 6180f372c0ac49009c5f6421ca58f62f -#: ../../source/user-docs/functionality.rst:6 -msgid "" -"This document describes |project_name|'s functionality in regard to what " -"inputs are needed to carry on an analysis. At the highest level |" -"project_name| will take a hazard layer (such as ground shaking, water depth " -"or ash load) and an exposure layer (such as population density or building " -"footprints) and combine them according to an impact function to produce an " -"impact layer and a report." -msgstr "" -"Dokumen ini menjelaskan fungsi |project_name| dalam hal masukan (input) yang " -"diperlukan untuk melakukan analisis. Pada level tertinggi |project_name| " -"akan mengambil layer ancaman bencana (seperti pergerakan tanah, kedalaman " -"air atau muatan debu) dan layer keterpaparan (seperti kepadatan populasi " -"atau tapak bangunan) dan menggabungkan mereka sesuai dengan fungsi dampak " -"untuk menghasilkan layer dampak dan laporan." - -# d3ebac3bbd5c4604adcd9a19117c17d7 -#: ../../source/user-docs/functionality.rst:14 -msgid "Hazard layers" -msgstr "*Layer* Ancaman Bencana" - -# 628098aaa35e41d081431b7cdfa2c093 -#: ../../source/user-docs/functionality.rst:16 -msgid "The supported hazard layers are:" -msgstr "*Layer* bencana yang mendukung antara lain:" - -# 15bdb34dedde44ec8a36cad924ba0286 -#: ../../source/user-docs/functionality.rst:19 -msgid "Hazard" -msgstr "Ancaman" - -# 395e69b3e23545ad96c6473e97d9c10d -# 7f24b78fbe0e4623813ac3379af45be2 -#: ../../source/user-docs/functionality.rst:19 -#: ../../source/user-docs/functionality.rst:40 -msgid "Spatial type" -msgstr "Jenis Spasial" - -# df1aa8c74dea4ab4b3ea5e564700d2b5 -#: ../../source/user-docs/functionality.rst:19 -msgid "Hazard type" -msgstr "Jenis Ancaman" - -# 6910076ea1624e12ac0adb85857cc482 -# d4217bbe26934133955ec267030ef203 -#: ../../source/user-docs/functionality.rst:19 -#: ../../source/user-docs/functionality.rst:40 -msgid "Attribute name" -msgstr "Nama atribut" - -# 0481067f75c645739d75ea49f7d4e7a3 -# 44fda5d8851249d3974035a206ca469c -#: ../../source/user-docs/functionality.rst:19 -#: ../../source/user-docs/functionality.rst:40 -msgid "Hazard units/fields" -msgstr "Satuan/kolom ancaman bencana" - -# d40ff0ca7c6f486386ec98f17d1835df -#: ../../source/user-docs/functionality.rst:19 -msgid "Parameters" -msgstr "Parameter" - -# 38c5392c70da440d9693d5fa85d82348 -# 232789bdada44c87912f5490b2c4e4fa -# 8d96ec8f4fb24c30abb3bd43c01379e2 -#: ../../source/user-docs/functionality.rst:21 -#: ../../source/user-docs/functionality.rst:23 -#: ../../source/user-docs/functionality.rst:25 -msgid "Volcano" -msgstr "Gunung berapi" - -# ff0c89de45f7428db15246354acdfcf4 -# 70d2bff9fbdb4a2e840b873c3046918f -# bda7d13f56914ecda647442d71f840f1 -# eecc8780545c43faa61e2928fdeb20ff -# c073df031423428f89874f7bc79dc4d3 -#: ../../source/user-docs/functionality.rst:21 -#: ../../source/user-docs/functionality.rst:27 -#: ../../source/user-docs/functionality.rst:29 -#: ../../source/user-docs/functionality.rst:33 -#: ../../source/user-docs/functionality.rst:42 -msgid "Raster" -msgstr "Raster" - -# ab3d0f208afb465fb84602efa8044167 -#: ../../source/user-docs/functionality.rst:21 -msgid "Ash load" -msgstr "Muatan debu" - -# 7dcfed285b8549bb89a6eee2f35e4ce6 -# b04ca6bf587a4728b29e4a38f7c31b60 -# 6fec9a00f5a2413894c524a2486a3025 -# 0bd2c7d5f4974f2bbf147d0210219f9e -# e416bf177b5042459adfa2bd7162c963 -#: ../../source/user-docs/functionality.rst:21 -#: ../../source/user-docs/functionality.rst:27 -#: ../../source/user-docs/functionality.rst:29 -#: ../../source/user-docs/functionality.rst:33 -#: ../../source/user-docs/functionality.rst:42 -msgid "N/A" -msgstr "Tidak Tersedia" - -# 78787007414c47bcb40c2c16a3ce251a -#: ../../source/user-docs/functionality.rst:21 -msgid "kg/m^2" -msgstr "kg/m^2" - -# 5b83508324d949dcb639fcd4d6f5d12c -# 432ba9b77829400f90ecb56b34ca9825 -#: ../../source/user-docs/functionality.rst:23 -#: ../../source/user-docs/functionality.rst:43 -msgid "Point" -msgstr "Titik" - -# c483fba3d3384b3ab67b97bf9c0cd218 -#: ../../source/user-docs/functionality.rst:23 -msgid "Distance from vent" -msgstr "Jarak dari lubang angin" - -# 35268157739f4b44a130b265a411cd08 -#: ../../source/user-docs/functionality.rst:23 -msgid "Name" -msgstr "Nama" - -# 54b9cdf07b674f949ade61a237df4941 -# b01719ea70fe47018ff3a3c0cfb537a3 -# 2a81a6b249644670afeecf7ebdf51135 -# 1679c50691bd4da8b19f243e5c63f5bc -#: ../../source/user-docs/functionality.rst:23 -#: ../../source/user-docs/functionality.rst:25 -#: ../../source/user-docs/functionality.rst:43 -#: ../../source/user-docs/functionality.rst:44 -msgid "text" -msgstr "teks" - -# 4c962fa0e4b748eb97d6b8b6b18a6d8d -#: ../../source/user-docs/functionality.rst:23 -msgid "Radius [km]" -msgstr "Radius [km]" - -# e2fb75ac327d487283eaf5534f231770 -# 4a781f8fc6c64e0db9f7b004698ec308 -# d6c77bd3db4d450db1cc28097554d956 -#: ../../source/user-docs/functionality.rst:25 -#: ../../source/user-docs/functionality.rst:31 -#: ../../source/user-docs/functionality.rst:44 -msgid "Polygon" -msgstr "Poligon" - -# 57069e57a33f449f820e0cf569eb4479 -#: ../../source/user-docs/functionality.rst:25 -msgid "Category" -msgstr "Kategori" - -# 8dfe21d3914d437d982b1e5921c9532e -#: ../../source/user-docs/functionality.rst:25 -msgid "KRB" -msgstr "KRB" - -# 228e8444eb294a9a8fe3846c756794c3 -#: ../../source/user-docs/functionality.rst:27 -msgid "Earthquake" -msgstr "Gempa bumi" - -# d5985974a27040f0ad6966800c649fb6 -#: ../../source/user-docs/functionality.rst:27 -msgid "Shakemap" -msgstr "Peta guncangan" - -# d1519092cc8b496ca9417b6a4e43b4ae -#: ../../source/user-docs/functionality.rst:27 -msgid "MMI" -msgstr "MMI" - -# 1c93d0e3a0d04896a807d5d0373684c5 -# 8137d608ba43431f878248b2c5a51a9d -#: ../../source/user-docs/functionality.rst:29 -#: ../../source/user-docs/functionality.rst:31 -msgid "Flood" -msgstr "Banjir" - -# bee4967d45d54d1f973b2e4dabe8344f -# 7ee909c8b9e842fe81de2427547d0d0c -#: ../../source/user-docs/functionality.rst:29 -#: ../../source/user-docs/functionality.rst:33 -msgid "Depth" -msgstr "Kedalaman" - -# bf78592a92ef4eb1b7a213812215ecf5 -# 662103f71a5143a3bc7744066462c6c3 -#: ../../source/user-docs/functionality.rst:29 -#: ../../source/user-docs/functionality.rst:33 -msgid "m" -msgstr "m" - -# 1c25518b89b14057984bcb050146bc7a -# 3b0a97c03050439f87d2ed61f7809b82 -#: ../../source/user-docs/functionality.rst:29 -#: ../../source/user-docs/functionality.rst:33 -msgid "Threshold [m]" -msgstr "Ambang batas [m]" - -# 0fc03e9e0e4648d7a6d044063a1468c1 -#: ../../source/user-docs/functionality.rst:31 -msgid "Wet/Dry" -msgstr "Basah/Kering" - -# e5e0d7d90b614b849c95458a940d5252 -#: ../../source/user-docs/functionality.rst:31 -msgid "affected" -msgstr "Terdampak" - -# 02fb08db8b4248df9ba21f5823684b7c -#: ../../source/user-docs/functionality.rst:31 -msgid "1/0" -msgstr "1/0" - -# 2c5977a3d64e46508321adc7bf855d77 -#: ../../source/user-docs/functionality.rst:31 -msgid "Threshold [%]" -msgstr "Ambang batas [%]" - -# 0b97a9456587493499df619612af74bf -#: ../../source/user-docs/functionality.rst:33 -msgid "Tsunami" -msgstr "Tsunami" - -# 8fd88558eaa7415a93fcea2af88e72d8 -#: ../../source/user-docs/functionality.rst:37 -msgid "Exposure layers" -msgstr "*Layer* keterpaparan" - -# 836d793b77384525b168512d16f5dde8 -#: ../../source/user-docs/functionality.rst:40 -msgid "Exposure" -msgstr "Keterpaparan" - -# e84db019b6454329936a69d10c4f6a62 -#: ../../source/user-docs/functionality.rst:40 -msgid "Exposure type" -msgstr "Jenis Keterpaparan" - -# 491aaa6de25b477aa4b5a0987528a2c3 -#: ../../source/user-docs/functionality.rst:42 -msgid "Population" -msgstr "Populasi" - -# 86f4ca15a1cb45a581582869390808c7 -#: ../../source/user-docs/functionality.rst:42 -msgid "Density" -msgstr "Kepadatan" - -# 392c934553584999b9ff3fc22da4cf82 -#: ../../source/user-docs/functionality.rst:42 -msgid "People per pixel" -msgstr "Penduduk per piksel" - -# dffc2ef494604f35bedf47b74f89d6fb -# c85ace7dc3374d46be2f135aeab60b1c -#: ../../source/user-docs/functionality.rst:43 -#: ../../source/user-docs/functionality.rst:44 -msgid "Structures" -msgstr "Struktur" - -# e86c1f9554f74132bbac6b6dafee880a -# af7cacec4c034d40bba2306b5f025832 -#: ../../source/user-docs/functionality.rst:43 -#: ../../source/user-docs/functionality.rst:44 -msgid "Structure type" -msgstr "jenis struktur bangunan" - -# db725312609a477f8afe7b9950b0a198 -# 3417ac0e246e41689e0ce44b06649086 -#: ../../source/user-docs/functionality.rst:43 -#: ../../source/user-docs/functionality.rst:44 -msgid "type" -msgstr "jenis" diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/getting_help.po b/docs/i18n/id/LC_MESSAGES/user-docs/getting_help.po deleted file mode 100644 index 30eb3913..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/getting_help.po +++ /dev/null @@ -1,129 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -# Vasanthi Hargyono , 2013 -# Vasanthi Hargyono , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2017-09-23 19:00+0000\n" -"Last-Translator: Richard Duivenvoorde \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 80dd6c5c9fe34a9a99c181457d2f7e87 -#: ../../source/user-docs/getting_help.rst:4 -msgid "Getting Help" -msgstr "Mendapatkan bantuan" - -# a3b948b630e74c75a30f0f1acebf8562 -#: ../../source/user-docs/getting_help.rst:6 -msgid "" -"If you need help using |project_name|, join the |project_name| mailing list " -"or connect with other local users." -msgstr "" -"Jika Anda membutuhkan bantuan dalam menggunakan |project_name|, bergabunglah " -"dengan *mailing list* |project_name| atau terhubung dengan pengguna lokal " -"lainnya." - -# 5ec8daee5d354f3a84c769f996ec1709 -#: ../../source/user-docs/getting_help.rst:12 -msgid "|project_name| Google Group mailing list" -msgstr "*Mailing list* Grup Google |project_name| " - -# a3dcc85b39c3468e9f3035efdeafeb5f -#: ../../source/user-docs/getting_help.rst:14 -msgid "You do not need a google account to use this forum/mailing list!" -msgstr "" -"Anda tidak membutuhkan akun google untuk menggunakan forum/*mailing list*!" - -# 61cecc01c3d443a0b6cb1534e83fd31c -#: ../../source/user-docs/getting_help.rst:16 -msgid "" -"If you experience problems using |project_name|, have suggestions on " -"improving the software or simply would like to get in contact with other |" -"project_name| users, join our google group by sending an email to:" -msgstr "" -"Jika Anda mengalami masalah dalam menggunakan |project_name|, memiliki saran " -"untuk meningkatkan perangkat lunak atau Anda hanya ingin terkoneksi dengan " -"pengguna |project_name| yang lain, Anda dapat bergabung di grup google kami " -"dengan mengirimkan email ke:" - -# ac8e3c16378f4485a5cf0b42c9820550 -#: ../../source/user-docs/getting_help.rst:20 -msgid "inasafe-users+subscribe@googlegroups.com" -msgstr "inasafe-users+subscribe@googlegroups.com" - -# 0d3789d82dbb4fc79b90ead5a15caf5f -#: ../../source/user-docs/getting_help.rst:22 -msgid "You can unsubscribe from the list at any time by sending an email to:" -msgstr "" -"Anda dapat berhenti berlangganan setiap saat hanya dengan mengirimkan email " -"ke:" - -# b553b8aafe6e449494cfeaf4dee195f3 -#: ../../source/user-docs/getting_help.rst:24 -msgid "inasafe-users+unsubscribe@googlegroups.com" -msgstr "inasafe-users+unsubscribe@googlegroups.com" - -# 6dc2f6eeb3c64a338b784f1f71f42431 -#: ../../source/user-docs/getting_help.rst:26 -msgid "" -"You can view the message archive of this forum on the |project_name| users " -"group page at:" -msgstr "" -"Anda dapat membaca dan menelusuri arsip pertanyaan yang diajukan ke halaman " -"grup pengguna |project_name| pada:" - -# 5c2202e2e56e4297ba1d071bbd468fbc -#: ../../source/user-docs/getting_help.rst:29 -msgid "https://groups.google.com/forum/?fromgroups#!forum/inasafe-users" -msgstr "https://groups.google.com/forum/?fromgroups#!forum/inasafe-users" - -# 2d5fc492547546fd8859c209230c9584 -#: ../../source/user-docs/getting_help.rst:33 -msgid "Localised help" -msgstr "Bantuan lokal" - -# 6998245b74e44c7691bcd17fd5b439d4 -#: ../../source/user-docs/getting_help.rst:35 -msgid "" -"For users in Indonesia, there is a Facebook group where you can request help " -"in Indonesian language." -msgstr "" -"Untuk pengguna di Indonesia, terdapat grup Facebook dimana Anda dapat " -"meminta bantuan dalam Bahasa Indonesia." - -# 117d1cb0791046be965e4aa4ccc793fb -#: ../../source/user-docs/getting_help.rst:38 -msgid "https://www.facebook.com/groups/forumQGISindo/" -msgstr "https://www.facebook.com/groups/forumQGISindo/" - -# 083f394c64464ebcac5fcbc4f69fcae8 -#: ../../source/user-docs/getting_help.rst:42 -msgid "Getting involved" -msgstr "Ikut Terlibat" - -# 89ec464443cb4915b5679e6bc8e72293 -#: ../../source/user-docs/getting_help.rst:44 -msgid "" -"To help in the development of |project_name| or report a bug, visit :ref:" -"`getting_involved`." -msgstr "" -"Untuk membantu dalam pengembangan |project_name| atau melaporkan *bug*, " -"kunjungi :ref:`getting_involved`." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/getting_involved.po b/docs/i18n/id/LC_MESSAGES/user-docs/getting_involved.po deleted file mode 100644 index 2d38b494..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/getting_involved.po +++ /dev/null @@ -1,255 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -# Emir Hartato , 2013 -# Emir Hartato , 2013 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -# Riangga Sujatmiko , 2013 -# Riangga Sujatmiko , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 02:40+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 10f3c32b38e545bfa7f2c1c575f4ad9b -#: ../../source/user-docs/getting_involved.rst:4 -msgid "Getting involved" -msgstr "Ikut Terlibat" - -# e22ddfa2410a40e695f95198f3332d7f -#: ../../source/user-docs/getting_involved.rst:6 -msgid "" -"If you like the work we are doing with |project_name| and would like to " -"contribute, we will welcome your involvement. We spend a lot of time and " -"effort trying to make a robust, user-friendly and useful software platform, " -"but there is no substitute for having interested users participating and " -"sharing their needs, problems and successes! Here are a few simple ways you " -"can get involved:" -msgstr "" -"Jika Anda menyukai pekerjaan yang kita lakukan di |project_name| dan ingin " -"berkontribusi, kami akan menyambut keterlibatan Anda. Kami menghabiskan " -"banyak waktu dan usaha untuk mencoba membuatnya kokoh, pengguna dan platform " -"perangkat lunak berguna secara ramah, tetapi tidak ada pengganti untuk " -"pengguna yang memiliki ketertarikan berpartisipasi dan berbagi kebutuhan " -"mereka, masalah, serta keberhasilan! Berikut ini cara yang cukup sederhana " -"yang dapat Anda lakukan:" - -# b104e63d6df647159e6a74d3660de862 -#: ../../source/user-docs/getting_involved.rst:17 -msgid "Visit our web site!" -msgstr "Kunjungi situs web kami!" - -# 02760de8fb6949578e5dc710d4913b54 -#: ../../source/user-docs/getting_involved.rst:19 -msgid "" -"The web site will always contain the latest information on how to use |" -"project_name|. We encourage anyone who wants to get involved with the " -"project to first read the content available on the site to familiarise " -"themselves with the content. The website is available at:" -msgstr "" -"Situs akan selalu menampilkan informasi terbaru tentang cara menggunakan |" -"project_name|. Kami mendorong siapapun yang ingin terlibat dalam proyek ini " -"untuk pertama-tama membaca konten yang tersedia pada situs ini untuk " -"membiasakan diri dengan kontennya. Situs tersedia di: " - -# ceafbf5b860042b0a836885b04ce2354 -#: ../../source/user-docs/getting_involved.rst:25 -msgid "http://inasafe.org" -msgstr "http://inasafe.org" - -# 7cde5d1c0f0f4fe38093fe6dcfcdde59 -#: ../../source/user-docs/getting_involved.rst:27 -msgid "" -"If you need help in solving problems with |project_name| take a look at :ref:" -"`getting_help`." -msgstr "" -"Jika Anda membutuhkan bantuan dalam menyelesaikan suatu masalah dengan |" -"project_name| Anda dapat melihat di :ref:`getting_help`." - -# c9b2d3abfffa4d82847ada1cc7d92e44 -#: ../../source/user-docs/getting_involved.rst:33 -msgid "Add yourself to the |project_name| Usermap!" -msgstr "Tambahkan diri Anda ke peta pengguna |project_name| !" - -# e8ef6579ea514adb8b78f040623050f0 -#: ../../source/user-docs/getting_involved.rst:35 -msgid "" -"As a User/Trainer/Developer of |project_name| you are encouraged to add " -"yourself to the Usermap page available at:" -msgstr "" -"Sebagai Pengguna/Pelatih/Pengembang dari |project_name| anda disarankan " -"untuk menambahkan diri anda pada Halaman Situs Peta Pengguna yang tersedia " -"di: " - -# 9fc70633292443a6872a0adb6de27ccb -#: ../../source/user-docs/getting_involved.rst:38 -msgid "http://users.inasafe.org/" -msgstr "http://users.inasafe.org/" - -# 10c8f7ae91a344798b541d8ee6ea52b7 -#: ../../source/user-docs/getting_involved.rst:40 -msgid "" -"Use the :guilabel:`Add me to map!` button on the left side and point the " -"cross to the place where you live. Fill in your user data and click on :" -"guilabel:`Done!`. Here you may also download the coordinates of all entered |" -"project_name| users as a CSV file." -msgstr "" -"Gunakan tombol :guilabel:`Add me to map!` pada sisi kiri dan tunjukan dimana " -"lokasi anda tinggal. Isilah data pengguna anda dan klik :guilabel:`Done!`. " -"Anda juga dapat mendownload koordinat dari seluruh pengguna |project_name| " -"dalam format berkas CSV." - -# 33f2a0b492164b45bcf3ab8878914eef -#: ../../source/user-docs/getting_involved.rst:49 -msgid "Use our issue tracker!" -msgstr "Gunakan pencarian isu kami!" - -# e55592dfc27b45da8eba4fba373dbbd7 -#: ../../source/user-docs/getting_involved.rst:51 -msgid "We maintain an issue tracker here:" -msgstr "Kami mengelola pencarian isu disini:" - -# d877de984044435484cda3816cd06142 -#: ../../source/user-docs/getting_involved.rst:53 -msgid "http://github.com/AIFDR/inasafe/issues" -msgstr "http://github.com/AIFDR/inasafe/issues" - -# 77dbd0dfe95a474abbad2a9143436e05 -#: ../../source/user-docs/getting_involved.rst:55 -msgid "" -"On this page you can browse and search existing issues and create new " -"issues. The issue tracker is a great place to let us know about specific " -"bugs you encounter or tell us about new features you would like to see in " -"the software. Information about how to correctly file an issue is available " -"in the :ref:`issue_howto` section." -msgstr "" -"Pada halaman ini anda dapat menelusuri dan mencari isu-isu yang ada atau " -"membuat isu baru. Pelacak isu merupakan tempat yang bagus untuk memberitahu " -"kami kesalahan spesifik yang anda temui atau memberi tahu kami tentang fitur " -"baru yang anda ingin lihat pada perangkat lunak. Informasi tentang bagaimana " -"memperbaiki berkas pada sebuah isu tersedia pada bagian :ref:`issue_howto`" - -# cb9e95831f7a48c0a6c30869d34c776a -#: ../../source/user-docs/getting_involved.rst:64 -msgid "Chat live to developers on IRC!" -msgstr "Mengobrol langsung dengan pengembang di IRC!" - -# 71b015aad47b486080b5d9c10a4496b9 -#: ../../source/user-docs/getting_involved.rst:66 -msgid "" -"Internet Relay Chat (IRC) is a chat room environment where you can talk (by " -"typing messages) to other |project_name| users and developers to discuss " -"ideas and get help. You can use your own IRC client and join #inasafe on the " -"irc.freenode.net network. We also have a direct link on http://www.inasafe." -"org. Click on :guilabel:`Chat live!` at the top of the page and join us in " -"the channel. Alternatively, you can use your web browser to join the chat " -"room using the link below:" -msgstr "" -"Internet Relay Chat (IRC) merupakan ruang berdiskusi di mana anda dapat " -"berbicara (dengan mengetik pesan) kepada pengguna dan pengembang |" -"project_name| untuk menyampaikan ide atau mendapatkan bantuan. Anda dapat " -"menggunakan klien IRC anda sendiri atau bergabung di #inasafe pada jaringan " -"irc.freenode.net. Kami juga memiliki tautan langsung pada situs kami http://" -"www.inasafe.org. Cukup klik pada :guilabel:`Chat live!` dan bergabung pada " -"kanal kami. Alternatif lain, anda dapat menggunakan peramban web anda untuk " -"bergabung dalam ruang diskusi menggunakan tautan di bawah ini:" - -# e7ddfa30b6594199bbd947430c9a967f -#: ../../source/user-docs/getting_involved.rst:77 -msgid "http://webchat.freenode.net/" -msgstr "http://webchat.freenode.net/" - -# 872473fd878e44f7b4625ba4087975a5 -#: ../../source/user-docs/getting_involved.rst:79 -msgid "" -"On the form that appears, choose a user name, enter :kbd:`#inasafe` in the :" -"guilabel:`Channels:` box and complete the rest of the details in the form. " -"After logging in wait a few moments and you will be taken to the #inasafe " -"channel." -msgstr "" -"Pada form yang muncul, pilih nama pengguna, masukan :kbd:`#inasafe di kotak :" -"guilabel:`Channels:` dan lengkapi sisa rincian di form. Setelah masuk tunggu " -"beberapa saat dan Anda akan dibawa ke saluran #inasafe." - -# 1a8b2af544bd4c7dbfd1d6d5754de9a6 -#: ../../source/user-docs/getting_involved.rst:84 -msgid "" -"Other people in the room may not be actively watching the channel, so just " -"ask your question, leave the chat window open and check back every now and " -"then until you see other chat room members become active." -msgstr "" -"Pengguna lain di ruangan itu mungkin tidak aktif melihat saluran tersebut, " -"jadi silahkan ajukan pertanyaan Anda dan tinggalkan jendela obrolan dan " -"periksa kembali setiap pertanyaan sampai anda melihat ada anggota yang aktif " -"di jendela obrolan tersebut. " - -# 0757c899b8814ba8b9cb8cbbf5ab13af -#: ../../source/user-docs/getting_involved.rst:91 -msgid "Submit your code!" -msgstr "Masukkan kode Anda!" - -# 71d545c9a215494da0a449486e32bef8 -#: ../../source/user-docs/getting_involved.rst:93 -msgid "" -"We must emphasise that |project_name| is **free** and **open source**. That " -"means anyone (or any organisation) can freely modify, adapt and improve the " -"software. We welcome any contributions to |project_name|." -msgstr "" -"Kami ingin menekankan bahwa |project_name| adalah **Gratis** dan " -"**Terbuka**. Artinya siapapun (atau organisasi apapun) dapat dengan bebas " -"memodifikasi, mengadaptasi, dan mengembangkan perangkat lunak. Kami akan " -"menerima segala kontribusi untuk |project_name|." - -# d14e369408f7418cb4c9022be05c8b55 -#: ../../source/user-docs/getting_involved.rst:98 -msgid "" -"The easiest way to do this is to `fork `_ the |project_name| code base on GitHub and then send us a " -"`pull request `_." -msgstr "" -"Cara yang paling mudah untuk melakukan ini `fork `_ |project_name| kode dasar berdasarkan GitHub dan " -"kemudian mengirim kepada kami `pull request `_." - -# 0efae9923876460290104843594895b4 -#: ../../source/user-docs/getting_involved.rst:103 -msgid "" -"We also welcome small improvements, translations or other fixes via the " -"issue management system mentioned above." -msgstr "" -"Kami juga melayani pengembangan kecil, terjemahan atau perbaikan lainnya " -"melalui sistem manajemen isu disebutkan di atas." - -# d765d7ec61554a159afd36833351d461 -#: ../../source/user-docs/getting_involved.rst:106 -msgid "" -"We have strict requirements that all code submitted to |project_name| is " -"compliant with high coding_standards and is continually tested by a " -"comprehensive regression testing system. We have this requirement in place " -"to ensure a good experience for our users and to ensure that users can have " -"confidence in the results produced by |project_name|." -msgstr "" -"Kami memiliki persyaratan yang ketat bahwa semua kode yang dikirim ke |" -"project_name| harus memenuhi persyaratan yang sesuai coding_standards dan " -"terus diuji oleh sistem pengujian regresi lengkap. Kami menerapkan " -"persyaratan ini di tempat untuk memastikan pengalaman yang baik bagi " -"pengguna kami dan memastikan bahwa pengguna dapat meyakini kualitas hasil " -"yang diproduksi oleh |project_name|." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.po b/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.po deleted file mode 100644 index 393cdb87..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.po +++ /dev/null @@ -1,144 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2016\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# d531e3f978f54de38aeae9a6bcab1499 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:6 -msgid "Categorical Hazard Building Impact Function" -msgstr "Fungsi Dampak Bangunan untuk Data Ancaman Terkategori" - -# 079c9d8416a14432a6a4dff6c9164b89 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:9 -msgid "Overview" -msgstr "Gambaran umum" - -# f3fc4d228e194db6a512118729126a16 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:11 -msgid "**Unique Identifier**: Categorical Hazard Building Impact Function" -msgstr "" -"**Unique Identifier**: Fungsi Dampak Bangunan untuk Data Ancaman Terkategori" - -# 593bc107d61b49ca9f4013ff6ecda462 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:14 -msgid "**Author**: ESSC" -msgstr "**Author**: ESSC" - -# 7b98f0c42dc74606adfa1e40af9a28f9 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:17 -msgid "**Rating**: 3" -msgstr "**Rating**: 3" - -# 2b944c65e911402d9beb6a85169ed875 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:20 -msgid "**Title**: Be impacted by each category" -msgstr "**Judul**: Terdampak oleh setiap kategori bencana" - -# c67cd409298741788a3fba787817a9e4 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of categorized hazard in raster format " -"on structure/building raster layer." -msgstr "" -"**Synopsis**: Untuk menghitung dampak ancaman terkategori dalam format " -"raster pada layer raster struktur/bangunan." - -# 6d4e16241b9641f09d107f2a12e4da96 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:26 -msgid "" -"**Actions**: Provide details about how many building would likely need to be" -" affected for each category." -msgstr "" -"**Tindakan**: Memberikan rincian mengenai berapa banyak bangunan yang " -"mungkin akan terdampak untuk setiap kategori." - -# bc8ec2c88cff4875842d3d754e500cd1 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:29 -msgid "" -"**Hazard Input**: A hazard raster layer where each cell represents the " -"category of the hazard. There should be 3 categories: 1, 2, and 3." -msgstr "" -"**Masukan data ancaman**: Layer raster ancaman dimana setiap sel mewakili " -"kategori ancaman. Harus terdapat 3 kategori: 1, 2, dan 3." - -# 67af5f0511b4423eb8215d27617179f6 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:32 -msgid "" -"**Exposure Input**: Vector polygon layer which can be extracted from OSM " -"where each polygon represents the footprint of a building." -msgstr "" -"**Masukan data keterpaparan**: *Layer* vektor poligon yang diekstrak dari " -"OSM dimana setiap poligon merepresentasikan bangunan." - -# c634b7c48e884727b48fc73553b698fb -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:35 -msgid "" -"**Output**: Map of structure exposed to high category and a table with " -"number of structure in each category" -msgstr "" -"**Output**: Peta bangunan terpapar oleh ancaman kategori tinggi dan tabel " -"dengan jumlah bangunan di setiap kategori" - -# 9f5cf99f309d47d1a61f911e320eac14 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:39 -msgid "Details" -msgstr "Rincian" - -# 283fab652b2d4bbb8ef6d5e566a26f45 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:41 -msgid "" -"This function will calculate how many buildings will be affected per each " -"category for all categories in the hazard layer. Currently there should be 3" -" categories in the hazard layer. After that it will show the result and the " -"total of buildings that will be affected for the hazard given." -msgstr "" -"Fungsi ini akan menghitung berapa banyak bangunan yang akan terkena dampak " -"per setiap kategori untuk semua kategori pada layer data ancaman. Saat ini " -"seharusnya terdapat 3 kategori pada layer data ancaman. Setelah itu akan " -"muncul hasil dan jumlah bangunan yang akan terkena dampak untuk ancaman yang" -" diberikan." - -# e9d390a5fb17455b85877a667ca4f8db -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:44 -msgid "Doc String" -msgstr "String Dokumen" - -# 3cf56bff4754466f8dbb12c8ce8fec13 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:46 -msgid "Impact plugin for categorising hazard impact on building data" -msgstr "" -"*Plugin* dampak untuk mengkategorikan dampak ancaman pada data bangunan" - -# 5b73555cbd714cfc9409dc1d8b0daedd -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:48 -msgid "" -":author ESSC :rating 3 :param requires category=='hazard' and" -" unit=='categorised' and " -"layertype=='raster'" -msgstr "" -":author ESSC :rating 3 :param membutuhkan category=='hazard' dan " -"unit=='categorised' dan layertype=='raster'" - -# 56bf0498bcf74994b43731ad931296d4 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardBuildingImpactFunction.rst:52 -msgid "" -":param requires category=='exposure' and " -"subcategory=='structure' and layertype=='vector'" -msgstr "" -":param membutuhkan category=='exposure' dan subcategory=='structure' dan " -"layertype=='vector'" diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.po b/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.po deleted file mode 100644 index d7e7a916..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-22 12:28\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 0c772de201d7402ab35b9f8f67f28d0a -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:6 -msgid "Categorical Hazard Population Impact Function" -msgstr "Kategorisasi Fungsi Dampak Bencana Terhadap Penduduk" - -# 83ac24fdf3d6477f889e90dec6e55001 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:9 -msgid "Overview" -msgstr "Gambaran umum" - -# 252c180e127f4f6e8aa79d6b69a4550f -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:11 -msgid "**Unique Identifier**: Categorical Hazard Population Impact Function" -msgstr "" -"**Identifikasi Unik**: Kategorisasi Fungsi Dampak Bencana Terhadap Penduduk" - -# 017c8719075b49a9a562a10e07bb2853 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:14 -msgid "**Author**: ESSC" -msgstr "**Author**: ESSC" - -# e7eb9fe7154446628f6caaea24070570 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:17 -msgid "**Rating**: 3" -msgstr "**Rating**: 3" - -# 5aabcfd392e04748b9ce529827992c72 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:20 -msgid "**Title**: Be affected by each hazard category" -msgstr "**Judul**: Terdampak oleh setiap kategori bencana" - -# 22ccd4ecc56a49bfada7230eb972fbfa -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of categorized hazards in raster format " -"on population raster layer." -msgstr "" -"**Sinopsis**: Untuk menghitung dampak ancaman yang dikategorikan dalam " -"format raster pada layer raster populasi." - -# db0d6b1630024622ac535bfcc9dad82f -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:26 -msgid "" -"**Actions**: Provide details about how many people would likely need to be " -"impacted for each category." -msgstr "" -"**Aksi**: Menyediakan rincian mengenai berapa banyak orang yang akan " -"terdampak untuk setiap kategori." - -# 8f9588a8150645069d42dfd61163771d -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:29 -msgid "" -"**Hazard Input**: A hazard raster layer where each cell represents the " -"category of the hazard. There should be 3 categories: 1, 2, and 3." -msgstr "" -"**Masukan Bencana**: Layer raster ancaman dimana setiap sel mewakili " -"kategori ancaman. Hal ini harus ada 3 kategori: 1, 2, dan 3." - -# ba08215b7f7c41b0b4eb4869c12dcec2 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:32 -msgid "" -"**Exposure Input**: An exposure raster layer where each cell represent " -"population count." -msgstr "" -"**Input Keterpaparan**: Layer data keterpaparan berjenis raster data dimana " -"setiap sel mewakili sejumlah populasi penduduk." - -# 7821f714c9a146b083fc191907dd3fd8 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:35 -msgid "" -"**Output**: Map of population exposed to high category and a table with " -"number of people in each category" -msgstr "" -"**Hasil**: Peta populasi terkena untuk kategori tinggi dan tabel dengan " -"jumlah orang disetiap kategorinya" - -# 73679185d5f5415a8f07cba479da3487 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:38 -msgid "**Limitation**: The number of categories is three." -msgstr "**Batasan**: Jumlah kategori ada tiga." - -# 7f9ff5071cba4a89bed838a72ebca544 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:42 -msgid "Details" -msgstr "Rincian" - -# e3db9ccba76545e192c0b27755ddd302 -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:44 -msgid "" -"This function will calculate how many people will be impacted per each " -"category for all categories in the hazard layer. Currently there should be 3" -" categories in the hazard layer. After that it will show the result and the " -"total amount of people that will be impacted for the hazard given." -msgstr "" -"Fungsi ini akan menghitung berapa banyak orang yang akan terkena dampak per " -"setiap kategori untuk semua kategori pada layer ancaman. Saat ini seharusnya" -" terdapat 3 kategori pada layer data ancaman. Setelah itu akan muncul hasil " -"dan jumlah orang yang akan terkena dampak berdasarkan ancaman yang " -"diberikan." - -# 2c86918517624f3e97326062474a458c -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:47 -msgid "Doc String" -msgstr "String Dokumen" - -# 7fc8ec619a8a466e92be6a80617e568d -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:49 -msgid "Plugin for impact of population as derived by categorised hazard." -msgstr "Plugin untuk dampak populasi diperoleh dari ancaman diketegorikan." - -# 4625dd2d0e934f8ba03d47d037ee2a2a -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:51 -msgid "" -":author ESSC :rating 3 :param requires category=='hazard' and" -" unit=='categorised' and " -"layertype=='raster'" -msgstr "" -":author ESSC :rating 3 :param membutuhkan category=='hazard' dan " -"unit=='categorised' dan layertype=='raster'" - -# d854fbe88b52404a84b0c8d5ed8b352e -#: ../../source/user-docs/impact-function-docs/CategoricalHazardPopulationImpactFunction.rst:55 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr "" -":param membutuhkan category=='exposure' dan subcategory=='population' dan " -"layertype=='raster'" diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.po b/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.po deleted file mode 100644 index b83c2b6e..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.po +++ /dev/null @@ -1,135 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -# Emir Hartato , 2013 -# Emir Hartato , 2013 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2018-03-05 06:30+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 1a506fe9dde34b53ba137c31227484e8 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:6 -msgid "Categorised Hazard Population Impact Function" -msgstr "Kategorisasi Fungsi Dampak Bencana Terhadap Penduduk" - -# 78ba30c66afd4cfcad9e493926d61f7d -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:9 -msgid "Overview" -msgstr "Gambaran umum" - -# d1a20fe1380341ca94504e461b24fb23 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:11 -msgid "**Unique Identifier**: Categorised Hazard Population Impact Function" -msgstr "**Identifikasi Unik**: Kategorisasi Fungsi Dampak Bencana Terhadap Penduduk" - -# bc1dc53d43274052a4b36ac9dcd91680 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:14 -msgid "**Author**: AIFDR" -msgstr "**Pembuat**: AIFDR" - -# 189ef9893ecf41cbabfd9dc8f3d60c1c -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:17 -msgid "**Rating**: 2" -msgstr "**Rating**: 2" - -# bcf151f26d514029aee65fd0b085fdf0 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:20 -msgid "**Title**: Be impacted" -msgstr "**Judul**: Terdampak" - -# a8f820069ac34896b2d8af29703c07bd -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of categorized hazards in raster format " -"on population raster layer." -msgstr "**Sinopsis**: Untuk menghitung dampak ancaman yang dikategorikan dalam format raster pada layer raster populasi." - -# 5bacf94f7a9b45af9a0cd14a62237390 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:26 -msgid "" -"**Actions**: Provide details about how many people would likely need to be " -"impacted for each category." -msgstr "**Aksi**: Menyediakan rincian mengenai berapa banyak orang yang akan terdampak untuk setiap kategori." - -# ceb64bee44364db39825fb82e81bfc82 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:29 -msgid "" -"**Hazard Input**: A hazard raster layer where each cell represents the " -"category of the hazard. There should be 3 categories: 1, 2, and 3." -msgstr "**Masukan Bencana**: Layer raster ancaman dimana setiap sel mewakili kategori ancaman. Hal ini harus ada 3 kategori: 1, 2, dan 3." - -# 79a8c2785d554204a7dc65eff47b1e59 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:32 -msgid "" -"**Exposure Input**: An exposure raster layer where each cell represent " -"population count." -msgstr "**Input Keterpaparan**: Layer data keterpaparan berjenis raster data dimana setiap sel mewakili sejumlah populasi penduduk." - -# 2e61bb7e50574c1396445993008f891c -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:35 -msgid "" -"**Output**: Map of population exposed to high category and a table with " -"number of people in each category" -msgstr "**Hasil**: Peta populasi terkena untuk kategori tinggi dan tabel dengan jumlah orang disetiap kategorinya" - -# 10d81f7088a34353a6d447e8e18cc878 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:38 -msgid "**Limitation**: The number of categories is three." -msgstr "**Batasan**: Jumlah kategori ada tiga." - -# 79bdbe8352644874b0c38a0259e62b36 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:42 -msgid "Details" -msgstr "Detail" - -# 640fa7d446a74e8a9193f20172e77f88 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:44 -msgid "" -"This function will calculate how many people will be impacted per each " -"category for all categories in the hazard layer. Currently there should be 3" -" categories in the hazard layer. After that it will show the result and the " -"total amount of people that will be impacted for the hazard given." -msgstr "Fungsi ini akan menghitung berapa banyak orang yang akan terkena dampak per setiap kategori untuk semua kategori pada layer ancaman. Saat ini seharusnya terdapat 3 kategori pada layer data ancaman. Setelah itu akan muncul hasil dan jumlah orang yang akan terkena dampak berdasarkan ancaman yang diberikan." - -# 530d2a5ce61548d98a849d811f4334dc -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:47 -msgid "Doc String" -msgstr "String Dokumen" - -# 83189c167c664fb985f0bd204b2a8a48 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:49 -msgid "Plugin for impact of population as derived by categorised hazard." -msgstr "Plugin untuk dampak populasi diperoleh dari ancaman diketegorikan." - -# 124e4939db24411eace3e9f29f0b97f3 -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:51 -msgid "" -":author AIFDR :rating 2 :param requires category=='hazard' and" -" unit=='normalised' and " -"layertype=='raster'" -msgstr ":author AIFDR :rating 2 :param membutuhkan category=='hazard' dan unit=='normalised' dan layertype=='raster'" - -# a384987b02324caf9d757a75a2b1e34c -#: ../../source/user-docs/impact-function-docs/CategorisedHazardPopulationImpactFunction.rst:55 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr ":param membutuhkan category=='exposure' dan subcategory=='population' dan layertype=='raster'" diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.po b/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.po deleted file mode 100644 index 7cd12af0..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.po +++ /dev/null @@ -1,80 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# mahardika fadmastuti , 2013 -# Emir Hartato , 2013 -# Emir Hartato , 2013 -# Imron Fauzi , 2014 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -# Vasanthi Hargyono , 2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2018-03-05 06:27+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# ffec091406a6429ea058c5d49677b6dd -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:6 -msgid "Earthquake Building Impact Function" -msgstr "Fungsi Bangunan Terdampak Gempa Bumi" - -# 5265165e0cc948b3a77751df24513e33 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:9 -msgid "Overview" -msgstr "Gambaran umum" - -# 5d45c0064edd4fefb8a4f4022aa3ba77 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:11 -msgid "**Unique Identifier**: Earthquake Building Impact Function" -msgstr "**Identifikasi Unik**: Fungsi Bangunan Terdampak Gempa Bumi" - -# 511d6c297c754a5e841a519856309c88 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:14 -msgid "**Title**: Be affected" -msgstr "**Judul**: Terdampak" - -# a0164d6630d445b9b3fd68e4e588493d -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:18 -msgid "Details" -msgstr "Rincian" - -# 9466753de09641eeaab4f5a1ba586cff -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:20 -msgid "No documentation found" -msgstr "Tidak ditemukan dokumentasi" - -# 22cac78fc9e14910b4c8cf45060028b5 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:23 -msgid "Doc String" -msgstr "String Dokumen" - -# 7a96aa7d1005473293a1a7e227a27d59 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:25 -msgid "Earthquake impact on building data." -msgstr "Dampak gempa bumi pada data bangunan." - -# e6eefd0413c043afa4760f6bfa0303e1 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:27 -msgid "" -":param requires category=='hazard' and " -"subcategory=='earthquake'" -msgstr ":param membutuhkan category=='hazard' dan subcategory=='earthquake'" - -# e631b0d16cba485abe8955e039266839 -#: ../../source/user-docs/impact-function-docs/EarthquakeBuildingImpactFunction.rst:29 -msgid "" -":param requires category=='exposure' and " -"subcategory=='structure' and layertype=='vector'" -msgstr ":param membutuhkan category=='exposure' dan subcategory=='structure' dan layertype=='vector'" diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/FloodBuildingImpactFunction.po b/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/FloodBuildingImpactFunction.po deleted file mode 100644 index ff7701df..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/FloodBuildingImpactFunction.po +++ /dev/null @@ -1,156 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# adityo dwijananto , 2013 -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -# Emir Hartato , 2013 -# Emir Hartato , 2013 -# harry mahardhika , 2014 -# Imron Fauzi , 2014 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -# Yantisa Akhadi , 2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2018-03-05 06:30+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 9ea4ebf55b464665b85b5777cd4b043d -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:6 -msgid "Flood Building Impact Function" -msgstr "Fungsi Bangunan Terdampak Banjir" - -# 7c2ec896698145898cdf0cbb4d4ba58b -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:9 -msgid "Overview" -msgstr "Gambaran umum" - -# 5a333aaa6f8b45f0bf3c573a2fd0255e -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:11 -msgid "**Unique Identifier**: Flood Building Impact Function" -msgstr "**Identifikasi Unik**: Fungsi Bangunan Terdampak Banjir" - -# 51bee1e209524e3fbacb9de5dfc24da2 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:14 -msgid "**Author**: Ole Nielsen, Kristy van Putten" -msgstr "**Pembuat**: Ole Nielsen, Kristy Van Putten" - -# 63ce160203bd424a9ca2650e040f49b7 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:17 -msgid "**Rating**: 0" -msgstr "**Rating**: 0" - -# 781afad2c3594d8db8a8c538277966bb -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:20 -msgid "**Title**: Be flooded" -msgstr "**Judul**: Terdampak Banjir" - -# b5d1ba3d3746423085ab4e1ad0934c43 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of (flood or tsunami) inundation on " -"building footprints originating from OpenStreetMap (OSM)." -msgstr "**Sinopsis**: Untuk menilai dampak genangan (banjir atau tsunami) terhadap gambaran bangunan yang berasal dari OpenStreetMap (OSM)." - -# 0eb038b8e8f745db93d443f8fad19dda -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:26 -msgid "" -"**Actions**: Provide details about where critical infrastructure might be " -"flooded" -msgstr "**Actions**: Menyediakan rincian mengenai dimana infrastruktur kritis yang mungkin tergenang banjir" - -# 105117d124fc4e4ba5dccca495dc957e -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:29 -msgid "" -"**Hazard Input**: A hazard raster layer where each cell represents flood " -"depth (in meters), or a vector polygon layer where each polygon represents " -"an inundated area. In the latter case, the following attributes are " -"recognised (in order): \"affected\" (True or False) or \"FLOODPRONE\" (Yes " -"or No). (True may be represented as 1, False as 0" -msgstr "**Input Ancaman**: Layer raster ancaman dimana setiap sel mewakili kedalaman banjir (dalam meter), atau layer vektor poligon dimana setiap poligon mewakili area yang tergenang. Dalam kasus terakhir, atribut berikut dikenal (dalam urutan): \"affected\" (True atau False) atau \"FLOODPRONE\" (Yes atau No). (True bisa diwakilkan sebagai 1, False sebagai 0" - -# f8c9c6f7b07e4c50a79c4d0f6b7f037c -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:32 -msgid "" -"**Exposure Input**: Vector polygon or point layer extracted from OSM where " -"each feature represents the footprint of a building." -msgstr "**Input Data Keterpaparan**: Poligon Vektor atau Layer Titik yang diambil dari OSM dimana masing-masing fitur merepresentasikan batas tapak bangunan." - -# 13450e065ee840329d4a4cc5e324abbd -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:35 -msgid "" -"**Output**: Vector layer contains building is estimated to be flooded and " -"the breakdown of the building by type." -msgstr "**Output**: Layer vektor berisi bangunan yang diperkirakan akan terkena banjir dan kerusakan bangunan menurut jenis bangunannya. " - -# 9ef28e1c3b5f4b73b4f23b89b78a244a -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:38 -msgid "" -"**Limitation**: This function only flags buildings as impacted or not either" -" based on a fixed threshold in case of raster hazard or the the attributes " -"mentioned under input in case of vector hazard." -msgstr "**Batasan**: Fungsi ini hanya memberi tanda bangunan sebagai terdampak atau tidak berdasarkan ambang batas yang ditetapkan untuk kasus ancaman (raster data) atau data atribut yang telah dilengkapi saat input data untuk kasus ancaman (vektor data)." - -# 6e4e68ac4d024916859ea4269e40377f -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:42 -msgid "Details" -msgstr "Detail" - -# 4345ac7c69ac4e858592ef5d6b9feede -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:44 -msgid "" -"The inundation status is calculated for each building (using the centroid if" -" it is a polygon) based on the hazard levels provided. if the hazard is " -"given as a raster a threshold of 1 meter is used. This is configurable " -"through the InaSAFE interface. If the hazard is given as a vector polygon " -"layer buildings are considered to be impacted depending on the value of " -"hazard attributes (in order) \"affected\" or \"FLOODPRONE\": If a building " -"is in a region that has attribute \"affected\" set to True (or 1) it is " -"impacted. If attribute \"affected\" does not exist but \"FLOODPRONE\" does, " -"then the building is considered impacted if \"FLOODPRONE\" is \"yes\". If " -"neither \"affected\" nor \"FLOODPRONE\" is available, a building will be " -"impacted if it belongs to any polygon. The latter behaviour is implemented " -"through the attribute \"inapolygon\" which is automatically assigned." -msgstr "Status genangan dihitung untuk setiap bangunan (menggunakan sentroid jika berupa poligon) berdasarkan tingkat bahaya disediakan. Apabila bahaya tersebut diberikan sebagai raster maka ambang batas 1 meter digunakan. Hal ini dapat dikonfigurasi melalui antarmuka InaSAFE. Jika bahaya diberikan sebagai bangunan poligon vektor lapisan dianggap terpengaruh tergantung pada nilai atribut bahaya (dalam urutan) \"affected\" atau \"FLOODPRONE\": Jika sebuah bangunan di wilayah yang memiliki atribut \"affected\" bernilai True (atau 1) maka bangunan itu terkena dampak. Jika atribut \"terkena\" tidak ada tapi \"FLOODPRONE\" ada, maka bangunan dianggap berdampak jika \"FLOODPRONE\" bernila \"yes\". Jika tidak ada \"affected\" atau \"FLOODPRONE\" yang tersedia, bangunan akan terkena dampak jika dimiliki oleh poligon manapun. Perilaku yang terakhir diimplementasikan melalui \"\" atribut inapolygon yang secara otomatis ditetapkan." - -# f6f80223af4c4d699eec0dbce3877c17 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:47 -msgid "Doc String" -msgstr "String Dokumen" - -# d9af1e2f55fb465b94a08b7f69166797 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:49 -msgid "Inundation impact on building data." -msgstr "Dampak genangan pada data bangunan." - -# 513c6183036e4037a4919a65c4986ca4 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:51 -msgid "" -":author Ole Nielsen, Kristy van Putten # this rating below is only for " -"testing a function, not the real one :rating 0 :param requires " -"category=='hazard' and subcategory in ['flood', " -"'tsunami']" -msgstr ":author Ole Nielsen, Kristy van Putten # penilaian di bawah ini hanya untuk menguji fungsi, bukan yang sebenarnya :rating 0 :param membutuhkan category=='hazard' dan subcategory dalam ['flood', 'tsunami']" - -# 7816f35b9db348b697f8c5873cc4e761 -#: ../../source/user-docs/impact-function-docs/FloodBuildingImpactFunction.rst:56 -msgid "" -":param requires category=='exposure' and " -"subcategory=='structure' and layertype=='vector'" -msgstr ":param membutuhkan category=='exposure' dan subcategory=='structure' dan layertype=='vector'" diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunction.po b/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunction.po deleted file mode 100644 index 8db8bd44..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunction.po +++ /dev/null @@ -1,151 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# adityo dwijananto , 2013-2014 -# mahardika fadmastuti , 2013 -# elida nurrohmah , 2014 -# Emir Hartato , 2013 -# Emir Hartato , 2013 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# Imron Fauzi , 2014 -# Werner Macho , 2013 -# mahardika fadmastuti , 2013-2014 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -# Vasanthi Hargyono , 2014 -# Werner Macho , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2018-03-05 06:30+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 2c7d32f0224f4462a77987ad05b22553 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:6 -msgid "Flood Evacuation Function" -msgstr "Fungsi Evakuasi Banjir" - -# 8e74f212433d4e35b7144e2d422da95c -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:9 -msgid "Overview" -msgstr "Gambaran umum" - -# 7b949f1b5b1e4ce79560b865110e7f15 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:11 -msgid "**Unique Identifier**: Flood Evacuation Function" -msgstr "**Identifikasi Unik**: Fungsi Evakuasi Banjir" - -# a3a7311d9f0d486e93b8bd3fdce6d7b1 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:14 -msgid "**Author**: AIFDR" -msgstr "**Pembuat**: AIFDR" - -# b7660790d5564d48a9e78a820bbbdacb -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:17 -msgid "**Rating**: 4" -msgstr "**Rating**: 4" - -# 357dac94f4774ecfbfe0fef666434c0a -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:20 -msgid "**Title**: Need evacuation" -msgstr "**Judul**: Butuh Evakuasi" - -# b7ba0cf1b96a47dbb03b33a610957cb6 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of flood inundation in raster format on " -"population." -msgstr "**Sinopsis**: Untuk menilai dampak genangan banjir dalam format raster pada penduduk." - -# 9d8a6268b6dc49b08190961486167c65 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:26 -msgid "" -"**Actions**: Provide details about how many people would likely need to be " -"evacuated, where they are located and what resources would be required to " -"support them." -msgstr "**Tindakan**: Menyediakan rincian mengenai berapa banyak orang yang perlu dievakuasi, dimana lokasi keberadaan mereka dan sumber daya apa yang dibutuhkan untuk mendukung keselamatan mereka." - -# 174909d93c5b4224b785521c983b4d63 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:29 -msgid "" -"**Hazard Input**: A hazard raster layer where each cell represents flood " -"depth (in meters)." -msgstr "**Input Ancaman**: *Layer* raster ancaman dimana setiap sel mewakili kedalaman banjir (dalam meter)." - -# 1f16ba6d0ac24904966afb62e66800e2 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:32 -msgid "" -"**Exposure Input**: An exposure raster layer where each cell represent " -"population count." -msgstr "**Input Keterpaparan**: Layer data keterpaparan berjenis data raster dimana setiap sel mewakili sejumlah populasi penduduk." - -# 93b51afc3681469d8aaaddef23519ef6 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:35 -msgid "" -"**Output**: Raster layer contains people affected and the minimum needs " -"based on the people affected." -msgstr "**Hasil**: Layer raster berisi penduduk terdampak dan kebutuhan minimum berdasarkan jumlah penduduk terdampak." - -# cdcf415de93444e7954d8d39e527c54f -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:38 -msgid "" -"**Limitation**: The default threshold of 1 meter was selected based on " -"consensus, not hard evidence." -msgstr "**Batasan**: Ambang batas standar 1 meter telah dipilih berdasarkan pada kesepakatan, bukan bukti yang nyata." - -# 65dd6ed2d9ef47398e31f63291fe9383 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:42 -msgid "Details" -msgstr "Detail" - -# 710a4654b812413cb2cbb6f217d95d78 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:44 -msgid "" -"The population subject to inundation exceeding a threshold (default 1m) is " -"calculated and returned as a raster layer. In addition the total number and " -"the required needs in terms of the BNPB (Perka 7) are reported. The " -"threshold can be changed and even contain multiple numbers in which case " -"evacuation and needs are calculated using the largest number with population" -" breakdowns provided for the smaller numbers. The population raster is " -"resampled to the resolution of the hazard raster and is rescaled so that the" -" resampled population counts reflect estimates of population count per " -"resampled cell. The resulting impact layer has the same resolution and " -"reflects population count per cell which are affected by inundation." -msgstr "Subyek populasi yang terkena genangan yang melebihi ambang batas (pengaturan awal adalah 1m) dihitung dan dikembalikan sebagai layer data raster. Selain itu, jumlah dan kebutuhan yang diperlukan sesuai aturan BNPB (Perka 7) dilaporkan. Ambang batas dapat diubah dan bahkan mengandung beberapa nilai dalam hal evakuasi dan kebutuhan dihitung menggunakan jumlah terbesar dengan populasi diperinci untuk jumlah yang lebih kecil. Layer data raster populasi diresampling dengan resolusi raster data ancaman dan direscaling sehingga jumlah populasi hasil resampling mencerminkan perkiraan jumlah populasi per sel dapat diresampling. Layer data dampak yang dihasilkan memiliki resolusi yang sama dan mencerminkan jumlah penduduk per sel yang dipengaruhi oleh adanya genangan." - -# a27537a4621846018082531cb4bc4f11 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:47 -msgid "Doc String" -msgstr "String Dokumen" - -# db97163d9574412fab00c6edfe3ae1dc -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:49 -msgid "Impact function for flood evacuation." -msgstr "Fungsi dampak untuk evakuasi banjir." - -# 35782d5e394240afbef684d6c3044cc8 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:51 -msgid "" -":author AIFDR :rating 4 :param requires category=='hazard' and" -" subcategory=='flood' and " -"layertype=='raster' and unit=='m'" -msgstr ":*author* AIFDR :rating 4 :param membutuhkan kategori=='hazard' dan subkategori=='banjir' dan jenislayer=='raster' dan unit=='m'" - -# 482e4b5483e745579e699f48bd05a72c -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunction.rst:55 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr ":param membutuhkan category=='exposure' dan subcategory=='population' dan layertype=='raster'" diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.po b/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.po deleted file mode 100644 index b408fd67..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.po +++ /dev/null @@ -1,135 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# mahardika fadmastuti , 2013 -# Emir Hartato , 2013 -# Emir Hartato , 2013 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2018-03-05 06:30+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# a35cd718834345e19649999d8fab548e -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:6 -msgid "Flood Evacuation Function Vector Hazard" -msgstr "Vektor Ancaman Fungsi Evakuasi Banjir" - -# 58920d362167440183f9fcaae797d264 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:9 -msgid "Overview" -msgstr "Gambaran umum" - -# 6996ddab3130453bb5e0a53893451396 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:11 -msgid "**Unique Identifier**: Flood Evacuation Function Vector Hazard" -msgstr "**Identifikasi Unitk**: Vektor Ancaman Fungsi Evakuasi Banjir" - -# 919efa1a4c734a1abb0257e71fd795c1 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:14 -msgid "**Author**: AIFDR" -msgstr "**Pembuat**: AIFDR" - -# 486b41755eed4045aebcaaa1010c32ad -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:17 -msgid "**Rating**: 4" -msgstr "**Rating**: 4" - -# 25891d26005f467ea6ead32d8f2e298d -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:20 -msgid "**Title**: Need evacuation" -msgstr "**Judul**: Butuh Evakuasi" - -# 7c4c06df55cf4b3c9c04eb4baf26e684 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of flood inundation in vector format on " -"population." -msgstr "**Sinopsis**: Untuk menilai dampak genangan dalam format vektor pada penduduk." - -# 5f88ad03980b498f880b0bac6569c426 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:26 -msgid "" -"**Actions**: Provide details about how many people would likely need to be " -"evacuated, where they are located and what resources would be required to " -"support them." -msgstr "**Tindakan**: Menyediakan rincian mengenai berapa banyak jumlah orang yang perlu dievakuasi, dimana keberadaan mereka, dan sumber daya apa yang dibutuhkan untuk mendukung keselamatan mereka." - -# 1fe4497513a24bcc841bec14f1d80aa2 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:29 -msgid "" -"**Hazard Input**: A hazard vector layer which has attribute affected the " -"value is either 1 or 0" -msgstr "**Input Ancaman**: Layer data ancaman untuk jenis data vektor yang harus memilki atribut terdampak bernilai antara 1 atau 0" - -# 4c61f64b6a6e43a19621400eff791bf4 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:32 -msgid "" -"**Exposure Input**: An exposure raster layer where each cell represent " -"population count." -msgstr "**Input Keterpaparan**: Layer data keterpaparan berjenis raster data dimana setiap sel mewakili sejumlah populasi penduduk." - -# eb1ebcb76cb74d01a57e91cc40eba306 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:35 -msgid "" -"**Output**: Vector layer contains people affected and the minimum needs " -"based on evacuation percentage." -msgstr "**Output**: Layer vektor berisi penduduk yang terdampak dan kebutuhan minimum berdasarkan pada persentase evakuasi." - -# 6308df4d138042778b3ca9009de116d3 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:39 -msgid "Details" -msgstr "Detail" - -# ed10f0cedfeb4882b7b34aa3009aaa77 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:41 -msgid "" -"The population subject to inundation is determined whether in an area which " -"affected or not. You can also set an evacuation percentage to calculate how " -"many percent of the total population affected to be evacuated. This number " -"will be used to estimate needs based on BNPB Perka 7/2008 minimum bantuan." -msgstr "Subyek populasi yang terkena genangan ditentukan berdasarkan apakah daerah tersebut terkena dampak atau tidak. Anda juga dapat mengatur persentase evakuasi untuk menghitung berapa persen total populasi yang terdampak untuk dievakuasi. Jumlah ini akan digunakan untuk estimasi berdasarkan pada |BNPB| Perka 7/2008 bantuan minimum." - -# 9fa588a6639b44cb810ed1416c33fca8 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:44 -msgid "Doc String" -msgstr "String Dokumen" - -# d26cd565ce9b44f2b0240fe6b4e7ad8c -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:46 -msgid "Impact function for vector flood evacuation." -msgstr "Fungsi dampak untuk vektor evakuasi banjir." - -# 326e2b47e6054d5da7835c415906dda1 -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:48 -msgid ":author AIFDR :rating 4" -msgstr ":author AIFDR :rating 4" - -# 24100e42e35d476688bdd03d4cde250a -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:51 -msgid "" -":param requires category=='hazard' and " -"subcategory=='flood' and layertype=='vector'" -msgstr ":param membutuhkan category=='hazard' dan subcategory=='flood' dan layertype=='vector'" - -# 8633bab0471248ada215ca057c5117fa -#: ../../source/user-docs/impact-function-docs/FloodEvacuationFunctionVectorHazard.rst:53 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr ":param membutuhkan category=='exposure' dan subcategory=='population' dan layertype=='raster'" diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/ITBFatalityFunction.po b/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/ITBFatalityFunction.po deleted file mode 100644 index f5b24d9d..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/ITBFatalityFunction.po +++ /dev/null @@ -1,322 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# mahardika fadmastuti , 2013 -# Emir Hartato , 2013 -# Emir Hartato , 2013 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# Imron Fauzi , 2014 -# Werner Macho , 2013 -# mahardika fadmastuti , 2013 -# Vasanthi Hargyono , 2013 -# Vasanthi Hargyono , 2013 -# Werner Macho , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2018-03-05 06:30+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 2133be90ba0d40cbb36db15852e36de9 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:6 -msgid "I T B Fatality Function" -msgstr "Fungsi Korban ITB" - -# ffe7ecc0768843fa80016be078a0b5d1 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:9 -msgid "Overview" -msgstr "Gambaran umum" - -# a2c46017e8f449a8b61fc26a4bc6ca59 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:11 -msgid "**Unique Identifier**: I T B Fatality Function" -msgstr "**Identifikasi Unik**: Fungsi Korban ITB" - -# cc2b327151d54e339ef6742cd1ef4e3e -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:14 -msgid "**Author**: Hadi Ghasemi" -msgstr "**Pembuat**: Hadi Ghasemi" - -# b19f15516c4b4bb68ae8ae7ed64c6b9e -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:17 -msgid "**Rating**: 3" -msgstr "**Rating**: 3" - -# d943622ab9d84ec8a1089888141e9706 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:20 -msgid "**Title**: Die or be displaced" -msgstr "**Judul**: Meninggal atau mengungsi" - -# 7a48a00bd05f4393a39f63f4eb6869c0 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impact of earthquake on population based on " -"earthquake model developed by ITB" -msgstr "**Sinposis**: Untuk menjalankan dampak gempa bumi pada populasi berdasarkan model gempa bumi yang dikembangkan oleh ITB" - -# da763113d9bb4642a90b44cc3bbd8719 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:26 -msgid "" -"**Actions**: Provide details about the population will be die or displaced" -msgstr "**Aksi**: Menyediakan detil tentang populasi yang akan meninggal dunia atau mengungsi" - -# 3d02d0a18e5e4f1fa434adca120fc76e -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:33 -msgid "**Citations**:" -msgstr "**Kutipan**:" - -# 2393d6a5307a474e9f5255565c406fb2 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:30 -msgid "" -"Indonesian Earthquake Building-Damage and Fatality Models and Post " -"Disaster Survey Guidelines Development Bali, 27-28 February 2012, 54pp." -msgstr "Indonesian Earthquake Building-Damage and Fatality Models and Post Disaster Survey Guidelines Development Bali, 27-28 February 2012, 54pp." - -# e5e2a078d81c48249c28439015cd3e8f -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:31 -msgid "" -"Allen, T. I., Wald, D. J., Earle, P. S., Marano, K. D., Hotovec, A. J., " -"Lin, K., and Hearne, M., 2009. An Atlas of ShakeMaps and population " -"exposure catalog for earthquake loss modeling, Bull. Earthq. Eng. 7, " -"701-718." -msgstr "Allen, T. I., Wald, D. J., Earle, P. S., Marano, K. D., Hotovec, A. J., Lin, K., and Hearne, M., 2009. An Atlas of ShakeMaps and population exposure catalog for earthquake loss modeling, Bull. Earthq. Eng. 7, 701-718." - -# 1848bc4e250041a29a971036314bc5fe -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:32 -msgid "" -"Jaiswal, K., and Wald, D., 2010. An empirical model for global earthquake" -" fatality estimation, Earthq. Spectra 26, 1017-1037." -msgstr "Jaiswal, K., and Wald, D., 2010. An empirical model for global earthquake fatality estimation, Earthq. Spectra 26, 1017-1037." - -# b0ef1102896442f5802d6c5753c6c9b4 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:44 -msgid "**Limitation**:" -msgstr "**Batasan**:" - -# 82dbd053275f41f2919d1dd6cd378ef7 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:36 -msgid "" -"The model is based on limited number of observed fatality rates during 4 " -"past fatal events." -msgstr "Model ini berdasarkan pada jumlah korban jiwa terbatas sewaktu 4 kejadian fatal yang telah terjadi." - -# 5681d39a249849579f833b379fcf7679 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:37 -msgid "" -"The model clearly over-predicts the fatality rates at intensities higher " -"than VIII." -msgstr "Model secara jelas memprediksi jumlah korban jiwa secara berlebih pada intensitas yang lebih tinggi daripada VIII." - -# c800dec064d14e6899f1d0e13f631faa -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:38 -msgid "" -"The model only estimates the expected fatality rate for a given intensity" -" level; however the associated uncertainty for the proposed model is not " -"addressed." -msgstr "Model ini hanya memperkirakan jumlah korban yang diperkirakan untuk satu tingkat intensitas; bagaimanapun hubungan ketidakyakinan untuk model yang diajukan tidak dilakukan." - -# 60b08159006a43f884616506e1554bbb -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:39 -msgid "There are few known mistakes in developing the current model:" -msgstr "Terdapat beberapa kesalahan yang diketahui pada model yang sedang dikembangkan saat ini:" - -# fb1ad5195f624281a5328cf63c92982f -# c53fe501a4b3479f87b1af3b3c78efee -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:41 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:106 -msgid "rounding MMI values to the nearest 0.5," -msgstr "nilai MMI berkisar paling dekat 0.5," - -# 4511da39edbf43f1aaebd70ea4a3dbcf -# e1b7c27ab68047a4a421ae2a021bcc0a -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:42 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:107 -msgid "Implementing Finite-Fault models of candidate events, and" -msgstr "Mengimplementasikan model Finite-Fault untuk kandidat kejadian, dan" - -# 10d0bee0dd844b57b8d5e50eef8dc2e1 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:43 -msgid "consistency between selected GMPEs with those in use by BMKG." -msgstr "konsistensi antara GMPEs yang terpilih dengan hal itu digunakan oleh BMKG." - -# af9d9896840e42f283469b4c6da30e76 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:47 -msgid "Details" -msgstr "Rincian" - -# 28fcd5fa26244384ab71c63d642b9f00 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:49 -msgid "" -"This model was developed by Institut Teknologi Bandung (ITB) and implemented" -" by Dr. Hadi Ghasemi, Geoscience Australia Algorithm: In this study, the " -"same functional form as Allen (2009) is adopted o express fatality rate as a" -" function of intensity (see Eq. 10 in the report). The Matlab built-in " -"function (fminsearch) for Nelder-Mead algorithm was used to estimate the " -"model parameters. The objective function (L2G norm) that is minimized during" -" the optimisation is the same as the one used by Jaiswal et al. (2010). The " -"coefficients used in the indonesian model are x=0.62275231, y=8.03314466, " -"zeta=2.15" -msgstr "Model ini telah dikembangkan oleh Intsitut Teknologi Bandung (ITB) dan diimplementasikan oleh Dr Hadi Ghasemi, Geoscience Australia Algorithm: Pada studi ini, bentuk fungsi yang sama sebagaimana yang diadopsi oleh Allen (2009), mengekspresikan nilai korban jiwa sebagaimana fungsi dari intensitas (lihat Eq. 10 pada laporan). Fungsi Matlab yang telah terintegrasi (fminsearch) untuk algoritma Nelder-Mead telah digunakan untuk memperkirakan parameter model. Tujuan dari fungsi (L2G norm) adalah untuk meminimalkan pada saat optimalisasi adalah sama dengan satu fungsi yang telah digunakan oleh Jaiswal et al. (2010). Koefisien yang digunakan di model Indonesia adalah x=0.62275231, y=8.03314466, zeta=2.15" - -# 26e54c2ac9954f01be2c7cde25977fa6 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:55 -msgid "Doc String" -msgstr "String Dokumen" - -# 6f45323fd71c4f9ca83001665a579c17 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:57 -msgid "Indonesian Earthquake Fatality Model." -msgstr "Model Jumlah Korban Jiwa Akibat Gempa Bumi Indonesia" - -# 13da163e07304313ad34ec49e2eb4fd6 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:59 -msgid "" -"This model was developed by Institut Teknologi Bandung (ITB) and implemented" -" by Dr. Hadi Ghasemi, Geoscience Australia." -msgstr "Model ini telah dikembangkan oleh Institut Teknologi Bandung (ITB) dan diimplementasikan oleh Dr Hadi Ghasemi, Geoscience Australia." - -# d693fe79812c4a6499bc88ce28f39fef -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:63 -msgid "Reference:" -msgstr "Referensi:" - -# 059f39c6035444f7ad0efc230717469e -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:65 -msgid "" -"Indonesian Earthquake Building-Damage and Fatality Models and Post Disaster " -"Survey Guidelines Development, Bali, 27-28 February 2012, 54pp." -msgstr "Indonesian Earthquake Building-Damage and Fatality Models and Post Disaster Survey Guidelines Development Bali, 27-28 February 2012, 54pp." - -# 50383e86c55e4229b9953f89eb6e8b7a -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:70 -msgid "Algorithm:" -msgstr "Algoritma:" - -# 073f2e8201af43648b1c7513491a2310 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:72 -msgid "" -"In this study, the same functional form as Allen (2009) is adopted to " -"express fatality rate as a function of intensity (see Eq. 10 in the report)." -" The Matlab built-in function (fminsearch) for Nelder-Mead algorithm was " -"used to estimate the model parameters. The objective function (L2G norm) " -"that is minimised during the optimisation is the same as the one used by " -"Jaiswal et al. (2010)." -msgstr " Pada studi ini, bentuk fungsi yang sama sebagaimana yang diadopsi oleh Allen (2009), mengekspresikan nilai korban jiwa sebagaimana fungsi dari intensitas (lihat Eq. 10 pada laporan). Fungsi Matlab yang telah terintegrasi (fminsearch) untuk algoritma Nelder-Mead telah digunakan untuk memperkirakan parameter model. Tujuan dari fungsi (L2G norm) adalah untuk meminimalkan pada saat optimalisasi adalah sama dengan satu fungsi yang telah digunakan oleh Jaiswal et al. (2010)." - -# ccd87963662d4a92bc404e40dfef5ad3 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:79 -msgid "" -"The coefficients used in the indonesian model are x=0.62275231, " -"y=8.03314466, zeta=2.15" -msgstr "Koefisien yang digunakan pada model Indonesia adalah x=0.62275231, y=8.03314466, zeta=2.15" - -# 1984c19b918c4b50ab1e4a7bc23636d8 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:82 -msgid "" -"Allen, T. I., Wald, D. J., Earle, P. S., Marano, K. D., Hotovec, A. J., Lin," -" K., and Hearne, M., 2009. An Atlas of ShakeMaps and population exposure " -"catalog for earthquake loss modeling, Bull. Earthq. Eng. 7, 701-718." -msgstr "Allen, T. I., Wald, D. J., Earle, P. S., Marano, K. D., Hotovec, A. J., Lin, K., and Hearne, M., 2009. An Atlas of ShakeMaps and population exposure catalog for earthquake loss modeling, Bull. Earthq. Eng. 7, 701-718." - -# 751f87f5ebed4ddb919570778ccbe70e -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:87 -msgid "" -"Jaiswal, K., and Wald, D., 2010. An empirical model for global earthquake " -"fatality estimation, Earthq. Spectra 26, 1017-1037." -msgstr "Jaiswal, K., and Wald, D., 2010. An empirical model for global earthquake fatality estimation, Earthq. Spectra 26, 1017-1037." - -# 7c49492fac094552824dd28361a46596 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:91 -msgid "Caveats and limitations:" -msgstr "Peringatan dan batasan:" - -# 04233e993cb8490388f44f037cc5ad70 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:93 -msgid "" -"The current model is the result of the above mentioned workshop and reflects" -" the best available information. However, the current model has a number of " -"issues listed below and is expected to evolve further over time." -msgstr "Model saat ini merupakan hasil dari lokakarya yang disebutkan di atas dan merefleksikan informasi tersedia yang terbaik. Bagaimanapun, model saat ini memiliki sejumlah isu yang terdafar seperti di bawah ini dan kemungkinan akan berubah sepanjang waktu." - -# 12b57792377e4785995c646895982596 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:98 -msgid "1 - The model is based on limited number of observed fatality" -msgstr "1 - model ini berdasarkan jumlah korban jiwa yang diketahui secara terbatas" - -# b72e1ce97a6e4e69bf913dc9760647a4 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:99 -msgid "rates during 4 past fatal events." -msgstr "tingkat saat 4 kejadian fatal yang lalu." - -# 25375bdf1f5d423baa649feaa7a2cd15 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:100 -msgid "2 - The model clearly over-predicts the fatality rates at" -msgstr "2 - model secara jelas memprediksi berlebih jumlah korban jiwa pada" - -# d9e1a6ec5d06488a9da3840dc2b7aae9 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:101 -msgid "intensities higher than VIII." -msgstr "intensitas yang lebih tinggi dari VIII." - -# 4b00f16330f3473e873bd1fb928905ff -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:103 -msgid "3 - The model only estimates the expected fatality rate for a given" -msgstr "3 - model hanya memperkirakan jumlah korban jiwa yang diduga untuk satu " - -# 1155ff8103c74e01981a171c4d73a925 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:103 -msgid "" -"intensity level; however the associated uncertainty for the proposed model " -"is not addressed." -msgstr "tingkat intensitas yang diberikan; bagaimanapun hubungan ketidakyakinan untuk model yang diajukan tidak dilakukan" - -# 4d660e6b271f4db1bdade2daf477503a -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:109 -msgid "4 - There are few known mistakes in developing the current model:" -msgstr "4 - terdapat beberapa kesalahan yang diketahui pada model yang sedang dikembangkan saat ini:" - -# 2575d17f30994c4d9298353a33c000b5 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:108 -msgid "" -"consistency between selected GMPEs with those in use by BMKG. These issues " -"will be addressed by ITB team in the final report." -msgstr "konsistensi antara GMPEs yang terpilih dengan hal itu digunakan oleh BMKG. Masalah ini akan dijelaskan oleh tim ITB pada laporan final." - -# 4d0e2eb340d64addbc8fc39d738448b8 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:111 -msgid "" -"Note: Because of these caveats, decisions should not be made solely on the " -"information presented here and should always be verified by ground truthing " -"and other reliable information sources." -msgstr "Catatan: Karena perkiraan ini, keputusan seharusnya tidak dibuat sepenuhnya pada informasi yang digambarkan di sini dan harus selalu di verifikasi dengan survey lapangan dan sumber-sumber informasi terpercaya lainnya." - -# 8395a7586c5443a1be43831e410d69da -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:115 -msgid ":author Hadi Ghasemi :rating 3" -msgstr ":penulis Hadi Ghasemi :rating 3" - -# 1c2dbd58e4a04cfebb273fc721198d56 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:118 -msgid "" -":param requires category=='hazard' and " -"subcategory=='earthquake' and layertype=='raster' and" -" unit=='MMI'" -msgstr ":param membutuhkan category=='hazard' dan subcategory=='earthquake' dan layertype=='raster' dan unit=='MMI'" - -# 6f220cc68efa4b17b53033d58614e0c2 -#: ../../source/user-docs/impact-function-docs/ITBFatalityFunction.rst:120 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr ":param membutuhkan category=='exposure' dan subcategory=='population' dan layertype=='raster'" diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/PAGFatalityFunction.po b/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/PAGFatalityFunction.po deleted file mode 100644 index e8967ffa..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/PAGFatalityFunction.po +++ /dev/null @@ -1,132 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# mahardika fadmastuti , 2013 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2018-03-05 06:30+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# b4602ecd04884781b6fd22b2ee40f6af -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:6 -msgid "P A G Fatality Function" -msgstr "Fungsi Korban P A G" - -# 6a33a2f9f1dc4a55b3ce753a6f873d1f -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:9 -msgid "Overview" -msgstr "Gambaran umum" - -# 01f91da2ac804f319540a2c62de58c6e -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:11 -msgid "**Unique Identifier**: P A G Fatality Function" -msgstr "**Identifikasi Unik**: Fungsi Korban P A G" - -# 4d28dd413b5b41e89b2fae5cb561de01 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:14 -msgid "**Author**: Helen Crowley" -msgstr "**Pembuat**: Helen Crowley" - -# 202debf3bcc14430b165cc81aec6a7cb -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:17 -msgid "**Rating**: 3" -msgstr "**Rating**: 3" - -# 560e05f5a78247768515ad24ebaf288e -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:20 -msgid "**Title**: Die or be displaced according Pager model" -msgstr "**Judul**: Meninggal atau diungsikan berdasarkan model Pager" - -# 6bb251588192437fbb31720937961493 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impact of earthquake on population based on " -"Population Vulnerability Model Pager" -msgstr "**Sinopsis**: Untuk menghitung dampak gempa bumi berdasarkan Model Pager Populasi Kerentanan" - -# 1d9765bf12c84b3e94c603b762b61128 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:26 -msgid "" -"**Actions**: Provide details about the population will be die or displaced" -msgstr "**Aksi**: Menyediakan detil/rincian tentang populasi yang akan meninggal dunia atau mengungsi" - -# 75e962f86d284a6a99d77d07882ad9e5 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:30 -msgid "**Citations**:" -msgstr "**Kutipan**:" - -# 2b8b8550a8cf49e5b5c8de8cf005725d -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:30 -msgid "" -"Jaiswal, K. S., Wald, D. J., and Hearne, M. (2009a). Estimating " -"casualties for large worldwide earthquakes using an empirical approach. " -"U.S. Geological Survey Open-File Report 2009-1136." -msgstr "Jaiswal, K. S., Wald, D. J., dan Hearne, M. (2009a). Estimating casualties for large worldwide earthquakes using an empirical approach. U.S. Geological Survey Open-File Report 2009-1136." - -# 05ceb697f34748cf9e1badc300b9b75a -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:32 -msgid "**Limitation**: No documentation found" -msgstr "**Pembatasan**: Tidak ditemukan dokumentasi" - -# 3edadc08ac32499787707f52e4e22b77 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:36 -msgid "Details" -msgstr "Detil/rincian" - -# 80aad73cb81e4df09ccf9f5abe36ca34 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:38 -msgid "No documentation found" -msgstr "Dokumentasi tidak ditemukan" - -# 45d98a1f1132408e9bc510f488993f29 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:41 -msgid "Doc String" -msgstr "String Dokumen" - -# 5046145209bf45d5969e4c40883b521f -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:43 -msgid "Population Vulnerability Model Pager." -msgstr "Model Pager Populasi Kerentanan" - -# 893c95adeed1471db7faf847b2a17125 -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:45 -msgid "" -"Loss ratio(MMI) = standard normal distrib( 1 / BETA * ln(MMI/THETA)). " -"Reference: Jaiswal, K. S., Wald, D. J., and Hearne, M. (2009a). Estimating " -"casualties for large worldwide earthquakes using an empirical approach. U.S." -" Geological Survey Open-File Report 2009-1136." -msgstr "Loss ratio(MMI) = standard normal distrib( 1 / BETA * ln(MMI/THETA)). Reference: Jaiswal, K. S., Wald, D. J., and Hearne, M. (2009a). Estimating casualties for large worldwide earthquakes using an empirical approach. U.S. Geological Survey Open-File Report 2009-1136." - -# da4a36e43c2544168600a698ba3f9b6e -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:51 -msgid ":author Helen Crowley :rating 3" -msgstr ":author Helen Crowley :rating 3" - -# 2be456c3e5db49c9b6dfc237da010aaa -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:54 -msgid "" -":param requires category=='hazard' and " -"subcategory=='earthquake' and layertype=='raster' and" -" unit=='MMI'" -msgstr ":param membutuhkan category=='hazard' dan subcategory=='earthquake' dan layertype=='raster' dan unit=='MMI'" - -# ca161eb990004dbaa5719fec4dab4a3b -#: ../../source/user-docs/impact-function-docs/PAGFatalityFunction.rst:56 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr ":param membutuhkan category=='exposure' dan subcategory=='population' dan layertype=='raster'" diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/TsunamiEvacuationFunction.po b/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/TsunamiEvacuationFunction.po deleted file mode 100644 index 403dd4aa..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/TsunamiEvacuationFunction.po +++ /dev/null @@ -1,165 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# a896775d16d34a66bd217ccd73526ab1 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:6 -msgid "Tsunami Evacuation Function" -msgstr "Fungsi Evakuasi Tsunam" - -# 69947245e914428b9cde48208b6afc39 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:9 -msgid "Overview" -msgstr "Gambaran umum" - -# 23aa0319be134560a501ad675bf317b5 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:11 -msgid "**Unique Identifier**: Tsunami Evacuation Function" -msgstr "**Identifikasi Unik**: Fungsi Evakuasi Tsunami" - -# 2065a2b854d84cd092ea3e55d61f404e -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:14 -msgid "**Author**: AIFDR" -msgstr "**Pembuat**: AIFDR" - -# b5541fbd72aa42e2b547378c48b93baa -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:17 -msgid "**Rating**: 4" -msgstr "**Rating**: 4" - -# ad57817cb01d4a9d8e497674f1b82c48 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:20 -msgid "**Title**: Need evacuation" -msgstr "**Judul**: Butuh Evakuasi" - -# a0dbc6c6c7db4b66bbb4640666583b54 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:23 -msgid "" -"**Synopsis**: To assess the impacts of tsunami inundation in raster format " -"on population." -msgstr "" -"**Sinopsis*: Untuk mengakses dampak dari tsunami dalam format raster " -"terhadap penduduk." - -# ea0ad265a1c946ea8b18a25170e6a532 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:26 -msgid "" -"**Actions**: Provide details about how many people would likely need to be " -"evacuated, where they are located and what resources would be required to " -"support them." -msgstr "" -"**Tindakan**: Menyediakan rincian mengenai berapa banyak orang yang perlu " -"dievakuasi, dimana lokasi keberadaan mereka dan sumber daya apa yang " -"dibutuhkan untuk mendukung keselamatan mereka." - -# fb04e7288103402c81d2e3d39f226d75 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:29 -msgid "" -"**Hazard Input**: A hazard raster layer where each cell represents tsunami " -"depth (in meters)." -msgstr "" -"**Input Ancaman**: sebuah layer ancaman bertipe raster dimana setiap sel " -"merepresentasikan kedalaman tsunami (dalam meter)" - -# c124e28186a148e98714ea4406566a1a -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:32 -msgid "" -"**Exposure Input**: An exposure raster layer where each cell represent " -"population count." -msgstr "" -"**Input Keterpaparan**: Layer data keterpaparan berjenis raster data dimana " -"setiap sel mewakili sejumlah populasi penduduk." - -# a4cbccf248c64a9aba0077eb1e36ee38 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:35 -msgid "" -"**Output**: Raster layer contains population affected and the minimum needs " -"based on the population affected." -msgstr "" -"**Output**: Layer raster berisi penduduk terdampak dan kebutuhan minimum " -"berdasarkan pada penduduk terdampak." - -# a7e5b01cd4c54a098e298e3953f24b37 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:38 -msgid "" -"**Limitation**: The default threshold of 0.7 meter was selected based on " -"consensus, not hard evidence." -msgstr "" -"**Batasan**: Ambang batas standar 0.7 meter telah dipilih berdasarkan pada " -"kesepakatan, bukan bukti yang nyata." - -# a83dd4e56a414da5b036e439e77facbd -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:42 -msgid "Details" -msgstr "Rincian" - -# d79cb659dca54d5db66f52db2bab0fc4 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:44 -msgid "" -"The population subject to inundation exceeding a threshold (default 0.7m) is" -" calculated and returned as a raster layer. In addition the total number and" -" the required needs in terms of the BNPB (Perka 7) are reported. The " -"threshold can be changed and even contain multiple numbers in which case " -"evacuation and needs are calculated using the largest number with population" -" breakdowns provided for the smaller numbers. The population raster is " -"resampled to the resolution of the hazard raster and is rescaled so that the" -" resampled population counts reflect estimates of population count per " -"resampled cell. The resulting impact layer has the same resolution and " -"reflects population count per cell which are affected by inundation." -msgstr "" -"Subyek populasi yang terkena genangan yang melebihi ambang batas (pengaturan" -" awal adalah 1m) dihitung dan dikembalikan sebagai layer data raster. Selain" -" itu, jumlah dan kebutuhan yang diperlukan sesuai aturan BNPB (Perka 7) " -"dilaporkan. Ambang batas dapat diubah dan bahkan mengandung beberapa nilai " -"dalam hal evakuasi dan kebutuhan dihitung menggunakan jumlah terbesar dengan" -" populasi diperinci untuk jumlah yang lebih kecil. Layer data raster " -"populasi diresampling dengan resolusi raster data ancaman dan direscaling " -"sehingga jumlah populasi hasil resampling mencerminkan perkiraan jumlah " -"populasi per sel dapat diresampling. Layer data dampak yang dihasilkan " -"memiliki resolusi yang sama dan mencerminkan jumlah penduduk per sel yang " -"dipengaruhi oleh adanya genangan." - -# d9c0f63039e5453fb94b7d890e570f29 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:47 -msgid "Doc String" -msgstr "String Dokumen" - -# 654d380e2f8f43a0ba6c15344d1ddda6 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:49 -msgid "Impact function for tsunami evacuation." -msgstr "Fungsi dampak untuk evakuasi tsunami." - -# 1324d07d1d6b4af58ec15bd2bdf75522 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:51 -msgid "" -":author AIFDR :rating 4 :param requires category=='hazard' and" -" subcategory=='tsunami' and " -"layertype=='raster' and unit=='m'" -msgstr "" -":*author* AIFDR :rating 4 :param membutuhkan kategori=='hazard' dan " -"subkategori=='tsunami' dan jenislayer=='raster' dan unit=='m'" - -# 0a36ef4e60ec41cdb9281fb9c4e74460 -#: ../../source/user-docs/impact-function-docs/TsunamiEvacuationFunction.rst:55 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr "" -":param membutuhkan category=='exposure' dan subcategory=='population' dan " -"layertype=='raster'" diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/VolcanoBuildingImpact.po b/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/VolcanoBuildingImpact.po deleted file mode 100644 index 7a6fa167..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/VolcanoBuildingImpact.po +++ /dev/null @@ -1,129 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# adityo dwijananto , 2013 -# mahardika fadmastuti , 2013 -# Emir Hartato , 2013 -# Emir Hartato , 2013 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2018-03-05 06:30+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 6a5caad667e841478c54ebbef19ec542 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:6 -msgid "Volcano Building Impact" -msgstr "Bangunan Terdampak Gunung Berapi" - -# f343df89abf5459eafdb2bffadf66776 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:9 -msgid "Overview" -msgstr "Gambaran umum" - -# 2948c3a6d72b4ad09f1209c335f865f5 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:11 -msgid "**Unique Identifier**: Volcano Building Impact" -msgstr "**Unique Identifier**: Bangunan Terdampak Gunung Berapi" - -# c876250e99f24aea9754eb747a5da8f9 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:14 -msgid "**Author**: AIFDR" -msgstr "**Pembuat**: AIFDR" - -# 84571c161e2c4cb4b453df39c569f11a -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:17 -msgid "**Rating**: 4" -msgstr "**Rating**: 4" - -# c59df9bcda904ba6a8497050f9c8d01f -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:20 -msgid "**Title**: Be affected" -msgstr "**Title**: Terdampak" - -# c34e1bca95fb4719af7f8724825c284b -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:23 -msgid "**Synopsis**: To assess the impacts of volcano eruption on building." -msgstr "**Sinopsis**: Untuk menghitung dampak erupsi gunung berapi pada bangunan." - -# 5aec0de5d891448981e52dd705aa5a98 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:26 -msgid "" -"**Actions**: Provide details about how many building would likely be " -"affected by each hazard zones." -msgstr "**Tindakan**: Menyediakan rincian mengenai berapa banyak jumlah bangunan yang akan terdampak di setiap zona ancaman." - -# 3c5f44006b734ac0a924904aab75ee31 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:29 -msgid "" -"**Hazard Input**: A hazard vector layer can be polygon or point. If polygon," -" it must have \"KRB\" attribute and the values for it are \"Kawasan Rawan " -"Bencana I\", \"Kawasan Rawan Bencana II\", or \"Kawasan Rawan Bencana III.\"" -" If you want to see the name of the volcano in the result, you need to add " -"\"NAME\" attribute for point data or \"GUNUNG\" attribute for polygon data." -msgstr "**Masukan Ancaman**: Layer vektor ancaman dapat berupa poligon atau titik. Jika poligon, ini harus memiliki atribut \"KRB\" dan nilai untuk itu adalah \"Kawasan Rawan Bencana I\", \"Kawasan Rawan Bencana II\", atau \"Kawasan Rawan Bencana III.\" Jika Anda ingin melihat nama gunung berapi pada hasilnya, Anda perlu menambahkan atribut \"NAME\" untuk data titik atau atribut \"GUNUNG\" untuk data poligon." - -# b5f045b61d074a8bb7da84b16e2e0916 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:32 -msgid "" -"**Exposure Input**: Vector polygon layer extracted from OSM where each " -"polygon represents the footprint of a building." -msgstr "**Exposure Input**: Layer poligon vektor diekstrak dari OSM dimana setiap poligon mewakili gambaran dari bangunan." - -# 19a4044818814ee5a5a30c17b8a02400 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:35 -msgid "" -"**Output**: Vector layer contains Map of building exposed to volcanic hazard" -" zones for each Kawasan Rawan Bencana or radius." -msgstr "**Output**: Layer data berjenis vektor berisi Peta bangunan yang berada di zona ancaman gunung berapi untuk setiap Kawasan Rawan Bencana atau radiusnya." - -# c1f7235625d14d7c8ecd998c831e1908 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:39 -msgid "Details" -msgstr "Detail" - -# 3758fb407d7442c6bcf4932afeca955b -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:41 -msgid "No documentation found" -msgstr "Dokumentasi tidak ditemukan" - -# a93a316fb84642aba3053d80c1d10728 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:44 -msgid "Doc String" -msgstr "String Dokumen" - -# def8eeee2c75415eaa7cfb55e2dd69dc -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:46 -msgid "Risk plugin for volcano building impact." -msgstr "Plugin risiko untuk bangunan terdampak gunung berapi." - -# 466ac74f5d0348ab9ef4a9695cd69812 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:48 -msgid "" -":author AIFDR :rating 4 :param requires category=='hazard' and" -" subcategory in ['volcano'] and " -"layertype=='vector'" -msgstr ":author AIFDR :rating 4 :param membutuhkan category=='hazard' dan subkategori pada ['volcano'] dan layertype=='vector'" - -# ebb0e768ecb643e7ab77ed8c2e580cd7 -#: ../../source/user-docs/impact-function-docs/VolcanoBuildingImpact.rst:52 -msgid "" -":param requires category=='exposure' and " -"subcategory=='structure' and layertype=='vector'" -msgstr ":param membutuhkan category=='exposure' dan subcategory=='structure' dan layertype=='vector'" diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.po b/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.po deleted file mode 100644 index 656afa68..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.po +++ /dev/null @@ -1,132 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# adityo dwijananto , 2013 -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -# Emir Hartato , 2013 -# Emir Hartato , 2013 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2018-03-05 06:30+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 025a0fe63d524c738081e5427fecc995 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:6 -msgid "Volcano Polygon Hazard Population" -msgstr "Poligon Ancaman Gunung Berapi untuk Penduduk" - -# 0c84f1e7e36045859cd0cb4c522bd945 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:9 -msgid "Overview" -msgstr "Gambaran umum" - -# 86c946ed04eb42b6b437bff46feb116e -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:11 -msgid "**Unique Identifier**: Volcano Polygon Hazard Population" -msgstr "**Identifikasi Unik**: Poligon Bahaya Gunung Berapi untuk Penduduk" - -# d2b35a1a2c114d1f8be9bc230b6ae04f -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:14 -msgid "**Author**: AIFDR" -msgstr "**Pembuat**: AIFDR" - -# cfe4c3b722f747838df55a89ece91409 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:17 -msgid "**Rating**: 4" -msgstr "**Rating**: 4" - -# 1e2957d713494064b888e34172906924 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:20 -msgid "**Title**: Need evacuation" -msgstr "**Title**: Butuh Evakuasi" - -# 013d03df624742a79214b0ab65f00196 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:23 -msgid "**Synopsis**: To assess the impacts of volcano eruption on population." -msgstr "**Sinopsis**: Untuk penilaian dampak dari erupsi gunung berapi pada penduduk." - -# 1420d15abcc74ced9d52b0bd12e48466 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:26 -msgid "" -"**Actions**: Provide details about how many population would likely be " -"affected by each hazard zones." -msgstr "**Actions**: Menyediakan rincian mengenai berapa banyak jumlah penduduk yang akan terdampak di setiap zona ancaman." - -# 15b05db5b6ae4233a07910445a37d79f -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:29 -msgid "" -"**Hazard Input**: A hazard vector layer can be polygon or point. If polygon," -" it must have \"KRB\" attribute and the valuefor it are \"Kawasan Rawan " -"Bencana I\", \"Kawasan Rawan Bencana II\", or \"Kawasan Rawan Bencana " -"III.\"If you want to see the name of the volcano in the result, you need to " -"add \"NAME\" attribute for point data or \"GUNUNG\" attribute for polygon " -"data." -msgstr "**Input Ancaman**: Layer vektor ancaman dapat berupa poligon atau titik. Jika poligon, ini harus memiliki atribut \"KRB\" dan nilai untuk ini adalah \"Kawasan Rawan Bencana I\", \"Kawasan Rawan Bencana II\", atau \"Kawasan Rawan Bencana III.\" Jika Anda ingin melihat nama gunung berapi pada hasilnya, Anda perlu menambahkan atribut \"NAME\" untuk data titik atau atribut \"GUNUNG\" untuk data poligon." - -# e23a553729474fb6a291b3fbc4be2ada -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:32 -msgid "" -"**Exposure Input**: An exposure raster layer where each cell represent " -"population count." -msgstr "**Exposure Input**: Layer data keterpaparan berjenis raster dimana setiap sel mewakili sejumlah populasi penduduk." - -# e2ef890c5fbc4bed995201bd4e0be4e2 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:35 -msgid "" -"**Output**: Vector layer contains people affected and the minimum needs " -"based on the number of people affected." -msgstr "**Hasil**: Layer vektor yang menunjukan jumlah orang yang terkena dampak dan kebutuhan minimum berdasarkan jumlah orang yang terkena dampak." - -# 93e342d0635b4f1f834472ecff8f4305 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:39 -msgid "Details" -msgstr "Detail" - -# 564bef2af8a04e7281ad74b4e9b1b815 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:41 -msgid "No documentation found" -msgstr "Dokumentasi tidak ditemukan" - -# 8ffe670559894e4fbecc7c1e3e31227a -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:44 -msgid "Doc String" -msgstr "String Dokumen" - -# 84e14de892cc44c9845665267c9d2cac -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:46 -msgid "Impact function for volcano hazard zones impact on population." -msgstr "Fungsi dampak untuk zona dampak ancaman gunung berapi pada penduduk." - -# 4d1ef118bd00446b8a7ce93e308f50e3 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:48 -msgid "" -":author AIFDR :rating 4 :param requires category=='hazard' and" -" subcategory in ['volcano'] and " -"layertype=='vector'" -msgstr ":author AIFDR :rating 4 :param membutuhkan category=='hazard' dan subkategori pada ['volcano'] dan layertype=='vector'" - -# 465745ca9f0b4182be90907cdd8a9ba2 -#: ../../source/user-docs/impact-function-docs/VolcanoPolygonHazardPopulation.rst:52 -msgid "" -":param requires category=='exposure' and " -"subcategory=='population' and layertype=='raster'" -msgstr ":param membutuhkan category=='exposure' dan subcategory=='population' dan layertype=='raster'" diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/impact_functions_doc.po b/docs/i18n/id/LC_MESSAGES/user-docs/impact_functions_doc.po deleted file mode 100644 index d2a80b0b..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/impact_functions_doc.po +++ /dev/null @@ -1,34 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2014 -# Emir Hartato , 2013 -# Emir Hartato , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-10 16:15+0100\n" -"PO-Revision-Date: 2017-09-19 15:15+0000\n" -"Last-Translator: Richard Duivenvoorde \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 7589ec32aebc47d193f5dff0905b2780 -#: ../../source/user-docs/impact_functions_doc.rst:7 -msgid "Impact Functions Documentation" -msgstr "Dokumentasi Fungsi Dampak" - -# b6e45fb1646b484aafffeb8c41400ea7 -#: ../../source/user-docs/impact_functions_doc.rst:9 -msgid "" -"This document explains the purpose of impact functions and lists the " -"different available impact function and the requirements each has to be used" -" effectively." -msgstr "Dokumen ini menjelaskan tujuan dari fungsi-fungsi dampak dan membuat daftar fungsi dampak berbeda yang tersedia beserta setiap kebutuhannya yang akan digunakan secara efektif." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/index.po b/docs/i18n/id/LC_MESSAGES/user-docs/index.po deleted file mode 100644 index fc28ce2d..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/index.po +++ /dev/null @@ -1,47 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# adityo dwijananto , 2013 -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -# Emir Hartato , 2013 -# Emir Hartato , 2013 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# Werner Macho , 2013 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -# Werner Macho , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-04 17:20+0000\n" -"Last-Translator: Dewi Sulistioningrum \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 3d90fcbc07434ebfa5673e8b3bc0593f -#: ../../source/user-docs/index.rst:4 -msgid "User documentation" -msgstr "Dokumentasi Pengguna" - -# b8a28bfb2c09482798d144c4d416801b -#: ../../source/user-docs/index.rst:6 -msgid "" -"This section of the documentation describes how to use the |project_name| " -"system." -msgstr "" -"Bagian dokumentasi ini menjelaskan bagaimana sistematika penggunaan |" -"project_name|." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/install.po b/docs/i18n/id/LC_MESSAGES/user-docs/install.po deleted file mode 100644 index e7e9d4f4..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/install.po +++ /dev/null @@ -1,325 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# adityo dwijananto , 2013 -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-06 08:05+0000\n" -"Last-Translator: Tri Selasa Pagianti \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# c88035888a1d4e91a6f87968ac9134db -#: ../../source/user-docs/install.rst:4 -msgid "Installation" -msgstr "Instalasi" - -# 8173be6dd3f3420fa2b7c3a4c61a1dba -#: ../../source/user-docs/install.rst:6 -msgid "" -"|project_name| is a plugin for |QGIS|, so QGIS must be installed first via " -"the QGIS Python Plugin Repository." -msgstr "" -"|project_name| merupakan plugin untuk |QGIS|, sehingga QGIS harus di install " -"terlebih dahulu melalui Repositori Plugin Python QGIS." - -# 603e26c093f8483fbf8bdf9b3b7bda66 -#: ../../source/user-docs/install.rst:9 -msgid "To install |project_name|, use the plugin manager in QGIS." -msgstr "Untuk menginstal |project_name|, gunakan plugin manager pada QGIS." - -# b9be1d20c78e42ed8abdd416d0b20a9d -#: ../../source/user-docs/install.rst:11 -msgid "Go to :menuselection:`Plugins -> Manage and install plugins` menu." -msgstr "Pergi ke menu :menuselection:`Plugins > Kelola dan Install Plugin`." - -# 36d8fee1627443f5a9e50f8e89a0c5af -#: ../../source/user-docs/install.rst:15 -msgid "Go to the search box and type :kbd:`InaSAFE`." -msgstr "Arahkan ke kotak pencarian dan ketikkan :kbd:`InaSAFE`." - -# 7419067e82ae494b8056a0a3f504d55f -#: ../../source/user-docs/install.rst:21 -msgid "Select InaSAFE and click :guilabel:`Install plugin` and" -msgstr "Pilih InaSAFE dan klik :guilabel:`Install plugin` dan" - -# b76b96be08b249fd899cc9f5752b90b2 -#: ../../source/user-docs/install.rst:20 -msgid "" -"wait for a moment until the InaSAFE dock appears in the right side of QGIS " -"main window." -msgstr "" -"tunggu beberapa saat sampai muncul InaSAFE dock di sisi kanan jendela utama " -"QGIS." - -# cbf4542096454d568314646001a74853 -#: ../../source/user-docs/install.rst:23 -msgid "Close the plugin manager window." -msgstr "Tutup jendela plugin manager." - -# 9cd0157013da42ea993f351fa7e656a2 -#: ../../source/user-docs/install.rst:25 -msgid "" -"For more information on |QGIS| and |project_name| see :doc:`../training/" -"socialisation/introduction_to_qgis`." -msgstr "" -"Untuk informasi lebih lanjut pada |QGIS| dan |project_name| lihat di :doc:" -"`../training/socialisation/introduction_to_qgis`." - -# 0d754560aa8d42e6be3368e61800c7c7 -#: ../../source/user-docs/install.rst:31 -msgid "From Zip Archive" -msgstr "Dari Berkas Zip" - -# f95aaa353c734c43961f553a07039b57 -#: ../../source/user-docs/install.rst:33 -msgid "" -"This installation method is not recommended unless you have no internet " -"access or wish to use a specific version of |project_name|. If this does not " -"apply to you, use the plugin repository method described above." -msgstr "" -"Metode instalasi ini tidak direkomendasikan kecuali Anda tidak memiliki " -"akses internet atau diharapkan untuk menggunakan versi |project_name| yang " -"lebih spesifik. Apabila ini tidak terganti, gunakan repositori plugin, " -"metode yang telah dijelaskan di atas." - -# 4fb2eb7b43564eb89cad2dd25995b10a -#: ../../source/user-docs/install.rst:38 -msgid "" -"We make regular releases of the |project_name| plugin and they are available " -"at http://plugins.qgis.org/plugins/inasafe/. Simply choose the most recent " -"(i.e. the one with the largest version number) and save it to your hard disk." -msgstr "" -"Kita membuat rilis berkesinambungan untuk plugin dan mereka tersedia di " -"http://plugins.qgis.org/plugins/inasafe/. Silakan pilih yang paling terbaru " -"(biasanya dengan nomor versi yang lebih besar) dan simpan ke hard disk Anda." - -# 168c770947664b15a6fa274dbbf78b8f -#: ../../source/user-docs/install.rst:43 -msgid "Extract the zip file into the QGIS plugins directory." -msgstr "Lakukan ekstraksi file zip ke dalam direktori plugin QGIS." - -# 01379b5e78f64285884d3ee01f434d1a -#: ../../source/user-docs/install.rst:46 -msgid "" -"Depending on your version of QGIS the plugin directory is either under a " -"subdirectory of :file:`.qgis` (QGIS versions < 2.0) or :file:`.qgis2` (QGIS " -"version >= 2.0)." -msgstr "" -"Tergantung dari versi QGIS Anda plugin direkotri berada di bawah " -"subdirektori dari :file:`.qgis` (QGIS versions < 2.0) or :file:`.qgis2` " -"(QGIS version >= 2.0)." - -# fc2692edfcc14e27bd16e36a39653a0e -#: ../../source/user-docs/install.rst:50 -msgid "" -"Depending on your Operating System (Windows, Linux, OS X) and the version of " -"QGIS, the directory containing the plugins will be in:" -msgstr "" -"Tergantung dari Sistem Operasi Anda (Windows, Linux, OS X) dan versi QGIS, " -"direktori yang memiliki plugin akan ada di:" - -# a51ccfbca3db430ea1d6bfa9780d01b9 -#: ../../source/user-docs/install.rst:54 -msgid "" -"Windows: :file:`C:\\\\Users\\\\\\\\.qgis(2)\\\\python\\" -"\\plugins\\\\`" -msgstr "" -"Windows: :file:`C:\\\\Users\\\\\\\\.qgis(2)\\\\python\\" -"\\plugins\\\\`" - -# 2850e4ce4b8a46948c3b03e53dd13491 -#: ../../source/user-docs/install.rst:55 -msgid "" -"Linux: :file:`~/.qgis(2)/python/plugins/` (where \"~\" means :file:`/home/" -"/`" -msgstr "" -"Linux: :file:`~/.qgis(2)/python/plugins/` (where \"~\" means :file:`/home/" -"/`" - -# 8bbd3c2e35c244028ca15ec03a9c2ed6 -#: ../../source/user-docs/install.rst:57 -msgid "" -"OS X: :file:`~/.qgis(2)/python/plugins/` (where \"~\" means :file:`/home/" -"/`" -msgstr "" -"OS X: :file:`~/.qgis(2)/python/plugins/` (dimana \"~\" berarti :file:`/home/" -"/`" - -# 816f33e1ccf146ed8520e5f33c1d066e -#: ../../source/user-docs/install.rst:61 -msgid "" -":file:`.qgis(2)` means that the directory is either called :file:`.qgis` or :" -"file:`.qgis2`." -msgstr "" -":file:`.qgis(2)` artinya direktori tersebut dipanggil :file:`.qgis` atau :" -"file:`.qgis2`." - -# a067ee282b6d4e808d689b91bcb7e48b -#: ../../source/user-docs/install.rst:64 -msgid "If you are running Windows with QGIS 2.8 or above, do the following:" -msgstr "Jika Anda menjalankan Windows dengan QGIS 2.8, lakukan langkah ini:" - -# ccdff046abbb420989ce1cfaf0d3264e -#: ../../source/user-docs/install.rst:66 -msgid "" -"Locate the directory :file:`C:\\\\Users\\\\\\\\.qgis2\\" -"\\python\\\\plugins`." -msgstr "" -"Temukan direktori :file:`C:\\\\Users\\\\\\\\.qgis2\\\\python\\" -"\\plugins`." - -# 345759001e674937a568330fe7115e7b -#: ../../source/user-docs/install.rst:69 -msgid "" -"Extract the plugin which you downloaded in this directory. It should be " -"available as :file:`C:\\\\Users\\\\\\\\.qgis2\\\\python\\" -"\\plugins\\\\inasafe\\\\`." -msgstr "" -"Lakukan ekstraksi plugin yang telah Anda *download* dalam direktori ini. " -"Plugin tersebut seharusnya tersedia pada :file:`C:\\\\Users\\\\\\\\.qgis2\\\\python\\\\plugins\\\\inasafe\\\\`." - -# c9f01bddd9514211a9ffade649c97d1c -#: ../../source/user-docs/install.rst:73 -msgid "" -"OS X and Linux users must follow the same procedure but with the appropriate " -"directory, :file:`~/.qgis2/python/plugins/`." -msgstr "" -"Pengguna OS X dan Linux perlu mengikuti prosedur yang sama tetapi direktori " -"yang sesuai, :file:`~/.qgis2/python/plugins/`." - -# 36571303cd4c477c86d49ca5c97d4bec -#: ../../source/user-docs/install.rst:76 -msgid "" -"Once the plugin is extracted, start QGIS and enable it from the plugin " -"manager." -msgstr "" -"Plugin sudah terekstrak, mulai QGIS dan mungkin sudah ada di kelola plugin. " - -# 0472837ed04a483b81edacfacb660ad4 -#: ../../source/user-docs/install.rst:78 -msgid "" -"To do this go to :menuselection:`Plugins ‣ Manage and Install Plugins` and " -"type :kbd:`inasafe` into the search box." -msgstr "" -"Untuk melakukan ini pergi ke :menuselection:`Plugins ‣ Kelola dan install " -"plugin...` dan ketikkan :kbd:`inasafe` ke dalam kotak pencarian." - -# 8ef11fd8f014438c97c28b38a45a54bd -#: ../../source/user-docs/install.rst:81 -msgid "" -"You should see the |project_name| plugin appear in the list. Tick the " -"checkbox next to it to enable the plugin." -msgstr "" -"Anda seharusnya melihat plugin |project_name| muncul dalam daftar. Beri " -"tanda centang pada sebelahnya untuk mengaktifkan plugin." - -# 458743b004d04593b6743ecdfbe51919 -#: ../../source/user-docs/install.rst:89 -#, fuzzy -msgid "Plugin Manager" -msgstr "Manager Plugin" - -# 458743b004d04593b6743ecdfbe51919 -#: ../../source/user-docs/install.rst:89 -msgid "*Plugin Manager*" -msgstr "Manager Plugin" - -# cf784f30b75a47028188e7e0ea194a49 -#: ../../source/user-docs/install.rst:92 -msgid "Downgrade the |project_name| plugin to a selected version" -msgstr "Ubah plugin |project_name| ke dalam versi yang dipilih" - -# ecabe8891ef94952bae13bea56e49f86 -#: ../../source/user-docs/install.rst:94 -msgid "" -"If you are using an older version of QGIS or simply want to install a " -"specific version of the |project_name| plugin you must perform the following " -"steps:" -msgstr "" -"Jika Anda menggunakan versi QGIS yang lama atau Anda ingin menginstall versi " -"tertentu dari plugin |project_name|, Anda harus mengikuti langkah-langkah " -"berikut:" - -# 124e2326e89e4e0bbc7668261215395e -#: ../../source/user-docs/install.rst:98 -msgid "" -"Fetch the plugin manually from http://plugins.qgis.org/plugins/inasafe/. " -"Select your preferred version number and click :guilabel:`Download`." -msgstr "" -"Dapatkan plugin secara manual dari http://plugins.qgis.org/plugins/inasafe/. " -"Pilih pada versi yang Anda inginkan lalu klik :guilabel:`Download`." - -# 455073c30f7d453fa92a82d381abb6d8 -#: ../../source/user-docs/install.rst:101 -msgid "" -"Delete the :file:`inasafe` folder from your plugins directory. The location " -"of this directory will vary depending on your operating system (see the " -"previous section). For Windows users the :file:`inasafe` directory would be " -"in :file:`C:\\\\Users\\\\\\\\.qgis2\\\\python\\\\plugins`." -msgstr "" -"Hapus folder :file:`inasafe` dari direktori plugin Anda. Lokasi dari " -"direktori akan bervariasi tergantung pada sistem operasi Anda (lihat pada " -"bagian sebelumnya). Untuk pengguna Windows direktori :file:`inasafe` ini " -"akan berada di :file:`C:\\\\Users\\\\\\\\.qgis2\\\\python\\" -"\\plugins`." - -# 44ad26aa92af4039b839bcfa9ae08a43 -#: ../../source/user-docs/install.rst:107 -msgid "" -"Extract the downloaded version into that folder, effectively replacing the " -"previous version with whichever version you downloaded in step 1." -msgstr "" -"Ekstrak versi yang telah terdownload ke folder, cara efektif ganti versi " -"sebelumnya dengan versi yang telah terdownload pada langkah 1." - -# 1b42b0c5837f4d51a77101969fc7c251 -#: ../../source/user-docs/install.rst:110 -msgid "Restart QGIS." -msgstr "Restart QGIS." - -# fb5e3a13ec59402fa411a38b3d568a4e -#: ../../source/user-docs/install.rst:113 -msgid "System Requirements" -msgstr "Persyaratan Sistem" - -# 174e3e63c96c4ead9a9542dcdb7ae7e3 -#: ../../source/user-docs/install.rst:115 -msgid "The requirements for running |project_name| are:" -msgstr "Persyaratkan untuk menjalankan |project_name| yaitu:" - -# 856dd54279f14edf98f9c6628716611f -#: ../../source/user-docs/install.rst:117 -msgid "a standard PC with at least 4GB of RAM running Windows, Linux or OS X" -msgstr "" -"sebuah standar PC dengan RAM setidaknya 4GB dan berjalan pada Windows, Linux " -"atau OS X" - -# 35115f8efc754be2920c172ee9ca2fb3 -#: ../../source/user-docs/install.rst:118 -msgid "" -"QGIS long term release version (http://www.qgis.org); |project_name| " -"requires QGIS version 2.8 or newer" -msgstr "" -"Sistem Informasi Geografis Open Source QGIS (http://www.qgis.org); |" -"project_name| membutuhkan QGIS versi 2.8 atau terbaru." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/issue_tracker.po b/docs/i18n/id/LC_MESSAGES/user-docs/issue_tracker.po deleted file mode 100644 index aefeb2ce..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/issue_tracker.po +++ /dev/null @@ -1,174 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: InaSAFE Documentation Project 2.1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: adityo dwijananto , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/inasafe/teams/57764/" -"id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# f779dd55e6ca4e3e9962c7e068c89ad0 -#: ../../source/user-docs/issue_tracker.rst:4 -msgid "Submit an Issue" -msgstr "Menambahkan sebuah isu" - -# a3894653788248e88f8d7cc28c29be37 -#: ../../source/user-docs/issue_tracker.rst:6 -msgid "" -"You are more than welcome to let us know when you have found a bug or an " -"issue in |project_name|." -msgstr "" -"Anda sangat diperbolehkan untuk memberitahu kami jika anda menemukan masalah " -"atau isu pada |project_name|." - -# 03485481904f48d597caa07f03aa60fd -#: ../../source/user-docs/issue_tracker.rst:9 -msgid "" -"Issues are documented on |github|. You can report here on any issues, taking " -"advantage of markdown to make your report clear and visible to the " -"developers." -msgstr "" -"Isu-isu didokumentasikan dalam |github|. Anda dapat melaporkan isu apapun " -"disini, keuntungan menggunakan markdown adalah dapat membuat laporan Anda " -"jelas dan terlihat oleh pengembang." - -# 4dd9e78befbe47d18280dadef76e9e2b -#: ../../source/user-docs/issue_tracker.rst:13 -msgid "" -"To be able to track your issue best we have created the following rules so " -"that the issue will be easily recognised by a developer and hopefully solved " -"as fast as possible:" -msgstr "" -"Untuk dapat melacak isu Anda dengan baik, kami telah membuat aturan-aturan " -"berikut agar isu tersebut dengan mudah dikenal oleh pengembang dan semoga " -"dapat diselesaikan secepatnya." - -# e70b4ad9523646369992e1cb9c761f26 -#: ../../source/user-docs/issue_tracker.rst:17 -msgid "Check if the issue is already documented (search existing issues)" -msgstr "" -"Periksa apabila isu tersebut telah terdokumentasi (mencari isu-isu yang " -"sudah ada)" - -# 4f8c4857c8d34e0291e5cfd4bac11658 -#: ../../source/user-docs/issue_tracker.rst:18 -msgid "" -"If it is documented, add a comment to the issue; otherwise create a new issue" -msgstr "" -"Jika sudah terdokumentasi - tambahkan komentar pada isu; jika tidak, buatlah " -"isu yang baru" - -# 0ee5c7dc3eb04c3a886c0b503950ba68 -#: ../../source/user-docs/issue_tracker.rst:19 -msgid "When creating a new issue, the format should typically be:" -msgstr "Ketika membuat masalah baru, format biasanya harus:" - -# 87c49a6e68dc4e17b83ae8ace8db47c7 -#: ../../source/user-docs/issue_tracker.rst:21 -msgid "# Problem" -msgstr "# Masalah" - -# af0bc345e06a436f9854301a3ad2440c -#: ../../source/user-docs/issue_tracker.rst:22 -msgid "# Expected Outcome" -msgstr "# Hasil yang diharapkan" - -# 2336103a23b747ac993272b15bc2c8f4 -#: ../../source/user-docs/issue_tracker.rst:23 -msgid "# Example (with data or images)" -msgstr "# Contoh (dengan data atau gambar)" - -# 0749cdfc88a44c89b16ef67da9b9372f -#: ../../source/user-docs/issue_tracker.rst:24 -msgid "# Solution (if possible)" -msgstr "# Solusi (jika memungkinkan)" - -# 8001caa5522045a687bb6888613778eb -#: ../../source/user-docs/issue_tracker.rst:25 -msgid "" -"# Version and OS – (if necessary) InaSAFE/QGIS version and operating system" -msgstr "" -"# Versi dan Sistem Operasi - (jika diperlukan) versi QGIS/InaSAFE dan sistem " -"operasi" - -# 09efb887c07247b1b4fea7114669eb66 -#: ../../source/user-docs/issue_tracker.rst:27 -msgid "Task a developer to it (if you know who might solve it)" -msgstr "" -"Tugaskan seorang pengembang pada isu tersebut (jika anda mungkin tahu siapa " -"yang kemungkinan dapat menyelesaikannya)" - -# 90488ae3313144b19d9a4e87abb1265a -#: ../../source/user-docs/issue_tracker.rst:28 -msgid "Add tags and milestones (if possible)" -msgstr "Tambahkan tags dan pencapaian (jika memungkinkan)." - -# 668a0fe1e5724f0ab388062459f068f0 -#: ../../source/user-docs/issue_tracker.rst:30 -msgid "To track the issue down it would be even more helpful if you:" -msgstr "Melacak isu akan lebih baik lagi jika anda:" - -# 6e17f38468514b8080ff70d97155779c -#: ../../source/user-docs/issue_tracker.rst:32 -msgid "" -"Take screenshots to illustrate the issue; you can drag and drop the " -"screenshot into the ticket (on |github|)." -msgstr "" -"Mengambil *screenshot* untuk menggambarkan isu tersebut; Anda dapat " -"menggeser dan menaruh *screenshot* tersebut ke dalam tiket (pada |github|)." - -# 1fb6c570cc41466eb75893a141475c8d -#: ../../source/user-docs/issue_tracker.rst:34 -msgid "" -"If you can, cut and paste an error message text or similar textual output, " -"we prefer that over a screenshot." -msgstr "" -"Jika anda mampu, potong dan salin sebuah pesan teks kesalahan atau hasil " -"tekstual serupa, kami lebih memilih pesan teks tersebut daripada sebuah " -"screenshot." - -# 495fef4511a946839ed6a7dc69a06ab3 -#: ../../source/user-docs/issue_tracker.rst:36 -msgid "" -"If you are pasting verbatim text, place it inside three backticks like so:" -msgstr "" -"Jika anda menyalin teks khusus, letakan di antara tiga tanda petik terbalik:" - -# db30927bf275450ead920b52f29b003d -#: ../../source/user-docs/issue_tracker.rst:44 -msgid "" -"Add a # CC section and include others who may be interested in following the " -"ticket if needed:" -msgstr "" -"Tambahkan bagian # CC dan masukan orang-orang yang kemungkinan memiliki " -"ketertarikan untuk mengikuti tiket jika diperlukan:" - -# 24db6847223b4c3dbaf17cc4066698ed -#: ../../source/user-docs/issue_tracker.rst:54 -msgid "" -"Add a # See Also section to cross reference to other tickets or commits if " -"needed:" -msgstr "" -"Tambahkan bagian # Lihat Juga untuk memberikan referensi pada tiket-tiket " -"yang lain atau perubahan-perubahan tertentu jika dibutuhkan:" - -# 4d87da11ffdb40c8b7a42cc0f127d07c -#: ../../source/user-docs/issue_tracker.rst:65 -msgid "" -"If you don't know what to do, have a look at the already existing issues and " -"copy the necessary parts to your issue." -msgstr "" -"Jika anda masih belum paham untuk melakukannya, silahkan melihat pada isu " -"yang sudah tersedia dan salin beberapa bagian untuk isu anda." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/lookup_table.po b/docs/i18n/id/LC_MESSAGES/user-docs/lookup_table.po deleted file mode 100644 index 20d19cf8..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/lookup_table.po +++ /dev/null @@ -1,729 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# mahardika fadmastuti , 2014 -# Werner Macho , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:27+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 1fc3247ddc214e5c8f5903ab4972d697 -#: ../../source/user-docs/lookup_table.rst:6 -msgid "Lookup-Table" -msgstr "Lookup-Table" - -# 1be94728e44d44ae8e7d4f7323416f05 -#: ../../source/user-docs/lookup_table.rst:8 -msgid "" -"Here you can find a Table of not translate able phrases and words. Take it " -"as a dictionary if you are going to translate with transifex" -msgstr "" -"Disini Anda dapat menemukan sebuah tabel mengenai kalimat dan kata yang " -"tidak perlu di terjemahkan. Gunakan ini sebagai kamus acuan jika Anda ingin " -"menerjemahkan dengan transifex." - -# 0ff165e142df4826b63ee04c2d5fe347 -#: ../../source/user-docs/lookup_table.rst:12 -msgid "Indonesian Translation Index" -msgstr "Indeks Terjemahan Bahasa Indonesia" - -# e9c3107b6ba5450eb8636d84c6ea98f0 -#: ../../source/user-docs/lookup_table.rst:14 -msgid "" -"To coordinate translation of InaSAFE into Bahasa Indonesian we have " -"developed a table of commonly used terms and translation." -msgstr "" -"Untuk mengkoordinir penerjemahan InaSAFE kedalam Bahasa Indonesia kami telah " -"mempunyai tabel yang berisi kata-kata yang biasa digunakan dan " -"terjemahannya." - -# dab9058f648c4c788739f720a22db0f3 -#: ../../source/user-docs/lookup_table.rst:18 -msgid "English" -msgstr "Inggris" - -# e521161f0f9f40049e6b7c069211182d -#: ../../source/user-docs/lookup_table.rst:18 -msgid "Bahasa Indonesia" -msgstr "Bahasa Indonesia" - -# 0aa0e9ef4f024f64b7ff27fdf3f7f97d -#: ../../source/user-docs/lookup_table.rst:20 -msgid "hazard" -msgstr "ancaman" - -# 3878422e7f3f4067a2ccc583492a0598 -#: ../../source/user-docs/lookup_table.rst:20 -msgid "ancaman" -msgstr "ancaman" - -# 1e0c06421aba4aca862f23683d79dc68 -#: ../../source/user-docs/lookup_table.rst:21 -msgid "exposure" -msgstr "keterpaparan" - -# 0b936af502294d60b1d383b18e54e19c -#: ../../source/user-docs/lookup_table.rst:21 -msgid "keterpaparan" -msgstr "keterpaparan" - -# c524ddfa09484222bb58f1a2551b686a -#: ../../source/user-docs/lookup_table.rst:22 -msgid "activities" -msgstr "*activities*" - -# 910dd35758c74ced98f691f2be65ba1e -#: ../../source/user-docs/lookup_table.rst:22 -msgid "langkah kegiatan" -msgstr "langkah kegiatan" - -# f2efee3c55184787be0c4aaa2c883e5a -#: ../../source/user-docs/lookup_table.rst:23 -msgid "common problem" -msgstr "*common problem*" - -# 0e348a1885224fc5b6ea0be270c7a2f9 -#: ../../source/user-docs/lookup_table.rst:23 -msgid "masalah yang sering dijumpai" -msgstr "masalah yang sering dijumpai" - -# 78efcc7695784f628f077e917bc0411d -#: ../../source/user-docs/lookup_table.rst:24 -msgid "workshop" -msgstr "*workshop*" - -# d00c23b89a594590b520579412ee7239 -#: ../../source/user-docs/lookup_table.rst:24 -msgid "lokakarya" -msgstr "lokakarya" - -# 2e91c9a17c35406d909eaaeaa27857fa -#: ../../source/user-docs/lookup_table.rst:25 -msgid "jobs" -msgstr "*jobs*" - -# f5a3a1ce4e2740c987bc7ba30681b952 -#: ../../source/user-docs/lookup_table.rst:25 -msgid "job" -msgstr "job" - -# 5e4429690387470f82ef40e6f88272aa -#: ../../source/user-docs/lookup_table.rst:26 -msgid "working with" -msgstr "*working with*" - -# 727cb5ce660f4d1c927fe555d298e520 -#: ../../source/user-docs/lookup_table.rst:26 -msgid "pengoperasian/mengoperasikan" -msgstr "pengoperasian/mengoperasikan " - -# 47bb3188ca26444c9a195de1622efb8e -#: ../../source/user-docs/lookup_table.rst:27 -msgid "demo" -msgstr "*demo*" - -# 324b4a6e635544c0843162d84ee34008 -#: ../../source/user-docs/lookup_table.rst:27 -msgid "demonstrasi" -msgstr "demonstrasi" - -# e2c7ffba01d947d689ceb366efd6d35c -#: ../../source/user-docs/lookup_table.rst:28 -msgid "module" -msgstr "*module*" - -# d46983e3c57e46609419c3def45272b6 -#: ../../source/user-docs/lookup_table.rst:28 -msgid "modul" -msgstr "modul" - -# e7344882faed42ddb5585048462adeaf -#: ../../source/user-docs/lookup_table.rst:29 -msgid "learning activity" -msgstr "*learning activity*" - -# 4c4350736f374c7abbc618278feb004a -#: ../../source/user-docs/lookup_table.rst:29 -msgid "kegiatan pembelajaran" -msgstr "kegiatan pembelajaran" - -# af2d3b32d87a49ff8a59169b76c241c7 -#: ../../source/user-docs/lookup_table.rst:30 -msgid "population" -msgstr "penduduk" - -# e1518250a058443db8162d774a8bb559 -#: ../../source/user-docs/lookup_table.rst:30 -msgid "populasi" -msgstr "populasi" - -# abc3bbfd6d334ff788a5542d75a6ac5d -#: ../../source/user-docs/lookup_table.rst:31 -msgid "keyword" -msgstr "*keyword*" - -# 57ee2ca9102f464e842175e117e3f909 -#: ../../source/user-docs/lookup_table.rst:31 -msgid "kata kunci" -msgstr "kata kunci" - -# 8875892946f046d6abcd83da7198510a -#: ../../source/user-docs/lookup_table.rst:32 -msgid "update" -msgstr "*update*" - -# 3e19fd6f31be49269f9b3b12a6956583 -#: ../../source/user-docs/lookup_table.rst:32 -msgid "pembaharuan" -msgstr "pembaharuan" - -# 823ad9ef3d4946dd8f40b99a528dfecf -#: ../../source/user-docs/lookup_table.rst:33 -msgid "option" -msgstr "*option*" - -# 8141c52e7791483786c5bb133886c016 -#: ../../source/user-docs/lookup_table.rst:33 -msgid "pilihan" -msgstr "pilihan" - -# 65915f3a501f4f128f0f9cd0a19b0cf1 -#: ../../source/user-docs/lookup_table.rst:34 -msgid "interface" -msgstr "*interface*" - -# ff30002f734841f58f1105d04b61cfdc -#: ../../source/user-docs/lookup_table.rst:34 -msgid "antarmuka/tampilan antarmuka (sesuaikan dengan kalimat)" -msgstr "antarmuka/tampilan antarmuka (sesuaikan dengan kalimat) " - -# c72dc75a3e004eeba950b3a94250d705 -#: ../../source/user-docs/lookup_table.rst:35 -msgid "software" -msgstr "*software*" - -# 931924d669d54e5389edc104999e3909 -#: ../../source/user-docs/lookup_table.rst:35 -msgid "perangkat lunak" -msgstr "perangkat lunak" - -# a91f9e52ba8d4794b6c724e19bac4bcd -#: ../../source/user-docs/lookup_table.rst:36 -msgid "hardware" -msgstr "*hardware*" - -# a83f8d06e6ab4ceca44f88b22c20816e -#: ../../source/user-docs/lookup_table.rst:36 -msgid "perangkat keras" -msgstr "perangkat keras" - -# f6966da835f644e1a79ead5ceec1832a -#: ../../source/user-docs/lookup_table.rst:37 -msgid "check" -msgstr "*check*" - -# 53e05b5d796a4867aaeb7483a4aae7a2 -#: ../../source/user-docs/lookup_table.rst:37 -msgid "tanda centang" -msgstr "tanda centang" - -# 883f930ab17347158512f4b49bff315e -#: ../../source/user-docs/lookup_table.rst:38 -msgid "checklist" -msgstr "*checklist*" - -# 30a48e5abbf4462480e349c679371457 -#: ../../source/user-docs/lookup_table.rst:38 -msgid "daftar aktivitas/daftar kebutuhan" -msgstr "daftar aktivitas/daftar kebutuhan" - -# 777e9ce2212f4f839c093f635318242e -#: ../../source/user-docs/lookup_table.rst:39 -msgid "GIS" -msgstr "*GIS*" - -# a9d9d85bf62649d1bf0b3fca3875d62f -#: ../../source/user-docs/lookup_table.rst:39 -msgid "SIG" -msgstr "SIG" - -# eb05c6e978b24188baf3e4a9067b098a -#: ../../source/user-docs/lookup_table.rst:40 -msgid "explore" -msgstr "*explore*" - -# 47d1cc8af1864d4b8af6dcdbc1708a24 -#: ../../source/user-docs/lookup_table.rst:40 -msgid "eksplorasi" -msgstr "eksplorasi" - -# c95142eb0abd401482de83c953042fbf -#: ../../source/user-docs/lookup_table.rst:41 -msgid "website" -msgstr "*website*" - -# 942df04ab17a487cb8d5d4e959d5bf6a -#: ../../source/user-docs/lookup_table.rst:41 -msgid "situs" -msgstr "situs" - -# fc3d54fcbf24465597da7f35e3b9b1b2 -#: ../../source/user-docs/lookup_table.rst:42 -msgid "login" -msgstr "*login*" - -# d76eff4dbb9f4cb18ddd4e409f733bba -#: ../../source/user-docs/lookup_table.rst:42 -msgid "masuk" -msgstr "masuk" - -# eebc5587d16c4ec4901a9128474e5556 -#: ../../source/user-docs/lookup_table.rst:43 -msgid "username" -msgstr "*username*" - -# ae1e2bb4ef71429aacd6abd0243d4b15 -#: ../../source/user-docs/lookup_table.rst:43 -msgid "nama pengguna" -msgstr "nama pengguna" - -# a0f816edacc64745aae71858c5147454 -#: ../../source/user-docs/lookup_table.rst:44 -msgid "attribute" -msgstr "*attribute*" - -# 558aa629d0bc4936b1f71f885e6dd27b -#: ../../source/user-docs/lookup_table.rst:44 -msgid "atribut" -msgstr "atribut" - -# d8c455097fc04ae398cb1b300f324da1 -#: ../../source/user-docs/lookup_table.rst:45 -msgid "symbology" -msgstr "*symbology*" - -# 37d9a378e0124e82821d4de03d6ddc1e -#: ../../source/user-docs/lookup_table.rst:45 -msgid "pengaturan simbol" -msgstr "pengaturan symbol" - -# 7404b4cac9324b33810333ec729fa665 -#: ../../source/user-docs/lookup_table.rst:46 -msgid "footprint hazard" -msgstr "*footprint hazard*" - -# dc0b5fd181a24509b36f00e32ceedde3 -#: ../../source/user-docs/lookup_table.rst:46 -msgid "batas area bencana" -msgstr "batas area bencana" - -# 9d1ec8d46aaf4f9b8d02f91c14997d07 -#: ../../source/user-docs/lookup_table.rst:47 -msgid "building footprint" -msgstr "*building footprint*" - -# 5374f39c9a6048f09f0cff1119c3f30f -#: ../../source/user-docs/lookup_table.rst:47 -msgid "batas tapak bangunan" -msgstr "batas tapak bangunan" - -# 97822dd9adc3417aa4c8b84a22d66797 -#: ../../source/user-docs/lookup_table.rst:48 -msgid "way" -msgstr "*way*" - -# 9f4e62c289fc4bd8a398be3ca5144066 -#: ../../source/user-docs/lookup_table.rst:48 -msgid "garis" -msgstr "garis" - -# 6162a83b2643440c92ad4c943900faa3 -#: ../../source/user-docs/lookup_table.rst:49 -msgid "polygon" -msgstr "*polygon*" - -# c31a593052c44f208f67aff8fce4939a -#: ../../source/user-docs/lookup_table.rst:49 -msgid "poligon" -msgstr "poligon" - -# 130e2eb9eb0c4e4f932e91e2e5939aa2 -#: ../../source/user-docs/lookup_table.rst:50 -msgid "editing" -msgstr "*editing*" - -# 3d05fe5753794bb09be95dd6e80efeb8 -#: ../../source/user-docs/lookup_table.rst:50 -msgid "mengedit" -msgstr "mengedit" - -# 02db8974e31b496d839829b63bd65681 -#: ../../source/user-docs/lookup_table.rst:51 -msgid "browse" -msgstr "*browse*" - -# 3ad7c88e2cfe4435b30c4619cb2f775b -#: ../../source/user-docs/lookup_table.rst:51 -msgid "telusuri" -msgstr "telusuri" - -# 7cebb37c11bc483fa48f54d140a0cac6 -#: ../../source/user-docs/lookup_table.rst:52 -msgid "password" -msgstr "*password*" - -# f1798dfa8f584141bfecb972e09d01cd -#: ../../source/user-docs/lookup_table.rst:52 -msgid "kata sandi" -msgstr "kata sandi" - -# 3b1892c8fdc542db942e87e993427515 -#: ../../source/user-docs/lookup_table.rst:53 -msgid "dropdown" -msgstr "*dropdown*" - -# 411a3a6937e44ccf933dcfb97d58e078 -#: ../../source/user-docs/lookup_table.rst:53 -msgid "daftar pilihan" -msgstr "daftar pilihan" - -# 52716efaf2f0443ba29ebd3e906a3279 -#: ../../source/user-docs/lookup_table.rst:54 -msgid "default" -msgstr "*default*" - -# 21aaade1a02548338e73f2f69fc81bf3 -#: ../../source/user-docs/lookup_table.rst:54 -msgid "pengaturan bawaan" -msgstr "pengaturan bawaan" - -# 91f7d0423fdf4918a601a11e62fb7d07 -#: ../../source/user-docs/lookup_table.rst:55 -msgid "contingency" -msgstr "*contingency*" - -# abf88ab862a24d6abe9c1d8373b799e5 -#: ../../source/user-docs/lookup_table.rst:55 -msgid "kontinjensi" -msgstr "kontinjensi" - -# ee1b530fc02d4eab9d95eb747aecc2e3 -#: ../../source/user-docs/lookup_table.rst:56 -msgid "digitalization" -msgstr "digitalization" - -# bf33e1bc862d4aad834a7c72890298c2 -#: ../../source/user-docs/lookup_table.rst:56 -msgid "digitalisasi" -msgstr "digitalisasi" - -# da7d4cd22fdd472a92c612cfd26553d3 -#: ../../source/user-docs/lookup_table.rst:57 -msgid "drag" -msgstr "drag" - -# 52b84da2eed74758bab37432c5304260 -#: ../../source/user-docs/lookup_table.rst:57 -msgid "geser" -msgstr "geser" - -# b355852916224789b53aa525256a0c1e -#: ../../source/user-docs/lookup_table.rst:58 -msgid "practicing" -msgstr "practicing" - -# 380030ecba364770aa6cdbc1a0d5c9aa -#: ../../source/user-docs/lookup_table.rst:58 -msgid "mempraktikkan" -msgstr "mempraktikkan" - -# 5afebf552eeb4d5fb26b4a925bda6fb4 -#: ../../source/user-docs/lookup_table.rst:59 -msgid "IDP camp" -msgstr "IDP camp" - -# c21583e17f5743c389f13007b99a147e -#: ../../source/user-docs/lookup_table.rst:59 -msgid "tempat pengungsian" -msgstr "tempat pengungsian" - -# 17accaad83ba41638e6443333433b14e -#: ../../source/user-docs/lookup_table.rst:60 -msgid "map canvas" -msgstr "map canvas" - -# 9221004a4c1a4887bf66159cd7cbcb4d -#: ../../source/user-docs/lookup_table.rst:60 -msgid "kanvas peta" -msgstr "kanvas peta" - -# 86e59eecf6a44f819141f606a6f13e1e -#: ../../source/user-docs/lookup_table.rst:61 -msgid "filter" -msgstr "filter" - -# 410534a62c214016ae601427ec60a127 -#: ../../source/user-docs/lookup_table.rst:61 -msgid "penyaringan" -msgstr "penyaringan" - -# c456043244ed465c82101af8b0e684b0 -#: ../../source/user-docs/lookup_table.rst:62 -msgid "directory" -msgstr "directory" - -# 40f7e45a1c9a4fbaad6ca43370b51761 -#: ../../source/user-docs/lookup_table.rst:62 -msgid "direktori" -msgstr "direktori" - -# 734fdf27a0104839b30929ca460db240 -#: ../../source/user-docs/lookup_table.rst:63 -msgid "log" -msgstr "log" - -# 96c8e00e835d48aa9e8e8ffd580331a4 -#: ../../source/user-docs/lookup_table.rst:63 -msgid "catatan" -msgstr "catatan" - -# 6e135f69e5134655a63e0a520fc4bb91 -#: ../../source/user-docs/lookup_table.rst:64 -msgid "web browser" -msgstr "web browser" - -# a3d89b9686144dca8342090f431bdbee -#: ../../source/user-docs/lookup_table.rst:64 -msgid "browser internet" -msgstr "browser internet" - -# 4d8daa86241142a6929ce4461109d2be -#: ../../source/user-docs/lookup_table.rst:65 -msgid "feature" -msgstr "feature" - -# 20487dfed00e4b008926ea75fefee5d5 -#: ../../source/user-docs/lookup_table.rst:65 -msgid "fitur" -msgstr "fitur" - -# 0955efe013d843fcb3a8d5f43bb38141 -#: ../../source/user-docs/lookup_table.rst:66 -msgid "liquefied" -msgstr "liquefied" - -# 072eb81128bb4ce494a02f829c172654 -#: ../../source/user-docs/lookup_table.rst:66 -msgid "tergenang" -msgstr "tergenang" - -# 7c596ab3cb3247f0a284fc978401c342 -#: ../../source/user-docs/lookup_table.rst:67 -msgid "intersect" -msgstr "intersect" - -# 3892b074892a4035b6e5fa52f8c27f1f -#: ../../source/user-docs/lookup_table.rst:67 -msgid "perpotongan" -msgstr "perpotongan" - -# 84d5577006434d418ef8f73ac23dee48 -#: ../../source/user-docs/lookup_table.rst:68 -msgid "disclaimer" -msgstr "disclaimer" - -# eb3224394863440ab8382f1e3ee85ac2 -#: ../../source/user-docs/lookup_table.rst:68 -msgid "peringatan" -msgstr "peringatan" - -# 58422176c8b34925a1ca0f1a26d960b7 -#: ../../source/user-docs/lookup_table.rst:69 -msgid "extent" -msgstr "extent" - -# d7b111a9a23d4397a4948cfb818ed938 -#: ../../source/user-docs/lookup_table.rst:69 -msgid "jangkauan" -msgstr "jangkauan" - -# eccf76bee1af42a68a02b4fa62e3052e -#: ../../source/user-docs/lookup_table.rst:74 -msgid "" -"The list of abbreviations to use (including the automatic link to the " -"respective homepage) is: ::" -msgstr "" -"Daftar singkatan yang digunakan (termasuk pada tautan otomatis pada masing-" -"masing website) adalah: ::" - -# 838fcb83cc25408e99446f9e47c4f8b9 -#: ../../source/user-docs/lookup_table.rst:89 -msgid "" -"We have also made a blanket decision not to translate the following words:" -msgstr "" -"Kami juga membuat beberapa keputusan untuk tidak menerjemahkan beberapa kata " -"seperti:" - -# b38e91fa1859433cb79aa88080b8d776 -#: ../../source/user-docs/lookup_table.rst:91 -msgid "*python*" -msgstr "*python*" - -# 7f469206d9f949a8aee68870dcdf5873 -#: ../../source/user-docs/lookup_table.rst:92 -msgid "*qgis*" -msgstr "*qgis*" - -# b86f9a224cca4904bdd8136cd70ac012 -#: ../../source/user-docs/lookup_table.rst:93 -msgid "*batch runner*" -msgstr "*batch runner*" - -# 5d8937671ca3442d96ec451e7c467fc2 -#: ../../source/user-docs/lookup_table.rst:94 -msgid "*review*" -msgstr "*review*" - -# 26d2ba4df6f54363a777e3d98db971ab -#: ../../source/user-docs/lookup_table.rst:95 -msgid "*tool*" -msgstr "*tool*" - -# 5c26c87e15c94cb881db56eb591c6b03 -#: ../../source/user-docs/lookup_table.rst:96 -msgid "*template*" -msgstr "*template*" - -# 96653e8dc8bb48bc965c81a64e908285 -#: ../../source/user-docs/lookup_table.rst:97 -msgid "*input*" -msgstr "*input*" - -# a3657b7d642049d89bb208f21e06936e -#: ../../source/user-docs/lookup_table.rst:98 -msgid "*output*" -msgstr "*output*" - -# 3ccbc82d476e4afb8031d9ada2f8c485 -#: ../../source/user-docs/lookup_table.rst:99 -msgid "*layer*" -msgstr "*layer*" - -# 38f1a5036f034a14974c4804549e93d7 -#: ../../source/user-docs/lookup_table.rst:100 -msgid "*layout*" -msgstr "*layout*" - -# 6f23913aaddf4ffe93bbc1653b58d141 -#: ../../source/user-docs/lookup_table.rst:101 -msgid "*upload*" -msgstr "*upload*" - -# fa8e876dd0d84b9e8537730ccd401101 -#: ../../source/user-docs/lookup_table.rst:102 -msgid "*download*" -msgstr "*download*" - -# 65e14eab909842848560c9b0efd9bc4b -#: ../../source/user-docs/lookup_table.rst:103 -msgid "*tag*" -msgstr "*tag*" - -# 3ceab0d34a4348e581575f576010377a -#: ../../source/user-docs/lookup_table.rst:104 -msgid "*edit*" -msgstr "*edit*" - -# 9637e9283e7845658d783d6c7ccc2d39 -#: ../../source/user-docs/lookup_table.rst:105 -msgid "*field papers*" -msgstr "*field papers*" - -# c46cf352e1be4e89a9559e691dc5aab9 -#: ../../source/user-docs/lookup_table.rst:106 -msgid "*value*" -msgstr "*value*" - -# a15c4f67c1874f87a11e0ff7e9353600 -#: ../../source/user-docs/lookup_table.rst:107 -msgid "*query*" -msgstr "*query*" - -# 04a7e0186fd243b6861efde7391bcd9b -#: ../../source/user-docs/lookup_table.rst:108 -msgid "*buffer*" -msgstr "*buffer*" - -# 518616e0fe444846a4ce36bbd2242052 -#: ../../source/user-docs/lookup_table.rst:109 -msgid "*field*" -msgstr "*field*" - -# 73af9f87360b4135ab09551ef337f095 -#: ../../source/user-docs/lookup_table.rst:110 -msgid "*field calculator*" -msgstr "*field calculator*" - -# 1422b4dfdcb644ebab78e4baa54a8df6 -#: ../../source/user-docs/lookup_table.rst:111 -msgid "*outcome*" -msgstr "*outcome*" - -# 20d5402ced68413eb541a4543cb63653 -#: ../../source/user-docs/lookup_table.rst:112 -msgid "*plugin*" -msgstr "*plugin*" - -# 47f80879c8d34d6f8495540804ab044c -#: ../../source/user-docs/lookup_table.rst:113 -msgid "*overlay*" -msgstr "*overlay*" - -# 491522e469e24ee29dff5541e6dd5acf -#: ../../source/user-docs/lookup_table.rst:114 -msgid "*file*" -msgstr "*file*" - -# 785e2c2cee0348a1865bafb9a4d08015 -#: ../../source/user-docs/lookup_table.rst:115 -msgid "*node*" -msgstr "*node*" - -# 31bd718d9c144f178e3280a2342ade7c -#: ../../source/user-docs/lookup_table.rst:116 -msgid "*track*" -msgstr "*track*" - -# af7e89ab287346b1803800619e913231 -#: ../../source/user-docs/lookup_table.rst:117 -msgid "*track log*" -msgstr "*track log*" - -# 13963c37194d4b2f947850defce3868b -#: ../../source/user-docs/lookup_table.rst:118 -msgid "*waypoint*" -msgstr "*waypoint*" - -# c90170d518ca481798e40d7b9d43842a -#: ../../source/user-docs/lookup_table.rst:119 -msgid "*copy & paste*" -msgstr "*copy & paste*" - -# 597b4c192a4745d581a676696bbb3ca5 -#: ../../source/user-docs/lookup_table.rst:121 -msgid "Please add to this list as required." -msgstr "Harap tambahkan ke dalam list ini jika diperlukan." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/postprocessors.po b/docs/i18n/id/LC_MESSAGES/user-docs/postprocessors.po deleted file mode 100644 index e8c85227..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/postprocessors.po +++ /dev/null @@ -1,160 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# Emir Hartato , 2013 -# Emir Hartato , 2013 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# Ismail Sunni, 2013 -# mahardika fadmastuti , 2013 -# Werner Macho , 2014 -# Yantisa Akhadi , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:15+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# fc954024a96d4fef8531671f0de1c2f7 -#: ../../source/user-docs/postprocessors.rst:4 -msgid "Post-processors" -msgstr "*Post-prosesor*" - -# 2b264c4e894247a6b2b9df78000d2e49 -#: ../../source/user-docs/postprocessors.rst:6 -msgid "" -"This document explains the purpose of post-processors and lists the " -"different available post-processors and the requirements each has to be used " -"effectively." -msgstr "" -"Dokumen ini menjelaskan tujuan dari pasca-prosesor dan daftar pasca-prosesor " -"berbeda yang tersedia dan kebutuhan yang diperlukan untuk digunakan dengan " -"efektif." - -# 56d7283bb3cc4fd6bae34a446eac6c6e -#: ../../source/user-docs/postprocessors.rst:11 -msgid "What is a post-processor?" -msgstr "Apa itu *post-prosesor* ?" - -# 469e9bb96437465a941d1944ffb9f4d4 -#: ../../source/user-docs/postprocessors.rst:13 -msgid "" -"A post-processor is a function that takes the results from the impact " -"function and calculates derivative indicators. For example, if you have an " -"affected population total, the **Gender** post-processor will calculate " -"gender specific indicators such as additional nutritional requirements for " -"pregnant women." -msgstr "" -"Pasca pemrosesan merupakan sebuah fungsi yang akan mengambil hasil dari " -"fungsi dampak dan mengkalkulasi indikator turunan. Sebagai contoh jika Anda " -"mempunyai jumlah populasi terdampak, pasca pemrosesan **Gender** akan " -"menghitung indikator yang terkait dengan jenis kelamin secara lebih khusus " -"misalnya tambahan nutrisi yang dibutuhkan untuk ibu hamil." - -# ba455c2f6581464a9c88bf37fd7e164c -#: ../../source/user-docs/postprocessors.rst:19 -msgid "Selecting a post-processor" -msgstr "Memilih *post-prosesor*" - -# 157e1ee340a24785bbec746a7cdb1ee9 -#: ../../source/user-docs/postprocessors.rst:21 -msgid "" -"Post-processors and their settings can be edited in the user configurable " -"function parameters dialog. See :ref:`analysis_parameters` for more " -"information." -msgstr "" -"Pasca pemrosesan dan pengaturannya dapat diedit pada kotak dialog parameter " -"fungsi yang dapat dikonfigurasi oleh pengguna. Lihat :ref:" -"`analysis_parameters` untuk memperoleh informasi lebih lengkap." - -# 3c23e755fe884eeebf92d5808dc36cb3 -#: ../../source/user-docs/postprocessors.rst:25 -msgid "" -"To disable a post-processor simply go to the :guilabel:`Postprocessors` tab " -"and enable or disable any post-processor you like by clicking on the " -"checkbox next to it. You can even set the post-processing values you like " -"here by entering the values in the fields." -msgstr "" -"Untuk menonaktifkan pasca pemrosesan, pergi ke tab :guilabel:" -"`Postprocessors` dan aktifkan atau menonaktifkan pasca pemrosesan manapun " -"yang Anda inginkan dengan mencentang kotak di sampingnya. Anda bahkan dapat " -"menetapkan nilai pasca pemrosesan yang Anda inginkan dengan memasukkan nilai " -"pada kotak isian yang ada." - -# 59f52bdfdb2e41a58e575e9071df3540 -#: ../../source/user-docs/postprocessors.rst:30 -msgid "" -"If you don't see a post-processors field, it means that the impact function " -"you are trying to use does not support any post-processor." -msgstr "" -"Jika Anda tidak melihat *field* pasca pemrosesan, berarti fungsi dampak yang " -"ingin Anda gunakan tidak mendukung pasca pemrosesan apapun." - -# c5215a8aa0994460a5a4b8a07563f92a -#: ../../source/user-docs/postprocessors.rst:38 -#, fuzzy -msgid "Post-processor configuration" -msgstr "*Konfigurasi pasca pemrosesan*" - -# c5215a8aa0994460a5a4b8a07563f92a -#: ../../source/user-docs/postprocessors.rst:38 -msgid "*Post-processor configuration*" -msgstr "*Konfigurasi pasca pemrosesan*" - -# 0e78094585004ea7a92c0a7676533f6b -#: ../../source/user-docs/postprocessors.rst:40 -msgid "" -"Each activated post-processor will create an additional report in the dock " -"and in the printout. If problems arise while post-processing, the system " -"will inform you and will skip post-processing." -msgstr "" -"Setiap pasca pemrosesan yang aktif akan membuat sebuah laporan tambahan pada " -"dek dan pada hasil cetak. Jika terjadi suatu masalah pada saat melakukan " -"pasca pemrosesan, sistem akan memberi tahu Anda dan akan melewati pasca " -"pemrosesan." - -# 59a35bb172dc47aea496c9f9f14412e4 -#: ../../source/user-docs/postprocessors.rst:45 -msgid "Creating post-processors" -msgstr "Membuat *post-prosesor*" - -# 7b240a09abdc40d985a01ed93831d0b1 -#: ../../source/user-docs/postprocessors.rst:47 -msgid "" -"If you feel there is an important post-processor which is missing, there are " -"two avenues you can follow:" -msgstr "" -"Jika anda merasa terdapat suatu post-processor penting yang tidak ada, " -"terdapat dua langkah yang anda dapat ikuti:" - -# 9561d20fa8754f2a93fff6fe284ddd71 -#: ../../source/user-docs/postprocessors.rst:50 -msgid "" -"You can develop it yourself or with the aid of a programmer who has a good " -"understanding of the python programming language." -msgstr "" -"Anda dapat mengembagkannya sendiri atau dengan bantuan seorang programmer " -"yang memiliki pemahaman baik mengenai bahasa program python" - -# 0cf4cc857cba4322b87fd904fb1e5042 -#: ../../source/user-docs/postprocessors.rst:52 -msgid "" -"You can file a ticket on our `issue tracking system `_, and if time and resources allow we will implement " -"it for you." -msgstr "" -"Anda dapat melaporkan sebuah tiket pada `sistem pengecekan masalah `_, dan jika terdapat waktu dan sumber daya, " -"kami akan mengimplementasikannya untuk anda." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/toolbar.po b/docs/i18n/id/LC_MESSAGES/user-docs/toolbar.po deleted file mode 100644 index c304cfb5..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/toolbar.po +++ /dev/null @@ -1,294 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# adityo dwijananto , 2013 -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# Werner Macho , 2013 -# mahardika fadmastuti , 2013 -# Werner Macho , 2013-2014 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 02:39+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# dc6ca43345164bf2b77249eb27ed9f71 -#: ../../source/user-docs/toolbar.rst:4 -msgid "Toolbar" -msgstr "Toolbar" - -# 54cd4953a2074769a38bf63f461674fa -#: ../../source/user-docs/toolbar.rst:6 -msgid "" -"Here the different icons (buttons) in the toolbar and the function of each " -"are explained." -msgstr "" -"Bagian ini berisi penjelasan dari ikon (tombol) yang berbeda dalam *toolbar* " -"dan fungsi dari yang telah dijelaskan." - -# 25eaf514243b4fd496ca5a4ff9515c5f -#: ../../source/user-docs/toolbar.rst:12 -msgid "Toggle |project_name| Dock" -msgstr "Tombol untuk beralih ke |project_name|" - -# eaaede7cbee64a10b2619678496261a9 -#: ../../source/user-docs/toolbar.rst:19 -#, fuzzy -msgid "Toggle the Dock" -msgstr "*Tombol untuk beralih ke InaSAFE*" - -# eaaede7cbee64a10b2619678496261a9 -#: ../../source/user-docs/toolbar.rst:19 -msgid "*Toggle Dock*" -msgstr "*Tombol untuk beralih ke InaSAFE*" - -# 1686d83785e6462eb792ab2595a2164e -#: ../../source/user-docs/toolbar.rst:21 -msgid "" -"This button shows and hides the |project_name| dock. After enabling the dock " -"you are able to move it around your screen. Dock it as a panel within the " -"QGIS interface, or undock it so that it floats as a separate window." -msgstr "" -"Tombol ini memunculkan dan menyembunyikan dok |project_name|. Setelah " -"mengaktifkan dok Anda dapat memindahkannya di sekitar layar Anda. Dok " -"sebagai panel dalam tampilan antarmuka InaSAFE, atau non-aktifkan dok " -"sehingga ada sebagai jendela yang terpisah." - -# fc576de799434367908e6d7b4a683a4d -#: ../../source/user-docs/toolbar.rst:26 -msgid "" -"Find more information about the dock in the :ref:`toolbar_dock` section." -msgstr "" -"Temukan informasi lebih lanjut mengenai dok pada bagian :ref:`toolbar_dock`. " - -# 1d7943bad09a4190a7ef55e65debe4c7 -#: ../../source/user-docs/toolbar.rst:32 -msgid "|project_name| Keyword Editor" -msgstr "|project_name| Editor Kata Kunci" - -# a9df621ebd654a36ad01d8f9c3a17cf8 -#: ../../source/user-docs/toolbar.rst:39 -#, fuzzy -msgid "Keyword Editor" -msgstr "*Editor Kata kunci*" - -# a9df621ebd654a36ad01d8f9c3a17cf8 -#: ../../source/user-docs/toolbar.rst:39 -msgid "*Keyword Editor*" -msgstr "*Editor Kata kunci*" - -# 7d4bcbff3b164dc5aa075ec2586e7193 -#: ../../source/user-docs/toolbar.rst:41 -msgid "" -"The :guilabel:`Keyword Editor` button opens the editor which is is used to " -"edit the keywords needed for |project_name| to create useful output. " -"Keywords are explained in more detail in :ref:`keywords_system`." -msgstr "" -"Tombol :guilabel:`Editor Kata Kunci InaSAFE` akan membuka editor dimana " -"digunakan untuk meengedit kata kunci yang dibutuhkan untuk |project_name| " -"untuk membuat *output* yang berguna. Kata kunci dijelaskan lebih rinci di :" -"ref:`keywords_system`." - -# 296ddc6736c6422b9aac3428a9e3ea7a -# 8c5ee842edf94f64a9722cfe855c4443 -#: ../../source/user-docs/toolbar.rst:49 -msgid "|project_name| Options" -msgstr "Pilihan |project_name|" - -# b46d6c69545d46aba78a4bad920b5615 -#: ../../source/user-docs/toolbar.rst:56 -#, fuzzy -msgid "Options" -msgstr "*Pilihan*" - -# b46d6c69545d46aba78a4bad920b5615 -#: ../../source/user-docs/toolbar.rst:56 -msgid "*Options*" -msgstr "*Pilihan*" - -# 019fa8208fc34979840a1d3cff836287 -#: ../../source/user-docs/toolbar.rst:58 -msgid "" -"This button opens the |project_name| Options window which is described in " -"detail in :ref:`toolbar_options`." -msgstr "" -"Tombol ini membuka jendela pilihan |project_name| yang dijelaskan di :ref:" -"`toolbar_options`." - -# 4493c3cc22474d809a7bb459e13dcd33 -# 2802a96d9da945dfaf9506ecfe6ce958 -#: ../../source/user-docs/toolbar.rst:64 -msgid "|project_name| Impact Functions Browser" -msgstr "Browser Fungsi Dampak |project_name|" - -# 8c27f48c38ea45208231184040996db2 -#: ../../source/user-docs/toolbar.rst:71 -#, fuzzy -msgid "Impact Functions Browser" -msgstr "*Browser Fungsi Dampak InaSAFE*" - -# 8c27f48c38ea45208231184040996db2 -#: ../../source/user-docs/toolbar.rst:71 -msgid "*Impact Functions Browser*" -msgstr "*Browser Fungsi Dampak InaSAFE*" - -# b8a2a5119eb94fc8a175bd083c7c08e5 -#: ../../source/user-docs/toolbar.rst:73 -msgid "" -"This button opens the Impact Function Browser, which allows you to filter " -"and browse impact functions that are available in |project_name|. More " -"information can be found in :ref:`impact_functions`." -msgstr "" -"Tombol ini membuka Browser Fungsi Dampak, yang memungkinkan Anda untuk " -"menyaring dan menjelajah fungsi dampak yang tersedia di |project_name|. " -"Informasi lebih lanjut dapat ditemukan di :ref:`impact_functions`." - -# 5b8eb2c5786e4149a5c395702150e4a5 -# ff9e618448794d5987b8ac65ac5e0127 -#: ../../source/user-docs/toolbar.rst:80 -msgid "|project_name| Minimum Needs Tool" -msgstr "*Tool* Kebutuhan Minimum |project_name|" - -# b472eefca82c4381adbbe1e39f0b2453 -#: ../../source/user-docs/toolbar.rst:87 -#, fuzzy -msgid "Minimum needs tool" -msgstr "*Tool Kebutuhan Minimum InaSAFE*" - -# b472eefca82c4381adbbe1e39f0b2453 -#: ../../source/user-docs/toolbar.rst:87 -msgid "*Minimum Needs Tool*" -msgstr "*Tool Kebutuhan Minimum InaSAFE*" - -# 0d169b6048dd476f935d1d536e78475c -#: ../../source/user-docs/toolbar.rst:89 -msgid "" -"This tool calculates minimum needs for evacuated people. For guidance on how " -"to use this tool visit :ref:`minimum_needs`." -msgstr "" -"*Tool* ini akan menghitung kebutuhan minimum untuk penduduk yang dievakuasi. " -"Untuk petunjuk menggunakan *tool* ini silahkan lihat di :ref:`minimum_needs`." - -# 11a072fc6f794850b2183fe9a37c4a53 -# 44e3c124ee154660a0f39ec97514c0f8 -#: ../../source/user-docs/toolbar.rst:95 -msgid "|project_name| Converter" -msgstr "|project_name| Converter" - -# 49cca9123f7e47c88796f5d899ec74df -#: ../../source/user-docs/toolbar.rst:102 -#, fuzzy -msgid "Converter" -msgstr "*Konverter*" - -# 49cca9123f7e47c88796f5d899ec74df -#: ../../source/user-docs/toolbar.rst:102 -msgid "*Converter*" -msgstr "*Konverter*" - -# 314b91c5c40a4571914e94696037f2e3 -#: ../../source/user-docs/toolbar.rst:104 -msgid "" -"This tool converts an earthquake 'shakemap' that is in grid xml format to a " -"GeoTIFF file. For more detailed information visit :ref:`converter`." -msgstr "" -"*Tool* ini akan mengkonvert sebuah peta kejadian 'gempa bumi' yang dalam " -"format grid xml ke file GeoTIFF. Untuk informasi yang lebih lanjut silahkan " -"lihat di :ref:`converter`." - -# 212c81fef04043db86b0e1f92eaa5d13 -# 30c795c5b51e4bf39cd90897fd3650c2 -#: ../../source/user-docs/toolbar.rst:111 -msgid "|project_name| Batch Runner" -msgstr "Batch Runner |project_name| " - -# d8bb0eece2f94d91a098548546065444 -#: ../../source/user-docs/toolbar.rst:118 -#, fuzzy -msgid "Batch_Runner" -msgstr "*InaSAFE Batch Runner*" - -# d8bb0eece2f94d91a098548546065444 -#: ../../source/user-docs/toolbar.rst:118 -msgid "*Batch Runner*" -msgstr "*InaSAFE Batch Runner*" - -# faf922ff6d54462ba4d6f901c76c8fb4 -#: ../../source/user-docs/toolbar.rst:120 -msgid "" -"The Batch Runner is used to load saved scenarios (:ref:`save_scenario`) and " -"batch run them in one go. Find more information about this tool in :ref:" -"`batch_runner`." -msgstr "" -"*Batch Runner* digunakan untuk memuat skenario yang telah disimpan (:ref:" -"`save_scenario`) dan jalankan *batch* mereka dalam satu kali perintah. Anda " -"dapat menemukan informasi lebih lanjut tentang *tool* ini di :ref:" -"`batch_runner`." - -# 78ceba55f6124cc7bd509b53982939bd -#: ../../source/user-docs/toolbar.rst:127 -msgid "Save current scenario" -msgstr "Simpan skenario saat ini" - -# 1129affe46074d82b97af8a1469c1fe5 -#: ../../source/user-docs/toolbar.rst:134 -#, fuzzy -msgid "Save Current Scenario" -msgstr "*Simpan skenario saat ini*" - -# 1129affe46074d82b97af8a1469c1fe5 -#: ../../source/user-docs/toolbar.rst:134 -msgid "*Save Current Scenario*" -msgstr "*Simpan skenario saat ini*" - -# 382ca76228214dba8dd6a71f5f5a7020 -#: ../../source/user-docs/toolbar.rst:136 -msgid "" -"This is the tool to prepare/save scenarios for the :ref:`tb_batch_runner` " -"tool. It lets you save the current visible scenario in QGIS to a :file:`." -"txt` file. Then this file can be opened as a scenario again in Batch runner " -"and recalculated. A more detailed description is available in :ref:" -"`batch_runner`." -msgstr "" -"Ini adalah *tool* yang dibutuhkan untuk menyiapkan/menyimpan skenario untuk " -"*Tool* :ref:`tb_batch_runner`. Ini memungkinkan Anda menyimpan skenario yang " -"terlihat saat ini di QGIS ke file :file:`.txt`. Kemudian file ini dapat " -"terbuka sebagai skenario lagi dalam *Batch runner* dan dihitung ulang. " -"Penjelasan lebih rinci dari *batch runner* tersedia di :ref:`batch_runner`." - -# 60641545a7464aa9b0140e4ad83cb7c8 -#: ../../source/user-docs/toolbar.rst:146 -msgid "|project_name| OpenStreetMap Downloader" -msgstr "Alat download OpenStreetMap untuk |project_name|" - -# 69aa1be82c17405981511486272185d8 -#: ../../source/user-docs/toolbar.rst:153 -#, fuzzy -msgid "OpenStreetMap downloader" -msgstr "*Alat Download OpenStreetMap InaSAFE*" - -# 69aa1be82c17405981511486272185d8 -#: ../../source/user-docs/toolbar.rst:153 -msgid "*OpenStreetMap downloader*" -msgstr "*Alat Download OpenStreetMap InaSAFE*" - -# 3875d2191f1641a3a0f0e6f7fc32c680 -#: ../../source/user-docs/toolbar.rst:155 -msgid "This tool fetches building (structure) data from |OSM|." -msgstr "Alat ini akan memperoleh data bangunan (struktur) dari |OSM|." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/troubleshooting.po b/docs/i18n/id/LC_MESSAGES/user-docs/troubleshooting.po deleted file mode 100644 index 67b8dd3a..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/troubleshooting.po +++ /dev/null @@ -1,98 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2015-06-11 09:38+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# fe0f633de6ac4f1882f093bdf12b6a9d -#: ../../source/user-docs/troubleshooting.rst:6 -msgid "Troubleshooting" -msgstr "Permasalahan" - -# 513e351e1fa04c568dadb3c519da3034 -#: ../../source/user-docs/troubleshooting.rst:9 -msgid "Network Timeout" -msgstr "Jaringan Terputus" - -# 43e0ca92081e4ddc9299715cb33e51da -#: ../../source/user-docs/troubleshooting.rst:11 -msgid "" -"One of the most common problems with installing |project_name| is, due to " -"the large paket size of |project_name| the downloading in slow(er) internet " -"connections. If you frequently receive a timeout of your netwerk connection " -"try to set :menuselection:`Settings > Options > Network > Timeout for " -"network requests` to a higher number." -msgstr "" -"Salah satu problem yang sering ditemui ketika menginstall |project_name| " -"dikarenakan ukuran file |project_name| yang terlalu besar dan diunduh dengan " -"kecepatan koneksi yang lambat. Jika anda seringkali mengalami putusnya " -"jaringan anda, coba untuk mengatur :menuselection:`Pengaturan > Opsi > " -"Jaringan > Batas waktu untuk meminta ke jaringan (ms)` ke nilai yang lebih " -"tinggi." - -# 4df78f1e8d7d43d79aa8a51bf45624db -#: ../../source/user-docs/troubleshooting.rst:18 -msgid "" -"If you have no permanent network connection or you want to pass |" -"project_name| to friend who do now have an internet connection you can also " -"install |project_name| by manually downloading it from http://planet.qgis." -"org/plugins/inasafe/ by clicking on the latest version and then choose :" -"guilabel:`Download`. This will get you the :file:`inasafe-x.x.x.zip` file " -"which you can afterwards extract in the plugins path of your |QGIS| " -"installation." -msgstr "" -"Jika anda tidak mempunyai koneksi jaringan yang permanen atau jika anda " -"ingin meminta bantuan untuk mengunduh |project_name| kepada teman yang " -"mempunyai koneksi internet, anda bisa juga menginstall |project_name| secara " -"manual dengan mengunduh dari http://planet.qgis.org/plugins/inasafe/ dengan " -"mengklik pada *latest version* dan memilih :guilabel:`Download`. Anda akan " -"mendapatkan sebuah file :file:`inasafe-x.x.x.zip` yang nantinya anda bisa " -"mengekstrak ke dalam lokasi dari instalasi *plugins* |QGIS| anda." - -# 2eca154ea91f4e69bb4c519812b16321 -#: ../../source/user-docs/troubleshooting.rst:26 -msgid "" -"If you have a copy of the plugin code in a zip file, you can install it " -"unzipping it into the QGIS plugins folder. In Windows, it should be " -"something like C:\\\\Users\\\\\\\\.qgis2\\\\python\\\\plugins. In " -"Linux/Mac, it should be in ~/.qgis2/python/plugins. Copy the inasafe folder " -"in your zip file into your plugins folder. You should end up having a ." -"qgis2\\python\\plugins\\inasafe folder with the code of the plugin and the " -"required subfolders." -msgstr "" -"Jika anda mempunyai salinan dari plugin dalam bentuk file zip, anda bisa " -"menginstall dengan mengekstrak terlebih dahulu kedalam folder plugin QGIS. " -"Di Windows, lokasinya kurang lebih seperti ini C:\\\\Users\\\\\\" -"\\.qgis2\\\\python\\\\plugins. Untuk Linux/Mac, berada pada ~/.qgis2/python/" -"plugins. Copy folder inasafe yang berada didalam file zip anda kedalam " -"folder *plugins*. Anda nantinya akan mempunyai folder seperti ini ." -"qgis2\\python\\plugins\\inasafe dengan kode dari plugin dan subfolder yang " -"diperlukan. " - -# 4ba55b3e7e1746d39d0cd006c0fae282 -#: ../../source/user-docs/troubleshooting.rst:36 -msgid "" -"If your problems are still not solved you can write an email to info@inasafe." -"org. We also have a |project_name| User Mailinglist where you are very " -"welcome to join and ask your questions there. More information about howto " -"join the list is available on :ref:`getting_help`." -msgstr "" -"Jika permasalahan anda masih belum dapat teratasi, anda bisa menulis *email* " -"ke info@inasafe.org. Kita juga mempunyai mailinglist pengguna |project_name| " -"dimana anda sangat dipersilahkan untuk bergabung dan menanyakan pertanyaan " -"anda disana. Untuk informasi lebih lanjut mengenai bagaimana cara untuk " -"bergabung silahkan ke :ref:`getting_help`." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/using_qgis.po b/docs/i18n/id/LC_MESSAGES/user-docs/using_qgis.po deleted file mode 100644 index a4a4ded5..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/using_qgis.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# Emir Hartato , 2013 -# Emir Hartato , 2013 -# harry mahardhika , 2013 -# harry mahardhika , 2013 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2017-09-23 18:45+0000\n" -"Last-Translator: Richard Duivenvoorde \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 4d168ccd1a224bd88c3a37a1676a6e31 -#: ../../source/user-docs/using_qgis.rst:4 -msgid "Using QGIS" -msgstr "Menggunakan QGIS" - -# df45ee8802364121b299247d0ac5a869 -#: ../../source/user-docs/using_qgis.rst:6 -msgid "" -"|project_name| uses |QGIS| as the platform on which to provide its " -"functionality. |QGIS| itself has good documentation and a very helpful user " -"community. In this section we focus on those aspects of |QGIS| functionality " -"that will be helpful to someone wanting to carry out impact scenario " -"assessments using |project_name|." -msgstr "" -"|project_name| menggunakan |QGIS| sebagai *platform* yang menyediakan " -"fungsionalitasnya. |QGIS| sendiri memiliki dokumentasi yang baik dan " -"komunitas pengguna yang sangat membantu. Pada sesi ini kita fokus pada aspek-" -"aspek fungsi |QGIS| yang akan membantu seseorang dalam melaksanakan skenario " -"penilaian dampak menggunakan |project_name|." - -# f322ade2fbb84659b1a6b208d8bb9f0e -#: ../../source/user-docs/using_qgis.rst:13 -msgid "" -"There are three good resources to get you up to speed with using GIS in " -"general and |QGIS| in particular:" -msgstr "" -"Ada tiga sumber yang baik untuk membantu Anda sampai dengan menggunakan SIG " -"secara umum dan |QGIS| pada khususnya:" - -# 82de34cd1c72428ea7bf8b4188624a9f -#: ../../source/user-docs/using_qgis.rst:16 -msgid "" -"The `Gentle Introduction to GIS `_ by Linfiniti " -"Consulting - it is a free electronic book that introduces the concepts of " -"GIS in a very easy to read manner." -msgstr "" -"`Pengantar SIG `_ oleh Linfiniti Consulting - Ini " -"adalah buku elektronik gratis yang mengenalkan tentang konsep SIG yang " -"sangat mudah untuk dibaca." - -# a7e3c36597344ea1a10e5168c3ad084a -#: ../../source/user-docs/using_qgis.rst:19 -msgid "" -"The `QGIS User Manual `_ - " -"also an electronic book that serves as a reference guide to the |QGIS| " -"Desktop Application." -msgstr "" -"`Pengguna Manual QGIS `_ - " -"juga buku elektronik yang berfungsi sebagai panduan referensi untuk Aplikasi " -"desktop |QGIS|." - -# bd1d9b87958a4deb96359f0debd74d42 -#: ../../source/user-docs/using_qgis.rst:22 -msgid "" -"The `QGIS Training Manual `_ by Linfiniti " -"Consulting that provides a detailed training guide on |QGIS| and PostGIS." -msgstr "" -"`Pelatihan QGIS Manual `_ oleh Linfiniti " -"Consulting yang menyediakan panduan pelatihan rinci di |QGIS| dan PostGIS." diff --git a/docs/i18n/id/LC_MESSAGES/user-docs/writing_documentation.po b/docs/i18n/id/LC_MESSAGES/user-docs/writing_documentation.po deleted file mode 100644 index dbe80279..00000000 --- a/docs/i18n/id/LC_MESSAGES/user-docs/writing_documentation.po +++ /dev/null @@ -1,313 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2013, InaSAFE project -# This file is distributed under the same license as the InaSAFE Documentation Project package. -# -# Translators: -# adityo dwijananto , 2013 -# Dewi Sulistioningrum , 2013 -# Dewi Sulistioningrum , 2013 -# mahardika fadmastuti , 2013 -# Emir Hartato , 2013 -# Emir Hartato , 2013 -# harry mahardhika , 2013 -# Werner Macho , 2013 -# mahardika fadmastuti , 2013 -# Ranie Dwi Anugrah , 2013 -# Ranie Dwi Anugrah , 2013 -# Werner Macho , 2013 -# Yantisa Akhadi , 2013 -msgid "" -msgstr "" -"Project-Id-Version: docs.inasafe.org\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 1980-01-01 00:00+0000\n" -"PO-Revision-Date: 2018-03-05 05:14+0000\n" -"Last-Translator: adityo dwijananto \n" -"Language-Team: Indonesian (http://www.transifex.com/inasafe/inasafe-doc/" -"language/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# 593d17b341d84ff3b59fcad9933b274f -#: ../../source/user-docs/writing_documentation.rst:4 -msgid "Writing Documentation" -msgstr "Menulis Dokumentasi" - -# b368edfbc7a648f4afeaaabbf0e59f6e -#: ../../source/user-docs/writing_documentation.rst:6 -msgid "" -"The documentation for |project_name| is written using ReSTructured text (." -"rst) and the Sphinx documentation builder." -msgstr "" -"Dokumentasi untuk |project_name| ditulis menggunakan ReSTructured text (." -"rst) dan pembangun dokumentasi Sphinx" - -# fc075d7b628e4b5981bf091de4843f44 -#: ../../source/user-docs/writing_documentation.rst:9 -msgid "" -"The best way to learn how to write .rst is to look at the source of existing " -"documentation - the markup syntax is very simple. There are a number of " -"useful tags that you can use to make your documentation clear and visually " -"interesting, the more commonly used in this document are listed below. For a " -"more detailed list, please visit the `Sphinx Inline Markup page `_" -msgstr "" -"Cara terbaik untuk mempelajari bagaimana menulis .rst dengan melihat sumber " -"dokumentasi yang tersedia - markup syntax sangat sederhana. Ada beberapa tag " -"yang berguna yang dapat Anda gunakan untuk membuat dokumentasi yang jelas " -"dan secara visual menarik, yang lebih umum digunakan dalam dokumen ini " -"tercantum di bawah ini. Untuk daftar lebih detail, mohon kunjungi halaman " -"`Sphinx Inline Markup `_" - -# ec7e4e24bc624ab9baf3453d5dd62e99 -#: ../../source/user-docs/writing_documentation.rst:17 -msgid "" -"A complete list of supported .rst markup is also available `here `_." -msgstr "" -"Daftar lengkap yang mendukung markup .rst juga tersedia \n" -"`disini `_." - -# 93b397b117ee48f1a142681f0d810365 -#: ../../source/user-docs/writing_documentation.rst:20 -msgid "Following are a few tips for documentation writers:" -msgstr "Berikut adalah beberapa petunjuk untuk penulis dokumentasi:" - -# ed63e9bf7b5442a68a35ca74079c3de0 -#: ../../source/user-docs/writing_documentation.rst:22 -msgid "" -"Take a look in the `lookup table <./lookup_table.html>`_ to see which terms " -"and phrases are used and which you should definitely **not** translate." -msgstr "" -"Coba lihat pada `tabel lookup <./lookup_table.html> _` untuk melihat mana " -"istilah dan frase yang digunakan dan mana yang seharusnya **tidak** Anda " -"terjemahkan." - -# 857ff31fa3154201ad497800d3c1eacc -#: ../../source/user-docs/writing_documentation.rst:24 -msgid "" -"There is a \"Community Edition\" of `PyCharm `_ available. Consider using this for writing documentation." -msgstr "" -"Terdapat \"Community Edition\" dari `PyCharm `_ yang tersedia. Pertimbangkan untuk menggunakan *software* ini " -"dalam penulisan dokumentasi." - -# 3121ceada1a04b42b6c0dcaa5cf20ae6 -#: ../../source/user-docs/writing_documentation.rst:27 -msgid "" -"Try to not write more than **80 Characters in one line**. That makes the " -"documentation much easier to maintain." -msgstr "" -"Cobalah untuk tidak menulis lebih dari **80 karakter dalam satu baris**. Hal " -"ini membuat dokumentasi lebih mudah untuk dijaga." - -# 1c0c3291605548ec89628956eee157b0 -#: ../../source/user-docs/writing_documentation.rst:29 -msgid "" -"Try to create a reference anchor for at least every new heading (page). If " -"it is useful and important you might also want to put anchors on subheadings." -msgstr "" -"Cobalah untuk membuat referensi pendukung/*reference anchor* setidaknya " -"untuk setiap heading baru (halaman). Jika hal ini berguna dan penting, Anda " -"mungkin juga ingin menaruh *anchor* pada subheadings." - -# fced505236af4a9a87ef31f010166946 -#: ../../source/user-docs/writing_documentation.rst:32 -msgid "" -"Try to avoid duplicate target names (anchors). Always use unique " -"identifiers. If you are not sure - the longer the name the more unlikely it " -"is already used." -msgstr "" -"Hindari membuat nama target yang sama (*anchor*). Selalu gunakan " -"identifikasi yang unik. Jika Anda tidak yakin - semakin panjang nama suatu " -"target, maka semakin mungkin nama tersebut belum digunakan." - -# 285b0ecda96844e89602eb3f962f3f11 -#: ../../source/user-docs/writing_documentation.rst:35 -msgid "" -"Try to use underscores (_) in filenames and links (anchors) as a separator." -msgstr "" -"Cobalah untuk menggunakan garis bawah (_) dalam menuliskan nama file dan " -"tautan (jangkar) sebagai pemisah." - -# 3df30d4532d94db6a70e1f5c16218da1 -#: ../../source/user-docs/writing_documentation.rst:36 -msgid "Try to use dashes (-) in directory names as a separator." -msgstr "" -"Cobalah untuk menggunakan garis (-) dalam menuliskan nama direktori sebagai " -"pemisah." - -# 2d697fd163de40c2af53987e16bb234a -#: ../../source/user-docs/writing_documentation.rst:37 -msgid "" -"Try to avoid using tables wherever possible. Only use tables if there is " -"really no other way to display the documentation." -msgstr "" -"Hindarilah untuk menggunakan tabel sebisa mungkin. Gunakanlah jika memang " -"sudah tidak ada cara lain untuk menampilkan dokumentasi yang Anda buat." - -# ff348d11397f4ed790b04e1f96fc8190 -#: ../../source/user-docs/writing_documentation.rst:40 -msgid "" -"If you have to use tables try to avoid using TABS in favour of SPACES. TABS " -"only confuse the computer while building documentation and leads to " -"unnecessary errors." -msgstr "" -"Jika Anda harus menggunakan tabel cobalah untuk menghindari menggunakan TAB " -"sebagai SPASI. TAB hanya akan membuat komputer bingung ketika membuat " -"dokumentasi dan akan menimbulkan kesalahan yang tidak perlu." - -# b2b8b7eb6c854e63a5a207dbe178e45d -#: ../../source/user-docs/writing_documentation.rst:47 -msgid "Common tags used in the Documentation:" -msgstr "Tag yang umum digunakan pada Dokumentasi:" - -# f36843fd50b44eae8f6dcff4137e3709 -#: ../../source/user-docs/writing_documentation.rst:49 -msgid "Here are some common useful tags ::" -msgstr "Berikut adalah beberapa tag yang umum digunakan ::" - -# b9546a5059d64755b2f52b1feabb7b60 -#: ../../source/user-docs/writing_documentation.rst:168 -msgid "" -"remark: use pt instead of px because of latex output A4 = height ~ 1000pt A4 " -"= width ~ 700pt" -msgstr "" -"remark: gunakan pt bukan px karena hasil latex A4 = tinggi ~ 1000pt A4 = " -"lebar ~ 700pt" - -# cf21c710c6d54b0aa3a2342cc30f758f -#: ../../source/user-docs/writing_documentation.rst:173 -msgid "Help writing/fixing documentation" -msgstr "Membantu menulis/memperbaiki dokumentasi" - -# 5444ccab9f45491f8a8e17ffd4430220 -#: ../../source/user-docs/writing_documentation.rst:175 -msgid "" -"Helping writing the documentation is an easy task. The only thing you need " -"to have is a local copy of the |project_name| documentation branch." -msgstr "" -"Membantu menulis dokumentasi adalah tugas yang mudah. Satu-satunya hal yang " -"perlu Anda miliki adalah salinan lokal dari cabang dokumentasi |" -"project_name|." - -# 35ccb278710e4786b38317c895c8c7e7 -#: ../../source/user-docs/writing_documentation.rst:180 -msgid "Clone |project_name| documentation" -msgstr "Clone dokumentasi |project_name|" - -# ad2b9366f52e4a1e8cac715c9a7d84dc -#: ../../source/user-docs/writing_documentation.rst:182 -msgid "" -"In order to clone the documentation of |project_name| you only have to " -"follow this procedure:" -msgstr "" -"Untuk meng-clone dokumentasi |project_name| , Anda hanya perlu mengikuti " -"prosedur berikut ini:" - -# 2c6d0fa0a5874b879bf7ea300aa64737 -#: ../../source/user-docs/writing_documentation.rst:185 -msgid "" -"This is a one-time process. You do not need to repeat it - it is here for " -"reference purposes only." -msgstr "" -"Ini adalah proses sekali jalan. Anda tidak perlu mengulangnya - hal tersebut " -"ada disini untuk tujuan referensi saja." - -# 900948bb9e4e4334abf50414ae242c0b -#: ../../source/user-docs/writing_documentation.rst:188 -msgid "Things you have to have to be able to help with documentation:" -msgstr "Hal-hal yang harus dimiliki untuk membantu dokumentasi:" - -# 350776b056014caf83d283abffccec06 -#: ../../source/user-docs/writing_documentation.rst:190 -msgid "A GitHub account" -msgstr "Akun GitHub." - -# a0d64d23aad24996bacc27815d0c2148 -#: ../../source/user-docs/writing_documentation.rst:191 -msgid "" -"A fork of the inasafe-doc branch (only if you do not have commit access to " -"the main repository)" -msgstr "" -"Sebuah *fork* cabang inasafe-doc (jika Anda tidak memiliki akses *commit* ke " -"repository utama)." - -# 18d4c66dfc5141c98c91f9a803935479 -#: ../../source/user-docs/writing_documentation.rst:194 -msgid "" -"Creating a GitHub account is done by clicking on the :guilabel:`Sign up for " -"free` button on https://github.com/ and filling out the necessary fields." -msgstr "" -"Membuat akun GitHub telah selesai dengan mengklik tombol :guilabel:`Sign up " -"for free` pada https://github.com/ dan mengisi data yang diperlukan." - -# 2d14b1e3058642d783cd1c96876703dc -#: ../../source/user-docs/writing_documentation.rst:197 -msgid "" -"This documentation assumes that you have the whole |project_name| source " -"available under :file:`$HOME/dev/python/...`" -msgstr "" -"Dokumentasi ini mengasumsikan bahwa Anda memiliki seluruh sumber |" -"project_name| yang tersedia dibawah :file:`$HOME/dev/python/...`" - -# b5127bcd2f874a6caf091baabf9c7428 -#: ../../source/user-docs/writing_documentation.rst:200 -msgid "" -"Clone your forked github |project_name| documentation by entering following " -"command:" -msgstr "" -"Kloning percabangan GitHub Anda Dokumentasi |project_name| dengan memasukkan " -"perintah berikut ini:" - -# 943ad092865c4ecfaacf05459c5ede67 -#: ../../source/user-docs/writing_documentation.rst:203 -msgid ":command:`git clone https://github.com//inasafe-doc.git`" -msgstr "" -":command:`git clone https://github.com//inasafe-doc.git`" - -# 15fe6ba0160e419fa6c33d71e6e16130 -#: ../../source/user-docs/writing_documentation.rst:205 -msgid "Search for the .rst file you'd like to extend/fix and work on it." -msgstr "" -"Pilihlah file .rst yang Anda inginkan untuk memperluas/memperbaiki dan " -"bekerja di dalamnya." - -# f85d1faa2d7549d8b5dc177f0bfb6e50 -#: ../../source/user-docs/writing_documentation.rst:207 -msgid "" -"Afterwards commit your local changes to your local clone with the command:" -msgstr "" -"Setelah melakukan perubahan lokal Anda untuk klon lokal dengan perintah:" - -# 1ccd7259eb9d4ed2a9ad7ebca821e58f -#: ../../source/user-docs/writing_documentation.rst:209 -msgid ":command:`git commit -a -m\"fixed a typo\"`" -msgstr ":command:`git commit -a -m\"fixed a typo\"`" - -# 7134f32560be46d8a791ae2b981303b2 -#: ../../source/user-docs/writing_documentation.rst:211 -msgid "" -"After that you have to push your local changes to your github fork with:" -msgstr "" -"Setelah itu Anda harus mem-push perubahan lokal Anda ke fork github Anda " -"dengan:" - -# 3ee1fb876b514d5a9f839f0e1ed9a85d -#: ../../source/user-docs/writing_documentation.rst:213 -msgid ":command:`git push`" -msgstr ":command:`git push`" - -# 8c0966e3a1df489aa41e43592f0d6a32 -#: ../../source/user-docs/writing_documentation.rst:215 -msgid "" -"You can than do a pull request on github to request your changes to be " -"reviewed and taken into the official documentation." -msgstr "" -"Anda dapat melakukan permintaan pull pada github untuk meminta perubahan " -"Anda ditinjau dan dibawa ke dalam dokumentasi resmi." diff --git a/docs/source/training/curriculum/curriculum.rst b/docs/source/training/curriculum/curriculum.rst index bb096638..20c70927 100644 --- a/docs/source/training/curriculum/curriculum.rst +++ b/docs/source/training/curriculum/curriculum.rst @@ -875,9 +875,6 @@ Based on the curriculum, program structure is designed as follows. | | Total | 9 | +----+-----------------------------------------+-----------------------------------------+ -Syllabus --------- - The syllabus is a learning plan for the workshop material that includes basic competencies, indicators, core material, learning activity, assessment, allocation of time and learning resources. diff --git a/requirements.txt b/requirements.txt index 10b43048..62255e00 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ -distribute -wsgiref==0.1.2 +#distribute +#wsgiref==0.1.2 +sphinx-intl diff --git a/scripts/post_translate.sh b/scripts/post_translate.sh index 6a939ece..77e3dd7b 100755 --- a/scripts/post_translate.sh +++ b/scripts/post_translate.sh @@ -54,7 +54,7 @@ fi rm -rf ${BUILDDIR} mkdir ${BUILDDIR} #Add english to the list and generated docs -LOCALES+=' en' +#LOCALES+=' en' if [ $1 ]; then LOCALES=$1 @@ -87,7 +87,7 @@ do # -n Run in nit-picky mode. Currently, this generates warnings for all missing references. # -W Turn warnings into errors. This means that the build stops at the first warning and sphinx-build exits with exit status 1. #${SPHINXBUILD} -nW -d ${BUILDDIR}/doctrees -D language=${LOCALE} -b html source ${HTMLDIR}/${LOCALE} > $LOG - ${SPHINXBUILD} -n -d ${BUILDDIR}/doctrees -D language=${LOCALE} -b html source ${HTMLDIR}/${LOCALE} > $LOG + ${SPHINXBUILD} -d ${BUILDDIR}/doctrees -D language=${LOCALE} -b html source ${HTMLDIR}/${LOCALE} > $LOG WARNINGS=`cat $LOG | grep warning` ERRORS=`cat $LOG | grep ERROR` if [[ $WARNINGS ]] From 1a1c129b91aacc2535e6dce703e2e014bb917d22 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 10:44:17 +0200 Subject: [PATCH 09/31] Strip more stuff out for eng only build --- .github/workflows/nix-build.yml | 2 - README.md | 92 +---------- default.nix | 2 - english_build.sh | 91 +++++++++++ scripts/.htaccess | 6 - scripts/compress-images.sh | 6 - scripts/create_transifex_resources.sh | 77 --------- scripts/generate_keywords.py | 213 ------------------------- scripts/post_translate.sh | 172 -------------------- scripts/pre_translate.sh | 99 ------------ scripts/rst_generation_tools.py | 217 -------------------------- scripts/update_all_dev.sh | 8 - 12 files changed, 95 insertions(+), 890 deletions(-) create mode 100755 english_build.sh delete mode 100644 scripts/.htaccess delete mode 100755 scripts/compress-images.sh delete mode 100755 scripts/create_transifex_resources.sh delete mode 100644 scripts/generate_keywords.py delete mode 100755 scripts/post_translate.sh delete mode 100755 scripts/pre_translate.sh delete mode 100644 scripts/rst_generation_tools.py delete mode 100755 scripts/update_all_dev.sh diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index c19c3553..1865e52a 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -11,6 +11,4 @@ jobs: with: nix_path: nixpkgs=channel:nixos-unstable - uses: DeterminateSystems/magic-nix-cache-action@v2 - - run: nix-shell --run "scripts/pre_translate.sh" - - run: nix-shell --run "scripts/post_translate.sh" - run: nix-shell --run "scripts/english_build.sh" diff --git a/README.md b/README.md index 9c827e3a..f9e826b2 100644 --- a/README.md +++ b/README.md @@ -88,112 +88,28 @@ pip freeze You should see a list of packages similar to those listed below: ``` -pystac==1.9.0 -python-dateutil==2.8.2 six==1.16.0 ``` ## Building the docs -We are now going to use that inasafe-doc directory as source and output directory for the +We are now going to use that inasafe-doc directory as source and output directory for the HTML ``` -scripts/pre_translate.sh -scripts/post_translate.sh scripts/english_build.sh ``` -You can also build the docs for a single language: - -``` -scripts/post_translate.sh id html -``` - ## Viewing the docs After building the docs, you can run a lightweight web server to view the generated web pages: ``` -httplz docs/output/html/ -``` - - -Translating the english InaSAFE Documentation -============================================= - -Every language has it's own maintainer, please contact them, -if you want to help. You find a list of current language maintainers at the -end of this document. If your language is not listed, join our community by -sending a mail to and ask for -help. - -HowTo for language maintainers ------------------------------- - -* get an account on github.com -* install required tools on your computer -* login to github and create a fork of the inasafe-doc repository that other - translators can work with. - -Translators now can create their own fork from the forked repository of the -maintainer, commit their translations to their own forked repository and send -pull request to the language maintainer's repository. Once the maintainer -receives a pull request, he should check the changes, accept the pull request -and merge the changes with the official inasafe-doc repository. - -Workflow for adding a new language ----------------------------------- - -* add your locale code in the pre_translate.sh script in the line with 'LOCALE=' -* run 'scripts/pre_translate.sh'. There will be a new directory in the i18n - directory for your language, containing the po-files for all source files -* create an empty(!) directory in the resources directory for your language. The - idea is to ONLY put images in exact the same directory structure if you - want an image to be 'translated'. As default the english one will be used - from the 'en' directory, and only if there is an translated one it will be - found and used. -* add your locale code in the post_translate.sh script in the line with - 'LOCALE=' - -HowTo for translators ---------------------- - -* get an account on github.com -* install required tools on your computer -* login to github and create a fork of the inasafe-doc repository from your - language maintainer. -* git clone your forked inasafe-doc repository to your computer -* run './scripts/pre_translate.sh <language>' locally to build the - translation files -* translate the .po files locally and use an offline editor. - [QtLinguist](https://code.google.com/p/qtlinguistdownload/) - being the highly recommended choice. -* with the english documentation from ./docs/source/ run ' - ./scripts/post_translate.sh languagecode' locally again to check your - translation -* files translated need to be "synchronized" with the ones in the directory of - the forked repo. Commit your changes to your private forked repository and - create a pull request on github. It means that you send a request to the - owners of the repository you forked (language maintainer) asking him to - accept your translations and move them to the "original repository". For - doing that go on github.com, browse on the directory of your repository and - click pull request (https://help.github.com/articles/using-pull-requests). -* your language maintainer will take care that every significant translation go - into the master repository. -* Generally, as soon as you finish editing one or more .po files, you should - commit as soon as possible the edits to the git repository, - in order to minimize the possibility of conflicts. - -The maintainer and translator should update and check the translations -regularly. Therefore you should 'git pull' when you start to work and run the -'scripts/pre_translate.sh <language>' and 'scripts/post_translate.sh -<language>' script after every significant change in the documentation. -This will generate and update the .po files needed for translations. If all -is fine, take care, that the translation go into the repository of your -language maintainer. +httplz docs/output/html/en/ +``` + [InaSAFEImage]: http://inasafe.org/en/_static/img/logo.png [website]: http://inasafe.org/ diff --git a/default.nix b/default.nix index 9dc464d1..10312d9d 100644 --- a/default.nix +++ b/default.nix @@ -27,10 +27,8 @@ in pkgs.mkShell rec { pythonPackages.twitter pinnedPkgs.sphinx - pinnedPkgs.transifex-client pinnedPkgs.argparse pinnedPkgs.rpl - pinnedPkgs.gettext # Simple http server to test the built docs pinnedPkgs.httplz diff --git a/english_build.sh b/english_build.sh new file mode 100755 index 00000000..d713a88f --- /dev/null +++ b/english_build.sh @@ -0,0 +1,91 @@ +#!/usr/bin/env bash +# Based off the script from QGIS by Tim Sutton and Richard Duivenvoorde + +# Name of the dir containing static files +STATIC=_static +# Path to the documentation root relative to script execution dir +DOCROOT=docs +# Path from execution dir of this script to docs sources (could be just +# '' depending on how your sphinx project is set up). +SOURCE=source + +pushd . +cd $DOCROOT + +SPHINXBUILD=`which sphinx-build` +TEXI2PDF=`which texi2pdf` +BUILDDIR=build +# be sure to remove an old build dir +rm -rf ${BUILDDIR} +mkdir -p ${BUILDDIR} + +# output dirs +PDFDIR=`pwd`/output/pdf +HTMLDIR=`pwd`/output/html +mkdir -p ${PDFDIR} +mkdir -p ${HTMLDIR} + +VERSION=`cat source/conf.py | grep "version = '.*'" | grep -o "[0-9]\.[0-9]"` + +# We need to flush the build dir or the translations don't come through +rm -rf ${BUILDDIR} +mkdir ${BUILDDIR} + +# cleanup all images for the other locale +rm -rf source/static +mkdir -p source/static +# copy english (base) resources to the static dir +cp -r resources/en/* source/static +# now overwrite possible available (localised) resources over the english ones +cp -r resources/${LOCALE}/* source/static + +################################# +# +# HTML Generation +# +################################# +# Now prepare the index/irchat-[locale] template which is a manually translated, +# unique per locale page that gets copied to index.html/irchat.html for the doc +# generation process. +cp templates/index-en.html templates/index.html +cp templates/irchat-en.html templates/irchat.html + +echo "Building HTML for locale 'en'..." +LOG=/tmp/sphinx$$.log +# -n Run in nit-picky mode. Currently, this generates warnings for all missing references. +# -W Turn warnings into errors. This means that the build stops at the first warning and sphinx-build exits with exit status 1. +#${SPHINXBUILD} -nW -d ${BUILDDIR}/doctrees -D language=${LOCALE} -b html source ${HTMLDIR}/${LOCALE} > $LOG +${SPHINXBUILD} -d ${BUILDDIR}/doctrees -D language=en -b html source ${HTMLDIR}/en/ > $LOG +WARNINGS=`cat $LOG | grep warning` +ERRORS=`cat $LOG | grep ERROR` +if [[ $WARNINGS ]] +then + echo "***********************************************" + echo "* Sphinx build produces warnings - Please fix *" + echo $WARNINGS + echo "***********************************************" + exit 1 +fi +if [[ $ERRORS ]] +then + echo "*********************************************" + echo "* Sphinx build produces errors - Please fix *" + echo $ERRORS + echo "*********************************************" + exit 1 +fi + +# Remove the static html copy again +rm templates/index.html +rm templates/irchat.html + +# hack to avoid error when using Search in contents.html +rpl -q '#/../search.html' 'search.html' ./output/html/en/index.html +# same applies for having the IRC-Chat Navigation Link +rpl -q '#/../irchat.html' 'irchat.html' ./output/html/en/index.html + + +rm -rf source/static +rm -rf ${BUILDDIR} + +popd diff --git a/scripts/.htaccess b/scripts/.htaccess deleted file mode 100644 index b4f2e6bf..00000000 --- a/scripts/.htaccess +++ /dev/null @@ -1,6 +0,0 @@ -Options +FollowSymlinks -MultiViews - -RewriteEngine On -RewriteBase / - -RewriteRule ^$ /en [L] diff --git a/scripts/compress-images.sh b/scripts/compress-images.sh deleted file mode 100755 index ba92d356..00000000 --- a/scripts/compress-images.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -for FILE in `find ./docs/resources -type f -size +200k -name "*.png" ! -path "./safe_qgis/test/test_data/test_images/*"` -do - echo "Compressing $FILE" - mogrify -dither FloydSteinberg -colors 256 -antialias -strip $FILE -done diff --git a/scripts/create_transifex_resources.sh b/scripts/create_transifex_resources.sh deleted file mode 100755 index 6c3279ef..00000000 --- a/scripts/create_transifex_resources.sh +++ /dev/null @@ -1,77 +0,0 @@ -#!/bin/bash - -# This script is used to register InaSAFE translatable resources with Transifex -# http://transifex.com -# -# Note that this script updates or creates entries in .tx/config file -# -# Tim Sutton, March 2013 - -# -# Sphinx documentation first -# - -LOCALES=`ls ../docs/i18n` - -# We do not translate developer docs as development is mostly done in english -# We do not translate api-docs - -for ITEM in user-docs training -do - for POFILE in `find ../docs/i18n/en/LC_MESSAGES/${ITEM}/ -type f -name '*.po'` - do - # get the po file replacing 'en' with '' - GENERICFILE=`echo $POFILE | sed 's/\/en\//\/\//g' | sed 's/\/\//\//g'` - echo $GENERICFILE - # Get the filename only part of the po file so we can use that - # name when registering the resource - BASE=`basename $GENERICFILE .po` - BASE=`echo $BASE | sed 's/_/-/g' | sed 's/ /-/g'` - RESOURCE=inasafe-doc.${ITEM}-$BASE - - # - # Register each po file as a transifex resource (an individual translatable file) - # - #set -x - #--source this is the source language from which other tranlations are done - #-t this is a PO file that contains translation strings - #--auto-local automatically add to the local .tx/config file - #GENERICFILE the pattern to use when matching for other translation files - #--source-lang the language of the original source file - # add it to the config file - #set -x - tx set --source \ - -t PO \ - -r $RESOURCE \ - -l en "$GENERICFILE" \ - --source-lang en \ - --auto-local \ - --execute \ - --source-file=$POFILE - #set +x - # Now register the language translations for the localised po file against - # this resource. - for LOCALE in $LOCALES - do - LOCALEFILE=`echo $POFILE | sed "s/\/en\//\/$LOCALE\//g"` - tx set -r $RESOURCE -l $LOCALE "$LOCALEFILE" - done - # When we are done in this block we should have created a section in the - # .tx/config file that looks like this: - # - # - # [inasafe-develop.user-docs-faq] - # file_filter = docs/i18n//LC_MESSAGES/user-docs/faq.po - # source_file = docs/i18n/en/LC_MESSAGES/user-docs/faq.po - # source_lang = en - # trans.id = docs/i18n/id/LC_MESSAGES/user-docs/faq.po - # type = PO - done -done - - -#Print out a listing of all registered resources -tx status - -# Push all the resources to the tx server -tx push -s diff --git a/scripts/generate_keywords.py b/scripts/generate_keywords.py deleted file mode 100644 index b2c9ed86..00000000 --- a/scripts/generate_keywords.py +++ /dev/null @@ -1,213 +0,0 @@ -# -*- coding: utf-8 -*- -"""Use IF keywords to generate keywords.rst from template. - -.. tip:: - The keywords_template.rst is rendered with data from Impact Functions - Metadata. This result is written otu to a keywords.rst -""" - -__author__ = 'Christian Christelis ' -__revision__ = '$Format:%H$' -__date__ = '06/06/2014' -__license__ = "GPL" -__copyright__ = 'Copyright 2014, Australia Indonesia Facility for ' -__copyright__ += 'Disaster Reduction' - - -import os -user_home = os.environ["HOME"] - -import sys -sys.path.append('%s/dev/python/inasafe' % user_home) - -from safe_qgis.safe_interface import get_plugins -from safe import get_version - -from rst_generation_tools import SimpleRstTableFormatter as SRTF -from rst_generation_tools import format_rst_paragraph -from jinja2 import Template -import os - - -class UtilityMixin(object): - """Utility Mixin for the extractor class.""" - @staticmethod - def _make_unique(original): - """Makes a list of unhashable objects unique and preserves the order""" - unique = [] - [unique.append(item) for item in original if item not in unique] - return unique - - -class MetadataExtractor(UtilityMixin): - """Helper class to extract our requeride metadata from the IF's metadata - - TODO: Add a rich description of which data is to be collected. - (The logic is quite closely tied to the output - """ - def __init__(self): - self.plugin_metadata = [] - for plugin in get_plugins().values(): - if hasattr(plugin, 'Metadata'): - self.plugin_metadata.append(plugin.Metadata().get_metadata()) - - def get_categories(self): - """Get a unique list of categories - - :rtype : list - :return: A list of categories as they are will appear in the table body. - """ - categories = [] - for metadata in self.plugin_metadata: - keys = metadata['categories'].keys() - for key in keys: - categories.append(key) - categories = list(set(categories)) - categories.sort() - return [['category', category] for category in categories] - - def _collect_metadata(self, category, category_detail='', constraint=None): - """Get a specic detail from a category - - :param category: The category constraint - :type category: str - - :param category_detail: The detail to be extracted from the category. - :type category_detail: str - - :param constraint: A dictionary defined constraint. - :return: dict, None - """ - detail_collection = [] - for metadata in self.plugin_metadata: - if category not in metadata['categories'].keys(): - continue - if constraint: - value = metadata['categories'][category][constraint['field']] - value = value if type(value) == list else [value] - values_match = any( - [(v['id'] in constraint['value']) for v in value]) - if not values_match: - continue - detail = metadata['categories'][category][category_detail] - if type(detail) != list: - detail = [detail] - for d in detail: - detail_collection.append(d) - return detail_collection - - def get_subcategories(self, category): - """Get a list of subcategories in a given category. - - :param category: the category constraint. e.g. hazard - :type category: str - - :return: list of subcategories - :rtype: list - """ - subcategory_data = self._collect_metadata( - category, category_detail='subcategory') - subcategory_names = [ - subcategory['name'] for subcategory in subcategory_data] - subcategory_names = list(set(subcategory_names)) - subcategory_names.sort() - return [ - ['subcategory', subcategory] for subcategory in subcategory_names] - - def get_units(self, category): - """Get all the units in a category. - - :param category: The category. - :type category: str - - :return: list of units - :rtype: list - """ - units_data = self._collect_metadata(category, category_detail='units') - units_names = [unit['name'] for unit in units_data] - units_names = list(set(units_names)) - units_names.sort() - return [['units', unit] for unit in units_names] - - def get_units_subcategory(self, category, subcategories): - """Get units for a given subcategory in a category. - - :param category: The category. - :type category: str - - :param subcategories: The subcategory. - :type subcategories: list - - :return: list of units - :rtype: list - """ - units_data = self._collect_metadata( - category, - category_detail='units', - constraint={'field': 'subcategory', 'value': subcategories}) - units = [unit for unit in units_data] - return self._make_unique(units) - - -if __name__ == "__main__": - me = MetadataExtractor() - category_table = SRTF(['Key', 'Allowed Values'], me.get_categories()) - subcategrory_hazard_table = SRTF( - ['Key', 'Allowed Values'], me.get_subcategories('hazard')) - subcategrory_exposure_table = SRTF( - ['Key', 'Allowed Values'], me.get_subcategories('exposure')) - - hazard_subcategories = [] - for subcategory in [['flood', 'tsunami'], ['volcano', 'tephra'], - ['earthquake']]: - units = me.get_units_subcategory('hazard', subcategory) - units_content = [['units', unit['name']] for unit in units] - units_description = [ - format_rst_paragraph( - unit['description'], - prefix=unit['name'] - ) for unit in units] - units_table = SRTF(['Key', 'Allowed Values'], units_content) - - hazard_subcategories.append({ - 'names': subcategory, - 'table': units_table(), - 'description': units_description}) - - exposure_subcategories = [] - for subcategory in [['population'], ['structure'], ['road']]: - units = me.get_units_subcategory('exposure', subcategory) - units_content = [['units', unit['name']] for unit in units] - units_description = [ - format_rst_paragraph( - unit['description'], - prefix=unit['name'] - ) for unit in units] - units_table = SRTF(['Key', 'Allowed Values'], units_content) - - exposure_subcategories.append({ - 'names': subcategory, - 'table': units_table(), - 'description': units_description}) - - context = { - 'category_table': category_table(), - 'subcategrory_hazard_table': subcategrory_hazard_table(), - 'subcategrory_exposure_table': subcategrory_exposure_table(), - 'hazard_subcategories': hazard_subcategories, - 'exposure_subcategories': exposure_subcategories, - 'version': get_version() - } - - file_path = os.path.dirname(os.path.realpath(__file__)) - template_location = os.path.join( - file_path, 'templates', 'keywords_template.rst') - with open(template_location) as fd: - template = Template(fd.read()) - - inasafe_doc_root = os.path.dirname(file_path) - destination_location = os.path.join( - inasafe_doc_root, - 'docs/source/user-docs/application-help/keywords.rst') - with open(destination_location, 'w') as fd: - fd.write(template.render(**context)) diff --git a/scripts/post_translate.sh b/scripts/post_translate.sh deleted file mode 100755 index 77e3dd7b..00000000 --- a/scripts/post_translate.sh +++ /dev/null @@ -1,172 +0,0 @@ -#!/usr/bin/env bash -# Based off the script from QGIS by Tim Sutton and Richard Duivenvoorde - -# Name of the dir containing static files -STATIC=_static -# Path to the documentation root relative to script execution dir -DOCROOT=docs -# Path from execution dir of this script to docs sources (could be just -# '' depending on how your sphinx project is set up). -SOURCE=source - -pushd . -cd $DOCROOT - -SPHINXBUILD=`which sphinx-build` -TEXI2PDF=`which texi2pdf` - -# GENERATE PDF AND HTML FOR FOLLOWING LOCALES (EN IS ALWAYS GENERATED) -LOCALES='id fr' - -if [ $1 ]; then - LOCALES=$1 -fi - -BUILDDIR=build -# be sure to remove an old build dir -rm -rf ${BUILDDIR} -mkdir -p ${BUILDDIR} - -# output dirs -PDFDIR=`pwd`/output/pdf -HTMLDIR=`pwd`/output/html -mkdir -p ${PDFDIR} -mkdir -p ${HTMLDIR} - -VERSION=`cat source/conf.py | grep "version = '.*'" | grep -o "[0-9]\.[0-9]"` - -if [[ $1 = "en" ]]; then - echo "Not running localization for English." -else - for LOCALE in ${LOCALES} - do - for POFILE in `find i18n/${LOCALE}/LC_MESSAGES/ -type f -name '*.po'` - do - MOFILE=`echo ${POFILE} | sed -e 's,\.po,\.mo,'` - # Compile the translated strings - echo "Compiling messages to ${MOFILE}" - msgfmt --statistics -o ${MOFILE} ${POFILE} - done - done -fi - -# We need to flush the build dir or the translations don't come through -rm -rf ${BUILDDIR} -mkdir ${BUILDDIR} -#Add english to the list and generated docs -#LOCALES+=' en' - -if [ $1 ]; then - LOCALES=$1 -fi - -for LOCALE in ${LOCALES} -# Compile the html docs for this locale -do - # cleanup all images for the other locale - rm -rf source/static - mkdir -p source/static - # copy english (base) resources to the static dir - cp -r resources/en/* source/static - # now overwrite possible available (localised) resources over the english ones - cp -r resources/${LOCALE}/* source/static - - ################################# - # - # HTML Generation - # - ################################# - # Now prepare the index/irchat-[locale] template which is a manually translated, - # unique per locale page that gets copied to index.html/irchat.html for the doc - # generation process. - cp templates/index-${LOCALE}.html templates/index.html - cp templates/irchat-${LOCALE}.html templates/irchat.html - - echo "Building HTML for locale '${LOCALE}'..." - LOG=/tmp/sphinx$$.log - # -n Run in nit-picky mode. Currently, this generates warnings for all missing references. - # -W Turn warnings into errors. This means that the build stops at the first warning and sphinx-build exits with exit status 1. - #${SPHINXBUILD} -nW -d ${BUILDDIR}/doctrees -D language=${LOCALE} -b html source ${HTMLDIR}/${LOCALE} > $LOG - ${SPHINXBUILD} -d ${BUILDDIR}/doctrees -D language=${LOCALE} -b html source ${HTMLDIR}/${LOCALE} > $LOG - WARNINGS=`cat $LOG | grep warning` - ERRORS=`cat $LOG | grep ERROR` - if [[ $WARNINGS ]] - then - echo "***********************************************" - echo "* Sphinx build produces warnings - Please fix *" - echo $WARNINGS - echo "***********************************************" - exit 1 - fi - if [[ $ERRORS ]] - then - echo "*********************************************" - echo "* Sphinx build produces errors - Please fix *" - echo $ERRORS - echo "*********************************************" - exit 1 - fi - - # Remove the static html copy again - rm templates/index.html - rm templates/irchat.html - - # hack to avoid error when using Search in contents.html - rpl -q '#/../search.html' 'search.html' ./output/html/${LOCALE}/index.html - # same applies for having the IRC-Chat Navigation Link - rpl -q '#/../irchat.html' 'irchat.html' ./output/html/${LOCALE}/index.html - -# defaulting to generation of PDF too -# but to make travis build only html, add html as second parameter (see .travis.yml) -CREATE_PDF=true -if [[ $2 == html ]]; then - CREATE_PDF=false -fi - -if $CREATE_PDF; then - - ################################# - # - # PDF Generation - # - ################################# - # experimental sphinxbuild using rst2pdf... - #${SPHINXBUILD} -d ${BUILDDIR}/doctrees -D language=${LOCALE} -b pdf source ${BUILDDIR}/latex/${LOCALE} - - # Traditional using texi2pdf.... - # Compile the latex docs for that locale - # -n Run in nit-picky mode. Currently, this generates warnings for all missing references. - # -W Turn warnings into errors. This means that the build stops at the first warning and sphinx-build exits with exit status 1. - #${SPHINXBUILD} -nW -d ${BUILDDIR}/doctrees -D language=${LOCALE} -b latex source ${BUILDDIR}/latex/${LOCALE} > /dev/null 2>&1 - ${SPHINXBUILD} -n -d ${BUILDDIR}/doctrees -D language=${LOCALE} -b latex source ${BUILDDIR}/latex/${LOCALE} > /dev/null 2>&1 - # Compile the pdf docs for that locale - # we use texi2pdf since latexpdf target is not available via - # sphinx-build which we need to use since we need to pass language flag - pushd . - cp resources/InaSAFE_footer.png ${BUILDDIR}/latex/${LOCALE}/ - cd ${BUILDDIR}/latex/${LOCALE}/ - # Manipulate our latex a little - first add a standard footer - - FOOTER1="\usepackage{wallpaper}" - FOOTER2="\LRCornerWallPaper{1}{InaSAFE_footer.png}" - - # need to build 3x to have proper toc and index - if [ -z $TEXI2PDF ] - then - echo You do not have texinfo package installed. Please install! - exit 1 - fi - - texi2pdf --quiet InaSAFE-Documentation.tex > /dev/null 2>&1 - texi2pdf --quiet InaSAFE-Documentation.tex > /dev/null 2>&1 - texi2pdf --quiet InaSAFE-Documentation.tex > /dev/null 2>&1 - mv InaSAFE-Documentation.pdf ${PDFDIR}/InaSAFE-${VERSION}-Documentation-${LOCALE}.pdf - popd -fi - -done - -rm -rf source/static -rm -rf ${BUILDDIR} - -popd diff --git a/scripts/pre_translate.sh b/scripts/pre_translate.sh deleted file mode 100755 index 738b2132..00000000 --- a/scripts/pre_translate.sh +++ /dev/null @@ -1,99 +0,0 @@ -#!/usr/bin/env bash - -# INASAFE_DEV_PATH=$HOME/dev/python/inasafe/ -# export QGIS_PREFIX_PATH=/usr/local/qgis-2.8/ - -# if [ -d $INASAFE_DEV_PATH ] -# then -# export INASAFE_DEV_PATH=$HOME/dev/python/inasafe/ -# else -# echo Please set INASAFE_DEV_PATH as PATH to your local -# echo clone of inasafe repository inside this script -# exit 1 -# fi - -# export LD_LIBRARY_PATH=$QGIS_PREFIX_PATH/lib -# export PYTHONPATH=$QGIS_PREFIX_PATH/share/qgis/python:$QGIS_PREFIX_PATH/share/qgis/python/plugins:$INASAFE_DEV_PATH:$PYTHONPATH -# export QGIS_DEBUG=0 -# export QGIS_LOG_FILE=/dev/null -# export QGIS_DEBUG_FILE=/dev/null - -# Path to the documentation root relative to script execution dir -DOCROOT=docs -# Path from execution dir of this script to docs sources (could be just -# '' depending on how your sphinx project is set up). -SOURCE=source -# Name of the dir containing static files -STATIC=static - -LOCALES='id fr' - -if [ $1 ]; then - LOCALES=$1 -fi - -pushd . -cd $DOCROOT - -# Create / update the translation catalogue - this will generate the master .pot files -mkdir -p i18n/pot -# Create a (temporary) static directory in source to hold all (localised ) static content -mkdir -p source/static - -# copy english resources to static to be able to do a proper sphinx-build -cp -r resources/en/* source/static/ - -rm -rf - -BUILDDIR=build -# be sure to remove an old build dir -rm -rf ${BUILDDIR} -mkdir ${BUILDDIR} - -# Create / update the translation catalogue - this will generate the master -# .pot files -sphinx-build -d ${BUILDDIR}/doctrees -b gettext $SOURCE i18n/pot/ - -# We do not want the developer-docs/api-docs being translated so take them out of here -rm -rf i18n/pot/developer-docs -rm -rf i18n/pot/api-docs - -# Now iteratively update the locale specific .po files with any new strings -# needed translation -for LOCALE in ${LOCALES} -do - echo "Updating translation catalog for ${LOCALE}:" - echo "------------------------------------" - mkdir -p i18n/${LOCALE}/LC_MESSAGES - # cleanup images from static (different locales can have different localized images) - rm -rf source/static/* - # Clone the en resources and then overwrite with any localised versions of the same files. - cp -r resources/en/* source/static/ - PODIR=resources/${LOCALE} - if [ -d $PODIR ]; - then - cp -r ${PODIR}/* source/static/ - fi - - # Merge or copy all the updated pot files over to locale specific po files - for FILE in `find i18n/pot/ -type f` - do - POTFILE=${FILE} - POFILE=`echo ${POTFILE} | sed -e 's,\.pot,\.po,' | sed -e 's,pot,'${LOCALE}'/LC_MESSAGES,'` - if [ -f $POFILE ]; - then - echo "Updating strings for ${POFILE}" - msgmerge -U ${POFILE} ${POTFILE} - else - echo "Creating ${POFILE}" - mkdir -p `echo $(dirname ${POFILE})` - cp ${POTFILE} ${POFILE} - fi - done -done - -# Now get rid of temporary POT files -rm -rf i18n/pot -rm -rf source/static - -popd diff --git a/scripts/rst_generation_tools.py b/scripts/rst_generation_tools.py deleted file mode 100644 index 01c5fadb..00000000 --- a/scripts/rst_generation_tools.py +++ /dev/null @@ -1,217 +0,0 @@ -# -*- coding: utf-8 -*- -"""General tools for formatting rst. - -.. tip:: - Common tools used when generating rst formatted data. -""" - -__author__ = 'Christian Christelis ' -__revision__ = '$Format:%H$' -__date__ = '06/06/2014' -__license__ = "GPL" -__copyright__ = 'Copyright 2014, Australia Indonesia Facility for ' -__copyright__ += 'Disaster Reduction' - -from textwrap import wrap - - -class HorizontalBorder(object): - """Manage the border elements of a simple rst table those are the: ====== - """ - def __init__(self, default_length=5): - """Constructor - - :param default_length: The default (min) character length of the column - :type default_length: int - """ - self.length = default_length - - def column_width(self, column_content): - """Determine the column width, by passing the column content. - - :param column_content: The content of the column - :type column_content: list - """ - for entry in column_content: - if isinstance(entry, basestring): - self.length = max(len(entry), self.length) - else: - self.length = max(len('%s' % entry), self.length) - - def __call__(self): - """Generate the horizontal border for a given column - - :return: sequence of '=' with an offset - :rtype: str - """ - return '%s ' % ('=' * self.length) - - -class SimpleRstTableFormatter(object): - """Create a simple rst table the table conforms to: - - .. table:: - - =========== ============== - Key Allowed Values - =========== ============== - subcategory tsunami - subcategory flood - subcategory volcano - subcategory earthquake - =========== ============== - - """ - def __init__(self, heading=None, rows=None): - """Instantiate the object with optionally heading and rows. - - :param heading: The heading - :type heading: list, None - - :param rows: The rows - :type rows: list, None - """ - if not heading: - heading = [] - else: - self.heading = self._stringify(heading) - if not rows: - rows = [] - else: - self.rows = [self._stringify(row) for row in rows] - - def add_heading(self, heading): - """Add a heading to this table. - - :param heading: The heading. - :type heading; list - """ - self.heading = self._stringify(heading) - - def add_row(self, row): - """Add a row to this table. - - :param row: The row. - :type row: list - """ - self.rows.append(self._stringify(row)) - @staticmethod - def _stringify(row): - """Convert the objects in the row to strings - - :param row: The row - :type row: list - - :return: Row with each element formatted to a string - :rtype: list - """ - return ['%s' % r for r in row] - - @staticmethod - def _left_fill(row, boarders): - """Fill each element of the row to the same size as the row of borders - - :param row: The row to be updated - :type row: list - - :param boarders: The row of borders - :type: list - - :return: The update row. - :rtype: list - """ - return [r.ljust(len(b)) for (r, b) in zip(row, boarders)] - - def __call__(self): - """ Get the table - - :return: RST formatted table. - :rtype: str - """ - if not self.heading or not self.rows: - raise ReferenceError - column_count = len(self.heading) - borders = [] - for count in range(column_count): - border = HorizontalBorder() - column = [self.heading[count]] + [row[count] for row in self.rows] - border.column_width(column) - borders.append(border()) - table = '.. table::\n\n' - for row in [borders, self.heading, borders] + self.rows + [borders]: - row = self._left_fill(row, borders) - table += ' %s\n' % ' '.join(row) - return table - - -def uniform_markers(text, markers, placeholder=None): - """Make all markers in the text the same. - - :param text: The text to be updated. - :type text: str - - :param markers: The markers to be made uniform. - :type markers: list - - :param placeholder: The optional placeholder marker - :type placeholder: str, None - - :return: The updated text. - :rtype: str - """ - placeholder = placeholder or markers[0] - for marker in markers[1:]: - text = text.replace(marker, placeholder) - return text - - -def replace_bold(text): - """Convert html bold to rst bold in text. - - :param text: The text to be updated. - :type text: str - - :return: The updated text. - :rtype: str - """ - text = uniform_markers(text, ['', '', '', '']) - return text.replace('', '**') - - -def replace_italic(text): - """Convert html italic to rst italic in text. - - :param text: The text to be updated. - :type text: str - - :return: The updated text. - :rtype: str - """ - text = uniform_markers(text, ['', '', '', '']) - return text.replace('', '*') - - -def format_rst_paragraph(paragraph, prefix=None, width=79): - """ Convert a paragraph, with html formatting to rst. - - :param paragraph: The paragraph to be formatted. - :type paragraph: str - - :param prefix: Text to highlight and prefix to paragraph. - :type prefix: str, None - - :param width: The width of the paragraph. - :type width: int - - :return: The formatted paragraph. - :rtype: str - """ - paragraph = replace_bold(paragraph) - paragraph = replace_italic(paragraph) - if prefix: - paragraph = '**%s**: %s' % (prefix, paragraph) - paragraph = wrap(paragraph, width) - return '\n'.join(paragraph) - - - diff --git a/scripts/update_all_dev.sh b/scripts/update_all_dev.sh deleted file mode 100755 index cd7e48cd..00000000 --- a/scripts/update_all_dev.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -git pull -tx pull -./scripts/pre_translate.sh -./scripts/pre_translate.sh en -./scripts/create_transifex_resources.sh -./scripts/post_translate.sh From a649156a4a5f5051087320fc7b5ea1426f3e87ba Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 10:46:28 +0200 Subject: [PATCH 10/31] Strip more stuff out for eng only build --- .github/workflows/nix-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index 1865e52a..982a3001 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -11,4 +11,4 @@ jobs: with: nix_path: nixpkgs=channel:nixos-unstable - uses: DeterminateSystems/magic-nix-cache-action@v2 - - run: nix-shell --run "scripts/english_build.sh" + - run: nix-shell --run "./english_build.sh" From 0461759938ebb16c9131b150d3bcba0be267f280 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 10:58:28 +0200 Subject: [PATCH 11/31] Push to gh pages --- .github/workflows/nix-build.yml | 29 +++++++++++++++++++++++------ 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index 982a3001..8499455f 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -6,9 +6,26 @@ jobs: tests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: cachix/install-nix-action@v20 - with: - nix_path: nixpkgs=channel:nixos-unstable - - uses: DeterminateSystems/magic-nix-cache-action@v2 - - run: nix-shell --run "./english_build.sh" + - name: Checkout docs + uses: actions/checkout@v3 + - name: Setup Nix + uses: cachix/install-nix-action@v20 + with: + nix_path: nixpkgs=channel:nixos-unstable + - name: Nix shell + uses: DeterminateSystems/magic-nix-cache-action@v2 + run: nix-shell --run "./english_build.sh" + - name: Deploy docs to github pages + uses: ad-m/github-push-action@v0.5.0 + with: + # Token for the repo + # Can be passed in using $\{{ secrets.GITHUB_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }} + # Destination branch to push changes + branch: gh-pages + # Use force push to fully overwrite the destination branch + force: true + # We have to push from the folder where files were generated. + # Same were the new repo was initialized in the previous step + directory: ./docs/en + From 80a695c21ac55312e8fa1b8485695307bced4de1 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 11:14:45 +0200 Subject: [PATCH 12/31] Push to gh pages --- .github/workflows/nix-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index 8499455f..e594d0b4 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -14,7 +14,7 @@ jobs: nix_path: nixpkgs=channel:nixos-unstable - name: Nix shell uses: DeterminateSystems/magic-nix-cache-action@v2 - run: nix-shell --run "./english_build.sh" + - run: nix-shell --run "./english_build.sh" - name: Deploy docs to github pages uses: ad-m/github-push-action@v0.5.0 with: From ec824a97054ee33ef61bdae27fea88831ac454e6 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 11:22:02 +0200 Subject: [PATCH 13/31] Push to gh pages --- .github/workflows/nix-build.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index e594d0b4..1111a8db 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -1,9 +1,19 @@ -name: "Test" +name: 📖 Documentation on: - pull_request: push: + branches: + - main + - docs + # Paths can be used to only trigger actions when you have edited certain files, such as a file within the /docs directory + paths: + - ".github/workflows/nix-build.yml" + - "docs/**" + # Allow manually running in the actions tab + workflow_dispatch: + jobs: tests: + name: Deploy docs runs-on: ubuntu-latest steps: - name: Checkout docs @@ -14,7 +24,7 @@ jobs: nix_path: nixpkgs=channel:nixos-unstable - name: Nix shell uses: DeterminateSystems/magic-nix-cache-action@v2 - - run: nix-shell --run "./english_build.sh" + run: nix-shell --run "./english_build.sh" - name: Deploy docs to github pages uses: ad-m/github-push-action@v0.5.0 with: From 1c9b19f7b6e51d65d7c569696f79fc1829f2290b Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 11:24:50 +0200 Subject: [PATCH 14/31] Push to gh pages --- .github/workflows/nix-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index 1111a8db..c74f00af 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -24,7 +24,7 @@ jobs: nix_path: nixpkgs=channel:nixos-unstable - name: Nix shell uses: DeterminateSystems/magic-nix-cache-action@v2 - run: nix-shell --run "./english_build.sh" + run: nix-shell --run "./english_build.sh" - name: Deploy docs to github pages uses: ad-m/github-push-action@v0.5.0 with: From 428262b214c39eccdc0c0e35475d15d57af491a0 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 11:26:24 +0200 Subject: [PATCH 15/31] Push to gh pages --- .github/workflows/nix-build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index c74f00af..437b2963 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -24,6 +24,7 @@ jobs: nix_path: nixpkgs=channel:nixos-unstable - name: Nix shell uses: DeterminateSystems/magic-nix-cache-action@v2 + with: run: nix-shell --run "./english_build.sh" - name: Deploy docs to github pages uses: ad-m/github-push-action@v0.5.0 From d445a8090953fb692c9b1bb05306b5fa3012422d Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 11:35:36 +0200 Subject: [PATCH 16/31] Push to gh pages --- .github/workflows/nix-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index 437b2963..723aeba7 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -22,9 +22,9 @@ jobs: uses: cachix/install-nix-action@v20 with: nix_path: nixpkgs=channel:nixos-unstable - - name: Nix shell + - name: Nix Cache uses: DeterminateSystems/magic-nix-cache-action@v2 - with: + - name: Build docs run: nix-shell --run "./english_build.sh" - name: Deploy docs to github pages uses: ad-m/github-push-action@v0.5.0 From ea467e7cd7d9f494f5c24f44c2b2945226d7f625 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 11:37:08 +0200 Subject: [PATCH 17/31] Push to gh pages --- .github/workflows/nix-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index 723aeba7..a1d01ccd 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -25,7 +25,7 @@ jobs: - name: Nix Cache uses: DeterminateSystems/magic-nix-cache-action@v2 - name: Build docs - run: nix-shell --run "./english_build.sh" + run: nix-shell --run "./english_build.sh" - name: Deploy docs to github pages uses: ad-m/github-push-action@v0.5.0 with: From 0617f97a9e1a77bba54b6643235fef0d1909ed3a Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 20:10:03 +0200 Subject: [PATCH 18/31] Push to gh pages --- .github/workflows/nix-build.yml | 59 +++++++++++++++++++-------------- 1 file changed, 35 insertions(+), 24 deletions(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index a1d01ccd..5e248d99 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -1,5 +1,6 @@ name: 📖 Documentation on: + pull_request: push: branches: - main @@ -13,30 +14,40 @@ on: jobs: tests: - name: Deploy docs runs-on: ubuntu-latest steps: - - name: Checkout docs - uses: actions/checkout@v3 - - name: Setup Nix - uses: cachix/install-nix-action@v20 - with: - nix_path: nixpkgs=channel:nixos-unstable - - name: Nix Cache - uses: DeterminateSystems/magic-nix-cache-action@v2 - - name: Build docs - run: nix-shell --run "./english_build.sh" - - name: Deploy docs to github pages - uses: ad-m/github-push-action@v0.5.0 - with: - # Token for the repo - # Can be passed in using $\{{ secrets.GITHUB_TOKEN }} - github_token: ${{ secrets.GITHUB_TOKEN }} - # Destination branch to push changes - branch: gh-pages - # Use force push to fully overwrite the destination branch - force: true - # We have to push from the folder where files were generated. - # Same were the new repo was initialized in the previous step - directory: ./docs/en + - uses: actions/checkout@v3 + - uses: cachix/install-nix-action@v20 + with: + nix_path: nixpkgs=channel:nixos-unstable + - uses: DeterminateSystems/magic-nix-cache-action@v2 + - run: nix-shell --run "./english_build.sh" + + +#jobs: +# tests: +# name: Deploy docs +# runs-on: ubuntu-latest +# steps: +# - name: Checkout docs +# uses: actions/checkout@v3 +# - name: Setup Nix +# uses: cachix/install-nix-action@v20 +# with: +# nix_path: nixpkgs=channel:nixos-unstable +# - name: Nix Cache +# uses: DeterminateSystems/magic-nix-cache-action@v2 +# - name: Deploy docs to github pages +# uses: ad-m/github-push-action@v0.5.0 +# with: +# # Token for the repo +# # Can be passed in using $\{{ secrets.GITHUB_TOKEN }} +# github_token: ${{ secrets.GITHUB_TOKEN }} +# # Destination branch to push changes +# branch: gh-pages +# # Use force push to fully overwrite the destination branch +# force: true +# # We have to push from the folder where files were generated. +# # Same were the new repo was initialized in the previous step +# directory: ./docs/en From a247b5dac8a3dd22ac3eef762c9d8053c098a593 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 20:10:38 +0200 Subject: [PATCH 19/31] Push to gh pages --- .github/workflows/nix-build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index 5e248d99..31cb1b2a 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -5,6 +5,7 @@ on: branches: - main - docs + - tim-nix # Paths can be used to only trigger actions when you have edited certain files, such as a file within the /docs directory paths: - ".github/workflows/nix-build.yml" From 25ed2b76c6b4e165dc90d4db33a6d1b21b0439e3 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 20:19:00 +0200 Subject: [PATCH 20/31] Added build and test gh workflows --- .github/workflows/nix-build.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index 31cb1b2a..e577afd0 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -1,4 +1,4 @@ -name: 📖 Documentation +name: 📖 Test Documentation on: pull_request: push: @@ -14,6 +14,7 @@ on: workflow_dispatch: jobs: + # Runs when we create or update a PR tests: runs-on: ubuntu-latest steps: @@ -24,6 +25,16 @@ jobs: - uses: DeterminateSystems/magic-nix-cache-action@v2 - run: nix-shell --run "./english_build.sh" + # Runs when we merge a PR + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: cachix/install-nix-action@v20 + with: + nix_path: nixpkgs=channel:nixos-unstable + - uses: DeterminateSystems/magic-nix-cache-action@v2 + - run: nix-shell --run "./english_build.sh" #jobs: # tests: From de7fdd83730c04e1d9871f088c77dbe312a59323 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 20:26:59 +0200 Subject: [PATCH 21/31] Added build and test gh workflows --- .github/workflows/nix-build.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index e577afd0..3ebad7d8 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -15,17 +15,6 @@ on: jobs: # Runs when we create or update a PR - tests: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: cachix/install-nix-action@v20 - with: - nix_path: nixpkgs=channel:nixos-unstable - - uses: DeterminateSystems/magic-nix-cache-action@v2 - - run: nix-shell --run "./english_build.sh" - - # Runs when we merge a PR build: runs-on: ubuntu-latest steps: @@ -35,6 +24,18 @@ jobs: nix_path: nixpkgs=channel:nixos-unstable - uses: DeterminateSystems/magic-nix-cache-action@v2 - run: nix-shell --run "./english_build.sh" + - uses: ad-m/github-push-action@v0.5.0 + with: + # Token for the repo + # Can be passed in using $\{{ secrets.GITHUB_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }} + # Destination branch to push changes + branch: gh-pages + # Use force push to fully overwrite the destination branch + force: true + # We have to push from the folder where files were generated. + # Same were the new repo was initialized in the previous step + directory: ./docs/en #jobs: # tests: From f38c5c41bd4a1382ea6ea9f8bfece12899052087 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 20:30:22 +0200 Subject: [PATCH 22/31] Fix gh pages path --- .github/workflows/nix-build.yml | 29 +---------------------------- 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index 3ebad7d8..58606b9f 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -35,32 +35,5 @@ jobs: force: true # We have to push from the folder where files were generated. # Same were the new repo was initialized in the previous step - directory: ./docs/en - -#jobs: -# tests: -# name: Deploy docs -# runs-on: ubuntu-latest -# steps: -# - name: Checkout docs -# uses: actions/checkout@v3 -# - name: Setup Nix -# uses: cachix/install-nix-action@v20 -# with: -# nix_path: nixpkgs=channel:nixos-unstable -# - name: Nix Cache -# uses: DeterminateSystems/magic-nix-cache-action@v2 -# - name: Deploy docs to github pages -# uses: ad-m/github-push-action@v0.5.0 -# with: -# # Token for the repo -# # Can be passed in using $\{{ secrets.GITHUB_TOKEN }} -# github_token: ${{ secrets.GITHUB_TOKEN }} -# # Destination branch to push changes -# branch: gh-pages -# # Use force push to fully overwrite the destination branch -# force: true -# # We have to push from the folder where files were generated. -# # Same were the new repo was initialized in the previous step -# directory: ./docs/en + directory: ./docs/output/html/en From e306da20548cf892b183d11a0ddc3687c42deaa3 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 21:29:01 +0200 Subject: [PATCH 23/31] Fix gh pages push error --- .github/workflows/nix-build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index 58606b9f..ee35159b 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -24,6 +24,8 @@ jobs: nix_path: nixpkgs=channel:nixos-unstable - uses: DeterminateSystems/magic-nix-cache-action@v2 - run: nix-shell --run "./english_build.sh" + # Fix for https://github.com/inasafe/inasafe-doc/actions/runs/7233606517/job/19709062547#step:7:14 + - run: git config --global --add safe.directory $PWD - uses: ad-m/github-push-action@v0.5.0 with: # Token for the repo From ce95d9a229aa8d78d3a88b65e3398a2ef48deeac Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 21:42:26 +0200 Subject: [PATCH 24/31] Fix gh pages push error --- .github/workflows/nix-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index ee35159b..0452bc8e 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -25,7 +25,7 @@ jobs: - uses: DeterminateSystems/magic-nix-cache-action@v2 - run: nix-shell --run "./english_build.sh" # Fix for https://github.com/inasafe/inasafe-doc/actions/runs/7233606517/job/19709062547#step:7:14 - - run: git config --global --add safe.directory $PWD + - run: git config --global --add safe.directory /github/workspace - uses: ad-m/github-push-action@v0.5.0 with: # Token for the repo From 37ba22d2119f563afa1d450594e6c84df55301b9 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 21:56:43 +0200 Subject: [PATCH 25/31] Fix gh pages push error --- .github/workflows/nix-build.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index 0452bc8e..c5438b84 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -24,9 +24,7 @@ jobs: nix_path: nixpkgs=channel:nixos-unstable - uses: DeterminateSystems/magic-nix-cache-action@v2 - run: nix-shell --run "./english_build.sh" - # Fix for https://github.com/inasafe/inasafe-doc/actions/runs/7233606517/job/19709062547#step:7:14 - - run: git config --global --add safe.directory /github/workspace - - uses: ad-m/github-push-action@v0.5.0 + - uses: ad-m/github-push-action@master with: # Token for the repo # Can be passed in using $\{{ secrets.GITHUB_TOKEN }} From 6b736805bc569ba1a5d4f3b1501ffad5521714f1 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 22:10:49 +0200 Subject: [PATCH 26/31] Trying to push docs with workflow --- .github/workflows/nix-build.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index c5438b84..c145d01d 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -24,6 +24,14 @@ jobs: nix_path: nixpkgs=channel:nixos-unstable - uses: DeterminateSystems/magic-nix-cache-action@v2 - run: nix-shell --run "./english_build.sh" + - name: Commit files + run: | + mv ./docs/output/html/en /tmp/en + cd /tmp/en + git init . + git config --local user.email "test@test.com" + git config --local user.name "Test" + git commit -a -m "Update docs" - uses: ad-m/github-push-action@master with: # Token for the repo @@ -35,5 +43,5 @@ jobs: force: true # We have to push from the folder where files were generated. # Same were the new repo was initialized in the previous step - directory: ./docs/output/html/en + directory: /tmp/en From 14f8fd4fb891a54a1a0bc645bca8320d23ece06d Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 22:14:09 +0200 Subject: [PATCH 27/31] Trying to push docs with workflow --- .github/workflows/nix-build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index c145d01d..d6621e76 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -24,8 +24,7 @@ jobs: nix_path: nixpkgs=channel:nixos-unstable - uses: DeterminateSystems/magic-nix-cache-action@v2 - run: nix-shell --run "./english_build.sh" - - name: Commit files - run: | + - run: | mv ./docs/output/html/en /tmp/en cd /tmp/en git init . From 16adffa90c30df23b7b31200ef32e86c80427905 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Sat, 16 Dec 2023 22:47:16 +0200 Subject: [PATCH 28/31] Trying to push docs with workflow --- .github/workflows/nix-build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index d6621e76..b0a53ef9 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -28,6 +28,7 @@ jobs: mv ./docs/output/html/en /tmp/en cd /tmp/en git init . + git add --all git config --local user.email "test@test.com" git config --local user.name "Test" git commit -a -m "Update docs" From d4359c593cc4f50c2213d1517323c78890a4a871 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Wed, 3 Jan 2024 10:52:20 +0000 Subject: [PATCH 29/31] Updating build for Tharanath --- .github/workflows/nix-build.yml | 6 ++++-- deployment/docker/Dockerfile | 10 ++++++++++ deployment/image-index.yml | 4 ++++ 3 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 deployment/docker/Dockerfile create mode 100644 deployment/image-index.yml diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index b0a53ef9..ae8cf9f6 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -25,8 +25,10 @@ jobs: - uses: DeterminateSystems/magic-nix-cache-action@v2 - run: nix-shell --run "./english_build.sh" - run: | - mv ./docs/output/html/en /tmp/en - cd /tmp/en + mkdir /tmp/site + mv ./docs/output/html/en /tmp/site/en + cp -r deployment /tmp/site + cd /tmp/site git init . git add --all git config --local user.email "test@test.com" diff --git a/deployment/docker/Dockerfile b/deployment/docker/Dockerfile new file mode 100644 index 00000000..2dde96f2 --- /dev/null +++ b/deployment/docker/Dockerfile @@ -0,0 +1,10 @@ +FROM httpd:2.4.57-alpine3.18 + +#copy static folders and files +COPY docs /usr/local/apache2/htdocs/ + +#copy apache config +#COPY ./httpd.conf /usr/local/apache2/conf/httpd.conf + +#Expose port +EXPOSE 80 \ No newline at end of file diff --git a/deployment/image-index.yml b/deployment/image-index.yml new file mode 100644 index 00000000..83426439 --- /dev/null +++ b/deployment/image-index.yml @@ -0,0 +1,4 @@ +images: + - name: inasafe-docs + dockerfile: deployment/docker/Dockerfile + buildPath: . \ No newline at end of file From bff49124d0c8f36a50164480ad291cae07a228d5 Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Wed, 3 Jan 2024 10:53:59 +0000 Subject: [PATCH 30/31] Update Dockerfile --- deployment/docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/docker/Dockerfile b/deployment/docker/Dockerfile index 2dde96f2..7e8f6ffe 100644 --- a/deployment/docker/Dockerfile +++ b/deployment/docker/Dockerfile @@ -1,10 +1,10 @@ FROM httpd:2.4.57-alpine3.18 #copy static folders and files -COPY docs /usr/local/apache2/htdocs/ +COPY en /usr/local/apache2/htdocs/ #copy apache config #COPY ./httpd.conf /usr/local/apache2/conf/httpd.conf #Expose port -EXPOSE 80 \ No newline at end of file +EXPOSE 80 From 8b0b4f0f675440a52012f6a036f45f6124405dab Mon Sep 17 00:00:00 2001 From: Tim Sutton Date: Wed, 3 Jan 2024 23:20:06 +0000 Subject: [PATCH 31/31] Fix workflow --- .github/workflows/nix-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index ae8cf9f6..d5639aa3 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -45,5 +45,5 @@ jobs: force: true # We have to push from the folder where files were generated. # Same were the new repo was initialized in the previous step - directory: /tmp/en + directory: /tmp/site