rwdtinker 1.81 → 1.82

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,166 @@
1
+ # English Language files for RwdTinker core
2
+
3
+ msgid "applet_installed"
4
+ msgstr "Applet geinstalleerd"
5
+
6
+ msgid "application_version"
7
+ msgstr "Application Version"
8
+
9
+ msgid "cancel"
10
+ msgstr "Annuleren"
11
+
12
+ msgid "clickfor_version"
13
+ msgstr "Klier hier voor de Versie"
14
+
15
+ msgid "clickbelowtoviewlistof_zip"
16
+ msgstr "click below to view lists of zips"
17
+
18
+ msgid "documents"
19
+ msgstr "Documenten"
20
+
21
+ msgid "edit"
22
+ msgstr "edit"
23
+
24
+ msgid "file_name"
25
+ msgstr "File Name:"
26
+
27
+ msgid "fill_record"
28
+ msgstr "Fill Record"
29
+
30
+ msgid "help"
31
+ msgstr "Help"
32
+
33
+ msgid "help_about"
34
+ msgstr "Help About"
35
+
36
+ msgid "install_applet"
37
+ msgstr "install (rwdtinker) applet"
38
+
39
+ msgid "jumptoapplication_location"
40
+ msgstr "Jump to Application Location"
41
+
42
+ msgid "list_applets"
43
+ msgstr "Remove Applets"
44
+
45
+ msgid "listappletsinthegem_directory"
46
+ msgstr "List applets in the Gem Directory"
47
+
48
+ msgid "listappletsavailablefor_installation"
49
+ msgstr "List applets available for installation"
50
+
51
+ msgid "list_files"
52
+ msgstr "List Files"
53
+
54
+ msgid "list_installed_gems "
55
+ msgstr "List installed Gems"
56
+
57
+ msgid "list_photos"
58
+ msgstr "List Photos"
59
+
60
+ msgid "list_zips"
61
+ msgstr "List Zips"
62
+
63
+ msgid "listzipdirappletsavailable"
64
+ msgstr "List (zip directory) applets available for installation"
65
+
66
+ msgid "menu_panel"
67
+ msgstr "Menu Panel"
68
+
69
+ msgid "module_unknown"
70
+ msgstr "Module onbekend"
71
+
72
+ msgid "next"
73
+ msgstr "Volgende"
74
+
75
+ msgid "open"
76
+ msgstr "Openen"
77
+
78
+ msgid "open_document"
79
+ msgstr "Open Document"
80
+
81
+ msgid "openselectedhelp_about"
82
+ msgstr "Open selected help about"
83
+
84
+ msgid "reload_variables"
85
+ msgstr "Reload Variables"
86
+
87
+ msgid "remove_applet"
88
+ msgstr "remove applet"
89
+
90
+ msgid "return"
91
+ msgstr "Return"
92
+
93
+ msgid "rwdtinker_window_2"
94
+ msgstr "RwdTinker Window 2"
95
+
96
+ msgid "rwdtinker"
97
+ msgstr "RwdTinker"
98
+
99
+ msgid "rwdtinker_back_window"
100
+ msgstr '"RwdTinker Back Venster"'
101
+
102
+ msgid "rwdtinker_help"
103
+ msgstr "RwdTinker Help"
104
+
105
+ msgid "rwdtinker_help_window"
106
+ msgstr "RWDTinker Help Venster"
107
+
108
+ msgid "showjump_links"
109
+ msgstr "Show Jump Links"
110
+
111
+ msgid "showdocument_list"
112
+ msgstr "Show Document List"
113
+
114
+ msgid "showhelpabout_links"
115
+ msgstr "Show Help About Links"
116
+
117
+ msgid "save"
118
+ msgstr "Opslaan"
119
+
120
+ msgid "save_changes"
121
+ msgstr "Save Changes"
122
+
123
+ msgid "selection_panel"
124
+ msgstr '"Selectie Paneel"'
125
+
126
+ msgid "selection_tab"
127
+ msgstr "Menu Tab"
128
+
129
+ msgid "tinker_logo"
130
+ msgstr "Tinker Logo"
131
+
132
+ msgid "tinkerback_window"
133
+ msgstr "Tinker Back Window"
134
+
135
+ msgid "viewapplet_contents"
136
+ msgstr "View Applet Contents"
137
+
138
+ msgid "viewalreadyinstalled_applications"
139
+ msgstr "View already installed GEM applications"
140
+
141
+ msgid "viewinstalled_text"
142
+ msgstr "View Install Text"
143
+
144
+ msgid "view_platform"
145
+ msgstr "view platform"
146
+
147
+ msgid "viewplatform_information"
148
+ msgstr "View Platform Information"
149
+
150
+ msgid "viewlogger_information"
151
+ msgstr "View Logger Information"
152
+
153
+ msgid "view_event"
154
+ msgstr "View event"
155
+
156
+ msgid "viewinstall_text"
157
+ msgstr "View Install Text"
158
+
159
+ msgid "viewlistinstall_files"
160
+ msgstr "View List of Installed Files"
161
+
162
+ msgid "view_photo"
163
+ msgstr "View Photo"
164
+
165
+ msgid "window"
166
+ msgstr "Venster"
@@ -0,0 +1,56 @@
1
+ # part of rwdtinker smalllinux@gmail.com
2
+ # copyleft gpl 2008 Steven Gibson
3
+
4
+ require 'lib/rwdtinker/rwdtinkertools'
5
+
6
+ tmpmodload = '
7
+ def RwdtinkerTools.findfilesp(d)
8
+
9
+ a = Array.new(Dir[d].entries.sort)
10
+ #loop through and get the files names
11
+ a.each do |x|
12
+ #adjust the filters to the files you want to see...
13
+ if(!test(?d,x))
14
+ # only rwd files
15
+ if x =~ /rb|rwd|txt/
16
+ fileA=File.open("#{x}","r") #opens the file thats in fileName as read only
17
+ @@tempdoc+=fileA.read #reads the file into the doc string
18
+ fileA.close
19
+ end
20
+ end
21
+ end
22
+
23
+ end
24
+
25
+ def RwdtinkerTools.findprogramfiles(codedir, specificdir = "")
26
+ @@tempdoc = ""
27
+ #get a list of the files and subdirectories on the starting directory only
28
+ a = Array.new(Dir[codedir].entries.sort)
29
+ #loop through the list, ignore the files and add all new directories found
30
+ a.each do |x|
31
+ #if a directory...
32
+ if(test(?d,x))
33
+ # add to the original list of directories
34
+ @@root = x + "/**"
35
+ #adds the new ones to the array
36
+ b = Dir[@@root].entries.sort
37
+ b.each do |x|
38
+ if(test(?d,x))
39
+ a.push(x) #appends to the end of the array...
40
+ end
41
+ end
42
+ end
43
+ end
44
+ a.each do |x|
45
+ #if it is a file...
46
+ if(!test(?d,x))
47
+ a.delete(x)
48
+ else #it is a directory...
49
+ findfilesp(x + "/**")
50
+ end
51
+ end
52
+ return @@tempdoc
53
+ end
54
+ '
55
+
56
+ RwdtinkerTools.module_eval(tmpmodload)
@@ -0,0 +1,57 @@
1
+ # part of rwdtinker smalllinux@gmail.com
2
+ # copyleft gpl 2008 Steven Gibson
3
+
4
+ require 'lib/rwdtinker/rwdtinkertools'
5
+
6
+ tmpmodload = '
7
+ def RwdtinkerTools.loadguifile(d)
8
+
9
+ a = Array.new(Dir[d].entries.sort)
10
+ #loop through and get the files names
11
+ a.each do |x|
12
+ #adjust the filters to the files you want to see...
13
+ if(!test(?d,x))
14
+ # only rwd files
15
+ if x =~ /rb|rwd|txt/
16
+
17
+ load x #opens the file thats in fileName and reads it
18
+ @@tempdoc += $rwdguivar # adds the file into the doc string
19
+ end
20
+ end
21
+ end
22
+ end
23
+
24
+ def RwdtinkerTools.findguifiles(guidir)
25
+ @@tempdoc = ""
26
+ #get a list of the files and subdirectories on the starting directory only
27
+ a = Array.new(Dir[guidir].entries.sort)
28
+ #loop through the list, ignore the files and add all new directories found
29
+ a.each do |x|
30
+ #if a directory...
31
+ if(test(?d,x))
32
+ #use this new dir find to add to the original list of directories
33
+ @@root = x + "/**"
34
+ #adds the new ones to the array
35
+ b = Dir[@@root].entries.sort
36
+ b.each do |x|
37
+ if(test(?d,x))
38
+ a.push(x) #appends to the end of the array...
39
+ end
40
+ end
41
+ end
42
+ end
43
+ a.each do |x|
44
+ #if it is a file...
45
+ if(!test(?d,x))
46
+ a.delete(x)
47
+
48
+ else #it is a directory...
49
+ loadguifile(x + "/**")
50
+ end
51
+ end
52
+ return @@tempdoc
53
+
54
+ end
55
+ '
56
+
57
+ RwdtinkerTools.module_eval(tmpmodload)
@@ -0,0 +1,60 @@
1
+ # part of rwdtinker smalllinux@gmail.com
2
+ # copyleft gpl 2008 Steven Gibson
3
+
4
+ require 'lib/rwdtinker/rwdtinkertools'
5
+
6
+ tmpmodload = '
7
+ def RwdtinkerTools.findfilest(d)
8
+ a = Array.new(Dir[d].entries.sort)
9
+ #loop through and get the files names
10
+ a.each do |x|
11
+ #adjust the filters to the files you want to see...
12
+ if(!test(?d,x))
13
+ # only rwd files
14
+ if x =~ /rb|po|txt/
15
+ fileA=File.open("#{x}","r") #opens the file thats in fileName as read only
16
+ @@tempdoc+=fileA.read #reads the file into the doc string
17
+ fileA.close
18
+ end
19
+ end
20
+ end
21
+
22
+ end
23
+
24
+
25
+ def RwdtinkerTools.findlanguagefiles(langdir,lang)
26
+ @@tempdoc = ""
27
+
28
+ startlangdir = File.join(langdir,lang)
29
+ #get a list of the files and subdirectories on the starting directory only
30
+ alanghash = Array.new(Dir[startlangdir].entries.sort)
31
+ #loop through the list, ignore the files and add all new directories found
32
+ alanghash.each do |x|
33
+ #if a directory...
34
+ if(test(?d,x))
35
+ # add to the original list of directories
36
+ @@tmproot = x + "/**"
37
+ #adds the new ones to the array
38
+ blanghash = Dir[@@tmproot].entries.sort
39
+ blanghash.each do |x|
40
+ if(test(?d,x))
41
+ alanghash.push(x) #appends to the end of the array...
42
+ end
43
+ end
44
+ end
45
+ end
46
+ alanghash.each do |x|
47
+ #if it is a file...
48
+ if(!test(?d,x))
49
+ alanghash.delete(x)
50
+ else #it is a directory...
51
+ findfilest(x + "/**")
52
+ end
53
+ end
54
+
55
+ return @@tempdoc
56
+
57
+ end
58
+ '
59
+
60
+ RwdtinkerTools.module_eval(tmpmodload)
@@ -1,4 +1,5 @@
1
-
1
+ # part of rwdtinker smalllinux@gmail.com
2
+ # copyleft gpl 2008 Steven Gibson
2
3
 
