Mercurial > dive4elements > river
annotate flys-client/src/main/java/de/intevation/flys/client/client/FLYSConstants.java @ 1528:ff41405a891d
Added a new widget to simply insert a WQ mode and values as array.
flys-client/trunk@3726 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Thu, 19 Jan 2012 17:03:38 +0000 |
parents | a6f6c61b18be |
children | 98123d34529b |
rev | line source |
---|---|
211
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
1 package de.intevation.flys.client.client; |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
2 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
3 import com.google.gwt.i18n.client.ConstantsWithLookup; |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
4 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
5 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
6 /** |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
7 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
8 */ |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
9 public interface FLYSConstants extends ConstantsWithLookup { |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
10 |
605
9e30c776cbef
Improved the exception handling.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
602
diff
changeset
|
11 String unexpected_exception(); |
9e30c776cbef
Improved the exception handling.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
602
diff
changeset
|
12 |
211
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
13 String title(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
14 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
15 String fullname(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
16 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
17 String user(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
18 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
19 String guest(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
20 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
21 String projects(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
22 |
220
35094660f91a
Implemented a context menu for the project list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
217
diff
changeset
|
23 String open_project(); |
35094660f91a
Implemented a context menu for the project list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
217
diff
changeset
|
24 |
35094660f91a
Implemented a context menu for the project list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
217
diff
changeset
|
25 String delete_project(); |
35094660f91a
Implemented a context menu for the project list.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
217
diff
changeset
|
26 |
597
14e5e51a7de4
Improved the project list - listeners are notified after setting the name and ttl of a project.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
584
diff
changeset
|
27 String rename_project(); |
14e5e51a7de4
Improved the project list - listeners are notified after setting the name and ttl of a project.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
584
diff
changeset
|
28 |
887
6a27949c7022
Issue234/266: Added feature for duplicating projects.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
880
diff
changeset
|
29 String clone_project(); |
6a27949c7022
Issue234/266: Added feature for duplicating projects.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
880
diff
changeset
|
30 |
6a27949c7022
Issue234/266: Added feature for duplicating projects.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
880
diff
changeset
|
31 String copy_of (); |
6a27949c7022
Issue234/266: Added feature for duplicating projects.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
880
diff
changeset
|
32 |
211
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
33 String manage_projects(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
34 |
605
9e30c776cbef
Improved the exception handling.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
602
diff
changeset
|
35 String favorite_tooltip(); |
9e30c776cbef
Improved the exception handling.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
602
diff
changeset
|
36 |
9e30c776cbef
Improved the exception handling.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
602
diff
changeset
|
37 String favorite_tooltip_meaning(); |
9e30c776cbef
Improved the exception handling.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
602
diff
changeset
|
38 |
9e30c776cbef
Improved the exception handling.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
602
diff
changeset
|
39 String projectlist_creationTime(); |
9e30c776cbef
Improved the exception handling.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
602
diff
changeset
|
40 |
9e30c776cbef
Improved the exception handling.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
602
diff
changeset
|
41 String projectlist_title(); |
9e30c776cbef
Improved the exception handling.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
602
diff
changeset
|
42 |
9e30c776cbef
Improved the exception handling.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
602
diff
changeset
|
43 String projectlist_favorite(); |
9e30c776cbef
Improved the exception handling.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
602
diff
changeset
|
44 |
9e30c776cbef
Improved the exception handling.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
602
diff
changeset
|
45 String really_delete(); |
9e30c776cbef
Improved the exception handling.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
602
diff
changeset
|
46 |
613
471ca61b83b5
#165 Set the max length of project names to 50 characters.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
609
diff
changeset
|
47 String project_name_too_long(); |
471ca61b83b5
#165 Set the max length of project names to 50 characters.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
609
diff
changeset
|
48 |
211
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
49 String logout(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
50 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
51 String switch_language(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
52 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
53 String info(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
54 |
212
e3ea3c74b7f5
Fixed the function to toggle the language and added a warning dialog that informs the user about the creation of a new session.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
211
diff
changeset
|
55 String warning(); |
e3ea3c74b7f5
Fixed the function to toggle the language and added a warning dialog that informs the user about the creation of a new session.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
211
diff
changeset
|
56 |
e3ea3c74b7f5
Fixed the function to toggle the language and added a warning dialog that informs the user about the creation of a new session.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
211
diff
changeset
|
57 String warning_language(); |
e3ea3c74b7f5
Fixed the function to toggle the language and added a warning dialog that informs the user about the creation of a new session.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
211
diff
changeset
|
58 |
211
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
59 String no_projects(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
60 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
61 String load_projects(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
62 |
263
f56523bf4c55
Changed the empty table message for helper and data tables.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
256
diff
changeset
|
63 String empty_table(); |
f56523bf4c55
Changed the empty table message for helper and data tables.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
256
diff
changeset
|
64 |
876
dbaef661d0e5
Changed i18n string for empty table and set header fields to fixed order.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
875
diff
changeset
|
65 String empty_filter(); |
dbaef661d0e5
Changed i18n string for empty table and set header fields to fixed order.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
875
diff
changeset
|
66 |
211
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
67 String date_format(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
68 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
69 String datetime_format(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
70 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
71 String new_project(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
72 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
73 String new_calculation(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
74 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
75 String module_selection(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
76 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
77 String river_selection(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
78 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
79 String winfo(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
80 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
81 String minfo(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
82 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
83 String map(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
84 |
1516
102e472bd2a1
Changed the visible i18n strings for module 'new map.'
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1511
diff
changeset
|
85 String new_map(); |
102e472bd2a1
Changed the visible i18n strings for module 'new map.'
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1511
diff
changeset
|
86 |
1467
3adfb0f88eca
Changed i18n strings.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1465
diff
changeset
|
87 String new_chart(); |
211
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
88 |
1429
16b7adc66330
Added stub for chart property editor.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1423
diff
changeset
|
89 String diagram(); |
16b7adc66330
Added stub for chart property editor.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1423
diff
changeset
|
90 |
16b7adc66330
Added stub for chart property editor.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1423
diff
changeset
|
91 String axes(); |
16b7adc66330
Added stub for chart property editor.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1423
diff
changeset
|
92 |
16b7adc66330
Added stub for chart property editor.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1423
diff
changeset
|
93 String legend(); |
16b7adc66330
Added stub for chart property editor.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1423
diff
changeset
|
94 |
1431
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
95 String chart_title(); |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
96 |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
97 String chart_subtitle(); |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
98 |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
99 String grid(); |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
100 |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
101 String antialiasing(); |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
102 |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
103 String axis_name(); |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
104 |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
105 String chart_start(); |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
106 |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
107 String chart_end(); |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
108 |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
109 String x_axis(); |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
110 |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
111 String y1_axis(); |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
112 |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
113 String y2_axis(); |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
114 |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
115 String y3_axis(); |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
116 |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
117 String legend_name(); |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
118 |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
119 String show_legend(); |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
120 |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
121 String scale(); |
987f95ceb623
Added property fields to the chart properties editor dialog.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1429
diff
changeset
|
122 |
532
0ba7c43e7b62
Replaced buttons displayed as labels with real buttons.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
523
diff
changeset
|
123 String databasket(); |
0ba7c43e7b62
Replaced buttons displayed as labels with real buttons.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
523
diff
changeset
|
124 |
0ba7c43e7b62
Replaced buttons displayed as labels with real buttons.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
523
diff
changeset
|
125 String theme_top(); |
0ba7c43e7b62
Replaced buttons displayed as labels with real buttons.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
523
diff
changeset
|
126 |
0ba7c43e7b62
Replaced buttons displayed as labels with real buttons.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
523
diff
changeset
|
127 String theme_up(); |
0ba7c43e7b62
Replaced buttons displayed as labels with real buttons.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
523
diff
changeset
|
128 |
0ba7c43e7b62
Replaced buttons displayed as labels with real buttons.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
523
diff
changeset
|
129 String theme_down(); |
0ba7c43e7b62
Replaced buttons displayed as labels with real buttons.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
523
diff
changeset
|
130 |
0ba7c43e7b62
Replaced buttons displayed as labels with real buttons.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
523
diff
changeset
|
131 String theme_bottom(); |
0ba7c43e7b62
Replaced buttons displayed as labels with real buttons.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
523
diff
changeset
|
132 |
543
9c2cf4811a7d
Added a control to reset the zoom of a chart. In addition, the zoom buttons are displayed as ImgButtons now.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
535
diff
changeset
|
133 String zoom_all(); |
9c2cf4811a7d
Added a control to reset the zoom of a chart. In addition, the zoom buttons are displayed as ImgButtons now.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
535
diff
changeset
|
134 |
9c2cf4811a7d
Added a control to reset the zoom of a chart. In addition, the zoom buttons are displayed as ImgButtons now.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
535
diff
changeset
|
135 String zoom_in(); |
9c2cf4811a7d
Added a control to reset the zoom of a chart. In addition, the zoom buttons are displayed as ImgButtons now.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
535
diff
changeset
|
136 |
544
0f4095a522ab
Added a zoom-out control to the chart toolbar which zooms 10% of the current ranges out.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
543
diff
changeset
|
137 String zoom_out(); |
0f4095a522ab
Added a zoom-out control to the chart toolbar which zooms 10% of the current ranges out.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
543
diff
changeset
|
138 |
1281
4782c0ce9cec
Re-added the function to zoom-out charts by a given factor (10%).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
909
diff
changeset
|
139 String zoom_back(); |
4782c0ce9cec
Re-added the function to zoom-out charts by a given factor (10%).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
909
diff
changeset
|
140 |
1429
16b7adc66330
Added stub for chart property editor.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1423
diff
changeset
|
141 String properties_ico(); |
16b7adc66330
Added stub for chart property editor.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1423
diff
changeset
|
142 |
551
13c7f90917fc
Added a PanControl to pan charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
544
diff
changeset
|
143 String pan(); |
13c7f90917fc
Added a PanControl to pan charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
544
diff
changeset
|
144 |
1422
25be27e33b77
#421 Ask the user before removing themes from chart or map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1420
diff
changeset
|
145 String askThemeRemove(); |
25be27e33b77
#421 Ask the user before removing themes from chart or map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1420
diff
changeset
|
146 |
211
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
147 String fix(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
148 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
149 String next(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
150 |
256
5e1c1b7d6516
Added table and service for calculation output to UI.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
248
diff
changeset
|
151 String river_km(); |
5e1c1b7d6516
Added table and service for calculation output to UI.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
248
diff
changeset
|
152 |
785
3ae0facd4cab
Added a panel that lets users step to a next state without feeding the current artifact with new data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
780
diff
changeset
|
153 String uesk_profile_distance(); |
3ae0facd4cab
Added a panel that lets users step to a next state without feeding the current artifact with new data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
780
diff
changeset
|
154 |
211
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
155 String location_distance_state(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
156 |
780
a39c2f531755
Implemented a new panel to enter kilometer ranges (with no option to insert locations).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
613
diff
changeset
|
157 String distance_state(); |
a39c2f531755
Implemented a new panel to enter kilometer ranges (with no option to insert locations).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
613
diff
changeset
|
158 |
1423
204e085a9f1c
Bugfix: set correct label for 'waterlevel/ground' state.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1422
diff
changeset
|
159 String waterlevel_ground_state(); |
204e085a9f1c
Bugfix: set correct label for 'waterlevel/ground' state.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1422
diff
changeset
|
160 |
211
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
161 String location(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
162 |
570
85d7cc0f2bab
#88 Modified strings in the location/distance panel.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
568
diff
changeset
|
163 String locations(); |
85d7cc0f2bab
#88 Modified strings in the location/distance panel.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
568
diff
changeset
|
164 |
211
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
165 String distance(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
166 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
167 String unitFrom(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
168 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
169 String unitTo(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
170 |
793
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
171 String dpLabelFrom(); |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
172 |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
173 String dpUnitFrom(); |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
174 |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
175 String dpLabelTo(); |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
176 |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
177 String dpUnitTo(); |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
178 |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
179 String dpLabelStep(); |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
180 |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
181 String dpUnitStep(); |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
182 |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
183 String wgLabelFrom(); |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
184 |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
185 String wgUnitFrom(); |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
186 |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
187 String wgLabelTo(); |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
188 |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
189 String wgUnitTo(); |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
190 |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
191 String wgLabelStep(); |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
192 |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
193 String wgUnitStep(); |
4497d19c22fd
Finished the panel to enter waterlevel/ground information (from, to, diff).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
788
diff
changeset
|
194 |
211
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
195 String unitWidth(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
196 |
787
4e0b73b7113b
Added new UI providers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
785
diff
changeset
|
197 String unitFromInM(); |
4e0b73b7113b
Added new UI providers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
785
diff
changeset
|
198 |
4e0b73b7113b
Added new UI providers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
785
diff
changeset
|
199 String unitToInM(); |
4e0b73b7113b
Added new UI providers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
785
diff
changeset
|
200 |
4e0b73b7113b
Added new UI providers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
785
diff
changeset
|
201 String unitDiffInM(); |
4e0b73b7113b
Added new UI providers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
785
diff
changeset
|
202 |
211
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
203 String unitLocation(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
204 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
205 String wrongFormat(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
206 |
1490
15b4bc8eede0
#302 Improved input validation in WQ panels.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1489
diff
changeset
|
207 String atLeastOneValue(); |
15b4bc8eede0
#302 Improved input validation in WQ panels.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1489
diff
changeset
|
208 |
15b4bc8eede0
#302 Improved input validation in WQ panels.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1489
diff
changeset
|
209 String missingInput(); |
15b4bc8eede0
#302 Improved input validation in WQ panels.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1489
diff
changeset
|
210 |
907
24d15c2e0da3
Validate than the input field for single locations contains a single value.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
904
diff
changeset
|
211 String too_many_values (); |
24d15c2e0da3
Validate than the input field for single locations contains a single value.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
904
diff
changeset
|
212 |
235
d3f8d6966c20
Added location and distance tables.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
232
diff
changeset
|
213 String description(); |
d3f8d6966c20
Added location and distance tables.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
232
diff
changeset
|
214 |
d3f8d6966c20
Added location and distance tables.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
232
diff
changeset
|
215 String from(); |
d3f8d6966c20
Added location and distance tables.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
232
diff
changeset
|
216 |
d3f8d6966c20
Added location and distance tables.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
232
diff
changeset
|
217 String to(); |
d3f8d6966c20
Added location and distance tables.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
232
diff
changeset
|
218 |
d3f8d6966c20
Added location and distance tables.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
232
diff
changeset
|
219 String riverside(); |
d3f8d6966c20
Added location and distance tables.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
232
diff
changeset
|
220 |
256
5e1c1b7d6516
Added table and service for calculation output to UI.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
248
diff
changeset
|
221 String calcTableTitle(); |
5e1c1b7d6516
Added table and service for calculation output to UI.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
248
diff
changeset
|
222 |
788
dfbc6693247e
Integrated a stacked panel on the right side of the ParameterList that enables users to see calculation results and the helper panel at the same time.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
787
diff
changeset
|
223 String helperPanelTitle(); |
dfbc6693247e
Integrated a stacked panel on the right side of the ParameterList that enables users to see calculation results and the helper panel at the same time.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
787
diff
changeset
|
224 |
211
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
225 String wqTitle(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
226 |
246
ccba1a0b743e
The WQAdaptedInputPanel displays input fields for each gauge and returns the correct w/q values now.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
243
diff
changeset
|
227 String wqadaptedTitle(); |
ccba1a0b743e
The WQAdaptedInputPanel displays input fields for each gauge and returns the correct w/q values now.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
243
diff
changeset
|
228 |
1528
ff41405a891d
Added a new widget to simply insert a WQ mode and values as array.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1519
diff
changeset
|
229 String wqHistorical(); |
ff41405a891d
Added a new widget to simply insert a WQ mode and values as array.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1519
diff
changeset
|
230 |
256
5e1c1b7d6516
Added table and service for calculation output to UI.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
248
diff
changeset
|
231 String unitWNN(); |
5e1c1b7d6516
Added table and service for calculation output to UI.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
248
diff
changeset
|
232 |
211
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
233 String wqW(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
234 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
235 String wqQ(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
236 |
577
ded285064e43
#118 Added a further radio button to select 'Q at Gauge' to the WQ panel.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
570
diff
changeset
|
237 String wqQGauge(); |
ded285064e43
#118 Added a further radio button to select 'Q at Gauge' to the WQ panel.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
570
diff
changeset
|
238 |
211
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
239 String wqSingle(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
240 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
241 String wqRange(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
242 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
243 String unitWSingle(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
244 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
245 String unitWFrom(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
246 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
247 String unitWTo(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
248 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
249 String unitWStep(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
250 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
251 String unitQSingle(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
252 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
253 String unitQFrom(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
254 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
255 String unitQTo(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
256 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
257 String unitQStep(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
258 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
259 String footerHome(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
260 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
261 String footerContact(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
262 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
263 String footerImpressum(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
264 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
265 String buttonNext(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
266 |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
267 String imageBack(); |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
268 |
275
8264b02091ef
ISSUE-56 Display download buttons to export the computed data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
265
diff
changeset
|
269 String imageSave(); |
8264b02091ef
ISSUE-56 Display download buttons to export the computed data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
265
diff
changeset
|
270 |
875
a77958780e1c
Updated the search field style including i18n and changed the handler
Raimund Renkert <raimund.renkert@intevation.de>
parents:
866
diff
changeset
|
271 String search(); |
a77958780e1c
Updated the search field style including i18n and changed the handler
Raimund Renkert <raimund.renkert@intevation.de>
parents:
866
diff
changeset
|
272 |
1286
b643622d77fe
Added context menu to themes list.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1281
diff
changeset
|
273 String properties(); |
b643622d77fe
Added context menu to themes list.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1281
diff
changeset
|
274 |
1309
a95e82d6bcc1
Refactored the code to create a context menu and a style editor so that it is also available for maps.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1289
diff
changeset
|
275 String activateTheme(); |
a95e82d6bcc1
Refactored the code to create a context menu and a style editor so that it is also available for maps.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1289
diff
changeset
|
276 |
a95e82d6bcc1
Refactored the code to create a context menu and a style editor so that it is also available for maps.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1289
diff
changeset
|
277 String deactivateTheme(); |
a95e82d6bcc1
Refactored the code to create a context menu and a style editor so that it is also available for maps.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1289
diff
changeset
|
278 |
a95e82d6bcc1
Refactored the code to create a context menu and a style editor so that it is also available for maps.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1289
diff
changeset
|
279 String removeTheme(); |
a95e82d6bcc1
Refactored the code to create a context menu and a style editor so that it is also available for maps.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1289
diff
changeset
|
280 |
1287
95ecb98c6015
Added skeleton for editor window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1286
diff
changeset
|
281 String label_ok(); |
95ecb98c6015
Added skeleton for editor window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1286
diff
changeset
|
282 |
95ecb98c6015
Added skeleton for editor window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1286
diff
changeset
|
283 String label_cancel(); |
95ecb98c6015
Added skeleton for editor window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1286
diff
changeset
|
284 |
1432
40f4137a2c31
Added a cancel button to the LoadingPanel which stops running WSPLGEN calculations (realized by returning to the previous state).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1431
diff
changeset
|
285 String cancelCalculationLabel(); |
40f4137a2c31
Added a cancel button to the LoadingPanel which stops running WSPLGEN calculations (realized by returning to the previous state).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1431
diff
changeset
|
286 |
40f4137a2c31
Added a cancel button to the LoadingPanel which stops running WSPLGEN calculations (realized by returning to the previous state).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1431
diff
changeset
|
287 String calculationCanceled(); |
40f4137a2c31
Added a cancel button to the LoadingPanel which stops running WSPLGEN calculations (realized by returning to the previous state).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1431
diff
changeset
|
288 |
1399 | 289 String flysLogo(); |
290 | |
291 String bfgLogo(); | |
292 | |
293 String downloadPNG(); | |
294 | |
295 String downloadPDF(); | |
296 | |
297 String downloadSVG(); | |
298 | |
299 String loadingImg(); | |
300 | |
1432
40f4137a2c31
Added a cancel button to the LoadingPanel which stops running WSPLGEN calculations (realized by returning to the previous state).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1431
diff
changeset
|
301 String cancelCalculation(); |
40f4137a2c31
Added a cancel button to the LoadingPanel which stops running WSPLGEN calculations (realized by returning to the previous state).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1431
diff
changeset
|
302 |
1399 | 303 String markerRed(); |
304 | |
305 String markerGreen(); | |
306 | |
307 String riverMap(); | |
308 | |
1315
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
309 // Elevation window |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
310 |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
311 String ele_window_title(); |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
312 |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
313 String ele_window_label(); |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
314 |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
315 String ele_window_x_col(); |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
316 |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
317 String ele_window_y_col(); |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
318 |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
319 String ele_window_z_col(); |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
320 |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
321 String ele_window_ok_button(); |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
322 |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
323 String ele_window_cancel_button(); |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
324 |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
325 String ele_window_format_error(); |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
326 |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
327 String ele_window_save_error(); |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
328 |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
329 String ele_window_geometry_error(); |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
330 |
243
11c5bcd349b1
Added a stub implementation of a WQ panel for discharge longitudinal section computations.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
240
diff
changeset
|
331 // OUTPUT TYPES |
11c5bcd349b1
Added a stub implementation of a WQ panel for discharge longitudinal section computations.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
240
diff
changeset
|
332 |
211
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
333 String discharge_curve(); |
215
e02f50a3ad59
Improved the exception handling of artifact / collection specific operations. Warning dialog are displayed after such an exception.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
212
diff
changeset
|
334 |
240
4cdf9030854f
Added i18n strings for the computed discharge curve.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
239
diff
changeset
|
335 String computed_discharge_curve(); |
4cdf9030854f
Added i18n strings for the computed discharge curve.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
239
diff
changeset
|
336 |
232
bc5f7d8084e2
Added i18n strings for a longitudinal section curve.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
230
diff
changeset
|
337 String longitudinal_section(); |
bc5f7d8084e2
Added i18n strings for a longitudinal section curve.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
230
diff
changeset
|
338 |
239
47fe77a1bac7
Added new i18n strings for new output modes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
235
diff
changeset
|
339 String duration_curve(); |
47fe77a1bac7
Added new i18n strings for new output modes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
235
diff
changeset
|
340 |
248
ed90309ec608
Added table for WQ inputs.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
246
diff
changeset
|
341 String name(); |
ed90309ec608
Added table for WQ inputs.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
246
diff
changeset
|
342 |
ed90309ec608
Added table for WQ inputs.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
246
diff
changeset
|
343 String type(); |
ed90309ec608
Added table for WQ inputs.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
246
diff
changeset
|
344 |
ed90309ec608
Added table for WQ inputs.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
246
diff
changeset
|
345 String wq_value(); |
ed90309ec608
Added table for WQ inputs.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
246
diff
changeset
|
346 |
243
11c5bcd349b1
Added a stub implementation of a WQ panel for discharge longitudinal section computations.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
240
diff
changeset
|
347 String discharge_longitudinal_section(); |
11c5bcd349b1
Added a stub implementation of a WQ panel for discharge longitudinal section computations.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
240
diff
changeset
|
348 |
795
68b8770af6c5
Added strings for the output mode 'floodmap'.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
793
diff
changeset
|
349 String floodmap(); |
68b8770af6c5
Added strings for the output mode 'floodmap'.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
793
diff
changeset
|
350 |
849
d0098fc8c40b
Added translation for "cross_section".
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
802
diff
changeset
|
351 String cross_section(); |
d0098fc8c40b
Added translation for "cross_section".
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
802
diff
changeset
|
352 |
866
593e6c49c6ee
Added "w_differences" translation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
849
diff
changeset
|
353 String w_differences(); |
593e6c49c6ee
Added "w_differences" translation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
849
diff
changeset
|
354 |
275
8264b02091ef
ISSUE-56 Display download buttons to export the computed data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
265
diff
changeset
|
355 // EXPORTS |
8264b02091ef
ISSUE-56 Display download buttons to export the computed data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
265
diff
changeset
|
356 |
434
2d045a65ec27
Added i18n strings for exports.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
433
diff
changeset
|
357 String waterlevel_export(); |
2d045a65ec27
Added i18n strings for exports.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
433
diff
changeset
|
358 |
584
dc24b1346271
Added i18n strings for each calculation report output.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
577
diff
changeset
|
359 String waterlevel_report(); |
dc24b1346271
Added i18n strings for each calculation report output.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
577
diff
changeset
|
360 |
609
418be98527f0
Prepare for AT export.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
605
diff
changeset
|
361 String computed_dischargecurve_at_export(); |
418be98527f0
Prepare for AT export.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
605
diff
changeset
|
362 |
434
2d045a65ec27
Added i18n strings for exports.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
433
diff
changeset
|
363 String discharge_longitudinal_section_export(); |
2d045a65ec27
Added i18n strings for exports.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
433
diff
changeset
|
364 |
584
dc24b1346271
Added i18n strings for each calculation report output.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
577
diff
changeset
|
365 String discharge_longitudinal_section_report(); |
dc24b1346271
Added i18n strings for each calculation report output.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
577
diff
changeset
|
366 |
435
5b8ad33a18c1
Added missing i18n strings for computed discharge curve exports.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
434
diff
changeset
|
367 String computed_dischargecurve_export(); |
5b8ad33a18c1
Added missing i18n strings for computed discharge curve exports.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
434
diff
changeset
|
368 |
584
dc24b1346271
Added i18n strings for each calculation report output.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
577
diff
changeset
|
369 String computed_dischargecurve_report(); |
dc24b1346271
Added i18n strings for each calculation report output.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
577
diff
changeset
|
370 |
511
437e3b917155
Added missing i18n strings for duration curve export.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
435
diff
changeset
|
371 String durationcurve_export(); |
437e3b917155
Added missing i18n strings for duration curve export.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
435
diff
changeset
|
372 |
584
dc24b1346271
Added i18n strings for each calculation report output.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
577
diff
changeset
|
373 String durationcurve_report(); |
dc24b1346271
Added i18n strings for each calculation report output.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
577
diff
changeset
|
374 |
275
8264b02091ef
ISSUE-56 Display download buttons to export the computed data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
265
diff
changeset
|
375 String dataexport(); |
8264b02091ef
ISSUE-56 Display download buttons to export the computed data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
265
diff
changeset
|
376 |
888
d6b88f8f88dd
Fix issue flys/issue311 (i18n crossection).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
887
diff
changeset
|
377 String w_differences_export(); |
d6b88f8f88dd
Fix issue flys/issue311 (i18n crossection).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
887
diff
changeset
|
378 |
275
8264b02091ef
ISSUE-56 Display download buttons to export the computed data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
265
diff
changeset
|
379 String csv(); |
8264b02091ef
ISSUE-56 Display download buttons to export the computed data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
265
diff
changeset
|
380 |
433
ad2c4fb17318
Adjusted the width of an export button and added a tooltip to distinguish different exports.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
276
diff
changeset
|
381 String wst(); |
ad2c4fb17318
Adjusted the width of an export button and added a tooltip to distinguish different exports.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
276
diff
changeset
|
382 |
609
418be98527f0
Prepare for AT export.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
605
diff
changeset
|
383 String at(); |
418be98527f0
Prepare for AT export.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
605
diff
changeset
|
384 |
523
0785a8ba5e6d
Implemented the first step of a theme control panel for charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
511
diff
changeset
|
385 String chart_themepanel_header_themes(); |
0785a8ba5e6d
Implemented the first step of a theme control panel for charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
511
diff
changeset
|
386 |
888
d6b88f8f88dd
Fix issue flys/issue311 (i18n crossection).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
887
diff
changeset
|
387 String chart_themepanel_header_actions(); |
d6b88f8f88dd
Fix issue flys/issue311 (i18n crossection).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
887
diff
changeset
|
388 |
1519
a6f6c61b18be
Implemented synchronous navigation through cross section profiles.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1516
diff
changeset
|
389 String chart_themepanel_snychron(); |
a6f6c61b18be
Implemented synchronous navigation through cross section profiles.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1516
diff
changeset
|
390 |
a6f6c61b18be
Implemented synchronous navigation through cross section profiles.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1516
diff
changeset
|
391 String chart_themepanel_asnychron(); |
a6f6c61b18be
Implemented synchronous navigation through cross section profiles.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1516
diff
changeset
|
392 |
1436
29fc2d1dfe9b
Client side of interactive cross section diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1432
diff
changeset
|
393 String chart_themepanel_set_master(); |
29fc2d1dfe9b
Client side of interactive cross section diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1432
diff
changeset
|
394 |
1455
75a40270efa8
Added keys and translations for area-creation related words.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1447
diff
changeset
|
395 String chart_themepanel_new_area(); |
75a40270efa8
Added keys and translations for area-creation related words.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1447
diff
changeset
|
396 |
75a40270efa8
Added keys and translations for area-creation related words.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1447
diff
changeset
|
397 String chart_themepanel_area_under(); |
75a40270efa8
Added keys and translations for area-creation related words.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1447
diff
changeset
|
398 |
75a40270efa8
Added keys and translations for area-creation related words.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1447
diff
changeset
|
399 String chart_themepanel_area_over(); |
75a40270efa8
Added keys and translations for area-creation related words.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1447
diff
changeset
|
400 |
75a40270efa8
Added keys and translations for area-creation related words.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1447
diff
changeset
|
401 String chart_themepanel_area_between(); |
75a40270efa8
Added keys and translations for area-creation related words.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1447
diff
changeset
|
402 |
1469
31d0557f31a2
Fix over axis menu item, added standalone 'over axis' menu item.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1467
diff
changeset
|
403 String against_x_axis(); |
31d0557f31a2
Fix over axis menu item, added standalone 'over axis' menu item.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1467
diff
changeset
|
404 |
904
1e08a5b0add9
Changed table header string and set the column width to percental value.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
888
diff
changeset
|
405 String discharge(); |
1e08a5b0add9
Changed table header string and set the column width to percental value.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
888
diff
changeset
|
406 |
215
e02f50a3ad59
Improved the exception handling of artifact / collection specific operations. Warning dialog are displayed after such an exception.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
212
diff
changeset
|
407 // ERRORS |
e02f50a3ad59
Improved the exception handling of artifact / collection specific operations. Warning dialog are displayed after such an exception.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
212
diff
changeset
|
408 |
563
469528551b78
Introduced an input validation for the location panels.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
562
diff
changeset
|
409 String error_read_minmax_values(); |
469528551b78
Introduced an input validation for the location panels.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
562
diff
changeset
|
410 |
562
9f16ac843dda
Introduced a client side validation before new user data are sent to the server - the range/location panel already implements this validation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
551
diff
changeset
|
411 String error_validate_range(); |
9f16ac843dda
Introduced a client side validation before new user data are sent to the server - the range/location panel already implements this validation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
551
diff
changeset
|
412 |
9f16ac843dda
Introduced a client side validation before new user data are sent to the server - the range/location panel already implements this validation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
551
diff
changeset
|
413 String error_validate_lower_range(); |
9f16ac843dda
Introduced a client side validation before new user data are sent to the server - the range/location panel already implements this validation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
551
diff
changeset
|
414 |
9f16ac843dda
Introduced a client side validation before new user data are sent to the server - the range/location panel already implements this validation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
551
diff
changeset
|
415 String error_validate_upper_range(); |
9f16ac843dda
Introduced a client side validation before new user data are sent to the server - the range/location panel already implements this validation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
551
diff
changeset
|
416 |
215
e02f50a3ad59
Improved the exception handling of artifact / collection specific operations. Warning dialog are displayed after such an exception.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
212
diff
changeset
|
417 String error_create_artifact(); |
e02f50a3ad59
Improved the exception handling of artifact / collection specific operations. Warning dialog are displayed after such an exception.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
212
diff
changeset
|
418 |
223
964abeb76771
Added more i18n error messages.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
220
diff
changeset
|
419 String error_describe_artifact(); |
964abeb76771
Added more i18n error messages.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
220
diff
changeset
|
420 |
215
e02f50a3ad59
Improved the exception handling of artifact / collection specific operations. Warning dialog are displayed after such an exception.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
212
diff
changeset
|
421 String error_feed_data(); |
e02f50a3ad59
Improved the exception handling of artifact / collection specific operations. Warning dialog are displayed after such an exception.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
212
diff
changeset
|
422 |
e02f50a3ad59
Improved the exception handling of artifact / collection specific operations. Warning dialog are displayed after such an exception.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
212
diff
changeset
|
423 String error_advance_artifact(); |
e02f50a3ad59
Improved the exception handling of artifact / collection specific operations. Warning dialog are displayed after such an exception.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
212
diff
changeset
|
424 |
e02f50a3ad59
Improved the exception handling of artifact / collection specific operations. Warning dialog are displayed after such an exception.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
212
diff
changeset
|
425 String error_add_artifact(); |
e02f50a3ad59
Improved the exception handling of artifact / collection specific operations. Warning dialog are displayed after such an exception.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
212
diff
changeset
|
426 |
1324
90b786325324
Donated own error message to RemoveArtifact failure case.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1317
diff
changeset
|
427 String error_remove_artifact(); |
90b786325324
Donated own error message to RemoveArtifact failure case.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1317
diff
changeset
|
428 |
215
e02f50a3ad59
Improved the exception handling of artifact / collection specific operations. Warning dialog are displayed after such an exception.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
212
diff
changeset
|
429 String error_create_collection(); |
e02f50a3ad59
Improved the exception handling of artifact / collection specific operations. Warning dialog are displayed after such an exception.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
212
diff
changeset
|
430 |
e02f50a3ad59
Improved the exception handling of artifact / collection specific operations. Warning dialog are displayed after such an exception.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
212
diff
changeset
|
431 String error_describe_collection(); |
217
907b61e4d702
Improved the exception handling - added warnings for user authentication errors and errors that occur while fetching supported rivers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
215
diff
changeset
|
432 |
907b61e4d702
Improved the exception handling - added warnings for user authentication errors and errors that occur while fetching supported rivers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
215
diff
changeset
|
433 String error_no_rivers_found(); |
907b61e4d702
Improved the exception handling - added warnings for user authentication errors and errors that occur while fetching supported rivers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
215
diff
changeset
|
434 |
907b61e4d702
Improved the exception handling - added warnings for user authentication errors and errors that occur while fetching supported rivers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
215
diff
changeset
|
435 String error_no_such_user(); |
907b61e4d702
Improved the exception handling - added warnings for user authentication errors and errors that occur while fetching supported rivers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
215
diff
changeset
|
436 |
1314
4c716bec7822
Validate selection of pairs in wdiff, show error(s) if invalid.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1310
diff
changeset
|
437 String error_no_waterlevel_pair_selected(); |
4c716bec7822
Validate selection of pairs in wdiff, show error(s) if invalid.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1310
diff
changeset
|
438 |
4c716bec7822
Validate selection of pairs in wdiff, show error(s) if invalid.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1310
diff
changeset
|
439 String error_same_waterlevels_in_pair(); |
4c716bec7822
Validate selection of pairs in wdiff, show error(s) if invalid.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1310
diff
changeset
|
440 |
217
907b61e4d702
Improved the exception handling - added warnings for user authentication errors and errors that occur while fetching supported rivers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
215
diff
changeset
|
441 String error_not_logged_in(); |
223
964abeb76771
Added more i18n error messages.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
220
diff
changeset
|
442 |
964abeb76771
Added more i18n error messages.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
220
diff
changeset
|
443 String error_load_parameterization(); |
230
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
444 |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
445 String error_feed_no_data(); |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
446 |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
447 String error_feed_from_out_of_range(); |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
448 |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
449 String error_feed_to_out_of_range(); |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
450 |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
451 String error_feed_from_bigger_to(); |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
452 |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
453 String error_feed_invalid_wq_mode(); |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
454 |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
455 String error_feed_number_format_float(); |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
456 |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
457 String error_feed_invalid_calculation_mode(); |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
458 |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
459 String error_feed_no_calculation_mode(); |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
460 |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
461 String error_feed_no_such_river(); |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
462 |
6de435235927
Added error messages that are displayed during the feed operation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
223
diff
changeset
|
463 String error_feed_no_river_selected(); |
265
51f1c7420115
Added i18n error messages used in the adapted wq panel.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
263
diff
changeset
|
464 |
51f1c7420115
Added i18n error messages used in the adapted wq panel.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
263
diff
changeset
|
465 String error_feed_no_wq_mode_selected(); |
51f1c7420115
Added i18n error messages used in the adapted wq panel.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
263
diff
changeset
|
466 |
51f1c7420115
Added i18n error messages used in the adapted wq panel.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
263
diff
changeset
|
467 String error_feed_q_values_invalid(); |
51f1c7420115
Added i18n error messages used in the adapted wq panel.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
263
diff
changeset
|
468 |
51f1c7420115
Added i18n error messages used in the adapted wq panel.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
263
diff
changeset
|
469 String error_feed_w_values_invalid(); |
276
f4c8ce11df33
UI stub for data cage
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
275
diff
changeset
|
470 |
f4c8ce11df33
UI stub for data cage
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
275
diff
changeset
|
471 String error_no_meta_data_found(); |
535
017371801479
Added a chart info service to fetch the info document for a specific chart from artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
532
diff
changeset
|
472 |
017371801479
Added a chart info service to fetch the info document for a specific chart from artifact server.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
532
diff
changeset
|
473 String error_chart_info_service(); |
568
1d20533a4ae3
Bring Oberkante and Unterkante into UI.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
563
diff
changeset
|
474 |
602
3b670af34367
The adapted WQ panel now displays warnings if no information are present to validate user input.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
597
diff
changeset
|
475 String error_invalid_double_value(); |
3b670af34367
The adapted WQ panel now displays warnings if no information are present to validate user input.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
597
diff
changeset
|
476 |
909
794d1af42987
Clone Artifacts and add them to the current Collection in the WspDatacagePanel.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
907
diff
changeset
|
477 String error_load_artifact(); |
794d1af42987
Clone Artifacts and add them to the current Collection in the WspDatacagePanel.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
907
diff
changeset
|
478 |
1289
d59dcaf52796
Improved error handling if no calculation result data was found.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1287
diff
changeset
|
479 String error_no_calc_result(); |
d59dcaf52796
Improved error handling if no calculation result data was found.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1287
diff
changeset
|
480 |
1310
c4c957a9c092
Improved exception handling while fetching theme styles.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1309
diff
changeset
|
481 String error_no_theme_styles_found(); |
c4c957a9c092
Improved exception handling while fetching theme styles.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1309
diff
changeset
|
482 |
1317
45b9b1fc26e2
Improved error handling while using the elevation control - Make selected features in the map visible.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1315
diff
changeset
|
483 String error_no_feature_selected(); |
45b9b1fc26e2
Improved error handling while using the elevation control - Make selected features in the map visible.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1315
diff
changeset
|
484 |
1376
28eb4dfe2cbf
Call Collection.doOut to retrieve a map config and use this config to build up an OpenLayers map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1327
diff
changeset
|
485 String error_no_map_config(); |
28eb4dfe2cbf
Call Collection.doOut to retrieve a map config and use this config to build up an OpenLayers map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1327
diff
changeset
|
486 |
1510
f7b3d5833f3b
Updated the MapOutputService to be able to request the new output type 'map'.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1502
diff
changeset
|
487 String error_no_map_output_type(); |
f7b3d5833f3b
Updated the MapOutputService to be able to request the new output type 'map'.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1502
diff
changeset
|
488 |
1317
45b9b1fc26e2
Improved error handling while using the elevation control - Make selected features in the map visible.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1315
diff
changeset
|
489 String warning_use_first_feature(); |
45b9b1fc26e2
Improved error handling while using the elevation control - Make selected features in the map visible.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1315
diff
changeset
|
490 |
1400
96708d81eaf6
Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1399
diff
changeset
|
491 String error_no_valid_gfi_url(); |
96708d81eaf6
Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1399
diff
changeset
|
492 |
96708d81eaf6
Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1399
diff
changeset
|
493 String error_gfi_req_failed(); |
96708d81eaf6
Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1399
diff
changeset
|
494 |
96708d81eaf6
Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1399
diff
changeset
|
495 String error_gfi_parsing_failed(); |
96708d81eaf6
Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1399
diff
changeset
|
496 |
1408
5b5a20e4c4e5
Added a service that loads the Capabilities of a specified WMS - display those information in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1406
diff
changeset
|
497 String error_gc_req_failed(); |
5b5a20e4c4e5
Added a service that loads the Capabilities of a specified WMS - display those information in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1406
diff
changeset
|
498 |
5b5a20e4c4e5
Added a service that loads the Capabilities of a specified WMS - display those information in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1406
diff
changeset
|
499 String error_gc_doc_not_valid(); |
5b5a20e4c4e5
Added a service that loads the Capabilities of a specified WMS - display those information in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1406
diff
changeset
|
500 |
5b5a20e4c4e5
Added a service that loads the Capabilities of a specified WMS - display those information in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1406
diff
changeset
|
501 String error_malformed_url(); |
5b5a20e4c4e5
Added a service that loads the Capabilities of a specified WMS - display those information in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1406
diff
changeset
|
502 |
1446
4c5006fecd8d
Added error strings for DEM selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1436
diff
changeset
|
503 String error_no_dgm_selected(); |
4c5006fecd8d
Added error strings for DEM selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1436
diff
changeset
|
504 |
4c5006fecd8d
Added error strings for DEM selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1436
diff
changeset
|
505 String error_invalid_dgm_selected(); |
4c5006fecd8d
Added error strings for DEM selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1436
diff
changeset
|
506 |
4c5006fecd8d
Added error strings for DEM selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1436
diff
changeset
|
507 String error_bad_dgm_range(); |
4c5006fecd8d
Added error strings for DEM selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1436
diff
changeset
|
508 |
4c5006fecd8d
Added error strings for DEM selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1436
diff
changeset
|
509 String error_bad_dgm_river(); |
4c5006fecd8d
Added error strings for DEM selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1436
diff
changeset
|
510 |
1502
d1223d93dd68
Issue 358.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1497
diff
changeset
|
511 String error_dialog_not_valid(); |
1289
d59dcaf52796
Improved error handling if no calculation result data was found.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1287
diff
changeset
|
512 |
d59dcaf52796
Improved error handling if no calculation result data was found.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1287
diff
changeset
|
513 |
568
1d20533a4ae3
Bring Oberkante and Unterkante into UI.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
563
diff
changeset
|
514 String bottom_edge(); |
1d20533a4ae3
Bring Oberkante and Unterkante into UI.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
563
diff
changeset
|
515 |
1d20533a4ae3
Bring Oberkante and Unterkante into UI.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
563
diff
changeset
|
516 String top_edge(); |
800
95cc560ce7c4
Added map controls for digitizing and removing barriers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
795
diff
changeset
|
517 |
95cc560ce7c4
Added map controls for digitizing and removing barriers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
795
diff
changeset
|
518 // MAP RELATED STRINGS |
95cc560ce7c4
Added map controls for digitizing and removing barriers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
795
diff
changeset
|
519 |
95cc560ce7c4
Added map controls for digitizing and removing barriers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
795
diff
changeset
|
520 String digitize(); |
95cc560ce7c4
Added map controls for digitizing and removing barriers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
795
diff
changeset
|
521 |
95cc560ce7c4
Added map controls for digitizing and removing barriers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
795
diff
changeset
|
522 String pipe1(); |
95cc560ce7c4
Added map controls for digitizing and removing barriers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
795
diff
changeset
|
523 |
95cc560ce7c4
Added map controls for digitizing and removing barriers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
795
diff
changeset
|
524 String pipe2(); |
95cc560ce7c4
Added map controls for digitizing and removing barriers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
795
diff
changeset
|
525 |
95cc560ce7c4
Added map controls for digitizing and removing barriers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
795
diff
changeset
|
526 String ditch(); |
95cc560ce7c4
Added map controls for digitizing and removing barriers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
795
diff
changeset
|
527 |
95cc560ce7c4
Added map controls for digitizing and removing barriers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
795
diff
changeset
|
528 String dam(); |
95cc560ce7c4
Added map controls for digitizing and removing barriers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
795
diff
changeset
|
529 |
95cc560ce7c4
Added map controls for digitizing and removing barriers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
795
diff
changeset
|
530 String ring_dike(); |
95cc560ce7c4
Added map controls for digitizing and removing barriers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
795
diff
changeset
|
531 |
95cc560ce7c4
Added map controls for digitizing and removing barriers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
795
diff
changeset
|
532 String selectFeature(); |
95cc560ce7c4
Added map controls for digitizing and removing barriers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
795
diff
changeset
|
533 |
95cc560ce7c4
Added map controls for digitizing and removing barriers.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
795
diff
changeset
|
534 String removeFeature(); |
802
d45ad7fd3027
Added map tools to measure lines and polygons.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
800
diff
changeset
|
535 |
1400
96708d81eaf6
Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1399
diff
changeset
|
536 String getFeatureInfo(); |
96708d81eaf6
Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1399
diff
changeset
|
537 |
96708d81eaf6
Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1399
diff
changeset
|
538 String getFeatureInfoTooltip(); |
96708d81eaf6
Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1399
diff
changeset
|
539 |
96708d81eaf6
Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1399
diff
changeset
|
540 String getFeatureInfoWindowTitle(); |
96708d81eaf6
Added an initial GetFeatureInfo tool to get information about points in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1399
diff
changeset
|
541 |
1406
6c8a29abbe30
Added an initial control that allows (when it is finished) adding map layers from external WMS.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1400
diff
changeset
|
542 String addWMS(); |
6c8a29abbe30
Added an initial control that allows (when it is finished) adding map layers from external WMS.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1400
diff
changeset
|
543 |
6c8a29abbe30
Added an initial control that allows (when it is finished) adding map layers from external WMS.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1400
diff
changeset
|
544 String addWMSTooltip(); |
6c8a29abbe30
Added an initial control that allows (when it is finished) adding map layers from external WMS.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1400
diff
changeset
|
545 |
1315
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
546 String adjustElevation(); |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
547 |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
548 String adjustElevationTooltip(); |
cf0f906921de
#297 Implemented a window to adjust elevations of geometries in the map.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1314
diff
changeset
|
549 |
802
d45ad7fd3027
Added map tools to measure lines and polygons.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
800
diff
changeset
|
550 String measureLine(); |
d45ad7fd3027
Added map tools to measure lines and polygons.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
800
diff
changeset
|
551 |
d45ad7fd3027
Added map tools to measure lines and polygons.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
800
diff
changeset
|
552 String measurePolygon(); |
878
d7c322a3bb32
Introduced i18n for the loading panel used during floodmap calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
876
diff
changeset
|
553 |
d7c322a3bb32
Introduced i18n for the loading panel used during floodmap calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
876
diff
changeset
|
554 String step(); |
d7c322a3bb32
Introduced i18n for the loading panel used during floodmap calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
876
diff
changeset
|
555 |
d7c322a3bb32
Introduced i18n for the loading panel used during floodmap calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
876
diff
changeset
|
556 String calculationStarted(); |
880
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
557 |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
558 String zoomMaxExtent(); |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
559 |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
560 String zoomIn(); |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
561 |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
562 String zoomOut(); |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
563 |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
564 String zoomLayer(); |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
565 |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
566 String moveMap(); |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
567 |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
568 String digitizeObjects(); |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
569 |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
570 String selectObject(); |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
571 |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
572 String removeObject(); |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
573 |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
574 String measureDistance(); |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
575 |
22dc88b17253
Added tooltips for the maptoolbar.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
878
diff
changeset
|
576 String measureArea(); |
1325
2f5fbfeda1d4
Introduced i18n for datacage
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
1324
diff
changeset
|
577 |
1327
8a93fb299e64
#288 Added legend symbols to the MapThemePanel.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1325
diff
changeset
|
578 String map_themepanel_header_style(); |
8a93fb299e64
#288 Added legend symbols to the MapThemePanel.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1325
diff
changeset
|
579 |
1377
b0fe35d4ce6b
Added a 'zoom to layer' menu item to the map theme panel which triggers a zoom to the specific layer/theme.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1376
diff
changeset
|
580 String zoomToLayer(); |
b0fe35d4ce6b
Added a 'zoom to layer' menu item to the map theme panel which triggers a zoom to the specific layer/theme.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1376
diff
changeset
|
581 |
1447
c4bc320e3d44
Bugfix: make sure that the user has selected a DEM before feeding the Artifact with it.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1446
diff
changeset
|
582 String requireDGM(); |
c4bc320e3d44
Bugfix: make sure that the user has selected a DEM before feeding the Artifact with it.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1446
diff
changeset
|
583 |
1325
2f5fbfeda1d4
Introduced i18n for datacage
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
1324
diff
changeset
|
584 // data cage |
2f5fbfeda1d4
Introduced i18n for datacage
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
1324
diff
changeset
|
585 |
2f5fbfeda1d4
Introduced i18n for datacage
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
1324
diff
changeset
|
586 String old_calculations(); |
2f5fbfeda1d4
Introduced i18n for datacage
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
1324
diff
changeset
|
587 |
2f5fbfeda1d4
Introduced i18n for datacage
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
1324
diff
changeset
|
588 String datacageAdd(); |
1383
a09b7ff5c630
Added translations for datacage element strings.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1377
diff
changeset
|
589 |
a09b7ff5c630
Added translations for datacage element strings.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1377
diff
changeset
|
590 String fixations(); |
a09b7ff5c630
Added translations for datacage element strings.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1377
diff
changeset
|
591 |
1497
895e6bc4bb73
Added translations for flood_protections keyword.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1494
diff
changeset
|
592 String flood_protections(); |
895e6bc4bb73
Added translations for flood_protections keyword.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1494
diff
changeset
|
593 |
1383
a09b7ff5c630
Added translations for datacage element strings.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1377
diff
changeset
|
594 String basedata(); |
a09b7ff5c630
Added translations for datacage element strings.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1377
diff
changeset
|
595 |
a09b7ff5c630
Added translations for datacage element strings.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1377
diff
changeset
|
596 String heightmarks(); |
a09b7ff5c630
Added translations for datacage element strings.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1377
diff
changeset
|
597 |
1511
9119bf1f9e5e
Added translation for Streckenfavoriten.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1510
diff
changeset
|
598 String annotation(); |
9119bf1f9e5e
Added translation for Streckenfavoriten.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1510
diff
changeset
|
599 |
1383
a09b7ff5c630
Added translations for datacage element strings.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1377
diff
changeset
|
600 String additionals(); |
a09b7ff5c630
Added translations for datacage element strings.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1377
diff
changeset
|
601 |
a09b7ff5c630
Added translations for datacage element strings.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1377
diff
changeset
|
602 String differences(); |
1395
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
603 |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
604 String kilometrage(); |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
605 |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
606 String riveraxis(); |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
607 |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
608 String km(); |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
609 |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
610 String qps(); |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
611 |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
612 String hws(); |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
613 |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
614 String catchments(); |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
615 |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
616 String floodplain(); |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
617 |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
618 String lines(); |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
619 |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
620 String buildings(); |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
621 |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
622 String fixpoints(); |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
623 |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
624 String rastermap(); |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
625 |
e4632718dd7b
Added i18n strings used in datacage's floodmap section.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1383
diff
changeset
|
626 String background(); |
1409
ec6e4dad1279
Read and display all FLYS relevant information of Capabilities documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1408
diff
changeset
|
627 |
ec6e4dad1279
Read and display all FLYS relevant information of Capabilities documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1408
diff
changeset
|
628 // Capabilities Information Panel |
ec6e4dad1279
Read and display all FLYS relevant information of Capabilities documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1408
diff
changeset
|
629 |
1410
6bb2c1ffab2b
Introduced i18n in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1409
diff
changeset
|
630 String addwmsInputTitle(); |
6bb2c1ffab2b
Introduced i18n in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1409
diff
changeset
|
631 |
6bb2c1ffab2b
Introduced i18n in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1409
diff
changeset
|
632 String addwmsInfoTitle(); |
6bb2c1ffab2b
Introduced i18n in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1409
diff
changeset
|
633 |
6bb2c1ffab2b
Introduced i18n in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1409
diff
changeset
|
634 String addwmsLayerTitle(); |
6bb2c1ffab2b
Introduced i18n in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1409
diff
changeset
|
635 |
1420
c8481debff70
Added missing i18n labels for buttons used in ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1410
diff
changeset
|
636 String addwmsBack(); |
c8481debff70
Added missing i18n labels for buttons used in ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1410
diff
changeset
|
637 |
c8481debff70
Added missing i18n labels for buttons used in ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1410
diff
changeset
|
638 String addwmsContinue(); |
c8481debff70
Added missing i18n labels for buttons used in ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1410
diff
changeset
|
639 |
c8481debff70
Added missing i18n labels for buttons used in ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1410
diff
changeset
|
640 String addwmsCancel(); |
c8481debff70
Added missing i18n labels for buttons used in ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1410
diff
changeset
|
641 |
1410
6bb2c1ffab2b
Introduced i18n in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1409
diff
changeset
|
642 String addwmsInvalidURL(); |
6bb2c1ffab2b
Introduced i18n in the ExternalWMSWindow.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1409
diff
changeset
|
643 |
1409
ec6e4dad1279
Read and display all FLYS relevant information of Capabilities documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1408
diff
changeset
|
644 String capabilitiesHint(); |
ec6e4dad1279
Read and display all FLYS relevant information of Capabilities documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1408
diff
changeset
|
645 |
ec6e4dad1279
Read and display all FLYS relevant information of Capabilities documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1408
diff
changeset
|
646 String capabilitiesTitle(); |
ec6e4dad1279
Read and display all FLYS relevant information of Capabilities documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1408
diff
changeset
|
647 |
ec6e4dad1279
Read and display all FLYS relevant information of Capabilities documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1408
diff
changeset
|
648 String capabilitiesURL(); |
ec6e4dad1279
Read and display all FLYS relevant information of Capabilities documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1408
diff
changeset
|
649 |
ec6e4dad1279
Read and display all FLYS relevant information of Capabilities documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1408
diff
changeset
|
650 String capabilitiesAccessConstraints(); |
ec6e4dad1279
Read and display all FLYS relevant information of Capabilities documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1408
diff
changeset
|
651 |
ec6e4dad1279
Read and display all FLYS relevant information of Capabilities documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1408
diff
changeset
|
652 String capabilitiesFees(); |
ec6e4dad1279
Read and display all FLYS relevant information of Capabilities documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1408
diff
changeset
|
653 |
ec6e4dad1279
Read and display all FLYS relevant information of Capabilities documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1408
diff
changeset
|
654 String capabilitiesContactInformation(); |
ec6e4dad1279
Read and display all FLYS relevant information of Capabilities documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1408
diff
changeset
|
655 |
ec6e4dad1279
Read and display all FLYS relevant information of Capabilities documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1408
diff
changeset
|
656 String capabilitiesEmail(); |
ec6e4dad1279
Read and display all FLYS relevant information of Capabilities documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1408
diff
changeset
|
657 |
ec6e4dad1279
Read and display all FLYS relevant information of Capabilities documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1408
diff
changeset
|
658 String capabilitiesPhone(); |
1465
d0bcf5ba7adf
Create the properties dialog content dynamically based on the properties read
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1455
diff
changeset
|
659 |
1467
3adfb0f88eca
Changed i18n strings.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1465
diff
changeset
|
660 String chart(); |
3adfb0f88eca
Changed i18n strings.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1465
diff
changeset
|
661 |
1483
843eed27390d
Added strings for chart properties dialog.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1479
diff
changeset
|
662 String export(); |
843eed27390d
Added strings for chart properties dialog.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1479
diff
changeset
|
663 |
843eed27390d
Added strings for chart properties dialog.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1479
diff
changeset
|
664 String width(); |
843eed27390d
Added strings for chart properties dialog.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1479
diff
changeset
|
665 |
843eed27390d
Added strings for chart properties dialog.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1479
diff
changeset
|
666 String height(); |
843eed27390d
Added strings for chart properties dialog.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1479
diff
changeset
|
667 |
1465
d0bcf5ba7adf
Create the properties dialog content dynamically based on the properties read
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1455
diff
changeset
|
668 String visibility(); |
d0bcf5ba7adf
Create the properties dialog content dynamically based on the properties read
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1455
diff
changeset
|
669 |
d0bcf5ba7adf
Create the properties dialog content dynamically based on the properties read
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1455
diff
changeset
|
670 String upper(); |
d0bcf5ba7adf
Create the properties dialog content dynamically based on the properties read
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1455
diff
changeset
|
671 |
d0bcf5ba7adf
Create the properties dialog content dynamically based on the properties read
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1455
diff
changeset
|
672 String lower(); |
d0bcf5ba7adf
Create the properties dialog content dynamically based on the properties read
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1455
diff
changeset
|
673 |
d0bcf5ba7adf
Create the properties dialog content dynamically based on the properties read
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1455
diff
changeset
|
674 String fixation(); |
d0bcf5ba7adf
Create the properties dialog content dynamically based on the properties read
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1455
diff
changeset
|
675 |
d0bcf5ba7adf
Create the properties dialog content dynamically based on the properties read
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1455
diff
changeset
|
676 String font_size(); |
d0bcf5ba7adf
Create the properties dialog content dynamically based on the properties read
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1455
diff
changeset
|
677 |
d0bcf5ba7adf
Create the properties dialog content dynamically based on the properties read
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1455
diff
changeset
|
678 String label(); |
d0bcf5ba7adf
Create the properties dialog content dynamically based on the properties read
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1455
diff
changeset
|
679 |
d0bcf5ba7adf
Create the properties dialog content dynamically based on the properties read
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1455
diff
changeset
|
680 String subtitle(); |
d0bcf5ba7adf
Create the properties dialog content dynamically based on the properties read
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1455
diff
changeset
|
681 |
d0bcf5ba7adf
Create the properties dialog content dynamically based on the properties read
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1455
diff
changeset
|
682 String display_grid(); |
1479
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
683 |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
684 String linetype(); |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
685 |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
686 String textstyle(); |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
687 |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
688 String linecolor(); |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
689 |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
690 String textcolor(); |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
691 |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
692 String textsize(); |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
693 |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
694 String font(); |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
695 |
1489
03649eb8933a
Added and fixed translations of theme style properties.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1483
diff
changeset
|
696 String showborder(); |
03649eb8933a
Added and fixed translations of theme style properties.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1483
diff
changeset
|
697 |
1479
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
698 String showpoints(); |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
699 |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
700 String showbackground(); |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
701 |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
702 String backgroundcolor(); |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
703 |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
704 String textorientation(); |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
705 |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
706 String linesize(); |
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
707 |
1494
83b913a6eecb
Added new strings for the theme editor.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1492
diff
changeset
|
708 String pointsize(); |
83b913a6eecb
Added new strings for the theme editor.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1492
diff
changeset
|
709 |
1479
2f525f54e429
Issue 427.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
1469
diff
changeset
|
710 String showlines(); |
1489
03649eb8933a
Added and fixed translations of theme style properties.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1483
diff
changeset
|
711 |
1492
7a1ac903a524
Added new strings displayed in the theme editor window.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1490
diff
changeset
|
712 String showminimum(); |
7a1ac903a524
Added new strings displayed in the theme editor window.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1490
diff
changeset
|
713 |
7a1ac903a524
Added new strings displayed in the theme editor window.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1490
diff
changeset
|
714 String showmaximum(); |
7a1ac903a524
Added new strings displayed in the theme editor window.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
1490
diff
changeset
|
715 |
1489
03649eb8933a
Added and fixed translations of theme style properties.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1483
diff
changeset
|
716 String transparent(); |
03649eb8933a
Added and fixed translations of theme style properties.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1483
diff
changeset
|
717 |
03649eb8933a
Added and fixed translations of theme style properties.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1483
diff
changeset
|
718 String showarea(); |
03649eb8933a
Added and fixed translations of theme style properties.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1483
diff
changeset
|
719 |
03649eb8933a
Added and fixed translations of theme style properties.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
1483
diff
changeset
|
720 String fillcolor(); |
211
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
721 } |
b92281182c6b
Removed the FLYSMessages interface and replaced it with a FLYSConstants interface - this interface has the ability to lookup i18n strings with given keys.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff
changeset
|
722 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |