|
Revision 2887, 2.4 kB
(checked in by timothy, 3 years ago)
|
Adds Ruby script support. This requires RubyCocoa? to be installed, available at http://rubycocoa.sourceforge.net
Ruby has a bad habit of crashing when parsing malformed scripts. That needs to be solved still.
|
- Property svn:mime-type set to
application/octet-stream
|
| Line | |
|---|
| 1 |
/* edit button title */ |
|---|
| 2 |
"Edit..." = "Edit..."; |
|---|
| 3 |
|
|---|
| 4 |
/* keep previous version button title */ |
|---|
| 5 |
"Keep Previous Version" = "Keep Previous Version"; |
|---|
| 6 |
|
|---|
| 7 |
/* reload button title */ |
|---|
| 8 |
"Reload" = "Reload"; |
|---|
| 9 |
|
|---|
| 10 |
/* Ruby script file changed dialog title */ |
|---|
| 11 |
"Ruby Script Changed" = "Ruby Script Changed"; |
|---|
| 12 |
|
|---|
| 13 |
/* Ruby script error title */ |
|---|
| 14 |
"Ruby Script Error" = "Ruby Script Error"; |
|---|
| 15 |
|
|---|
| 16 |
/* RubyCocoa required error title */ |
|---|
| 17 |
"RubyCocoa Required" = "RubyCocoa Required"; |
|---|
| 18 |
|
|---|
| 19 |
/* RubyCocoa required error message */ |
|---|
| 20 |
"RubyCocoa was not found. The Ruby console and any Ruby plugins will not work during this session. For the latest version of RubyCocoa visit http://rubycocoa.sourceforge.net." = "RubyCocoa was not found. The Ruby console and any Ruby plugins will not work during this session. For the latest version of RubyCocoa visit http://rubycocoa.sourceforge.net."; |
|---|
| 21 |
|
|---|
| 22 |
/* Ruby script error message */ |
|---|
| 23 |
"The Ruby script \"%@\" had an error while loading." = "The Ruby script \"%@\" had an error while loading."; |
|---|
| 24 |
|
|---|
| 25 |
/* Ruby script changed on disk message */ |
|---|
| 26 |
"The Ruby script \"%@\" has changed on disk. Any script variables will reset if reloaded." = "The Ruby script \"%@\" has changed on disk. Any script variables will reset if reloaded."; |
|---|
| 27 |
|
|---|