3
4
  module RwdtinkerTools
4
5
 
@@ -97,8 +97,7 @@ There are two ways to add applets to the directories.
97
97
  The gui files go into your gui directory
98
98
  The gui files need to be in order by name and end with .rwd
99
99
 
100
-
101
-
100
+
102
101
  If you need a config file that goes in the configuration directory
103
102
 
104
103
  internationalization and localization are helped by replacing the
@@ -136,9 +135,11 @@ To exit, press the x inside the browser window.
136
135
 
137
136
  == Languages
138
137
 
139
-
140
138
  You can add tranlations in the lang subdirectory
141
- You change the $lang constant in Tinker config file in the configuration directory
139
+ You change the $langarray constant in Tinker config file in the configuration directory
140
+
141
+ to change language => in the tinkerwin2variables.cnf file the [0] setting of $langarray will be the language choosen.
142
+
142
143
  You can see one translation on the install applet tab, after you have installed and applet
143
144
 
144
145
  == Using over a Network
@@ -168,14 +169,15 @@ Ruby I am using version 1.8.2
168
169
 
169
170
  I have tested this under Linux-Debian kernel 2.6.9
170
171
 
171
- = Operation:
172
+ == Operation:
173
+
172
174
  The code files reside in the code directory and are combined before
173
175
  the main Class is loaded
