forked from datokrat/X-Tree-M
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuc_browsing_lang.js
More file actions
261 lines (198 loc) · 18 KB
/
Copy pathuc_browsing_lang.js
File metadata and controls
261 lines (198 loc) · 18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
import { uc_browsing_change_permission } from "./uc_browsing_setup.js";
import { c_LANG } from "./global_lang.js";
import { c_LANG_LIB_TREE_ELEMTYPE } from "./lib_tree_lang.js";
export var c_LANG_UC_BROWSING_MENUBAR = [];
// complete Menubar as Structure :
export function f_set_menubar()
{
var retval = // # English # German
[
// ##### Element Menu #####
[
["elem_menu" ,"Element" ,"Element" ],
[ "input_item" ,"New (Alt-N)" ,"Neu (Alt-N)" ],
[ "change_item" ,"Change (F2)" ,"Ändern (F2)" ],
[ "delete_item" ,"Delete (Del)" ,"Löschen (Entf)" ],
[ "copy_item" ,"Copy (Ctrl-C)" ,"Kopieren (Strg-C)" ],
// [ "clone_item" ,"Clone" ,"Vollst. Kopieren" ],
[ "cut_item" ,"Cut (Ctrl-X)" ,"Ausschn. (Strg-X)" ],
[ "paste_item" ,"Paste (Ctrl-V)" ,"Einfügen (Strg-V)" ],
// [ "export_item" ,"Export (Ctrl-Shift-Alt-E)" ,"Exportieren (Strg-Shift-Alt-E)" ],
[ "do_nothing" ,"--------------------" ,"--------------------" ],
[ "lock_topic" ,"Lock (Ctrl-Shift-Alt-L)" ,"Festhalten (Strg-Shift-Alt-L)" ]
// [ "as_news" ,"as News Ticker" ,"als Nachr.-Ticker" ],
// [ "as_date" ,"as Date Ticker" ,"als Termine-Ticker" ]
],
// ##### Element Type Menu #####
c_LANG_LIB_TREE_ELEMTYPE,
// ##### Favorites Menu #####
[
["fav_menu" ,"Favorites" ,"Favoriten" ],
[ "save_favorite" ,"Save" ,"Speichern" ],
[ "load_favorite" ,"Load" ,"Laden" ],
[ "delete_favorite" ,"Delete Single" ,"Einzeln Löschen" ],
[ "deleteall_favorites" ,"Delete All" ,"Alle Löschen" ]
],
// ##### Setup Menu #####
[
["setup_menu" ,"Setup" ,"Einstellungen" ],
[
["lang_menu" ,"Language" ,"Sprache" ],
( ["#output_list", "language_select"]).concat(c_LANG.slice(1,c_LANG.length))
] ,
[
["db_type" ,"Database Type" ,"Datenbank-Typ" ],
["#output_list" ,"db_type", "XML", "SQL-Based"] // "XML Localhost", "XML WWW", "SQL-Based WWW"]
// ["xml_local" ,"XML Localhost" ,"XML Localhost" ],
// ["xml_web" ,"XML on WWW" ,"XML im WWW" ],
// ["disco_web" ,"DISCO on WWW" ,"DISCO" ]
] ,
// [
// ["setup_path_menu" ,"Setup Path" ,"Pfad zu Einstellungen" ],
// [
// ["setup_path_type" ,"Type of Source" ,"Quellentyp" ],
// ["#output_list" ,"setup_src_type", "RAM", "Cookie", "DISCO!", "XML"]
// ],
// [
// ["setup_path_url" ,"Path/URL" ,"Pfad/URL" ],
// ["#input_field" ,"setup_src_path"]
// ]
// ]
[
["disp_type" ,"Display Type" ,"Darstellung" ],
["#output_list" ,"disp_type", "Tree", "Bubbles"]
// ["disp_tree" ,"Tree ()" ,"Baum ()" ],
// ["disp_bubbles" ,"Bubbles ()" ,"Kugeln ()" ]
] ,
[
["other_setups" ,"Other Setups" ,"Andere Einstellg." ],
["#output_list" ,"aux_setups", "Config Subtree"]
],
[
["permissions" ,"Permissions" ,"Zugriffsrechte" ],
["#output_list" ,"change", "change="+String(1-uc_browsing_change_permission)]
]
],
// ##### Help Menu #####
[
// Menu Title
["help_menu" ,"Help" ,"Hilfe" ],
// [ "tutorial" ,"Tutorial" ,"Tutorial" ],
[ "erase_cookies" ,"Clear Cookies" ,"Cookies löschen" ],
// [ "send_err_log" ,"Send Error Log" ,"Fehlerbericht senden" ],
[ "display_hint" ,"Hints" ,"Tips" ],
[ "source_code" ,"Source Code" ,"Quellcode" ],
[ "blackboxtest" ,"Test all Features" ,"Testlauf" ],
[ "display_version" ,"Current Version" ,"Aktuelle Version" ]
]
];
return retval;
}
c_LANG_UC_BROWSING_MENUBAR = f_set_menubar();
export var c_LANG_UC_BROWSING_MENU_LANG_TITLE = c_LANG_UC_BROWSING_MENUBAR[3][1][0];
//export var c_LANG_UC_BROWSING_HELP_HINTS =
//["do_nothing" ,
// "Useful hints :\n(1) The X-Tree-M tool can be controlled through Touchscreen and Mouse but is optimized for Keyboard usage. If you want to use X-Tree-M for fast info recording you should learn the 10-Finger-System and know the various Keyboard-Shortcuts which can often be found next to each element in the Menu. \n(2) A mouseover on the graphical Element Type Symbols in the Tree Panel usually opens/closes the next level. Please mind that the displayed level depth is limited and that you sometimes need to select an item to reach the next level. \n(3) If you want to load a Favorite Entry you can press CTRL and click at it. \n(4) If you concentrate on a special topic it is recommended to lock it to save loading time and memory and to reduce the displayed complexity. \n(5) The Tickers are made to inform you about changes. When you have chosen a Topic as Ticker content by clicking 'as ... Ticker' in the Element Menu it is loaded instantly and further updated after some minutes. \n(6) While the DISCO version offers more professional access to the database, the XML-Version is useful to work offline and to save your database content as File. \n(7) Reset corrupt Cookies by using \'Help/Clear Cookies\'",
// "Nützliche Hinweise :\n(1) Das X-Tree-M-Tool can per Touchscreen oder Maus bedient werden, ist aber für Keyboard-Gebrauch optimiert. Wenn Sie X-Tree-M für das schnelle Festhalten von Information benutzen wollen, sollten Sie das 10-Finger-System und diverse Keyboard-Shortcuts kennen, welche oft neben dem Element im Menü stehen. \n(2) Ein Berühren der Element-Typ-Symbole in der Baumdarstellung öffnet/schließt die nächste Ebene. Bitte beachten Sie, daß die dargestellte Level-Tiefe begrenzt ist und Sie manchmal ein Element selektieren müssen, um auf weitere Ebenen zugreifen zu können. \n(3) Wenn Sie einen Favoriten-Eintrag laden möchten, können Sie einfach CTRL drücken und dabei auf den Eintrag klicken. \n(4) Falls Sie sich auf ein Thema konzentrieren, können Sie es locken, um Ladezeit und Speicher zu sparen und die Darstellung einfacher zu machen. \n(5) Die Ticker wurden erstellt, um Sie über Änderungen zu informieren. Nachdem Sie ein Thema als Ticker-Inhalt ausgewählt und 'als ... Ticker' geklickt haben, wird dieses geladen und alle paar Minuten aktualisiert. \n(6) Während die DISCO-Variante des Tools einen professionellen geshareten Datenbank-Zugriff gewährleistet, kommt die XML-Version dann zum Tragen, wenn Sie Offline arbeiten oder die Daten als File abspeichern wollen. \n(7) Löschen Sie kaputte Cookies durch \'Hilfe/Cookies löschen\'"
//];
export var c_LANG_UC_BROWSING_HELP_HINTS =
["do_nothing" ,
"Useful hints :\n(1) The X-Tree-M tool can be controlled through Touchscreen and Mouse but is optimized for Keyboard usage. If you want to use X-Tree-M for fast info recording you should learn the 10-Finger-System and know the various Keyboard-Shortcuts which can often be found next to each element in the Menu. \n(2) A mouseover on the graphical Element Type Symbols in the Tree Panel usually opens/closes the next level. Please mind that the displayed level depth is limited and that you sometimes need to select an item to reach the next level. \n(3) If you want to load a Favorite Entry you can press CTRL and click at it. \n(4) Reset corrupt Cookies by using \'Help/Clear Cookies\'",
"Nützliche Hinweise :\n(1) Das X-Tree-M-Tool can per Touchscreen oder Maus bedient werden, ist aber für Keyboard-Gebrauch optimiert. Wenn Sie X-Tree-M für das schnelle Festhalten von Information benutzen wollen, sollten Sie das 10-Finger-System und diverse Keyboard-Shortcuts kennen, welche oft neben dem Element im Menü stehen. \n(2) Ein Berühren der Element-Typ-Symbole in der Baumdarstellung öffnet/schließt die nächste Ebene. Bitte beachten Sie, daß die dargestellte Level-Tiefe begrenzt ist und Sie manchmal ein Element selektieren müssen, um auf weitere Ebenen zugreifen zu können. \n(3) Wenn Sie einen Favoriten-Eintrag laden möchten, können Sie einfach CTRL drücken und dabei auf den Eintrag klicken. \n(4) Löschen Sie kaputte Cookies durch \'Hilfe/Cookies löschen\'"
];
export var c_LANG_UC_BROWSING_HELP_CREATED =
["do_nothing" ,"created: " ,"erstellt: " ];
export var c_LANG_UC_BROWSING_HELP_VERSION =
["do_nothing" ,"version: " ,"Version: " ];
export var c_LANG_UC_BROWSING_TOOLBAR_CURR_REGION =
["do_nothing" ,"Current Region" ,"Aktuelle Region" ];
export var c_LANG_UC_BROWSING_TOOLBAR_OTHER_FILTERS =
["do_nothing" ,"Other Filters" ,"Andere Filter" ];
export var c_LANG_UC_BROWSING_TOOLBAR_BACK_TO_MSG =
["do_nothing" ,"Back to" ,"Zurück zu" ];
export var c_LANG_UC_BROWSING_PANEL1_TITLE =
["do_nothing" ,"Tree" ,"Baum"];
export var c_LANG_UC_BROWSING_PANEL2_TITLE =
["do_nothing" ,"Content" ,"Inhalt"];
export var c_LANG_UC_BROWSING_PANEL2_DESCRIPTION =
["do_nothing" ,"Description" , "Beschreibung"];
export var c_LANG_UC_BROWSING_PANEL2_COMMENTS =
["do_nothing" ,"Comments" , "Kommentare"];
export var c_LANG_UC_BROWSING_PANEL2_EVAL_CATS =
[
["category" ,"Category" ,"Kategory" ],
[ "fitting" ,"Fitting" ,"Passung" ],
[ "priority" ,"Priority" ,"Priorität" ],
[ "quality" ,"Quality" ,"Qualität" ]
];
export var c_LANG_UC_BROWSING_PANEL3_TITLE =
["do_nothing" ,"Info Box" ,"Info-Box"];
export var c_LANG_UC_BROWSING_PANEL3_TICKER1_TITLE =
["do_nothing" ,"News" ,"Neues"];
export var c_LANG_UC_BROWSING_PANEL3_TICKER2_TITLE =
["do_nothing" ,"Dates" ,"Termine"];
export var c_LANG_UC_BROWSING_PANEL4_TITLE =
["do_nothing" ,"Favorites" ,"Favoriten"];
export var c_LANG_UC_BROWSING_PANEL4_FAVORITES =
[
["favorites" ,"Favorites" ,"Favoriten" ],
[ "favorites_add" ,"Add" ,"Hinzufügen" ],
[ "favorites_load" ,"Load" ,"Laden" ],
[ "favorites_del" ,"Delete" ,"Loeschen" ],
[ "favorites_del_all" ,"Delete All" ,"Alle Loeschen" ],
[ "favorites_up" ,"Move Up" ,"Höher" ],
[ "favorites_down" ,"Move Down" ,"Tiefer" ]
];
export var c_LANG_UC_BROWSING_PANEL4_STREE_CFG =
[
["stree_cfg" ,"Tree Hierarchy" ,"Baum-Hierarchie" ],
[ "stree_cfg_add" ,"Add" ,"Hinzufügen" ],
[ "stree_cfg_load" ,"Load" ,"Laden" ],
[ "stree_cfg_del" ,"Delete" ,"Loeschen" ],
[ "stree_cfg_del_all" ,"Delete All" ,"Alle Loeschen" ],
[ "stree_cfg_up" ,"Move Up" ,"Höher" ],
[ "stree_cfg_down" ,"Move Down" ,"Tiefer" ],
[ "stree_cfg_cancel" ,"Cancel" ,"Abbruch" ],
[ "stree_cfg_finish" ,"Finish" ,"Fertig" ]
];
export var c_LANG_UC_BROWSING_MSG_INVALID_KEYB_MODE =
[ "no_nothing",
"Invalid keyboard mode !",
"Ungültiger Keyboard Modus !"
];
export var c_LANG_UC_BROWSING_MSG_UNKNOWN_COMMAND =
[ "do_nothing",
"Unknown command : ",
"Unbekanntes Kommando : "
];
export var c_LANG_UC_BROWSING_MSG_UNKNOWN_ELEM_TYPE =
[ "do_nothing",
"Unknown element type !",
"Unbekannter Element-Typ !"
];
export var c_LANG_UC_BROWSING_MSG_UNKNOWN_SUBMODULE =
[ "do_nothing",
"Unknown submodule : ",
"Unbekanntes Untermodul : "
];
export var c_LANG_UC_BROWSING_MSG_UNKNOWN_SENDER =
[ "do_nothing",
"Unknown sender : ",
"Unbekannter Absender : "
];
export var c_LANG_UC_BROWSING_MSG_SETUP_LOADING_FAILED =
[
"do_nothing" ,
"User Setup loading failed. Using Default Values.",
"Laden der User-Einstellungen fehlgeschlagen. Es werden die Standard-Einstellungen verwendet."
];
export var c_LANG_UC_BROWSING_MSG_ITEM_TOO_LONG =
[ "do_nothing",
"Attention ! Name too long -> will be cut on saving.",
"Achtung ! Name zu lang -> wird beim Speichern abgeschnitten."
];
export var c_LANG_UC_BROWSING_MSG_SELECT_MAIN_TREE =
[ "do_nothing",
"Do not select the Root Item to perform this action !",
"Bitte nicht den Wurzelknoten auswählen, um diese Einstellung vorzunehmen !"
];