annotate client/src/components/importconfiguration/types/Fairwaymarks.vue @ 4989:f879933cf671

add formatting for captions of infos about fairway_marks
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 05 Mar 2020 14:05:45 +0100
parents 3f704ebad0c5
children c8d36d585f6f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4870
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
1 <template>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
2 <div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
3 <div class="d-flex px-2">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
4 <div class="flex-column w-100">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
5 <div class="flex-row text-left">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
6 <small class="text-muted"> <translate>URL</translate> </small>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
7 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
8 <div class="w-100">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
9 <input
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
10 @input="urlChanged"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
11 class="url form-control form-control-sm"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
12 type="url"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
13 :value="url"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
14 />
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
15 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
16 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
17 </div>
4901
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
18 <div class="d-flex px-2">
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
19 <div class="flex-column w-100">
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
20 <div class="flex-row text-left">
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
21 <small class="text-muted">
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
22 <translate>Type of mark</translate>
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
23 </small>
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
24 </div>
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
25 <div class="w-50 mt-2">
4916
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
26 <template v-if="isUpdate">
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
27 <select v-model="selectedMark" class="form-control form-control-sm">
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
28 <option
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
29 v-for="(option, value) in $options.FAIRWAYMARKS"
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
30 :key="value"
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
31 :value="value"
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
32 >{{ option }}</option
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
33 >
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
34 </select>
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
35 </template>
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
36 <template v-else="">
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
37 <span class="pl-1">{{ selectedMark }}</span>
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
38 </template>
4901
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
39 </div>
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
40 </div>
4870
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
41 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
42 <div class="d-flex px-2">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
43 <div class="flex-column mt-2 mr-3 w-50">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
44 <div class="flex-row text-left">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
45 <small class="text-muted"> <translate>Featuretype</translate> </small>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
46 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
47 <div class="w-100">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
48 <input
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
49 @input="featureTypeChanged"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
50 class="featuretype form-control form-control-sm"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
51 type="text"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
52 :value="featureType"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
53 />
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
54 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
55 <div v-if="!featureType" class="d-flex flex-row">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
56 <small
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
57 ><translate class="text-danger"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
58 >Please enter a Featuretype</translate
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
59 ></small
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
60 >
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
61 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
62 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
63 <div class="flex-column mt-2 w-50">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
64 <div class="flex-row text-left">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
65 <small class="text-muted"> <translate>SortBy</translate> </small>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
66 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
67 <div class="w-100">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
68 <input
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
69 @input="sortByChanged"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
70 class="sortby form-control form-control-sm"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
71 type="text"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
72 :value="sortBy"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
73 />
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
74 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
75 <div v-if="!sortBy" class="d-flex flex-row">
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
76 <small
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
77 ><translate class="text-danger"
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
78 >Please enter SortBy</translate
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
79 ></small
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
80 >
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
81 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
82 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
83 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
84 </div>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
85 </template>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
86
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
87 <script>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
88 /* This is Free Software under GNU Affero General Public License v >= 3.0
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
89 * without warranty, see README.md and license for details.
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
90 *
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
91 * SPDX-License-Identifier: AGPL-3.0-or-later
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
92 * License-Filename: LICENSES/AGPL-3.0.txt
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
93 *
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
94 * Copyright (C) 2018 by via donau
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
95 * – Österreichische Wasserstraßen-Gesellschaft mbH
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
96 * Software engineering by Intevation GmbH
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
97 *
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
98 * Author(s):
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
99 * Thomas Junk <thomas.junk@intevation.de>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
100 */
4989
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
101 import app from "@/main";
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
102
4870
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
103 export default {
4916
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
104 name: "fairwaymarks",
d456621404c2 Make fairwaymark imports editable again.
Thomas Junk <thomas.junk@intevation.de>
parents: 4910
diff changeset
105 props: ["url", "featureType", "sortBy", "mark", "isUpdate"],
4901
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
106 computed: {
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
107 selectedMark: {
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
108 get() {
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
109 return this.mark;
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
110 },
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
111 set(value) {
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
112 this.selected = value;
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
113 this.$emit("selectedMarkChanged", value);
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
114 }
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
115 }
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
116 },
4870
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
117 methods: {
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
118 urlChanged(e) {
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
119 this.$emit("urlChanged", e.target.value);
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
120 },
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
121 featureTypeChanged(e) {
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
122 this.$emit("featureTypeChanged", e.target.value);
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
123 },
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
124 sortByChanged(e) {
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
125 this.$emit("sortByChanged", e.target.value);
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
126 }
4901
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
127 },
1f2d90312ac6 added dropdown to FM import to further specify the kind of fairwaymark to be imported
Thomas Junk <thomas.junk@intevation.de>
parents: 4870
diff changeset
128 FAIRWAYMARKS: {
4989
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
129 bcnisd: app.$gettext("Beacon, isolated danger (MARITIME/Hydro feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
130 bcnlat_hydro: app.$gettext("Beacon, lateral (MARITIME/Hydro feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
131 bcnlat_ienc: app.$gettext("Beacon, lateral (IENC feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
132 boycar: app.$gettext("Buoy, cardinal (MARITIME/Hydro feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
133 boyisd: app.$gettext("Buoy, isolated danger (MARITIME/Hydro feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
134 boylat_hydro: app.$gettext("Buoy, lateral (MARITIME/Hydro feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
135 boylat_ienc: app.$gettext("Buoy, lateral (IENC feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
136 boysaw: app.$gettext("Buoy, safe water (MARITIME/Hydro feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
137 boyspp: app.$gettext(
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
138 "Buoy, special purpose/general (MARITIME/Hydro feature)"
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
139 ),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
140 daymar_hydro: app.$gettext("Daymark (MARITIME/Hydro feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
141 daymar_ienc: app.$gettext("Daymark (IENC feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
142 lights: app.$gettext("Light (MARITIME/Hydro feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
143 rtpbcn: app.$gettext("Radar transponder beacon (MARITIME/Hydro feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
144 topmar: app.$gettext("Topmark (MARITIME/Hydro feature)"),
f879933cf671 add formatting for captions of infos about fairway_marks
Thomas Junk <thomas.junk@intevation.de>
parents: 4967
diff changeset
145 notmrk: app.$gettext("Notice mark (IENC feature)")
4870
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
146 }
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
147 };
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
148 </script>
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
149
b55120fa8913 add fairway marks import as schedulable import
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
150 <style></style>