174
176
 
175
177
  The rwd files in gui are combined before the gui is activated
176
178
 
177
179
  Translated text reside in the lang directory
178
-
180
+
179
181
  == Installing:
180
182
 
181
183
  untar the file
@@ -226,10 +228,17 @@ http://www.erikveen.dds.nl/rubywebdialogs/index.html
226
228
  Thanks, Steven Gibson
227
229
 
228
230
  == Changelog
231
+ version 1.82
232
+ switch to po files for translation files
233
+ add beginning of Hindi po file
234
+ added more Japanese strings
235
+ changed handling of lang change = in the tinkerwin2variables.cnf file the [0] setting of $langarray will be the language choosen.
236
+
229
237
  version 1.81
230
238
  condensed config files from 4 -> 2
231
239
  fixed document launch bug
232
240
  add $KCODE = 'u'
241
+ move help files to rwd_files directory
233
242
 
234
243
  version 1.80
235
244
  changed pda handling in rwd.rb
data/tests/makedist.rb CHANGED
@@ -15,7 +15,7 @@ require 'fileutils'
15
15
 
16
16
  DistroName = "rwdtinker"
17
17
 
18
- DistroVersion="1.81"
18
+ DistroVersion="1.82"
19
19
 
20
20
  DistroTitle="#{DistroName}.dist"
21
21
  load "configuration/#{DistroTitle}"
Binary file
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rwdtinker
3
3
  version: !ruby/object:Gem::Version
4
- version: "1.81"
4
+ version: "1.82"
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steven Gibson
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-10-07 00:00:00 -07:00
12
+ date: 2008-10-09 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -45,6 +45,9 @@ files:
45
45
  - lib/rwdthemes/pda.rwd
46
46
  - lib/rwdthemes/windowslike.rwd
47
47
  - lib/rwdtinker/rwdtinkertools.rb
48
+ - lib/rwdtinker/rwdcodedir.rb
49
+ - lib/rwdtinker/rwdguidir.rb
50
+ - lib/rwdtinker/rwdlangdir.rb
48
51
  - code/zz0applicationend/zz0end.rb
49
52
  - code/superant.com.rwdtinkerbackwindow/listgemdirs.rb
50
53
  - code/superant.com.rwdtinkerbackwindow/viewlogfile.rb
@@ -90,11 +93,12 @@ files:
90
93
  - code/dd0viewphoto/dd0viewphoto.rb
91
94
  - configuration/rwdtinker.dist
92
95
  - configuration/tinkerwin2variables.dist
93
- - lang/en/rwdcore/languagefile.rb
94
- - lang/es/rwdcore/languagefile-es.rb
95
- - lang/fr/rwdcore/languagefile.rb
96
- - lang/jp/rwdcore/languagefile.rb
97
- - lang/nl/rwdcore/languagefile.rb
96
+ - lang/en/rwdcore/en.po
97
+ - lang/es/rwdcore/es.po
98
+ - lang/fr/rwdcore/fr.po
99
+ - lang/hi/rwdcore/hi.po
100
+ - lang/ja/rwdcore/ja.po
101
+ - lang/nl/rwdcore/nl.po
98
102
  - gui/frontwindowtdocuments/00documentbegin.rwd
99
103
  - gui/frontwindowtdocuments/tinkerdocuments.rwd
100
104
  - gui/frontwindowtdocuments/zzdocumentend.rwd
@@ -138,11 +142,13 @@ files:
138
142
  - rwd_files/HowTo_TinkerWin2.txt
139
143
  - rwd_files/RubyWebDialogs.html
140
144
  - rwd_files/HowTo_Tinker.txt
145
+ - zips/tinkerbellw-0.03.zip
146
+ - zips/rwdwmovies-0.98.zip
141
147
  - zips/temp.rb
142
148
  - zips/rwdwfoldeditor-0.05.zip
143
149
  - zips/rwdwcalc-0.63.zip
144
150
  - zips/rwdwruby-1.08.zip
145
- - zips/wrubyslippers-1.07.zip
151
+ - zips/wrubyslippers-1.08.zip
146
152
  - tests/rdep.rb
147
153
  - tests/cleancnf.sh
148
154
  - tests/makedist.rb
@@ -1,59 +0,0 @@
1
- # English Language files for RwdTinker core
2
-
3
- :applet_installed => '"applet installed!"',
4
- :application_version => '"Application Version"',
5
- :clear => "Clear",
6
- :cancel => "Cancel",
7
- :clickfor_version => "Click for Version" ,
8
- :clickbelowtoviewlistof_zip => '"click below to view lists of zips"',
9
- :documents => '"Documents"',
10
- :edit => "edit" ,
11
- :file_name => '"File Name:"',
12
- :fill_record => '"Fill Record"',
13
- :help => '"Help"',
14
- :help_about => '"Help About"',
15
- :install_applet => '"install (rwdtinker) applet"',
16
- :jumptoapplication_location => '"Jump to Application Location"',
17
- :list_applets => '"Remove Applets"',
18
- :listappletsinthegem_directory => '"List applets in the Gem Directory"',
19
- :listappletsavailablefor_installation => "List applets available for installation",
20
- :list_files => '"List Files"',
21
- :list_installed_gems => '"List installed Gems"' ,
22
- :list_photos => '"List Photos"',
23
- :list_zips => '"List Zips"',
24
- :listzipdirappletsavailable => '"List (zip directory) applets available for installation"',
25
- :menu_panel => '"Menu Panel"',
26
- :module_unknown => '"Unknown Module"',
27
- :next => '"Next"',
28
- :open => "Open",
29
- :open_document => '"Open Document"',
30
- :openselectedhelp_about => '"Open selected help about"',
31
- :reload_variables => '"Reload Variables"' ,
32
- :remove_applet => '"remove applet"',
33
- :return => "Return",
34
- :rwdtinker_window_2 => "RwdTinker Window 2",
35
- :rwdtinker => "RwdTinker",
36
- :rwdtinker_back_window => '"RwdTinker Back Window"',
37
- :rwdtinker_help => '"RwdTinker Help"',
38
- :rwdtinker_help_window => '"RwdTinker Help Window"',
39
- :showjump_links => '"Show Jump Links"',
40
- :showdocument_list => '"Show Document List"',
41
- :showhelpabout_links => '"Show Help About Links"',
42
-
43
- :save => "Save" ,
44
- :save_changes => '"Save Changes"',
45
- :selection_panel => '"Menu Panel"',
46
- :selection_tab => '"Menu Tab"',
47
- :tinker_logo => "Tinker Logo",
48
- :tinkerback_window => '"Tinker Back Window"',
49
- :viewapplet_contents => '"View Applet Contents"',
50
- :viewalreadyinstalled_applications => '"View already installed GEM applications"',
51
- :viewinstalled_text => '"View Install Text"',
52
- :view_platform => '"view platform"',
53
- :viewplatform_information => '"View Platform Information"',
54
- :viewlogger_information => '"View Logger Information"',
55
- :view_event => '"View event"',
56
- :viewinstall_text => '"View Install Text"' ,
57
- :viewlistinstall_files => '"View List of Installed Files"',
58
- :view_photo => '"View Photo"',
59
- :window => "Window" ,
@@ -1,63 +0,0 @@
1
- # Spanish Language files for RwdTinker core
2
-
3
- :applet_installed => '"applet instalado!"',
4
- :application_version => '"Application Version"',
5
- :clear => "Clear",
6
- :cancel => "Cancelaci�n",
7
- :clickfor_version => '"click para version"' ,
8
- :clickbelowtoviewlistof_zip => '"click abajo a ver lista de zips"',
9
- :documents => '"Documentos"',
10
- :edit => "Editar" ,
11
- :file_name => '"Fila Nombre:"',
12
- :fill_record => '"Fill Record"',
13
- :help => '"Ayuda"',
14
- :help_about => '"Ayuda sobre"',
15
- :install_applet => '"instale (rwdtinker) applet"',
16
- :jumptoapplication_location => '"Jump to Application Location"',
17
- :list_applets => '"List Applets"',
18
- :listappletsavailablefor_installation => "List applets available for installation",
19
- :listappletsinthegem_directory => '"List applets in the Gem Directory"',
20
-
21
- :list_files => '"Lista de Archivos"',
22
- :list_installed_gems => '"Lista de Instalado Gems"' ,
23
- :list_photos => '"Lista de Photos"',
24
- :list_zips => '"List Zips"',
25
- :listzipdirappletsavailable => '"Lista (zip directory) applets available for installation"',
26
- :menu_panel => '"panel de herramientas"',
27
- :module_unknown => '"Module desconocido"',
28
- :next => "Siguiente",
29
- :open => "Abrir",
30
- :open_document => '"Abrir documento"',
31
- :openselectedhelp_about => '"Open selected help about"',
32
- :reload_variables => '"Reload Variables"' ,
33
- :remove_applet => '"remove applet"',
34
- :return => "anterior",
35
- :rwdtinker_window_2 => '"RwdTinker Window 2"',
36
- :rwdtinker => "RwdTinker",
37
- :rwdtinker_back_window => '"RwdTinker Ventana Trasera"',
38
- :rwdtinker_help => '"RwdTinker Ayuda"',
39
- :rwdtinker_help_window => '"RwdTinker Ventana Ayuda"',
40
- :showdocument_list => '"Show Document List"',
41
- :showhelpabout_links => '"Show Help About Links"',
42
-
43
- :showjump_links => '"Mostrar enlace saltar"',
44
-
45
- :save => "Guardar" ,
46
- :save_changes => '"Guardar los cambios"',
47
- :rwdtinker => "RwdTinker",
48
- :selection_panel => '"Panel de Selecci�n"',
49
-
50
- :tinker_logo => '"Insignia de Tinker"',
51
- :selection_tab => '"Selection Tab"',
52
- :tinkerback_window => '"Tinker Back Window"',
53
- :viewapplet_contents => '"View Applet Contents"',
54
- :viewalreadyinstalled_applications => '"View already installed GEM applications"',
55
- :viewinstalled_text => '"View Install Text"',
56
- :view_platform => '"view platform"',
57
- :viewplatform_information => '"View Platform Information"',
58
- :viewlogger_information => '"View Logger Information"',
59
- :view_event => '"Ver evento"',
60
- :viewinstall_text => '"Ver Texto"' ,
61
- :viewlistinstall_files => '"View List of Installed Files"',
62
- :view_photo => '"Ver Photo"' ,
63
- :window => "Ventana" ,
@@ -1,65 +0,0 @@
1
- # English Language files for RwdTinker core
2
-
3
- :applet_installed => '"applet installed!"',
4
- :application_version => '"Application Version"',
5
- :clear => "Clear",
6
- :cancel => "Cancel",
7
- :clickfor_version => "Click for Version" ,
8
- :clickbelowtoviewlistof_zip => '"click below to view lists of zips"',
9
- :documents => '"Documents"',
10
- :edit => "edit" ,
11
- :file_name => '"File Name:"',
12
- :fill_record => '"Fill Record"',
13
- :gemcommands => '"Gem Commands"',
14
- :gemfiles => '"Gem Files"' ,
15
- :gemdocs => '"Gem Documents"' ,
16
- :gem_name => '"Gem Name"' ,
17
- :help => '"Help"',
18
- :help_about => '"Help About"',
19
- :installgem => '"Install Gem"' ,
20
- :install_applet => '"install (rwdtinker) applet"',
21
- :jumptoapplication_location => '"Jump to Application Location"',
22
- :list_applets => '"List Applets"',
23
- :listappletsinthegem_directory => '"List applets in the Gem Directory"',
24
- :listappletsavailablefor_installation => "List applets available for installation",
25
- :list_files => '"List Files"',
26
- :list_installed_gems => '"List installed Gems"' ,
27
- :list_photos => '"List Photos"',
28
- :list_zips => '"List Zips"',
29
- :listzipdirappletsavailable => '"List (zip directory) applets available for installation"',
30
- :menu_panel => '"Menu Panel"',
31
- :module_unknown => '"Unknown Module"',
32
- :next => '"Next"',
33
- :open => "Open",
34
- :open_document => '"Open Document"',
35
- :openselectedhelp_about => '"Open selected help about"',
36
- :reload_variables => '"Reload Variables"' ,
37
- :remove_applet => '"remove applet"',
38
- :return => "Return",
39
- :rwdtinker_window_2 => "RwdTinker Window 2",
40
- :rwdtinker => "RwdTinker",
41
- :rwdtinker_back_window => '"RwdTinker Back Window"',
42
- :rwdtinker_help => '"RwdTinker Help"',
43
- :rwdtinker_help_window => '"RwdTinker Help Window"',
44
- :showjump_links => '"Show Jump Links"',
45
- :showdocument_list => '"Show Document List"',
46
- :showhelpabout_links => '"Show Help About Links"',
47
-
48
- :save => "Save" ,
49
- :save_changes => '"Save Changes"',
50
- :selection_panel => '"Selection Panel"',
51
- :selection_tab => '"Selection Tab"',
52
- :tinker_logo => "Tinker Logo",
53
- :tinkerback_window => '"Tinker Back Window"',
54
- :viewapplet_contents => '"View Applet Contents"',
55
- :viewalreadyinstalled_applications => '"View already installed GEM applications"',
56
- :viewinstalled_text => '"View Install Text"',
57
- :view_platform => '"view platform"',
58
- :viewplatform_information => '"View Platform Information"',
59
- :viewlogger_information => '"View Logger Information"',
60
- :view_event => '"View event"',
61
- :view_gem => '"View Gem"',
62
- :viewinstall_text => '"View Install Text"' ,
63
- :viewlistinstall_files => '"View List of Installed Files"',
64
- :view_photo => '"View Photo"',
65
- :window => "Window" ,